2
0

project.lock.json 317 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386
  1. {
  2. "locked": false,
  3. "version": 2,
  4. "targets": {
  5. "UAP,Version=v10.0": {
  6. "Microsoft.CSharp/4.0.0": {
  7. "type": "package",
  8. "dependencies": {
  9. "System.Collections": "4.0.10",
  10. "System.Diagnostics.Debug": "4.0.10",
  11. "System.Dynamic.Runtime": "4.0.0",
  12. "System.Globalization": "4.0.10",
  13. "System.Linq": "4.0.0",
  14. "System.Linq.Expressions": "4.0.0",
  15. "System.ObjectModel": "4.0.10",
  16. "System.Reflection": "4.0.10",
  17. "System.Reflection.Extensions": "4.0.0",
  18. "System.Reflection.Primitives": "4.0.0",
  19. "System.Reflection.TypeExtensions": "4.0.0",
  20. "System.Resources.ResourceManager": "4.0.0",
  21. "System.Runtime": "4.0.20",
  22. "System.Runtime.Extensions": "4.0.10",
  23. "System.Runtime.InteropServices": "4.0.20",
  24. "System.Threading": "4.0.10"
  25. },
  26. "compile": {
  27. "ref/netcore50/Microsoft.CSharp.dll": {}
  28. },
  29. "runtime": {
  30. "lib/netcore50/Microsoft.CSharp.dll": {}
  31. }
  32. },
  33. "Microsoft.NETCore/5.0.0": {
  34. "type": "package",
  35. "dependencies": {
  36. "Microsoft.CSharp": "4.0.0",
  37. "Microsoft.NETCore.Targets": "1.0.0",
  38. "Microsoft.VisualBasic": "10.0.0",
  39. "System.AppContext": "4.0.0",
  40. "System.Collections": "4.0.10",
  41. "System.Collections.Concurrent": "4.0.10",
  42. "System.Collections.Immutable": "1.1.37",
  43. "System.ComponentModel": "4.0.0",
  44. "System.ComponentModel.Annotations": "4.0.10",
  45. "System.Diagnostics.Debug": "4.0.10",
  46. "System.Diagnostics.Tools": "4.0.0",
  47. "System.Diagnostics.Tracing": "4.0.20",
  48. "System.Dynamic.Runtime": "4.0.10",
  49. "System.Globalization": "4.0.10",
  50. "System.Globalization.Calendars": "4.0.0",
  51. "System.Globalization.Extensions": "4.0.0",
  52. "System.IO": "4.0.10",
  53. "System.IO.Compression": "4.0.0",
  54. "System.IO.Compression.ZipFile": "4.0.0",
  55. "System.IO.FileSystem": "4.0.0",
  56. "System.IO.FileSystem.Primitives": "4.0.0",
  57. "System.IO.UnmanagedMemoryStream": "4.0.0",
  58. "System.Linq": "4.0.0",
  59. "System.Linq.Expressions": "4.0.10",
  60. "System.Linq.Parallel": "4.0.0",
  61. "System.Linq.Queryable": "4.0.0",
  62. "System.Net.Http": "4.0.0",
  63. "System.Net.NetworkInformation": "4.0.0",
  64. "System.Net.Primitives": "4.0.10",
  65. "System.Numerics.Vectors": "4.1.0",
  66. "System.ObjectModel": "4.0.10",
  67. "System.Reflection": "4.0.10",
  68. "System.Reflection.DispatchProxy": "4.0.0",
  69. "System.Reflection.Extensions": "4.0.0",
  70. "System.Reflection.Metadata": "1.0.22",
  71. "System.Reflection.Primitives": "4.0.0",
  72. "System.Reflection.TypeExtensions": "4.0.0",
  73. "System.Resources.ResourceManager": "4.0.0",
  74. "System.Runtime": "4.0.20",
  75. "System.Runtime.Extensions": "4.0.10",
  76. "System.Runtime.Handles": "4.0.0",
  77. "System.Runtime.InteropServices": "4.0.20",
  78. "System.Runtime.Numerics": "4.0.0",
  79. "System.Security.Claims": "4.0.0",
  80. "System.Security.Principal": "4.0.0",
  81. "System.Text.Encoding": "4.0.10",
  82. "System.Text.Encoding.Extensions": "4.0.10",
  83. "System.Text.RegularExpressions": "4.0.10",
  84. "System.Threading": "4.0.10",
  85. "System.Threading.Tasks": "4.0.10",
  86. "System.Threading.Tasks.Dataflow": "4.5.25",
  87. "System.Threading.Tasks.Parallel": "4.0.0",
  88. "System.Threading.Timer": "4.0.0",
  89. "System.Xml.ReaderWriter": "4.0.10",
  90. "System.Xml.XDocument": "4.0.10"
  91. }
  92. },
  93. "Microsoft.NETCore.Platforms/1.0.0": {
  94. "type": "package"
  95. },
  96. "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
  97. "type": "package",
  98. "dependencies": {
  99. "Microsoft.NETCore.Runtime": "1.0.0"
  100. },
  101. "compile": {
  102. "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
  103. "ref/netcore50/System.Core.dll": {},
  104. "ref/netcore50/System.Net.dll": {},
  105. "ref/netcore50/System.Numerics.dll": {},
  106. "ref/netcore50/System.Runtime.Serialization.dll": {},
  107. "ref/netcore50/System.ServiceModel.Web.dll": {},
  108. "ref/netcore50/System.ServiceModel.dll": {},
  109. "ref/netcore50/System.Windows.dll": {},
  110. "ref/netcore50/System.Xml.Linq.dll": {},
  111. "ref/netcore50/System.Xml.Serialization.dll": {},
  112. "ref/netcore50/System.Xml.dll": {},
  113. "ref/netcore50/System.dll": {},
  114. "ref/netcore50/mscorlib.dll": {}
  115. },
  116. "runtime": {
  117. "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
  118. "lib/netcore50/System.Core.dll": {},
  119. "lib/netcore50/System.Net.dll": {},
  120. "lib/netcore50/System.Numerics.dll": {},
  121. "lib/netcore50/System.Runtime.Serialization.dll": {},
  122. "lib/netcore50/System.ServiceModel.Web.dll": {},
  123. "lib/netcore50/System.ServiceModel.dll": {},
  124. "lib/netcore50/System.Windows.dll": {},
  125. "lib/netcore50/System.Xml.Linq.dll": {},
  126. "lib/netcore50/System.Xml.Serialization.dll": {},
  127. "lib/netcore50/System.Xml.dll": {},
  128. "lib/netcore50/System.dll": {}
  129. },
  130. "runtimeTargets": {
  131. "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {
  132. "assetType": "runtime",
  133. "rid": "aot"
  134. },
  135. "runtimes/aot/lib/netcore50/System.Core.dll": {
  136. "assetType": "runtime",
  137. "rid": "aot"
  138. },
  139. "runtimes/aot/lib/netcore50/System.Net.dll": {
  140. "assetType": "runtime",
  141. "rid": "aot"
  142. },
  143. "runtimes/aot/lib/netcore50/System.Numerics.dll": {
  144. "assetType": "runtime",
  145. "rid": "aot"
  146. },
  147. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {
  148. "assetType": "runtime",
  149. "rid": "aot"
  150. },
  151. "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {
  152. "assetType": "runtime",
  153. "rid": "aot"
  154. },
  155. "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {
  156. "assetType": "runtime",
  157. "rid": "aot"
  158. },
  159. "runtimes/aot/lib/netcore50/System.Windows.dll": {
  160. "assetType": "runtime",
  161. "rid": "aot"
  162. },
  163. "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {
  164. "assetType": "runtime",
  165. "rid": "aot"
  166. },
  167. "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {
  168. "assetType": "runtime",
  169. "rid": "aot"
  170. },
  171. "runtimes/aot/lib/netcore50/System.Xml.dll": {
  172. "assetType": "runtime",
  173. "rid": "aot"
  174. },
  175. "runtimes/aot/lib/netcore50/System.dll": {
  176. "assetType": "runtime",
  177. "rid": "aot"
  178. },
  179. "runtimes/aot/lib/netcore50/mscorlib.dll": {
  180. "assetType": "runtime",
  181. "rid": "aot"
  182. }
  183. }
  184. },
  185. "Microsoft.NETCore.Runtime/1.0.1": {
  186. "type": "package",
  187. "dependencies": {
  188. "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1",
  189. "Microsoft.NETCore.Runtime.Native": "1.0.1"
  190. }
  191. },
  192. "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {
  193. "type": "package"
  194. },
  195. "Microsoft.NETCore.Runtime.Native/1.0.1": {
  196. "type": "package"
  197. },
  198. "Microsoft.NETCore.Targets/1.0.0": {
  199. "type": "package",
  200. "dependencies": {
  201. "Microsoft.NETCore.Platforms": "1.0.0",
  202. "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0"
  203. }
  204. },
  205. "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {
  206. "type": "package"
  207. },
  208. "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": {
  209. "type": "package",
  210. "dependencies": {
  211. "Microsoft.NETCore": "5.0.0",
  212. "Microsoft.NETCore.Portable.Compatibility": "1.0.0",
  213. "Microsoft.NETCore.Runtime": "1.0.1",
  214. "Microsoft.Win32.Primitives": "4.0.0",
  215. "System.ComponentModel.EventBasedAsync": "4.0.10",
  216. "System.Data.Common": "4.0.0",
  217. "System.Diagnostics.Contracts": "4.0.0",
  218. "System.Diagnostics.StackTrace": "4.0.0",
  219. "System.IO.IsolatedStorage": "4.0.0",
  220. "System.Net.Http.Rtc": "4.0.0",
  221. "System.Net.Requests": "4.0.10",
  222. "System.Net.Sockets": "4.0.0",
  223. "System.Net.WebHeaderCollection": "4.0.0",
  224. "System.Numerics.Vectors.WindowsRuntime": "4.0.0",
  225. "System.Reflection.Context": "4.0.0",
  226. "System.Runtime.InteropServices.WindowsRuntime": "4.0.0",
  227. "System.Runtime.Serialization.Json": "4.0.1",
  228. "System.Runtime.Serialization.Primitives": "4.1.0",
  229. "System.Runtime.Serialization.Xml": "4.1.0",
  230. "System.Runtime.WindowsRuntime": "4.0.10",
  231. "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0",
  232. "System.ServiceModel.Duplex": "4.0.0",
  233. "System.ServiceModel.Http": "4.0.10",
  234. "System.ServiceModel.NetTcp": "4.0.0",
  235. "System.ServiceModel.Primitives": "4.0.0",
  236. "System.ServiceModel.Security": "4.0.0",
  237. "System.Text.Encoding.CodePages": "4.0.0",
  238. "System.Xml.XmlSerializer": "4.0.10"
  239. }
  240. },
  241. "Microsoft.VisualBasic/10.0.0": {
  242. "type": "package",
  243. "dependencies": {
  244. "System.Collections": "4.0.10",
  245. "System.Diagnostics.Debug": "4.0.10",
  246. "System.Dynamic.Runtime": "4.0.10",
  247. "System.Globalization": "4.0.10",
  248. "System.Linq": "4.0.0",
  249. "System.Linq.Expressions": "4.0.10",
  250. "System.ObjectModel": "4.0.10",
  251. "System.Reflection": "4.0.10",
  252. "System.Reflection.Extensions": "4.0.0",
  253. "System.Reflection.Primitives": "4.0.0",
  254. "System.Reflection.TypeExtensions": "4.0.0",
  255. "System.Resources.ResourceManager": "4.0.0",
  256. "System.Runtime": "4.0.20",
  257. "System.Runtime.Extensions": "4.0.10",
  258. "System.Runtime.InteropServices": "4.0.20",
  259. "System.Threading": "4.0.10"
  260. },
  261. "compile": {
  262. "ref/netcore50/Microsoft.VisualBasic.dll": {}
  263. },
  264. "runtime": {
  265. "lib/netcore50/Microsoft.VisualBasic.dll": {}
  266. }
  267. },
  268. "Microsoft.Win32.Primitives/4.0.0": {
  269. "type": "package",
  270. "dependencies": {
  271. "System.Runtime": "4.0.20",
  272. "System.Runtime.InteropServices": "4.0.20"
  273. },
  274. "compile": {
  275. "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
  276. },
  277. "runtime": {
  278. "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
  279. }
  280. },
  281. "System.AppContext/4.0.0": {
  282. "type": "package",
  283. "dependencies": {
  284. "System.Collections": "4.0.0",
  285. "System.Resources.ResourceManager": "4.0.0",
  286. "System.Runtime": "4.0.20",
  287. "System.Threading": "4.0.0"
  288. },
  289. "compile": {
  290. "ref/dotnet/System.AppContext.dll": {}
  291. },
  292. "runtime": {
  293. "lib/netcore50/System.AppContext.dll": {}
  294. }
  295. },
  296. "System.Collections/4.0.10": {
  297. "type": "package",
  298. "dependencies": {
  299. "System.Diagnostics.Debug": "4.0.0",
  300. "System.Resources.ResourceManager": "4.0.0",
  301. "System.Runtime": "4.0.20",
  302. "System.Runtime.Extensions": "4.0.0",
  303. "System.Threading": "4.0.0"
  304. },
  305. "compile": {
  306. "ref/dotnet/System.Collections.dll": {}
  307. },
  308. "runtime": {
  309. "lib/netcore50/System.Collections.dll": {}
  310. },
  311. "runtimeTargets": {
  312. "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {
  313. "assetType": "runtime",
  314. "rid": "win8-aot"
  315. }
  316. }
  317. },
  318. "System.Collections.Concurrent/4.0.10": {
  319. "type": "package",
  320. "dependencies": {
  321. "System.Collections": "4.0.10",
  322. "System.Diagnostics.Debug": "4.0.10",
  323. "System.Diagnostics.Tracing": "4.0.20",
  324. "System.Globalization": "4.0.10",
  325. "System.Resources.ResourceManager": "4.0.0",
  326. "System.Runtime": "4.0.20",
  327. "System.Runtime.Extensions": "4.0.10",
  328. "System.Threading": "4.0.10",
  329. "System.Threading.Tasks": "4.0.10"
  330. },
  331. "compile": {
  332. "ref/dotnet/System.Collections.Concurrent.dll": {}
  333. },
  334. "runtime": {
  335. "lib/dotnet/System.Collections.Concurrent.dll": {}
  336. }
  337. },
  338. "System.Collections.Immutable/1.1.37": {
  339. "type": "package",
  340. "dependencies": {
  341. "System.Collections": "4.0.0",
  342. "System.Diagnostics.Debug": "4.0.0",
  343. "System.Globalization": "4.0.0",
  344. "System.Linq": "4.0.0",
  345. "System.Resources.ResourceManager": "4.0.0",
  346. "System.Runtime": "4.0.0",
  347. "System.Runtime.Extensions": "4.0.0",
  348. "System.Threading": "4.0.0"
  349. },
  350. "compile": {
  351. "lib/dotnet/System.Collections.Immutable.dll": {}
  352. },
  353. "runtime": {
  354. "lib/dotnet/System.Collections.Immutable.dll": {}
  355. }
  356. },
  357. "System.Collections.NonGeneric/4.0.0": {
  358. "type": "package",
  359. "dependencies": {
  360. "System.Diagnostics.Debug": "4.0.10",
  361. "System.Globalization": "4.0.10",
  362. "System.Resources.ResourceManager": "4.0.0",
  363. "System.Runtime": "4.0.20",
  364. "System.Runtime.Extensions": "4.0.10",
  365. "System.Threading": "4.0.10"
  366. },
  367. "compile": {
  368. "ref/dotnet/System.Collections.NonGeneric.dll": {}
  369. },
  370. "runtime": {
  371. "lib/dotnet/System.Collections.NonGeneric.dll": {}
  372. }
  373. },
  374. "System.Collections.Specialized/4.0.0": {
  375. "type": "package",
  376. "dependencies": {
  377. "System.Collections.NonGeneric": "4.0.0",
  378. "System.Globalization": "4.0.10",
  379. "System.Globalization.Extensions": "4.0.0",
  380. "System.Resources.ResourceManager": "4.0.0",
  381. "System.Runtime": "4.0.20",
  382. "System.Runtime.Extensions": "4.0.10",
  383. "System.Threading": "4.0.10"
  384. },
  385. "compile": {
  386. "ref/dotnet/System.Collections.Specialized.dll": {}
  387. },
  388. "runtime": {
  389. "lib/dotnet/System.Collections.Specialized.dll": {}
  390. }
  391. },
  392. "System.ComponentModel/4.0.0": {
  393. "type": "package",
  394. "dependencies": {
  395. "System.Runtime": "4.0.20"
  396. },
  397. "compile": {
  398. "ref/netcore50/System.ComponentModel.dll": {}
  399. },
  400. "runtime": {
  401. "lib/netcore50/System.ComponentModel.dll": {}
  402. }
  403. },
  404. "System.ComponentModel.Annotations/4.0.10": {
  405. "type": "package",
  406. "dependencies": {
  407. "System.Collections": "4.0.10",
  408. "System.ComponentModel": "4.0.0",
  409. "System.Globalization": "4.0.10",
  410. "System.Linq": "4.0.0",
  411. "System.Reflection": "4.0.10",
  412. "System.Reflection.Extensions": "4.0.0",
  413. "System.Resources.ResourceManager": "4.0.0",
  414. "System.Runtime": "4.0.20",
  415. "System.Runtime.Extensions": "4.0.10",
  416. "System.Text.RegularExpressions": "4.0.10",
  417. "System.Threading": "4.0.10"
  418. },
  419. "compile": {
  420. "ref/dotnet/System.ComponentModel.Annotations.dll": {}
  421. },
  422. "runtime": {
  423. "lib/dotnet/System.ComponentModel.Annotations.dll": {}
  424. }
  425. },
  426. "System.ComponentModel.EventBasedAsync/4.0.10": {
  427. "type": "package",
  428. "dependencies": {
  429. "System.Resources.ResourceManager": "4.0.0",
  430. "System.Runtime": "4.0.20",
  431. "System.Threading": "4.0.10",
  432. "System.Threading.Tasks": "4.0.10"
  433. },
  434. "compile": {
  435. "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
  436. },
  437. "runtime": {
  438. "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
  439. }
  440. },
  441. "System.Data.Common/4.0.0": {
  442. "type": "package",
  443. "dependencies": {
  444. "System.Collections": "4.0.10",
  445. "System.Collections.NonGeneric": "4.0.0",
  446. "System.Globalization": "4.0.10",
  447. "System.IO": "4.0.0",
  448. "System.Resources.ResourceManager": "4.0.0",
  449. "System.Runtime": "4.0.20",
  450. "System.Runtime.Extensions": "4.0.10",
  451. "System.Text.RegularExpressions": "4.0.0",
  452. "System.Threading.Tasks": "4.0.0"
  453. },
  454. "compile": {
  455. "ref/dotnet/System.Data.Common.dll": {}
  456. },
  457. "runtime": {
  458. "lib/dotnet/System.Data.Common.dll": {}
  459. }
  460. },
  461. "System.Diagnostics.Contracts/4.0.0": {
  462. "type": "package",
  463. "compile": {
  464. "ref/netcore50/System.Diagnostics.Contracts.dll": {}
  465. },
  466. "runtime": {
  467. "lib/netcore50/System.Diagnostics.Contracts.dll": {}
  468. },
  469. "runtimeTargets": {
  470. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {
  471. "assetType": "runtime",
  472. "rid": "win8-aot"
  473. }
  474. }
  475. },
  476. "System.Diagnostics.Debug/4.0.10": {
  477. "type": "package",
  478. "dependencies": {
  479. "System.Runtime": "4.0.0"
  480. },
  481. "compile": {
  482. "ref/dotnet/System.Diagnostics.Debug.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netcore50/System.Diagnostics.Debug.dll": {}
  486. },
  487. "runtimeTargets": {
  488. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {
  489. "assetType": "runtime",
  490. "rid": "win8-aot"
  491. }
  492. }
  493. },
  494. "System.Diagnostics.StackTrace/4.0.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "System.Runtime": "4.0.20"
  498. },
  499. "compile": {
  500. "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
  501. },
  502. "runtime": {
  503. "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
  504. },
  505. "runtimeTargets": {
  506. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {
  507. "assetType": "runtime",
  508. "rid": "win8-aot"
  509. }
  510. }
  511. },
  512. "System.Diagnostics.Tools/4.0.0": {
  513. "type": "package",
  514. "compile": {
  515. "ref/netcore50/System.Diagnostics.Tools.dll": {}
  516. },
  517. "runtime": {
  518. "lib/netcore50/System.Diagnostics.Tools.dll": {}
  519. },
  520. "runtimeTargets": {
  521. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {
  522. "assetType": "runtime",
  523. "rid": "win8-aot"
  524. }
  525. }
  526. },
  527. "System.Diagnostics.Tracing/4.0.20": {
  528. "type": "package",
  529. "dependencies": {
  530. "System.Collections": "4.0.10",
  531. "System.Globalization": "4.0.0",
  532. "System.Reflection": "4.0.10",
  533. "System.Reflection.Extensions": "4.0.0",
  534. "System.Resources.ResourceManager": "4.0.0",
  535. "System.Runtime": "4.0.20",
  536. "System.Runtime.Extensions": "4.0.10",
  537. "System.Runtime.InteropServices": "4.0.0",
  538. "System.Text.Encoding": "4.0.0",
  539. "System.Threading": "4.0.10"
  540. },
  541. "compile": {
  542. "ref/dotnet/System.Diagnostics.Tracing.dll": {}
  543. },
  544. "runtime": {
  545. "lib/netcore50/System.Diagnostics.Tracing.dll": {}
  546. },
  547. "runtimeTargets": {
  548. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {
  549. "assetType": "runtime",
  550. "rid": "win8-aot"
  551. }
  552. }
  553. },
  554. "System.Dynamic.Runtime/4.0.10": {
  555. "type": "package",
  556. "dependencies": {
  557. "System.Collections": "4.0.0",
  558. "System.Diagnostics.Debug": "4.0.0",
  559. "System.Globalization": "4.0.0",
  560. "System.Linq": "4.0.0",
  561. "System.Linq.Expressions": "4.0.10",
  562. "System.ObjectModel": "4.0.0",
  563. "System.Reflection": "4.0.0",
  564. "System.Reflection.TypeExtensions": "4.0.0",
  565. "System.Resources.ResourceManager": "4.0.0",
  566. "System.Runtime": "4.0.20",
  567. "System.Runtime.Extensions": "4.0.0",
  568. "System.Threading": "4.0.0"
  569. },
  570. "compile": {
  571. "ref/dotnet/System.Dynamic.Runtime.dll": {}
  572. },
  573. "runtime": {
  574. "lib/netcore50/System.Dynamic.Runtime.dll": {}
  575. },
  576. "runtimeTargets": {
  577. "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {
  578. "assetType": "runtime",
  579. "rid": "win8-aot"
  580. }
  581. }
  582. },
  583. "System.Globalization/4.0.10": {
  584. "type": "package",
  585. "dependencies": {
  586. "System.Runtime": "4.0.0"
  587. },
  588. "compile": {
  589. "ref/dotnet/System.Globalization.dll": {}
  590. },
  591. "runtime": {
  592. "lib/netcore50/System.Globalization.dll": {}
  593. },
  594. "runtimeTargets": {
  595. "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {
  596. "assetType": "runtime",
  597. "rid": "win8-aot"
  598. }
  599. }
  600. },
  601. "System.Globalization.Calendars/4.0.0": {
  602. "type": "package",
  603. "dependencies": {
  604. "System.Globalization": "4.0.0",
  605. "System.Runtime": "4.0.0"
  606. },
  607. "compile": {
  608. "ref/dotnet/System.Globalization.Calendars.dll": {}
  609. },
  610. "runtime": {
  611. "lib/netcore50/System.Globalization.Calendars.dll": {}
  612. },
  613. "runtimeTargets": {
  614. "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {
  615. "assetType": "runtime",
  616. "rid": "win8-aot"
  617. }
  618. }
  619. },
  620. "System.Globalization.Extensions/4.0.0": {
  621. "type": "package",
  622. "dependencies": {
  623. "System.Globalization": "4.0.10",
  624. "System.Resources.ResourceManager": "4.0.0",
  625. "System.Runtime": "4.0.20",
  626. "System.Runtime.Extensions": "4.0.10",
  627. "System.Runtime.InteropServices": "4.0.20"
  628. },
  629. "compile": {
  630. "ref/dotnet/System.Globalization.Extensions.dll": {}
  631. },
  632. "runtime": {
  633. "lib/dotnet/System.Globalization.Extensions.dll": {}
  634. }
  635. },
  636. "System.IO/4.0.10": {
  637. "type": "package",
  638. "dependencies": {
  639. "System.Globalization": "4.0.0",
  640. "System.Runtime": "4.0.20",
  641. "System.Text.Encoding": "4.0.10",
  642. "System.Text.Encoding.Extensions": "4.0.0",
  643. "System.Threading": "4.0.0",
  644. "System.Threading.Tasks": "4.0.0"
  645. },
  646. "compile": {
  647. "ref/dotnet/System.IO.dll": {}
  648. },
  649. "runtime": {
  650. "lib/netcore50/System.IO.dll": {}
  651. },
  652. "runtimeTargets": {
  653. "runtimes/win8-aot/lib/netcore50/System.IO.dll": {
  654. "assetType": "runtime",
  655. "rid": "win8-aot"
  656. }
  657. }
  658. },
  659. "System.IO.Compression/4.0.0": {
  660. "type": "package",
  661. "dependencies": {
  662. "System.Collections": "4.0.0",
  663. "System.IO": "4.0.0",
  664. "System.Resources.ResourceManager": "4.0.0",
  665. "System.Runtime": "4.0.0",
  666. "System.Runtime.Extensions": "4.0.0",
  667. "System.Runtime.InteropServices": "4.0.0",
  668. "System.Text.Encoding": "4.0.0",
  669. "System.Threading": "4.0.0",
  670. "System.Threading.Tasks": "4.0.0"
  671. },
  672. "compile": {
  673. "ref/netcore50/System.IO.Compression.dll": {}
  674. },
  675. "runtime": {
  676. "lib/netcore50/System.IO.Compression.dll": {}
  677. }
  678. },
  679. "System.IO.Compression.ZipFile/4.0.0": {
  680. "type": "package",
  681. "dependencies": {
  682. "System.IO": "4.0.10",
  683. "System.IO.Compression": "4.0.0",
  684. "System.IO.FileSystem": "4.0.0",
  685. "System.IO.FileSystem.Primitives": "4.0.0",
  686. "System.Resources.ResourceManager": "4.0.0",
  687. "System.Runtime": "4.0.20",
  688. "System.Runtime.Extensions": "4.0.10",
  689. "System.Text.Encoding": "4.0.10"
  690. },
  691. "compile": {
  692. "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
  693. },
  694. "runtime": {
  695. "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
  696. }
  697. },
  698. "System.IO.FileSystem/4.0.0": {
  699. "type": "package",
  700. "dependencies": {
  701. "System.Collections": "4.0.10",
  702. "System.Diagnostics.Debug": "4.0.10",
  703. "System.IO": "4.0.10",
  704. "System.IO.FileSystem.Primitives": "4.0.0",
  705. "System.Resources.ResourceManager": "4.0.0",
  706. "System.Runtime": "4.0.20",
  707. "System.Runtime.Extensions": "4.0.10",
  708. "System.Runtime.Handles": "4.0.0",
  709. "System.Runtime.InteropServices": "4.0.20",
  710. "System.Runtime.WindowsRuntime": "4.0.0",
  711. "System.Text.Encoding": "4.0.10",
  712. "System.Text.Encoding.Extensions": "4.0.10",
  713. "System.Threading": "4.0.10",
  714. "System.Threading.Overlapped": "4.0.0",
  715. "System.Threading.Tasks": "4.0.10"
  716. },
  717. "compile": {
  718. "ref/dotnet/System.IO.FileSystem.dll": {}
  719. },
  720. "runtime": {
  721. "lib/netcore50/System.IO.FileSystem.dll": {}
  722. }
  723. },
  724. "System.IO.FileSystem.Primitives/4.0.0": {
  725. "type": "package",
  726. "dependencies": {
  727. "System.Runtime": "4.0.20"
  728. },
  729. "compile": {
  730. "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
  731. },
  732. "runtime": {
  733. "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
  734. }
  735. },
  736. "System.IO.IsolatedStorage/4.0.0": {
  737. "type": "package",
  738. "dependencies": {
  739. "System.IO": "4.0.10",
  740. "System.IO.FileSystem": "4.0.0",
  741. "System.IO.FileSystem.Primitives": "4.0.0",
  742. "System.Linq": "4.0.0",
  743. "System.Resources.ResourceManager": "4.0.0",
  744. "System.Runtime": "4.0.20",
  745. "System.Runtime.Extensions": "4.0.10",
  746. "System.Threading": "4.0.10",
  747. "System.Threading.Tasks": "4.0.10"
  748. },
  749. "compile": {
  750. "ref/dotnet/System.IO.IsolatedStorage.dll": {}
  751. },
  752. "runtime": {
  753. "lib/netcore50/System.IO.IsolatedStorage.dll": {}
  754. }
  755. },
  756. "System.IO.UnmanagedMemoryStream/4.0.0": {
  757. "type": "package",
  758. "dependencies": {
  759. "System.IO": "4.0.10",
  760. "System.IO.FileSystem.Primitives": "4.0.0",
  761. "System.Resources.ResourceManager": "4.0.0",
  762. "System.Runtime": "4.0.20",
  763. "System.Runtime.InteropServices": "4.0.20",
  764. "System.Threading": "4.0.10",
  765. "System.Threading.Tasks": "4.0.10"
  766. },
  767. "compile": {
  768. "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
  769. },
  770. "runtime": {
  771. "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
  772. }
  773. },
  774. "System.Linq/4.0.0": {
  775. "type": "package",
  776. "dependencies": {
  777. "System.Collections": "4.0.10",
  778. "System.Diagnostics.Debug": "4.0.10",
  779. "System.Resources.ResourceManager": "4.0.0",
  780. "System.Runtime": "4.0.20",
  781. "System.Runtime.Extensions": "4.0.10"
  782. },
  783. "compile": {
  784. "ref/netcore50/System.Linq.dll": {}
  785. },
  786. "runtime": {
  787. "lib/netcore50/System.Linq.dll": {}
  788. }
  789. },
  790. "System.Linq.Expressions/4.0.10": {
  791. "type": "package",
  792. "dependencies": {
  793. "System.Collections": "4.0.0",
  794. "System.Diagnostics.Debug": "4.0.0",
  795. "System.Globalization": "4.0.0",
  796. "System.IO": "4.0.0",
  797. "System.Linq": "4.0.0",
  798. "System.Reflection": "4.0.0",
  799. "System.Reflection.Extensions": "4.0.0",
  800. "System.Reflection.Primitives": "4.0.0",
  801. "System.Reflection.TypeExtensions": "4.0.0",
  802. "System.Resources.ResourceManager": "4.0.0",
  803. "System.Runtime": "4.0.20",
  804. "System.Runtime.Extensions": "4.0.0",
  805. "System.Threading": "4.0.0"
  806. },
  807. "compile": {
  808. "ref/dotnet/System.Linq.Expressions.dll": {}
  809. },
  810. "runtime": {
  811. "lib/netcore50/System.Linq.Expressions.dll": {}
  812. },
  813. "runtimeTargets": {
  814. "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {
  815. "assetType": "runtime",
  816. "rid": "win8-aot"
  817. }
  818. }
  819. },
  820. "System.Linq.Parallel/4.0.0": {
  821. "type": "package",
  822. "dependencies": {
  823. "System.Collections": "4.0.10",
  824. "System.Collections.Concurrent": "4.0.10",
  825. "System.Diagnostics.Debug": "4.0.10",
  826. "System.Diagnostics.Tracing": "4.0.20",
  827. "System.Linq": "4.0.0",
  828. "System.Resources.ResourceManager": "4.0.0",
  829. "System.Runtime": "4.0.20",
  830. "System.Runtime.Extensions": "4.0.10",
  831. "System.Threading": "4.0.10",
  832. "System.Threading.Tasks": "4.0.10"
  833. },
  834. "compile": {
  835. "ref/netcore50/System.Linq.Parallel.dll": {}
  836. },
  837. "runtime": {
  838. "lib/netcore50/System.Linq.Parallel.dll": {}
  839. }
  840. },
  841. "System.Linq.Queryable/4.0.0": {
  842. "type": "package",
  843. "dependencies": {
  844. "System.Collections": "4.0.10",
  845. "System.Linq": "4.0.0",
  846. "System.Linq.Expressions": "4.0.10",
  847. "System.Reflection": "4.0.10",
  848. "System.Reflection.Extensions": "4.0.0",
  849. "System.Resources.ResourceManager": "4.0.0",
  850. "System.Runtime": "4.0.20"
  851. },
  852. "compile": {
  853. "ref/netcore50/System.Linq.Queryable.dll": {}
  854. },
  855. "runtime": {
  856. "lib/netcore50/System.Linq.Queryable.dll": {}
  857. }
  858. },
  859. "System.Net.Http/4.0.0": {
  860. "type": "package",
  861. "dependencies": {
  862. "System.Collections": "4.0.10",
  863. "System.Diagnostics.Debug": "4.0.10",
  864. "System.Globalization": "4.0.10",
  865. "System.IO": "4.0.10",
  866. "System.Net.Primitives": "4.0.0",
  867. "System.Resources.ResourceManager": "4.0.0",
  868. "System.Runtime": "4.0.20",
  869. "System.Runtime.Extensions": "4.0.10",
  870. "System.Runtime.InteropServices": "4.0.20",
  871. "System.Runtime.WindowsRuntime": "4.0.10",
  872. "System.Text.Encoding": "4.0.10",
  873. "System.Text.Encoding.Extensions": "4.0.10",
  874. "System.Threading": "4.0.10",
  875. "System.Threading.Tasks": "4.0.10"
  876. },
  877. "compile": {
  878. "ref/netcore50/System.Net.Http.dll": {}
  879. },
  880. "runtime": {
  881. "lib/netcore50/System.Net.Http.dll": {}
  882. }
  883. },
  884. "System.Net.Http.Rtc/4.0.0": {
  885. "type": "package",
  886. "dependencies": {
  887. "System.Net.Http": "4.0.0",
  888. "System.Runtime": "4.0.20"
  889. },
  890. "compile": {
  891. "ref/netcore50/System.Net.Http.Rtc.dll": {}
  892. },
  893. "runtime": {
  894. "lib/netcore50/System.Net.Http.Rtc.dll": {}
  895. }
  896. },
  897. "System.Net.NetworkInformation/4.0.0": {
  898. "type": "package",
  899. "dependencies": {
  900. "System.Runtime": "4.0.0",
  901. "System.Runtime.InteropServices.WindowsRuntime": "4.0.0",
  902. "System.Threading": "4.0.0"
  903. },
  904. "compile": {
  905. "ref/netcore50/System.Net.NetworkInformation.dll": {}
  906. },
  907. "runtime": {
  908. "lib/netcore50/System.Net.NetworkInformation.dll": {}
  909. }
  910. },
  911. "System.Net.Primitives/4.0.10": {
  912. "type": "package",
  913. "dependencies": {
  914. "System.Private.Networking": "4.0.0",
  915. "System.Runtime": "4.0.20"
  916. },
  917. "compile": {
  918. "ref/dotnet/System.Net.Primitives.dll": {}
  919. },
  920. "runtime": {
  921. "lib/netcore50/System.Net.Primitives.dll": {}
  922. }
  923. },
  924. "System.Net.Requests/4.0.10": {
  925. "type": "package",
  926. "dependencies": {
  927. "System.Collections": "4.0.10",
  928. "System.Diagnostics.Debug": "4.0.10",
  929. "System.IO": "4.0.10",
  930. "System.Net.Http": "4.0.0",
  931. "System.Net.Primitives": "4.0.10",
  932. "System.Net.WebHeaderCollection": "4.0.0",
  933. "System.Resources.ResourceManager": "4.0.0",
  934. "System.Runtime": "4.0.20",
  935. "System.Threading": "4.0.10",
  936. "System.Threading.Tasks": "4.0.10"
  937. },
  938. "compile": {
  939. "ref/dotnet/System.Net.Requests.dll": {}
  940. },
  941. "runtime": {
  942. "lib/dotnet/System.Net.Requests.dll": {}
  943. }
  944. },
  945. "System.Net.Sockets/4.0.0": {
  946. "type": "package",
  947. "dependencies": {
  948. "System.Private.Networking": "4.0.0",
  949. "System.Runtime": "4.0.20"
  950. },
  951. "compile": {
  952. "ref/dotnet/System.Net.Sockets.dll": {}
  953. },
  954. "runtime": {
  955. "lib/netcore50/System.Net.Sockets.dll": {}
  956. }
  957. },
  958. "System.Net.WebHeaderCollection/4.0.0": {
  959. "type": "package",
  960. "dependencies": {
  961. "System.Collections.NonGeneric": "4.0.0",
  962. "System.Collections.Specialized": "4.0.0",
  963. "System.Resources.ResourceManager": "4.0.0",
  964. "System.Runtime": "4.0.20"
  965. },
  966. "compile": {
  967. "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
  968. },
  969. "runtime": {
  970. "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
  971. }
  972. },
  973. "System.Numerics.Vectors/4.1.0": {
  974. "type": "package",
  975. "dependencies": {
  976. "System.Globalization": "4.0.10",
  977. "System.Resources.ResourceManager": "4.0.0",
  978. "System.Runtime": "4.0.20",
  979. "System.Runtime.Extensions": "4.0.10"
  980. },
  981. "compile": {
  982. "ref/dotnet/System.Numerics.Vectors.dll": {}
  983. },
  984. "runtime": {
  985. "lib/dotnet/System.Numerics.Vectors.dll": {}
  986. }
  987. },
  988. "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
  989. "type": "package",
  990. "dependencies": {
  991. "System.Numerics.Vectors": "4.1.0",
  992. "System.Runtime": "4.0.20",
  993. "System.Runtime.WindowsRuntime": "4.0.0"
  994. },
  995. "compile": {
  996. "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
  997. },
  998. "runtime": {
  999. "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
  1000. }
  1001. },
  1002. "System.ObjectModel/4.0.10": {
  1003. "type": "package",
  1004. "dependencies": {
  1005. "System.Collections": "4.0.10",
  1006. "System.Diagnostics.Debug": "4.0.10",
  1007. "System.Resources.ResourceManager": "4.0.0",
  1008. "System.Runtime": "4.0.20",
  1009. "System.Threading": "4.0.10"
  1010. },
  1011. "compile": {
  1012. "ref/dotnet/System.ObjectModel.dll": {}
  1013. },
  1014. "runtime": {
  1015. "lib/dotnet/System.ObjectModel.dll": {}
  1016. }
  1017. },
  1018. "System.Private.DataContractSerialization/4.1.0": {
  1019. "type": "package",
  1020. "compile": {
  1021. "ref/netcore50/_._": {}
  1022. }
  1023. },
  1024. "System.Private.Networking/4.0.0": {
  1025. "type": "package",
  1026. "dependencies": {
  1027. "Microsoft.Win32.Primitives": "4.0.0",
  1028. "System.Collections": "4.0.10",
  1029. "System.Collections.NonGeneric": "4.0.0",
  1030. "System.Diagnostics.Debug": "4.0.10",
  1031. "System.Diagnostics.Tracing": "4.0.20",
  1032. "System.Globalization": "4.0.10",
  1033. "System.IO": "4.0.10",
  1034. "System.IO.FileSystem": "4.0.0",
  1035. "System.IO.FileSystem.Primitives": "4.0.0",
  1036. "System.Resources.ResourceManager": "4.0.0",
  1037. "System.Runtime": "4.0.20",
  1038. "System.Runtime.Extensions": "4.0.10",
  1039. "System.Runtime.Handles": "4.0.0",
  1040. "System.Runtime.InteropServices": "4.0.20",
  1041. "System.Threading": "4.0.10",
  1042. "System.Threading.Overlapped": "4.0.0",
  1043. "System.Threading.Tasks": "4.0.10"
  1044. },
  1045. "compile": {
  1046. "ref/netcore50/_._": {}
  1047. },
  1048. "runtime": {
  1049. "lib/netcore50/System.Private.Networking.dll": {}
  1050. }
  1051. },
  1052. "System.Private.ServiceModel/4.0.0": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "System.Collections": "4.0.10",
  1056. "System.Collections.Concurrent": "4.0.10",
  1057. "System.Collections.NonGeneric": "4.0.0",
  1058. "System.Collections.Specialized": "4.0.0",
  1059. "System.ComponentModel.EventBasedAsync": "4.0.10",
  1060. "System.Diagnostics.Contracts": "4.0.0",
  1061. "System.Diagnostics.Debug": "4.0.10",
  1062. "System.Globalization": "4.0.10",
  1063. "System.IO": "4.0.10",
  1064. "System.IO.Compression": "4.0.0",
  1065. "System.Linq": "4.0.0",
  1066. "System.Linq.Expressions": "4.0.10",
  1067. "System.Linq.Queryable": "4.0.0",
  1068. "System.Net.Http": "4.0.0",
  1069. "System.Net.Primitives": "4.0.10",
  1070. "System.Net.WebHeaderCollection": "4.0.0",
  1071. "System.ObjectModel": "4.0.10",
  1072. "System.Reflection": "4.0.10",
  1073. "System.Reflection.DispatchProxy": "4.0.0",
  1074. "System.Reflection.Extensions": "4.0.0",
  1075. "System.Reflection.Primitives": "4.0.0",
  1076. "System.Reflection.TypeExtensions": "4.0.0",
  1077. "System.Resources.ResourceManager": "4.0.0",
  1078. "System.Runtime": "4.0.20",
  1079. "System.Runtime.Extensions": "4.0.10",
  1080. "System.Runtime.InteropServices": "4.0.20",
  1081. "System.Runtime.Serialization.Primitives": "4.0.10",
  1082. "System.Runtime.Serialization.Xml": "4.0.10",
  1083. "System.Runtime.WindowsRuntime": "4.0.10",
  1084. "System.Security.Claims": "4.0.0",
  1085. "System.Security.Principal": "4.0.0",
  1086. "System.Text.Encoding": "4.0.10",
  1087. "System.Threading": "4.0.10",
  1088. "System.Threading.Tasks": "4.0.10",
  1089. "System.Threading.Timer": "4.0.0",
  1090. "System.Xml.ReaderWriter": "4.0.10",
  1091. "System.Xml.XmlDocument": "4.0.0",
  1092. "System.Xml.XmlSerializer": "4.0.10"
  1093. },
  1094. "compile": {
  1095. "ref/netcore50/_._": {}
  1096. },
  1097. "runtime": {
  1098. "lib/netcore50/System.Private.ServiceModel.dll": {}
  1099. }
  1100. },
  1101. "System.Private.Uri/4.0.0": {
  1102. "type": "package",
  1103. "compile": {
  1104. "ref/netcore50/_._": {}
  1105. },
  1106. "runtime": {
  1107. "lib/netcore50/System.Private.Uri.dll": {}
  1108. },
  1109. "runtimeTargets": {
  1110. "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {
  1111. "assetType": "runtime",
  1112. "rid": "win8-aot"
  1113. }
  1114. }
  1115. },
  1116. "System.Reflection/4.0.10": {
  1117. "type": "package",
  1118. "dependencies": {
  1119. "System.IO": "4.0.0",
  1120. "System.Reflection.Primitives": "4.0.0",
  1121. "System.Runtime": "4.0.20"
  1122. },
  1123. "compile": {
  1124. "ref/dotnet/System.Reflection.dll": {}
  1125. },
  1126. "runtime": {
  1127. "lib/netcore50/System.Reflection.dll": {}
  1128. },
  1129. "runtimeTargets": {
  1130. "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {
  1131. "assetType": "runtime",
  1132. "rid": "win8-aot"
  1133. }
  1134. }
  1135. },
  1136. "System.Reflection.Context/4.0.0": {
  1137. "type": "package",
  1138. "dependencies": {
  1139. "System.Reflection": "4.0.10",
  1140. "System.Resources.ResourceManager": "4.0.0",
  1141. "System.Runtime": "4.0.20"
  1142. },
  1143. "compile": {
  1144. "ref/netcore50/System.Reflection.Context.dll": {}
  1145. },
  1146. "runtime": {
  1147. "lib/netcore50/System.Reflection.Context.dll": {}
  1148. }
  1149. },
  1150. "System.Reflection.DispatchProxy/4.0.0": {
  1151. "type": "package",
  1152. "dependencies": {
  1153. "System.Collections": "4.0.10",
  1154. "System.Linq": "4.0.0",
  1155. "System.Reflection": "4.0.10",
  1156. "System.Reflection.Extensions": "4.0.0",
  1157. "System.Reflection.Primitives": "4.0.0",
  1158. "System.Resources.ResourceManager": "4.0.0",
  1159. "System.Runtime": "4.0.20",
  1160. "System.Threading": "4.0.10"
  1161. },
  1162. "compile": {
  1163. "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
  1164. },
  1165. "runtime": {
  1166. "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
  1167. },
  1168. "runtimeTargets": {
  1169. "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {
  1170. "assetType": "runtime",
  1171. "rid": "win8-aot"
  1172. }
  1173. }
  1174. },
  1175. "System.Reflection.Extensions/4.0.0": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "System.Diagnostics.Debug": "4.0.10",
  1179. "System.Reflection": "4.0.10",
  1180. "System.Reflection.Primitives": "4.0.0",
  1181. "System.Reflection.TypeExtensions": "4.0.0",
  1182. "System.Resources.ResourceManager": "4.0.0",
  1183. "System.Runtime": "4.0.20",
  1184. "System.Runtime.Extensions": "4.0.10"
  1185. },
  1186. "compile": {
  1187. "ref/netcore50/System.Reflection.Extensions.dll": {}
  1188. },
  1189. "runtime": {
  1190. "lib/netcore50/System.Reflection.Extensions.dll": {}
  1191. },
  1192. "runtimeTargets": {
  1193. "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {
  1194. "assetType": "runtime",
  1195. "rid": "win8-aot"
  1196. }
  1197. }
  1198. },
  1199. "System.Reflection.Metadata/1.0.22": {
  1200. "type": "package",
  1201. "dependencies": {
  1202. "System.Collections": "4.0.0",
  1203. "System.Collections.Immutable": "1.1.37",
  1204. "System.Diagnostics.Debug": "4.0.0",
  1205. "System.IO": "4.0.0",
  1206. "System.Reflection": "4.0.0",
  1207. "System.Reflection.Extensions": "4.0.0",
  1208. "System.Reflection.Primitives": "4.0.0",
  1209. "System.Resources.ResourceManager": "4.0.0",
  1210. "System.Runtime": "4.0.0",
  1211. "System.Runtime.Extensions": "4.0.0",
  1212. "System.Runtime.InteropServices": "4.0.0",
  1213. "System.Text.Encoding": "4.0.0",
  1214. "System.Text.Encoding.Extensions": "4.0.0",
  1215. "System.Threading": "4.0.0"
  1216. },
  1217. "compile": {
  1218. "lib/dotnet/System.Reflection.Metadata.dll": {}
  1219. },
  1220. "runtime": {
  1221. "lib/dotnet/System.Reflection.Metadata.dll": {}
  1222. }
  1223. },
  1224. "System.Reflection.Primitives/4.0.0": {
  1225. "type": "package",
  1226. "dependencies": {
  1227. "System.Runtime": "4.0.0",
  1228. "System.Threading": "4.0.0"
  1229. },
  1230. "compile": {
  1231. "ref/netcore50/System.Reflection.Primitives.dll": {}
  1232. },
  1233. "runtime": {
  1234. "lib/netcore50/System.Reflection.Primitives.dll": {}
  1235. },
  1236. "runtimeTargets": {
  1237. "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {
  1238. "assetType": "runtime",
  1239. "rid": "win8-aot"
  1240. }
  1241. }
  1242. },
  1243. "System.Reflection.TypeExtensions/4.0.0": {
  1244. "type": "package",
  1245. "dependencies": {
  1246. "System.Diagnostics.Contracts": "4.0.0",
  1247. "System.Diagnostics.Debug": "4.0.10",
  1248. "System.Linq": "4.0.0",
  1249. "System.Reflection": "4.0.10",
  1250. "System.Reflection.Primitives": "4.0.0",
  1251. "System.Resources.ResourceManager": "4.0.0",
  1252. "System.Runtime": "4.0.20",
  1253. "System.Runtime.Extensions": "4.0.10"
  1254. },
  1255. "compile": {
  1256. "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
  1257. },
  1258. "runtime": {
  1259. "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
  1260. },
  1261. "runtimeTargets": {
  1262. "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {
  1263. "assetType": "runtime",
  1264. "rid": "win8-aot"
  1265. }
  1266. }
  1267. },
  1268. "System.Resources.ResourceManager/4.0.0": {
  1269. "type": "package",
  1270. "dependencies": {
  1271. "System.Globalization": "4.0.0",
  1272. "System.Reflection": "4.0.10",
  1273. "System.Runtime": "4.0.20"
  1274. },
  1275. "compile": {
  1276. "ref/netcore50/System.Resources.ResourceManager.dll": {}
  1277. },
  1278. "runtime": {
  1279. "lib/netcore50/System.Resources.ResourceManager.dll": {}
  1280. },
  1281. "runtimeTargets": {
  1282. "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {
  1283. "assetType": "runtime",
  1284. "rid": "win8-aot"
  1285. }
  1286. }
  1287. },
  1288. "System.Runtime/4.0.20": {
  1289. "type": "package",
  1290. "dependencies": {
  1291. "System.Private.Uri": "4.0.0"
  1292. },
  1293. "compile": {
  1294. "ref/dotnet/System.Runtime.dll": {}
  1295. },
  1296. "runtime": {
  1297. "lib/netcore50/System.Runtime.dll": {}
  1298. },
  1299. "runtimeTargets": {
  1300. "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {
  1301. "assetType": "runtime",
  1302. "rid": "win8-aot"
  1303. }
  1304. }
  1305. },
  1306. "System.Runtime.Extensions/4.0.10": {
  1307. "type": "package",
  1308. "dependencies": {
  1309. "System.Runtime": "4.0.20"
  1310. },
  1311. "compile": {
  1312. "ref/dotnet/System.Runtime.Extensions.dll": {}
  1313. },
  1314. "runtime": {
  1315. "lib/netcore50/System.Runtime.Extensions.dll": {}
  1316. },
  1317. "runtimeTargets": {
  1318. "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {
  1319. "assetType": "runtime",
  1320. "rid": "win8-aot"
  1321. }
  1322. }
  1323. },
  1324. "System.Runtime.Handles/4.0.0": {
  1325. "type": "package",
  1326. "dependencies": {
  1327. "System.Runtime": "4.0.0"
  1328. },
  1329. "compile": {
  1330. "ref/dotnet/System.Runtime.Handles.dll": {}
  1331. },
  1332. "runtime": {
  1333. "lib/netcore50/System.Runtime.Handles.dll": {}
  1334. },
  1335. "runtimeTargets": {
  1336. "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {
  1337. "assetType": "runtime",
  1338. "rid": "win8-aot"
  1339. }
  1340. }
  1341. },
  1342. "System.Runtime.InteropServices/4.0.20": {
  1343. "type": "package",
  1344. "dependencies": {
  1345. "System.Reflection": "4.0.0",
  1346. "System.Reflection.Primitives": "4.0.0",
  1347. "System.Runtime": "4.0.0",
  1348. "System.Runtime.Handles": "4.0.0"
  1349. },
  1350. "compile": {
  1351. "ref/dotnet/System.Runtime.InteropServices.dll": {}
  1352. },
  1353. "runtime": {
  1354. "lib/netcore50/System.Runtime.InteropServices.dll": {}
  1355. },
  1356. "runtimeTargets": {
  1357. "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {
  1358. "assetType": "runtime",
  1359. "rid": "win8-aot"
  1360. }
  1361. }
  1362. },
  1363. "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
  1364. "type": "package",
  1365. "compile": {
  1366. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  1367. },
  1368. "runtime": {
  1369. "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  1370. },
  1371. "runtimeTargets": {
  1372. "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {
  1373. "assetType": "runtime",
  1374. "rid": "win8-aot"
  1375. }
  1376. }
  1377. },
  1378. "System.Runtime.Numerics/4.0.0": {
  1379. "type": "package",
  1380. "dependencies": {
  1381. "System.Globalization": "4.0.10",
  1382. "System.Resources.ResourceManager": "4.0.0",
  1383. "System.Runtime": "4.0.20",
  1384. "System.Runtime.Extensions": "4.0.10"
  1385. },
  1386. "compile": {
  1387. "ref/netcore50/System.Runtime.Numerics.dll": {}
  1388. },
  1389. "runtime": {
  1390. "lib/netcore50/System.Runtime.Numerics.dll": {}
  1391. }
  1392. },
  1393. "System.Runtime.Serialization.Json/4.0.1": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "System.IO": "4.0.0",
  1397. "System.Private.DataContractSerialization": "4.1.0",
  1398. "System.Runtime": "4.0.0"
  1399. },
  1400. "compile": {
  1401. "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
  1402. },
  1403. "runtime": {
  1404. "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
  1405. },
  1406. "runtimeTargets": {
  1407. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {
  1408. "assetType": "runtime",
  1409. "rid": "win8-aot"
  1410. }
  1411. }
  1412. },
  1413. "System.Runtime.Serialization.Primitives/4.1.0": {
  1414. "type": "package",
  1415. "dependencies": {
  1416. "System.Resources.ResourceManager": "4.0.0",
  1417. "System.Runtime": "4.0.20"
  1418. },
  1419. "compile": {
  1420. "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
  1421. },
  1422. "runtime": {
  1423. "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
  1424. },
  1425. "runtimeTargets": {
  1426. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {
  1427. "assetType": "runtime",
  1428. "rid": "win8-aot"
  1429. }
  1430. }
  1431. },
  1432. "System.Runtime.Serialization.Xml/4.1.0": {
  1433. "type": "package",
  1434. "dependencies": {
  1435. "System.IO": "4.0.0",
  1436. "System.Private.DataContractSerialization": "4.1.0",
  1437. "System.Runtime": "4.0.0",
  1438. "System.Runtime.Serialization.Primitives": "4.1.0",
  1439. "System.Text.Encoding": "4.0.0",
  1440. "System.Xml.ReaderWriter": "4.0.0"
  1441. },
  1442. "compile": {
  1443. "ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
  1444. },
  1445. "runtime": {
  1446. "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
  1447. },
  1448. "runtimeTargets": {
  1449. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {
  1450. "assetType": "runtime",
  1451. "rid": "win8-aot"
  1452. }
  1453. }
  1454. },
  1455. "System.Runtime.WindowsRuntime/4.0.10": {
  1456. "type": "package",
  1457. "dependencies": {
  1458. "System.Diagnostics.Debug": "4.0.10",
  1459. "System.Globalization": "4.0.0",
  1460. "System.IO": "4.0.10",
  1461. "System.ObjectModel": "4.0.0",
  1462. "System.Resources.ResourceManager": "4.0.0",
  1463. "System.Runtime": "4.0.20",
  1464. "System.Runtime.Extensions": "4.0.0",
  1465. "System.Runtime.InteropServices": "4.0.20",
  1466. "System.Threading": "4.0.10",
  1467. "System.Threading.Tasks": "4.0.10"
  1468. },
  1469. "compile": {
  1470. "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
  1471. },
  1472. "runtime": {
  1473. "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
  1474. },
  1475. "runtimeTargets": {
  1476. "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {
  1477. "assetType": "runtime",
  1478. "rid": "win8-aot"
  1479. }
  1480. }
  1481. },
  1482. "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "System.Globalization": "4.0.0",
  1486. "System.Resources.ResourceManager": "4.0.0",
  1487. "System.Runtime": "4.0.20",
  1488. "System.Runtime.Extensions": "4.0.0",
  1489. "System.Runtime.WindowsRuntime": "4.0.0"
  1490. },
  1491. "compile": {
  1492. "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
  1493. },
  1494. "runtime": {
  1495. "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
  1496. }
  1497. },
  1498. "System.Security.Claims/4.0.0": {
  1499. "type": "package",
  1500. "dependencies": {
  1501. "System.Collections": "4.0.0",
  1502. "System.Diagnostics.Debug": "4.0.0",
  1503. "System.Globalization": "4.0.0",
  1504. "System.IO": "4.0.0",
  1505. "System.Resources.ResourceManager": "4.0.0",
  1506. "System.Runtime": "4.0.20",
  1507. "System.Runtime.Extensions": "4.0.0",
  1508. "System.Security.Principal": "4.0.0"
  1509. },
  1510. "compile": {
  1511. "ref/dotnet/System.Security.Claims.dll": {}
  1512. },
  1513. "runtime": {
  1514. "lib/dotnet/System.Security.Claims.dll": {}
  1515. }
  1516. },
  1517. "System.Security.Principal/4.0.0": {
  1518. "type": "package",
  1519. "dependencies": {
  1520. "System.Runtime": "4.0.0"
  1521. },
  1522. "compile": {
  1523. "ref/netcore50/System.Security.Principal.dll": {}
  1524. },
  1525. "runtime": {
  1526. "lib/netcore50/System.Security.Principal.dll": {}
  1527. }
  1528. },
  1529. "System.ServiceModel.Duplex/4.0.0": {
  1530. "type": "package",
  1531. "dependencies": {
  1532. "System.Private.ServiceModel": "4.0.0",
  1533. "System.Runtime": "4.0.20"
  1534. },
  1535. "compile": {
  1536. "ref/netcore50/System.ServiceModel.Duplex.dll": {}
  1537. },
  1538. "runtime": {
  1539. "lib/netcore50/System.ServiceModel.Duplex.dll": {}
  1540. }
  1541. },
  1542. "System.ServiceModel.Http/4.0.10": {
  1543. "type": "package",
  1544. "dependencies": {
  1545. "System.Private.ServiceModel": "4.0.0",
  1546. "System.Runtime": "4.0.20"
  1547. },
  1548. "compile": {
  1549. "ref/dotnet/System.ServiceModel.Http.dll": {}
  1550. },
  1551. "runtime": {
  1552. "lib/netcore50/System.ServiceModel.Http.dll": {}
  1553. }
  1554. },
  1555. "System.ServiceModel.NetTcp/4.0.0": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "System.Private.ServiceModel": "4.0.0",
  1559. "System.Runtime": "4.0.20"
  1560. },
  1561. "compile": {
  1562. "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
  1563. },
  1564. "runtime": {
  1565. "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
  1566. }
  1567. },
  1568. "System.ServiceModel.Primitives/4.0.0": {
  1569. "type": "package",
  1570. "dependencies": {
  1571. "System.Private.ServiceModel": "4.0.0",
  1572. "System.Runtime": "4.0.20"
  1573. },
  1574. "compile": {
  1575. "ref/netcore50/System.ServiceModel.Primitives.dll": {}
  1576. },
  1577. "runtime": {
  1578. "lib/netcore50/System.ServiceModel.Primitives.dll": {}
  1579. }
  1580. },
  1581. "System.ServiceModel.Security/4.0.0": {
  1582. "type": "package",
  1583. "dependencies": {
  1584. "System.Private.ServiceModel": "4.0.0",
  1585. "System.Runtime": "4.0.20"
  1586. },
  1587. "compile": {
  1588. "ref/netcore50/System.ServiceModel.Security.dll": {}
  1589. },
  1590. "runtime": {
  1591. "lib/netcore50/System.ServiceModel.Security.dll": {}
  1592. }
  1593. },
  1594. "System.Text.Encoding/4.0.10": {
  1595. "type": "package",
  1596. "dependencies": {
  1597. "System.Runtime": "4.0.0"
  1598. },
  1599. "compile": {
  1600. "ref/dotnet/System.Text.Encoding.dll": {}
  1601. },
  1602. "runtime": {
  1603. "lib/netcore50/System.Text.Encoding.dll": {}
  1604. },
  1605. "runtimeTargets": {
  1606. "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {
  1607. "assetType": "runtime",
  1608. "rid": "win8-aot"
  1609. }
  1610. }
  1611. },
  1612. "System.Text.Encoding.CodePages/4.0.0": {
  1613. "type": "package",
  1614. "dependencies": {
  1615. "System.Collections": "4.0.10",
  1616. "System.Globalization": "4.0.10",
  1617. "System.IO": "4.0.10",
  1618. "System.Reflection": "4.0.10",
  1619. "System.Resources.ResourceManager": "4.0.0",
  1620. "System.Runtime": "4.0.20",
  1621. "System.Runtime.Extensions": "4.0.10",
  1622. "System.Runtime.Handles": "4.0.0",
  1623. "System.Runtime.InteropServices": "4.0.20",
  1624. "System.Text.Encoding": "4.0.10",
  1625. "System.Threading": "4.0.10"
  1626. },
  1627. "compile": {
  1628. "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
  1629. },
  1630. "runtime": {
  1631. "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
  1632. }
  1633. },
  1634. "System.Text.Encoding.Extensions/4.0.10": {
  1635. "type": "package",
  1636. "dependencies": {
  1637. "System.Runtime": "4.0.0",
  1638. "System.Text.Encoding": "4.0.10"
  1639. },
  1640. "compile": {
  1641. "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
  1642. },
  1643. "runtime": {
  1644. "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
  1645. },
  1646. "runtimeTargets": {
  1647. "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {
  1648. "assetType": "runtime",
  1649. "rid": "win8-aot"
  1650. }
  1651. }
  1652. },
  1653. "System.Text.RegularExpressions/4.0.10": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "System.Collections": "4.0.10",
  1657. "System.Globalization": "4.0.10",
  1658. "System.Resources.ResourceManager": "4.0.0",
  1659. "System.Runtime": "4.0.20",
  1660. "System.Runtime.Extensions": "4.0.10",
  1661. "System.Threading": "4.0.10"
  1662. },
  1663. "compile": {
  1664. "ref/dotnet/System.Text.RegularExpressions.dll": {}
  1665. },
  1666. "runtime": {
  1667. "lib/dotnet/System.Text.RegularExpressions.dll": {}
  1668. }
  1669. },
  1670. "System.Threading/4.0.10": {
  1671. "type": "package",
  1672. "dependencies": {
  1673. "System.Runtime": "4.0.0",
  1674. "System.Threading.Tasks": "4.0.0"
  1675. },
  1676. "compile": {
  1677. "ref/dotnet/System.Threading.dll": {}
  1678. },
  1679. "runtime": {
  1680. "lib/netcore50/System.Threading.dll": {}
  1681. },
  1682. "runtimeTargets": {
  1683. "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {
  1684. "assetType": "runtime",
  1685. "rid": "win8-aot"
  1686. }
  1687. }
  1688. },
  1689. "System.Threading.Overlapped/4.0.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "System.Resources.ResourceManager": "4.0.0",
  1693. "System.Runtime": "4.0.20",
  1694. "System.Runtime.Extensions": "4.0.0",
  1695. "System.Runtime.Handles": "4.0.0",
  1696. "System.Runtime.InteropServices": "4.0.20",
  1697. "System.Threading": "4.0.10"
  1698. },
  1699. "compile": {
  1700. "ref/dotnet/System.Threading.Overlapped.dll": {}
  1701. },
  1702. "runtime": {
  1703. "lib/netcore50/System.Threading.Overlapped.dll": {}
  1704. }
  1705. },
  1706. "System.Threading.Tasks/4.0.10": {
  1707. "type": "package",
  1708. "dependencies": {
  1709. "System.Runtime": "4.0.0"
  1710. },
  1711. "compile": {
  1712. "ref/dotnet/System.Threading.Tasks.dll": {}
  1713. },
  1714. "runtime": {
  1715. "lib/netcore50/System.Threading.Tasks.dll": {}
  1716. },
  1717. "runtimeTargets": {
  1718. "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {
  1719. "assetType": "runtime",
  1720. "rid": "win8-aot"
  1721. }
  1722. }
  1723. },
  1724. "System.Threading.Tasks.Dataflow/4.5.25": {
  1725. "type": "package",
  1726. "dependencies": {
  1727. "System.Collections": "4.0.0",
  1728. "System.Collections.Concurrent": "4.0.0",
  1729. "System.Diagnostics.Debug": "4.0.0",
  1730. "System.Diagnostics.Tracing": "4.0.0",
  1731. "System.Dynamic.Runtime": "4.0.0",
  1732. "System.Linq": "4.0.0",
  1733. "System.Resources.ResourceManager": "4.0.0",
  1734. "System.Runtime": "4.0.0",
  1735. "System.Runtime.Extensions": "4.0.0",
  1736. "System.Threading": "4.0.0",
  1737. "System.Threading.Tasks": "4.0.0"
  1738. },
  1739. "compile": {
  1740. "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
  1741. },
  1742. "runtime": {
  1743. "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
  1744. }
  1745. },
  1746. "System.Threading.Tasks.Parallel/4.0.0": {
  1747. "type": "package",
  1748. "dependencies": {
  1749. "System.Collections.Concurrent": "4.0.10",
  1750. "System.Diagnostics.Debug": "4.0.10",
  1751. "System.Diagnostics.Tracing": "4.0.20",
  1752. "System.Resources.ResourceManager": "4.0.0",
  1753. "System.Runtime": "4.0.20",
  1754. "System.Runtime.Extensions": "4.0.10",
  1755. "System.Threading": "4.0.10",
  1756. "System.Threading.Tasks": "4.0.10"
  1757. },
  1758. "compile": {
  1759. "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
  1760. },
  1761. "runtime": {
  1762. "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
  1763. }
  1764. },
  1765. "System.Threading.Timer/4.0.0": {
  1766. "type": "package",
  1767. "compile": {
  1768. "ref/netcore50/System.Threading.Timer.dll": {}
  1769. },
  1770. "runtime": {
  1771. "lib/netcore50/System.Threading.Timer.dll": {}
  1772. },
  1773. "runtimeTargets": {
  1774. "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {
  1775. "assetType": "runtime",
  1776. "rid": "win8-aot"
  1777. }
  1778. }
  1779. },
  1780. "System.Xml.ReaderWriter/4.0.10": {
  1781. "type": "package",
  1782. "dependencies": {
  1783. "System.Collections": "4.0.10",
  1784. "System.Diagnostics.Debug": "4.0.10",
  1785. "System.Globalization": "4.0.10",
  1786. "System.IO": "4.0.10",
  1787. "System.IO.FileSystem": "4.0.0",
  1788. "System.IO.FileSystem.Primitives": "4.0.0",
  1789. "System.Resources.ResourceManager": "4.0.0",
  1790. "System.Runtime": "4.0.20",
  1791. "System.Runtime.Extensions": "4.0.10",
  1792. "System.Runtime.InteropServices": "4.0.20",
  1793. "System.Text.Encoding": "4.0.10",
  1794. "System.Text.Encoding.Extensions": "4.0.10",
  1795. "System.Text.RegularExpressions": "4.0.10",
  1796. "System.Threading.Tasks": "4.0.10"
  1797. },
  1798. "compile": {
  1799. "ref/dotnet/System.Xml.ReaderWriter.dll": {}
  1800. },
  1801. "runtime": {
  1802. "lib/dotnet/System.Xml.ReaderWriter.dll": {}
  1803. }
  1804. },
  1805. "System.Xml.XDocument/4.0.10": {
  1806. "type": "package",
  1807. "dependencies": {
  1808. "System.Collections": "4.0.10",
  1809. "System.Diagnostics.Debug": "4.0.10",
  1810. "System.Globalization": "4.0.10",
  1811. "System.IO": "4.0.10",
  1812. "System.Reflection": "4.0.10",
  1813. "System.Resources.ResourceManager": "4.0.0",
  1814. "System.Runtime": "4.0.20",
  1815. "System.Runtime.Extensions": "4.0.10",
  1816. "System.Text.Encoding": "4.0.10",
  1817. "System.Threading": "4.0.10",
  1818. "System.Xml.ReaderWriter": "4.0.10"
  1819. },
  1820. "compile": {
  1821. "ref/dotnet/System.Xml.XDocument.dll": {}
  1822. },
  1823. "runtime": {
  1824. "lib/dotnet/System.Xml.XDocument.dll": {}
  1825. }
  1826. },
  1827. "System.Xml.XmlDocument/4.0.0": {
  1828. "type": "package",
  1829. "dependencies": {
  1830. "System.Collections": "4.0.10",
  1831. "System.Diagnostics.Debug": "4.0.10",
  1832. "System.Globalization": "4.0.10",
  1833. "System.IO": "4.0.10",
  1834. "System.Resources.ResourceManager": "4.0.0",
  1835. "System.Runtime": "4.0.20",
  1836. "System.Runtime.Extensions": "4.0.10",
  1837. "System.Text.Encoding": "4.0.10",
  1838. "System.Threading": "4.0.10",
  1839. "System.Xml.ReaderWriter": "4.0.10"
  1840. },
  1841. "compile": {
  1842. "ref/dotnet/System.Xml.XmlDocument.dll": {}
  1843. },
  1844. "runtime": {
  1845. "lib/dotnet/System.Xml.XmlDocument.dll": {}
  1846. }
  1847. },
  1848. "System.Xml.XmlSerializer/4.0.10": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "System.Collections": "4.0.10",
  1852. "System.Diagnostics.Debug": "4.0.10",
  1853. "System.Globalization": "4.0.10",
  1854. "System.IO": "4.0.10",
  1855. "System.Linq": "4.0.0",
  1856. "System.Reflection": "4.0.10",
  1857. "System.Reflection.Extensions": "4.0.0",
  1858. "System.Reflection.Primitives": "4.0.0",
  1859. "System.Reflection.TypeExtensions": "4.0.0",
  1860. "System.Resources.ResourceManager": "4.0.0",
  1861. "System.Runtime": "4.0.20",
  1862. "System.Runtime.Extensions": "4.0.10",
  1863. "System.Text.RegularExpressions": "4.0.10",
  1864. "System.Threading": "4.0.10",
  1865. "System.Xml.ReaderWriter": "4.0.10",
  1866. "System.Xml.XmlDocument": "4.0.0"
  1867. },
  1868. "compile": {
  1869. "ref/dotnet/System.Xml.XmlSerializer.dll": {}
  1870. },
  1871. "runtime": {
  1872. "lib/netcore50/System.Xml.XmlSerializer.dll": {}
  1873. },
  1874. "runtimeTargets": {
  1875. "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {
  1876. "assetType": "runtime",
  1877. "rid": "win8-aot"
  1878. }
  1879. }
  1880. }
  1881. },
  1882. "UAP,Version=v10.0/win10-x86": {
  1883. "Microsoft.CSharp/4.0.0": {
  1884. "type": "package",
  1885. "dependencies": {
  1886. "System.Collections": "4.0.10",
  1887. "System.Diagnostics.Debug": "4.0.10",
  1888. "System.Dynamic.Runtime": "4.0.0",
  1889. "System.Globalization": "4.0.10",
  1890. "System.Linq": "4.0.0",
  1891. "System.Linq.Expressions": "4.0.0",
  1892. "System.ObjectModel": "4.0.10",
  1893. "System.Reflection": "4.0.10",
  1894. "System.Reflection.Extensions": "4.0.0",
  1895. "System.Reflection.Primitives": "4.0.0",
  1896. "System.Reflection.TypeExtensions": "4.0.0",
  1897. "System.Resources.ResourceManager": "4.0.0",
  1898. "System.Runtime": "4.0.20",
  1899. "System.Runtime.Extensions": "4.0.10",
  1900. "System.Runtime.InteropServices": "4.0.20",
  1901. "System.Threading": "4.0.10"
  1902. },
  1903. "compile": {
  1904. "ref/netcore50/Microsoft.CSharp.dll": {}
  1905. },
  1906. "runtime": {
  1907. "lib/netcore50/Microsoft.CSharp.dll": {}
  1908. }
  1909. },
  1910. "Microsoft.NETCore/5.0.0": {
  1911. "type": "package",
  1912. "dependencies": {
  1913. "Microsoft.CSharp": "4.0.0",
  1914. "Microsoft.NETCore.Targets": "1.0.0",
  1915. "Microsoft.VisualBasic": "10.0.0",
  1916. "System.AppContext": "4.0.0",
  1917. "System.Collections": "4.0.10",
  1918. "System.Collections.Concurrent": "4.0.10",
  1919. "System.Collections.Immutable": "1.1.37",
  1920. "System.ComponentModel": "4.0.0",
  1921. "System.ComponentModel.Annotations": "4.0.10",
  1922. "System.Diagnostics.Debug": "4.0.10",
  1923. "System.Diagnostics.Tools": "4.0.0",
  1924. "System.Diagnostics.Tracing": "4.0.20",
  1925. "System.Dynamic.Runtime": "4.0.10",
  1926. "System.Globalization": "4.0.10",
  1927. "System.Globalization.Calendars": "4.0.0",
  1928. "System.Globalization.Extensions": "4.0.0",
  1929. "System.IO": "4.0.10",
  1930. "System.IO.Compression": "4.0.0",
  1931. "System.IO.Compression.ZipFile": "4.0.0",
  1932. "System.IO.FileSystem": "4.0.0",
  1933. "System.IO.FileSystem.Primitives": "4.0.0",
  1934. "System.IO.UnmanagedMemoryStream": "4.0.0",
  1935. "System.Linq": "4.0.0",
  1936. "System.Linq.Expressions": "4.0.10",
  1937. "System.Linq.Parallel": "4.0.0",
  1938. "System.Linq.Queryable": "4.0.0",
  1939. "System.Net.Http": "4.0.0",
  1940. "System.Net.NetworkInformation": "4.0.0",
  1941. "System.Net.Primitives": "4.0.10",
  1942. "System.Numerics.Vectors": "4.1.0",
  1943. "System.ObjectModel": "4.0.10",
  1944. "System.Reflection": "4.0.10",
  1945. "System.Reflection.DispatchProxy": "4.0.0",
  1946. "System.Reflection.Extensions": "4.0.0",
  1947. "System.Reflection.Metadata": "1.0.22",
  1948. "System.Reflection.Primitives": "4.0.0",
  1949. "System.Reflection.TypeExtensions": "4.0.0",
  1950. "System.Resources.ResourceManager": "4.0.0",
  1951. "System.Runtime": "4.0.20",
  1952. "System.Runtime.Extensions": "4.0.10",
  1953. "System.Runtime.Handles": "4.0.0",
  1954. "System.Runtime.InteropServices": "4.0.20",
  1955. "System.Runtime.Numerics": "4.0.0",
  1956. "System.Security.Claims": "4.0.0",
  1957. "System.Security.Principal": "4.0.0",
  1958. "System.Text.Encoding": "4.0.10",
  1959. "System.Text.Encoding.Extensions": "4.0.10",
  1960. "System.Text.RegularExpressions": "4.0.10",
  1961. "System.Threading": "4.0.10",
  1962. "System.Threading.Tasks": "4.0.10",
  1963. "System.Threading.Tasks.Dataflow": "4.5.25",
  1964. "System.Threading.Tasks.Parallel": "4.0.0",
  1965. "System.Threading.Timer": "4.0.0",
  1966. "System.Xml.ReaderWriter": "4.0.10",
  1967. "System.Xml.XDocument": "4.0.10"
  1968. }
  1969. },
  1970. "Microsoft.NETCore.Platforms/1.0.0": {
  1971. "type": "package"
  1972. },
  1973. "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
  1974. "type": "package",
  1975. "dependencies": {
  1976. "Microsoft.NETCore.Runtime": "1.0.0"
  1977. },
  1978. "compile": {
  1979. "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
  1980. "ref/netcore50/System.Core.dll": {},
  1981. "ref/netcore50/System.Net.dll": {},
  1982. "ref/netcore50/System.Numerics.dll": {},
  1983. "ref/netcore50/System.Runtime.Serialization.dll": {},
  1984. "ref/netcore50/System.ServiceModel.Web.dll": {},
  1985. "ref/netcore50/System.ServiceModel.dll": {},
  1986. "ref/netcore50/System.Windows.dll": {},
  1987. "ref/netcore50/System.Xml.Linq.dll": {},
  1988. "ref/netcore50/System.Xml.Serialization.dll": {},
  1989. "ref/netcore50/System.Xml.dll": {},
  1990. "ref/netcore50/System.dll": {},
  1991. "ref/netcore50/mscorlib.dll": {}
  1992. },
  1993. "runtime": {
  1994. "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
  1995. "lib/netcore50/System.Core.dll": {},
  1996. "lib/netcore50/System.Net.dll": {},
  1997. "lib/netcore50/System.Numerics.dll": {},
  1998. "lib/netcore50/System.Runtime.Serialization.dll": {},
  1999. "lib/netcore50/System.ServiceModel.Web.dll": {},
  2000. "lib/netcore50/System.ServiceModel.dll": {},
  2001. "lib/netcore50/System.Windows.dll": {},
  2002. "lib/netcore50/System.Xml.Linq.dll": {},
  2003. "lib/netcore50/System.Xml.Serialization.dll": {},
  2004. "lib/netcore50/System.Xml.dll": {},
  2005. "lib/netcore50/System.dll": {}
  2006. }
  2007. },
  2008. "Microsoft.NETCore.Runtime/1.0.1": {
  2009. "type": "package",
  2010. "dependencies": {
  2011. "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1",
  2012. "Microsoft.NETCore.Runtime.Native": "1.0.1"
  2013. }
  2014. },
  2015. "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {
  2016. "type": "package",
  2017. "dependencies": {
  2018. "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.1"
  2019. }
  2020. },
  2021. "Microsoft.NETCore.Runtime.Native/1.0.1": {
  2022. "type": "package"
  2023. },
  2024. "Microsoft.NETCore.Targets/1.0.0": {
  2025. "type": "package",
  2026. "dependencies": {
  2027. "Microsoft.NETCore.Platforms": "1.0.0",
  2028. "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0"
  2029. }
  2030. },
  2031. "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {
  2032. "type": "package"
  2033. },
  2034. "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": {
  2035. "type": "package",
  2036. "dependencies": {
  2037. "Microsoft.NETCore": "5.0.0",
  2038. "Microsoft.NETCore.Portable.Compatibility": "1.0.0",
  2039. "Microsoft.NETCore.Runtime": "1.0.1",
  2040. "Microsoft.Win32.Primitives": "4.0.0",
  2041. "System.ComponentModel.EventBasedAsync": "4.0.10",
  2042. "System.Data.Common": "4.0.0",
  2043. "System.Diagnostics.Contracts": "4.0.0",
  2044. "System.Diagnostics.StackTrace": "4.0.0",
  2045. "System.IO.IsolatedStorage": "4.0.0",
  2046. "System.Net.Http.Rtc": "4.0.0",
  2047. "System.Net.Requests": "4.0.10",
  2048. "System.Net.Sockets": "4.0.0",
  2049. "System.Net.WebHeaderCollection": "4.0.0",
  2050. "System.Numerics.Vectors.WindowsRuntime": "4.0.0",
  2051. "System.Reflection.Context": "4.0.0",
  2052. "System.Runtime.InteropServices.WindowsRuntime": "4.0.0",
  2053. "System.Runtime.Serialization.Json": "4.0.1",
  2054. "System.Runtime.Serialization.Primitives": "4.1.0",
  2055. "System.Runtime.Serialization.Xml": "4.1.0",
  2056. "System.Runtime.WindowsRuntime": "4.0.10",
  2057. "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0",
  2058. "System.ServiceModel.Duplex": "4.0.0",
  2059. "System.ServiceModel.Http": "4.0.10",
  2060. "System.ServiceModel.NetTcp": "4.0.0",
  2061. "System.ServiceModel.Primitives": "4.0.0",
  2062. "System.ServiceModel.Security": "4.0.0",
  2063. "System.Text.Encoding.CodePages": "4.0.0",
  2064. "System.Xml.XmlSerializer": "4.0.10"
  2065. }
  2066. },
  2067. "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": {
  2068. "type": "package",
  2069. "native": {
  2070. "runtimes/win10-x86/native/_._": {}
  2071. }
  2072. },
  2073. "Microsoft.VisualBasic/10.0.0": {
  2074. "type": "package",
  2075. "dependencies": {
  2076. "System.Collections": "4.0.10",
  2077. "System.Diagnostics.Debug": "4.0.10",
  2078. "System.Dynamic.Runtime": "4.0.10",
  2079. "System.Globalization": "4.0.10",
  2080. "System.Linq": "4.0.0",
  2081. "System.Linq.Expressions": "4.0.10",
  2082. "System.ObjectModel": "4.0.10",
  2083. "System.Reflection": "4.0.10",
  2084. "System.Reflection.Extensions": "4.0.0",
  2085. "System.Reflection.Primitives": "4.0.0",
  2086. "System.Reflection.TypeExtensions": "4.0.0",
  2087. "System.Resources.ResourceManager": "4.0.0",
  2088. "System.Runtime": "4.0.20",
  2089. "System.Runtime.Extensions": "4.0.10",
  2090. "System.Runtime.InteropServices": "4.0.20",
  2091. "System.Threading": "4.0.10"
  2092. },
  2093. "compile": {
  2094. "ref/netcore50/Microsoft.VisualBasic.dll": {}
  2095. },
  2096. "runtime": {
  2097. "lib/netcore50/Microsoft.VisualBasic.dll": {}
  2098. }
  2099. },
  2100. "Microsoft.Win32.Primitives/4.0.0": {
  2101. "type": "package",
  2102. "dependencies": {
  2103. "System.Runtime": "4.0.20",
  2104. "System.Runtime.InteropServices": "4.0.20"
  2105. },
  2106. "compile": {
  2107. "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
  2108. },
  2109. "runtime": {
  2110. "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
  2111. }
  2112. },
  2113. "runtime.any.System.Private.DataContractSerialization/4.1.0": {
  2114. "type": "package",
  2115. "dependencies": {
  2116. "System.Collections": "4.0.10",
  2117. "System.Diagnostics.Debug": "4.0.10",
  2118. "System.Globalization": "4.0.10",
  2119. "System.IO": "4.0.10",
  2120. "System.Linq": "4.0.0",
  2121. "System.Reflection": "4.0.10",
  2122. "System.Reflection.Emit.ILGeneration": "4.0.0",
  2123. "System.Reflection.Emit.Lightweight": "4.0.0",
  2124. "System.Reflection.Extensions": "4.0.0",
  2125. "System.Reflection.Primitives": "4.0.0",
  2126. "System.Reflection.TypeExtensions": "4.0.0",
  2127. "System.Resources.ResourceManager": "4.0.0",
  2128. "System.Runtime": "4.0.20",
  2129. "System.Runtime.Extensions": "4.0.10",
  2130. "System.Runtime.Serialization.Primitives": "4.1.0",
  2131. "System.Text.Encoding": "4.0.10",
  2132. "System.Text.Encoding.Extensions": "4.0.10",
  2133. "System.Text.RegularExpressions": "4.0.10",
  2134. "System.Threading": "4.0.10",
  2135. "System.Threading.Tasks": "4.0.10",
  2136. "System.Xml.ReaderWriter": "4.0.10",
  2137. "System.Xml.XmlDocument": "4.0.0",
  2138. "System.Xml.XmlSerializer": "4.0.10"
  2139. },
  2140. "compile": {
  2141. "ref/dotnet/_._": {}
  2142. },
  2143. "runtime": {
  2144. "lib/netcore50/System.Private.DataContractSerialization.dll": {}
  2145. }
  2146. },
  2147. "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {
  2148. "type": "package",
  2149. "dependencies": {
  2150. "Microsoft.NETCore.Windows.ApiSets-x86": "1.0.0"
  2151. },
  2152. "compile": {
  2153. "ref/dotnet/_._": {}
  2154. },
  2155. "runtime": {
  2156. "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {}
  2157. },
  2158. "native": {
  2159. "runtimes/win7-x86/native/clretwrc.dll": {},
  2160. "runtimes/win7-x86/native/coreclr.dll": {},
  2161. "runtimes/win7-x86/native/dbgshim.dll": {},
  2162. "runtimes/win7-x86/native/mscordaccore.dll": {},
  2163. "runtimes/win7-x86/native/mscordbi.dll": {},
  2164. "runtimes/win7-x86/native/mscorrc.debug.dll": {},
  2165. "runtimes/win7-x86/native/mscorrc.dll": {}
  2166. }
  2167. },
  2168. "System.AppContext/4.0.0": {
  2169. "type": "package",
  2170. "dependencies": {
  2171. "System.Collections": "4.0.0",
  2172. "System.Resources.ResourceManager": "4.0.0",
  2173. "System.Runtime": "4.0.20",
  2174. "System.Threading": "4.0.0"
  2175. },
  2176. "compile": {
  2177. "ref/dotnet/System.AppContext.dll": {}
  2178. },
  2179. "runtime": {
  2180. "lib/netcore50/System.AppContext.dll": {}
  2181. }
  2182. },
  2183. "System.Collections/4.0.10": {
  2184. "type": "package",
  2185. "dependencies": {
  2186. "System.Diagnostics.Debug": "4.0.0",
  2187. "System.Resources.ResourceManager": "4.0.0",
  2188. "System.Runtime": "4.0.20",
  2189. "System.Runtime.Extensions": "4.0.0",
  2190. "System.Threading": "4.0.0"
  2191. },
  2192. "compile": {
  2193. "ref/dotnet/System.Collections.dll": {}
  2194. },
  2195. "runtime": {
  2196. "lib/netcore50/System.Collections.dll": {}
  2197. }
  2198. },
  2199. "System.Collections.Concurrent/4.0.10": {
  2200. "type": "package",
  2201. "dependencies": {
  2202. "System.Collections": "4.0.10",
  2203. "System.Diagnostics.Debug": "4.0.10",
  2204. "System.Diagnostics.Tracing": "4.0.20",
  2205. "System.Globalization": "4.0.10",
  2206. "System.Resources.ResourceManager": "4.0.0",
  2207. "System.Runtime": "4.0.20",
  2208. "System.Runtime.Extensions": "4.0.10",
  2209. "System.Threading": "4.0.10",
  2210. "System.Threading.Tasks": "4.0.10"
  2211. },
  2212. "compile": {
  2213. "ref/dotnet/System.Collections.Concurrent.dll": {}
  2214. },
  2215. "runtime": {
  2216. "lib/dotnet/System.Collections.Concurrent.dll": {}
  2217. }
  2218. },
  2219. "System.Collections.Immutable/1.1.37": {
  2220. "type": "package",
  2221. "dependencies": {
  2222. "System.Collections": "4.0.0",
  2223. "System.Diagnostics.Debug": "4.0.0",
  2224. "System.Globalization": "4.0.0",
  2225. "System.Linq": "4.0.0",
  2226. "System.Resources.ResourceManager": "4.0.0",
  2227. "System.Runtime": "4.0.0",
  2228. "System.Runtime.Extensions": "4.0.0",
  2229. "System.Threading": "4.0.0"
  2230. },
  2231. "compile": {
  2232. "lib/dotnet/System.Collections.Immutable.dll": {}
  2233. },
  2234. "runtime": {
  2235. "lib/dotnet/System.Collections.Immutable.dll": {}
  2236. }
  2237. },
  2238. "System.Collections.NonGeneric/4.0.0": {
  2239. "type": "package",
  2240. "dependencies": {
  2241. "System.Diagnostics.Debug": "4.0.10",
  2242. "System.Globalization": "4.0.10",
  2243. "System.Resources.ResourceManager": "4.0.0",
  2244. "System.Runtime": "4.0.20",
  2245. "System.Runtime.Extensions": "4.0.10",
  2246. "System.Threading": "4.0.10"
  2247. },
  2248. "compile": {
  2249. "ref/dotnet/System.Collections.NonGeneric.dll": {}
  2250. },
  2251. "runtime": {
  2252. "lib/dotnet/System.Collections.NonGeneric.dll": {}
  2253. }
  2254. },
  2255. "System.Collections.Specialized/4.0.0": {
  2256. "type": "package",
  2257. "dependencies": {
  2258. "System.Collections.NonGeneric": "4.0.0",
  2259. "System.Globalization": "4.0.10",
  2260. "System.Globalization.Extensions": "4.0.0",
  2261. "System.Resources.ResourceManager": "4.0.0",
  2262. "System.Runtime": "4.0.20",
  2263. "System.Runtime.Extensions": "4.0.10",
  2264. "System.Threading": "4.0.10"
  2265. },
  2266. "compile": {
  2267. "ref/dotnet/System.Collections.Specialized.dll": {}
  2268. },
  2269. "runtime": {
  2270. "lib/dotnet/System.Collections.Specialized.dll": {}
  2271. }
  2272. },
  2273. "System.ComponentModel/4.0.0": {
  2274. "type": "package",
  2275. "dependencies": {
  2276. "System.Runtime": "4.0.20"
  2277. },
  2278. "compile": {
  2279. "ref/netcore50/System.ComponentModel.dll": {}
  2280. },
  2281. "runtime": {
  2282. "lib/netcore50/System.ComponentModel.dll": {}
  2283. }
  2284. },
  2285. "System.ComponentModel.Annotations/4.0.10": {
  2286. "type": "package",
  2287. "dependencies": {
  2288. "System.Collections": "4.0.10",
  2289. "System.ComponentModel": "4.0.0",
  2290. "System.Globalization": "4.0.10",
  2291. "System.Linq": "4.0.0",
  2292. "System.Reflection": "4.0.10",
  2293. "System.Reflection.Extensions": "4.0.0",
  2294. "System.Resources.ResourceManager": "4.0.0",
  2295. "System.Runtime": "4.0.20",
  2296. "System.Runtime.Extensions": "4.0.10",
  2297. "System.Text.RegularExpressions": "4.0.10",
  2298. "System.Threading": "4.0.10"
  2299. },
  2300. "compile": {
  2301. "ref/dotnet/System.ComponentModel.Annotations.dll": {}
  2302. },
  2303. "runtime": {
  2304. "lib/dotnet/System.ComponentModel.Annotations.dll": {}
  2305. }
  2306. },
  2307. "System.ComponentModel.EventBasedAsync/4.0.10": {
  2308. "type": "package",
  2309. "dependencies": {
  2310. "System.Resources.ResourceManager": "4.0.0",
  2311. "System.Runtime": "4.0.20",
  2312. "System.Threading": "4.0.10",
  2313. "System.Threading.Tasks": "4.0.10"
  2314. },
  2315. "compile": {
  2316. "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
  2317. },
  2318. "runtime": {
  2319. "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
  2320. }
  2321. },
  2322. "System.Data.Common/4.0.0": {
  2323. "type": "package",
  2324. "dependencies": {
  2325. "System.Collections": "4.0.10",
  2326. "System.Collections.NonGeneric": "4.0.0",
  2327. "System.Globalization": "4.0.10",
  2328. "System.IO": "4.0.0",
  2329. "System.Resources.ResourceManager": "4.0.0",
  2330. "System.Runtime": "4.0.20",
  2331. "System.Runtime.Extensions": "4.0.10",
  2332. "System.Text.RegularExpressions": "4.0.0",
  2333. "System.Threading.Tasks": "4.0.0"
  2334. },
  2335. "compile": {
  2336. "ref/dotnet/System.Data.Common.dll": {}
  2337. },
  2338. "runtime": {
  2339. "lib/dotnet/System.Data.Common.dll": {}
  2340. }
  2341. },
  2342. "System.Diagnostics.Contracts/4.0.0": {
  2343. "type": "package",
  2344. "compile": {
  2345. "ref/netcore50/System.Diagnostics.Contracts.dll": {}
  2346. },
  2347. "runtime": {
  2348. "lib/netcore50/System.Diagnostics.Contracts.dll": {}
  2349. }
  2350. },
  2351. "System.Diagnostics.Debug/4.0.10": {
  2352. "type": "package",
  2353. "dependencies": {
  2354. "System.Runtime": "4.0.0"
  2355. },
  2356. "compile": {
  2357. "ref/dotnet/System.Diagnostics.Debug.dll": {}
  2358. },
  2359. "runtime": {
  2360. "lib/netcore50/System.Diagnostics.Debug.dll": {}
  2361. }
  2362. },
  2363. "System.Diagnostics.StackTrace/4.0.0": {
  2364. "type": "package",
  2365. "dependencies": {
  2366. "System.Runtime": "4.0.20"
  2367. },
  2368. "compile": {
  2369. "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
  2370. },
  2371. "runtime": {
  2372. "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
  2373. }
  2374. },
  2375. "System.Diagnostics.Tools/4.0.0": {
  2376. "type": "package",
  2377. "compile": {
  2378. "ref/netcore50/System.Diagnostics.Tools.dll": {}
  2379. },
  2380. "runtime": {
  2381. "lib/netcore50/System.Diagnostics.Tools.dll": {}
  2382. }
  2383. },
  2384. "System.Diagnostics.Tracing/4.0.20": {
  2385. "type": "package",
  2386. "dependencies": {
  2387. "System.Collections": "4.0.10",
  2388. "System.Globalization": "4.0.0",
  2389. "System.Reflection": "4.0.10",
  2390. "System.Reflection.Extensions": "4.0.0",
  2391. "System.Resources.ResourceManager": "4.0.0",
  2392. "System.Runtime": "4.0.20",
  2393. "System.Runtime.Extensions": "4.0.10",
  2394. "System.Runtime.InteropServices": "4.0.0",
  2395. "System.Text.Encoding": "4.0.0",
  2396. "System.Threading": "4.0.10"
  2397. },
  2398. "compile": {
  2399. "ref/dotnet/System.Diagnostics.Tracing.dll": {}
  2400. },
  2401. "runtime": {
  2402. "lib/netcore50/System.Diagnostics.Tracing.dll": {}
  2403. }
  2404. },
  2405. "System.Dynamic.Runtime/4.0.10": {
  2406. "type": "package",
  2407. "dependencies": {
  2408. "System.Collections": "4.0.0",
  2409. "System.Diagnostics.Debug": "4.0.0",
  2410. "System.Globalization": "4.0.0",
  2411. "System.Linq": "4.0.0",
  2412. "System.Linq.Expressions": "4.0.10",
  2413. "System.ObjectModel": "4.0.0",
  2414. "System.Reflection": "4.0.0",
  2415. "System.Reflection.Emit.ILGeneration": "4.0.0",
  2416. "System.Reflection.Emit.Lightweight": "4.0.0",
  2417. "System.Reflection.TypeExtensions": "4.0.0",
  2418. "System.Resources.ResourceManager": "4.0.0",
  2419. "System.Runtime": "4.0.20",
  2420. "System.Runtime.Extensions": "4.0.0",
  2421. "System.Threading": "4.0.0"
  2422. },
  2423. "compile": {
  2424. "ref/dotnet/System.Dynamic.Runtime.dll": {}
  2425. },
  2426. "runtime": {
  2427. "lib/netcore50/System.Dynamic.Runtime.dll": {}
  2428. }
  2429. },
  2430. "System.Globalization/4.0.10": {
  2431. "type": "package",
  2432. "dependencies": {
  2433. "System.Runtime": "4.0.0"
  2434. },
  2435. "compile": {
  2436. "ref/dotnet/System.Globalization.dll": {}
  2437. },
  2438. "runtime": {
  2439. "lib/netcore50/System.Globalization.dll": {}
  2440. }
  2441. },
  2442. "System.Globalization.Calendars/4.0.0": {
  2443. "type": "package",
  2444. "dependencies": {
  2445. "System.Globalization": "4.0.0",
  2446. "System.Runtime": "4.0.0"
  2447. },
  2448. "compile": {
  2449. "ref/dotnet/System.Globalization.Calendars.dll": {}
  2450. },
  2451. "runtime": {
  2452. "lib/netcore50/System.Globalization.Calendars.dll": {}
  2453. }
  2454. },
  2455. "System.Globalization.Extensions/4.0.0": {
  2456. "type": "package",
  2457. "dependencies": {
  2458. "System.Globalization": "4.0.10",
  2459. "System.Resources.ResourceManager": "4.0.0",
  2460. "System.Runtime": "4.0.20",
  2461. "System.Runtime.Extensions": "4.0.10",
  2462. "System.Runtime.InteropServices": "4.0.20"
  2463. },
  2464. "compile": {
  2465. "ref/dotnet/System.Globalization.Extensions.dll": {}
  2466. },
  2467. "runtime": {
  2468. "lib/dotnet/System.Globalization.Extensions.dll": {}
  2469. }
  2470. },
  2471. "System.IO/4.0.10": {
  2472. "type": "package",
  2473. "dependencies": {
  2474. "System.Globalization": "4.0.0",
  2475. "System.Runtime": "4.0.20",
  2476. "System.Text.Encoding": "4.0.10",
  2477. "System.Text.Encoding.Extensions": "4.0.0",
  2478. "System.Threading": "4.0.0",
  2479. "System.Threading.Tasks": "4.0.0"
  2480. },
  2481. "compile": {
  2482. "ref/dotnet/System.IO.dll": {}
  2483. },
  2484. "runtime": {
  2485. "lib/netcore50/System.IO.dll": {}
  2486. }
  2487. },
  2488. "System.IO.Compression/4.0.0": {
  2489. "type": "package",
  2490. "dependencies": {
  2491. "System.Collections": "4.0.0",
  2492. "System.IO": "4.0.0",
  2493. "System.IO.Compression.clrcompression-x86": "4.0.0",
  2494. "System.Resources.ResourceManager": "4.0.0",
  2495. "System.Runtime": "4.0.0",
  2496. "System.Runtime.Extensions": "4.0.0",
  2497. "System.Runtime.InteropServices": "4.0.0",
  2498. "System.Text.Encoding": "4.0.0",
  2499. "System.Threading": "4.0.0",
  2500. "System.Threading.Tasks": "4.0.0"
  2501. },
  2502. "compile": {
  2503. "ref/netcore50/System.IO.Compression.dll": {}
  2504. },
  2505. "runtime": {
  2506. "lib/netcore50/System.IO.Compression.dll": {}
  2507. }
  2508. },
  2509. "System.IO.Compression.clrcompression-x86/4.0.0": {
  2510. "type": "package",
  2511. "native": {
  2512. "runtimes/win10-x86/native/ClrCompression.dll": {}
  2513. }
  2514. },
  2515. "System.IO.Compression.ZipFile/4.0.0": {
  2516. "type": "package",
  2517. "dependencies": {
  2518. "System.IO": "4.0.10",
  2519. "System.IO.Compression": "4.0.0",
  2520. "System.IO.FileSystem": "4.0.0",
  2521. "System.IO.FileSystem.Primitives": "4.0.0",
  2522. "System.Resources.ResourceManager": "4.0.0",
  2523. "System.Runtime": "4.0.20",
  2524. "System.Runtime.Extensions": "4.0.10",
  2525. "System.Text.Encoding": "4.0.10"
  2526. },
  2527. "compile": {
  2528. "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
  2529. },
  2530. "runtime": {
  2531. "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
  2532. }
  2533. },
  2534. "System.IO.FileSystem/4.0.0": {
  2535. "type": "package",
  2536. "dependencies": {
  2537. "System.Collections": "4.0.10",
  2538. "System.Diagnostics.Debug": "4.0.10",
  2539. "System.IO": "4.0.10",
  2540. "System.IO.FileSystem.Primitives": "4.0.0",
  2541. "System.Resources.ResourceManager": "4.0.0",
  2542. "System.Runtime": "4.0.20",
  2543. "System.Runtime.Extensions": "4.0.10",
  2544. "System.Runtime.Handles": "4.0.0",
  2545. "System.Runtime.InteropServices": "4.0.20",
  2546. "System.Runtime.WindowsRuntime": "4.0.0",
  2547. "System.Text.Encoding": "4.0.10",
  2548. "System.Text.Encoding.Extensions": "4.0.10",
  2549. "System.Threading": "4.0.10",
  2550. "System.Threading.Overlapped": "4.0.0",
  2551. "System.Threading.Tasks": "4.0.10"
  2552. },
  2553. "compile": {
  2554. "ref/dotnet/System.IO.FileSystem.dll": {}
  2555. },
  2556. "runtime": {
  2557. "lib/netcore50/System.IO.FileSystem.dll": {}
  2558. }
  2559. },
  2560. "System.IO.FileSystem.Primitives/4.0.0": {
  2561. "type": "package",
  2562. "dependencies": {
  2563. "System.Runtime": "4.0.20"
  2564. },
  2565. "compile": {
  2566. "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
  2567. },
  2568. "runtime": {
  2569. "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
  2570. }
  2571. },
  2572. "System.IO.IsolatedStorage/4.0.0": {
  2573. "type": "package",
  2574. "dependencies": {
  2575. "System.IO": "4.0.10",
  2576. "System.IO.FileSystem": "4.0.0",
  2577. "System.IO.FileSystem.Primitives": "4.0.0",
  2578. "System.Linq": "4.0.0",
  2579. "System.Resources.ResourceManager": "4.0.0",
  2580. "System.Runtime": "4.0.20",
  2581. "System.Runtime.Extensions": "4.0.10",
  2582. "System.Threading": "4.0.10",
  2583. "System.Threading.Tasks": "4.0.10"
  2584. },
  2585. "compile": {
  2586. "ref/dotnet/System.IO.IsolatedStorage.dll": {}
  2587. },
  2588. "runtime": {
  2589. "lib/netcore50/System.IO.IsolatedStorage.dll": {}
  2590. }
  2591. },
  2592. "System.IO.UnmanagedMemoryStream/4.0.0": {
  2593. "type": "package",
  2594. "dependencies": {
  2595. "System.IO": "4.0.10",
  2596. "System.IO.FileSystem.Primitives": "4.0.0",
  2597. "System.Resources.ResourceManager": "4.0.0",
  2598. "System.Runtime": "4.0.20",
  2599. "System.Runtime.InteropServices": "4.0.20",
  2600. "System.Threading": "4.0.10",
  2601. "System.Threading.Tasks": "4.0.10"
  2602. },
  2603. "compile": {
  2604. "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
  2605. },
  2606. "runtime": {
  2607. "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
  2608. }
  2609. },
  2610. "System.Linq/4.0.0": {
  2611. "type": "package",
  2612. "dependencies": {
  2613. "System.Collections": "4.0.10",
  2614. "System.Diagnostics.Debug": "4.0.10",
  2615. "System.Resources.ResourceManager": "4.0.0",
  2616. "System.Runtime": "4.0.20",
  2617. "System.Runtime.Extensions": "4.0.10"
  2618. },
  2619. "compile": {
  2620. "ref/netcore50/System.Linq.dll": {}
  2621. },
  2622. "runtime": {
  2623. "lib/netcore50/System.Linq.dll": {}
  2624. }
  2625. },
  2626. "System.Linq.Expressions/4.0.10": {
  2627. "type": "package",
  2628. "dependencies": {
  2629. "System.Collections": "4.0.0",
  2630. "System.Diagnostics.Debug": "4.0.0",
  2631. "System.Globalization": "4.0.0",
  2632. "System.IO": "4.0.0",
  2633. "System.Linq": "4.0.0",
  2634. "System.Reflection": "4.0.0",
  2635. "System.Reflection.Emit.ILGeneration": "4.0.0",
  2636. "System.Reflection.Emit.Lightweight": "4.0.0",
  2637. "System.Reflection.Extensions": "4.0.0",
  2638. "System.Reflection.Primitives": "4.0.0",
  2639. "System.Reflection.TypeExtensions": "4.0.0",
  2640. "System.Resources.ResourceManager": "4.0.0",
  2641. "System.Runtime": "4.0.20",
  2642. "System.Runtime.Extensions": "4.0.0",
  2643. "System.Threading": "4.0.0"
  2644. },
  2645. "compile": {
  2646. "ref/dotnet/System.Linq.Expressions.dll": {}
  2647. },
  2648. "runtime": {
  2649. "lib/netcore50/System.Linq.Expressions.dll": {}
  2650. }
  2651. },
  2652. "System.Linq.Parallel/4.0.0": {
  2653. "type": "package",
  2654. "dependencies": {
  2655. "System.Collections": "4.0.10",
  2656. "System.Collections.Concurrent": "4.0.10",
  2657. "System.Diagnostics.Debug": "4.0.10",
  2658. "System.Diagnostics.Tracing": "4.0.20",
  2659. "System.Linq": "4.0.0",
  2660. "System.Resources.ResourceManager": "4.0.0",
  2661. "System.Runtime": "4.0.20",
  2662. "System.Runtime.Extensions": "4.0.10",
  2663. "System.Threading": "4.0.10",
  2664. "System.Threading.Tasks": "4.0.10"
  2665. },
  2666. "compile": {
  2667. "ref/netcore50/System.Linq.Parallel.dll": {}
  2668. },
  2669. "runtime": {
  2670. "lib/netcore50/System.Linq.Parallel.dll": {}
  2671. }
  2672. },
  2673. "System.Linq.Queryable/4.0.0": {
  2674. "type": "package",
  2675. "dependencies": {
  2676. "System.Collections": "4.0.10",
  2677. "System.Linq": "4.0.0",
  2678. "System.Linq.Expressions": "4.0.10",
  2679. "System.Reflection": "4.0.10",
  2680. "System.Reflection.Extensions": "4.0.0",
  2681. "System.Resources.ResourceManager": "4.0.0",
  2682. "System.Runtime": "4.0.20"
  2683. },
  2684. "compile": {
  2685. "ref/netcore50/System.Linq.Queryable.dll": {}
  2686. },
  2687. "runtime": {
  2688. "lib/netcore50/System.Linq.Queryable.dll": {}
  2689. }
  2690. },
  2691. "System.Net.Http/4.0.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "System.Collections": "4.0.10",
  2695. "System.Diagnostics.Debug": "4.0.10",
  2696. "System.Globalization": "4.0.10",
  2697. "System.IO": "4.0.10",
  2698. "System.Net.Primitives": "4.0.0",
  2699. "System.Resources.ResourceManager": "4.0.0",
  2700. "System.Runtime": "4.0.20",
  2701. "System.Runtime.Extensions": "4.0.10",
  2702. "System.Runtime.InteropServices": "4.0.20",
  2703. "System.Runtime.WindowsRuntime": "4.0.10",
  2704. "System.Text.Encoding": "4.0.10",
  2705. "System.Text.Encoding.Extensions": "4.0.10",
  2706. "System.Threading": "4.0.10",
  2707. "System.Threading.Tasks": "4.0.10"
  2708. },
  2709. "compile": {
  2710. "ref/netcore50/System.Net.Http.dll": {}
  2711. },
  2712. "runtime": {
  2713. "lib/netcore50/System.Net.Http.dll": {}
  2714. }
  2715. },
  2716. "System.Net.Http.Rtc/4.0.0": {
  2717. "type": "package",
  2718. "dependencies": {
  2719. "System.Net.Http": "4.0.0",
  2720. "System.Runtime": "4.0.20"
  2721. },
  2722. "compile": {
  2723. "ref/netcore50/System.Net.Http.Rtc.dll": {}
  2724. },
  2725. "runtime": {
  2726. "lib/netcore50/System.Net.Http.Rtc.dll": {}
  2727. }
  2728. },
  2729. "System.Net.NetworkInformation/4.0.0": {
  2730. "type": "package",
  2731. "dependencies": {
  2732. "System.Runtime": "4.0.0",
  2733. "System.Runtime.InteropServices.WindowsRuntime": "4.0.0",
  2734. "System.Threading": "4.0.0"
  2735. },
  2736. "compile": {
  2737. "ref/netcore50/System.Net.NetworkInformation.dll": {}
  2738. },
  2739. "runtime": {
  2740. "lib/netcore50/System.Net.NetworkInformation.dll": {}
  2741. }
  2742. },
  2743. "System.Net.Primitives/4.0.10": {
  2744. "type": "package",
  2745. "dependencies": {
  2746. "System.Private.Networking": "4.0.0",
  2747. "System.Runtime": "4.0.20"
  2748. },
  2749. "compile": {
  2750. "ref/dotnet/System.Net.Primitives.dll": {}
  2751. },
  2752. "runtime": {
  2753. "lib/netcore50/System.Net.Primitives.dll": {}
  2754. }
  2755. },
  2756. "System.Net.Requests/4.0.10": {
  2757. "type": "package",
  2758. "dependencies": {
  2759. "System.Collections": "4.0.10",
  2760. "System.Diagnostics.Debug": "4.0.10",
  2761. "System.IO": "4.0.10",
  2762. "System.Net.Http": "4.0.0",
  2763. "System.Net.Primitives": "4.0.10",
  2764. "System.Net.WebHeaderCollection": "4.0.0",
  2765. "System.Resources.ResourceManager": "4.0.0",
  2766. "System.Runtime": "4.0.20",
  2767. "System.Threading": "4.0.10",
  2768. "System.Threading.Tasks": "4.0.10"
  2769. },
  2770. "compile": {
  2771. "ref/dotnet/System.Net.Requests.dll": {}
  2772. },
  2773. "runtime": {
  2774. "lib/dotnet/System.Net.Requests.dll": {}
  2775. }
  2776. },
  2777. "System.Net.Sockets/4.0.0": {
  2778. "type": "package",
  2779. "dependencies": {
  2780. "System.Private.Networking": "4.0.0",
  2781. "System.Runtime": "4.0.20"
  2782. },
  2783. "compile": {
  2784. "ref/dotnet/System.Net.Sockets.dll": {}
  2785. },
  2786. "runtime": {
  2787. "lib/netcore50/System.Net.Sockets.dll": {}
  2788. }
  2789. },
  2790. "System.Net.WebHeaderCollection/4.0.0": {
  2791. "type": "package",
  2792. "dependencies": {
  2793. "System.Collections.NonGeneric": "4.0.0",
  2794. "System.Collections.Specialized": "4.0.0",
  2795. "System.Resources.ResourceManager": "4.0.0",
  2796. "System.Runtime": "4.0.20"
  2797. },
  2798. "compile": {
  2799. "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
  2800. },
  2801. "runtime": {
  2802. "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
  2803. }
  2804. },
  2805. "System.Numerics.Vectors/4.1.0": {
  2806. "type": "package",
  2807. "dependencies": {
  2808. "System.Globalization": "4.0.10",
  2809. "System.Resources.ResourceManager": "4.0.0",
  2810. "System.Runtime": "4.0.20",
  2811. "System.Runtime.Extensions": "4.0.10"
  2812. },
  2813. "compile": {
  2814. "ref/dotnet/System.Numerics.Vectors.dll": {}
  2815. },
  2816. "runtime": {
  2817. "lib/dotnet/System.Numerics.Vectors.dll": {}
  2818. }
  2819. },
  2820. "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
  2821. "type": "package",
  2822. "dependencies": {
  2823. "System.Numerics.Vectors": "4.1.0",
  2824. "System.Runtime": "4.0.20",
  2825. "System.Runtime.WindowsRuntime": "4.0.0"
  2826. },
  2827. "compile": {
  2828. "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
  2829. },
  2830. "runtime": {
  2831. "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
  2832. }
  2833. },
  2834. "System.ObjectModel/4.0.10": {
  2835. "type": "package",
  2836. "dependencies": {
  2837. "System.Collections": "4.0.10",
  2838. "System.Diagnostics.Debug": "4.0.10",
  2839. "System.Resources.ResourceManager": "4.0.0",
  2840. "System.Runtime": "4.0.20",
  2841. "System.Threading": "4.0.10"
  2842. },
  2843. "compile": {
  2844. "ref/dotnet/System.ObjectModel.dll": {}
  2845. },
  2846. "runtime": {
  2847. "lib/dotnet/System.ObjectModel.dll": {}
  2848. }
  2849. },
  2850. "System.Private.DataContractSerialization/4.1.0": {
  2851. "type": "package",
  2852. "dependencies": {
  2853. "runtime.any.System.Private.DataContractSerialization": "4.1.0"
  2854. },
  2855. "compile": {
  2856. "ref/netcore50/_._": {}
  2857. }
  2858. },
  2859. "System.Private.Networking/4.0.0": {
  2860. "type": "package",
  2861. "dependencies": {
  2862. "Microsoft.Win32.Primitives": "4.0.0",
  2863. "System.Collections": "4.0.10",
  2864. "System.Collections.NonGeneric": "4.0.0",
  2865. "System.Diagnostics.Debug": "4.0.10",
  2866. "System.Diagnostics.Tracing": "4.0.20",
  2867. "System.Globalization": "4.0.10",
  2868. "System.IO": "4.0.10",
  2869. "System.IO.FileSystem": "4.0.0",
  2870. "System.IO.FileSystem.Primitives": "4.0.0",
  2871. "System.Resources.ResourceManager": "4.0.0",
  2872. "System.Runtime": "4.0.20",
  2873. "System.Runtime.Extensions": "4.0.10",
  2874. "System.Runtime.Handles": "4.0.0",
  2875. "System.Runtime.InteropServices": "4.0.20",
  2876. "System.Threading": "4.0.10",
  2877. "System.Threading.Overlapped": "4.0.0",
  2878. "System.Threading.Tasks": "4.0.10"
  2879. },
  2880. "compile": {
  2881. "ref/netcore50/_._": {}
  2882. },
  2883. "runtime": {
  2884. "lib/netcore50/System.Private.Networking.dll": {}
  2885. }
  2886. },
  2887. "System.Private.ServiceModel/4.0.0": {
  2888. "type": "package",
  2889. "dependencies": {
  2890. "System.Collections": "4.0.10",
  2891. "System.Collections.Concurrent": "4.0.10",
  2892. "System.Collections.NonGeneric": "4.0.0",
  2893. "System.Collections.Specialized": "4.0.0",
  2894. "System.ComponentModel.EventBasedAsync": "4.0.10",
  2895. "System.Diagnostics.Contracts": "4.0.0",
  2896. "System.Diagnostics.Debug": "4.0.10",
  2897. "System.Globalization": "4.0.10",
  2898. "System.IO": "4.0.10",
  2899. "System.IO.Compression": "4.0.0",
  2900. "System.Linq": "4.0.0",
  2901. "System.Linq.Expressions": "4.0.10",
  2902. "System.Linq.Queryable": "4.0.0",
  2903. "System.Net.Http": "4.0.0",
  2904. "System.Net.Primitives": "4.0.10",
  2905. "System.Net.WebHeaderCollection": "4.0.0",
  2906. "System.ObjectModel": "4.0.10",
  2907. "System.Reflection": "4.0.10",
  2908. "System.Reflection.DispatchProxy": "4.0.0",
  2909. "System.Reflection.Extensions": "4.0.0",
  2910. "System.Reflection.Primitives": "4.0.0",
  2911. "System.Reflection.TypeExtensions": "4.0.0",
  2912. "System.Resources.ResourceManager": "4.0.0",
  2913. "System.Runtime": "4.0.20",
  2914. "System.Runtime.Extensions": "4.0.10",
  2915. "System.Runtime.InteropServices": "4.0.20",
  2916. "System.Runtime.Serialization.Primitives": "4.0.10",
  2917. "System.Runtime.Serialization.Xml": "4.0.10",
  2918. "System.Runtime.WindowsRuntime": "4.0.10",
  2919. "System.Security.Claims": "4.0.0",
  2920. "System.Security.Principal": "4.0.0",
  2921. "System.Text.Encoding": "4.0.10",
  2922. "System.Threading": "4.0.10",
  2923. "System.Threading.Tasks": "4.0.10",
  2924. "System.Threading.Timer": "4.0.0",
  2925. "System.Xml.ReaderWriter": "4.0.10",
  2926. "System.Xml.XmlDocument": "4.0.0",
  2927. "System.Xml.XmlSerializer": "4.0.10"
  2928. },
  2929. "compile": {
  2930. "ref/netcore50/_._": {}
  2931. },
  2932. "runtime": {
  2933. "lib/netcore50/System.Private.ServiceModel.dll": {}
  2934. }
  2935. },
  2936. "System.Private.Uri/4.0.0": {
  2937. "type": "package",
  2938. "compile": {
  2939. "ref/netcore50/_._": {}
  2940. },
  2941. "runtime": {
  2942. "lib/netcore50/System.Private.Uri.dll": {}
  2943. }
  2944. },
  2945. "System.Reflection/4.0.10": {
  2946. "type": "package",
  2947. "dependencies": {
  2948. "System.IO": "4.0.0",
  2949. "System.Reflection.Primitives": "4.0.0",
  2950. "System.Runtime": "4.0.20"
  2951. },
  2952. "compile": {
  2953. "ref/dotnet/System.Reflection.dll": {}
  2954. },
  2955. "runtime": {
  2956. "lib/netcore50/System.Reflection.dll": {}
  2957. }
  2958. },
  2959. "System.Reflection.Context/4.0.0": {
  2960. "type": "package",
  2961. "dependencies": {
  2962. "System.Reflection": "4.0.10",
  2963. "System.Resources.ResourceManager": "4.0.0",
  2964. "System.Runtime": "4.0.20"
  2965. },
  2966. "compile": {
  2967. "ref/netcore50/System.Reflection.Context.dll": {}
  2968. },
  2969. "runtime": {
  2970. "lib/netcore50/System.Reflection.Context.dll": {}
  2971. }
  2972. },
  2973. "System.Reflection.DispatchProxy/4.0.0": {
  2974. "type": "package",
  2975. "dependencies": {
  2976. "System.Collections": "4.0.10",
  2977. "System.Linq": "4.0.0",
  2978. "System.Reflection": "4.0.10",
  2979. "System.Reflection.Emit": "4.0.0",
  2980. "System.Reflection.Emit.ILGeneration": "4.0.0",
  2981. "System.Reflection.Extensions": "4.0.0",
  2982. "System.Reflection.Primitives": "4.0.0",
  2983. "System.Resources.ResourceManager": "4.0.0",
  2984. "System.Runtime": "4.0.20",
  2985. "System.Threading": "4.0.10"
  2986. },
  2987. "compile": {
  2988. "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
  2989. },
  2990. "runtime": {
  2991. "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
  2992. }
  2993. },
  2994. "System.Reflection.Emit/4.0.0": {
  2995. "type": "package",
  2996. "dependencies": {
  2997. "System.IO": "4.0.0",
  2998. "System.Reflection": "4.0.0",
  2999. "System.Reflection.Emit.ILGeneration": "4.0.0",
  3000. "System.Reflection.Primitives": "4.0.0",
  3001. "System.Runtime": "4.0.0"
  3002. },
  3003. "compile": {
  3004. "ref/dotnet/System.Reflection.Emit.dll": {}
  3005. },
  3006. "runtime": {
  3007. "lib/netcore50/System.Reflection.Emit.dll": {}
  3008. }
  3009. },
  3010. "System.Reflection.Emit.ILGeneration/4.0.0": {
  3011. "type": "package",
  3012. "dependencies": {
  3013. "System.Reflection": "4.0.0",
  3014. "System.Reflection.Primitives": "4.0.0",
  3015. "System.Runtime": "4.0.0"
  3016. },
  3017. "compile": {
  3018. "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
  3019. },
  3020. "runtime": {
  3021. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
  3022. }
  3023. },
  3024. "System.Reflection.Emit.Lightweight/4.0.0": {
  3025. "type": "package",
  3026. "dependencies": {
  3027. "System.Reflection": "4.0.0",
  3028. "System.Reflection.Emit.ILGeneration": "4.0.0",
  3029. "System.Reflection.Primitives": "4.0.0",
  3030. "System.Runtime": "4.0.0"
  3031. },
  3032. "compile": {
  3033. "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
  3034. },
  3035. "runtime": {
  3036. "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
  3037. }
  3038. },
  3039. "System.Reflection.Extensions/4.0.0": {
  3040. "type": "package",
  3041. "dependencies": {
  3042. "System.Diagnostics.Debug": "4.0.10",
  3043. "System.Reflection": "4.0.10",
  3044. "System.Reflection.Primitives": "4.0.0",
  3045. "System.Reflection.TypeExtensions": "4.0.0",
  3046. "System.Resources.ResourceManager": "4.0.0",
  3047. "System.Runtime": "4.0.20",
  3048. "System.Runtime.Extensions": "4.0.10"
  3049. },
  3050. "compile": {
  3051. "ref/netcore50/System.Reflection.Extensions.dll": {}
  3052. },
  3053. "runtime": {
  3054. "lib/netcore50/System.Reflection.Extensions.dll": {}
  3055. }
  3056. },
  3057. "System.Reflection.Metadata/1.0.22": {
  3058. "type": "package",
  3059. "dependencies": {
  3060. "System.Collections": "4.0.0",
  3061. "System.Collections.Immutable": "1.1.37",
  3062. "System.Diagnostics.Debug": "4.0.0",
  3063. "System.IO": "4.0.0",
  3064. "System.Reflection": "4.0.0",
  3065. "System.Reflection.Extensions": "4.0.0",
  3066. "System.Reflection.Primitives": "4.0.0",
  3067. "System.Resources.ResourceManager": "4.0.0",
  3068. "System.Runtime": "4.0.0",
  3069. "System.Runtime.Extensions": "4.0.0",
  3070. "System.Runtime.InteropServices": "4.0.0",
  3071. "System.Text.Encoding": "4.0.0",
  3072. "System.Text.Encoding.Extensions": "4.0.0",
  3073. "System.Threading": "4.0.0"
  3074. },
  3075. "compile": {
  3076. "lib/dotnet/System.Reflection.Metadata.dll": {}
  3077. },
  3078. "runtime": {
  3079. "lib/dotnet/System.Reflection.Metadata.dll": {}
  3080. }
  3081. },
  3082. "System.Reflection.Primitives/4.0.0": {
  3083. "type": "package",
  3084. "dependencies": {
  3085. "System.Runtime": "4.0.0",
  3086. "System.Threading": "4.0.0"
  3087. },
  3088. "compile": {
  3089. "ref/netcore50/System.Reflection.Primitives.dll": {}
  3090. },
  3091. "runtime": {
  3092. "lib/netcore50/System.Reflection.Primitives.dll": {}
  3093. }
  3094. },
  3095. "System.Reflection.TypeExtensions/4.0.0": {
  3096. "type": "package",
  3097. "dependencies": {
  3098. "System.Diagnostics.Contracts": "4.0.0",
  3099. "System.Diagnostics.Debug": "4.0.10",
  3100. "System.Linq": "4.0.0",
  3101. "System.Reflection": "4.0.10",
  3102. "System.Reflection.Primitives": "4.0.0",
  3103. "System.Resources.ResourceManager": "4.0.0",
  3104. "System.Runtime": "4.0.20",
  3105. "System.Runtime.Extensions": "4.0.10"
  3106. },
  3107. "compile": {
  3108. "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
  3109. },
  3110. "runtime": {
  3111. "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
  3112. }
  3113. },
  3114. "System.Resources.ResourceManager/4.0.0": {
  3115. "type": "package",
  3116. "dependencies": {
  3117. "System.Globalization": "4.0.0",
  3118. "System.Reflection": "4.0.10",
  3119. "System.Runtime": "4.0.20"
  3120. },
  3121. "compile": {
  3122. "ref/netcore50/System.Resources.ResourceManager.dll": {}
  3123. },
  3124. "runtime": {
  3125. "lib/netcore50/System.Resources.ResourceManager.dll": {}
  3126. }
  3127. },
  3128. "System.Runtime/4.0.20": {
  3129. "type": "package",
  3130. "dependencies": {
  3131. "System.Private.Uri": "4.0.0"
  3132. },
  3133. "compile": {
  3134. "ref/dotnet/System.Runtime.dll": {}
  3135. },
  3136. "runtime": {
  3137. "lib/netcore50/System.Runtime.dll": {}
  3138. }
  3139. },
  3140. "System.Runtime.Extensions/4.0.10": {
  3141. "type": "package",
  3142. "dependencies": {
  3143. "System.Runtime": "4.0.20"
  3144. },
  3145. "compile": {
  3146. "ref/dotnet/System.Runtime.Extensions.dll": {}
  3147. },
  3148. "runtime": {
  3149. "lib/netcore50/System.Runtime.Extensions.dll": {}
  3150. }
  3151. },
  3152. "System.Runtime.Handles/4.0.0": {
  3153. "type": "package",
  3154. "dependencies": {
  3155. "System.Runtime": "4.0.0"
  3156. },
  3157. "compile": {
  3158. "ref/dotnet/System.Runtime.Handles.dll": {}
  3159. },
  3160. "runtime": {
  3161. "lib/netcore50/System.Runtime.Handles.dll": {}
  3162. }
  3163. },
  3164. "System.Runtime.InteropServices/4.0.20": {
  3165. "type": "package",
  3166. "dependencies": {
  3167. "System.Reflection": "4.0.0",
  3168. "System.Reflection.Primitives": "4.0.0",
  3169. "System.Runtime": "4.0.0",
  3170. "System.Runtime.Handles": "4.0.0"
  3171. },
  3172. "compile": {
  3173. "ref/dotnet/System.Runtime.InteropServices.dll": {}
  3174. },
  3175. "runtime": {
  3176. "lib/netcore50/System.Runtime.InteropServices.dll": {}
  3177. }
  3178. },
  3179. "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
  3180. "type": "package",
  3181. "compile": {
  3182. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  3183. },
  3184. "runtime": {
  3185. "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  3186. }
  3187. },
  3188. "System.Runtime.Numerics/4.0.0": {
  3189. "type": "package",
  3190. "dependencies": {
  3191. "System.Globalization": "4.0.10",
  3192. "System.Resources.ResourceManager": "4.0.0",
  3193. "System.Runtime": "4.0.20",
  3194. "System.Runtime.Extensions": "4.0.10"
  3195. },
  3196. "compile": {
  3197. "ref/netcore50/System.Runtime.Numerics.dll": {}
  3198. },
  3199. "runtime": {
  3200. "lib/netcore50/System.Runtime.Numerics.dll": {}
  3201. }
  3202. },
  3203. "System.Runtime.Serialization.Json/4.0.1": {
  3204. "type": "package",
  3205. "dependencies": {
  3206. "System.IO": "4.0.0",
  3207. "System.Private.DataContractSerialization": "4.1.0",
  3208. "System.Runtime": "4.0.0"
  3209. },
  3210. "compile": {
  3211. "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
  3212. },
  3213. "runtime": {
  3214. "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
  3215. }
  3216. },
  3217. "System.Runtime.Serialization.Primitives/4.1.0": {
  3218. "type": "package",
  3219. "dependencies": {
  3220. "System.Resources.ResourceManager": "4.0.0",
  3221. "System.Runtime": "4.0.20"
  3222. },
  3223. "compile": {
  3224. "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
  3225. },
  3226. "runtime": {
  3227. "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
  3228. }
  3229. },
  3230. "System.Runtime.Serialization.Xml/4.1.0": {
  3231. "type": "package",
  3232. "dependencies": {
  3233. "System.IO": "4.0.0",
  3234. "System.Private.DataContractSerialization": "4.1.0",
  3235. "System.Runtime": "4.0.0",
  3236. "System.Runtime.Serialization.Primitives": "4.1.0",
  3237. "System.Text.Encoding": "4.0.0",
  3238. "System.Xml.ReaderWriter": "4.0.0"
  3239. },
  3240. "compile": {
  3241. "ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
  3242. },
  3243. "runtime": {
  3244. "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
  3245. }
  3246. },
  3247. "System.Runtime.WindowsRuntime/4.0.10": {
  3248. "type": "package",
  3249. "dependencies": {
  3250. "System.Diagnostics.Debug": "4.0.10",
  3251. "System.Globalization": "4.0.0",
  3252. "System.IO": "4.0.10",
  3253. "System.ObjectModel": "4.0.0",
  3254. "System.Resources.ResourceManager": "4.0.0",
  3255. "System.Runtime": "4.0.20",
  3256. "System.Runtime.Extensions": "4.0.0",
  3257. "System.Runtime.InteropServices": "4.0.20",
  3258. "System.Threading": "4.0.10",
  3259. "System.Threading.Tasks": "4.0.10"
  3260. },
  3261. "compile": {
  3262. "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
  3263. },
  3264. "runtime": {
  3265. "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
  3266. }
  3267. },
  3268. "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
  3269. "type": "package",
  3270. "dependencies": {
  3271. "System.Globalization": "4.0.0",
  3272. "System.Resources.ResourceManager": "4.0.0",
  3273. "System.Runtime": "4.0.20",
  3274. "System.Runtime.Extensions": "4.0.0",
  3275. "System.Runtime.WindowsRuntime": "4.0.0"
  3276. },
  3277. "compile": {
  3278. "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
  3279. },
  3280. "runtime": {
  3281. "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
  3282. }
  3283. },
  3284. "System.Security.Claims/4.0.0": {
  3285. "type": "package",
  3286. "dependencies": {
  3287. "System.Collections": "4.0.0",
  3288. "System.Diagnostics.Debug": "4.0.0",
  3289. "System.Globalization": "4.0.0",
  3290. "System.IO": "4.0.0",
  3291. "System.Resources.ResourceManager": "4.0.0",
  3292. "System.Runtime": "4.0.20",
  3293. "System.Runtime.Extensions": "4.0.0",
  3294. "System.Security.Principal": "4.0.0"
  3295. },
  3296. "compile": {
  3297. "ref/dotnet/System.Security.Claims.dll": {}
  3298. },
  3299. "runtime": {
  3300. "lib/dotnet/System.Security.Claims.dll": {}
  3301. }
  3302. },
  3303. "System.Security.Principal/4.0.0": {
  3304. "type": "package",
  3305. "dependencies": {
  3306. "System.Runtime": "4.0.0"
  3307. },
  3308. "compile": {
  3309. "ref/netcore50/System.Security.Principal.dll": {}
  3310. },
  3311. "runtime": {
  3312. "lib/netcore50/System.Security.Principal.dll": {}
  3313. }
  3314. },
  3315. "System.ServiceModel.Duplex/4.0.0": {
  3316. "type": "package",
  3317. "dependencies": {
  3318. "System.Private.ServiceModel": "4.0.0",
  3319. "System.Runtime": "4.0.20"
  3320. },
  3321. "compile": {
  3322. "ref/netcore50/System.ServiceModel.Duplex.dll": {}
  3323. },
  3324. "runtime": {
  3325. "lib/netcore50/System.ServiceModel.Duplex.dll": {}
  3326. }
  3327. },
  3328. "System.ServiceModel.Http/4.0.10": {
  3329. "type": "package",
  3330. "dependencies": {
  3331. "System.Private.ServiceModel": "4.0.0",
  3332. "System.Runtime": "4.0.20"
  3333. },
  3334. "compile": {
  3335. "ref/dotnet/System.ServiceModel.Http.dll": {}
  3336. },
  3337. "runtime": {
  3338. "lib/netcore50/System.ServiceModel.Http.dll": {}
  3339. }
  3340. },
  3341. "System.ServiceModel.NetTcp/4.0.0": {
  3342. "type": "package",
  3343. "dependencies": {
  3344. "System.Private.ServiceModel": "4.0.0",
  3345. "System.Runtime": "4.0.20"
  3346. },
  3347. "compile": {
  3348. "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
  3349. },
  3350. "runtime": {
  3351. "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
  3352. }
  3353. },
  3354. "System.ServiceModel.Primitives/4.0.0": {
  3355. "type": "package",
  3356. "dependencies": {
  3357. "System.Private.ServiceModel": "4.0.0",
  3358. "System.Runtime": "4.0.20"
  3359. },
  3360. "compile": {
  3361. "ref/netcore50/System.ServiceModel.Primitives.dll": {}
  3362. },
  3363. "runtime": {
  3364. "lib/netcore50/System.ServiceModel.Primitives.dll": {}
  3365. }
  3366. },
  3367. "System.ServiceModel.Security/4.0.0": {
  3368. "type": "package",
  3369. "dependencies": {
  3370. "System.Private.ServiceModel": "4.0.0",
  3371. "System.Runtime": "4.0.20"
  3372. },
  3373. "compile": {
  3374. "ref/netcore50/System.ServiceModel.Security.dll": {}
  3375. },
  3376. "runtime": {
  3377. "lib/netcore50/System.ServiceModel.Security.dll": {}
  3378. }
  3379. },
  3380. "System.Text.Encoding/4.0.10": {
  3381. "type": "package",
  3382. "dependencies": {
  3383. "System.Runtime": "4.0.0"
  3384. },
  3385. "compile": {
  3386. "ref/dotnet/System.Text.Encoding.dll": {}
  3387. },
  3388. "runtime": {
  3389. "lib/netcore50/System.Text.Encoding.dll": {}
  3390. }
  3391. },
  3392. "System.Text.Encoding.CodePages/4.0.0": {
  3393. "type": "package",
  3394. "dependencies": {
  3395. "System.Collections": "4.0.10",
  3396. "System.Globalization": "4.0.10",
  3397. "System.IO": "4.0.10",
  3398. "System.Reflection": "4.0.10",
  3399. "System.Resources.ResourceManager": "4.0.0",
  3400. "System.Runtime": "4.0.20",
  3401. "System.Runtime.Extensions": "4.0.10",
  3402. "System.Runtime.Handles": "4.0.0",
  3403. "System.Runtime.InteropServices": "4.0.20",
  3404. "System.Text.Encoding": "4.0.10",
  3405. "System.Threading": "4.0.10"
  3406. },
  3407. "compile": {
  3408. "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
  3409. },
  3410. "runtime": {
  3411. "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
  3412. }
  3413. },
  3414. "System.Text.Encoding.Extensions/4.0.10": {
  3415. "type": "package",
  3416. "dependencies": {
  3417. "System.Runtime": "4.0.0",
  3418. "System.Text.Encoding": "4.0.10"
  3419. },
  3420. "compile": {
  3421. "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
  3422. },
  3423. "runtime": {
  3424. "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
  3425. }
  3426. },
  3427. "System.Text.RegularExpressions/4.0.10": {
  3428. "type": "package",
  3429. "dependencies": {
  3430. "System.Collections": "4.0.10",
  3431. "System.Globalization": "4.0.10",
  3432. "System.Resources.ResourceManager": "4.0.0",
  3433. "System.Runtime": "4.0.20",
  3434. "System.Runtime.Extensions": "4.0.10",
  3435. "System.Threading": "4.0.10"
  3436. },
  3437. "compile": {
  3438. "ref/dotnet/System.Text.RegularExpressions.dll": {}
  3439. },
  3440. "runtime": {
  3441. "lib/dotnet/System.Text.RegularExpressions.dll": {}
  3442. }
  3443. },
  3444. "System.Threading/4.0.10": {
  3445. "type": "package",
  3446. "dependencies": {
  3447. "System.Runtime": "4.0.0",
  3448. "System.Threading.Tasks": "4.0.0"
  3449. },
  3450. "compile": {
  3451. "ref/dotnet/System.Threading.dll": {}
  3452. },
  3453. "runtime": {
  3454. "lib/netcore50/System.Threading.dll": {}
  3455. }
  3456. },
  3457. "System.Threading.Overlapped/4.0.0": {
  3458. "type": "package",
  3459. "dependencies": {
  3460. "System.Resources.ResourceManager": "4.0.0",
  3461. "System.Runtime": "4.0.20",
  3462. "System.Runtime.Extensions": "4.0.0",
  3463. "System.Runtime.Handles": "4.0.0",
  3464. "System.Runtime.InteropServices": "4.0.20",
  3465. "System.Threading": "4.0.10"
  3466. },
  3467. "compile": {
  3468. "ref/dotnet/System.Threading.Overlapped.dll": {}
  3469. },
  3470. "runtime": {
  3471. "lib/netcore50/System.Threading.Overlapped.dll": {}
  3472. }
  3473. },
  3474. "System.Threading.Tasks/4.0.10": {
  3475. "type": "package",
  3476. "dependencies": {
  3477. "System.Runtime": "4.0.0"
  3478. },
  3479. "compile": {
  3480. "ref/dotnet/System.Threading.Tasks.dll": {}
  3481. },
  3482. "runtime": {
  3483. "lib/netcore50/System.Threading.Tasks.dll": {}
  3484. }
  3485. },
  3486. "System.Threading.Tasks.Dataflow/4.5.25": {
  3487. "type": "package",
  3488. "dependencies": {
  3489. "System.Collections": "4.0.0",
  3490. "System.Collections.Concurrent": "4.0.0",
  3491. "System.Diagnostics.Debug": "4.0.0",
  3492. "System.Diagnostics.Tracing": "4.0.0",
  3493. "System.Dynamic.Runtime": "4.0.0",
  3494. "System.Linq": "4.0.0",
  3495. "System.Resources.ResourceManager": "4.0.0",
  3496. "System.Runtime": "4.0.0",
  3497. "System.Runtime.Extensions": "4.0.0",
  3498. "System.Threading": "4.0.0",
  3499. "System.Threading.Tasks": "4.0.0"
  3500. },
  3501. "compile": {
  3502. "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
  3503. },
  3504. "runtime": {
  3505. "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
  3506. }
  3507. },
  3508. "System.Threading.Tasks.Parallel/4.0.0": {
  3509. "type": "package",
  3510. "dependencies": {
  3511. "System.Collections.Concurrent": "4.0.10",
  3512. "System.Diagnostics.Debug": "4.0.10",
  3513. "System.Diagnostics.Tracing": "4.0.20",
  3514. "System.Resources.ResourceManager": "4.0.0",
  3515. "System.Runtime": "4.0.20",
  3516. "System.Runtime.Extensions": "4.0.10",
  3517. "System.Threading": "4.0.10",
  3518. "System.Threading.Tasks": "4.0.10"
  3519. },
  3520. "compile": {
  3521. "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
  3522. },
  3523. "runtime": {
  3524. "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
  3525. }
  3526. },
  3527. "System.Threading.Timer/4.0.0": {
  3528. "type": "package",
  3529. "compile": {
  3530. "ref/netcore50/System.Threading.Timer.dll": {}
  3531. },
  3532. "runtime": {
  3533. "lib/netcore50/System.Threading.Timer.dll": {}
  3534. }
  3535. },
  3536. "System.Xml.ReaderWriter/4.0.10": {
  3537. "type": "package",
  3538. "dependencies": {
  3539. "System.Collections": "4.0.10",
  3540. "System.Diagnostics.Debug": "4.0.10",
  3541. "System.Globalization": "4.0.10",
  3542. "System.IO": "4.0.10",
  3543. "System.IO.FileSystem": "4.0.0",
  3544. "System.IO.FileSystem.Primitives": "4.0.0",
  3545. "System.Resources.ResourceManager": "4.0.0",
  3546. "System.Runtime": "4.0.20",
  3547. "System.Runtime.Extensions": "4.0.10",
  3548. "System.Runtime.InteropServices": "4.0.20",
  3549. "System.Text.Encoding": "4.0.10",
  3550. "System.Text.Encoding.Extensions": "4.0.10",
  3551. "System.Text.RegularExpressions": "4.0.10",
  3552. "System.Threading.Tasks": "4.0.10"
  3553. },
  3554. "compile": {
  3555. "ref/dotnet/System.Xml.ReaderWriter.dll": {}
  3556. },
  3557. "runtime": {
  3558. "lib/dotnet/System.Xml.ReaderWriter.dll": {}
  3559. }
  3560. },
  3561. "System.Xml.XDocument/4.0.10": {
  3562. "type": "package",
  3563. "dependencies": {
  3564. "System.Collections": "4.0.10",
  3565. "System.Diagnostics.Debug": "4.0.10",
  3566. "System.Globalization": "4.0.10",
  3567. "System.IO": "4.0.10",
  3568. "System.Reflection": "4.0.10",
  3569. "System.Resources.ResourceManager": "4.0.0",
  3570. "System.Runtime": "4.0.20",
  3571. "System.Runtime.Extensions": "4.0.10",
  3572. "System.Text.Encoding": "4.0.10",
  3573. "System.Threading": "4.0.10",
  3574. "System.Xml.ReaderWriter": "4.0.10"
  3575. },
  3576. "compile": {
  3577. "ref/dotnet/System.Xml.XDocument.dll": {}
  3578. },
  3579. "runtime": {
  3580. "lib/dotnet/System.Xml.XDocument.dll": {}
  3581. }
  3582. },
  3583. "System.Xml.XmlDocument/4.0.0": {
  3584. "type": "package",
  3585. "dependencies": {
  3586. "System.Collections": "4.0.10",
  3587. "System.Diagnostics.Debug": "4.0.10",
  3588. "System.Globalization": "4.0.10",
  3589. "System.IO": "4.0.10",
  3590. "System.Resources.ResourceManager": "4.0.0",
  3591. "System.Runtime": "4.0.20",
  3592. "System.Runtime.Extensions": "4.0.10",
  3593. "System.Text.Encoding": "4.0.10",
  3594. "System.Threading": "4.0.10",
  3595. "System.Xml.ReaderWriter": "4.0.10"
  3596. },
  3597. "compile": {
  3598. "ref/dotnet/System.Xml.XmlDocument.dll": {}
  3599. },
  3600. "runtime": {
  3601. "lib/dotnet/System.Xml.XmlDocument.dll": {}
  3602. }
  3603. },
  3604. "System.Xml.XmlSerializer/4.0.10": {
  3605. "type": "package",
  3606. "dependencies": {
  3607. "System.Collections": "4.0.10",
  3608. "System.Diagnostics.Debug": "4.0.10",
  3609. "System.Globalization": "4.0.10",
  3610. "System.IO": "4.0.10",
  3611. "System.Linq": "4.0.0",
  3612. "System.Reflection": "4.0.10",
  3613. "System.Reflection.Emit": "4.0.0",
  3614. "System.Reflection.Emit.ILGeneration": "4.0.0",
  3615. "System.Reflection.Extensions": "4.0.0",
  3616. "System.Reflection.Primitives": "4.0.0",
  3617. "System.Reflection.TypeExtensions": "4.0.0",
  3618. "System.Resources.ResourceManager": "4.0.0",
  3619. "System.Runtime": "4.0.20",
  3620. "System.Runtime.Extensions": "4.0.10",
  3621. "System.Text.RegularExpressions": "4.0.10",
  3622. "System.Threading": "4.0.10",
  3623. "System.Xml.ReaderWriter": "4.0.10",
  3624. "System.Xml.XmlDocument": "4.0.0"
  3625. },
  3626. "compile": {
  3627. "ref/dotnet/System.Xml.XmlSerializer.dll": {}
  3628. },
  3629. "runtime": {
  3630. "lib/netcore50/System.Xml.XmlSerializer.dll": {}
  3631. }
  3632. }
  3633. },
  3634. "UAP,Version=v10.0/win10-x86-aot": {
  3635. "Microsoft.CSharp/4.0.0": {
  3636. "type": "package",
  3637. "dependencies": {
  3638. "System.Collections": "4.0.10",
  3639. "System.Diagnostics.Debug": "4.0.10",
  3640. "System.Dynamic.Runtime": "4.0.0",
  3641. "System.Globalization": "4.0.10",
  3642. "System.Linq": "4.0.0",
  3643. "System.Linq.Expressions": "4.0.0",
  3644. "System.ObjectModel": "4.0.10",
  3645. "System.Reflection": "4.0.10",
  3646. "System.Reflection.Extensions": "4.0.0",
  3647. "System.Reflection.Primitives": "4.0.0",
  3648. "System.Reflection.TypeExtensions": "4.0.0",
  3649. "System.Resources.ResourceManager": "4.0.0",
  3650. "System.Runtime": "4.0.20",
  3651. "System.Runtime.Extensions": "4.0.10",
  3652. "System.Runtime.InteropServices": "4.0.20",
  3653. "System.Threading": "4.0.10"
  3654. },
  3655. "compile": {
  3656. "ref/netcore50/Microsoft.CSharp.dll": {}
  3657. },
  3658. "runtime": {
  3659. "lib/netcore50/Microsoft.CSharp.dll": {}
  3660. }
  3661. },
  3662. "Microsoft.NETCore/5.0.0": {
  3663. "type": "package",
  3664. "dependencies": {
  3665. "Microsoft.CSharp": "4.0.0",
  3666. "Microsoft.NETCore.Targets": "1.0.0",
  3667. "Microsoft.VisualBasic": "10.0.0",
  3668. "System.AppContext": "4.0.0",
  3669. "System.Collections": "4.0.10",
  3670. "System.Collections.Concurrent": "4.0.10",
  3671. "System.Collections.Immutable": "1.1.37",
  3672. "System.ComponentModel": "4.0.0",
  3673. "System.ComponentModel.Annotations": "4.0.10",
  3674. "System.Diagnostics.Debug": "4.0.10",
  3675. "System.Diagnostics.Tools": "4.0.0",
  3676. "System.Diagnostics.Tracing": "4.0.20",
  3677. "System.Dynamic.Runtime": "4.0.10",
  3678. "System.Globalization": "4.0.10",
  3679. "System.Globalization.Calendars": "4.0.0",
  3680. "System.Globalization.Extensions": "4.0.0",
  3681. "System.IO": "4.0.10",
  3682. "System.IO.Compression": "4.0.0",
  3683. "System.IO.Compression.ZipFile": "4.0.0",
  3684. "System.IO.FileSystem": "4.0.0",
  3685. "System.IO.FileSystem.Primitives": "4.0.0",
  3686. "System.IO.UnmanagedMemoryStream": "4.0.0",
  3687. "System.Linq": "4.0.0",
  3688. "System.Linq.Expressions": "4.0.10",
  3689. "System.Linq.Parallel": "4.0.0",
  3690. "System.Linq.Queryable": "4.0.0",
  3691. "System.Net.Http": "4.0.0",
  3692. "System.Net.NetworkInformation": "4.0.0",
  3693. "System.Net.Primitives": "4.0.10",
  3694. "System.Numerics.Vectors": "4.1.0",
  3695. "System.ObjectModel": "4.0.10",
  3696. "System.Reflection": "4.0.10",
  3697. "System.Reflection.DispatchProxy": "4.0.0",
  3698. "System.Reflection.Extensions": "4.0.0",
  3699. "System.Reflection.Metadata": "1.0.22",
  3700. "System.Reflection.Primitives": "4.0.0",
  3701. "System.Reflection.TypeExtensions": "4.0.0",
  3702. "System.Resources.ResourceManager": "4.0.0",
  3703. "System.Runtime": "4.0.20",
  3704. "System.Runtime.Extensions": "4.0.10",
  3705. "System.Runtime.Handles": "4.0.0",
  3706. "System.Runtime.InteropServices": "4.0.20",
  3707. "System.Runtime.Numerics": "4.0.0",
  3708. "System.Security.Claims": "4.0.0",
  3709. "System.Security.Principal": "4.0.0",
  3710. "System.Text.Encoding": "4.0.10",
  3711. "System.Text.Encoding.Extensions": "4.0.10",
  3712. "System.Text.RegularExpressions": "4.0.10",
  3713. "System.Threading": "4.0.10",
  3714. "System.Threading.Tasks": "4.0.10",
  3715. "System.Threading.Tasks.Dataflow": "4.5.25",
  3716. "System.Threading.Tasks.Parallel": "4.0.0",
  3717. "System.Threading.Timer": "4.0.0",
  3718. "System.Xml.ReaderWriter": "4.0.10",
  3719. "System.Xml.XDocument": "4.0.10"
  3720. }
  3721. },
  3722. "Microsoft.NETCore.Platforms/1.0.0": {
  3723. "type": "package"
  3724. },
  3725. "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
  3726. "type": "package",
  3727. "dependencies": {
  3728. "Microsoft.NETCore.Runtime": "1.0.0"
  3729. },
  3730. "compile": {
  3731. "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
  3732. "ref/netcore50/System.Core.dll": {},
  3733. "ref/netcore50/System.Net.dll": {},
  3734. "ref/netcore50/System.Numerics.dll": {},
  3735. "ref/netcore50/System.Runtime.Serialization.dll": {},
  3736. "ref/netcore50/System.ServiceModel.Web.dll": {},
  3737. "ref/netcore50/System.ServiceModel.dll": {},
  3738. "ref/netcore50/System.Windows.dll": {},
  3739. "ref/netcore50/System.Xml.Linq.dll": {},
  3740. "ref/netcore50/System.Xml.Serialization.dll": {},
  3741. "ref/netcore50/System.Xml.dll": {},
  3742. "ref/netcore50/System.dll": {},
  3743. "ref/netcore50/mscorlib.dll": {}
  3744. },
  3745. "runtime": {
  3746. "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
  3747. "runtimes/aot/lib/netcore50/System.Core.dll": {},
  3748. "runtimes/aot/lib/netcore50/System.Net.dll": {},
  3749. "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
  3750. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
  3751. "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
  3752. "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
  3753. "runtimes/aot/lib/netcore50/System.Windows.dll": {},
  3754. "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
  3755. "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {},
  3756. "runtimes/aot/lib/netcore50/System.Xml.dll": {},
  3757. "runtimes/aot/lib/netcore50/System.dll": {},
  3758. "runtimes/aot/lib/netcore50/mscorlib.dll": {}
  3759. }
  3760. },
  3761. "Microsoft.NETCore.Runtime/1.0.1": {
  3762. "type": "package",
  3763. "dependencies": {
  3764. "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1",
  3765. "Microsoft.NETCore.Runtime.Native": "1.0.1"
  3766. }
  3767. },
  3768. "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {
  3769. "type": "package"
  3770. },
  3771. "Microsoft.NETCore.Runtime.Native/1.0.1": {
  3772. "type": "package"
  3773. },
  3774. "Microsoft.NETCore.Targets/1.0.0": {
  3775. "type": "package",
  3776. "dependencies": {
  3777. "Microsoft.NETCore.Platforms": "1.0.0",
  3778. "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0"
  3779. }
  3780. },
  3781. "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {
  3782. "type": "package"
  3783. },
  3784. "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": {
  3785. "type": "package",
  3786. "dependencies": {
  3787. "Microsoft.NETCore": "5.0.0",
  3788. "Microsoft.NETCore.Portable.Compatibility": "1.0.0",
  3789. "Microsoft.NETCore.Runtime": "1.0.1",
  3790. "Microsoft.Win32.Primitives": "4.0.0",
  3791. "System.ComponentModel.EventBasedAsync": "4.0.10",
  3792. "System.Data.Common": "4.0.0",
  3793. "System.Diagnostics.Contracts": "4.0.0",
  3794. "System.Diagnostics.StackTrace": "4.0.0",
  3795. "System.IO.IsolatedStorage": "4.0.0",
  3796. "System.Net.Http.Rtc": "4.0.0",
  3797. "System.Net.Requests": "4.0.10",
  3798. "System.Net.Sockets": "4.0.0",
  3799. "System.Net.WebHeaderCollection": "4.0.0",
  3800. "System.Numerics.Vectors.WindowsRuntime": "4.0.0",
  3801. "System.Reflection.Context": "4.0.0",
  3802. "System.Runtime.InteropServices.WindowsRuntime": "4.0.0",
  3803. "System.Runtime.Serialization.Json": "4.0.1",
  3804. "System.Runtime.Serialization.Primitives": "4.1.0",
  3805. "System.Runtime.Serialization.Xml": "4.1.0",
  3806. "System.Runtime.WindowsRuntime": "4.0.10",
  3807. "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0",
  3808. "System.ServiceModel.Duplex": "4.0.0",
  3809. "System.ServiceModel.Http": "4.0.10",
  3810. "System.ServiceModel.NetTcp": "4.0.0",
  3811. "System.ServiceModel.Primitives": "4.0.0",
  3812. "System.ServiceModel.Security": "4.0.0",
  3813. "System.Text.Encoding.CodePages": "4.0.0",
  3814. "System.Xml.XmlSerializer": "4.0.10"
  3815. }
  3816. },
  3817. "Microsoft.VisualBasic/10.0.0": {
  3818. "type": "package",
  3819. "dependencies": {
  3820. "System.Collections": "4.0.10",
  3821. "System.Diagnostics.Debug": "4.0.10",
  3822. "System.Dynamic.Runtime": "4.0.10",
  3823. "System.Globalization": "4.0.10",
  3824. "System.Linq": "4.0.0",
  3825. "System.Linq.Expressions": "4.0.10",
  3826. "System.ObjectModel": "4.0.10",
  3827. "System.Reflection": "4.0.10",
  3828. "System.Reflection.Extensions": "4.0.0",
  3829. "System.Reflection.Primitives": "4.0.0",
  3830. "System.Reflection.TypeExtensions": "4.0.0",
  3831. "System.Resources.ResourceManager": "4.0.0",
  3832. "System.Runtime": "4.0.20",
  3833. "System.Runtime.Extensions": "4.0.10",
  3834. "System.Runtime.InteropServices": "4.0.20",
  3835. "System.Threading": "4.0.10"
  3836. },
  3837. "compile": {
  3838. "ref/netcore50/Microsoft.VisualBasic.dll": {}
  3839. },
  3840. "runtime": {
  3841. "lib/netcore50/Microsoft.VisualBasic.dll": {}
  3842. }
  3843. },
  3844. "Microsoft.Win32.Primitives/4.0.0": {
  3845. "type": "package",
  3846. "dependencies": {
  3847. "System.Runtime": "4.0.20",
  3848. "System.Runtime.InteropServices": "4.0.20"
  3849. },
  3850. "compile": {
  3851. "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
  3852. },
  3853. "runtime": {
  3854. "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
  3855. }
  3856. },
  3857. "runtime.aot.System.Private.DataContractSerialization/4.1.0": {
  3858. "type": "package",
  3859. "dependencies": {
  3860. "System.Collections": "4.0.10",
  3861. "System.Diagnostics.Debug": "4.0.10",
  3862. "System.Globalization": "4.0.10",
  3863. "System.IO": "4.0.10",
  3864. "System.Linq": "4.0.0",
  3865. "System.Reflection": "4.0.10",
  3866. "System.Reflection.Extensions": "4.0.0",
  3867. "System.Reflection.Primitives": "4.0.0",
  3868. "System.Reflection.TypeExtensions": "4.0.0",
  3869. "System.Resources.ResourceManager": "4.0.0",
  3870. "System.Runtime": "4.0.20",
  3871. "System.Runtime.Extensions": "4.0.10",
  3872. "System.Runtime.Serialization.Primitives": "4.1.0",
  3873. "System.Text.Encoding": "4.0.10",
  3874. "System.Text.Encoding.Extensions": "4.0.10",
  3875. "System.Text.RegularExpressions": "4.0.10",
  3876. "System.Threading": "4.0.10",
  3877. "System.Threading.Tasks": "4.0.10",
  3878. "System.Xml.ReaderWriter": "4.0.10",
  3879. "System.Xml.XmlDocument": "4.0.0",
  3880. "System.Xml.XmlSerializer": "4.0.10"
  3881. },
  3882. "compile": {
  3883. "ref/dotnet/_._": {}
  3884. },
  3885. "runtime": {
  3886. "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
  3887. }
  3888. },
  3889. "System.AppContext/4.0.0": {
  3890. "type": "package",
  3891. "dependencies": {
  3892. "System.Collections": "4.0.0",
  3893. "System.Resources.ResourceManager": "4.0.0",
  3894. "System.Runtime": "4.0.20",
  3895. "System.Threading": "4.0.0"
  3896. },
  3897. "compile": {
  3898. "ref/dotnet/System.AppContext.dll": {}
  3899. },
  3900. "runtime": {
  3901. "lib/netcore50/System.AppContext.dll": {}
  3902. }
  3903. },
  3904. "System.Collections/4.0.10": {
  3905. "type": "package",
  3906. "dependencies": {
  3907. "System.Diagnostics.Debug": "4.0.0",
  3908. "System.Resources.ResourceManager": "4.0.0",
  3909. "System.Runtime": "4.0.20",
  3910. "System.Runtime.Extensions": "4.0.0",
  3911. "System.Threading": "4.0.0"
  3912. },
  3913. "compile": {
  3914. "ref/dotnet/System.Collections.dll": {}
  3915. },
  3916. "runtime": {
  3917. "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
  3918. }
  3919. },
  3920. "System.Collections.Concurrent/4.0.10": {
  3921. "type": "package",
  3922. "dependencies": {
  3923. "System.Collections": "4.0.10",
  3924. "System.Diagnostics.Debug": "4.0.10",
  3925. "System.Diagnostics.Tracing": "4.0.20",
  3926. "System.Globalization": "4.0.10",
  3927. "System.Resources.ResourceManager": "4.0.0",
  3928. "System.Runtime": "4.0.20",
  3929. "System.Runtime.Extensions": "4.0.10",
  3930. "System.Threading": "4.0.10",
  3931. "System.Threading.Tasks": "4.0.10"
  3932. },
  3933. "compile": {
  3934. "ref/dotnet/System.Collections.Concurrent.dll": {}
  3935. },
  3936. "runtime": {
  3937. "lib/dotnet/System.Collections.Concurrent.dll": {}
  3938. }
  3939. },
  3940. "System.Collections.Immutable/1.1.37": {
  3941. "type": "package",
  3942. "dependencies": {
  3943. "System.Collections": "4.0.0",
  3944. "System.Diagnostics.Debug": "4.0.0",
  3945. "System.Globalization": "4.0.0",
  3946. "System.Linq": "4.0.0",
  3947. "System.Resources.ResourceManager": "4.0.0",
  3948. "System.Runtime": "4.0.0",
  3949. "System.Runtime.Extensions": "4.0.0",
  3950. "System.Threading": "4.0.0"
  3951. },
  3952. "compile": {
  3953. "lib/dotnet/System.Collections.Immutable.dll": {}
  3954. },
  3955. "runtime": {
  3956. "lib/dotnet/System.Collections.Immutable.dll": {}
  3957. }
  3958. },
  3959. "System.Collections.NonGeneric/4.0.0": {
  3960. "type": "package",
  3961. "dependencies": {
  3962. "System.Diagnostics.Debug": "4.0.10",
  3963. "System.Globalization": "4.0.10",
  3964. "System.Resources.ResourceManager": "4.0.0",
  3965. "System.Runtime": "4.0.20",
  3966. "System.Runtime.Extensions": "4.0.10",
  3967. "System.Threading": "4.0.10"
  3968. },
  3969. "compile": {
  3970. "ref/dotnet/System.Collections.NonGeneric.dll": {}
  3971. },
  3972. "runtime": {
  3973. "lib/dotnet/System.Collections.NonGeneric.dll": {}
  3974. }
  3975. },
  3976. "System.Collections.Specialized/4.0.0": {
  3977. "type": "package",
  3978. "dependencies": {
  3979. "System.Collections.NonGeneric": "4.0.0",
  3980. "System.Globalization": "4.0.10",
  3981. "System.Globalization.Extensions": "4.0.0",
  3982. "System.Resources.ResourceManager": "4.0.0",
  3983. "System.Runtime": "4.0.20",
  3984. "System.Runtime.Extensions": "4.0.10",
  3985. "System.Threading": "4.0.10"
  3986. },
  3987. "compile": {
  3988. "ref/dotnet/System.Collections.Specialized.dll": {}
  3989. },
  3990. "runtime": {
  3991. "lib/dotnet/System.Collections.Specialized.dll": {}
  3992. }
  3993. },
  3994. "System.ComponentModel/4.0.0": {
  3995. "type": "package",
  3996. "dependencies": {
  3997. "System.Runtime": "4.0.20"
  3998. },
  3999. "compile": {
  4000. "ref/netcore50/System.ComponentModel.dll": {}
  4001. },
  4002. "runtime": {
  4003. "lib/netcore50/System.ComponentModel.dll": {}
  4004. }
  4005. },
  4006. "System.ComponentModel.Annotations/4.0.10": {
  4007. "type": "package",
  4008. "dependencies": {
  4009. "System.Collections": "4.0.10",
  4010. "System.ComponentModel": "4.0.0",
  4011. "System.Globalization": "4.0.10",
  4012. "System.Linq": "4.0.0",
  4013. "System.Reflection": "4.0.10",
  4014. "System.Reflection.Extensions": "4.0.0",
  4015. "System.Resources.ResourceManager": "4.0.0",
  4016. "System.Runtime": "4.0.20",
  4017. "System.Runtime.Extensions": "4.0.10",
  4018. "System.Text.RegularExpressions": "4.0.10",
  4019. "System.Threading": "4.0.10"
  4020. },
  4021. "compile": {
  4022. "ref/dotnet/System.ComponentModel.Annotations.dll": {}
  4023. },
  4024. "runtime": {
  4025. "lib/dotnet/System.ComponentModel.Annotations.dll": {}
  4026. }
  4027. },
  4028. "System.ComponentModel.EventBasedAsync/4.0.10": {
  4029. "type": "package",
  4030. "dependencies": {
  4031. "System.Resources.ResourceManager": "4.0.0",
  4032. "System.Runtime": "4.0.20",
  4033. "System.Threading": "4.0.10",
  4034. "System.Threading.Tasks": "4.0.10"
  4035. },
  4036. "compile": {
  4037. "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
  4038. },
  4039. "runtime": {
  4040. "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
  4041. }
  4042. },
  4043. "System.Data.Common/4.0.0": {
  4044. "type": "package",
  4045. "dependencies": {
  4046. "System.Collections": "4.0.10",
  4047. "System.Collections.NonGeneric": "4.0.0",
  4048. "System.Globalization": "4.0.10",
  4049. "System.IO": "4.0.0",
  4050. "System.Resources.ResourceManager": "4.0.0",
  4051. "System.Runtime": "4.0.20",
  4052. "System.Runtime.Extensions": "4.0.10",
  4053. "System.Text.RegularExpressions": "4.0.0",
  4054. "System.Threading.Tasks": "4.0.0"
  4055. },
  4056. "compile": {
  4057. "ref/dotnet/System.Data.Common.dll": {}
  4058. },
  4059. "runtime": {
  4060. "lib/dotnet/System.Data.Common.dll": {}
  4061. }
  4062. },
  4063. "System.Diagnostics.Contracts/4.0.0": {
  4064. "type": "package",
  4065. "compile": {
  4066. "ref/netcore50/System.Diagnostics.Contracts.dll": {}
  4067. },
  4068. "runtime": {
  4069. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
  4070. }
  4071. },
  4072. "System.Diagnostics.Debug/4.0.10": {
  4073. "type": "package",
  4074. "dependencies": {
  4075. "System.Runtime": "4.0.0"
  4076. },
  4077. "compile": {
  4078. "ref/dotnet/System.Diagnostics.Debug.dll": {}
  4079. },
  4080. "runtime": {
  4081. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
  4082. }
  4083. },
  4084. "System.Diagnostics.StackTrace/4.0.0": {
  4085. "type": "package",
  4086. "dependencies": {
  4087. "System.Runtime": "4.0.20"
  4088. },
  4089. "compile": {
  4090. "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
  4091. },
  4092. "runtime": {
  4093. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
  4094. }
  4095. },
  4096. "System.Diagnostics.Tools/4.0.0": {
  4097. "type": "package",
  4098. "compile": {
  4099. "ref/netcore50/System.Diagnostics.Tools.dll": {}
  4100. },
  4101. "runtime": {
  4102. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
  4103. }
  4104. },
  4105. "System.Diagnostics.Tracing/4.0.20": {
  4106. "type": "package",
  4107. "dependencies": {
  4108. "System.Collections": "4.0.10",
  4109. "System.Globalization": "4.0.0",
  4110. "System.Reflection": "4.0.10",
  4111. "System.Reflection.Extensions": "4.0.0",
  4112. "System.Resources.ResourceManager": "4.0.0",
  4113. "System.Runtime": "4.0.20",
  4114. "System.Runtime.Extensions": "4.0.10",
  4115. "System.Runtime.InteropServices": "4.0.0",
  4116. "System.Text.Encoding": "4.0.0",
  4117. "System.Threading": "4.0.10"
  4118. },
  4119. "compile": {
  4120. "ref/dotnet/System.Diagnostics.Tracing.dll": {}
  4121. },
  4122. "runtime": {
  4123. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
  4124. }
  4125. },
  4126. "System.Dynamic.Runtime/4.0.10": {
  4127. "type": "package",
  4128. "dependencies": {
  4129. "System.Collections": "4.0.0",
  4130. "System.Diagnostics.Debug": "4.0.0",
  4131. "System.Globalization": "4.0.0",
  4132. "System.Linq": "4.0.0",
  4133. "System.Linq.Expressions": "4.0.10",
  4134. "System.ObjectModel": "4.0.0",
  4135. "System.Reflection": "4.0.0",
  4136. "System.Reflection.TypeExtensions": "4.0.0",
  4137. "System.Resources.ResourceManager": "4.0.0",
  4138. "System.Runtime": "4.0.20",
  4139. "System.Runtime.Extensions": "4.0.0",
  4140. "System.Threading": "4.0.0"
  4141. },
  4142. "compile": {
  4143. "ref/dotnet/System.Dynamic.Runtime.dll": {}
  4144. },
  4145. "runtime": {
  4146. "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
  4147. }
  4148. },
  4149. "System.Globalization/4.0.10": {
  4150. "type": "package",
  4151. "dependencies": {
  4152. "System.Runtime": "4.0.0"
  4153. },
  4154. "compile": {
  4155. "ref/dotnet/System.Globalization.dll": {}
  4156. },
  4157. "runtime": {
  4158. "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
  4159. }
  4160. },
  4161. "System.Globalization.Calendars/4.0.0": {
  4162. "type": "package",
  4163. "dependencies": {
  4164. "System.Globalization": "4.0.0",
  4165. "System.Runtime": "4.0.0"
  4166. },
  4167. "compile": {
  4168. "ref/dotnet/System.Globalization.Calendars.dll": {}
  4169. },
  4170. "runtime": {
  4171. "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
  4172. }
  4173. },
  4174. "System.Globalization.Extensions/4.0.0": {
  4175. "type": "package",
  4176. "dependencies": {
  4177. "System.Globalization": "4.0.10",
  4178. "System.Resources.ResourceManager": "4.0.0",
  4179. "System.Runtime": "4.0.20",
  4180. "System.Runtime.Extensions": "4.0.10",
  4181. "System.Runtime.InteropServices": "4.0.20"
  4182. },
  4183. "compile": {
  4184. "ref/dotnet/System.Globalization.Extensions.dll": {}
  4185. },
  4186. "runtime": {
  4187. "lib/dotnet/System.Globalization.Extensions.dll": {}
  4188. }
  4189. },
  4190. "System.IO/4.0.10": {
  4191. "type": "package",
  4192. "dependencies": {
  4193. "System.Globalization": "4.0.0",
  4194. "System.Runtime": "4.0.20",
  4195. "System.Text.Encoding": "4.0.10",
  4196. "System.Text.Encoding.Extensions": "4.0.0",
  4197. "System.Threading": "4.0.0",
  4198. "System.Threading.Tasks": "4.0.0"
  4199. },
  4200. "compile": {
  4201. "ref/dotnet/System.IO.dll": {}
  4202. },
  4203. "runtime": {
  4204. "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
  4205. }
  4206. },
  4207. "System.IO.Compression/4.0.0": {
  4208. "type": "package",
  4209. "dependencies": {
  4210. "System.Collections": "4.0.0",
  4211. "System.IO": "4.0.0",
  4212. "System.IO.Compression.clrcompression-x86": "4.0.0",
  4213. "System.Resources.ResourceManager": "4.0.0",
  4214. "System.Runtime": "4.0.0",
  4215. "System.Runtime.Extensions": "4.0.0",
  4216. "System.Runtime.InteropServices": "4.0.0",
  4217. "System.Text.Encoding": "4.0.0",
  4218. "System.Threading": "4.0.0",
  4219. "System.Threading.Tasks": "4.0.0"
  4220. },
  4221. "compile": {
  4222. "ref/netcore50/System.IO.Compression.dll": {}
  4223. },
  4224. "runtime": {
  4225. "lib/netcore50/System.IO.Compression.dll": {}
  4226. }
  4227. },
  4228. "System.IO.Compression.clrcompression-x86/4.0.0": {
  4229. "type": "package",
  4230. "native": {
  4231. "runtimes/win10-x86/native/ClrCompression.dll": {}
  4232. }
  4233. },
  4234. "System.IO.Compression.ZipFile/4.0.0": {
  4235. "type": "package",
  4236. "dependencies": {
  4237. "System.IO": "4.0.10",
  4238. "System.IO.Compression": "4.0.0",
  4239. "System.IO.FileSystem": "4.0.0",
  4240. "System.IO.FileSystem.Primitives": "4.0.0",
  4241. "System.Resources.ResourceManager": "4.0.0",
  4242. "System.Runtime": "4.0.20",
  4243. "System.Runtime.Extensions": "4.0.10",
  4244. "System.Text.Encoding": "4.0.10"
  4245. },
  4246. "compile": {
  4247. "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
  4248. },
  4249. "runtime": {
  4250. "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
  4251. }
  4252. },
  4253. "System.IO.FileSystem/4.0.0": {
  4254. "type": "package",
  4255. "dependencies": {
  4256. "System.Collections": "4.0.10",
  4257. "System.Diagnostics.Debug": "4.0.10",
  4258. "System.IO": "4.0.10",
  4259. "System.IO.FileSystem.Primitives": "4.0.0",
  4260. "System.Resources.ResourceManager": "4.0.0",
  4261. "System.Runtime": "4.0.20",
  4262. "System.Runtime.Extensions": "4.0.10",
  4263. "System.Runtime.Handles": "4.0.0",
  4264. "System.Runtime.InteropServices": "4.0.20",
  4265. "System.Runtime.WindowsRuntime": "4.0.0",
  4266. "System.Text.Encoding": "4.0.10",
  4267. "System.Text.Encoding.Extensions": "4.0.10",
  4268. "System.Threading": "4.0.10",
  4269. "System.Threading.Overlapped": "4.0.0",
  4270. "System.Threading.Tasks": "4.0.10"
  4271. },
  4272. "compile": {
  4273. "ref/dotnet/System.IO.FileSystem.dll": {}
  4274. },
  4275. "runtime": {
  4276. "lib/netcore50/System.IO.FileSystem.dll": {}
  4277. }
  4278. },
  4279. "System.IO.FileSystem.Primitives/4.0.0": {
  4280. "type": "package",
  4281. "dependencies": {
  4282. "System.Runtime": "4.0.20"
  4283. },
  4284. "compile": {
  4285. "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
  4286. },
  4287. "runtime": {
  4288. "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
  4289. }
  4290. },
  4291. "System.IO.IsolatedStorage/4.0.0": {
  4292. "type": "package",
  4293. "dependencies": {
  4294. "System.IO": "4.0.10",
  4295. "System.IO.FileSystem": "4.0.0",
  4296. "System.IO.FileSystem.Primitives": "4.0.0",
  4297. "System.Linq": "4.0.0",
  4298. "System.Resources.ResourceManager": "4.0.0",
  4299. "System.Runtime": "4.0.20",
  4300. "System.Runtime.Extensions": "4.0.10",
  4301. "System.Threading": "4.0.10",
  4302. "System.Threading.Tasks": "4.0.10"
  4303. },
  4304. "compile": {
  4305. "ref/dotnet/System.IO.IsolatedStorage.dll": {}
  4306. },
  4307. "runtime": {
  4308. "lib/netcore50/System.IO.IsolatedStorage.dll": {}
  4309. }
  4310. },
  4311. "System.IO.UnmanagedMemoryStream/4.0.0": {
  4312. "type": "package",
  4313. "dependencies": {
  4314. "System.IO": "4.0.10",
  4315. "System.IO.FileSystem.Primitives": "4.0.0",
  4316. "System.Resources.ResourceManager": "4.0.0",
  4317. "System.Runtime": "4.0.20",
  4318. "System.Runtime.InteropServices": "4.0.20",
  4319. "System.Threading": "4.0.10",
  4320. "System.Threading.Tasks": "4.0.10"
  4321. },
  4322. "compile": {
  4323. "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
  4324. },
  4325. "runtime": {
  4326. "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
  4327. }
  4328. },
  4329. "System.Linq/4.0.0": {
  4330. "type": "package",
  4331. "dependencies": {
  4332. "System.Collections": "4.0.10",
  4333. "System.Diagnostics.Debug": "4.0.10",
  4334. "System.Resources.ResourceManager": "4.0.0",
  4335. "System.Runtime": "4.0.20",
  4336. "System.Runtime.Extensions": "4.0.10"
  4337. },
  4338. "compile": {
  4339. "ref/netcore50/System.Linq.dll": {}
  4340. },
  4341. "runtime": {
  4342. "lib/netcore50/System.Linq.dll": {}
  4343. }
  4344. },
  4345. "System.Linq.Expressions/4.0.10": {
  4346. "type": "package",
  4347. "dependencies": {
  4348. "System.Collections": "4.0.0",
  4349. "System.Diagnostics.Debug": "4.0.0",
  4350. "System.Globalization": "4.0.0",
  4351. "System.IO": "4.0.0",
  4352. "System.Linq": "4.0.0",
  4353. "System.Reflection": "4.0.0",
  4354. "System.Reflection.Extensions": "4.0.0",
  4355. "System.Reflection.Primitives": "4.0.0",
  4356. "System.Reflection.TypeExtensions": "4.0.0",
  4357. "System.Resources.ResourceManager": "4.0.0",
  4358. "System.Runtime": "4.0.20",
  4359. "System.Runtime.Extensions": "4.0.0",
  4360. "System.Threading": "4.0.0"
  4361. },
  4362. "compile": {
  4363. "ref/dotnet/System.Linq.Expressions.dll": {}
  4364. },
  4365. "runtime": {
  4366. "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
  4367. }
  4368. },
  4369. "System.Linq.Parallel/4.0.0": {
  4370. "type": "package",
  4371. "dependencies": {
  4372. "System.Collections": "4.0.10",
  4373. "System.Collections.Concurrent": "4.0.10",
  4374. "System.Diagnostics.Debug": "4.0.10",
  4375. "System.Diagnostics.Tracing": "4.0.20",
  4376. "System.Linq": "4.0.0",
  4377. "System.Resources.ResourceManager": "4.0.0",
  4378. "System.Runtime": "4.0.20",
  4379. "System.Runtime.Extensions": "4.0.10",
  4380. "System.Threading": "4.0.10",
  4381. "System.Threading.Tasks": "4.0.10"
  4382. },
  4383. "compile": {
  4384. "ref/netcore50/System.Linq.Parallel.dll": {}
  4385. },
  4386. "runtime": {
  4387. "lib/netcore50/System.Linq.Parallel.dll": {}
  4388. }
  4389. },
  4390. "System.Linq.Queryable/4.0.0": {
  4391. "type": "package",
  4392. "dependencies": {
  4393. "System.Collections": "4.0.10",
  4394. "System.Linq": "4.0.0",
  4395. "System.Linq.Expressions": "4.0.10",
  4396. "System.Reflection": "4.0.10",
  4397. "System.Reflection.Extensions": "4.0.0",
  4398. "System.Resources.ResourceManager": "4.0.0",
  4399. "System.Runtime": "4.0.20"
  4400. },
  4401. "compile": {
  4402. "ref/netcore50/System.Linq.Queryable.dll": {}
  4403. },
  4404. "runtime": {
  4405. "lib/netcore50/System.Linq.Queryable.dll": {}
  4406. }
  4407. },
  4408. "System.Net.Http/4.0.0": {
  4409. "type": "package",
  4410. "dependencies": {
  4411. "System.Collections": "4.0.10",
  4412. "System.Diagnostics.Debug": "4.0.10",
  4413. "System.Globalization": "4.0.10",
  4414. "System.IO": "4.0.10",
  4415. "System.Net.Primitives": "4.0.0",
  4416. "System.Resources.ResourceManager": "4.0.0",
  4417. "System.Runtime": "4.0.20",
  4418. "System.Runtime.Extensions": "4.0.10",
  4419. "System.Runtime.InteropServices": "4.0.20",
  4420. "System.Runtime.WindowsRuntime": "4.0.10",
  4421. "System.Text.Encoding": "4.0.10",
  4422. "System.Text.Encoding.Extensions": "4.0.10",
  4423. "System.Threading": "4.0.10",
  4424. "System.Threading.Tasks": "4.0.10"
  4425. },
  4426. "compile": {
  4427. "ref/netcore50/System.Net.Http.dll": {}
  4428. },
  4429. "runtime": {
  4430. "lib/netcore50/System.Net.Http.dll": {}
  4431. }
  4432. },
  4433. "System.Net.Http.Rtc/4.0.0": {
  4434. "type": "package",
  4435. "dependencies": {
  4436. "System.Net.Http": "4.0.0",
  4437. "System.Runtime": "4.0.20"
  4438. },
  4439. "compile": {
  4440. "ref/netcore50/System.Net.Http.Rtc.dll": {}
  4441. },
  4442. "runtime": {
  4443. "lib/netcore50/System.Net.Http.Rtc.dll": {}
  4444. }
  4445. },
  4446. "System.Net.NetworkInformation/4.0.0": {
  4447. "type": "package",
  4448. "dependencies": {
  4449. "System.Runtime": "4.0.0",
  4450. "System.Runtime.InteropServices.WindowsRuntime": "4.0.0",
  4451. "System.Threading": "4.0.0"
  4452. },
  4453. "compile": {
  4454. "ref/netcore50/System.Net.NetworkInformation.dll": {}
  4455. },
  4456. "runtime": {
  4457. "lib/netcore50/System.Net.NetworkInformation.dll": {}
  4458. }
  4459. },
  4460. "System.Net.Primitives/4.0.10": {
  4461. "type": "package",
  4462. "dependencies": {
  4463. "System.Private.Networking": "4.0.0",
  4464. "System.Runtime": "4.0.20"
  4465. },
  4466. "compile": {
  4467. "ref/dotnet/System.Net.Primitives.dll": {}
  4468. },
  4469. "runtime": {
  4470. "lib/netcore50/System.Net.Primitives.dll": {}
  4471. }
  4472. },
  4473. "System.Net.Requests/4.0.10": {
  4474. "type": "package",
  4475. "dependencies": {
  4476. "System.Collections": "4.0.10",
  4477. "System.Diagnostics.Debug": "4.0.10",
  4478. "System.IO": "4.0.10",
  4479. "System.Net.Http": "4.0.0",
  4480. "System.Net.Primitives": "4.0.10",
  4481. "System.Net.WebHeaderCollection": "4.0.0",
  4482. "System.Resources.ResourceManager": "4.0.0",
  4483. "System.Runtime": "4.0.20",
  4484. "System.Threading": "4.0.10",
  4485. "System.Threading.Tasks": "4.0.10"
  4486. },
  4487. "compile": {
  4488. "ref/dotnet/System.Net.Requests.dll": {}
  4489. },
  4490. "runtime": {
  4491. "lib/dotnet/System.Net.Requests.dll": {}
  4492. }
  4493. },
  4494. "System.Net.Sockets/4.0.0": {
  4495. "type": "package",
  4496. "dependencies": {
  4497. "System.Private.Networking": "4.0.0",
  4498. "System.Runtime": "4.0.20"
  4499. },
  4500. "compile": {
  4501. "ref/dotnet/System.Net.Sockets.dll": {}
  4502. },
  4503. "runtime": {
  4504. "lib/netcore50/System.Net.Sockets.dll": {}
  4505. }
  4506. },
  4507. "System.Net.WebHeaderCollection/4.0.0": {
  4508. "type": "package",
  4509. "dependencies": {
  4510. "System.Collections.NonGeneric": "4.0.0",
  4511. "System.Collections.Specialized": "4.0.0",
  4512. "System.Resources.ResourceManager": "4.0.0",
  4513. "System.Runtime": "4.0.20"
  4514. },
  4515. "compile": {
  4516. "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
  4517. },
  4518. "runtime": {
  4519. "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
  4520. }
  4521. },
  4522. "System.Numerics.Vectors/4.1.0": {
  4523. "type": "package",
  4524. "dependencies": {
  4525. "System.Globalization": "4.0.10",
  4526. "System.Resources.ResourceManager": "4.0.0",
  4527. "System.Runtime": "4.0.20",
  4528. "System.Runtime.Extensions": "4.0.10"
  4529. },
  4530. "compile": {
  4531. "ref/dotnet/System.Numerics.Vectors.dll": {}
  4532. },
  4533. "runtime": {
  4534. "lib/dotnet/System.Numerics.Vectors.dll": {}
  4535. }
  4536. },
  4537. "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
  4538. "type": "package",
  4539. "dependencies": {
  4540. "System.Numerics.Vectors": "4.1.0",
  4541. "System.Runtime": "4.0.20",
  4542. "System.Runtime.WindowsRuntime": "4.0.0"
  4543. },
  4544. "compile": {
  4545. "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
  4546. },
  4547. "runtime": {
  4548. "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
  4549. }
  4550. },
  4551. "System.ObjectModel/4.0.10": {
  4552. "type": "package",
  4553. "dependencies": {
  4554. "System.Collections": "4.0.10",
  4555. "System.Diagnostics.Debug": "4.0.10",
  4556. "System.Resources.ResourceManager": "4.0.0",
  4557. "System.Runtime": "4.0.20",
  4558. "System.Threading": "4.0.10"
  4559. },
  4560. "compile": {
  4561. "ref/dotnet/System.ObjectModel.dll": {}
  4562. },
  4563. "runtime": {
  4564. "lib/dotnet/System.ObjectModel.dll": {}
  4565. }
  4566. },
  4567. "System.Private.DataContractSerialization/4.1.0": {
  4568. "type": "package",
  4569. "dependencies": {
  4570. "runtime.aot.System.Private.DataContractSerialization": "4.1.0"
  4571. },
  4572. "compile": {
  4573. "ref/netcore50/_._": {}
  4574. }
  4575. },
  4576. "System.Private.Networking/4.0.0": {
  4577. "type": "package",
  4578. "dependencies": {
  4579. "Microsoft.Win32.Primitives": "4.0.0",
  4580. "System.Collections": "4.0.10",
  4581. "System.Collections.NonGeneric": "4.0.0",
  4582. "System.Diagnostics.Debug": "4.0.10",
  4583. "System.Diagnostics.Tracing": "4.0.20",
  4584. "System.Globalization": "4.0.10",
  4585. "System.IO": "4.0.10",
  4586. "System.IO.FileSystem": "4.0.0",
  4587. "System.IO.FileSystem.Primitives": "4.0.0",
  4588. "System.Resources.ResourceManager": "4.0.0",
  4589. "System.Runtime": "4.0.20",
  4590. "System.Runtime.Extensions": "4.0.10",
  4591. "System.Runtime.Handles": "4.0.0",
  4592. "System.Runtime.InteropServices": "4.0.20",
  4593. "System.Threading": "4.0.10",
  4594. "System.Threading.Overlapped": "4.0.0",
  4595. "System.Threading.Tasks": "4.0.10"
  4596. },
  4597. "compile": {
  4598. "ref/netcore50/_._": {}
  4599. },
  4600. "runtime": {
  4601. "lib/netcore50/System.Private.Networking.dll": {}
  4602. }
  4603. },
  4604. "System.Private.ServiceModel/4.0.0": {
  4605. "type": "package",
  4606. "dependencies": {
  4607. "System.Collections": "4.0.10",
  4608. "System.Collections.Concurrent": "4.0.10",
  4609. "System.Collections.NonGeneric": "4.0.0",
  4610. "System.Collections.Specialized": "4.0.0",
  4611. "System.ComponentModel.EventBasedAsync": "4.0.10",
  4612. "System.Diagnostics.Contracts": "4.0.0",
  4613. "System.Diagnostics.Debug": "4.0.10",
  4614. "System.Globalization": "4.0.10",
  4615. "System.IO": "4.0.10",
  4616. "System.IO.Compression": "4.0.0",
  4617. "System.Linq": "4.0.0",
  4618. "System.Linq.Expressions": "4.0.10",
  4619. "System.Linq.Queryable": "4.0.0",
  4620. "System.Net.Http": "4.0.0",
  4621. "System.Net.Primitives": "4.0.10",
  4622. "System.Net.WebHeaderCollection": "4.0.0",
  4623. "System.ObjectModel": "4.0.10",
  4624. "System.Reflection": "4.0.10",
  4625. "System.Reflection.DispatchProxy": "4.0.0",
  4626. "System.Reflection.Extensions": "4.0.0",
  4627. "System.Reflection.Primitives": "4.0.0",
  4628. "System.Reflection.TypeExtensions": "4.0.0",
  4629. "System.Resources.ResourceManager": "4.0.0",
  4630. "System.Runtime": "4.0.20",
  4631. "System.Runtime.Extensions": "4.0.10",
  4632. "System.Runtime.InteropServices": "4.0.20",
  4633. "System.Runtime.Serialization.Primitives": "4.0.10",
  4634. "System.Runtime.Serialization.Xml": "4.0.10",
  4635. "System.Runtime.WindowsRuntime": "4.0.10",
  4636. "System.Security.Claims": "4.0.0",
  4637. "System.Security.Principal": "4.0.0",
  4638. "System.Text.Encoding": "4.0.10",
  4639. "System.Threading": "4.0.10",
  4640. "System.Threading.Tasks": "4.0.10",
  4641. "System.Threading.Timer": "4.0.0",
  4642. "System.Xml.ReaderWriter": "4.0.10",
  4643. "System.Xml.XmlDocument": "4.0.0",
  4644. "System.Xml.XmlSerializer": "4.0.10"
  4645. },
  4646. "compile": {
  4647. "ref/netcore50/_._": {}
  4648. },
  4649. "runtime": {
  4650. "lib/netcore50/System.Private.ServiceModel.dll": {}
  4651. }
  4652. },
  4653. "System.Private.Uri/4.0.0": {
  4654. "type": "package",
  4655. "compile": {
  4656. "ref/netcore50/_._": {}
  4657. },
  4658. "runtime": {
  4659. "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
  4660. }
  4661. },
  4662. "System.Reflection/4.0.10": {
  4663. "type": "package",
  4664. "dependencies": {
  4665. "System.IO": "4.0.0",
  4666. "System.Reflection.Primitives": "4.0.0",
  4667. "System.Runtime": "4.0.20"
  4668. },
  4669. "compile": {
  4670. "ref/dotnet/System.Reflection.dll": {}
  4671. },
  4672. "runtime": {
  4673. "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
  4674. }
  4675. },
  4676. "System.Reflection.Context/4.0.0": {
  4677. "type": "package",
  4678. "dependencies": {
  4679. "System.Reflection": "4.0.10",
  4680. "System.Resources.ResourceManager": "4.0.0",
  4681. "System.Runtime": "4.0.20"
  4682. },
  4683. "compile": {
  4684. "ref/netcore50/System.Reflection.Context.dll": {}
  4685. },
  4686. "runtime": {
  4687. "lib/netcore50/System.Reflection.Context.dll": {}
  4688. }
  4689. },
  4690. "System.Reflection.DispatchProxy/4.0.0": {
  4691. "type": "package",
  4692. "dependencies": {
  4693. "System.Collections": "4.0.10",
  4694. "System.Linq": "4.0.0",
  4695. "System.Reflection": "4.0.10",
  4696. "System.Reflection.Extensions": "4.0.0",
  4697. "System.Reflection.Primitives": "4.0.0",
  4698. "System.Resources.ResourceManager": "4.0.0",
  4699. "System.Runtime": "4.0.20",
  4700. "System.Threading": "4.0.10"
  4701. },
  4702. "compile": {
  4703. "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
  4704. },
  4705. "runtime": {
  4706. "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
  4707. }
  4708. },
  4709. "System.Reflection.Emit/4.0.0": {
  4710. "type": "package",
  4711. "dependencies": {
  4712. "System.IO": "4.0.0",
  4713. "System.Reflection": "4.0.0",
  4714. "System.Reflection.Emit.ILGeneration": "4.0.0",
  4715. "System.Reflection.Primitives": "4.0.0",
  4716. "System.Runtime": "4.0.0"
  4717. },
  4718. "compile": {
  4719. "ref/dotnet/System.Reflection.Emit.dll": {}
  4720. },
  4721. "runtime": {
  4722. "lib/netcore50/System.Reflection.Emit.dll": {}
  4723. }
  4724. },
  4725. "System.Reflection.Emit.ILGeneration/4.0.0": {
  4726. "type": "package",
  4727. "dependencies": {
  4728. "System.Reflection": "4.0.0",
  4729. "System.Reflection.Primitives": "4.0.0",
  4730. "System.Runtime": "4.0.0"
  4731. },
  4732. "compile": {
  4733. "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
  4734. },
  4735. "runtime": {
  4736. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
  4737. }
  4738. },
  4739. "System.Reflection.Extensions/4.0.0": {
  4740. "type": "package",
  4741. "dependencies": {
  4742. "System.Diagnostics.Debug": "4.0.10",
  4743. "System.Reflection": "4.0.10",
  4744. "System.Reflection.Primitives": "4.0.0",
  4745. "System.Reflection.TypeExtensions": "4.0.0",
  4746. "System.Resources.ResourceManager": "4.0.0",
  4747. "System.Runtime": "4.0.20",
  4748. "System.Runtime.Extensions": "4.0.10"
  4749. },
  4750. "compile": {
  4751. "ref/netcore50/System.Reflection.Extensions.dll": {}
  4752. },
  4753. "runtime": {
  4754. "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
  4755. }
  4756. },
  4757. "System.Reflection.Metadata/1.0.22": {
  4758. "type": "package",
  4759. "dependencies": {
  4760. "System.Collections": "4.0.0",
  4761. "System.Collections.Immutable": "1.1.37",
  4762. "System.Diagnostics.Debug": "4.0.0",
  4763. "System.IO": "4.0.0",
  4764. "System.Reflection": "4.0.0",
  4765. "System.Reflection.Extensions": "4.0.0",
  4766. "System.Reflection.Primitives": "4.0.0",
  4767. "System.Resources.ResourceManager": "4.0.0",
  4768. "System.Runtime": "4.0.0",
  4769. "System.Runtime.Extensions": "4.0.0",
  4770. "System.Runtime.InteropServices": "4.0.0",
  4771. "System.Text.Encoding": "4.0.0",
  4772. "System.Text.Encoding.Extensions": "4.0.0",
  4773. "System.Threading": "4.0.0"
  4774. },
  4775. "compile": {
  4776. "lib/dotnet/System.Reflection.Metadata.dll": {}
  4777. },
  4778. "runtime": {
  4779. "lib/dotnet/System.Reflection.Metadata.dll": {}
  4780. }
  4781. },
  4782. "System.Reflection.Primitives/4.0.0": {
  4783. "type": "package",
  4784. "dependencies": {
  4785. "System.Runtime": "4.0.0",
  4786. "System.Threading": "4.0.0"
  4787. },
  4788. "compile": {
  4789. "ref/netcore50/System.Reflection.Primitives.dll": {}
  4790. },
  4791. "runtime": {
  4792. "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
  4793. }
  4794. },
  4795. "System.Reflection.TypeExtensions/4.0.0": {
  4796. "type": "package",
  4797. "dependencies": {
  4798. "System.Diagnostics.Contracts": "4.0.0",
  4799. "System.Diagnostics.Debug": "4.0.10",
  4800. "System.Linq": "4.0.0",
  4801. "System.Reflection": "4.0.10",
  4802. "System.Reflection.Primitives": "4.0.0",
  4803. "System.Resources.ResourceManager": "4.0.0",
  4804. "System.Runtime": "4.0.20",
  4805. "System.Runtime.Extensions": "4.0.10"
  4806. },
  4807. "compile": {
  4808. "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
  4809. },
  4810. "runtime": {
  4811. "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
  4812. }
  4813. },
  4814. "System.Resources.ResourceManager/4.0.0": {
  4815. "type": "package",
  4816. "dependencies": {
  4817. "System.Globalization": "4.0.0",
  4818. "System.Reflection": "4.0.10",
  4819. "System.Runtime": "4.0.20"
  4820. },
  4821. "compile": {
  4822. "ref/netcore50/System.Resources.ResourceManager.dll": {}
  4823. },
  4824. "runtime": {
  4825. "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
  4826. }
  4827. },
  4828. "System.Runtime/4.0.20": {
  4829. "type": "package",
  4830. "dependencies": {
  4831. "System.Private.Uri": "4.0.0"
  4832. },
  4833. "compile": {
  4834. "ref/dotnet/System.Runtime.dll": {}
  4835. },
  4836. "runtime": {
  4837. "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
  4838. }
  4839. },
  4840. "System.Runtime.Extensions/4.0.10": {
  4841. "type": "package",
  4842. "dependencies": {
  4843. "System.Runtime": "4.0.20"
  4844. },
  4845. "compile": {
  4846. "ref/dotnet/System.Runtime.Extensions.dll": {}
  4847. },
  4848. "runtime": {
  4849. "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
  4850. }
  4851. },
  4852. "System.Runtime.Handles/4.0.0": {
  4853. "type": "package",
  4854. "dependencies": {
  4855. "System.Runtime": "4.0.0"
  4856. },
  4857. "compile": {
  4858. "ref/dotnet/System.Runtime.Handles.dll": {}
  4859. },
  4860. "runtime": {
  4861. "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
  4862. }
  4863. },
  4864. "System.Runtime.InteropServices/4.0.20": {
  4865. "type": "package",
  4866. "dependencies": {
  4867. "System.Reflection": "4.0.0",
  4868. "System.Reflection.Primitives": "4.0.0",
  4869. "System.Runtime": "4.0.0",
  4870. "System.Runtime.Handles": "4.0.0"
  4871. },
  4872. "compile": {
  4873. "ref/dotnet/System.Runtime.InteropServices.dll": {}
  4874. },
  4875. "runtime": {
  4876. "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
  4877. }
  4878. },
  4879. "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
  4880. "type": "package",
  4881. "compile": {
  4882. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  4883. },
  4884. "runtime": {
  4885. "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  4886. }
  4887. },
  4888. "System.Runtime.Numerics/4.0.0": {
  4889. "type": "package",
  4890. "dependencies": {
  4891. "System.Globalization": "4.0.10",
  4892. "System.Resources.ResourceManager": "4.0.0",
  4893. "System.Runtime": "4.0.20",
  4894. "System.Runtime.Extensions": "4.0.10"
  4895. },
  4896. "compile": {
  4897. "ref/netcore50/System.Runtime.Numerics.dll": {}
  4898. },
  4899. "runtime": {
  4900. "lib/netcore50/System.Runtime.Numerics.dll": {}
  4901. }
  4902. },
  4903. "System.Runtime.Serialization.Json/4.0.1": {
  4904. "type": "package",
  4905. "dependencies": {
  4906. "System.IO": "4.0.0",
  4907. "System.Private.DataContractSerialization": "4.1.0",
  4908. "System.Runtime": "4.0.0"
  4909. },
  4910. "compile": {
  4911. "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
  4912. },
  4913. "runtime": {
  4914. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
  4915. }
  4916. },
  4917. "System.Runtime.Serialization.Primitives/4.1.0": {
  4918. "type": "package",
  4919. "dependencies": {
  4920. "System.Resources.ResourceManager": "4.0.0",
  4921. "System.Runtime": "4.0.20"
  4922. },
  4923. "compile": {
  4924. "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
  4925. },
  4926. "runtime": {
  4927. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
  4928. }
  4929. },
  4930. "System.Runtime.Serialization.Xml/4.1.0": {
  4931. "type": "package",
  4932. "dependencies": {
  4933. "System.IO": "4.0.0",
  4934. "System.Private.DataContractSerialization": "4.1.0",
  4935. "System.Runtime": "4.0.0",
  4936. "System.Runtime.Serialization.Primitives": "4.1.0",
  4937. "System.Text.Encoding": "4.0.0",
  4938. "System.Xml.ReaderWriter": "4.0.0"
  4939. },
  4940. "compile": {
  4941. "ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
  4942. },
  4943. "runtime": {
  4944. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
  4945. }
  4946. },
  4947. "System.Runtime.WindowsRuntime/4.0.10": {
  4948. "type": "package",
  4949. "dependencies": {
  4950. "System.Diagnostics.Debug": "4.0.10",
  4951. "System.Globalization": "4.0.0",
  4952. "System.IO": "4.0.10",
  4953. "System.ObjectModel": "4.0.0",
  4954. "System.Resources.ResourceManager": "4.0.0",
  4955. "System.Runtime": "4.0.20",
  4956. "System.Runtime.Extensions": "4.0.0",
  4957. "System.Runtime.InteropServices": "4.0.20",
  4958. "System.Threading": "4.0.10",
  4959. "System.Threading.Tasks": "4.0.10"
  4960. },
  4961. "compile": {
  4962. "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
  4963. },
  4964. "runtime": {
  4965. "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
  4966. }
  4967. },
  4968. "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
  4969. "type": "package",
  4970. "dependencies": {
  4971. "System.Globalization": "4.0.0",
  4972. "System.Resources.ResourceManager": "4.0.0",
  4973. "System.Runtime": "4.0.20",
  4974. "System.Runtime.Extensions": "4.0.0",
  4975. "System.Runtime.WindowsRuntime": "4.0.0"
  4976. },
  4977. "compile": {
  4978. "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
  4979. },
  4980. "runtime": {
  4981. "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
  4982. }
  4983. },
  4984. "System.Security.Claims/4.0.0": {
  4985. "type": "package",
  4986. "dependencies": {
  4987. "System.Collections": "4.0.0",
  4988. "System.Diagnostics.Debug": "4.0.0",
  4989. "System.Globalization": "4.0.0",
  4990. "System.IO": "4.0.0",
  4991. "System.Resources.ResourceManager": "4.0.0",
  4992. "System.Runtime": "4.0.20",
  4993. "System.Runtime.Extensions": "4.0.0",
  4994. "System.Security.Principal": "4.0.0"
  4995. },
  4996. "compile": {
  4997. "ref/dotnet/System.Security.Claims.dll": {}
  4998. },
  4999. "runtime": {
  5000. "lib/dotnet/System.Security.Claims.dll": {}
  5001. }
  5002. },
  5003. "System.Security.Principal/4.0.0": {
  5004. "type": "package",
  5005. "dependencies": {
  5006. "System.Runtime": "4.0.0"
  5007. },
  5008. "compile": {
  5009. "ref/netcore50/System.Security.Principal.dll": {}
  5010. },
  5011. "runtime": {
  5012. "lib/netcore50/System.Security.Principal.dll": {}
  5013. }
  5014. },
  5015. "System.ServiceModel.Duplex/4.0.0": {
  5016. "type": "package",
  5017. "dependencies": {
  5018. "System.Private.ServiceModel": "4.0.0",
  5019. "System.Runtime": "4.0.20"
  5020. },
  5021. "compile": {
  5022. "ref/netcore50/System.ServiceModel.Duplex.dll": {}
  5023. },
  5024. "runtime": {
  5025. "lib/netcore50/System.ServiceModel.Duplex.dll": {}
  5026. }
  5027. },
  5028. "System.ServiceModel.Http/4.0.10": {
  5029. "type": "package",
  5030. "dependencies": {
  5031. "System.Private.ServiceModel": "4.0.0",
  5032. "System.Runtime": "4.0.20"
  5033. },
  5034. "compile": {
  5035. "ref/dotnet/System.ServiceModel.Http.dll": {}
  5036. },
  5037. "runtime": {
  5038. "lib/netcore50/System.ServiceModel.Http.dll": {}
  5039. }
  5040. },
  5041. "System.ServiceModel.NetTcp/4.0.0": {
  5042. "type": "package",
  5043. "dependencies": {
  5044. "System.Private.ServiceModel": "4.0.0",
  5045. "System.Runtime": "4.0.20"
  5046. },
  5047. "compile": {
  5048. "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
  5049. },
  5050. "runtime": {
  5051. "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
  5052. }
  5053. },
  5054. "System.ServiceModel.Primitives/4.0.0": {
  5055. "type": "package",
  5056. "dependencies": {
  5057. "System.Private.ServiceModel": "4.0.0",
  5058. "System.Runtime": "4.0.20"
  5059. },
  5060. "compile": {
  5061. "ref/netcore50/System.ServiceModel.Primitives.dll": {}
  5062. },
  5063. "runtime": {
  5064. "lib/netcore50/System.ServiceModel.Primitives.dll": {}
  5065. }
  5066. },
  5067. "System.ServiceModel.Security/4.0.0": {
  5068. "type": "package",
  5069. "dependencies": {
  5070. "System.Private.ServiceModel": "4.0.0",
  5071. "System.Runtime": "4.0.20"
  5072. },
  5073. "compile": {
  5074. "ref/netcore50/System.ServiceModel.Security.dll": {}
  5075. },
  5076. "runtime": {
  5077. "lib/netcore50/System.ServiceModel.Security.dll": {}
  5078. }
  5079. },
  5080. "System.Text.Encoding/4.0.10": {
  5081. "type": "package",
  5082. "dependencies": {
  5083. "System.Runtime": "4.0.0"
  5084. },
  5085. "compile": {
  5086. "ref/dotnet/System.Text.Encoding.dll": {}
  5087. },
  5088. "runtime": {
  5089. "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
  5090. }
  5091. },
  5092. "System.Text.Encoding.CodePages/4.0.0": {
  5093. "type": "package",
  5094. "dependencies": {
  5095. "System.Collections": "4.0.10",
  5096. "System.Globalization": "4.0.10",
  5097. "System.IO": "4.0.10",
  5098. "System.Reflection": "4.0.10",
  5099. "System.Resources.ResourceManager": "4.0.0",
  5100. "System.Runtime": "4.0.20",
  5101. "System.Runtime.Extensions": "4.0.10",
  5102. "System.Runtime.Handles": "4.0.0",
  5103. "System.Runtime.InteropServices": "4.0.20",
  5104. "System.Text.Encoding": "4.0.10",
  5105. "System.Threading": "4.0.10"
  5106. },
  5107. "compile": {
  5108. "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
  5109. },
  5110. "runtime": {
  5111. "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
  5112. }
  5113. },
  5114. "System.Text.Encoding.Extensions/4.0.10": {
  5115. "type": "package",
  5116. "dependencies": {
  5117. "System.Runtime": "4.0.0",
  5118. "System.Text.Encoding": "4.0.10"
  5119. },
  5120. "compile": {
  5121. "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
  5122. },
  5123. "runtime": {
  5124. "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
  5125. }
  5126. },
  5127. "System.Text.RegularExpressions/4.0.10": {
  5128. "type": "package",
  5129. "dependencies": {
  5130. "System.Collections": "4.0.10",
  5131. "System.Globalization": "4.0.10",
  5132. "System.Resources.ResourceManager": "4.0.0",
  5133. "System.Runtime": "4.0.20",
  5134. "System.Runtime.Extensions": "4.0.10",
  5135. "System.Threading": "4.0.10"
  5136. },
  5137. "compile": {
  5138. "ref/dotnet/System.Text.RegularExpressions.dll": {}
  5139. },
  5140. "runtime": {
  5141. "lib/dotnet/System.Text.RegularExpressions.dll": {}
  5142. }
  5143. },
  5144. "System.Threading/4.0.10": {
  5145. "type": "package",
  5146. "dependencies": {
  5147. "System.Runtime": "4.0.0",
  5148. "System.Threading.Tasks": "4.0.0"
  5149. },
  5150. "compile": {
  5151. "ref/dotnet/System.Threading.dll": {}
  5152. },
  5153. "runtime": {
  5154. "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
  5155. }
  5156. },
  5157. "System.Threading.Overlapped/4.0.0": {
  5158. "type": "package",
  5159. "dependencies": {
  5160. "System.Resources.ResourceManager": "4.0.0",
  5161. "System.Runtime": "4.0.20",
  5162. "System.Runtime.Extensions": "4.0.0",
  5163. "System.Runtime.Handles": "4.0.0",
  5164. "System.Runtime.InteropServices": "4.0.20",
  5165. "System.Threading": "4.0.10"
  5166. },
  5167. "compile": {
  5168. "ref/dotnet/System.Threading.Overlapped.dll": {}
  5169. },
  5170. "runtime": {
  5171. "lib/netcore50/System.Threading.Overlapped.dll": {}
  5172. }
  5173. },
  5174. "System.Threading.Tasks/4.0.10": {
  5175. "type": "package",
  5176. "dependencies": {
  5177. "System.Runtime": "4.0.0"
  5178. },
  5179. "compile": {
  5180. "ref/dotnet/System.Threading.Tasks.dll": {}
  5181. },
  5182. "runtime": {
  5183. "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
  5184. }
  5185. },
  5186. "System.Threading.Tasks.Dataflow/4.5.25": {
  5187. "type": "package",
  5188. "dependencies": {
  5189. "System.Collections": "4.0.0",
  5190. "System.Collections.Concurrent": "4.0.0",
  5191. "System.Diagnostics.Debug": "4.0.0",
  5192. "System.Diagnostics.Tracing": "4.0.0",
  5193. "System.Dynamic.Runtime": "4.0.0",
  5194. "System.Linq": "4.0.0",
  5195. "System.Resources.ResourceManager": "4.0.0",
  5196. "System.Runtime": "4.0.0",
  5197. "System.Runtime.Extensions": "4.0.0",
  5198. "System.Threading": "4.0.0",
  5199. "System.Threading.Tasks": "4.0.0"
  5200. },
  5201. "compile": {
  5202. "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
  5203. },
  5204. "runtime": {
  5205. "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
  5206. }
  5207. },
  5208. "System.Threading.Tasks.Parallel/4.0.0": {
  5209. "type": "package",
  5210. "dependencies": {
  5211. "System.Collections.Concurrent": "4.0.10",
  5212. "System.Diagnostics.Debug": "4.0.10",
  5213. "System.Diagnostics.Tracing": "4.0.20",
  5214. "System.Resources.ResourceManager": "4.0.0",
  5215. "System.Runtime": "4.0.20",
  5216. "System.Runtime.Extensions": "4.0.10",
  5217. "System.Threading": "4.0.10",
  5218. "System.Threading.Tasks": "4.0.10"
  5219. },
  5220. "compile": {
  5221. "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
  5222. },
  5223. "runtime": {
  5224. "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
  5225. }
  5226. },
  5227. "System.Threading.Timer/4.0.0": {
  5228. "type": "package",
  5229. "compile": {
  5230. "ref/netcore50/System.Threading.Timer.dll": {}
  5231. },
  5232. "runtime": {
  5233. "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
  5234. }
  5235. },
  5236. "System.Xml.ReaderWriter/4.0.10": {
  5237. "type": "package",
  5238. "dependencies": {
  5239. "System.Collections": "4.0.10",
  5240. "System.Diagnostics.Debug": "4.0.10",
  5241. "System.Globalization": "4.0.10",
  5242. "System.IO": "4.0.10",
  5243. "System.IO.FileSystem": "4.0.0",
  5244. "System.IO.FileSystem.Primitives": "4.0.0",
  5245. "System.Resources.ResourceManager": "4.0.0",
  5246. "System.Runtime": "4.0.20",
  5247. "System.Runtime.Extensions": "4.0.10",
  5248. "System.Runtime.InteropServices": "4.0.20",
  5249. "System.Text.Encoding": "4.0.10",
  5250. "System.Text.Encoding.Extensions": "4.0.10",
  5251. "System.Text.RegularExpressions": "4.0.10",
  5252. "System.Threading.Tasks": "4.0.10"
  5253. },
  5254. "compile": {
  5255. "ref/dotnet/System.Xml.ReaderWriter.dll": {}
  5256. },
  5257. "runtime": {
  5258. "lib/dotnet/System.Xml.ReaderWriter.dll": {}
  5259. }
  5260. },
  5261. "System.Xml.XDocument/4.0.10": {
  5262. "type": "package",
  5263. "dependencies": {
  5264. "System.Collections": "4.0.10",
  5265. "System.Diagnostics.Debug": "4.0.10",
  5266. "System.Globalization": "4.0.10",
  5267. "System.IO": "4.0.10",
  5268. "System.Reflection": "4.0.10",
  5269. "System.Resources.ResourceManager": "4.0.0",
  5270. "System.Runtime": "4.0.20",
  5271. "System.Runtime.Extensions": "4.0.10",
  5272. "System.Text.Encoding": "4.0.10",
  5273. "System.Threading": "4.0.10",
  5274. "System.Xml.ReaderWriter": "4.0.10"
  5275. },
  5276. "compile": {
  5277. "ref/dotnet/System.Xml.XDocument.dll": {}
  5278. },
  5279. "runtime": {
  5280. "lib/dotnet/System.Xml.XDocument.dll": {}
  5281. }
  5282. },
  5283. "System.Xml.XmlDocument/4.0.0": {
  5284. "type": "package",
  5285. "dependencies": {
  5286. "System.Collections": "4.0.10",
  5287. "System.Diagnostics.Debug": "4.0.10",
  5288. "System.Globalization": "4.0.10",
  5289. "System.IO": "4.0.10",
  5290. "System.Resources.ResourceManager": "4.0.0",
  5291. "System.Runtime": "4.0.20",
  5292. "System.Runtime.Extensions": "4.0.10",
  5293. "System.Text.Encoding": "4.0.10",
  5294. "System.Threading": "4.0.10",
  5295. "System.Xml.ReaderWriter": "4.0.10"
  5296. },
  5297. "compile": {
  5298. "ref/dotnet/System.Xml.XmlDocument.dll": {}
  5299. },
  5300. "runtime": {
  5301. "lib/dotnet/System.Xml.XmlDocument.dll": {}
  5302. }
  5303. },
  5304. "System.Xml.XmlSerializer/4.0.10": {
  5305. "type": "package",
  5306. "dependencies": {
  5307. "System.Collections": "4.0.10",
  5308. "System.Diagnostics.Debug": "4.0.10",
  5309. "System.Globalization": "4.0.10",
  5310. "System.IO": "4.0.10",
  5311. "System.Linq": "4.0.0",
  5312. "System.Reflection": "4.0.10",
  5313. "System.Reflection.Emit": "4.0.0",
  5314. "System.Reflection.Emit.ILGeneration": "4.0.0",
  5315. "System.Reflection.Extensions": "4.0.0",
  5316. "System.Reflection.Primitives": "4.0.0",
  5317. "System.Reflection.TypeExtensions": "4.0.0",
  5318. "System.Resources.ResourceManager": "4.0.0",
  5319. "System.Runtime": "4.0.20",
  5320. "System.Runtime.Extensions": "4.0.10",
  5321. "System.Text.RegularExpressions": "4.0.10",
  5322. "System.Threading": "4.0.10",
  5323. "System.Xml.ReaderWriter": "4.0.10",
  5324. "System.Xml.XmlDocument": "4.0.0"
  5325. },
  5326. "compile": {
  5327. "ref/dotnet/System.Xml.XmlSerializer.dll": {}
  5328. },
  5329. "runtime": {
  5330. "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
  5331. }
  5332. }
  5333. }
  5334. },
  5335. "libraries": {
  5336. "Microsoft.CSharp/4.0.0": {
  5337. "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==",
  5338. "type": "package",
  5339. "files": [
  5340. "Microsoft.CSharp.4.0.0.nupkg.sha512",
  5341. "Microsoft.CSharp.nuspec",
  5342. "lib/MonoAndroid10/_._",
  5343. "lib/MonoTouch10/_._",
  5344. "lib/dotnet/Microsoft.CSharp.dll",
  5345. "lib/net45/_._",
  5346. "lib/netcore50/Microsoft.CSharp.dll",
  5347. "lib/win8/_._",
  5348. "lib/wp80/_._",
  5349. "lib/wpa81/_._",
  5350. "lib/xamarinios10/_._",
  5351. "lib/xamarinmac20/_._",
  5352. "ref/MonoAndroid10/_._",
  5353. "ref/MonoTouch10/_._",
  5354. "ref/dotnet/Microsoft.CSharp.dll",
  5355. "ref/dotnet/Microsoft.CSharp.xml",
  5356. "ref/dotnet/de/Microsoft.CSharp.xml",
  5357. "ref/dotnet/es/Microsoft.CSharp.xml",
  5358. "ref/dotnet/fr/Microsoft.CSharp.xml",
  5359. "ref/dotnet/it/Microsoft.CSharp.xml",
  5360. "ref/dotnet/ja/Microsoft.CSharp.xml",
  5361. "ref/dotnet/ko/Microsoft.CSharp.xml",
  5362. "ref/dotnet/ru/Microsoft.CSharp.xml",
  5363. "ref/dotnet/zh-hans/Microsoft.CSharp.xml",
  5364. "ref/dotnet/zh-hant/Microsoft.CSharp.xml",
  5365. "ref/net45/_._",
  5366. "ref/netcore50/Microsoft.CSharp.dll",
  5367. "ref/netcore50/Microsoft.CSharp.xml",
  5368. "ref/win8/_._",
  5369. "ref/wp80/_._",
  5370. "ref/wpa81/_._",
  5371. "ref/xamarinios10/_._",
  5372. "ref/xamarinmac20/_._"
  5373. ]
  5374. },
  5375. "Microsoft.NETCore/5.0.0": {
  5376. "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==",
  5377. "type": "package",
  5378. "files": [
  5379. "Microsoft.NETCore.5.0.0.nupkg.sha512",
  5380. "Microsoft.NETCore.nuspec",
  5381. "_._"
  5382. ]
  5383. },
  5384. "Microsoft.NETCore.Platforms/1.0.0": {
  5385. "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==",
  5386. "type": "package",
  5387. "files": [
  5388. "Microsoft.NETCore.Platforms.1.0.0.nupkg.sha512",
  5389. "Microsoft.NETCore.Platforms.nuspec",
  5390. "runtime.json"
  5391. ]
  5392. },
  5393. "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
  5394. "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==",
  5395. "type": "package",
  5396. "files": [
  5397. "Microsoft.NETCore.Portable.Compatibility.1.0.0.nupkg.sha512",
  5398. "Microsoft.NETCore.Portable.Compatibility.nuspec",
  5399. "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll",
  5400. "lib/dnxcore50/System.Core.dll",
  5401. "lib/dnxcore50/System.Net.dll",
  5402. "lib/dnxcore50/System.Numerics.dll",
  5403. "lib/dnxcore50/System.Runtime.Serialization.dll",
  5404. "lib/dnxcore50/System.ServiceModel.Web.dll",
  5405. "lib/dnxcore50/System.ServiceModel.dll",
  5406. "lib/dnxcore50/System.Windows.dll",
  5407. "lib/dnxcore50/System.Xml.Linq.dll",
  5408. "lib/dnxcore50/System.Xml.Serialization.dll",
  5409. "lib/dnxcore50/System.Xml.dll",
  5410. "lib/dnxcore50/System.dll",
  5411. "lib/net45/_._",
  5412. "lib/netcore50/System.ComponentModel.DataAnnotations.dll",
  5413. "lib/netcore50/System.Core.dll",
  5414. "lib/netcore50/System.Net.dll",
  5415. "lib/netcore50/System.Numerics.dll",
  5416. "lib/netcore50/System.Runtime.Serialization.dll",
  5417. "lib/netcore50/System.ServiceModel.Web.dll",
  5418. "lib/netcore50/System.ServiceModel.dll",
  5419. "lib/netcore50/System.Windows.dll",
  5420. "lib/netcore50/System.Xml.Linq.dll",
  5421. "lib/netcore50/System.Xml.Serialization.dll",
  5422. "lib/netcore50/System.Xml.dll",
  5423. "lib/netcore50/System.dll",
  5424. "lib/win8/_._",
  5425. "lib/wp80/_._",
  5426. "lib/wpa81/_._",
  5427. "ref/dotnet/System.ComponentModel.DataAnnotations.dll",
  5428. "ref/dotnet/System.Core.dll",
  5429. "ref/dotnet/System.Net.dll",
  5430. "ref/dotnet/System.Numerics.dll",
  5431. "ref/dotnet/System.Runtime.Serialization.dll",
  5432. "ref/dotnet/System.ServiceModel.Web.dll",
  5433. "ref/dotnet/System.ServiceModel.dll",
  5434. "ref/dotnet/System.Windows.dll",
  5435. "ref/dotnet/System.Xml.Linq.dll",
  5436. "ref/dotnet/System.Xml.Serialization.dll",
  5437. "ref/dotnet/System.Xml.dll",
  5438. "ref/dotnet/System.dll",
  5439. "ref/dotnet/mscorlib.dll",
  5440. "ref/net45/_._",
  5441. "ref/netcore50/System.ComponentModel.DataAnnotations.dll",
  5442. "ref/netcore50/System.Core.dll",
  5443. "ref/netcore50/System.Net.dll",
  5444. "ref/netcore50/System.Numerics.dll",
  5445. "ref/netcore50/System.Runtime.Serialization.dll",
  5446. "ref/netcore50/System.ServiceModel.Web.dll",
  5447. "ref/netcore50/System.ServiceModel.dll",
  5448. "ref/netcore50/System.Windows.dll",
  5449. "ref/netcore50/System.Xml.Linq.dll",
  5450. "ref/netcore50/System.Xml.Serialization.dll",
  5451. "ref/netcore50/System.Xml.dll",
  5452. "ref/netcore50/System.dll",
  5453. "ref/netcore50/mscorlib.dll",
  5454. "ref/win8/_._",
  5455. "ref/wp80/_._",
  5456. "ref/wpa81/_._",
  5457. "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll",
  5458. "runtimes/aot/lib/netcore50/System.Core.dll",
  5459. "runtimes/aot/lib/netcore50/System.Net.dll",
  5460. "runtimes/aot/lib/netcore50/System.Numerics.dll",
  5461. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll",
  5462. "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll",
  5463. "runtimes/aot/lib/netcore50/System.ServiceModel.dll",
  5464. "runtimes/aot/lib/netcore50/System.Windows.dll",
  5465. "runtimes/aot/lib/netcore50/System.Xml.Linq.dll",
  5466. "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll",
  5467. "runtimes/aot/lib/netcore50/System.Xml.dll",
  5468. "runtimes/aot/lib/netcore50/System.dll",
  5469. "runtimes/aot/lib/netcore50/mscorlib.dll"
  5470. ]
  5471. },
  5472. "Microsoft.NETCore.Runtime/1.0.1": {
  5473. "sha512": "WIblAPds88Mwvcu8OjmspmHLG9zyay//n1jMVxQlxikGzZBIeRDz/O7o9qBtOR+vDpfn+Y2EbzdCmPb3brMGRg==",
  5474. "type": "package",
  5475. "files": [
  5476. "Microsoft.NETCore.Runtime.1.0.1.nupkg.sha512",
  5477. "Microsoft.NETCore.Runtime.nuspec",
  5478. "ThirdPartyNotices.txt",
  5479. "dotnet_library_license.txt"
  5480. ]
  5481. },
  5482. "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {
  5483. "sha512": "EQlk4pidS+VppUSjhCCMXYlw9mf/47BwyM5XIX/gQHp5/qedKG7jypSMy0SGwv80U5mr1juQC0YROqjr7j8nTA==",
  5484. "type": "package",
  5485. "files": [
  5486. "Microsoft.NETCore.Runtime.CoreCLR.1.0.1.nupkg.sha512",
  5487. "Microsoft.NETCore.Runtime.CoreCLR.nuspec",
  5488. "ThirdPartyNotices.txt",
  5489. "dotnet_library_license.txt",
  5490. "runtime.json"
  5491. ]
  5492. },
  5493. "Microsoft.NETCore.Runtime.Native/1.0.1": {
  5494. "sha512": "VeZR/qn/+FRH5rd1htnwBFIzSBW6xiA7Yu2UzaHKKlyf9Ev9xVXIOitWnkvb/tJMTKdmiCzmfi2TsAMajUHNZA==",
  5495. "type": "package",
  5496. "files": [
  5497. "Microsoft.NETCore.Runtime.Native.1.0.1.nupkg.sha512",
  5498. "Microsoft.NETCore.Runtime.Native.nuspec",
  5499. "ThirdPartyNotices.txt",
  5500. "dotnet_library_license.txt"
  5501. ]
  5502. },
  5503. "Microsoft.NETCore.Targets/1.0.0": {
  5504. "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==",
  5505. "type": "package",
  5506. "files": [
  5507. "Microsoft.NETCore.Targets.1.0.0.nupkg.sha512",
  5508. "Microsoft.NETCore.Targets.nuspec",
  5509. "runtime.json"
  5510. ]
  5511. },
  5512. "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {
  5513. "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==",
  5514. "type": "package",
  5515. "files": [
  5516. "Microsoft.NETCore.Targets.UniversalWindowsPlatform.5.0.0.nupkg.sha512",
  5517. "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec",
  5518. "runtime.json"
  5519. ]
  5520. },
  5521. "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": {
  5522. "sha512": "6xdZAZALSJB65rRfOAfB6+aVBBc42Oz8jr8Cqy8J7A34zWVBV9l612lwbEsf6KJ1YdtocJsNcA8sLId3vJL/FA==",
  5523. "type": "package",
  5524. "files": [
  5525. "Microsoft.NETCore.UniversalWindowsPlatform.5.1.0.nupkg.sha512",
  5526. "Microsoft.NETCore.UniversalWindowsPlatform.nuspec",
  5527. "ThirdPartyNotices.txt",
  5528. "dotnet_library_license.txt"
  5529. ]
  5530. },
  5531. "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": {
  5532. "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==",
  5533. "type": "package",
  5534. "files": [
  5535. "Microsoft.NETCore.Windows.ApiSets-x86.1.0.0.nupkg.sha512",
  5536. "Microsoft.NETCore.Windows.ApiSets-x86.nuspec",
  5537. "runtimes/win10-x86/native/_._",
  5538. "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll",
  5539. "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
  5540. "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
  5541. "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
  5542. "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
  5543. "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
  5544. "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll",
  5545. "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
  5546. "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
  5547. "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
  5548. "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
  5549. "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
  5550. "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
  5551. "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
  5552. "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
  5553. "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll",
  5554. "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
  5555. "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll",
  5556. "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll",
  5557. "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll",
  5558. "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll",
  5559. "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll",
  5560. "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll",
  5561. "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll",
  5562. "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll",
  5563. "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll",
  5564. "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll",
  5565. "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll",
  5566. "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll",
  5567. "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll",
  5568. "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll",
  5569. "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll",
  5570. "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll",
  5571. "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll",
  5572. "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll",
  5573. "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll",
  5574. "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll",
  5575. "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll",
  5576. "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
  5577. "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll",
  5578. "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll",
  5579. "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll",
  5580. "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
  5581. "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
  5582. "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
  5583. "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll",
  5584. "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll",
  5585. "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll",
  5586. "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll",
  5587. "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll",
  5588. "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
  5589. "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll",
  5590. "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll",
  5591. "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll",
  5592. "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll",
  5593. "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll",
  5594. "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
  5595. "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll",
  5596. "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
  5597. "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll",
  5598. "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll",
  5599. "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll",
  5600. "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll",
  5601. "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll",
  5602. "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
  5603. "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll",
  5604. "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
  5605. "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll",
  5606. "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
  5607. "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll",
  5608. "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll",
  5609. "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll",
  5610. "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
  5611. "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
  5612. "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
  5613. "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll",
  5614. "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
  5615. "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll",
  5616. "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
  5617. "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
  5618. "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll",
  5619. "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
  5620. "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll",
  5621. "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll",
  5622. "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll",
  5623. "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll",
  5624. "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
  5625. "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
  5626. "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
  5627. "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll",
  5628. "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
  5629. "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
  5630. "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll",
  5631. "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll",
  5632. "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll",
  5633. "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll",
  5634. "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll",
  5635. "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
  5636. "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll",
  5637. "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
  5638. "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
  5639. "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
  5640. "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll",
  5641. "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll",
  5642. "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll",
  5643. "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
  5644. "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
  5645. "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll",
  5646. "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
  5647. "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
  5648. "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll",
  5649. "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
  5650. "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll",
  5651. "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll",
  5652. "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll",
  5653. "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll",
  5654. "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll",
  5655. "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll",
  5656. "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll",
  5657. "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll",
  5658. "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll",
  5659. "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
  5660. "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
  5661. "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
  5662. "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
  5663. "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll",
  5664. "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll",
  5665. "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
  5666. "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
  5667. "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll",
  5668. "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
  5669. "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll",
  5670. "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll",
  5671. "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
  5672. "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
  5673. "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
  5674. "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
  5675. "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
  5676. "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
  5677. "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
  5678. "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
  5679. "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
  5680. "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
  5681. "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
  5682. "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
  5683. "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
  5684. "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
  5685. "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll",
  5686. "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
  5687. "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
  5688. "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll",
  5689. "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
  5690. "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
  5691. "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
  5692. "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
  5693. "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll"
  5694. ]
  5695. },
  5696. "Microsoft.VisualBasic/10.0.0": {
  5697. "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==",
  5698. "type": "package",
  5699. "files": [
  5700. "Microsoft.VisualBasic.10.0.0.nupkg.sha512",
  5701. "Microsoft.VisualBasic.nuspec",
  5702. "lib/dotnet/Microsoft.VisualBasic.dll",
  5703. "lib/net45/_._",
  5704. "lib/netcore50/Microsoft.VisualBasic.dll",
  5705. "lib/win8/_._",
  5706. "lib/wpa81/_._",
  5707. "ref/dotnet/Microsoft.VisualBasic.dll",
  5708. "ref/dotnet/Microsoft.VisualBasic.xml",
  5709. "ref/dotnet/de/Microsoft.VisualBasic.xml",
  5710. "ref/dotnet/es/Microsoft.VisualBasic.xml",
  5711. "ref/dotnet/fr/Microsoft.VisualBasic.xml",
  5712. "ref/dotnet/it/Microsoft.VisualBasic.xml",
  5713. "ref/dotnet/ja/Microsoft.VisualBasic.xml",
  5714. "ref/dotnet/ko/Microsoft.VisualBasic.xml",
  5715. "ref/dotnet/ru/Microsoft.VisualBasic.xml",
  5716. "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml",
  5717. "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml",
  5718. "ref/net45/_._",
  5719. "ref/netcore50/Microsoft.VisualBasic.dll",
  5720. "ref/netcore50/Microsoft.VisualBasic.xml",
  5721. "ref/win8/_._",
  5722. "ref/wpa81/_._"
  5723. ]
  5724. },
  5725. "Microsoft.Win32.Primitives/4.0.0": {
  5726. "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==",
  5727. "type": "package",
  5728. "files": [
  5729. "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512",
  5730. "Microsoft.Win32.Primitives.nuspec",
  5731. "lib/MonoAndroid10/_._",
  5732. "lib/MonoTouch10/_._",
  5733. "lib/dotnet/Microsoft.Win32.Primitives.dll",
  5734. "lib/net46/Microsoft.Win32.Primitives.dll",
  5735. "lib/xamarinios10/_._",
  5736. "lib/xamarinmac20/_._",
  5737. "ref/MonoAndroid10/_._",
  5738. "ref/MonoTouch10/_._",
  5739. "ref/dotnet/Microsoft.Win32.Primitives.dll",
  5740. "ref/dotnet/Microsoft.Win32.Primitives.xml",
  5741. "ref/dotnet/de/Microsoft.Win32.Primitives.xml",
  5742. "ref/dotnet/es/Microsoft.Win32.Primitives.xml",
  5743. "ref/dotnet/fr/Microsoft.Win32.Primitives.xml",
  5744. "ref/dotnet/it/Microsoft.Win32.Primitives.xml",
  5745. "ref/dotnet/ja/Microsoft.Win32.Primitives.xml",
  5746. "ref/dotnet/ko/Microsoft.Win32.Primitives.xml",
  5747. "ref/dotnet/ru/Microsoft.Win32.Primitives.xml",
  5748. "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml",
  5749. "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml",
  5750. "ref/net46/Microsoft.Win32.Primitives.dll",
  5751. "ref/xamarinios10/_._",
  5752. "ref/xamarinmac20/_._"
  5753. ]
  5754. },
  5755. "runtime.any.System.Private.DataContractSerialization/4.1.0": {
  5756. "sha512": "nJ5sB6Q7vbOEZ+tm/L7XISxO0Az6tkMup5rhpgPboVpUKgMnsdWiDvSlzzpK/bsiYxMIJCJ4Xrt2abt8Z1beJw==",
  5757. "type": "package",
  5758. "files": [
  5759. "ThirdPartyNotices.txt",
  5760. "dotnet_library_license.txt",
  5761. "lib/DNXCore50/System.Private.DataContractSerialization.dll",
  5762. "lib/netcore50/System.Private.DataContractSerialization.dll",
  5763. "ref/dotnet/_._",
  5764. "runtime.any.System.Private.DataContractSerialization.4.1.0.nupkg.sha512",
  5765. "runtime.any.System.Private.DataContractSerialization.nuspec",
  5766. "runtimes/aot/lib/netcore50/_._"
  5767. ]
  5768. },
  5769. "runtime.aot.System.Private.DataContractSerialization/4.1.0": {
  5770. "sha512": "0GKgzv1P8U+1x0grF5xg9xAjjVahzAZwGNF6ff8/CeXi+1isQYi7vZ/GhiyU7zDaQnKmSOj1/tTZqhOo5P4yTA==",
  5771. "type": "package",
  5772. "files": [
  5773. "ThirdPartyNotices.txt",
  5774. "dotnet_library_license.txt",
  5775. "ref/dotnet/_._",
  5776. "runtime.aot.System.Private.DataContractSerialization.4.1.0.nupkg.sha512",
  5777. "runtime.aot.System.Private.DataContractSerialization.nuspec",
  5778. "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll"
  5779. ]
  5780. },
  5781. "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {
  5782. "sha512": "Sm4ZEOX0J7RLguqTTv/S1df8DHy+ndLPCg8qlth3icuO6awpSzkqte5gQMV4pSci5YduMed9mgRGcPe3EQ5l2w==",
  5783. "type": "package",
  5784. "files": [
  5785. "ThirdPartyNotices.txt",
  5786. "dotnet_library_license.txt",
  5787. "ref/dotnet/_._",
  5788. "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.1.0.1.nupkg.sha512",
  5789. "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.nuspec",
  5790. "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll",
  5791. "runtimes/win7-x86/native/clretwrc.dll",
  5792. "runtimes/win7-x86/native/coreclr.dll",
  5793. "runtimes/win7-x86/native/dbgshim.dll",
  5794. "runtimes/win7-x86/native/mscordaccore.dll",
  5795. "runtimes/win7-x86/native/mscordbi.dll",
  5796. "runtimes/win7-x86/native/mscorrc.debug.dll",
  5797. "runtimes/win7-x86/native/mscorrc.dll"
  5798. ]
  5799. },
  5800. "System.AppContext/4.0.0": {
  5801. "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==",
  5802. "type": "package",
  5803. "files": [
  5804. "System.AppContext.4.0.0.nupkg.sha512",
  5805. "System.AppContext.nuspec",
  5806. "lib/DNXCore50/System.AppContext.dll",
  5807. "lib/MonoAndroid10/_._",
  5808. "lib/MonoTouch10/_._",
  5809. "lib/net46/System.AppContext.dll",
  5810. "lib/netcore50/System.AppContext.dll",
  5811. "lib/xamarinios10/_._",
  5812. "lib/xamarinmac20/_._",
  5813. "ref/MonoAndroid10/_._",
  5814. "ref/MonoTouch10/_._",
  5815. "ref/dotnet/System.AppContext.dll",
  5816. "ref/dotnet/System.AppContext.xml",
  5817. "ref/dotnet/de/System.AppContext.xml",
  5818. "ref/dotnet/es/System.AppContext.xml",
  5819. "ref/dotnet/fr/System.AppContext.xml",
  5820. "ref/dotnet/it/System.AppContext.xml",
  5821. "ref/dotnet/ja/System.AppContext.xml",
  5822. "ref/dotnet/ko/System.AppContext.xml",
  5823. "ref/dotnet/ru/System.AppContext.xml",
  5824. "ref/dotnet/zh-hans/System.AppContext.xml",
  5825. "ref/dotnet/zh-hant/System.AppContext.xml",
  5826. "ref/net46/System.AppContext.dll",
  5827. "ref/xamarinios10/_._",
  5828. "ref/xamarinmac20/_._"
  5829. ]
  5830. },
  5831. "System.Collections/4.0.10": {
  5832. "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==",
  5833. "type": "package",
  5834. "files": [
  5835. "System.Collections.4.0.10.nupkg.sha512",
  5836. "System.Collections.nuspec",
  5837. "lib/DNXCore50/System.Collections.dll",
  5838. "lib/MonoAndroid10/_._",
  5839. "lib/MonoTouch10/_._",
  5840. "lib/net46/_._",
  5841. "lib/netcore50/System.Collections.dll",
  5842. "lib/xamarinios10/_._",
  5843. "lib/xamarinmac20/_._",
  5844. "ref/MonoAndroid10/_._",
  5845. "ref/MonoTouch10/_._",
  5846. "ref/dotnet/System.Collections.dll",
  5847. "ref/dotnet/System.Collections.xml",
  5848. "ref/dotnet/de/System.Collections.xml",
  5849. "ref/dotnet/es/System.Collections.xml",
  5850. "ref/dotnet/fr/System.Collections.xml",
  5851. "ref/dotnet/it/System.Collections.xml",
  5852. "ref/dotnet/ja/System.Collections.xml",
  5853. "ref/dotnet/ko/System.Collections.xml",
  5854. "ref/dotnet/ru/System.Collections.xml",
  5855. "ref/dotnet/zh-hans/System.Collections.xml",
  5856. "ref/dotnet/zh-hant/System.Collections.xml",
  5857. "ref/net46/_._",
  5858. "ref/xamarinios10/_._",
  5859. "ref/xamarinmac20/_._",
  5860. "runtimes/win8-aot/lib/netcore50/System.Collections.dll"
  5861. ]
  5862. },
  5863. "System.Collections.Concurrent/4.0.10": {
  5864. "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==",
  5865. "type": "package",
  5866. "files": [
  5867. "System.Collections.Concurrent.4.0.10.nupkg.sha512",
  5868. "System.Collections.Concurrent.nuspec",
  5869. "lib/MonoAndroid10/_._",
  5870. "lib/MonoTouch10/_._",
  5871. "lib/dotnet/System.Collections.Concurrent.dll",
  5872. "lib/net46/_._",
  5873. "lib/xamarinios10/_._",
  5874. "lib/xamarinmac20/_._",
  5875. "ref/MonoAndroid10/_._",
  5876. "ref/MonoTouch10/_._",
  5877. "ref/dotnet/System.Collections.Concurrent.dll",
  5878. "ref/dotnet/System.Collections.Concurrent.xml",
  5879. "ref/dotnet/de/System.Collections.Concurrent.xml",
  5880. "ref/dotnet/es/System.Collections.Concurrent.xml",
  5881. "ref/dotnet/fr/System.Collections.Concurrent.xml",
  5882. "ref/dotnet/it/System.Collections.Concurrent.xml",
  5883. "ref/dotnet/ja/System.Collections.Concurrent.xml",
  5884. "ref/dotnet/ko/System.Collections.Concurrent.xml",
  5885. "ref/dotnet/ru/System.Collections.Concurrent.xml",
  5886. "ref/dotnet/zh-hans/System.Collections.Concurrent.xml",
  5887. "ref/dotnet/zh-hant/System.Collections.Concurrent.xml",
  5888. "ref/net46/_._",
  5889. "ref/xamarinios10/_._",
  5890. "ref/xamarinmac20/_._"
  5891. ]
  5892. },
  5893. "System.Collections.Immutable/1.1.37": {
  5894. "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==",
  5895. "type": "package",
  5896. "files": [
  5897. "System.Collections.Immutable.1.1.37.nupkg.sha512",
  5898. "System.Collections.Immutable.nuspec",
  5899. "lib/dotnet/System.Collections.Immutable.dll",
  5900. "lib/dotnet/System.Collections.Immutable.xml",
  5901. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5902. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
  5903. ]
  5904. },
  5905. "System.Collections.NonGeneric/4.0.0": {
  5906. "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==",
  5907. "type": "package",
  5908. "files": [
  5909. "System.Collections.NonGeneric.4.0.0.nupkg.sha512",
  5910. "System.Collections.NonGeneric.nuspec",
  5911. "lib/MonoAndroid10/_._",
  5912. "lib/MonoTouch10/_._",
  5913. "lib/dotnet/System.Collections.NonGeneric.dll",
  5914. "lib/net46/System.Collections.NonGeneric.dll",
  5915. "lib/xamarinios10/_._",
  5916. "lib/xamarinmac20/_._",
  5917. "ref/MonoAndroid10/_._",
  5918. "ref/MonoTouch10/_._",
  5919. "ref/dotnet/System.Collections.NonGeneric.dll",
  5920. "ref/dotnet/System.Collections.NonGeneric.xml",
  5921. "ref/dotnet/de/System.Collections.NonGeneric.xml",
  5922. "ref/dotnet/es/System.Collections.NonGeneric.xml",
  5923. "ref/dotnet/fr/System.Collections.NonGeneric.xml",
  5924. "ref/dotnet/it/System.Collections.NonGeneric.xml",
  5925. "ref/dotnet/ja/System.Collections.NonGeneric.xml",
  5926. "ref/dotnet/ko/System.Collections.NonGeneric.xml",
  5927. "ref/dotnet/ru/System.Collections.NonGeneric.xml",
  5928. "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml",
  5929. "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml",
  5930. "ref/net46/System.Collections.NonGeneric.dll",
  5931. "ref/xamarinios10/_._",
  5932. "ref/xamarinmac20/_._"
  5933. ]
  5934. },
  5935. "System.Collections.Specialized/4.0.0": {
  5936. "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==",
  5937. "type": "package",
  5938. "files": [
  5939. "System.Collections.Specialized.4.0.0.nupkg.sha512",
  5940. "System.Collections.Specialized.nuspec",
  5941. "lib/MonoAndroid10/_._",
  5942. "lib/MonoTouch10/_._",
  5943. "lib/dotnet/System.Collections.Specialized.dll",
  5944. "lib/net46/System.Collections.Specialized.dll",
  5945. "lib/xamarinios10/_._",
  5946. "lib/xamarinmac20/_._",
  5947. "ref/MonoAndroid10/_._",
  5948. "ref/MonoTouch10/_._",
  5949. "ref/dotnet/System.Collections.Specialized.dll",
  5950. "ref/dotnet/System.Collections.Specialized.xml",
  5951. "ref/dotnet/de/System.Collections.Specialized.xml",
  5952. "ref/dotnet/es/System.Collections.Specialized.xml",
  5953. "ref/dotnet/fr/System.Collections.Specialized.xml",
  5954. "ref/dotnet/it/System.Collections.Specialized.xml",
  5955. "ref/dotnet/ja/System.Collections.Specialized.xml",
  5956. "ref/dotnet/ko/System.Collections.Specialized.xml",
  5957. "ref/dotnet/ru/System.Collections.Specialized.xml",
  5958. "ref/dotnet/zh-hans/System.Collections.Specialized.xml",
  5959. "ref/dotnet/zh-hant/System.Collections.Specialized.xml",
  5960. "ref/net46/System.Collections.Specialized.dll",
  5961. "ref/xamarinios10/_._",
  5962. "ref/xamarinmac20/_._"
  5963. ]
  5964. },
  5965. "System.ComponentModel/4.0.0": {
  5966. "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==",
  5967. "type": "package",
  5968. "files": [
  5969. "System.ComponentModel.4.0.0.nupkg.sha512",
  5970. "System.ComponentModel.nuspec",
  5971. "lib/dotnet/System.ComponentModel.dll",
  5972. "lib/net45/_._",
  5973. "lib/netcore50/System.ComponentModel.dll",
  5974. "lib/win8/_._",
  5975. "lib/wp80/_._",
  5976. "lib/wpa81/_._",
  5977. "ref/dotnet/System.ComponentModel.dll",
  5978. "ref/dotnet/System.ComponentModel.xml",
  5979. "ref/dotnet/de/System.ComponentModel.xml",
  5980. "ref/dotnet/es/System.ComponentModel.xml",
  5981. "ref/dotnet/fr/System.ComponentModel.xml",
  5982. "ref/dotnet/it/System.ComponentModel.xml",
  5983. "ref/dotnet/ja/System.ComponentModel.xml",
  5984. "ref/dotnet/ko/System.ComponentModel.xml",
  5985. "ref/dotnet/ru/System.ComponentModel.xml",
  5986. "ref/dotnet/zh-hans/System.ComponentModel.xml",
  5987. "ref/dotnet/zh-hant/System.ComponentModel.xml",
  5988. "ref/net45/_._",
  5989. "ref/netcore50/System.ComponentModel.dll",
  5990. "ref/netcore50/System.ComponentModel.xml",
  5991. "ref/win8/_._",
  5992. "ref/wp80/_._",
  5993. "ref/wpa81/_._"
  5994. ]
  5995. },
  5996. "System.ComponentModel.Annotations/4.0.10": {
  5997. "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==",
  5998. "type": "package",
  5999. "files": [
  6000. "System.ComponentModel.Annotations.4.0.10.nupkg.sha512",
  6001. "System.ComponentModel.Annotations.nuspec",
  6002. "lib/MonoAndroid10/_._",
  6003. "lib/MonoTouch10/_._",
  6004. "lib/dotnet/System.ComponentModel.Annotations.dll",
  6005. "lib/net46/_._",
  6006. "lib/xamarinios10/_._",
  6007. "lib/xamarinmac20/_._",
  6008. "ref/MonoAndroid10/_._",
  6009. "ref/MonoTouch10/_._",
  6010. "ref/dotnet/System.ComponentModel.Annotations.dll",
  6011. "ref/dotnet/System.ComponentModel.Annotations.xml",
  6012. "ref/dotnet/de/System.ComponentModel.Annotations.xml",
  6013. "ref/dotnet/es/System.ComponentModel.Annotations.xml",
  6014. "ref/dotnet/fr/System.ComponentModel.Annotations.xml",
  6015. "ref/dotnet/it/System.ComponentModel.Annotations.xml",
  6016. "ref/dotnet/ja/System.ComponentModel.Annotations.xml",
  6017. "ref/dotnet/ko/System.ComponentModel.Annotations.xml",
  6018. "ref/dotnet/ru/System.ComponentModel.Annotations.xml",
  6019. "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml",
  6020. "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml",
  6021. "ref/net46/_._",
  6022. "ref/xamarinios10/_._",
  6023. "ref/xamarinmac20/_._"
  6024. ]
  6025. },
  6026. "System.ComponentModel.EventBasedAsync/4.0.10": {
  6027. "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==",
  6028. "type": "package",
  6029. "files": [
  6030. "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512",
  6031. "System.ComponentModel.EventBasedAsync.nuspec",
  6032. "lib/MonoAndroid10/_._",
  6033. "lib/MonoTouch10/_._",
  6034. "lib/dotnet/System.ComponentModel.EventBasedAsync.dll",
  6035. "lib/net46/_._",
  6036. "lib/xamarinios10/_._",
  6037. "lib/xamarinmac20/_._",
  6038. "ref/MonoAndroid10/_._",
  6039. "ref/MonoTouch10/_._",
  6040. "ref/dotnet/System.ComponentModel.EventBasedAsync.dll",
  6041. "ref/dotnet/System.ComponentModel.EventBasedAsync.xml",
  6042. "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml",
  6043. "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml",
  6044. "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml",
  6045. "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml",
  6046. "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml",
  6047. "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml",
  6048. "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml",
  6049. "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6050. "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6051. "ref/net46/_._",
  6052. "ref/xamarinios10/_._",
  6053. "ref/xamarinmac20/_._"
  6054. ]
  6055. },
  6056. "System.Data.Common/4.0.0": {
  6057. "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==",
  6058. "type": "package",
  6059. "files": [
  6060. "System.Data.Common.4.0.0.nupkg.sha512",
  6061. "System.Data.Common.nuspec",
  6062. "lib/MonoAndroid10/_._",
  6063. "lib/MonoTouch10/_._",
  6064. "lib/dotnet/System.Data.Common.dll",
  6065. "lib/net46/System.Data.Common.dll",
  6066. "lib/xamarinios10/_._",
  6067. "lib/xamarinmac20/_._",
  6068. "ref/MonoAndroid10/_._",
  6069. "ref/MonoTouch10/_._",
  6070. "ref/dotnet/System.Data.Common.dll",
  6071. "ref/dotnet/System.Data.Common.xml",
  6072. "ref/dotnet/de/System.Data.Common.xml",
  6073. "ref/dotnet/es/System.Data.Common.xml",
  6074. "ref/dotnet/fr/System.Data.Common.xml",
  6075. "ref/dotnet/it/System.Data.Common.xml",
  6076. "ref/dotnet/ja/System.Data.Common.xml",
  6077. "ref/dotnet/ko/System.Data.Common.xml",
  6078. "ref/dotnet/ru/System.Data.Common.xml",
  6079. "ref/dotnet/zh-hans/System.Data.Common.xml",
  6080. "ref/dotnet/zh-hant/System.Data.Common.xml",
  6081. "ref/net46/System.Data.Common.dll",
  6082. "ref/xamarinios10/_._",
  6083. "ref/xamarinmac20/_._"
  6084. ]
  6085. },
  6086. "System.Diagnostics.Contracts/4.0.0": {
  6087. "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==",
  6088. "type": "package",
  6089. "files": [
  6090. "System.Diagnostics.Contracts.4.0.0.nupkg.sha512",
  6091. "System.Diagnostics.Contracts.nuspec",
  6092. "lib/DNXCore50/System.Diagnostics.Contracts.dll",
  6093. "lib/net45/_._",
  6094. "lib/netcore50/System.Diagnostics.Contracts.dll",
  6095. "lib/win8/_._",
  6096. "lib/wp80/_._",
  6097. "lib/wpa81/_._",
  6098. "ref/dotnet/System.Diagnostics.Contracts.dll",
  6099. "ref/dotnet/System.Diagnostics.Contracts.xml",
  6100. "ref/dotnet/de/System.Diagnostics.Contracts.xml",
  6101. "ref/dotnet/es/System.Diagnostics.Contracts.xml",
  6102. "ref/dotnet/fr/System.Diagnostics.Contracts.xml",
  6103. "ref/dotnet/it/System.Diagnostics.Contracts.xml",
  6104. "ref/dotnet/ja/System.Diagnostics.Contracts.xml",
  6105. "ref/dotnet/ko/System.Diagnostics.Contracts.xml",
  6106. "ref/dotnet/ru/System.Diagnostics.Contracts.xml",
  6107. "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml",
  6108. "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml",
  6109. "ref/net45/_._",
  6110. "ref/netcore50/System.Diagnostics.Contracts.dll",
  6111. "ref/netcore50/System.Diagnostics.Contracts.xml",
  6112. "ref/win8/_._",
  6113. "ref/wp80/_._",
  6114. "ref/wpa81/_._",
  6115. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll"
  6116. ]
  6117. },
  6118. "System.Diagnostics.Debug/4.0.10": {
  6119. "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==",
  6120. "type": "package",
  6121. "files": [
  6122. "System.Diagnostics.Debug.4.0.10.nupkg.sha512",
  6123. "System.Diagnostics.Debug.nuspec",
  6124. "lib/DNXCore50/System.Diagnostics.Debug.dll",
  6125. "lib/MonoAndroid10/_._",
  6126. "lib/MonoTouch10/_._",
  6127. "lib/net46/_._",
  6128. "lib/netcore50/System.Diagnostics.Debug.dll",
  6129. "lib/xamarinios10/_._",
  6130. "lib/xamarinmac20/_._",
  6131. "ref/MonoAndroid10/_._",
  6132. "ref/MonoTouch10/_._",
  6133. "ref/dotnet/System.Diagnostics.Debug.dll",
  6134. "ref/dotnet/System.Diagnostics.Debug.xml",
  6135. "ref/dotnet/de/System.Diagnostics.Debug.xml",
  6136. "ref/dotnet/es/System.Diagnostics.Debug.xml",
  6137. "ref/dotnet/fr/System.Diagnostics.Debug.xml",
  6138. "ref/dotnet/it/System.Diagnostics.Debug.xml",
  6139. "ref/dotnet/ja/System.Diagnostics.Debug.xml",
  6140. "ref/dotnet/ko/System.Diagnostics.Debug.xml",
  6141. "ref/dotnet/ru/System.Diagnostics.Debug.xml",
  6142. "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
  6143. "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
  6144. "ref/net46/_._",
  6145. "ref/xamarinios10/_._",
  6146. "ref/xamarinmac20/_._",
  6147. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll"
  6148. ]
  6149. },
  6150. "System.Diagnostics.StackTrace/4.0.0": {
  6151. "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==",
  6152. "type": "package",
  6153. "files": [
  6154. "System.Diagnostics.StackTrace.4.0.0.nupkg.sha512",
  6155. "System.Diagnostics.StackTrace.nuspec",
  6156. "lib/DNXCore50/System.Diagnostics.StackTrace.dll",
  6157. "lib/MonoAndroid10/_._",
  6158. "lib/MonoTouch10/_._",
  6159. "lib/net46/System.Diagnostics.StackTrace.dll",
  6160. "lib/netcore50/System.Diagnostics.StackTrace.dll",
  6161. "lib/xamarinios10/_._",
  6162. "lib/xamarinmac20/_._",
  6163. "ref/MonoAndroid10/_._",
  6164. "ref/MonoTouch10/_._",
  6165. "ref/dotnet/System.Diagnostics.StackTrace.dll",
  6166. "ref/dotnet/System.Diagnostics.StackTrace.xml",
  6167. "ref/dotnet/de/System.Diagnostics.StackTrace.xml",
  6168. "ref/dotnet/es/System.Diagnostics.StackTrace.xml",
  6169. "ref/dotnet/fr/System.Diagnostics.StackTrace.xml",
  6170. "ref/dotnet/it/System.Diagnostics.StackTrace.xml",
  6171. "ref/dotnet/ja/System.Diagnostics.StackTrace.xml",
  6172. "ref/dotnet/ko/System.Diagnostics.StackTrace.xml",
  6173. "ref/dotnet/ru/System.Diagnostics.StackTrace.xml",
  6174. "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml",
  6175. "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml",
  6176. "ref/net46/System.Diagnostics.StackTrace.dll",
  6177. "ref/xamarinios10/_._",
  6178. "ref/xamarinmac20/_._",
  6179. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
  6180. ]
  6181. },
  6182. "System.Diagnostics.Tools/4.0.0": {
  6183. "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==",
  6184. "type": "package",
  6185. "files": [
  6186. "System.Diagnostics.Tools.4.0.0.nupkg.sha512",
  6187. "System.Diagnostics.Tools.nuspec",
  6188. "lib/DNXCore50/System.Diagnostics.Tools.dll",
  6189. "lib/net45/_._",
  6190. "lib/netcore50/System.Diagnostics.Tools.dll",
  6191. "lib/win8/_._",
  6192. "lib/wp80/_._",
  6193. "lib/wpa81/_._",
  6194. "ref/dotnet/System.Diagnostics.Tools.dll",
  6195. "ref/dotnet/System.Diagnostics.Tools.xml",
  6196. "ref/dotnet/de/System.Diagnostics.Tools.xml",
  6197. "ref/dotnet/es/System.Diagnostics.Tools.xml",
  6198. "ref/dotnet/fr/System.Diagnostics.Tools.xml",
  6199. "ref/dotnet/it/System.Diagnostics.Tools.xml",
  6200. "ref/dotnet/ja/System.Diagnostics.Tools.xml",
  6201. "ref/dotnet/ko/System.Diagnostics.Tools.xml",
  6202. "ref/dotnet/ru/System.Diagnostics.Tools.xml",
  6203. "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml",
  6204. "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml",
  6205. "ref/net45/_._",
  6206. "ref/netcore50/System.Diagnostics.Tools.dll",
  6207. "ref/netcore50/System.Diagnostics.Tools.xml",
  6208. "ref/win8/_._",
  6209. "ref/wp80/_._",
  6210. "ref/wpa81/_._",
  6211. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll"
  6212. ]
  6213. },
  6214. "System.Diagnostics.Tracing/4.0.20": {
  6215. "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==",
  6216. "type": "package",
  6217. "files": [
  6218. "System.Diagnostics.Tracing.4.0.20.nupkg.sha512",
  6219. "System.Diagnostics.Tracing.nuspec",
  6220. "lib/DNXCore50/System.Diagnostics.Tracing.dll",
  6221. "lib/MonoAndroid10/_._",
  6222. "lib/MonoTouch10/_._",
  6223. "lib/net46/_._",
  6224. "lib/netcore50/System.Diagnostics.Tracing.dll",
  6225. "lib/xamarinios10/_._",
  6226. "lib/xamarinmac20/_._",
  6227. "ref/MonoAndroid10/_._",
  6228. "ref/MonoTouch10/_._",
  6229. "ref/dotnet/System.Diagnostics.Tracing.dll",
  6230. "ref/dotnet/System.Diagnostics.Tracing.xml",
  6231. "ref/dotnet/de/System.Diagnostics.Tracing.xml",
  6232. "ref/dotnet/es/System.Diagnostics.Tracing.xml",
  6233. "ref/dotnet/fr/System.Diagnostics.Tracing.xml",
  6234. "ref/dotnet/it/System.Diagnostics.Tracing.xml",
  6235. "ref/dotnet/ja/System.Diagnostics.Tracing.xml",
  6236. "ref/dotnet/ko/System.Diagnostics.Tracing.xml",
  6237. "ref/dotnet/ru/System.Diagnostics.Tracing.xml",
  6238. "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml",
  6239. "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml",
  6240. "ref/net46/_._",
  6241. "ref/xamarinios10/_._",
  6242. "ref/xamarinmac20/_._",
  6243. "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll"
  6244. ]
  6245. },
  6246. "System.Dynamic.Runtime/4.0.10": {
  6247. "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==",
  6248. "type": "package",
  6249. "files": [
  6250. "System.Dynamic.Runtime.4.0.10.nupkg.sha512",
  6251. "System.Dynamic.Runtime.nuspec",
  6252. "lib/DNXCore50/System.Dynamic.Runtime.dll",
  6253. "lib/MonoAndroid10/_._",
  6254. "lib/MonoTouch10/_._",
  6255. "lib/net46/_._",
  6256. "lib/netcore50/System.Dynamic.Runtime.dll",
  6257. "lib/xamarinios10/_._",
  6258. "lib/xamarinmac20/_._",
  6259. "ref/MonoAndroid10/_._",
  6260. "ref/MonoTouch10/_._",
  6261. "ref/dotnet/System.Dynamic.Runtime.dll",
  6262. "ref/dotnet/System.Dynamic.Runtime.xml",
  6263. "ref/dotnet/de/System.Dynamic.Runtime.xml",
  6264. "ref/dotnet/es/System.Dynamic.Runtime.xml",
  6265. "ref/dotnet/fr/System.Dynamic.Runtime.xml",
  6266. "ref/dotnet/it/System.Dynamic.Runtime.xml",
  6267. "ref/dotnet/ja/System.Dynamic.Runtime.xml",
  6268. "ref/dotnet/ko/System.Dynamic.Runtime.xml",
  6269. "ref/dotnet/ru/System.Dynamic.Runtime.xml",
  6270. "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml",
  6271. "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml",
  6272. "ref/net46/_._",
  6273. "ref/xamarinios10/_._",
  6274. "ref/xamarinmac20/_._",
  6275. "runtime.json",
  6276. "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll"
  6277. ]
  6278. },
  6279. "System.Globalization/4.0.10": {
  6280. "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==",
  6281. "type": "package",
  6282. "files": [
  6283. "System.Globalization.4.0.10.nupkg.sha512",
  6284. "System.Globalization.nuspec",
  6285. "lib/DNXCore50/System.Globalization.dll",
  6286. "lib/MonoAndroid10/_._",
  6287. "lib/MonoTouch10/_._",
  6288. "lib/net46/_._",
  6289. "lib/netcore50/System.Globalization.dll",
  6290. "lib/xamarinios10/_._",
  6291. "lib/xamarinmac20/_._",
  6292. "ref/MonoAndroid10/_._",
  6293. "ref/MonoTouch10/_._",
  6294. "ref/dotnet/System.Globalization.dll",
  6295. "ref/dotnet/System.Globalization.xml",
  6296. "ref/dotnet/de/System.Globalization.xml",
  6297. "ref/dotnet/es/System.Globalization.xml",
  6298. "ref/dotnet/fr/System.Globalization.xml",
  6299. "ref/dotnet/it/System.Globalization.xml",
  6300. "ref/dotnet/ja/System.Globalization.xml",
  6301. "ref/dotnet/ko/System.Globalization.xml",
  6302. "ref/dotnet/ru/System.Globalization.xml",
  6303. "ref/dotnet/zh-hans/System.Globalization.xml",
  6304. "ref/dotnet/zh-hant/System.Globalization.xml",
  6305. "ref/net46/_._",
  6306. "ref/xamarinios10/_._",
  6307. "ref/xamarinmac20/_._",
  6308. "runtimes/win8-aot/lib/netcore50/System.Globalization.dll"
  6309. ]
  6310. },
  6311. "System.Globalization.Calendars/4.0.0": {
  6312. "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==",
  6313. "type": "package",
  6314. "files": [
  6315. "System.Globalization.Calendars.4.0.0.nupkg.sha512",
  6316. "System.Globalization.Calendars.nuspec",
  6317. "lib/DNXCore50/System.Globalization.Calendars.dll",
  6318. "lib/MonoAndroid10/_._",
  6319. "lib/MonoTouch10/_._",
  6320. "lib/net46/System.Globalization.Calendars.dll",
  6321. "lib/netcore50/System.Globalization.Calendars.dll",
  6322. "lib/xamarinios10/_._",
  6323. "lib/xamarinmac20/_._",
  6324. "ref/MonoAndroid10/_._",
  6325. "ref/MonoTouch10/_._",
  6326. "ref/dotnet/System.Globalization.Calendars.dll",
  6327. "ref/dotnet/System.Globalization.Calendars.xml",
  6328. "ref/dotnet/de/System.Globalization.Calendars.xml",
  6329. "ref/dotnet/es/System.Globalization.Calendars.xml",
  6330. "ref/dotnet/fr/System.Globalization.Calendars.xml",
  6331. "ref/dotnet/it/System.Globalization.Calendars.xml",
  6332. "ref/dotnet/ja/System.Globalization.Calendars.xml",
  6333. "ref/dotnet/ko/System.Globalization.Calendars.xml",
  6334. "ref/dotnet/ru/System.Globalization.Calendars.xml",
  6335. "ref/dotnet/zh-hans/System.Globalization.Calendars.xml",
  6336. "ref/dotnet/zh-hant/System.Globalization.Calendars.xml",
  6337. "ref/net46/System.Globalization.Calendars.dll",
  6338. "ref/xamarinios10/_._",
  6339. "ref/xamarinmac20/_._",
  6340. "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll"
  6341. ]
  6342. },
  6343. "System.Globalization.Extensions/4.0.0": {
  6344. "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==",
  6345. "type": "package",
  6346. "files": [
  6347. "System.Globalization.Extensions.4.0.0.nupkg.sha512",
  6348. "System.Globalization.Extensions.nuspec",
  6349. "lib/MonoAndroid10/_._",
  6350. "lib/MonoTouch10/_._",
  6351. "lib/dotnet/System.Globalization.Extensions.dll",
  6352. "lib/net46/System.Globalization.Extensions.dll",
  6353. "lib/xamarinios10/_._",
  6354. "lib/xamarinmac20/_._",
  6355. "ref/MonoAndroid10/_._",
  6356. "ref/MonoTouch10/_._",
  6357. "ref/dotnet/System.Globalization.Extensions.dll",
  6358. "ref/dotnet/System.Globalization.Extensions.xml",
  6359. "ref/dotnet/de/System.Globalization.Extensions.xml",
  6360. "ref/dotnet/es/System.Globalization.Extensions.xml",
  6361. "ref/dotnet/fr/System.Globalization.Extensions.xml",
  6362. "ref/dotnet/it/System.Globalization.Extensions.xml",
  6363. "ref/dotnet/ja/System.Globalization.Extensions.xml",
  6364. "ref/dotnet/ko/System.Globalization.Extensions.xml",
  6365. "ref/dotnet/ru/System.Globalization.Extensions.xml",
  6366. "ref/dotnet/zh-hans/System.Globalization.Extensions.xml",
  6367. "ref/dotnet/zh-hant/System.Globalization.Extensions.xml",
  6368. "ref/net46/System.Globalization.Extensions.dll",
  6369. "ref/xamarinios10/_._",
  6370. "ref/xamarinmac20/_._"
  6371. ]
  6372. },
  6373. "System.IO/4.0.10": {
  6374. "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==",
  6375. "type": "package",
  6376. "files": [
  6377. "System.IO.4.0.10.nupkg.sha512",
  6378. "System.IO.nuspec",
  6379. "lib/DNXCore50/System.IO.dll",
  6380. "lib/MonoAndroid10/_._",
  6381. "lib/MonoTouch10/_._",
  6382. "lib/net46/_._",
  6383. "lib/netcore50/System.IO.dll",
  6384. "lib/xamarinios10/_._",
  6385. "lib/xamarinmac20/_._",
  6386. "ref/MonoAndroid10/_._",
  6387. "ref/MonoTouch10/_._",
  6388. "ref/dotnet/System.IO.dll",
  6389. "ref/dotnet/System.IO.xml",
  6390. "ref/dotnet/de/System.IO.xml",
  6391. "ref/dotnet/es/System.IO.xml",
  6392. "ref/dotnet/fr/System.IO.xml",
  6393. "ref/dotnet/it/System.IO.xml",
  6394. "ref/dotnet/ja/System.IO.xml",
  6395. "ref/dotnet/ko/System.IO.xml",
  6396. "ref/dotnet/ru/System.IO.xml",
  6397. "ref/dotnet/zh-hans/System.IO.xml",
  6398. "ref/dotnet/zh-hant/System.IO.xml",
  6399. "ref/net46/_._",
  6400. "ref/xamarinios10/_._",
  6401. "ref/xamarinmac20/_._",
  6402. "runtimes/win8-aot/lib/netcore50/System.IO.dll"
  6403. ]
  6404. },
  6405. "System.IO.Compression/4.0.0": {
  6406. "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==",
  6407. "type": "package",
  6408. "files": [
  6409. "System.IO.Compression.4.0.0.nupkg.sha512",
  6410. "System.IO.Compression.nuspec",
  6411. "lib/MonoAndroid10/_._",
  6412. "lib/MonoTouch10/_._",
  6413. "lib/dotnet/System.IO.Compression.dll",
  6414. "lib/net45/_._",
  6415. "lib/netcore50/System.IO.Compression.dll",
  6416. "lib/win8/_._",
  6417. "lib/wpa81/_._",
  6418. "lib/xamarinios10/_._",
  6419. "lib/xamarinmac20/_._",
  6420. "ref/MonoAndroid10/_._",
  6421. "ref/MonoTouch10/_._",
  6422. "ref/dotnet/System.IO.Compression.dll",
  6423. "ref/dotnet/System.IO.Compression.xml",
  6424. "ref/dotnet/de/System.IO.Compression.xml",
  6425. "ref/dotnet/es/System.IO.Compression.xml",
  6426. "ref/dotnet/fr/System.IO.Compression.xml",
  6427. "ref/dotnet/it/System.IO.Compression.xml",
  6428. "ref/dotnet/ja/System.IO.Compression.xml",
  6429. "ref/dotnet/ko/System.IO.Compression.xml",
  6430. "ref/dotnet/ru/System.IO.Compression.xml",
  6431. "ref/dotnet/zh-hans/System.IO.Compression.xml",
  6432. "ref/dotnet/zh-hant/System.IO.Compression.xml",
  6433. "ref/net45/_._",
  6434. "ref/netcore50/System.IO.Compression.dll",
  6435. "ref/netcore50/System.IO.Compression.xml",
  6436. "ref/win8/_._",
  6437. "ref/wpa81/_._",
  6438. "ref/xamarinios10/_._",
  6439. "ref/xamarinmac20/_._",
  6440. "runtime.json"
  6441. ]
  6442. },
  6443. "System.IO.Compression.clrcompression-x86/4.0.0": {
  6444. "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==",
  6445. "type": "package",
  6446. "files": [
  6447. "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512",
  6448. "System.IO.Compression.clrcompression-x86.nuspec",
  6449. "runtimes/win10-x86/native/ClrCompression.dll",
  6450. "runtimes/win7-x86/native/clrcompression.dll"
  6451. ]
  6452. },
  6453. "System.IO.Compression.ZipFile/4.0.0": {
  6454. "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==",
  6455. "type": "package",
  6456. "files": [
  6457. "System.IO.Compression.ZipFile.4.0.0.nupkg.sha512",
  6458. "System.IO.Compression.ZipFile.nuspec",
  6459. "lib/MonoAndroid10/_._",
  6460. "lib/MonoTouch10/_._",
  6461. "lib/dotnet/System.IO.Compression.ZipFile.dll",
  6462. "lib/net46/System.IO.Compression.ZipFile.dll",
  6463. "lib/xamarinios10/_._",
  6464. "lib/xamarinmac20/_._",
  6465. "ref/MonoAndroid10/_._",
  6466. "ref/MonoTouch10/_._",
  6467. "ref/dotnet/System.IO.Compression.ZipFile.dll",
  6468. "ref/dotnet/System.IO.Compression.ZipFile.xml",
  6469. "ref/dotnet/de/System.IO.Compression.ZipFile.xml",
  6470. "ref/dotnet/es/System.IO.Compression.ZipFile.xml",
  6471. "ref/dotnet/fr/System.IO.Compression.ZipFile.xml",
  6472. "ref/dotnet/it/System.IO.Compression.ZipFile.xml",
  6473. "ref/dotnet/ja/System.IO.Compression.ZipFile.xml",
  6474. "ref/dotnet/ko/System.IO.Compression.ZipFile.xml",
  6475. "ref/dotnet/ru/System.IO.Compression.ZipFile.xml",
  6476. "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml",
  6477. "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml",
  6478. "ref/net46/System.IO.Compression.ZipFile.dll",
  6479. "ref/xamarinios10/_._",
  6480. "ref/xamarinmac20/_._"
  6481. ]
  6482. },
  6483. "System.IO.FileSystem/4.0.0": {
  6484. "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==",
  6485. "type": "package",
  6486. "files": [
  6487. "System.IO.FileSystem.4.0.0.nupkg.sha512",
  6488. "System.IO.FileSystem.nuspec",
  6489. "lib/DNXCore50/System.IO.FileSystem.dll",
  6490. "lib/MonoAndroid10/_._",
  6491. "lib/MonoTouch10/_._",
  6492. "lib/net46/System.IO.FileSystem.dll",
  6493. "lib/netcore50/System.IO.FileSystem.dll",
  6494. "lib/xamarinios10/_._",
  6495. "lib/xamarinmac20/_._",
  6496. "ref/MonoAndroid10/_._",
  6497. "ref/MonoTouch10/_._",
  6498. "ref/dotnet/System.IO.FileSystem.dll",
  6499. "ref/dotnet/System.IO.FileSystem.xml",
  6500. "ref/dotnet/de/System.IO.FileSystem.xml",
  6501. "ref/dotnet/es/System.IO.FileSystem.xml",
  6502. "ref/dotnet/fr/System.IO.FileSystem.xml",
  6503. "ref/dotnet/it/System.IO.FileSystem.xml",
  6504. "ref/dotnet/ja/System.IO.FileSystem.xml",
  6505. "ref/dotnet/ko/System.IO.FileSystem.xml",
  6506. "ref/dotnet/ru/System.IO.FileSystem.xml",
  6507. "ref/dotnet/zh-hans/System.IO.FileSystem.xml",
  6508. "ref/dotnet/zh-hant/System.IO.FileSystem.xml",
  6509. "ref/net46/System.IO.FileSystem.dll",
  6510. "ref/xamarinios10/_._",
  6511. "ref/xamarinmac20/_._"
  6512. ]
  6513. },
  6514. "System.IO.FileSystem.Primitives/4.0.0": {
  6515. "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==",
  6516. "type": "package",
  6517. "files": [
  6518. "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512",
  6519. "System.IO.FileSystem.Primitives.nuspec",
  6520. "lib/MonoAndroid10/_._",
  6521. "lib/MonoTouch10/_._",
  6522. "lib/dotnet/System.IO.FileSystem.Primitives.dll",
  6523. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6524. "lib/xamarinios10/_._",
  6525. "lib/xamarinmac20/_._",
  6526. "ref/MonoAndroid10/_._",
  6527. "ref/MonoTouch10/_._",
  6528. "ref/dotnet/System.IO.FileSystem.Primitives.dll",
  6529. "ref/dotnet/System.IO.FileSystem.Primitives.xml",
  6530. "ref/dotnet/de/System.IO.FileSystem.Primitives.xml",
  6531. "ref/dotnet/es/System.IO.FileSystem.Primitives.xml",
  6532. "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml",
  6533. "ref/dotnet/it/System.IO.FileSystem.Primitives.xml",
  6534. "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml",
  6535. "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml",
  6536. "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml",
  6537. "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml",
  6538. "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml",
  6539. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6540. "ref/xamarinios10/_._",
  6541. "ref/xamarinmac20/_._"
  6542. ]
  6543. },
  6544. "System.IO.IsolatedStorage/4.0.0": {
  6545. "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==",
  6546. "type": "package",
  6547. "files": [
  6548. "System.IO.IsolatedStorage.4.0.0.nupkg.sha512",
  6549. "System.IO.IsolatedStorage.nuspec",
  6550. "lib/MonoAndroid10/_._",
  6551. "lib/MonoTouch10/_._",
  6552. "lib/netcore50/System.IO.IsolatedStorage.dll",
  6553. "lib/xamarinios10/_._",
  6554. "lib/xamarinmac20/_._",
  6555. "ref/MonoAndroid10/_._",
  6556. "ref/MonoTouch10/_._",
  6557. "ref/dotnet/System.IO.IsolatedStorage.dll",
  6558. "ref/dotnet/System.IO.IsolatedStorage.xml",
  6559. "ref/dotnet/de/System.IO.IsolatedStorage.xml",
  6560. "ref/dotnet/es/System.IO.IsolatedStorage.xml",
  6561. "ref/dotnet/fr/System.IO.IsolatedStorage.xml",
  6562. "ref/dotnet/it/System.IO.IsolatedStorage.xml",
  6563. "ref/dotnet/ja/System.IO.IsolatedStorage.xml",
  6564. "ref/dotnet/ko/System.IO.IsolatedStorage.xml",
  6565. "ref/dotnet/ru/System.IO.IsolatedStorage.xml",
  6566. "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml",
  6567. "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml",
  6568. "ref/xamarinios10/_._",
  6569. "ref/xamarinmac20/_._"
  6570. ]
  6571. },
  6572. "System.IO.UnmanagedMemoryStream/4.0.0": {
  6573. "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==",
  6574. "type": "package",
  6575. "files": [
  6576. "System.IO.UnmanagedMemoryStream.4.0.0.nupkg.sha512",
  6577. "System.IO.UnmanagedMemoryStream.nuspec",
  6578. "lib/MonoAndroid10/_._",
  6579. "lib/MonoTouch10/_._",
  6580. "lib/dotnet/System.IO.UnmanagedMemoryStream.dll",
  6581. "lib/net46/System.IO.UnmanagedMemoryStream.dll",
  6582. "lib/xamarinios10/_._",
  6583. "lib/xamarinmac20/_._",
  6584. "ref/MonoAndroid10/_._",
  6585. "ref/MonoTouch10/_._",
  6586. "ref/dotnet/System.IO.UnmanagedMemoryStream.dll",
  6587. "ref/dotnet/System.IO.UnmanagedMemoryStream.xml",
  6588. "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml",
  6589. "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml",
  6590. "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml",
  6591. "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml",
  6592. "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml",
  6593. "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml",
  6594. "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml",
  6595. "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml",
  6596. "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml",
  6597. "ref/net46/System.IO.UnmanagedMemoryStream.dll",
  6598. "ref/xamarinios10/_._",
  6599. "ref/xamarinmac20/_._"
  6600. ]
  6601. },
  6602. "System.Linq/4.0.0": {
  6603. "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==",
  6604. "type": "package",
  6605. "files": [
  6606. "System.Linq.4.0.0.nupkg.sha512",
  6607. "System.Linq.nuspec",
  6608. "lib/dotnet/System.Linq.dll",
  6609. "lib/net45/_._",
  6610. "lib/netcore50/System.Linq.dll",
  6611. "lib/win8/_._",
  6612. "lib/wp80/_._",
  6613. "lib/wpa81/_._",
  6614. "ref/dotnet/System.Linq.dll",
  6615. "ref/dotnet/System.Linq.xml",
  6616. "ref/dotnet/de/System.Linq.xml",
  6617. "ref/dotnet/es/System.Linq.xml",
  6618. "ref/dotnet/fr/System.Linq.xml",
  6619. "ref/dotnet/it/System.Linq.xml",
  6620. "ref/dotnet/ja/System.Linq.xml",
  6621. "ref/dotnet/ko/System.Linq.xml",
  6622. "ref/dotnet/ru/System.Linq.xml",
  6623. "ref/dotnet/zh-hans/System.Linq.xml",
  6624. "ref/dotnet/zh-hant/System.Linq.xml",
  6625. "ref/net45/_._",
  6626. "ref/netcore50/System.Linq.dll",
  6627. "ref/netcore50/System.Linq.xml",
  6628. "ref/win8/_._",
  6629. "ref/wp80/_._",
  6630. "ref/wpa81/_._"
  6631. ]
  6632. },
  6633. "System.Linq.Expressions/4.0.10": {
  6634. "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==",
  6635. "type": "package",
  6636. "files": [
  6637. "System.Linq.Expressions.4.0.10.nupkg.sha512",
  6638. "System.Linq.Expressions.nuspec",
  6639. "lib/DNXCore50/System.Linq.Expressions.dll",
  6640. "lib/MonoAndroid10/_._",
  6641. "lib/MonoTouch10/_._",
  6642. "lib/net46/_._",
  6643. "lib/netcore50/System.Linq.Expressions.dll",
  6644. "lib/xamarinios10/_._",
  6645. "lib/xamarinmac20/_._",
  6646. "ref/MonoAndroid10/_._",
  6647. "ref/MonoTouch10/_._",
  6648. "ref/dotnet/System.Linq.Expressions.dll",
  6649. "ref/dotnet/System.Linq.Expressions.xml",
  6650. "ref/dotnet/de/System.Linq.Expressions.xml",
  6651. "ref/dotnet/es/System.Linq.Expressions.xml",
  6652. "ref/dotnet/fr/System.Linq.Expressions.xml",
  6653. "ref/dotnet/it/System.Linq.Expressions.xml",
  6654. "ref/dotnet/ja/System.Linq.Expressions.xml",
  6655. "ref/dotnet/ko/System.Linq.Expressions.xml",
  6656. "ref/dotnet/ru/System.Linq.Expressions.xml",
  6657. "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
  6658. "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
  6659. "ref/net46/_._",
  6660. "ref/xamarinios10/_._",
  6661. "ref/xamarinmac20/_._",
  6662. "runtime.json",
  6663. "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll"
  6664. ]
  6665. },
  6666. "System.Linq.Parallel/4.0.0": {
  6667. "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==",
  6668. "type": "package",
  6669. "files": [
  6670. "System.Linq.Parallel.4.0.0.nupkg.sha512",
  6671. "System.Linq.Parallel.nuspec",
  6672. "lib/dotnet/System.Linq.Parallel.dll",
  6673. "lib/net45/_._",
  6674. "lib/netcore50/System.Linq.Parallel.dll",
  6675. "lib/win8/_._",
  6676. "lib/wpa81/_._",
  6677. "ref/dotnet/System.Linq.Parallel.dll",
  6678. "ref/dotnet/System.Linq.Parallel.xml",
  6679. "ref/dotnet/de/System.Linq.Parallel.xml",
  6680. "ref/dotnet/es/System.Linq.Parallel.xml",
  6681. "ref/dotnet/fr/System.Linq.Parallel.xml",
  6682. "ref/dotnet/it/System.Linq.Parallel.xml",
  6683. "ref/dotnet/ja/System.Linq.Parallel.xml",
  6684. "ref/dotnet/ko/System.Linq.Parallel.xml",
  6685. "ref/dotnet/ru/System.Linq.Parallel.xml",
  6686. "ref/dotnet/zh-hans/System.Linq.Parallel.xml",
  6687. "ref/dotnet/zh-hant/System.Linq.Parallel.xml",
  6688. "ref/net45/_._",
  6689. "ref/netcore50/System.Linq.Parallel.dll",
  6690. "ref/netcore50/System.Linq.Parallel.xml",
  6691. "ref/win8/_._",
  6692. "ref/wpa81/_._"
  6693. ]
  6694. },
  6695. "System.Linq.Queryable/4.0.0": {
  6696. "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==",
  6697. "type": "package",
  6698. "files": [
  6699. "System.Linq.Queryable.4.0.0.nupkg.sha512",
  6700. "System.Linq.Queryable.nuspec",
  6701. "lib/dotnet/System.Linq.Queryable.dll",
  6702. "lib/net45/_._",
  6703. "lib/netcore50/System.Linq.Queryable.dll",
  6704. "lib/win8/_._",
  6705. "lib/wp80/_._",
  6706. "lib/wpa81/_._",
  6707. "ref/dotnet/System.Linq.Queryable.dll",
  6708. "ref/dotnet/System.Linq.Queryable.xml",
  6709. "ref/dotnet/de/System.Linq.Queryable.xml",
  6710. "ref/dotnet/es/System.Linq.Queryable.xml",
  6711. "ref/dotnet/fr/System.Linq.Queryable.xml",
  6712. "ref/dotnet/it/System.Linq.Queryable.xml",
  6713. "ref/dotnet/ja/System.Linq.Queryable.xml",
  6714. "ref/dotnet/ko/System.Linq.Queryable.xml",
  6715. "ref/dotnet/ru/System.Linq.Queryable.xml",
  6716. "ref/dotnet/zh-hans/System.Linq.Queryable.xml",
  6717. "ref/dotnet/zh-hant/System.Linq.Queryable.xml",
  6718. "ref/net45/_._",
  6719. "ref/netcore50/System.Linq.Queryable.dll",
  6720. "ref/netcore50/System.Linq.Queryable.xml",
  6721. "ref/win8/_._",
  6722. "ref/wp80/_._",
  6723. "ref/wpa81/_._"
  6724. ]
  6725. },
  6726. "System.Net.Http/4.0.0": {
  6727. "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==",
  6728. "type": "package",
  6729. "files": [
  6730. "System.Net.Http.4.0.0.nupkg.sha512",
  6731. "System.Net.Http.nuspec",
  6732. "lib/DNXCore50/System.Net.Http.dll",
  6733. "lib/net45/_._",
  6734. "lib/netcore50/System.Net.Http.dll",
  6735. "lib/win8/_._",
  6736. "lib/wpa81/_._",
  6737. "ref/dotnet/System.Net.Http.dll",
  6738. "ref/dotnet/System.Net.Http.xml",
  6739. "ref/dotnet/de/System.Net.Http.xml",
  6740. "ref/dotnet/es/System.Net.Http.xml",
  6741. "ref/dotnet/fr/System.Net.Http.xml",
  6742. "ref/dotnet/it/System.Net.Http.xml",
  6743. "ref/dotnet/ja/System.Net.Http.xml",
  6744. "ref/dotnet/ko/System.Net.Http.xml",
  6745. "ref/dotnet/ru/System.Net.Http.xml",
  6746. "ref/dotnet/zh-hans/System.Net.Http.xml",
  6747. "ref/dotnet/zh-hant/System.Net.Http.xml",
  6748. "ref/net45/_._",
  6749. "ref/netcore50/System.Net.Http.dll",
  6750. "ref/netcore50/System.Net.Http.xml",
  6751. "ref/win8/_._",
  6752. "ref/wpa81/_._"
  6753. ]
  6754. },
  6755. "System.Net.Http.Rtc/4.0.0": {
  6756. "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==",
  6757. "type": "package",
  6758. "files": [
  6759. "System.Net.Http.Rtc.4.0.0.nupkg.sha512",
  6760. "System.Net.Http.Rtc.nuspec",
  6761. "lib/netcore50/System.Net.Http.Rtc.dll",
  6762. "lib/win8/_._",
  6763. "ref/dotnet/System.Net.Http.Rtc.dll",
  6764. "ref/dotnet/System.Net.Http.Rtc.xml",
  6765. "ref/dotnet/de/System.Net.Http.Rtc.xml",
  6766. "ref/dotnet/es/System.Net.Http.Rtc.xml",
  6767. "ref/dotnet/fr/System.Net.Http.Rtc.xml",
  6768. "ref/dotnet/it/System.Net.Http.Rtc.xml",
  6769. "ref/dotnet/ja/System.Net.Http.Rtc.xml",
  6770. "ref/dotnet/ko/System.Net.Http.Rtc.xml",
  6771. "ref/dotnet/ru/System.Net.Http.Rtc.xml",
  6772. "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml",
  6773. "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml",
  6774. "ref/netcore50/System.Net.Http.Rtc.dll",
  6775. "ref/netcore50/System.Net.Http.Rtc.xml",
  6776. "ref/win8/_._"
  6777. ]
  6778. },
  6779. "System.Net.NetworkInformation/4.0.0": {
  6780. "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==",
  6781. "type": "package",
  6782. "files": [
  6783. "System.Net.NetworkInformation.4.0.0.nupkg.sha512",
  6784. "System.Net.NetworkInformation.nuspec",
  6785. "lib/MonoAndroid10/_._",
  6786. "lib/MonoTouch10/_._",
  6787. "lib/net45/_._",
  6788. "lib/netcore50/System.Net.NetworkInformation.dll",
  6789. "lib/win8/_._",
  6790. "lib/wp80/_._",
  6791. "lib/wpa81/_._",
  6792. "lib/xamarinios10/_._",
  6793. "lib/xamarinmac20/_._",
  6794. "ref/MonoAndroid10/_._",
  6795. "ref/MonoTouch10/_._",
  6796. "ref/dotnet/System.Net.NetworkInformation.dll",
  6797. "ref/dotnet/System.Net.NetworkInformation.xml",
  6798. "ref/dotnet/de/System.Net.NetworkInformation.xml",
  6799. "ref/dotnet/es/System.Net.NetworkInformation.xml",
  6800. "ref/dotnet/fr/System.Net.NetworkInformation.xml",
  6801. "ref/dotnet/it/System.Net.NetworkInformation.xml",
  6802. "ref/dotnet/ja/System.Net.NetworkInformation.xml",
  6803. "ref/dotnet/ko/System.Net.NetworkInformation.xml",
  6804. "ref/dotnet/ru/System.Net.NetworkInformation.xml",
  6805. "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml",
  6806. "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml",
  6807. "ref/net45/_._",
  6808. "ref/netcore50/System.Net.NetworkInformation.dll",
  6809. "ref/netcore50/System.Net.NetworkInformation.xml",
  6810. "ref/win8/_._",
  6811. "ref/wp80/_._",
  6812. "ref/wpa81/_._",
  6813. "ref/xamarinios10/_._",
  6814. "ref/xamarinmac20/_._"
  6815. ]
  6816. },
  6817. "System.Net.Primitives/4.0.10": {
  6818. "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==",
  6819. "type": "package",
  6820. "files": [
  6821. "System.Net.Primitives.4.0.10.nupkg.sha512",
  6822. "System.Net.Primitives.nuspec",
  6823. "lib/DNXCore50/System.Net.Primitives.dll",
  6824. "lib/MonoAndroid10/_._",
  6825. "lib/MonoTouch10/_._",
  6826. "lib/net46/_._",
  6827. "lib/netcore50/System.Net.Primitives.dll",
  6828. "lib/xamarinios10/_._",
  6829. "lib/xamarinmac20/_._",
  6830. "ref/MonoAndroid10/_._",
  6831. "ref/MonoTouch10/_._",
  6832. "ref/dotnet/System.Net.Primitives.dll",
  6833. "ref/dotnet/System.Net.Primitives.xml",
  6834. "ref/dotnet/de/System.Net.Primitives.xml",
  6835. "ref/dotnet/es/System.Net.Primitives.xml",
  6836. "ref/dotnet/fr/System.Net.Primitives.xml",
  6837. "ref/dotnet/it/System.Net.Primitives.xml",
  6838. "ref/dotnet/ja/System.Net.Primitives.xml",
  6839. "ref/dotnet/ko/System.Net.Primitives.xml",
  6840. "ref/dotnet/ru/System.Net.Primitives.xml",
  6841. "ref/dotnet/zh-hans/System.Net.Primitives.xml",
  6842. "ref/dotnet/zh-hant/System.Net.Primitives.xml",
  6843. "ref/net46/_._",
  6844. "ref/xamarinios10/_._",
  6845. "ref/xamarinmac20/_._"
  6846. ]
  6847. },
  6848. "System.Net.Requests/4.0.10": {
  6849. "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==",
  6850. "type": "package",
  6851. "files": [
  6852. "System.Net.Requests.4.0.10.nupkg.sha512",
  6853. "System.Net.Requests.nuspec",
  6854. "lib/MonoAndroid10/_._",
  6855. "lib/MonoTouch10/_._",
  6856. "lib/dotnet/System.Net.Requests.dll",
  6857. "lib/net46/_._",
  6858. "lib/xamarinios10/_._",
  6859. "lib/xamarinmac20/_._",
  6860. "ref/MonoAndroid10/_._",
  6861. "ref/MonoTouch10/_._",
  6862. "ref/dotnet/System.Net.Requests.dll",
  6863. "ref/dotnet/System.Net.Requests.xml",
  6864. "ref/dotnet/de/System.Net.Requests.xml",
  6865. "ref/dotnet/es/System.Net.Requests.xml",
  6866. "ref/dotnet/fr/System.Net.Requests.xml",
  6867. "ref/dotnet/it/System.Net.Requests.xml",
  6868. "ref/dotnet/ja/System.Net.Requests.xml",
  6869. "ref/dotnet/ko/System.Net.Requests.xml",
  6870. "ref/dotnet/ru/System.Net.Requests.xml",
  6871. "ref/dotnet/zh-hans/System.Net.Requests.xml",
  6872. "ref/dotnet/zh-hant/System.Net.Requests.xml",
  6873. "ref/net46/_._",
  6874. "ref/xamarinios10/_._",
  6875. "ref/xamarinmac20/_._"
  6876. ]
  6877. },
  6878. "System.Net.Sockets/4.0.0": {
  6879. "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==",
  6880. "type": "package",
  6881. "files": [
  6882. "System.Net.Sockets.4.0.0.nupkg.sha512",
  6883. "System.Net.Sockets.nuspec",
  6884. "lib/MonoAndroid10/_._",
  6885. "lib/MonoTouch10/_._",
  6886. "lib/net46/System.Net.Sockets.dll",
  6887. "lib/netcore50/System.Net.Sockets.dll",
  6888. "lib/xamarinios10/_._",
  6889. "lib/xamarinmac20/_._",
  6890. "ref/MonoAndroid10/_._",
  6891. "ref/MonoTouch10/_._",
  6892. "ref/dotnet/System.Net.Sockets.dll",
  6893. "ref/dotnet/System.Net.Sockets.xml",
  6894. "ref/dotnet/de/System.Net.Sockets.xml",
  6895. "ref/dotnet/es/System.Net.Sockets.xml",
  6896. "ref/dotnet/fr/System.Net.Sockets.xml",
  6897. "ref/dotnet/it/System.Net.Sockets.xml",
  6898. "ref/dotnet/ja/System.Net.Sockets.xml",
  6899. "ref/dotnet/ko/System.Net.Sockets.xml",
  6900. "ref/dotnet/ru/System.Net.Sockets.xml",
  6901. "ref/dotnet/zh-hans/System.Net.Sockets.xml",
  6902. "ref/dotnet/zh-hant/System.Net.Sockets.xml",
  6903. "ref/net46/System.Net.Sockets.dll",
  6904. "ref/xamarinios10/_._",
  6905. "ref/xamarinmac20/_._"
  6906. ]
  6907. },
  6908. "System.Net.WebHeaderCollection/4.0.0": {
  6909. "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==",
  6910. "type": "package",
  6911. "files": [
  6912. "System.Net.WebHeaderCollection.4.0.0.nupkg.sha512",
  6913. "System.Net.WebHeaderCollection.nuspec",
  6914. "lib/MonoAndroid10/_._",
  6915. "lib/MonoTouch10/_._",
  6916. "lib/dotnet/System.Net.WebHeaderCollection.dll",
  6917. "lib/net46/_._",
  6918. "lib/xamarinios10/_._",
  6919. "lib/xamarinmac20/_._",
  6920. "ref/MonoAndroid10/_._",
  6921. "ref/MonoTouch10/_._",
  6922. "ref/dotnet/System.Net.WebHeaderCollection.dll",
  6923. "ref/dotnet/System.Net.WebHeaderCollection.xml",
  6924. "ref/dotnet/de/System.Net.WebHeaderCollection.xml",
  6925. "ref/dotnet/es/System.Net.WebHeaderCollection.xml",
  6926. "ref/dotnet/fr/System.Net.WebHeaderCollection.xml",
  6927. "ref/dotnet/it/System.Net.WebHeaderCollection.xml",
  6928. "ref/dotnet/ja/System.Net.WebHeaderCollection.xml",
  6929. "ref/dotnet/ko/System.Net.WebHeaderCollection.xml",
  6930. "ref/dotnet/ru/System.Net.WebHeaderCollection.xml",
  6931. "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml",
  6932. "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml",
  6933. "ref/net46/_._",
  6934. "ref/xamarinios10/_._",
  6935. "ref/xamarinmac20/_._"
  6936. ]
  6937. },
  6938. "System.Numerics.Vectors/4.1.0": {
  6939. "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==",
  6940. "type": "package",
  6941. "files": [
  6942. "System.Numerics.Vectors.4.1.0.nupkg.sha512",
  6943. "System.Numerics.Vectors.nuspec",
  6944. "lib/MonoAndroid10/_._",
  6945. "lib/MonoTouch10/_._",
  6946. "lib/dotnet/System.Numerics.Vectors.dll",
  6947. "lib/net46/System.Numerics.Vectors.dll",
  6948. "lib/xamarinios10/_._",
  6949. "lib/xamarinmac20/_._",
  6950. "ref/MonoAndroid10/_._",
  6951. "ref/MonoTouch10/_._",
  6952. "ref/dotnet/System.Numerics.Vectors.dll",
  6953. "ref/net46/System.Numerics.Vectors.dll",
  6954. "ref/xamarinios10/_._",
  6955. "ref/xamarinmac20/_._"
  6956. ]
  6957. },
  6958. "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
  6959. "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==",
  6960. "type": "package",
  6961. "files": [
  6962. "System.Numerics.Vectors.WindowsRuntime.4.0.0.nupkg.sha512",
  6963. "System.Numerics.Vectors.WindowsRuntime.nuspec",
  6964. "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll"
  6965. ]
  6966. },
  6967. "System.ObjectModel/4.0.10": {
  6968. "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==",
  6969. "type": "package",
  6970. "files": [
  6971. "System.ObjectModel.4.0.10.nupkg.sha512",
  6972. "System.ObjectModel.nuspec",
  6973. "lib/MonoAndroid10/_._",
  6974. "lib/MonoTouch10/_._",
  6975. "lib/dotnet/System.ObjectModel.dll",
  6976. "lib/net46/_._",
  6977. "lib/xamarinios10/_._",
  6978. "lib/xamarinmac20/_._",
  6979. "ref/MonoAndroid10/_._",
  6980. "ref/MonoTouch10/_._",
  6981. "ref/dotnet/System.ObjectModel.dll",
  6982. "ref/dotnet/System.ObjectModel.xml",
  6983. "ref/dotnet/de/System.ObjectModel.xml",
  6984. "ref/dotnet/es/System.ObjectModel.xml",
  6985. "ref/dotnet/fr/System.ObjectModel.xml",
  6986. "ref/dotnet/it/System.ObjectModel.xml",
  6987. "ref/dotnet/ja/System.ObjectModel.xml",
  6988. "ref/dotnet/ko/System.ObjectModel.xml",
  6989. "ref/dotnet/ru/System.ObjectModel.xml",
  6990. "ref/dotnet/zh-hans/System.ObjectModel.xml",
  6991. "ref/dotnet/zh-hant/System.ObjectModel.xml",
  6992. "ref/net46/_._",
  6993. "ref/xamarinios10/_._",
  6994. "ref/xamarinmac20/_._"
  6995. ]
  6996. },
  6997. "System.Private.DataContractSerialization/4.1.0": {
  6998. "sha512": "jihi0lC7TMGx8QtMuz3tRFoXdP0BHbceAdd3gvRbNnxM3W93jSRE/cocQyGf64wlC/1etjHKPwnwdu+PDJkjnA==",
  6999. "type": "package",
  7000. "files": [
  7001. "System.Private.DataContractSerialization.4.1.0.nupkg.sha512",
  7002. "System.Private.DataContractSerialization.nuspec",
  7003. "ThirdPartyNotices.txt",
  7004. "dotnet_library_license.txt",
  7005. "ref/dnxcore50/_._",
  7006. "ref/netcore50/_._",
  7007. "runtime.json"
  7008. ]
  7009. },
  7010. "System.Private.Networking/4.0.0": {
  7011. "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==",
  7012. "type": "package",
  7013. "files": [
  7014. "System.Private.Networking.4.0.0.nupkg.sha512",
  7015. "System.Private.Networking.nuspec",
  7016. "lib/DNXCore50/System.Private.Networking.dll",
  7017. "lib/netcore50/System.Private.Networking.dll",
  7018. "ref/dnxcore50/_._",
  7019. "ref/netcore50/_._"
  7020. ]
  7021. },
  7022. "System.Private.ServiceModel/4.0.0": {
  7023. "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==",
  7024. "type": "package",
  7025. "files": [
  7026. "System.Private.ServiceModel.4.0.0.nupkg.sha512",
  7027. "System.Private.ServiceModel.nuspec",
  7028. "lib/DNXCore50/System.Private.ServiceModel.dll",
  7029. "lib/netcore50/System.Private.ServiceModel.dll",
  7030. "ref/dnxcore50/_._",
  7031. "ref/netcore50/_._"
  7032. ]
  7033. },
  7034. "System.Private.Uri/4.0.0": {
  7035. "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==",
  7036. "type": "package",
  7037. "files": [
  7038. "System.Private.Uri.4.0.0.nupkg.sha512",
  7039. "System.Private.Uri.nuspec",
  7040. "lib/DNXCore50/System.Private.Uri.dll",
  7041. "lib/netcore50/System.Private.Uri.dll",
  7042. "ref/dnxcore50/_._",
  7043. "ref/netcore50/_._",
  7044. "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
  7045. ]
  7046. },
  7047. "System.Reflection/4.0.10": {
  7048. "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==",
  7049. "type": "package",
  7050. "files": [
  7051. "System.Reflection.4.0.10.nupkg.sha512",
  7052. "System.Reflection.nuspec",
  7053. "lib/DNXCore50/System.Reflection.dll",
  7054. "lib/MonoAndroid10/_._",
  7055. "lib/MonoTouch10/_._",
  7056. "lib/net46/_._",
  7057. "lib/netcore50/System.Reflection.dll",
  7058. "lib/xamarinios10/_._",
  7059. "lib/xamarinmac20/_._",
  7060. "ref/MonoAndroid10/_._",
  7061. "ref/MonoTouch10/_._",
  7062. "ref/dotnet/System.Reflection.dll",
  7063. "ref/dotnet/System.Reflection.xml",
  7064. "ref/dotnet/de/System.Reflection.xml",
  7065. "ref/dotnet/es/System.Reflection.xml",
  7066. "ref/dotnet/fr/System.Reflection.xml",
  7067. "ref/dotnet/it/System.Reflection.xml",
  7068. "ref/dotnet/ja/System.Reflection.xml",
  7069. "ref/dotnet/ko/System.Reflection.xml",
  7070. "ref/dotnet/ru/System.Reflection.xml",
  7071. "ref/dotnet/zh-hans/System.Reflection.xml",
  7072. "ref/dotnet/zh-hant/System.Reflection.xml",
  7073. "ref/net46/_._",
  7074. "ref/xamarinios10/_._",
  7075. "ref/xamarinmac20/_._",
  7076. "runtimes/win8-aot/lib/netcore50/System.Reflection.dll"
  7077. ]
  7078. },
  7079. "System.Reflection.Context/4.0.0": {
  7080. "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==",
  7081. "type": "package",
  7082. "files": [
  7083. "System.Reflection.Context.4.0.0.nupkg.sha512",
  7084. "System.Reflection.Context.nuspec",
  7085. "lib/net45/_._",
  7086. "lib/netcore50/System.Reflection.Context.dll",
  7087. "lib/win8/_._",
  7088. "ref/dotnet/System.Reflection.Context.dll",
  7089. "ref/dotnet/System.Reflection.Context.xml",
  7090. "ref/dotnet/de/System.Reflection.Context.xml",
  7091. "ref/dotnet/es/System.Reflection.Context.xml",
  7092. "ref/dotnet/fr/System.Reflection.Context.xml",
  7093. "ref/dotnet/it/System.Reflection.Context.xml",
  7094. "ref/dotnet/ja/System.Reflection.Context.xml",
  7095. "ref/dotnet/ko/System.Reflection.Context.xml",
  7096. "ref/dotnet/ru/System.Reflection.Context.xml",
  7097. "ref/dotnet/zh-hans/System.Reflection.Context.xml",
  7098. "ref/dotnet/zh-hant/System.Reflection.Context.xml",
  7099. "ref/net45/_._",
  7100. "ref/netcore50/System.Reflection.Context.dll",
  7101. "ref/netcore50/System.Reflection.Context.xml",
  7102. "ref/win8/_._"
  7103. ]
  7104. },
  7105. "System.Reflection.DispatchProxy/4.0.0": {
  7106. "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==",
  7107. "type": "package",
  7108. "files": [
  7109. "System.Reflection.DispatchProxy.4.0.0.nupkg.sha512",
  7110. "System.Reflection.DispatchProxy.nuspec",
  7111. "lib/DNXCore50/System.Reflection.DispatchProxy.dll",
  7112. "lib/MonoAndroid10/_._",
  7113. "lib/MonoTouch10/_._",
  7114. "lib/net46/System.Reflection.DispatchProxy.dll",
  7115. "lib/netcore50/System.Reflection.DispatchProxy.dll",
  7116. "lib/xamarinios10/_._",
  7117. "lib/xamarinmac20/_._",
  7118. "ref/MonoAndroid10/_._",
  7119. "ref/MonoTouch10/_._",
  7120. "ref/dotnet/System.Reflection.DispatchProxy.dll",
  7121. "ref/dotnet/System.Reflection.DispatchProxy.xml",
  7122. "ref/dotnet/de/System.Reflection.DispatchProxy.xml",
  7123. "ref/dotnet/es/System.Reflection.DispatchProxy.xml",
  7124. "ref/dotnet/fr/System.Reflection.DispatchProxy.xml",
  7125. "ref/dotnet/it/System.Reflection.DispatchProxy.xml",
  7126. "ref/dotnet/ja/System.Reflection.DispatchProxy.xml",
  7127. "ref/dotnet/ko/System.Reflection.DispatchProxy.xml",
  7128. "ref/dotnet/ru/System.Reflection.DispatchProxy.xml",
  7129. "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml",
  7130. "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml",
  7131. "ref/xamarinios10/_._",
  7132. "ref/xamarinmac20/_._",
  7133. "runtime.json",
  7134. "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
  7135. ]
  7136. },
  7137. "System.Reflection.Emit/4.0.0": {
  7138. "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==",
  7139. "type": "package",
  7140. "files": [
  7141. "System.Reflection.Emit.4.0.0.nupkg.sha512",
  7142. "System.Reflection.Emit.nuspec",
  7143. "lib/DNXCore50/System.Reflection.Emit.dll",
  7144. "lib/MonoAndroid10/_._",
  7145. "lib/net45/_._",
  7146. "lib/netcore50/System.Reflection.Emit.dll",
  7147. "lib/xamarinmac20/_._",
  7148. "ref/MonoAndroid10/_._",
  7149. "ref/dotnet/System.Reflection.Emit.dll",
  7150. "ref/dotnet/System.Reflection.Emit.xml",
  7151. "ref/dotnet/de/System.Reflection.Emit.xml",
  7152. "ref/dotnet/es/System.Reflection.Emit.xml",
  7153. "ref/dotnet/fr/System.Reflection.Emit.xml",
  7154. "ref/dotnet/it/System.Reflection.Emit.xml",
  7155. "ref/dotnet/ja/System.Reflection.Emit.xml",
  7156. "ref/dotnet/ko/System.Reflection.Emit.xml",
  7157. "ref/dotnet/ru/System.Reflection.Emit.xml",
  7158. "ref/dotnet/zh-hans/System.Reflection.Emit.xml",
  7159. "ref/dotnet/zh-hant/System.Reflection.Emit.xml",
  7160. "ref/net45/_._",
  7161. "ref/xamarinmac20/_._"
  7162. ]
  7163. },
  7164. "System.Reflection.Emit.ILGeneration/4.0.0": {
  7165. "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==",
  7166. "type": "package",
  7167. "files": [
  7168. "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512",
  7169. "System.Reflection.Emit.ILGeneration.nuspec",
  7170. "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
  7171. "lib/net45/_._",
  7172. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7173. "lib/wp80/_._",
  7174. "ref/dotnet/System.Reflection.Emit.ILGeneration.dll",
  7175. "ref/dotnet/System.Reflection.Emit.ILGeneration.xml",
  7176. "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml",
  7177. "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml",
  7178. "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml",
  7179. "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml",
  7180. "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml",
  7181. "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml",
  7182. "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml",
  7183. "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7184. "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7185. "ref/net45/_._",
  7186. "ref/wp80/_._"
  7187. ]
  7188. },
  7189. "System.Reflection.Emit.Lightweight/4.0.0": {
  7190. "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==",
  7191. "type": "package",
  7192. "files": [
  7193. "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512",
  7194. "System.Reflection.Emit.Lightweight.nuspec",
  7195. "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll",
  7196. "lib/net45/_._",
  7197. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7198. "lib/wp80/_._",
  7199. "ref/dotnet/System.Reflection.Emit.Lightweight.dll",
  7200. "ref/dotnet/System.Reflection.Emit.Lightweight.xml",
  7201. "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml",
  7202. "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml",
  7203. "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml",
  7204. "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml",
  7205. "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml",
  7206. "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml",
  7207. "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml",
  7208. "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7209. "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7210. "ref/net45/_._",
  7211. "ref/wp80/_._"
  7212. ]
  7213. },
  7214. "System.Reflection.Extensions/4.0.0": {
  7215. "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==",
  7216. "type": "package",
  7217. "files": [
  7218. "System.Reflection.Extensions.4.0.0.nupkg.sha512",
  7219. "System.Reflection.Extensions.nuspec",
  7220. "lib/DNXCore50/System.Reflection.Extensions.dll",
  7221. "lib/net45/_._",
  7222. "lib/netcore50/System.Reflection.Extensions.dll",
  7223. "lib/win8/_._",
  7224. "lib/wp80/_._",
  7225. "lib/wpa81/_._",
  7226. "ref/dotnet/System.Reflection.Extensions.dll",
  7227. "ref/dotnet/System.Reflection.Extensions.xml",
  7228. "ref/dotnet/de/System.Reflection.Extensions.xml",
  7229. "ref/dotnet/es/System.Reflection.Extensions.xml",
  7230. "ref/dotnet/fr/System.Reflection.Extensions.xml",
  7231. "ref/dotnet/it/System.Reflection.Extensions.xml",
  7232. "ref/dotnet/ja/System.Reflection.Extensions.xml",
  7233. "ref/dotnet/ko/System.Reflection.Extensions.xml",
  7234. "ref/dotnet/ru/System.Reflection.Extensions.xml",
  7235. "ref/dotnet/zh-hans/System.Reflection.Extensions.xml",
  7236. "ref/dotnet/zh-hant/System.Reflection.Extensions.xml",
  7237. "ref/net45/_._",
  7238. "ref/netcore50/System.Reflection.Extensions.dll",
  7239. "ref/netcore50/System.Reflection.Extensions.xml",
  7240. "ref/win8/_._",
  7241. "ref/wp80/_._",
  7242. "ref/wpa81/_._",
  7243. "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll"
  7244. ]
  7245. },
  7246. "System.Reflection.Metadata/1.0.22": {
  7247. "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==",
  7248. "type": "package",
  7249. "files": [
  7250. "System.Reflection.Metadata.1.0.22.nupkg.sha512",
  7251. "System.Reflection.Metadata.nuspec",
  7252. "lib/dotnet/System.Reflection.Metadata.dll",
  7253. "lib/dotnet/System.Reflection.Metadata.xml",
  7254. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7255. "lib/portable-net45+win8/System.Reflection.Metadata.xml"
  7256. ]
  7257. },
  7258. "System.Reflection.Primitives/4.0.0": {
  7259. "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==",
  7260. "type": "package",
  7261. "files": [
  7262. "System.Reflection.Primitives.4.0.0.nupkg.sha512",
  7263. "System.Reflection.Primitives.nuspec",
  7264. "lib/DNXCore50/System.Reflection.Primitives.dll",
  7265. "lib/net45/_._",
  7266. "lib/netcore50/System.Reflection.Primitives.dll",
  7267. "lib/win8/_._",
  7268. "lib/wp80/_._",
  7269. "lib/wpa81/_._",
  7270. "ref/dotnet/System.Reflection.Primitives.dll",
  7271. "ref/dotnet/System.Reflection.Primitives.xml",
  7272. "ref/dotnet/de/System.Reflection.Primitives.xml",
  7273. "ref/dotnet/es/System.Reflection.Primitives.xml",
  7274. "ref/dotnet/fr/System.Reflection.Primitives.xml",
  7275. "ref/dotnet/it/System.Reflection.Primitives.xml",
  7276. "ref/dotnet/ja/System.Reflection.Primitives.xml",
  7277. "ref/dotnet/ko/System.Reflection.Primitives.xml",
  7278. "ref/dotnet/ru/System.Reflection.Primitives.xml",
  7279. "ref/dotnet/zh-hans/System.Reflection.Primitives.xml",
  7280. "ref/dotnet/zh-hant/System.Reflection.Primitives.xml",
  7281. "ref/net45/_._",
  7282. "ref/netcore50/System.Reflection.Primitives.dll",
  7283. "ref/netcore50/System.Reflection.Primitives.xml",
  7284. "ref/win8/_._",
  7285. "ref/wp80/_._",
  7286. "ref/wpa81/_._",
  7287. "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll"
  7288. ]
  7289. },
  7290. "System.Reflection.TypeExtensions/4.0.0": {
  7291. "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==",
  7292. "type": "package",
  7293. "files": [
  7294. "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512",
  7295. "System.Reflection.TypeExtensions.nuspec",
  7296. "lib/DNXCore50/System.Reflection.TypeExtensions.dll",
  7297. "lib/MonoAndroid10/_._",
  7298. "lib/MonoTouch10/_._",
  7299. "lib/net46/System.Reflection.TypeExtensions.dll",
  7300. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7301. "lib/xamarinios10/_._",
  7302. "lib/xamarinmac20/_._",
  7303. "ref/MonoAndroid10/_._",
  7304. "ref/MonoTouch10/_._",
  7305. "ref/dotnet/System.Reflection.TypeExtensions.dll",
  7306. "ref/dotnet/System.Reflection.TypeExtensions.xml",
  7307. "ref/dotnet/de/System.Reflection.TypeExtensions.xml",
  7308. "ref/dotnet/es/System.Reflection.TypeExtensions.xml",
  7309. "ref/dotnet/fr/System.Reflection.TypeExtensions.xml",
  7310. "ref/dotnet/it/System.Reflection.TypeExtensions.xml",
  7311. "ref/dotnet/ja/System.Reflection.TypeExtensions.xml",
  7312. "ref/dotnet/ko/System.Reflection.TypeExtensions.xml",
  7313. "ref/dotnet/ru/System.Reflection.TypeExtensions.xml",
  7314. "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml",
  7315. "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml",
  7316. "ref/net46/System.Reflection.TypeExtensions.dll",
  7317. "ref/xamarinios10/_._",
  7318. "ref/xamarinmac20/_._",
  7319. "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
  7320. ]
  7321. },
  7322. "System.Resources.ResourceManager/4.0.0": {
  7323. "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==",
  7324. "type": "package",
  7325. "files": [
  7326. "System.Resources.ResourceManager.4.0.0.nupkg.sha512",
  7327. "System.Resources.ResourceManager.nuspec",
  7328. "lib/DNXCore50/System.Resources.ResourceManager.dll",
  7329. "lib/net45/_._",
  7330. "lib/netcore50/System.Resources.ResourceManager.dll",
  7331. "lib/win8/_._",
  7332. "lib/wp80/_._",
  7333. "lib/wpa81/_._",
  7334. "ref/dotnet/System.Resources.ResourceManager.dll",
  7335. "ref/dotnet/System.Resources.ResourceManager.xml",
  7336. "ref/dotnet/de/System.Resources.ResourceManager.xml",
  7337. "ref/dotnet/es/System.Resources.ResourceManager.xml",
  7338. "ref/dotnet/fr/System.Resources.ResourceManager.xml",
  7339. "ref/dotnet/it/System.Resources.ResourceManager.xml",
  7340. "ref/dotnet/ja/System.Resources.ResourceManager.xml",
  7341. "ref/dotnet/ko/System.Resources.ResourceManager.xml",
  7342. "ref/dotnet/ru/System.Resources.ResourceManager.xml",
  7343. "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml",
  7344. "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml",
  7345. "ref/net45/_._",
  7346. "ref/netcore50/System.Resources.ResourceManager.dll",
  7347. "ref/netcore50/System.Resources.ResourceManager.xml",
  7348. "ref/win8/_._",
  7349. "ref/wp80/_._",
  7350. "ref/wpa81/_._",
  7351. "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll"
  7352. ]
  7353. },
  7354. "System.Runtime/4.0.20": {
  7355. "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==",
  7356. "type": "package",
  7357. "files": [
  7358. "System.Runtime.4.0.20.nupkg.sha512",
  7359. "System.Runtime.nuspec",
  7360. "lib/DNXCore50/System.Runtime.dll",
  7361. "lib/MonoAndroid10/_._",
  7362. "lib/MonoTouch10/_._",
  7363. "lib/net46/_._",
  7364. "lib/netcore50/System.Runtime.dll",
  7365. "lib/xamarinios10/_._",
  7366. "lib/xamarinmac20/_._",
  7367. "ref/MonoAndroid10/_._",
  7368. "ref/MonoTouch10/_._",
  7369. "ref/dotnet/System.Runtime.dll",
  7370. "ref/dotnet/System.Runtime.xml",
  7371. "ref/dotnet/de/System.Runtime.xml",
  7372. "ref/dotnet/es/System.Runtime.xml",
  7373. "ref/dotnet/fr/System.Runtime.xml",
  7374. "ref/dotnet/it/System.Runtime.xml",
  7375. "ref/dotnet/ja/System.Runtime.xml",
  7376. "ref/dotnet/ko/System.Runtime.xml",
  7377. "ref/dotnet/ru/System.Runtime.xml",
  7378. "ref/dotnet/zh-hans/System.Runtime.xml",
  7379. "ref/dotnet/zh-hant/System.Runtime.xml",
  7380. "ref/net46/_._",
  7381. "ref/xamarinios10/_._",
  7382. "ref/xamarinmac20/_._",
  7383. "runtimes/win8-aot/lib/netcore50/System.Runtime.dll"
  7384. ]
  7385. },
  7386. "System.Runtime.Extensions/4.0.10": {
  7387. "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==",
  7388. "type": "package",
  7389. "files": [
  7390. "System.Runtime.Extensions.4.0.10.nupkg.sha512",
  7391. "System.Runtime.Extensions.nuspec",
  7392. "lib/DNXCore50/System.Runtime.Extensions.dll",
  7393. "lib/MonoAndroid10/_._",
  7394. "lib/MonoTouch10/_._",
  7395. "lib/net46/_._",
  7396. "lib/netcore50/System.Runtime.Extensions.dll",
  7397. "lib/xamarinios10/_._",
  7398. "lib/xamarinmac20/_._",
  7399. "ref/MonoAndroid10/_._",
  7400. "ref/MonoTouch10/_._",
  7401. "ref/dotnet/System.Runtime.Extensions.dll",
  7402. "ref/dotnet/System.Runtime.Extensions.xml",
  7403. "ref/dotnet/de/System.Runtime.Extensions.xml",
  7404. "ref/dotnet/es/System.Runtime.Extensions.xml",
  7405. "ref/dotnet/fr/System.Runtime.Extensions.xml",
  7406. "ref/dotnet/it/System.Runtime.Extensions.xml",
  7407. "ref/dotnet/ja/System.Runtime.Extensions.xml",
  7408. "ref/dotnet/ko/System.Runtime.Extensions.xml",
  7409. "ref/dotnet/ru/System.Runtime.Extensions.xml",
  7410. "ref/dotnet/zh-hans/System.Runtime.Extensions.xml",
  7411. "ref/dotnet/zh-hant/System.Runtime.Extensions.xml",
  7412. "ref/net46/_._",
  7413. "ref/xamarinios10/_._",
  7414. "ref/xamarinmac20/_._",
  7415. "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
  7416. ]
  7417. },
  7418. "System.Runtime.Handles/4.0.0": {
  7419. "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
  7420. "type": "package",
  7421. "files": [
  7422. "System.Runtime.Handles.4.0.0.nupkg.sha512",
  7423. "System.Runtime.Handles.nuspec",
  7424. "lib/DNXCore50/System.Runtime.Handles.dll",
  7425. "lib/MonoAndroid10/_._",
  7426. "lib/MonoTouch10/_._",
  7427. "lib/net46/_._",
  7428. "lib/netcore50/System.Runtime.Handles.dll",
  7429. "lib/xamarinios10/_._",
  7430. "lib/xamarinmac20/_._",
  7431. "ref/MonoAndroid10/_._",
  7432. "ref/MonoTouch10/_._",
  7433. "ref/dotnet/System.Runtime.Handles.dll",
  7434. "ref/dotnet/System.Runtime.Handles.xml",
  7435. "ref/dotnet/de/System.Runtime.Handles.xml",
  7436. "ref/dotnet/es/System.Runtime.Handles.xml",
  7437. "ref/dotnet/fr/System.Runtime.Handles.xml",
  7438. "ref/dotnet/it/System.Runtime.Handles.xml",
  7439. "ref/dotnet/ja/System.Runtime.Handles.xml",
  7440. "ref/dotnet/ko/System.Runtime.Handles.xml",
  7441. "ref/dotnet/ru/System.Runtime.Handles.xml",
  7442. "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
  7443. "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
  7444. "ref/net46/_._",
  7445. "ref/xamarinios10/_._",
  7446. "ref/xamarinmac20/_._",
  7447. "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll"
  7448. ]
  7449. },
  7450. "System.Runtime.InteropServices/4.0.20": {
  7451. "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==",
  7452. "type": "package",
  7453. "files": [
  7454. "System.Runtime.InteropServices.4.0.20.nupkg.sha512",
  7455. "System.Runtime.InteropServices.nuspec",
  7456. "lib/DNXCore50/System.Runtime.InteropServices.dll",
  7457. "lib/MonoAndroid10/_._",
  7458. "lib/MonoTouch10/_._",
  7459. "lib/net46/_._",
  7460. "lib/netcore50/System.Runtime.InteropServices.dll",
  7461. "lib/xamarinios10/_._",
  7462. "lib/xamarinmac20/_._",
  7463. "ref/MonoAndroid10/_._",
  7464. "ref/MonoTouch10/_._",
  7465. "ref/dotnet/System.Runtime.InteropServices.dll",
  7466. "ref/dotnet/System.Runtime.InteropServices.xml",
  7467. "ref/dotnet/de/System.Runtime.InteropServices.xml",
  7468. "ref/dotnet/es/System.Runtime.InteropServices.xml",
  7469. "ref/dotnet/fr/System.Runtime.InteropServices.xml",
  7470. "ref/dotnet/it/System.Runtime.InteropServices.xml",
  7471. "ref/dotnet/ja/System.Runtime.InteropServices.xml",
  7472. "ref/dotnet/ko/System.Runtime.InteropServices.xml",
  7473. "ref/dotnet/ru/System.Runtime.InteropServices.xml",
  7474. "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
  7475. "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
  7476. "ref/net46/_._",
  7477. "ref/xamarinios10/_._",
  7478. "ref/xamarinmac20/_._",
  7479. "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll"
  7480. ]
  7481. },
  7482. "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
  7483. "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==",
  7484. "type": "package",
  7485. "files": [
  7486. "System.Runtime.InteropServices.WindowsRuntime.4.0.0.nupkg.sha512",
  7487. "System.Runtime.InteropServices.WindowsRuntime.nuspec",
  7488. "lib/net45/_._",
  7489. "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  7490. "lib/win8/_._",
  7491. "lib/wp80/_._",
  7492. "lib/wpa81/_._",
  7493. "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll",
  7494. "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml",
  7495. "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml",
  7496. "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml",
  7497. "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
  7498. "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml",
  7499. "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
  7500. "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
  7501. "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
  7502. "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
  7503. "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
  7504. "ref/net45/_._",
  7505. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  7506. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
  7507. "ref/win8/_._",
  7508. "ref/wp80/_._",
  7509. "ref/wpa81/_._",
  7510. "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll"
  7511. ]
  7512. },
  7513. "System.Runtime.Numerics/4.0.0": {
  7514. "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==",
  7515. "type": "package",
  7516. "files": [
  7517. "System.Runtime.Numerics.4.0.0.nupkg.sha512",
  7518. "System.Runtime.Numerics.nuspec",
  7519. "lib/dotnet/System.Runtime.Numerics.dll",
  7520. "lib/net45/_._",
  7521. "lib/netcore50/System.Runtime.Numerics.dll",
  7522. "lib/win8/_._",
  7523. "lib/wpa81/_._",
  7524. "ref/dotnet/System.Runtime.Numerics.dll",
  7525. "ref/dotnet/System.Runtime.Numerics.xml",
  7526. "ref/dotnet/de/System.Runtime.Numerics.xml",
  7527. "ref/dotnet/es/System.Runtime.Numerics.xml",
  7528. "ref/dotnet/fr/System.Runtime.Numerics.xml",
  7529. "ref/dotnet/it/System.Runtime.Numerics.xml",
  7530. "ref/dotnet/ja/System.Runtime.Numerics.xml",
  7531. "ref/dotnet/ko/System.Runtime.Numerics.xml",
  7532. "ref/dotnet/ru/System.Runtime.Numerics.xml",
  7533. "ref/dotnet/zh-hans/System.Runtime.Numerics.xml",
  7534. "ref/dotnet/zh-hant/System.Runtime.Numerics.xml",
  7535. "ref/net45/_._",
  7536. "ref/netcore50/System.Runtime.Numerics.dll",
  7537. "ref/netcore50/System.Runtime.Numerics.xml",
  7538. "ref/win8/_._",
  7539. "ref/wpa81/_._"
  7540. ]
  7541. },
  7542. "System.Runtime.Serialization.Json/4.0.1": {
  7543. "sha512": "MUqpQDHlwFAy3v+fVzLN26SMGCPW/J2n4vfsBfScPiut/+Kp77Pcy1nWX2FC83WskFMepvmjMcXwTYZ75FCK0Q==",
  7544. "type": "package",
  7545. "files": [
  7546. "System.Runtime.Serialization.Json.4.0.1.nupkg.sha512",
  7547. "System.Runtime.Serialization.Json.nuspec",
  7548. "ThirdPartyNotices.txt",
  7549. "dotnet_library_license.txt",
  7550. "lib/DNXCore50/System.Runtime.Serialization.Json.dll",
  7551. "lib/MonoAndroid10/_._",
  7552. "lib/MonoTouch10/_._",
  7553. "lib/net45/_._",
  7554. "lib/netcore50/System.Runtime.Serialization.Json.dll",
  7555. "lib/win8/_._",
  7556. "lib/wp80/_._",
  7557. "lib/wpa81/_._",
  7558. "lib/xamarinios10/_._",
  7559. "lib/xamarinmac20/_._",
  7560. "ref/MonoAndroid10/_._",
  7561. "ref/MonoTouch10/_._",
  7562. "ref/dotnet5.1/System.Runtime.Serialization.Json.dll",
  7563. "ref/dotnet5.1/System.Runtime.Serialization.Json.xml",
  7564. "ref/dotnet5.1/de/System.Runtime.Serialization.Json.xml",
  7565. "ref/dotnet5.1/es/System.Runtime.Serialization.Json.xml",
  7566. "ref/dotnet5.1/fr/System.Runtime.Serialization.Json.xml",
  7567. "ref/dotnet5.1/it/System.Runtime.Serialization.Json.xml",
  7568. "ref/dotnet5.1/ja/System.Runtime.Serialization.Json.xml",
  7569. "ref/dotnet5.1/ko/System.Runtime.Serialization.Json.xml",
  7570. "ref/dotnet5.1/ru/System.Runtime.Serialization.Json.xml",
  7571. "ref/dotnet5.1/zh-hans/System.Runtime.Serialization.Json.xml",
  7572. "ref/dotnet5.1/zh-hant/System.Runtime.Serialization.Json.xml",
  7573. "ref/net45/_._",
  7574. "ref/netcore50/System.Runtime.Serialization.Json.dll",
  7575. "ref/netcore50/System.Runtime.Serialization.Json.xml",
  7576. "ref/netcore50/de/System.Runtime.Serialization.Json.xml",
  7577. "ref/netcore50/es/System.Runtime.Serialization.Json.xml",
  7578. "ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
  7579. "ref/netcore50/it/System.Runtime.Serialization.Json.xml",
  7580. "ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
  7581. "ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
  7582. "ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
  7583. "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
  7584. "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
  7585. "ref/win8/_._",
  7586. "ref/wp80/_._",
  7587. "ref/wpa81/_._",
  7588. "ref/xamarinios10/_._",
  7589. "ref/xamarinmac20/_._",
  7590. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll"
  7591. ]
  7592. },
  7593. "System.Runtime.Serialization.Primitives/4.1.0": {
  7594. "sha512": "2UBnpTwpEi5dzbNJ8KhbOZ7Te1XQNov9MrtJ+dcnqogjACPNzbOiGT2uU9XgZg+sdbPvr4VMvVjFwJ85uLLCuA==",
  7595. "type": "package",
  7596. "files": [
  7597. "System.Runtime.Serialization.Primitives.4.1.0.nupkg.sha512",
  7598. "System.Runtime.Serialization.Primitives.nuspec",
  7599. "ThirdPartyNotices.txt",
  7600. "dotnet_library_license.txt",
  7601. "lib/MonoAndroid10/_._",
  7602. "lib/MonoTouch10/_._",
  7603. "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll",
  7604. "lib/net45/_._",
  7605. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7606. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7607. "lib/win8/_._",
  7608. "lib/wp80/_._",
  7609. "lib/wpa81/_._",
  7610. "lib/xamarinios10/_._",
  7611. "lib/xamarinmac20/_._",
  7612. "ref/MonoAndroid10/_._",
  7613. "ref/MonoTouch10/_._",
  7614. "ref/dotnet5.1/System.Runtime.Serialization.Primitives.dll",
  7615. "ref/dotnet5.1/System.Runtime.Serialization.Primitives.xml",
  7616. "ref/dotnet5.1/de/System.Runtime.Serialization.Primitives.xml",
  7617. "ref/dotnet5.1/es/System.Runtime.Serialization.Primitives.xml",
  7618. "ref/dotnet5.1/fr/System.Runtime.Serialization.Primitives.xml",
  7619. "ref/dotnet5.1/it/System.Runtime.Serialization.Primitives.xml",
  7620. "ref/dotnet5.1/ja/System.Runtime.Serialization.Primitives.xml",
  7621. "ref/dotnet5.1/ko/System.Runtime.Serialization.Primitives.xml",
  7622. "ref/dotnet5.1/ru/System.Runtime.Serialization.Primitives.xml",
  7623. "ref/dotnet5.1/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7624. "ref/dotnet5.1/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7625. "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll",
  7626. "ref/dotnet5.4/System.Runtime.Serialization.Primitives.xml",
  7627. "ref/dotnet5.4/de/System.Runtime.Serialization.Primitives.xml",
  7628. "ref/dotnet5.4/es/System.Runtime.Serialization.Primitives.xml",
  7629. "ref/dotnet5.4/fr/System.Runtime.Serialization.Primitives.xml",
  7630. "ref/dotnet5.4/it/System.Runtime.Serialization.Primitives.xml",
  7631. "ref/dotnet5.4/ja/System.Runtime.Serialization.Primitives.xml",
  7632. "ref/dotnet5.4/ko/System.Runtime.Serialization.Primitives.xml",
  7633. "ref/dotnet5.4/ru/System.Runtime.Serialization.Primitives.xml",
  7634. "ref/dotnet5.4/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7635. "ref/dotnet5.4/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7636. "ref/net45/_._",
  7637. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7638. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7639. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7640. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7641. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7642. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7643. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7644. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7645. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7646. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7647. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7648. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7649. "ref/win8/_._",
  7650. "ref/wp80/_._",
  7651. "ref/wpa81/_._",
  7652. "ref/xamarinios10/_._",
  7653. "ref/xamarinmac20/_._",
  7654. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
  7655. ]
  7656. },
  7657. "System.Runtime.Serialization.Xml/4.1.0": {
  7658. "sha512": "7TvzeIeNvT2GLpmSy/3J1VIkT70MroNujIiBWBe0qeM6/QFPdCcF/1Zxx9Ohc/iZUPAANb1wMruCAiYY2HTTrg==",
  7659. "type": "package",
  7660. "files": [
  7661. "System.Runtime.Serialization.Xml.4.1.0.nupkg.sha512",
  7662. "System.Runtime.Serialization.Xml.nuspec",
  7663. "ThirdPartyNotices.txt",
  7664. "dotnet_library_license.txt",
  7665. "lib/DNXCore50/System.Runtime.Serialization.Xml.dll",
  7666. "lib/MonoAndroid10/_._",
  7667. "lib/MonoTouch10/_._",
  7668. "lib/net45/_._",
  7669. "lib/net46/System.Runtime.Serialization.Xml.dll",
  7670. "lib/netcore50/System.Runtime.Serialization.Xml.dll",
  7671. "lib/win8/_._",
  7672. "lib/wp80/_._",
  7673. "lib/wpa81/_._",
  7674. "lib/xamarinios10/_._",
  7675. "lib/xamarinmac20/_._",
  7676. "ref/MonoAndroid10/_._",
  7677. "ref/MonoTouch10/_._",
  7678. "ref/dotnet5.1/System.Runtime.Serialization.Xml.dll",
  7679. "ref/dotnet5.1/System.Runtime.Serialization.Xml.xml",
  7680. "ref/dotnet5.1/de/System.Runtime.Serialization.Xml.xml",
  7681. "ref/dotnet5.1/es/System.Runtime.Serialization.Xml.xml",
  7682. "ref/dotnet5.1/fr/System.Runtime.Serialization.Xml.xml",
  7683. "ref/dotnet5.1/it/System.Runtime.Serialization.Xml.xml",
  7684. "ref/dotnet5.1/ja/System.Runtime.Serialization.Xml.xml",
  7685. "ref/dotnet5.1/ko/System.Runtime.Serialization.Xml.xml",
  7686. "ref/dotnet5.1/ru/System.Runtime.Serialization.Xml.xml",
  7687. "ref/dotnet5.1/zh-hans/System.Runtime.Serialization.Xml.xml",
  7688. "ref/dotnet5.1/zh-hant/System.Runtime.Serialization.Xml.xml",
  7689. "ref/dotnet5.4/System.Runtime.Serialization.Xml.dll",
  7690. "ref/dotnet5.4/System.Runtime.Serialization.Xml.xml",
  7691. "ref/dotnet5.4/de/System.Runtime.Serialization.Xml.xml",
  7692. "ref/dotnet5.4/es/System.Runtime.Serialization.Xml.xml",
  7693. "ref/dotnet5.4/fr/System.Runtime.Serialization.Xml.xml",
  7694. "ref/dotnet5.4/it/System.Runtime.Serialization.Xml.xml",
  7695. "ref/dotnet5.4/ja/System.Runtime.Serialization.Xml.xml",
  7696. "ref/dotnet5.4/ko/System.Runtime.Serialization.Xml.xml",
  7697. "ref/dotnet5.4/ru/System.Runtime.Serialization.Xml.xml",
  7698. "ref/dotnet5.4/zh-hans/System.Runtime.Serialization.Xml.xml",
  7699. "ref/dotnet5.4/zh-hant/System.Runtime.Serialization.Xml.xml",
  7700. "ref/net45/_._",
  7701. "ref/net46/System.Runtime.Serialization.Xml.dll",
  7702. "ref/netcore50/System.Runtime.Serialization.Xml.dll",
  7703. "ref/netcore50/System.Runtime.Serialization.Xml.xml",
  7704. "ref/netcore50/de/System.Runtime.Serialization.Xml.xml",
  7705. "ref/netcore50/es/System.Runtime.Serialization.Xml.xml",
  7706. "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml",
  7707. "ref/netcore50/it/System.Runtime.Serialization.Xml.xml",
  7708. "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml",
  7709. "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml",
  7710. "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml",
  7711. "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml",
  7712. "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml",
  7713. "ref/win8/_._",
  7714. "ref/wp80/_._",
  7715. "ref/wpa81/_._",
  7716. "ref/xamarinios10/_._",
  7717. "ref/xamarinmac20/_._",
  7718. "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll"
  7719. ]
  7720. },
  7721. "System.Runtime.WindowsRuntime/4.0.10": {
  7722. "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==",
  7723. "type": "package",
  7724. "files": [
  7725. "System.Runtime.WindowsRuntime.4.0.10.nupkg.sha512",
  7726. "System.Runtime.WindowsRuntime.nuspec",
  7727. "lib/netcore50/System.Runtime.WindowsRuntime.dll",
  7728. "lib/win81/_._",
  7729. "lib/wpa81/_._",
  7730. "ref/dotnet/System.Runtime.WindowsRuntime.dll",
  7731. "ref/dotnet/System.Runtime.WindowsRuntime.xml",
  7732. "ref/dotnet/de/System.Runtime.WindowsRuntime.xml",
  7733. "ref/dotnet/es/System.Runtime.WindowsRuntime.xml",
  7734. "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml",
  7735. "ref/dotnet/it/System.Runtime.WindowsRuntime.xml",
  7736. "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml",
  7737. "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml",
  7738. "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml",
  7739. "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml",
  7740. "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml",
  7741. "ref/netcore50/System.Runtime.WindowsRuntime.dll",
  7742. "ref/netcore50/System.Runtime.WindowsRuntime.xml",
  7743. "ref/win81/_._",
  7744. "ref/wpa81/_._",
  7745. "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll"
  7746. ]
  7747. },
  7748. "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
  7749. "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==",
  7750. "type": "package",
  7751. "files": [
  7752. "System.Runtime.WindowsRuntime.UI.Xaml.4.0.0.nupkg.sha512",
  7753. "System.Runtime.WindowsRuntime.UI.Xaml.nuspec",
  7754. "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
  7755. "lib/win8/_._",
  7756. "lib/wpa81/_._",
  7757. "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll",
  7758. "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7759. "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7760. "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7761. "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7762. "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7763. "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7764. "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7765. "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7766. "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7767. "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7768. "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
  7769. "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml",
  7770. "ref/win8/_._",
  7771. "ref/wpa81/_._"
  7772. ]
  7773. },
  7774. "System.Security.Claims/4.0.0": {
  7775. "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==",
  7776. "type": "package",
  7777. "files": [
  7778. "System.Security.Claims.4.0.0.nupkg.sha512",
  7779. "System.Security.Claims.nuspec",
  7780. "lib/MonoAndroid10/_._",
  7781. "lib/MonoTouch10/_._",
  7782. "lib/dotnet/System.Security.Claims.dll",
  7783. "lib/net46/System.Security.Claims.dll",
  7784. "lib/xamarinios10/_._",
  7785. "lib/xamarinmac20/_._",
  7786. "ref/MonoAndroid10/_._",
  7787. "ref/MonoTouch10/_._",
  7788. "ref/dotnet/System.Security.Claims.dll",
  7789. "ref/dotnet/System.Security.Claims.xml",
  7790. "ref/dotnet/de/System.Security.Claims.xml",
  7791. "ref/dotnet/es/System.Security.Claims.xml",
  7792. "ref/dotnet/fr/System.Security.Claims.xml",
  7793. "ref/dotnet/it/System.Security.Claims.xml",
  7794. "ref/dotnet/ja/System.Security.Claims.xml",
  7795. "ref/dotnet/ko/System.Security.Claims.xml",
  7796. "ref/dotnet/ru/System.Security.Claims.xml",
  7797. "ref/dotnet/zh-hans/System.Security.Claims.xml",
  7798. "ref/dotnet/zh-hant/System.Security.Claims.xml",
  7799. "ref/net46/System.Security.Claims.dll",
  7800. "ref/xamarinios10/_._",
  7801. "ref/xamarinmac20/_._"
  7802. ]
  7803. },
  7804. "System.Security.Principal/4.0.0": {
  7805. "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==",
  7806. "type": "package",
  7807. "files": [
  7808. "System.Security.Principal.4.0.0.nupkg.sha512",
  7809. "System.Security.Principal.nuspec",
  7810. "lib/dotnet/System.Security.Principal.dll",
  7811. "lib/net45/_._",
  7812. "lib/netcore50/System.Security.Principal.dll",
  7813. "lib/win8/_._",
  7814. "lib/wp80/_._",
  7815. "lib/wpa81/_._",
  7816. "ref/dotnet/System.Security.Principal.dll",
  7817. "ref/dotnet/System.Security.Principal.xml",
  7818. "ref/dotnet/de/System.Security.Principal.xml",
  7819. "ref/dotnet/es/System.Security.Principal.xml",
  7820. "ref/dotnet/fr/System.Security.Principal.xml",
  7821. "ref/dotnet/it/System.Security.Principal.xml",
  7822. "ref/dotnet/ja/System.Security.Principal.xml",
  7823. "ref/dotnet/ko/System.Security.Principal.xml",
  7824. "ref/dotnet/ru/System.Security.Principal.xml",
  7825. "ref/dotnet/zh-hans/System.Security.Principal.xml",
  7826. "ref/dotnet/zh-hant/System.Security.Principal.xml",
  7827. "ref/net45/_._",
  7828. "ref/netcore50/System.Security.Principal.dll",
  7829. "ref/netcore50/System.Security.Principal.xml",
  7830. "ref/win8/_._",
  7831. "ref/wp80/_._",
  7832. "ref/wpa81/_._"
  7833. ]
  7834. },
  7835. "System.ServiceModel.Duplex/4.0.0": {
  7836. "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==",
  7837. "type": "package",
  7838. "files": [
  7839. "System.ServiceModel.Duplex.4.0.0.nupkg.sha512",
  7840. "System.ServiceModel.Duplex.nuspec",
  7841. "lib/DNXCore50/System.ServiceModel.Duplex.dll",
  7842. "lib/net45/_._",
  7843. "lib/netcore50/System.ServiceModel.Duplex.dll",
  7844. "lib/win8/_._",
  7845. "ref/dotnet/System.ServiceModel.Duplex.dll",
  7846. "ref/dotnet/System.ServiceModel.Duplex.xml",
  7847. "ref/dotnet/de/System.ServiceModel.Duplex.xml",
  7848. "ref/dotnet/es/System.ServiceModel.Duplex.xml",
  7849. "ref/dotnet/fr/System.ServiceModel.Duplex.xml",
  7850. "ref/dotnet/it/System.ServiceModel.Duplex.xml",
  7851. "ref/dotnet/ja/System.ServiceModel.Duplex.xml",
  7852. "ref/dotnet/ko/System.ServiceModel.Duplex.xml",
  7853. "ref/dotnet/ru/System.ServiceModel.Duplex.xml",
  7854. "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml",
  7855. "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml",
  7856. "ref/net45/_._",
  7857. "ref/netcore50/System.ServiceModel.Duplex.dll",
  7858. "ref/netcore50/System.ServiceModel.Duplex.xml",
  7859. "ref/win8/_._"
  7860. ]
  7861. },
  7862. "System.ServiceModel.Http/4.0.10": {
  7863. "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==",
  7864. "type": "package",
  7865. "files": [
  7866. "System.ServiceModel.Http.4.0.10.nupkg.sha512",
  7867. "System.ServiceModel.Http.nuspec",
  7868. "lib/DNXCore50/System.ServiceModel.Http.dll",
  7869. "lib/MonoAndroid10/_._",
  7870. "lib/MonoTouch10/_._",
  7871. "lib/net46/_._",
  7872. "lib/netcore50/System.ServiceModel.Http.dll",
  7873. "lib/xamarinios10/_._",
  7874. "lib/xamarinmac20/_._",
  7875. "ref/MonoAndroid10/_._",
  7876. "ref/MonoTouch10/_._",
  7877. "ref/dotnet/System.ServiceModel.Http.dll",
  7878. "ref/dotnet/System.ServiceModel.Http.xml",
  7879. "ref/dotnet/de/System.ServiceModel.Http.xml",
  7880. "ref/dotnet/es/System.ServiceModel.Http.xml",
  7881. "ref/dotnet/fr/System.ServiceModel.Http.xml",
  7882. "ref/dotnet/it/System.ServiceModel.Http.xml",
  7883. "ref/dotnet/ja/System.ServiceModel.Http.xml",
  7884. "ref/dotnet/ko/System.ServiceModel.Http.xml",
  7885. "ref/dotnet/ru/System.ServiceModel.Http.xml",
  7886. "ref/dotnet/zh-hans/System.ServiceModel.Http.xml",
  7887. "ref/dotnet/zh-hant/System.ServiceModel.Http.xml",
  7888. "ref/net46/_._",
  7889. "ref/xamarinios10/_._",
  7890. "ref/xamarinmac20/_._"
  7891. ]
  7892. },
  7893. "System.ServiceModel.NetTcp/4.0.0": {
  7894. "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==",
  7895. "type": "package",
  7896. "files": [
  7897. "System.ServiceModel.NetTcp.4.0.0.nupkg.sha512",
  7898. "System.ServiceModel.NetTcp.nuspec",
  7899. "lib/DNXCore50/System.ServiceModel.NetTcp.dll",
  7900. "lib/net45/_._",
  7901. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  7902. "lib/win8/_._",
  7903. "ref/dotnet/System.ServiceModel.NetTcp.dll",
  7904. "ref/dotnet/System.ServiceModel.NetTcp.xml",
  7905. "ref/dotnet/de/System.ServiceModel.NetTcp.xml",
  7906. "ref/dotnet/es/System.ServiceModel.NetTcp.xml",
  7907. "ref/dotnet/fr/System.ServiceModel.NetTcp.xml",
  7908. "ref/dotnet/it/System.ServiceModel.NetTcp.xml",
  7909. "ref/dotnet/ja/System.ServiceModel.NetTcp.xml",
  7910. "ref/dotnet/ko/System.ServiceModel.NetTcp.xml",
  7911. "ref/dotnet/ru/System.ServiceModel.NetTcp.xml",
  7912. "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml",
  7913. "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml",
  7914. "ref/net45/_._",
  7915. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  7916. "ref/netcore50/System.ServiceModel.NetTcp.xml",
  7917. "ref/win8/_._"
  7918. ]
  7919. },
  7920. "System.ServiceModel.Primitives/4.0.0": {
  7921. "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==",
  7922. "type": "package",
  7923. "files": [
  7924. "System.ServiceModel.Primitives.4.0.0.nupkg.sha512",
  7925. "System.ServiceModel.Primitives.nuspec",
  7926. "lib/DNXCore50/System.ServiceModel.Primitives.dll",
  7927. "lib/net45/_._",
  7928. "lib/netcore50/System.ServiceModel.Primitives.dll",
  7929. "lib/win8/_._",
  7930. "ref/dotnet/System.ServiceModel.Primitives.dll",
  7931. "ref/dotnet/System.ServiceModel.Primitives.xml",
  7932. "ref/dotnet/de/System.ServiceModel.Primitives.xml",
  7933. "ref/dotnet/es/System.ServiceModel.Primitives.xml",
  7934. "ref/dotnet/fr/System.ServiceModel.Primitives.xml",
  7935. "ref/dotnet/it/System.ServiceModel.Primitives.xml",
  7936. "ref/dotnet/ja/System.ServiceModel.Primitives.xml",
  7937. "ref/dotnet/ko/System.ServiceModel.Primitives.xml",
  7938. "ref/dotnet/ru/System.ServiceModel.Primitives.xml",
  7939. "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml",
  7940. "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml",
  7941. "ref/net45/_._",
  7942. "ref/netcore50/System.ServiceModel.Primitives.dll",
  7943. "ref/netcore50/System.ServiceModel.Primitives.xml",
  7944. "ref/win8/_._"
  7945. ]
  7946. },
  7947. "System.ServiceModel.Security/4.0.0": {
  7948. "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==",
  7949. "type": "package",
  7950. "files": [
  7951. "System.ServiceModel.Security.4.0.0.nupkg.sha512",
  7952. "System.ServiceModel.Security.nuspec",
  7953. "lib/DNXCore50/System.ServiceModel.Security.dll",
  7954. "lib/net45/_._",
  7955. "lib/netcore50/System.ServiceModel.Security.dll",
  7956. "lib/win8/_._",
  7957. "ref/dotnet/System.ServiceModel.Security.dll",
  7958. "ref/dotnet/System.ServiceModel.Security.xml",
  7959. "ref/dotnet/de/System.ServiceModel.Security.xml",
  7960. "ref/dotnet/es/System.ServiceModel.Security.xml",
  7961. "ref/dotnet/fr/System.ServiceModel.Security.xml",
  7962. "ref/dotnet/it/System.ServiceModel.Security.xml",
  7963. "ref/dotnet/ja/System.ServiceModel.Security.xml",
  7964. "ref/dotnet/ko/System.ServiceModel.Security.xml",
  7965. "ref/dotnet/ru/System.ServiceModel.Security.xml",
  7966. "ref/dotnet/zh-hans/System.ServiceModel.Security.xml",
  7967. "ref/dotnet/zh-hant/System.ServiceModel.Security.xml",
  7968. "ref/net45/_._",
  7969. "ref/netcore50/System.ServiceModel.Security.dll",
  7970. "ref/netcore50/System.ServiceModel.Security.xml",
  7971. "ref/win8/_._"
  7972. ]
  7973. },
  7974. "System.Text.Encoding/4.0.10": {
  7975. "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==",
  7976. "type": "package",
  7977. "files": [
  7978. "System.Text.Encoding.4.0.10.nupkg.sha512",
  7979. "System.Text.Encoding.nuspec",
  7980. "lib/DNXCore50/System.Text.Encoding.dll",
  7981. "lib/MonoAndroid10/_._",
  7982. "lib/MonoTouch10/_._",
  7983. "lib/net46/_._",
  7984. "lib/netcore50/System.Text.Encoding.dll",
  7985. "lib/xamarinios10/_._",
  7986. "lib/xamarinmac20/_._",
  7987. "ref/MonoAndroid10/_._",
  7988. "ref/MonoTouch10/_._",
  7989. "ref/dotnet/System.Text.Encoding.dll",
  7990. "ref/dotnet/System.Text.Encoding.xml",
  7991. "ref/dotnet/de/System.Text.Encoding.xml",
  7992. "ref/dotnet/es/System.Text.Encoding.xml",
  7993. "ref/dotnet/fr/System.Text.Encoding.xml",
  7994. "ref/dotnet/it/System.Text.Encoding.xml",
  7995. "ref/dotnet/ja/System.Text.Encoding.xml",
  7996. "ref/dotnet/ko/System.Text.Encoding.xml",
  7997. "ref/dotnet/ru/System.Text.Encoding.xml",
  7998. "ref/dotnet/zh-hans/System.Text.Encoding.xml",
  7999. "ref/dotnet/zh-hant/System.Text.Encoding.xml",
  8000. "ref/net46/_._",
  8001. "ref/xamarinios10/_._",
  8002. "ref/xamarinmac20/_._",
  8003. "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll"
  8004. ]
  8005. },
  8006. "System.Text.Encoding.CodePages/4.0.0": {
  8007. "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==",
  8008. "type": "package",
  8009. "files": [
  8010. "System.Text.Encoding.CodePages.4.0.0.nupkg.sha512",
  8011. "System.Text.Encoding.CodePages.nuspec",
  8012. "lib/MonoAndroid10/_._",
  8013. "lib/MonoTouch10/_._",
  8014. "lib/dotnet/System.Text.Encoding.CodePages.dll",
  8015. "lib/xamarinios10/_._",
  8016. "lib/xamarinmac20/_._",
  8017. "ref/MonoAndroid10/_._",
  8018. "ref/MonoTouch10/_._",
  8019. "ref/dotnet/System.Text.Encoding.CodePages.dll",
  8020. "ref/dotnet/System.Text.Encoding.CodePages.xml",
  8021. "ref/dotnet/de/System.Text.Encoding.CodePages.xml",
  8022. "ref/dotnet/es/System.Text.Encoding.CodePages.xml",
  8023. "ref/dotnet/fr/System.Text.Encoding.CodePages.xml",
  8024. "ref/dotnet/it/System.Text.Encoding.CodePages.xml",
  8025. "ref/dotnet/ja/System.Text.Encoding.CodePages.xml",
  8026. "ref/dotnet/ko/System.Text.Encoding.CodePages.xml",
  8027. "ref/dotnet/ru/System.Text.Encoding.CodePages.xml",
  8028. "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml",
  8029. "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml",
  8030. "ref/xamarinios10/_._",
  8031. "ref/xamarinmac20/_._"
  8032. ]
  8033. },
  8034. "System.Text.Encoding.Extensions/4.0.10": {
  8035. "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==",
  8036. "type": "package",
  8037. "files": [
  8038. "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512",
  8039. "System.Text.Encoding.Extensions.nuspec",
  8040. "lib/DNXCore50/System.Text.Encoding.Extensions.dll",
  8041. "lib/MonoAndroid10/_._",
  8042. "lib/MonoTouch10/_._",
  8043. "lib/net46/_._",
  8044. "lib/netcore50/System.Text.Encoding.Extensions.dll",
  8045. "lib/xamarinios10/_._",
  8046. "lib/xamarinmac20/_._",
  8047. "ref/MonoAndroid10/_._",
  8048. "ref/MonoTouch10/_._",
  8049. "ref/dotnet/System.Text.Encoding.Extensions.dll",
  8050. "ref/dotnet/System.Text.Encoding.Extensions.xml",
  8051. "ref/dotnet/de/System.Text.Encoding.Extensions.xml",
  8052. "ref/dotnet/es/System.Text.Encoding.Extensions.xml",
  8053. "ref/dotnet/fr/System.Text.Encoding.Extensions.xml",
  8054. "ref/dotnet/it/System.Text.Encoding.Extensions.xml",
  8055. "ref/dotnet/ja/System.Text.Encoding.Extensions.xml",
  8056. "ref/dotnet/ko/System.Text.Encoding.Extensions.xml",
  8057. "ref/dotnet/ru/System.Text.Encoding.Extensions.xml",
  8058. "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml",
  8059. "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml",
  8060. "ref/net46/_._",
  8061. "ref/xamarinios10/_._",
  8062. "ref/xamarinmac20/_._",
  8063. "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
  8064. ]
  8065. },
  8066. "System.Text.RegularExpressions/4.0.10": {
  8067. "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==",
  8068. "type": "package",
  8069. "files": [
  8070. "System.Text.RegularExpressions.4.0.10.nupkg.sha512",
  8071. "System.Text.RegularExpressions.nuspec",
  8072. "lib/MonoAndroid10/_._",
  8073. "lib/MonoTouch10/_._",
  8074. "lib/dotnet/System.Text.RegularExpressions.dll",
  8075. "lib/net46/_._",
  8076. "lib/xamarinios10/_._",
  8077. "lib/xamarinmac20/_._",
  8078. "ref/MonoAndroid10/_._",
  8079. "ref/MonoTouch10/_._",
  8080. "ref/dotnet/System.Text.RegularExpressions.dll",
  8081. "ref/dotnet/System.Text.RegularExpressions.xml",
  8082. "ref/dotnet/de/System.Text.RegularExpressions.xml",
  8083. "ref/dotnet/es/System.Text.RegularExpressions.xml",
  8084. "ref/dotnet/fr/System.Text.RegularExpressions.xml",
  8085. "ref/dotnet/it/System.Text.RegularExpressions.xml",
  8086. "ref/dotnet/ja/System.Text.RegularExpressions.xml",
  8087. "ref/dotnet/ko/System.Text.RegularExpressions.xml",
  8088. "ref/dotnet/ru/System.Text.RegularExpressions.xml",
  8089. "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml",
  8090. "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml",
  8091. "ref/net46/_._",
  8092. "ref/xamarinios10/_._",
  8093. "ref/xamarinmac20/_._"
  8094. ]
  8095. },
  8096. "System.Threading/4.0.10": {
  8097. "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==",
  8098. "type": "package",
  8099. "files": [
  8100. "System.Threading.4.0.10.nupkg.sha512",
  8101. "System.Threading.nuspec",
  8102. "lib/DNXCore50/System.Threading.dll",
  8103. "lib/MonoAndroid10/_._",
  8104. "lib/MonoTouch10/_._",
  8105. "lib/net46/_._",
  8106. "lib/netcore50/System.Threading.dll",
  8107. "lib/xamarinios10/_._",
  8108. "lib/xamarinmac20/_._",
  8109. "ref/MonoAndroid10/_._",
  8110. "ref/MonoTouch10/_._",
  8111. "ref/dotnet/System.Threading.dll",
  8112. "ref/dotnet/System.Threading.xml",
  8113. "ref/dotnet/de/System.Threading.xml",
  8114. "ref/dotnet/es/System.Threading.xml",
  8115. "ref/dotnet/fr/System.Threading.xml",
  8116. "ref/dotnet/it/System.Threading.xml",
  8117. "ref/dotnet/ja/System.Threading.xml",
  8118. "ref/dotnet/ko/System.Threading.xml",
  8119. "ref/dotnet/ru/System.Threading.xml",
  8120. "ref/dotnet/zh-hans/System.Threading.xml",
  8121. "ref/dotnet/zh-hant/System.Threading.xml",
  8122. "ref/net46/_._",
  8123. "ref/xamarinios10/_._",
  8124. "ref/xamarinmac20/_._",
  8125. "runtimes/win8-aot/lib/netcore50/System.Threading.dll"
  8126. ]
  8127. },
  8128. "System.Threading.Overlapped/4.0.0": {
  8129. "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==",
  8130. "type": "package",
  8131. "files": [
  8132. "System.Threading.Overlapped.4.0.0.nupkg.sha512",
  8133. "System.Threading.Overlapped.nuspec",
  8134. "lib/DNXCore50/System.Threading.Overlapped.dll",
  8135. "lib/net46/System.Threading.Overlapped.dll",
  8136. "lib/netcore50/System.Threading.Overlapped.dll",
  8137. "ref/dotnet/System.Threading.Overlapped.dll",
  8138. "ref/dotnet/System.Threading.Overlapped.xml",
  8139. "ref/dotnet/de/System.Threading.Overlapped.xml",
  8140. "ref/dotnet/es/System.Threading.Overlapped.xml",
  8141. "ref/dotnet/fr/System.Threading.Overlapped.xml",
  8142. "ref/dotnet/it/System.Threading.Overlapped.xml",
  8143. "ref/dotnet/ja/System.Threading.Overlapped.xml",
  8144. "ref/dotnet/ko/System.Threading.Overlapped.xml",
  8145. "ref/dotnet/ru/System.Threading.Overlapped.xml",
  8146. "ref/dotnet/zh-hans/System.Threading.Overlapped.xml",
  8147. "ref/dotnet/zh-hant/System.Threading.Overlapped.xml",
  8148. "ref/net46/System.Threading.Overlapped.dll"
  8149. ]
  8150. },
  8151. "System.Threading.Tasks/4.0.10": {
  8152. "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==",
  8153. "type": "package",
  8154. "files": [
  8155. "System.Threading.Tasks.4.0.10.nupkg.sha512",
  8156. "System.Threading.Tasks.nuspec",
  8157. "lib/DNXCore50/System.Threading.Tasks.dll",
  8158. "lib/MonoAndroid10/_._",
  8159. "lib/MonoTouch10/_._",
  8160. "lib/net46/_._",
  8161. "lib/netcore50/System.Threading.Tasks.dll",
  8162. "lib/xamarinios10/_._",
  8163. "lib/xamarinmac20/_._",
  8164. "ref/MonoAndroid10/_._",
  8165. "ref/MonoTouch10/_._",
  8166. "ref/dotnet/System.Threading.Tasks.dll",
  8167. "ref/dotnet/System.Threading.Tasks.xml",
  8168. "ref/dotnet/de/System.Threading.Tasks.xml",
  8169. "ref/dotnet/es/System.Threading.Tasks.xml",
  8170. "ref/dotnet/fr/System.Threading.Tasks.xml",
  8171. "ref/dotnet/it/System.Threading.Tasks.xml",
  8172. "ref/dotnet/ja/System.Threading.Tasks.xml",
  8173. "ref/dotnet/ko/System.Threading.Tasks.xml",
  8174. "ref/dotnet/ru/System.Threading.Tasks.xml",
  8175. "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
  8176. "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
  8177. "ref/net46/_._",
  8178. "ref/xamarinios10/_._",
  8179. "ref/xamarinmac20/_._",
  8180. "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll"
  8181. ]
  8182. },
  8183. "System.Threading.Tasks.Dataflow/4.5.25": {
  8184. "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==",
  8185. "type": "package",
  8186. "files": [
  8187. "System.Threading.Tasks.Dataflow.4.5.25.nupkg.sha512",
  8188. "System.Threading.Tasks.Dataflow.nuspec",
  8189. "lib/dotnet/System.Threading.Tasks.Dataflow.XML",
  8190. "lib/dotnet/System.Threading.Tasks.Dataflow.dll",
  8191. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML",
  8192. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll",
  8193. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
  8194. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll"
  8195. ]
  8196. },
  8197. "System.Threading.Tasks.Parallel/4.0.0": {
  8198. "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==",
  8199. "type": "package",
  8200. "files": [
  8201. "System.Threading.Tasks.Parallel.4.0.0.nupkg.sha512",
  8202. "System.Threading.Tasks.Parallel.nuspec",
  8203. "lib/dotnet/System.Threading.Tasks.Parallel.dll",
  8204. "lib/net45/_._",
  8205. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  8206. "lib/win8/_._",
  8207. "lib/wpa81/_._",
  8208. "ref/dotnet/System.Threading.Tasks.Parallel.dll",
  8209. "ref/dotnet/System.Threading.Tasks.Parallel.xml",
  8210. "ref/dotnet/de/System.Threading.Tasks.Parallel.xml",
  8211. "ref/dotnet/es/System.Threading.Tasks.Parallel.xml",
  8212. "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml",
  8213. "ref/dotnet/it/System.Threading.Tasks.Parallel.xml",
  8214. "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml",
  8215. "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml",
  8216. "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml",
  8217. "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml",
  8218. "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml",
  8219. "ref/net45/_._",
  8220. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  8221. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  8222. "ref/win8/_._",
  8223. "ref/wpa81/_._"
  8224. ]
  8225. },
  8226. "System.Threading.Timer/4.0.0": {
  8227. "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==",
  8228. "type": "package",
  8229. "files": [
  8230. "System.Threading.Timer.4.0.0.nupkg.sha512",
  8231. "System.Threading.Timer.nuspec",
  8232. "lib/DNXCore50/System.Threading.Timer.dll",
  8233. "lib/net451/_._",
  8234. "lib/netcore50/System.Threading.Timer.dll",
  8235. "lib/win81/_._",
  8236. "lib/wpa81/_._",
  8237. "ref/dotnet/System.Threading.Timer.dll",
  8238. "ref/dotnet/System.Threading.Timer.xml",
  8239. "ref/dotnet/de/System.Threading.Timer.xml",
  8240. "ref/dotnet/es/System.Threading.Timer.xml",
  8241. "ref/dotnet/fr/System.Threading.Timer.xml",
  8242. "ref/dotnet/it/System.Threading.Timer.xml",
  8243. "ref/dotnet/ja/System.Threading.Timer.xml",
  8244. "ref/dotnet/ko/System.Threading.Timer.xml",
  8245. "ref/dotnet/ru/System.Threading.Timer.xml",
  8246. "ref/dotnet/zh-hans/System.Threading.Timer.xml",
  8247. "ref/dotnet/zh-hant/System.Threading.Timer.xml",
  8248. "ref/net451/_._",
  8249. "ref/netcore50/System.Threading.Timer.dll",
  8250. "ref/netcore50/System.Threading.Timer.xml",
  8251. "ref/win81/_._",
  8252. "ref/wpa81/_._",
  8253. "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll"
  8254. ]
  8255. },
  8256. "System.Xml.ReaderWriter/4.0.10": {
  8257. "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==",
  8258. "type": "package",
  8259. "files": [
  8260. "System.Xml.ReaderWriter.4.0.10.nupkg.sha512",
  8261. "System.Xml.ReaderWriter.nuspec",
  8262. "lib/MonoAndroid10/_._",
  8263. "lib/MonoTouch10/_._",
  8264. "lib/dotnet/System.Xml.ReaderWriter.dll",
  8265. "lib/net46/_._",
  8266. "lib/xamarinios10/_._",
  8267. "lib/xamarinmac20/_._",
  8268. "ref/MonoAndroid10/_._",
  8269. "ref/MonoTouch10/_._",
  8270. "ref/dotnet/System.Xml.ReaderWriter.dll",
  8271. "ref/dotnet/System.Xml.ReaderWriter.xml",
  8272. "ref/dotnet/de/System.Xml.ReaderWriter.xml",
  8273. "ref/dotnet/es/System.Xml.ReaderWriter.xml",
  8274. "ref/dotnet/fr/System.Xml.ReaderWriter.xml",
  8275. "ref/dotnet/it/System.Xml.ReaderWriter.xml",
  8276. "ref/dotnet/ja/System.Xml.ReaderWriter.xml",
  8277. "ref/dotnet/ko/System.Xml.ReaderWriter.xml",
  8278. "ref/dotnet/ru/System.Xml.ReaderWriter.xml",
  8279. "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml",
  8280. "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml",
  8281. "ref/net46/_._",
  8282. "ref/xamarinios10/_._",
  8283. "ref/xamarinmac20/_._"
  8284. ]
  8285. },
  8286. "System.Xml.XDocument/4.0.10": {
  8287. "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==",
  8288. "type": "package",
  8289. "files": [
  8290. "System.Xml.XDocument.4.0.10.nupkg.sha512",
  8291. "System.Xml.XDocument.nuspec",
  8292. "lib/MonoAndroid10/_._",
  8293. "lib/MonoTouch10/_._",
  8294. "lib/dotnet/System.Xml.XDocument.dll",
  8295. "lib/net46/_._",
  8296. "lib/xamarinios10/_._",
  8297. "lib/xamarinmac20/_._",
  8298. "ref/MonoAndroid10/_._",
  8299. "ref/MonoTouch10/_._",
  8300. "ref/dotnet/System.Xml.XDocument.dll",
  8301. "ref/dotnet/System.Xml.XDocument.xml",
  8302. "ref/dotnet/de/System.Xml.XDocument.xml",
  8303. "ref/dotnet/es/System.Xml.XDocument.xml",
  8304. "ref/dotnet/fr/System.Xml.XDocument.xml",
  8305. "ref/dotnet/it/System.Xml.XDocument.xml",
  8306. "ref/dotnet/ja/System.Xml.XDocument.xml",
  8307. "ref/dotnet/ko/System.Xml.XDocument.xml",
  8308. "ref/dotnet/ru/System.Xml.XDocument.xml",
  8309. "ref/dotnet/zh-hans/System.Xml.XDocument.xml",
  8310. "ref/dotnet/zh-hant/System.Xml.XDocument.xml",
  8311. "ref/net46/_._",
  8312. "ref/xamarinios10/_._",
  8313. "ref/xamarinmac20/_._"
  8314. ]
  8315. },
  8316. "System.Xml.XmlDocument/4.0.0": {
  8317. "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==",
  8318. "type": "package",
  8319. "files": [
  8320. "System.Xml.XmlDocument.4.0.0.nupkg.sha512",
  8321. "System.Xml.XmlDocument.nuspec",
  8322. "lib/MonoAndroid10/_._",
  8323. "lib/MonoTouch10/_._",
  8324. "lib/dotnet/System.Xml.XmlDocument.dll",
  8325. "lib/net46/System.Xml.XmlDocument.dll",
  8326. "lib/xamarinios10/_._",
  8327. "lib/xamarinmac20/_._",
  8328. "ref/MonoAndroid10/_._",
  8329. "ref/MonoTouch10/_._",
  8330. "ref/dotnet/System.Xml.XmlDocument.dll",
  8331. "ref/dotnet/System.Xml.XmlDocument.xml",
  8332. "ref/dotnet/de/System.Xml.XmlDocument.xml",
  8333. "ref/dotnet/es/System.Xml.XmlDocument.xml",
  8334. "ref/dotnet/fr/System.Xml.XmlDocument.xml",
  8335. "ref/dotnet/it/System.Xml.XmlDocument.xml",
  8336. "ref/dotnet/ja/System.Xml.XmlDocument.xml",
  8337. "ref/dotnet/ko/System.Xml.XmlDocument.xml",
  8338. "ref/dotnet/ru/System.Xml.XmlDocument.xml",
  8339. "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml",
  8340. "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml",
  8341. "ref/net46/System.Xml.XmlDocument.dll",
  8342. "ref/xamarinios10/_._",
  8343. "ref/xamarinmac20/_._"
  8344. ]
  8345. },
  8346. "System.Xml.XmlSerializer/4.0.10": {
  8347. "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==",
  8348. "type": "package",
  8349. "files": [
  8350. "System.Xml.XmlSerializer.4.0.10.nupkg.sha512",
  8351. "System.Xml.XmlSerializer.nuspec",
  8352. "lib/DNXCore50/System.Xml.XmlSerializer.dll",
  8353. "lib/MonoAndroid10/_._",
  8354. "lib/MonoTouch10/_._",
  8355. "lib/net46/_._",
  8356. "lib/netcore50/System.Xml.XmlSerializer.dll",
  8357. "lib/xamarinios10/_._",
  8358. "lib/xamarinmac20/_._",
  8359. "ref/MonoAndroid10/_._",
  8360. "ref/MonoTouch10/_._",
  8361. "ref/dotnet/System.Xml.XmlSerializer.dll",
  8362. "ref/dotnet/System.Xml.XmlSerializer.xml",
  8363. "ref/dotnet/de/System.Xml.XmlSerializer.xml",
  8364. "ref/dotnet/es/System.Xml.XmlSerializer.xml",
  8365. "ref/dotnet/fr/System.Xml.XmlSerializer.xml",
  8366. "ref/dotnet/it/System.Xml.XmlSerializer.xml",
  8367. "ref/dotnet/ja/System.Xml.XmlSerializer.xml",
  8368. "ref/dotnet/ko/System.Xml.XmlSerializer.xml",
  8369. "ref/dotnet/ru/System.Xml.XmlSerializer.xml",
  8370. "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml",
  8371. "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml",
  8372. "ref/net46/_._",
  8373. "ref/xamarinios10/_._",
  8374. "ref/xamarinmac20/_._",
  8375. "runtime.json",
  8376. "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll"
  8377. ]
  8378. }
  8379. },
  8380. "projectFileDependencyGroups": {
  8381. "": [
  8382. "Microsoft.NETCore.UniversalWindowsPlatform >= 5.1.0"
  8383. ],
  8384. "UAP,Version=v10.0": []
  8385. }
  8386. }