project.assets.json 288 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "coverlet.collector/1.0.1": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Microsoft.CodeCoverage/16.2.0": {
  12. "type": "package",
  13. "compile": {
  14. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  15. },
  16. "runtime": {
  17. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  18. },
  19. "build": {
  20. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  21. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  22. }
  23. },
  24. "Microsoft.CSharp/4.0.1": {
  25. "type": "package",
  26. "dependencies": {
  27. "System.Collections": "4.0.11",
  28. "System.Diagnostics.Debug": "4.0.11",
  29. "System.Dynamic.Runtime": "4.0.11",
  30. "System.Globalization": "4.0.11",
  31. "System.Linq": "4.1.0",
  32. "System.Linq.Expressions": "4.1.0",
  33. "System.ObjectModel": "4.0.12",
  34. "System.Reflection": "4.1.0",
  35. "System.Reflection.Extensions": "4.0.1",
  36. "System.Reflection.Primitives": "4.0.1",
  37. "System.Reflection.TypeExtensions": "4.1.0",
  38. "System.Resources.ResourceManager": "4.0.1",
  39. "System.Runtime": "4.1.0",
  40. "System.Runtime.Extensions": "4.1.0",
  41. "System.Runtime.InteropServices": "4.1.0",
  42. "System.Threading": "4.0.11"
  43. },
  44. "compile": {
  45. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  46. },
  47. "runtime": {
  48. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  49. }
  50. },
  51. "Microsoft.NET.Test.Sdk/16.2.0": {
  52. "type": "package",
  53. "dependencies": {
  54. "Microsoft.CodeCoverage": "16.2.0",
  55. "Microsoft.TestPlatform.TestHost": "16.2.0"
  56. },
  57. "build": {
  58. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props": {},
  59. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets": {}
  60. },
  61. "buildMultiTargeting": {
  62. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  63. }
  64. },
  65. "Microsoft.NETCore.Platforms/1.0.1": {
  66. "type": "package",
  67. "compile": {
  68. "lib/netstandard1.0/_._": {}
  69. },
  70. "runtime": {
  71. "lib/netstandard1.0/_._": {}
  72. }
  73. },
  74. "Microsoft.NETCore.Targets/1.0.1": {
  75. "type": "package",
  76. "compile": {
  77. "lib/netstandard1.0/_._": {}
  78. },
  79. "runtime": {
  80. "lib/netstandard1.0/_._": {}
  81. }
  82. },
  83. "Microsoft.TestPlatform.ObjectModel/16.2.0": {
  84. "type": "package",
  85. "dependencies": {
  86. "NETStandard.Library": "1.6.0",
  87. "System.ComponentModel.EventBasedAsync": "4.0.11",
  88. "System.ComponentModel.TypeConverter": "4.1.0",
  89. "System.Diagnostics.Process": "4.1.0",
  90. "System.Diagnostics.TextWriterTraceListener": "4.0.0",
  91. "System.Diagnostics.TraceSource": "4.0.0",
  92. "System.Reflection.Metadata": "1.3.0",
  93. "System.Reflection.TypeExtensions": "4.1.0",
  94. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  95. "System.Runtime.Loader": "4.0.0",
  96. "System.Runtime.Serialization.Json": "4.0.2",
  97. "System.Runtime.Serialization.Primitives": "4.1.1",
  98. "System.Threading.Thread": "4.0.0",
  99. "System.Xml.XPath.XmlDocument": "4.0.1"
  100. },
  101. "compile": {
  102. "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {},
  103. "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  104. "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  105. },
  106. "runtime": {
  107. "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {},
  108. "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  109. "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  110. },
  111. "resource": {
  112. "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  113. "locale": "cs"
  114. },
  115. "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  116. "locale": "cs"
  117. },
  118. "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  119. "locale": "de"
  120. },
  121. "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  122. "locale": "de"
  123. },
  124. "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  125. "locale": "es"
  126. },
  127. "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  128. "locale": "es"
  129. },
  130. "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  131. "locale": "fr"
  132. },
  133. "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  134. "locale": "fr"
  135. },
  136. "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  137. "locale": "it"
  138. },
  139. "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  140. "locale": "it"
  141. },
  142. "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  143. "locale": "ja"
  144. },
  145. "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  146. "locale": "ja"
  147. },
  148. "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  149. "locale": "ko"
  150. },
  151. "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  152. "locale": "ko"
  153. },
  154. "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  155. "locale": "pl"
  156. },
  157. "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  158. "locale": "pl"
  159. },
  160. "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  161. "locale": "pt-BR"
  162. },
  163. "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  164. "locale": "pt-BR"
  165. },
  166. "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  167. "locale": "ru"
  168. },
  169. "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  170. "locale": "ru"
  171. },
  172. "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  173. "locale": "tr"
  174. },
  175. "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  176. "locale": "tr"
  177. },
  178. "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  179. "locale": "zh-Hans"
  180. },
  181. "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  182. "locale": "zh-Hans"
  183. },
  184. "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  185. "locale": "zh-Hant"
  186. },
  187. "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  188. "locale": "zh-Hant"
  189. }
  190. }
  191. },
  192. "Microsoft.TestPlatform.TestHost/16.2.0": {
  193. "type": "package",
  194. "dependencies": {
  195. "Microsoft.TestPlatform.ObjectModel": "16.2.0",
  196. "Newtonsoft.Json": "9.0.1"
  197. },
  198. "compile": {
  199. "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  200. "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  201. "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {},
  202. "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  203. "lib/netstandard1.5/testhost.dll": {}
  204. },
  205. "runtime": {
  206. "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  207. "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  208. "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {},
  209. "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  210. "lib/netstandard1.5/testhost.dll": {}
  211. },
  212. "resource": {
  213. "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  214. "locale": "cs"
  215. },
  216. "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  217. "locale": "cs"
  218. },
  219. "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  220. "locale": "cs"
  221. },
  222. "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  223. "locale": "de"
  224. },
  225. "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  226. "locale": "de"
  227. },
  228. "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  229. "locale": "de"
  230. },
  231. "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  232. "locale": "es"
  233. },
  234. "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  235. "locale": "es"
  236. },
  237. "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  238. "locale": "es"
  239. },
  240. "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  241. "locale": "fr"
  242. },
  243. "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  244. "locale": "fr"
  245. },
  246. "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  247. "locale": "fr"
  248. },
  249. "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  250. "locale": "it"
  251. },
  252. "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  253. "locale": "it"
  254. },
  255. "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  256. "locale": "it"
  257. },
  258. "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  259. "locale": "ja"
  260. },
  261. "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  262. "locale": "ja"
  263. },
  264. "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  265. "locale": "ja"
  266. },
  267. "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  268. "locale": "ko"
  269. },
  270. "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  271. "locale": "ko"
  272. },
  273. "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  274. "locale": "ko"
  275. },
  276. "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  277. "locale": "pl"
  278. },
  279. "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  280. "locale": "pl"
  281. },
  282. "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  283. "locale": "pl"
  284. },
  285. "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  286. "locale": "pt-BR"
  287. },
  288. "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  289. "locale": "pt-BR"
  290. },
  291. "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  292. "locale": "pt-BR"
  293. },
  294. "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  295. "locale": "ru"
  296. },
  297. "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  298. "locale": "ru"
  299. },
  300. "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  301. "locale": "ru"
  302. },
  303. "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  304. "locale": "tr"
  305. },
  306. "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  307. "locale": "tr"
  308. },
  309. "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  310. "locale": "tr"
  311. },
  312. "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  313. "locale": "zh-Hans"
  314. },
  315. "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  316. "locale": "zh-Hans"
  317. },
  318. "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  319. "locale": "zh-Hans"
  320. },
  321. "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  322. "locale": "zh-Hant"
  323. },
  324. "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  325. "locale": "zh-Hant"
  326. },
  327. "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  328. "locale": "zh-Hant"
  329. }
  330. }
  331. },
  332. "Microsoft.Win32.Primitives/4.0.1": {
  333. "type": "package",
  334. "dependencies": {
  335. "Microsoft.NETCore.Platforms": "1.0.1",
  336. "Microsoft.NETCore.Targets": "1.0.1",
  337. "System.Runtime": "4.1.0"
  338. },
  339. "compile": {
  340. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  341. }
  342. },
  343. "Microsoft.Win32.Registry/4.0.0": {
  344. "type": "package",
  345. "dependencies": {
  346. "Microsoft.NETCore.Platforms": "1.0.1",
  347. "System.Collections": "4.0.11",
  348. "System.Globalization": "4.0.11",
  349. "System.Resources.ResourceManager": "4.0.1",
  350. "System.Runtime": "4.1.0",
  351. "System.Runtime.Extensions": "4.1.0",
  352. "System.Runtime.Handles": "4.0.1",
  353. "System.Runtime.InteropServices": "4.1.0"
  354. },
  355. "compile": {
  356. "ref/netstandard1.3/_._": {}
  357. },
  358. "runtimeTargets": {
  359. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  360. "assetType": "runtime",
  361. "rid": "unix"
  362. },
  363. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  364. "assetType": "runtime",
  365. "rid": "win"
  366. }
  367. }
  368. },
  369. "NETStandard.Library/1.6.0": {
  370. "type": "package",
  371. "dependencies": {
  372. "Microsoft.NETCore.Platforms": "1.0.1",
  373. "Microsoft.Win32.Primitives": "4.0.1",
  374. "System.AppContext": "4.1.0",
  375. "System.Collections": "4.0.11",
  376. "System.Collections.Concurrent": "4.0.12",
  377. "System.Console": "4.0.0",
  378. "System.Diagnostics.Debug": "4.0.11",
  379. "System.Diagnostics.Tools": "4.0.1",
  380. "System.Diagnostics.Tracing": "4.1.0",
  381. "System.Globalization": "4.0.11",
  382. "System.Globalization.Calendars": "4.0.1",
  383. "System.IO": "4.1.0",
  384. "System.IO.Compression": "4.1.0",
  385. "System.IO.Compression.ZipFile": "4.0.1",
  386. "System.IO.FileSystem": "4.0.1",
  387. "System.IO.FileSystem.Primitives": "4.0.1",
  388. "System.Linq": "4.1.0",
  389. "System.Linq.Expressions": "4.1.0",
  390. "System.Net.Http": "4.1.0",
  391. "System.Net.Primitives": "4.0.11",
  392. "System.Net.Sockets": "4.1.0",
  393. "System.ObjectModel": "4.0.12",
  394. "System.Reflection": "4.1.0",
  395. "System.Reflection.Extensions": "4.0.1",
  396. "System.Reflection.Primitives": "4.0.1",
  397. "System.Resources.ResourceManager": "4.0.1",
  398. "System.Runtime": "4.1.0",
  399. "System.Runtime.Extensions": "4.1.0",
  400. "System.Runtime.Handles": "4.0.1",
  401. "System.Runtime.InteropServices": "4.1.0",
  402. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  403. "System.Runtime.Numerics": "4.0.1",
  404. "System.Security.Cryptography.Algorithms": "4.2.0",
  405. "System.Security.Cryptography.Encoding": "4.0.0",
  406. "System.Security.Cryptography.Primitives": "4.0.0",
  407. "System.Security.Cryptography.X509Certificates": "4.1.0",
  408. "System.Text.Encoding": "4.0.11",
  409. "System.Text.Encoding.Extensions": "4.0.11",
  410. "System.Text.RegularExpressions": "4.1.0",
  411. "System.Threading": "4.0.11",
  412. "System.Threading.Tasks": "4.0.11",
  413. "System.Threading.Timer": "4.0.1",
  414. "System.Xml.ReaderWriter": "4.0.11",
  415. "System.Xml.XDocument": "4.0.11"
  416. }
  417. },
  418. "Newtonsoft.Json/9.0.1": {
  419. "type": "package",
  420. "dependencies": {
  421. "Microsoft.CSharp": "4.0.1",
  422. "System.Collections": "4.0.11",
  423. "System.Diagnostics.Debug": "4.0.11",
  424. "System.Dynamic.Runtime": "4.0.11",
  425. "System.Globalization": "4.0.11",
  426. "System.IO": "4.1.0",
  427. "System.Linq": "4.1.0",
  428. "System.Linq.Expressions": "4.1.0",
  429. "System.ObjectModel": "4.0.12",
  430. "System.Reflection": "4.1.0",
  431. "System.Reflection.Extensions": "4.0.1",
  432. "System.Resources.ResourceManager": "4.0.1",
  433. "System.Runtime": "4.1.0",
  434. "System.Runtime.Extensions": "4.1.0",
  435. "System.Runtime.Serialization.Primitives": "4.1.1",
  436. "System.Text.Encoding": "4.0.11",
  437. "System.Text.Encoding.Extensions": "4.0.11",
  438. "System.Text.RegularExpressions": "4.1.0",
  439. "System.Threading": "4.0.11",
  440. "System.Threading.Tasks": "4.0.11",
  441. "System.Xml.ReaderWriter": "4.0.11",
  442. "System.Xml.XDocument": "4.0.11"
  443. },
  444. "compile": {
  445. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  446. },
  447. "runtime": {
  448. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  449. }
  450. },
  451. "runtime.native.System/4.0.0": {
  452. "type": "package",
  453. "dependencies": {
  454. "Microsoft.NETCore.Platforms": "1.0.1",
  455. "Microsoft.NETCore.Targets": "1.0.1"
  456. },
  457. "compile": {
  458. "lib/netstandard1.0/_._": {}
  459. },
  460. "runtime": {
  461. "lib/netstandard1.0/_._": {}
  462. }
  463. },
  464. "runtime.native.System.IO.Compression/4.1.0": {
  465. "type": "package",
  466. "dependencies": {
  467. "Microsoft.NETCore.Platforms": "1.0.1",
  468. "Microsoft.NETCore.Targets": "1.0.1"
  469. },
  470. "compile": {
  471. "lib/netstandard1.0/_._": {}
  472. },
  473. "runtime": {
  474. "lib/netstandard1.0/_._": {}
  475. }
  476. },
  477. "runtime.native.System.Net.Http/4.0.1": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.NETCore.Platforms": "1.0.1",
  481. "Microsoft.NETCore.Targets": "1.0.1"
  482. },
  483. "compile": {
  484. "lib/netstandard1.0/_._": {}
  485. },
  486. "runtime": {
  487. "lib/netstandard1.0/_._": {}
  488. }
  489. },
  490. "runtime.native.System.Security.Cryptography/4.0.0": {
  491. "type": "package",
  492. "dependencies": {
  493. "Microsoft.NETCore.Platforms": "1.0.1",
  494. "Microsoft.NETCore.Targets": "1.0.1"
  495. },
  496. "compile": {
  497. "lib/netstandard1.0/_._": {}
  498. },
  499. "runtime": {
  500. "lib/netstandard1.0/_._": {}
  501. }
  502. },
  503. "System.AppContext/4.1.0": {
  504. "type": "package",
  505. "dependencies": {
  506. "System.Runtime": "4.1.0"
  507. },
  508. "compile": {
  509. "ref/netstandard1.6/System.AppContext.dll": {}
  510. },
  511. "runtime": {
  512. "lib/netstandard1.6/System.AppContext.dll": {}
  513. }
  514. },
  515. "System.Buffers/4.0.0": {
  516. "type": "package",
  517. "dependencies": {
  518. "System.Diagnostics.Debug": "4.0.11",
  519. "System.Diagnostics.Tracing": "4.1.0",
  520. "System.Resources.ResourceManager": "4.0.1",
  521. "System.Runtime": "4.1.0",
  522. "System.Threading": "4.0.11"
  523. },
  524. "compile": {
  525. "lib/netstandard1.1/_._": {}
  526. },
  527. "runtime": {
  528. "lib/netstandard1.1/System.Buffers.dll": {}
  529. }
  530. },
  531. "System.Collections/4.0.11": {
  532. "type": "package",
  533. "dependencies": {
  534. "Microsoft.NETCore.Platforms": "1.0.1",
  535. "Microsoft.NETCore.Targets": "1.0.1",
  536. "System.Runtime": "4.1.0"
  537. },
  538. "compile": {
  539. "ref/netstandard1.3/System.Collections.dll": {}
  540. }
  541. },
  542. "System.Collections.Concurrent/4.0.12": {
  543. "type": "package",
  544. "dependencies": {
  545. "System.Collections": "4.0.11",
  546. "System.Diagnostics.Debug": "4.0.11",
  547. "System.Diagnostics.Tracing": "4.1.0",
  548. "System.Globalization": "4.0.11",
  549. "System.Reflection": "4.1.0",
  550. "System.Resources.ResourceManager": "4.0.1",
  551. "System.Runtime": "4.1.0",
  552. "System.Runtime.Extensions": "4.1.0",
  553. "System.Threading": "4.0.11",
  554. "System.Threading.Tasks": "4.0.11"
  555. },
  556. "compile": {
  557. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  558. },
  559. "runtime": {
  560. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  561. }
  562. },
  563. "System.Collections.Immutable/1.2.0": {
  564. "type": "package",
  565. "dependencies": {
  566. "System.Collections": "4.0.11",
  567. "System.Diagnostics.Debug": "4.0.11",
  568. "System.Globalization": "4.0.11",
  569. "System.Linq": "4.1.0",
  570. "System.Resources.ResourceManager": "4.0.1",
  571. "System.Runtime": "4.1.0",
  572. "System.Runtime.Extensions": "4.1.0",
  573. "System.Threading": "4.0.11"
  574. },
  575. "compile": {
  576. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  577. },
  578. "runtime": {
  579. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  580. }
  581. },
  582. "System.Collections.NonGeneric/4.0.1": {
  583. "type": "package",
  584. "dependencies": {
  585. "System.Diagnostics.Debug": "4.0.11",
  586. "System.Globalization": "4.0.11",
  587. "System.Resources.ResourceManager": "4.0.1",
  588. "System.Runtime": "4.1.0",
  589. "System.Runtime.Extensions": "4.1.0",
  590. "System.Threading": "4.0.11"
  591. },
  592. "compile": {
  593. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  594. },
  595. "runtime": {
  596. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  597. }
  598. },
  599. "System.Collections.Specialized/4.0.1": {
  600. "type": "package",
  601. "dependencies": {
  602. "System.Collections.NonGeneric": "4.0.1",
  603. "System.Globalization": "4.0.11",
  604. "System.Globalization.Extensions": "4.0.1",
  605. "System.Resources.ResourceManager": "4.0.1",
  606. "System.Runtime": "4.1.0",
  607. "System.Runtime.Extensions": "4.1.0",
  608. "System.Threading": "4.0.11"
  609. },
  610. "compile": {
  611. "ref/netstandard1.3/_._": {}
  612. },
  613. "runtime": {
  614. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  615. }
  616. },
  617. "System.ComponentModel/4.0.1": {
  618. "type": "package",
  619. "dependencies": {
  620. "System.Runtime": "4.1.0"
  621. },
  622. "compile": {
  623. "ref/netstandard1.0/System.ComponentModel.dll": {}
  624. },
  625. "runtime": {
  626. "lib/netstandard1.3/System.ComponentModel.dll": {}
  627. }
  628. },
  629. "System.ComponentModel.EventBasedAsync/4.0.11": {
  630. "type": "package",
  631. "dependencies": {
  632. "System.Resources.ResourceManager": "4.0.1",
  633. "System.Runtime": "4.1.0",
  634. "System.Threading": "4.0.11",
  635. "System.Threading.Tasks": "4.0.11"
  636. },
  637. "compile": {
  638. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  639. },
  640. "runtime": {
  641. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  642. }
  643. },
  644. "System.ComponentModel.Primitives/4.1.0": {
  645. "type": "package",
  646. "dependencies": {
  647. "System.ComponentModel": "4.0.1",
  648. "System.Resources.ResourceManager": "4.0.1",
  649. "System.Runtime": "4.1.0"
  650. },
  651. "compile": {
  652. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  653. },
  654. "runtime": {
  655. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  656. }
  657. },
  658. "System.ComponentModel.TypeConverter/4.1.0": {
  659. "type": "package",
  660. "dependencies": {
  661. "System.Collections": "4.0.11",
  662. "System.Collections.NonGeneric": "4.0.1",
  663. "System.Collections.Specialized": "4.0.1",
  664. "System.ComponentModel": "4.0.1",
  665. "System.ComponentModel.Primitives": "4.1.0",
  666. "System.Globalization": "4.0.11",
  667. "System.Linq": "4.1.0",
  668. "System.Reflection": "4.1.0",
  669. "System.Reflection.Extensions": "4.0.1",
  670. "System.Reflection.Primitives": "4.0.1",
  671. "System.Reflection.TypeExtensions": "4.1.0",
  672. "System.Resources.ResourceManager": "4.0.1",
  673. "System.Runtime": "4.1.0",
  674. "System.Runtime.Extensions": "4.1.0",
  675. "System.Threading": "4.0.11"
  676. },
  677. "compile": {
  678. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  679. },
  680. "runtime": {
  681. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  682. }
  683. },
  684. "System.Console/4.0.0": {
  685. "type": "package",
  686. "dependencies": {
  687. "Microsoft.NETCore.Platforms": "1.0.1",
  688. "Microsoft.NETCore.Targets": "1.0.1",
  689. "System.IO": "4.1.0",
  690. "System.Runtime": "4.1.0",
  691. "System.Text.Encoding": "4.0.11"
  692. },
  693. "compile": {
  694. "ref/netstandard1.3/System.Console.dll": {}
  695. }
  696. },
  697. "System.Diagnostics.Debug/4.0.11": {
  698. "type": "package",
  699. "dependencies": {
  700. "Microsoft.NETCore.Platforms": "1.0.1",
  701. "Microsoft.NETCore.Targets": "1.0.1",
  702. "System.Runtime": "4.1.0"
  703. },
  704. "compile": {
  705. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  706. }
  707. },
  708. "System.Diagnostics.DiagnosticSource/4.0.0": {
  709. "type": "package",
  710. "dependencies": {
  711. "System.Collections": "4.0.11",
  712. "System.Diagnostics.Tracing": "4.1.0",
  713. "System.Reflection": "4.1.0",
  714. "System.Runtime": "4.1.0",
  715. "System.Threading": "4.0.11"
  716. },
  717. "compile": {
  718. "lib/netstandard1.3/_._": {}
  719. },
  720. "runtime": {
  721. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  722. }
  723. },
  724. "System.Diagnostics.Process/4.1.0": {
  725. "type": "package",
  726. "dependencies": {
  727. "Microsoft.NETCore.Platforms": "1.0.1",
  728. "Microsoft.Win32.Primitives": "4.0.1",
  729. "Microsoft.Win32.Registry": "4.0.0",
  730. "System.Collections": "4.0.11",
  731. "System.Diagnostics.Debug": "4.0.11",
  732. "System.Globalization": "4.0.11",
  733. "System.IO": "4.1.0",
  734. "System.IO.FileSystem": "4.0.1",
  735. "System.IO.FileSystem.Primitives": "4.0.1",
  736. "System.Resources.ResourceManager": "4.0.1",
  737. "System.Runtime": "4.1.0",
  738. "System.Runtime.Extensions": "4.1.0",
  739. "System.Runtime.Handles": "4.0.1",
  740. "System.Runtime.InteropServices": "4.1.0",
  741. "System.Text.Encoding": "4.0.11",
  742. "System.Text.Encoding.Extensions": "4.0.11",
  743. "System.Threading": "4.0.11",
  744. "System.Threading.Tasks": "4.0.11",
  745. "System.Threading.Thread": "4.0.0",
  746. "System.Threading.ThreadPool": "4.0.10",
  747. "runtime.native.System": "4.0.0"
  748. },
  749. "compile": {
  750. "ref/netstandard1.4/System.Diagnostics.Process.dll": {}
  751. },
  752. "runtimeTargets": {
  753. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  754. "assetType": "runtime",
  755. "rid": "linux"
  756. },
  757. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  758. "assetType": "runtime",
  759. "rid": "osx"
  760. },
  761. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  762. "assetType": "runtime",
  763. "rid": "win"
  764. }
  765. }
  766. },
  767. "System.Diagnostics.TextWriterTraceListener/4.0.0": {
  768. "type": "package",
  769. "dependencies": {
  770. "System.Diagnostics.TraceSource": "4.0.0",
  771. "System.Globalization": "4.0.11",
  772. "System.IO": "4.1.0",
  773. "System.Resources.ResourceManager": "4.0.1",
  774. "System.Runtime": "4.1.0",
  775. "System.Threading": "4.0.11"
  776. },
  777. "compile": {
  778. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  779. },
  780. "runtime": {
  781. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  782. }
  783. },
  784. "System.Diagnostics.Tools/4.0.1": {
  785. "type": "package",
  786. "dependencies": {
  787. "Microsoft.NETCore.Platforms": "1.0.1",
  788. "Microsoft.NETCore.Targets": "1.0.1",
  789. "System.Runtime": "4.1.0"
  790. },
  791. "compile": {
  792. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  793. }
  794. },
  795. "System.Diagnostics.TraceSource/4.0.0": {
  796. "type": "package",
  797. "dependencies": {
  798. "Microsoft.NETCore.Platforms": "1.0.1",
  799. "System.Collections": "4.0.11",
  800. "System.Diagnostics.Debug": "4.0.11",
  801. "System.Globalization": "4.0.11",
  802. "System.Resources.ResourceManager": "4.0.1",
  803. "System.Runtime": "4.1.0",
  804. "System.Runtime.Extensions": "4.1.0",
  805. "System.Threading": "4.0.11",
  806. "runtime.native.System": "4.0.0"
  807. },
  808. "compile": {
  809. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  810. },
  811. "runtimeTargets": {
  812. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  813. "assetType": "runtime",
  814. "rid": "unix"
  815. },
  816. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  817. "assetType": "runtime",
  818. "rid": "win"
  819. }
  820. }
  821. },
  822. "System.Diagnostics.Tracing/4.1.0": {
  823. "type": "package",
  824. "dependencies": {
  825. "Microsoft.NETCore.Platforms": "1.0.1",
  826. "Microsoft.NETCore.Targets": "1.0.1",
  827. "System.Runtime": "4.1.0"
  828. },
  829. "compile": {
  830. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  831. }
  832. },
  833. "System.Dynamic.Runtime/4.0.11": {
  834. "type": "package",
  835. "dependencies": {
  836. "System.Collections": "4.0.11",
  837. "System.Diagnostics.Debug": "4.0.11",
  838. "System.Globalization": "4.0.11",
  839. "System.Linq": "4.1.0",
  840. "System.Linq.Expressions": "4.1.0",
  841. "System.ObjectModel": "4.0.12",
  842. "System.Reflection": "4.1.0",
  843. "System.Reflection.Emit": "4.0.1",
  844. "System.Reflection.Emit.ILGeneration": "4.0.1",
  845. "System.Reflection.Primitives": "4.0.1",
  846. "System.Reflection.TypeExtensions": "4.1.0",
  847. "System.Resources.ResourceManager": "4.0.1",
  848. "System.Runtime": "4.1.0",
  849. "System.Runtime.Extensions": "4.1.0",
  850. "System.Threading": "4.0.11"
  851. },
  852. "compile": {
  853. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  854. },
  855. "runtime": {
  856. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  857. }
  858. },
  859. "System.Globalization/4.0.11": {
  860. "type": "package",
  861. "dependencies": {
  862. "Microsoft.NETCore.Platforms": "1.0.1",
  863. "Microsoft.NETCore.Targets": "1.0.1",
  864. "System.Runtime": "4.1.0"
  865. },
  866. "compile": {
  867. "ref/netstandard1.3/System.Globalization.dll": {}
  868. }
  869. },
  870. "System.Globalization.Calendars/4.0.1": {
  871. "type": "package",
  872. "dependencies": {
  873. "Microsoft.NETCore.Platforms": "1.0.1",
  874. "Microsoft.NETCore.Targets": "1.0.1",
  875. "System.Globalization": "4.0.11",
  876. "System.Runtime": "4.1.0"
  877. },
  878. "compile": {
  879. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  880. }
  881. },
  882. "System.Globalization.Extensions/4.0.1": {
  883. "type": "package",
  884. "dependencies": {
  885. "Microsoft.NETCore.Platforms": "1.0.1",
  886. "System.Globalization": "4.0.11",
  887. "System.Resources.ResourceManager": "4.0.1",
  888. "System.Runtime": "4.1.0",
  889. "System.Runtime.Extensions": "4.1.0",
  890. "System.Runtime.InteropServices": "4.1.0"
  891. },
  892. "compile": {
  893. "ref/netstandard1.3/_._": {}
  894. },
  895. "runtimeTargets": {
  896. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  897. "assetType": "runtime",
  898. "rid": "unix"
  899. },
  900. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  901. "assetType": "runtime",
  902. "rid": "win"
  903. }
  904. }
  905. },
  906. "System.IO/4.1.0": {
  907. "type": "package",
  908. "dependencies": {
  909. "Microsoft.NETCore.Platforms": "1.0.1",
  910. "Microsoft.NETCore.Targets": "1.0.1",
  911. "System.Runtime": "4.1.0",
  912. "System.Text.Encoding": "4.0.11",
  913. "System.Threading.Tasks": "4.0.11"
  914. },
  915. "compile": {
  916. "ref/netstandard1.5/System.IO.dll": {}
  917. }
  918. },
  919. "System.IO.Compression/4.1.0": {
  920. "type": "package",
  921. "dependencies": {
  922. "Microsoft.NETCore.Platforms": "1.0.1",
  923. "System.Collections": "4.0.11",
  924. "System.Diagnostics.Debug": "4.0.11",
  925. "System.IO": "4.1.0",
  926. "System.Resources.ResourceManager": "4.0.1",
  927. "System.Runtime": "4.1.0",
  928. "System.Runtime.Extensions": "4.1.0",
  929. "System.Runtime.Handles": "4.0.1",
  930. "System.Runtime.InteropServices": "4.1.0",
  931. "System.Text.Encoding": "4.0.11",
  932. "System.Threading": "4.0.11",
  933. "System.Threading.Tasks": "4.0.11",
  934. "runtime.native.System": "4.0.0",
  935. "runtime.native.System.IO.Compression": "4.1.0"
  936. },
  937. "compile": {
  938. "ref/netstandard1.3/System.IO.Compression.dll": {}
  939. },
  940. "runtimeTargets": {
  941. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  942. "assetType": "runtime",
  943. "rid": "unix"
  944. },
  945. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  946. "assetType": "runtime",
  947. "rid": "win"
  948. }
  949. }
  950. },
  951. "System.IO.Compression.ZipFile/4.0.1": {
  952. "type": "package",
  953. "dependencies": {
  954. "System.Buffers": "4.0.0",
  955. "System.IO": "4.1.0",
  956. "System.IO.Compression": "4.1.0",
  957. "System.IO.FileSystem": "4.0.1",
  958. "System.IO.FileSystem.Primitives": "4.0.1",
  959. "System.Resources.ResourceManager": "4.0.1",
  960. "System.Runtime": "4.1.0",
  961. "System.Runtime.Extensions": "4.1.0",
  962. "System.Text.Encoding": "4.0.11"
  963. },
  964. "compile": {
  965. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  966. },
  967. "runtime": {
  968. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  969. }
  970. },
  971. "System.IO.FileSystem/4.0.1": {
  972. "type": "package",
  973. "dependencies": {
  974. "Microsoft.NETCore.Platforms": "1.0.1",
  975. "Microsoft.NETCore.Targets": "1.0.1",
  976. "System.IO": "4.1.0",
  977. "System.IO.FileSystem.Primitives": "4.0.1",
  978. "System.Runtime": "4.1.0",
  979. "System.Runtime.Handles": "4.0.1",
  980. "System.Text.Encoding": "4.0.11",
  981. "System.Threading.Tasks": "4.0.11"
  982. },
  983. "compile": {
  984. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  985. }
  986. },
  987. "System.IO.FileSystem.Primitives/4.0.1": {
  988. "type": "package",
  989. "dependencies": {
  990. "System.Runtime": "4.1.0"
  991. },
  992. "compile": {
  993. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  994. },
  995. "runtime": {
  996. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  997. }
  998. },
  999. "System.Linq/4.1.0": {
  1000. "type": "package",
  1001. "dependencies": {
  1002. "System.Collections": "4.0.11",
  1003. "System.Diagnostics.Debug": "4.0.11",
  1004. "System.Resources.ResourceManager": "4.0.1",
  1005. "System.Runtime": "4.1.0",
  1006. "System.Runtime.Extensions": "4.1.0"
  1007. },
  1008. "compile": {
  1009. "ref/netstandard1.6/System.Linq.dll": {}
  1010. },
  1011. "runtime": {
  1012. "lib/netstandard1.6/System.Linq.dll": {}
  1013. }
  1014. },
  1015. "System.Linq.Expressions/4.1.0": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "System.Collections": "4.0.11",
  1019. "System.Diagnostics.Debug": "4.0.11",
  1020. "System.Globalization": "4.0.11",
  1021. "System.IO": "4.1.0",
  1022. "System.Linq": "4.1.0",
  1023. "System.ObjectModel": "4.0.12",
  1024. "System.Reflection": "4.1.0",
  1025. "System.Reflection.Emit": "4.0.1",
  1026. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1027. "System.Reflection.Emit.Lightweight": "4.0.1",
  1028. "System.Reflection.Extensions": "4.0.1",
  1029. "System.Reflection.Primitives": "4.0.1",
  1030. "System.Reflection.TypeExtensions": "4.1.0",
  1031. "System.Resources.ResourceManager": "4.0.1",
  1032. "System.Runtime": "4.1.0",
  1033. "System.Runtime.Extensions": "4.1.0",
  1034. "System.Threading": "4.0.11"
  1035. },
  1036. "compile": {
  1037. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1038. },
  1039. "runtime": {
  1040. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1041. }
  1042. },
  1043. "System.Net.Http/4.1.0": {
  1044. "type": "package",
  1045. "dependencies": {
  1046. "Microsoft.NETCore.Platforms": "1.0.1",
  1047. "System.Collections": "4.0.11",
  1048. "System.Diagnostics.Debug": "4.0.11",
  1049. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1050. "System.Diagnostics.Tracing": "4.1.0",
  1051. "System.Globalization": "4.0.11",
  1052. "System.Globalization.Extensions": "4.0.1",
  1053. "System.IO": "4.1.0",
  1054. "System.IO.FileSystem": "4.0.1",
  1055. "System.Net.Primitives": "4.0.11",
  1056. "System.Resources.ResourceManager": "4.0.1",
  1057. "System.Runtime": "4.1.0",
  1058. "System.Runtime.Extensions": "4.1.0",
  1059. "System.Runtime.Handles": "4.0.1",
  1060. "System.Runtime.InteropServices": "4.1.0",
  1061. "System.Security.Cryptography.Algorithms": "4.2.0",
  1062. "System.Security.Cryptography.Encoding": "4.0.0",
  1063. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1064. "System.Security.Cryptography.Primitives": "4.0.0",
  1065. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1066. "System.Text.Encoding": "4.0.11",
  1067. "System.Threading": "4.0.11",
  1068. "System.Threading.Tasks": "4.0.11",
  1069. "runtime.native.System": "4.0.0",
  1070. "runtime.native.System.Net.Http": "4.0.1",
  1071. "runtime.native.System.Security.Cryptography": "4.0.0"
  1072. },
  1073. "compile": {
  1074. "ref/netstandard1.3/System.Net.Http.dll": {}
  1075. },
  1076. "runtimeTargets": {
  1077. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1078. "assetType": "runtime",
  1079. "rid": "unix"
  1080. },
  1081. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1082. "assetType": "runtime",
  1083. "rid": "win"
  1084. }
  1085. }
  1086. },
  1087. "System.Net.Primitives/4.0.11": {
  1088. "type": "package",
  1089. "dependencies": {
  1090. "Microsoft.NETCore.Platforms": "1.0.1",
  1091. "Microsoft.NETCore.Targets": "1.0.1",
  1092. "System.Runtime": "4.1.0",
  1093. "System.Runtime.Handles": "4.0.1"
  1094. },
  1095. "compile": {
  1096. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1097. }
  1098. },
  1099. "System.Net.Sockets/4.1.0": {
  1100. "type": "package",
  1101. "dependencies": {
  1102. "Microsoft.NETCore.Platforms": "1.0.1",
  1103. "Microsoft.NETCore.Targets": "1.0.1",
  1104. "System.IO": "4.1.0",
  1105. "System.Net.Primitives": "4.0.11",
  1106. "System.Runtime": "4.1.0",
  1107. "System.Threading.Tasks": "4.0.11"
  1108. },
  1109. "compile": {
  1110. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1111. }
  1112. },
  1113. "System.ObjectModel/4.0.12": {
  1114. "type": "package",
  1115. "dependencies": {
  1116. "System.Collections": "4.0.11",
  1117. "System.Diagnostics.Debug": "4.0.11",
  1118. "System.Resources.ResourceManager": "4.0.1",
  1119. "System.Runtime": "4.1.0",
  1120. "System.Threading": "4.0.11"
  1121. },
  1122. "compile": {
  1123. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1124. },
  1125. "runtime": {
  1126. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1127. }
  1128. },
  1129. "System.Private.DataContractSerialization/4.1.1": {
  1130. "type": "package",
  1131. "dependencies": {
  1132. "System.Collections": "4.0.11",
  1133. "System.Collections.Concurrent": "4.0.12",
  1134. "System.Diagnostics.Debug": "4.0.11",
  1135. "System.Globalization": "4.0.11",
  1136. "System.IO": "4.1.0",
  1137. "System.Linq": "4.1.0",
  1138. "System.Reflection": "4.1.0",
  1139. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1140. "System.Reflection.Emit.Lightweight": "4.0.1",
  1141. "System.Reflection.Extensions": "4.0.1",
  1142. "System.Reflection.Primitives": "4.0.1",
  1143. "System.Reflection.TypeExtensions": "4.1.0",
  1144. "System.Resources.ResourceManager": "4.0.1",
  1145. "System.Runtime": "4.1.0",
  1146. "System.Runtime.Extensions": "4.1.0",
  1147. "System.Runtime.Serialization.Primitives": "4.1.1",
  1148. "System.Text.Encoding": "4.0.11",
  1149. "System.Text.Encoding.Extensions": "4.0.11",
  1150. "System.Text.RegularExpressions": "4.1.0",
  1151. "System.Threading": "4.0.11",
  1152. "System.Threading.Tasks": "4.0.11",
  1153. "System.Xml.ReaderWriter": "4.0.11",
  1154. "System.Xml.XmlDocument": "4.0.1",
  1155. "System.Xml.XmlSerializer": "4.0.11"
  1156. },
  1157. "compile": {
  1158. "ref/netstandard/_._": {}
  1159. },
  1160. "runtime": {
  1161. "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
  1162. }
  1163. },
  1164. "System.Reflection/4.1.0": {
  1165. "type": "package",
  1166. "dependencies": {
  1167. "Microsoft.NETCore.Platforms": "1.0.1",
  1168. "Microsoft.NETCore.Targets": "1.0.1",
  1169. "System.IO": "4.1.0",
  1170. "System.Reflection.Primitives": "4.0.1",
  1171. "System.Runtime": "4.1.0"
  1172. },
  1173. "compile": {
  1174. "ref/netstandard1.5/System.Reflection.dll": {}
  1175. }
  1176. },
  1177. "System.Reflection.Emit/4.0.1": {
  1178. "type": "package",
  1179. "dependencies": {
  1180. "System.IO": "4.1.0",
  1181. "System.Reflection": "4.1.0",
  1182. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1183. "System.Reflection.Primitives": "4.0.1",
  1184. "System.Runtime": "4.1.0"
  1185. },
  1186. "compile": {
  1187. "ref/netstandard1.1/_._": {}
  1188. },
  1189. "runtime": {
  1190. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1191. }
  1192. },
  1193. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1194. "type": "package",
  1195. "dependencies": {
  1196. "System.Reflection": "4.1.0",
  1197. "System.Reflection.Primitives": "4.0.1",
  1198. "System.Runtime": "4.1.0"
  1199. },
  1200. "compile": {
  1201. "ref/netstandard1.0/_._": {}
  1202. },
  1203. "runtime": {
  1204. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1205. }
  1206. },
  1207. "System.Reflection.Emit.Lightweight/4.0.1": {
  1208. "type": "package",
  1209. "dependencies": {
  1210. "System.Reflection": "4.1.0",
  1211. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1212. "System.Reflection.Primitives": "4.0.1",
  1213. "System.Runtime": "4.1.0"
  1214. },
  1215. "compile": {
  1216. "ref/netstandard1.0/_._": {}
  1217. },
  1218. "runtime": {
  1219. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1220. }
  1221. },
  1222. "System.Reflection.Extensions/4.0.1": {
  1223. "type": "package",
  1224. "dependencies": {
  1225. "Microsoft.NETCore.Platforms": "1.0.1",
  1226. "Microsoft.NETCore.Targets": "1.0.1",
  1227. "System.Reflection": "4.1.0",
  1228. "System.Runtime": "4.1.0"
  1229. },
  1230. "compile": {
  1231. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1232. }
  1233. },
  1234. "System.Reflection.Metadata/1.3.0": {
  1235. "type": "package",
  1236. "dependencies": {
  1237. "System.Collections": "4.0.11",
  1238. "System.Collections.Immutable": "1.2.0",
  1239. "System.Diagnostics.Debug": "4.0.11",
  1240. "System.IO": "4.1.0",
  1241. "System.Linq": "4.1.0",
  1242. "System.Reflection": "4.1.0",
  1243. "System.Reflection.Extensions": "4.0.1",
  1244. "System.Reflection.Primitives": "4.0.1",
  1245. "System.Resources.ResourceManager": "4.0.1",
  1246. "System.Runtime": "4.1.0",
  1247. "System.Runtime.Extensions": "4.1.0",
  1248. "System.Runtime.InteropServices": "4.1.0",
  1249. "System.Text.Encoding": "4.0.11",
  1250. "System.Text.Encoding.Extensions": "4.0.11",
  1251. "System.Threading": "4.0.11"
  1252. },
  1253. "compile": {
  1254. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  1255. },
  1256. "runtime": {
  1257. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  1258. }
  1259. },
  1260. "System.Reflection.Primitives/4.0.1": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Microsoft.NETCore.Platforms": "1.0.1",
  1264. "Microsoft.NETCore.Targets": "1.0.1",
  1265. "System.Runtime": "4.1.0"
  1266. },
  1267. "compile": {
  1268. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1269. }
  1270. },
  1271. "System.Reflection.TypeExtensions/4.1.0": {
  1272. "type": "package",
  1273. "dependencies": {
  1274. "System.Reflection": "4.1.0",
  1275. "System.Runtime": "4.1.0"
  1276. },
  1277. "compile": {
  1278. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1279. },
  1280. "runtime": {
  1281. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1282. }
  1283. },
  1284. "System.Resources.ResourceManager/4.0.1": {
  1285. "type": "package",
  1286. "dependencies": {
  1287. "Microsoft.NETCore.Platforms": "1.0.1",
  1288. "Microsoft.NETCore.Targets": "1.0.1",
  1289. "System.Globalization": "4.0.11",
  1290. "System.Reflection": "4.1.0",
  1291. "System.Runtime": "4.1.0"
  1292. },
  1293. "compile": {
  1294. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1295. }
  1296. },
  1297. "System.Runtime/4.1.0": {
  1298. "type": "package",
  1299. "dependencies": {
  1300. "Microsoft.NETCore.Platforms": "1.0.1",
  1301. "Microsoft.NETCore.Targets": "1.0.1"
  1302. },
  1303. "compile": {
  1304. "ref/netstandard1.5/System.Runtime.dll": {}
  1305. }
  1306. },
  1307. "System.Runtime.Extensions/4.1.0": {
  1308. "type": "package",
  1309. "dependencies": {
  1310. "Microsoft.NETCore.Platforms": "1.0.1",
  1311. "Microsoft.NETCore.Targets": "1.0.1",
  1312. "System.Runtime": "4.1.0"
  1313. },
  1314. "compile": {
  1315. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1316. }
  1317. },
  1318. "System.Runtime.Handles/4.0.1": {
  1319. "type": "package",
  1320. "dependencies": {
  1321. "Microsoft.NETCore.Platforms": "1.0.1",
  1322. "Microsoft.NETCore.Targets": "1.0.1",
  1323. "System.Runtime": "4.1.0"
  1324. },
  1325. "compile": {
  1326. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1327. }
  1328. },
  1329. "System.Runtime.InteropServices/4.1.0": {
  1330. "type": "package",
  1331. "dependencies": {
  1332. "Microsoft.NETCore.Platforms": "1.0.1",
  1333. "Microsoft.NETCore.Targets": "1.0.1",
  1334. "System.Reflection": "4.1.0",
  1335. "System.Reflection.Primitives": "4.0.1",
  1336. "System.Runtime": "4.1.0",
  1337. "System.Runtime.Handles": "4.0.1"
  1338. },
  1339. "compile": {
  1340. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1341. }
  1342. },
  1343. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1344. "type": "package",
  1345. "dependencies": {
  1346. "Microsoft.NETCore.Platforms": "1.0.1",
  1347. "System.Reflection": "4.1.0",
  1348. "System.Resources.ResourceManager": "4.0.1",
  1349. "System.Runtime": "4.1.0",
  1350. "System.Runtime.InteropServices": "4.1.0",
  1351. "System.Threading": "4.0.11",
  1352. "runtime.native.System": "4.0.0"
  1353. },
  1354. "compile": {
  1355. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1356. },
  1357. "runtimeTargets": {
  1358. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1359. "assetType": "runtime",
  1360. "rid": "unix"
  1361. },
  1362. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1363. "assetType": "runtime",
  1364. "rid": "win"
  1365. }
  1366. }
  1367. },
  1368. "System.Runtime.Loader/4.0.0": {
  1369. "type": "package",
  1370. "dependencies": {
  1371. "System.IO": "4.1.0",
  1372. "System.Reflection": "4.1.0",
  1373. "System.Runtime": "4.1.0"
  1374. },
  1375. "compile": {
  1376. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  1377. },
  1378. "runtime": {
  1379. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  1380. }
  1381. },
  1382. "System.Runtime.Numerics/4.0.1": {
  1383. "type": "package",
  1384. "dependencies": {
  1385. "System.Globalization": "4.0.11",
  1386. "System.Resources.ResourceManager": "4.0.1",
  1387. "System.Runtime": "4.1.0",
  1388. "System.Runtime.Extensions": "4.1.0"
  1389. },
  1390. "compile": {
  1391. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1392. },
  1393. "runtime": {
  1394. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1395. }
  1396. },
  1397. "System.Runtime.Serialization.Json/4.0.2": {
  1398. "type": "package",
  1399. "dependencies": {
  1400. "System.IO": "4.1.0",
  1401. "System.Private.DataContractSerialization": "4.1.1",
  1402. "System.Runtime": "4.1.0"
  1403. },
  1404. "compile": {
  1405. "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {}
  1406. },
  1407. "runtime": {
  1408. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {}
  1409. }
  1410. },
  1411. "System.Runtime.Serialization.Primitives/4.1.1": {
  1412. "type": "package",
  1413. "dependencies": {
  1414. "System.Resources.ResourceManager": "4.0.1",
  1415. "System.Runtime": "4.1.0"
  1416. },
  1417. "compile": {
  1418. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1419. },
  1420. "runtime": {
  1421. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1422. }
  1423. },
  1424. "System.Security.Cryptography.Algorithms/4.2.0": {
  1425. "type": "package",
  1426. "dependencies": {
  1427. "Microsoft.NETCore.Platforms": "1.0.1",
  1428. "System.Collections": "4.0.11",
  1429. "System.IO": "4.1.0",
  1430. "System.Resources.ResourceManager": "4.0.1",
  1431. "System.Runtime": "4.1.0",
  1432. "System.Runtime.Extensions": "4.1.0",
  1433. "System.Runtime.Handles": "4.0.1",
  1434. "System.Runtime.InteropServices": "4.1.0",
  1435. "System.Runtime.Numerics": "4.0.1",
  1436. "System.Security.Cryptography.Encoding": "4.0.0",
  1437. "System.Security.Cryptography.Primitives": "4.0.0",
  1438. "System.Text.Encoding": "4.0.11",
  1439. "runtime.native.System.Security.Cryptography": "4.0.0"
  1440. },
  1441. "compile": {
  1442. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1443. },
  1444. "runtimeTargets": {
  1445. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1446. "assetType": "runtime",
  1447. "rid": "unix"
  1448. },
  1449. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1450. "assetType": "runtime",
  1451. "rid": "win"
  1452. }
  1453. }
  1454. },
  1455. "System.Security.Cryptography.Cng/4.2.0": {
  1456. "type": "package",
  1457. "dependencies": {
  1458. "Microsoft.NETCore.Platforms": "1.0.1",
  1459. "System.IO": "4.1.0",
  1460. "System.Resources.ResourceManager": "4.0.1",
  1461. "System.Runtime": "4.1.0",
  1462. "System.Runtime.Extensions": "4.1.0",
  1463. "System.Runtime.Handles": "4.0.1",
  1464. "System.Runtime.InteropServices": "4.1.0",
  1465. "System.Security.Cryptography.Algorithms": "4.2.0",
  1466. "System.Security.Cryptography.Encoding": "4.0.0",
  1467. "System.Security.Cryptography.Primitives": "4.0.0",
  1468. "System.Text.Encoding": "4.0.11"
  1469. },
  1470. "compile": {
  1471. "ref/netstandard1.6/_._": {}
  1472. },
  1473. "runtimeTargets": {
  1474. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1475. "assetType": "runtime",
  1476. "rid": "unix"
  1477. },
  1478. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1479. "assetType": "runtime",
  1480. "rid": "win"
  1481. }
  1482. }
  1483. },
  1484. "System.Security.Cryptography.Csp/4.0.0": {
  1485. "type": "package",
  1486. "dependencies": {
  1487. "Microsoft.NETCore.Platforms": "1.0.1",
  1488. "System.IO": "4.1.0",
  1489. "System.Reflection": "4.1.0",
  1490. "System.Resources.ResourceManager": "4.0.1",
  1491. "System.Runtime": "4.1.0",
  1492. "System.Runtime.Extensions": "4.1.0",
  1493. "System.Runtime.Handles": "4.0.1",
  1494. "System.Runtime.InteropServices": "4.1.0",
  1495. "System.Security.Cryptography.Algorithms": "4.2.0",
  1496. "System.Security.Cryptography.Encoding": "4.0.0",
  1497. "System.Security.Cryptography.Primitives": "4.0.0",
  1498. "System.Text.Encoding": "4.0.11",
  1499. "System.Threading": "4.0.11"
  1500. },
  1501. "compile": {
  1502. "ref/netstandard1.3/_._": {}
  1503. },
  1504. "runtimeTargets": {
  1505. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1506. "assetType": "runtime",
  1507. "rid": "unix"
  1508. },
  1509. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1510. "assetType": "runtime",
  1511. "rid": "win"
  1512. }
  1513. }
  1514. },
  1515. "System.Security.Cryptography.Encoding/4.0.0": {
  1516. "type": "package",
  1517. "dependencies": {
  1518. "Microsoft.NETCore.Platforms": "1.0.1",
  1519. "System.Collections": "4.0.11",
  1520. "System.Collections.Concurrent": "4.0.12",
  1521. "System.Linq": "4.1.0",
  1522. "System.Resources.ResourceManager": "4.0.1",
  1523. "System.Runtime": "4.1.0",
  1524. "System.Runtime.Extensions": "4.1.0",
  1525. "System.Runtime.Handles": "4.0.1",
  1526. "System.Runtime.InteropServices": "4.1.0",
  1527. "System.Security.Cryptography.Primitives": "4.0.0",
  1528. "System.Text.Encoding": "4.0.11",
  1529. "runtime.native.System.Security.Cryptography": "4.0.0"
  1530. },
  1531. "compile": {
  1532. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1533. },
  1534. "runtimeTargets": {
  1535. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1536. "assetType": "runtime",
  1537. "rid": "unix"
  1538. },
  1539. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1540. "assetType": "runtime",
  1541. "rid": "win"
  1542. }
  1543. }
  1544. },
  1545. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1546. "type": "package",
  1547. "dependencies": {
  1548. "System.Collections": "4.0.11",
  1549. "System.IO": "4.1.0",
  1550. "System.Resources.ResourceManager": "4.0.1",
  1551. "System.Runtime": "4.1.0",
  1552. "System.Runtime.Extensions": "4.1.0",
  1553. "System.Runtime.Handles": "4.0.1",
  1554. "System.Runtime.InteropServices": "4.1.0",
  1555. "System.Runtime.Numerics": "4.0.1",
  1556. "System.Security.Cryptography.Algorithms": "4.2.0",
  1557. "System.Security.Cryptography.Encoding": "4.0.0",
  1558. "System.Security.Cryptography.Primitives": "4.0.0",
  1559. "System.Text.Encoding": "4.0.11",
  1560. "runtime.native.System.Security.Cryptography": "4.0.0"
  1561. },
  1562. "compile": {
  1563. "ref/netstandard1.6/_._": {}
  1564. },
  1565. "runtime": {
  1566. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1567. },
  1568. "runtimeTargets": {
  1569. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1570. "assetType": "runtime",
  1571. "rid": "unix"
  1572. }
  1573. }
  1574. },
  1575. "System.Security.Cryptography.Primitives/4.0.0": {
  1576. "type": "package",
  1577. "dependencies": {
  1578. "System.Diagnostics.Debug": "4.0.11",
  1579. "System.Globalization": "4.0.11",
  1580. "System.IO": "4.1.0",
  1581. "System.Resources.ResourceManager": "4.0.1",
  1582. "System.Runtime": "4.1.0",
  1583. "System.Threading": "4.0.11",
  1584. "System.Threading.Tasks": "4.0.11"
  1585. },
  1586. "compile": {
  1587. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1588. },
  1589. "runtime": {
  1590. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1591. }
  1592. },
  1593. "System.Security.Cryptography.X509Certificates/4.1.0": {
  1594. "type": "package",
  1595. "dependencies": {
  1596. "Microsoft.NETCore.Platforms": "1.0.1",
  1597. "System.Collections": "4.0.11",
  1598. "System.Diagnostics.Debug": "4.0.11",
  1599. "System.Globalization": "4.0.11",
  1600. "System.Globalization.Calendars": "4.0.1",
  1601. "System.IO": "4.1.0",
  1602. "System.IO.FileSystem": "4.0.1",
  1603. "System.IO.FileSystem.Primitives": "4.0.1",
  1604. "System.Resources.ResourceManager": "4.0.1",
  1605. "System.Runtime": "4.1.0",
  1606. "System.Runtime.Extensions": "4.1.0",
  1607. "System.Runtime.Handles": "4.0.1",
  1608. "System.Runtime.InteropServices": "4.1.0",
  1609. "System.Runtime.Numerics": "4.0.1",
  1610. "System.Security.Cryptography.Algorithms": "4.2.0",
  1611. "System.Security.Cryptography.Cng": "4.2.0",
  1612. "System.Security.Cryptography.Csp": "4.0.0",
  1613. "System.Security.Cryptography.Encoding": "4.0.0",
  1614. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1615. "System.Security.Cryptography.Primitives": "4.0.0",
  1616. "System.Text.Encoding": "4.0.11",
  1617. "System.Threading": "4.0.11",
  1618. "runtime.native.System": "4.0.0",
  1619. "runtime.native.System.Net.Http": "4.0.1",
  1620. "runtime.native.System.Security.Cryptography": "4.0.0"
  1621. },
  1622. "compile": {
  1623. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  1624. },
  1625. "runtimeTargets": {
  1626. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1627. "assetType": "runtime",
  1628. "rid": "unix"
  1629. },
  1630. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1631. "assetType": "runtime",
  1632. "rid": "win"
  1633. }
  1634. }
  1635. },
  1636. "System.Text.Encoding/4.0.11": {
  1637. "type": "package",
  1638. "dependencies": {
  1639. "Microsoft.NETCore.Platforms": "1.0.1",
  1640. "Microsoft.NETCore.Targets": "1.0.1",
  1641. "System.Runtime": "4.1.0"
  1642. },
  1643. "compile": {
  1644. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  1645. }
  1646. },
  1647. "System.Text.Encoding.Extensions/4.0.11": {
  1648. "type": "package",
  1649. "dependencies": {
  1650. "Microsoft.NETCore.Platforms": "1.0.1",
  1651. "Microsoft.NETCore.Targets": "1.0.1",
  1652. "System.Runtime": "4.1.0",
  1653. "System.Text.Encoding": "4.0.11"
  1654. },
  1655. "compile": {
  1656. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  1657. }
  1658. },
  1659. "System.Text.RegularExpressions/4.1.0": {
  1660. "type": "package",
  1661. "dependencies": {
  1662. "System.Collections": "4.0.11",
  1663. "System.Globalization": "4.0.11",
  1664. "System.Resources.ResourceManager": "4.0.1",
  1665. "System.Runtime": "4.1.0",
  1666. "System.Runtime.Extensions": "4.1.0",
  1667. "System.Threading": "4.0.11"
  1668. },
  1669. "compile": {
  1670. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1671. },
  1672. "runtime": {
  1673. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1674. }
  1675. },
  1676. "System.Threading/4.0.11": {
  1677. "type": "package",
  1678. "dependencies": {
  1679. "System.Runtime": "4.1.0",
  1680. "System.Threading.Tasks": "4.0.11"
  1681. },
  1682. "compile": {
  1683. "ref/netstandard1.3/System.Threading.dll": {}
  1684. },
  1685. "runtime": {
  1686. "lib/netstandard1.3/System.Threading.dll": {}
  1687. }
  1688. },
  1689. "System.Threading.Tasks/4.0.11": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "Microsoft.NETCore.Platforms": "1.0.1",
  1693. "Microsoft.NETCore.Targets": "1.0.1",
  1694. "System.Runtime": "4.1.0"
  1695. },
  1696. "compile": {
  1697. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  1698. }
  1699. },
  1700. "System.Threading.Tasks.Extensions/4.0.0": {
  1701. "type": "package",
  1702. "dependencies": {
  1703. "System.Collections": "4.0.11",
  1704. "System.Runtime": "4.1.0",
  1705. "System.Threading.Tasks": "4.0.11"
  1706. },
  1707. "compile": {
  1708. "lib/netstandard1.0/_._": {}
  1709. },
  1710. "runtime": {
  1711. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  1712. }
  1713. },
  1714. "System.Threading.Thread/4.0.0": {
  1715. "type": "package",
  1716. "dependencies": {
  1717. "System.Runtime": "4.1.0"
  1718. },
  1719. "compile": {
  1720. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  1721. },
  1722. "runtime": {
  1723. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  1724. }
  1725. },
  1726. "System.Threading.ThreadPool/4.0.10": {
  1727. "type": "package",
  1728. "dependencies": {
  1729. "System.Runtime": "4.1.0",
  1730. "System.Runtime.Handles": "4.0.1"
  1731. },
  1732. "compile": {
  1733. "ref/netstandard1.3/_._": {}
  1734. },
  1735. "runtime": {
  1736. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  1737. }
  1738. },
  1739. "System.Threading.Timer/4.0.1": {
  1740. "type": "package",
  1741. "dependencies": {
  1742. "Microsoft.NETCore.Platforms": "1.0.1",
  1743. "Microsoft.NETCore.Targets": "1.0.1",
  1744. "System.Runtime": "4.1.0"
  1745. },
  1746. "compile": {
  1747. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  1748. }
  1749. },
  1750. "System.Xml.ReaderWriter/4.0.11": {
  1751. "type": "package",
  1752. "dependencies": {
  1753. "System.Collections": "4.0.11",
  1754. "System.Diagnostics.Debug": "4.0.11",
  1755. "System.Globalization": "4.0.11",
  1756. "System.IO": "4.1.0",
  1757. "System.IO.FileSystem": "4.0.1",
  1758. "System.IO.FileSystem.Primitives": "4.0.1",
  1759. "System.Resources.ResourceManager": "4.0.1",
  1760. "System.Runtime": "4.1.0",
  1761. "System.Runtime.Extensions": "4.1.0",
  1762. "System.Runtime.InteropServices": "4.1.0",
  1763. "System.Text.Encoding": "4.0.11",
  1764. "System.Text.Encoding.Extensions": "4.0.11",
  1765. "System.Text.RegularExpressions": "4.1.0",
  1766. "System.Threading.Tasks": "4.0.11",
  1767. "System.Threading.Tasks.Extensions": "4.0.0"
  1768. },
  1769. "compile": {
  1770. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1771. },
  1772. "runtime": {
  1773. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1774. }
  1775. },
  1776. "System.Xml.XDocument/4.0.11": {
  1777. "type": "package",
  1778. "dependencies": {
  1779. "System.Collections": "4.0.11",
  1780. "System.Diagnostics.Debug": "4.0.11",
  1781. "System.Diagnostics.Tools": "4.0.1",
  1782. "System.Globalization": "4.0.11",
  1783. "System.IO": "4.1.0",
  1784. "System.Reflection": "4.1.0",
  1785. "System.Resources.ResourceManager": "4.0.1",
  1786. "System.Runtime": "4.1.0",
  1787. "System.Runtime.Extensions": "4.1.0",
  1788. "System.Text.Encoding": "4.0.11",
  1789. "System.Threading": "4.0.11",
  1790. "System.Xml.ReaderWriter": "4.0.11"
  1791. },
  1792. "compile": {
  1793. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  1794. },
  1795. "runtime": {
  1796. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  1797. }
  1798. },
  1799. "System.Xml.XmlDocument/4.0.1": {
  1800. "type": "package",
  1801. "dependencies": {
  1802. "System.Collections": "4.0.11",
  1803. "System.Diagnostics.Debug": "4.0.11",
  1804. "System.Globalization": "4.0.11",
  1805. "System.IO": "4.1.0",
  1806. "System.Resources.ResourceManager": "4.0.1",
  1807. "System.Runtime": "4.1.0",
  1808. "System.Runtime.Extensions": "4.1.0",
  1809. "System.Text.Encoding": "4.0.11",
  1810. "System.Threading": "4.0.11",
  1811. "System.Xml.ReaderWriter": "4.0.11"
  1812. },
  1813. "compile": {
  1814. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1815. },
  1816. "runtime": {
  1817. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1818. }
  1819. },
  1820. "System.Xml.XmlSerializer/4.0.11": {
  1821. "type": "package",
  1822. "dependencies": {
  1823. "System.Collections": "4.0.11",
  1824. "System.Globalization": "4.0.11",
  1825. "System.IO": "4.1.0",
  1826. "System.Linq": "4.1.0",
  1827. "System.Reflection": "4.1.0",
  1828. "System.Reflection.Emit": "4.0.1",
  1829. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1830. "System.Reflection.Extensions": "4.0.1",
  1831. "System.Reflection.Primitives": "4.0.1",
  1832. "System.Reflection.TypeExtensions": "4.1.0",
  1833. "System.Resources.ResourceManager": "4.0.1",
  1834. "System.Runtime": "4.1.0",
  1835. "System.Runtime.Extensions": "4.1.0",
  1836. "System.Text.RegularExpressions": "4.1.0",
  1837. "System.Threading": "4.0.11",
  1838. "System.Xml.ReaderWriter": "4.0.11",
  1839. "System.Xml.XmlDocument": "4.0.1"
  1840. },
  1841. "compile": {
  1842. "ref/netstandard1.3/_._": {}
  1843. },
  1844. "runtime": {
  1845. "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
  1846. }
  1847. },
  1848. "System.Xml.XPath/4.0.1": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "System.Collections": "4.0.11",
  1852. "System.Diagnostics.Debug": "4.0.11",
  1853. "System.Globalization": "4.0.11",
  1854. "System.IO": "4.1.0",
  1855. "System.Resources.ResourceManager": "4.0.1",
  1856. "System.Runtime": "4.1.0",
  1857. "System.Runtime.Extensions": "4.1.0",
  1858. "System.Threading": "4.0.11",
  1859. "System.Xml.ReaderWriter": "4.0.11"
  1860. },
  1861. "compile": {
  1862. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  1863. },
  1864. "runtime": {
  1865. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  1866. }
  1867. },
  1868. "System.Xml.XPath.XmlDocument/4.0.1": {
  1869. "type": "package",
  1870. "dependencies": {
  1871. "System.Collections": "4.0.11",
  1872. "System.Globalization": "4.0.11",
  1873. "System.IO": "4.1.0",
  1874. "System.Resources.ResourceManager": "4.0.1",
  1875. "System.Runtime": "4.1.0",
  1876. "System.Runtime.Extensions": "4.1.0",
  1877. "System.Threading": "4.0.11",
  1878. "System.Xml.ReaderWriter": "4.0.11",
  1879. "System.Xml.XPath": "4.0.1",
  1880. "System.Xml.XmlDocument": "4.0.1"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  1884. },
  1885. "runtime": {
  1886. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  1887. }
  1888. },
  1889. "xunit/2.4.0": {
  1890. "type": "package",
  1891. "dependencies": {
  1892. "xunit.analyzers": "0.10.0",
  1893. "xunit.assert": "[2.4.0]",
  1894. "xunit.core": "[2.4.0]"
  1895. }
  1896. },
  1897. "xunit.abstractions/2.0.2": {
  1898. "type": "package",
  1899. "compile": {
  1900. "lib/netstandard2.0/xunit.abstractions.dll": {}
  1901. },
  1902. "runtime": {
  1903. "lib/netstandard2.0/xunit.abstractions.dll": {}
  1904. }
  1905. },
  1906. "xunit.analyzers/0.10.0": {
  1907. "type": "package"
  1908. },
  1909. "xunit.assert/2.4.0": {
  1910. "type": "package",
  1911. "compile": {
  1912. "lib/netstandard2.0/xunit.assert.dll": {}
  1913. },
  1914. "runtime": {
  1915. "lib/netstandard2.0/xunit.assert.dll": {}
  1916. }
  1917. },
  1918. "xunit.core/2.4.0": {
  1919. "type": "package",
  1920. "dependencies": {
  1921. "xunit.extensibility.core": "[2.4.0]",
  1922. "xunit.extensibility.execution": "[2.4.0]"
  1923. },
  1924. "build": {
  1925. "build/xunit.core.props": {},
  1926. "build/xunit.core.targets": {}
  1927. },
  1928. "buildMultiTargeting": {
  1929. "buildMultiTargeting/xunit.core.props": {},
  1930. "buildMultiTargeting/xunit.core.targets": {}
  1931. }
  1932. },
  1933. "xunit.extensibility.core/2.4.0": {
  1934. "type": "package",
  1935. "dependencies": {
  1936. "xunit.abstractions": "2.0.2"
  1937. },
  1938. "compile": {
  1939. "lib/netstandard2.0/xunit.core.dll": {}
  1940. },
  1941. "runtime": {
  1942. "lib/netstandard2.0/xunit.core.dll": {}
  1943. }
  1944. },
  1945. "xunit.extensibility.execution/2.4.0": {
  1946. "type": "package",
  1947. "dependencies": {
  1948. "xunit.extensibility.core": "[2.4.0]"
  1949. },
  1950. "compile": {
  1951. "lib/netstandard2.0/xunit.execution.dotnet.dll": {}
  1952. },
  1953. "runtime": {
  1954. "lib/netstandard2.0/xunit.execution.dotnet.dll": {}
  1955. }
  1956. },
  1957. "xunit.runner.visualstudio/2.4.0": {
  1958. "type": "package",
  1959. "dependencies": {
  1960. "Microsoft.NET.Test.Sdk": "15.0.0"
  1961. },
  1962. "build": {
  1963. "build/netcoreapp1.0/xunit.runner.visualstudio.props": {}
  1964. }
  1965. }
  1966. }
  1967. },
  1968. "libraries": {
  1969. "coverlet.collector/1.0.1": {
  1970. "sha512": "RAuno8s7DBGo2IdV/1d8YSnXMd/728K3PBT5R6/kfGx1yunBZmavlaFQfhGe7Q7N2nUMkvVET+7ITn3+KSg+Uw==",
  1971. "type": "package",
  1972. "path": "coverlet.collector/1.0.1",
  1973. "files": [
  1974. ".nupkg.metadata",
  1975. ".signature.p7s",
  1976. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  1977. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1978. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1979. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1980. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  1981. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  1982. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  1983. "build/netstandard1.0/Mono.Cecil.dll",
  1984. "build/netstandard1.0/Newtonsoft.Json.dll",
  1985. "build/netstandard1.0/System.Xml.XPath.XmlDocument.dll",
  1986. "build/netstandard1.0/coverlet.collector.deps.json",
  1987. "build/netstandard1.0/coverlet.collector.dll",
  1988. "build/netstandard1.0/coverlet.collector.pdb",
  1989. "build/netstandard1.0/coverlet.collector.targets",
  1990. "build/netstandard1.0/coverlet.core.dll",
  1991. "build/netstandard1.0/coverlet.core.pdb",
  1992. "coverlet.collector.1.0.1.nupkg.sha512",
  1993. "coverlet.collector.nuspec"
  1994. ]
  1995. },
  1996. "Microsoft.CodeCoverage/16.2.0": {
  1997. "sha512": "fKiUOhhMP3IN1qM2tDHPWzW4JRbriFkIPiIzKUwMWT+Q+80bycxkLLCvxmVFoeA7gvWegNbTUjaX7mL3MM9XKg==",
  1998. "type": "package",
  1999. "path": "microsoft.codecoverage/16.2.0",
  2000. "files": [
  2001. ".nupkg.metadata",
  2002. ".signature.p7s",
  2003. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  2004. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  2005. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  2006. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  2007. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  2008. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  2009. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  2010. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  2011. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  2012. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  2013. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2014. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2015. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2016. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2017. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2018. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2019. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2020. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2021. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2022. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2023. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2024. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2025. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  2026. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  2027. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  2028. "microsoft.codecoverage.16.2.0.nupkg.sha512",
  2029. "microsoft.codecoverage.nuspec"
  2030. ]
  2031. },
  2032. "Microsoft.CSharp/4.0.1": {
  2033. "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  2034. "type": "package",
  2035. "path": "microsoft.csharp/4.0.1",
  2036. "files": [
  2037. ".nupkg.metadata",
  2038. ".signature.p7s",
  2039. "ThirdPartyNotices.txt",
  2040. "dotnet_library_license.txt",
  2041. "lib/MonoAndroid10/_._",
  2042. "lib/MonoTouch10/_._",
  2043. "lib/net45/_._",
  2044. "lib/netcore50/Microsoft.CSharp.dll",
  2045. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2046. "lib/portable-net45+win8+wp8+wpa81/_._",
  2047. "lib/win8/_._",
  2048. "lib/wp80/_._",
  2049. "lib/wpa81/_._",
  2050. "lib/xamarinios10/_._",
  2051. "lib/xamarinmac20/_._",
  2052. "lib/xamarintvos10/_._",
  2053. "lib/xamarinwatchos10/_._",
  2054. "microsoft.csharp.4.0.1.nupkg.sha512",
  2055. "microsoft.csharp.nuspec",
  2056. "ref/MonoAndroid10/_._",
  2057. "ref/MonoTouch10/_._",
  2058. "ref/net45/_._",
  2059. "ref/netcore50/Microsoft.CSharp.dll",
  2060. "ref/netcore50/Microsoft.CSharp.xml",
  2061. "ref/netcore50/de/Microsoft.CSharp.xml",
  2062. "ref/netcore50/es/Microsoft.CSharp.xml",
  2063. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2064. "ref/netcore50/it/Microsoft.CSharp.xml",
  2065. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2066. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2067. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2068. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2069. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2070. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2071. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2072. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2073. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2074. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2075. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2076. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2077. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2078. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2079. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2080. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2081. "ref/portable-net45+win8+wp8+wpa81/_._",
  2082. "ref/win8/_._",
  2083. "ref/wp80/_._",
  2084. "ref/wpa81/_._",
  2085. "ref/xamarinios10/_._",
  2086. "ref/xamarinmac20/_._",
  2087. "ref/xamarintvos10/_._",
  2088. "ref/xamarinwatchos10/_._"
  2089. ]
  2090. },
  2091. "Microsoft.NET.Test.Sdk/16.2.0": {
  2092. "sha512": "56w1drIQqpMgg3IxHcfra/jXOngiD4pbl0j6TNeJMlOQGlZ8wCMlyRTvn6Crd/FgGjwKbWLurdOHNGrfzLtl6A==",
  2093. "type": "package",
  2094. "path": "microsoft.net.test.sdk/16.2.0",
  2095. "files": [
  2096. ".nupkg.metadata",
  2097. ".signature.p7s",
  2098. "build/net40/Microsoft.NET.Test.Sdk.props",
  2099. "build/net40/Microsoft.NET.Test.Sdk.targets",
  2100. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs",
  2101. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs",
  2102. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb",
  2103. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props",
  2104. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets",
  2105. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  2106. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  2107. "microsoft.net.test.sdk.16.2.0.nupkg.sha512",
  2108. "microsoft.net.test.sdk.nuspec"
  2109. ]
  2110. },
  2111. "Microsoft.NETCore.Platforms/1.0.1": {
  2112. "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
  2113. "type": "package",
  2114. "path": "microsoft.netcore.platforms/1.0.1",
  2115. "files": [
  2116. ".nupkg.metadata",
  2117. ".signature.p7s",
  2118. "ThirdPartyNotices.txt",
  2119. "dotnet_library_license.txt",
  2120. "lib/netstandard1.0/_._",
  2121. "microsoft.netcore.platforms.1.0.1.nupkg.sha512",
  2122. "microsoft.netcore.platforms.nuspec",
  2123. "runtime.json"
  2124. ]
  2125. },
  2126. "Microsoft.NETCore.Targets/1.0.1": {
  2127. "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
  2128. "type": "package",
  2129. "path": "microsoft.netcore.targets/1.0.1",
  2130. "files": [
  2131. ".nupkg.metadata",
  2132. "ThirdPartyNotices.txt",
  2133. "dotnet_library_license.txt",
  2134. "lib/netstandard1.0/_._",
  2135. "microsoft.netcore.targets.1.0.1.nupkg.sha512",
  2136. "microsoft.netcore.targets.nuspec",
  2137. "runtime.json"
  2138. ]
  2139. },
  2140. "Microsoft.TestPlatform.ObjectModel/16.2.0": {
  2141. "sha512": "RAyBf87uZ5XjRE953LlxqILpD1SqwQM6bXwxPUCAPPEy0uv12R+eKnFL7yaeLVHInMKkNNh1iD/cDOVDfSgllA==",
  2142. "type": "package",
  2143. "path": "microsoft.testplatform.objectmodel/16.2.0",
  2144. "files": [
  2145. ".nupkg.metadata",
  2146. ".signature.p7s",
  2147. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  2148. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2149. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2150. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2151. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2152. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2153. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2154. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2155. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2156. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2157. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2158. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2159. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2160. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2161. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2162. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2163. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2164. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2165. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2166. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2167. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2168. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2169. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2170. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2171. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2172. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2173. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2174. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2175. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2176. "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll",
  2177. "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2178. "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2179. "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll",
  2180. "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2181. "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2182. "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2183. "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2184. "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2185. "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2186. "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2187. "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2188. "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2189. "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2190. "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2191. "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2192. "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2193. "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2194. "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2195. "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2196. "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2197. "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2198. "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2199. "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2200. "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2201. "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2202. "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2203. "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2204. "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2205. "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2206. "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2207. "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2208. "microsoft.testplatform.objectmodel.16.2.0.nupkg.sha512",
  2209. "microsoft.testplatform.objectmodel.nuspec"
  2210. ]
  2211. },
  2212. "Microsoft.TestPlatform.TestHost/16.2.0": {
  2213. "sha512": "PogSQ40KgkZjEBdC6KBGpMtuvFFCIdoJAMmK7CAHWyTXCfN1cPN8j0TFJKh+LneSg+y0QQDP23STMF609KhHQw==",
  2214. "type": "package",
  2215. "path": "microsoft.testplatform.testhost/16.2.0",
  2216. "files": [
  2217. ".nupkg.metadata",
  2218. ".signature.p7s",
  2219. "ThirdPartyNotices.txt",
  2220. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  2221. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  2222. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2223. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2224. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2225. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  2226. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2227. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2228. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2229. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2230. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2231. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  2232. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2233. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2234. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2235. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2236. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2237. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  2238. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2239. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2240. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2241. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2242. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2243. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  2244. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2245. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2246. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2247. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2248. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2249. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  2250. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2251. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2252. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2253. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2254. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2255. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  2256. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2257. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2258. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2259. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2260. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2261. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  2262. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2263. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2264. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2265. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2266. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2267. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  2268. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2269. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2270. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2271. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2272. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2273. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  2274. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2275. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2276. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2277. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2278. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2279. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  2280. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2281. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2282. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2283. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2284. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2285. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  2286. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2287. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2288. "build/uap10.0/x64/msdia140.dll",
  2289. "build/uap10.0/x86/msdia140.dll",
  2290. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2291. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2292. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2293. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  2294. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2295. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2296. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2297. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2298. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2299. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  2300. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2301. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2302. "lib/net45/_._",
  2303. "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll",
  2304. "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll",
  2305. "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll",
  2306. "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll",
  2307. "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2308. "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2309. "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2310. "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2311. "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2312. "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2313. "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2314. "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2315. "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2316. "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2317. "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2318. "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2319. "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2320. "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2321. "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2322. "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2323. "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2324. "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2325. "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2326. "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2327. "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2328. "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2329. "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2330. "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2331. "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2332. "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2333. "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2334. "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2335. "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2336. "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2337. "lib/netstandard1.5/testhost.deps.json",
  2338. "lib/netstandard1.5/testhost.dll",
  2339. "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2340. "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2341. "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2342. "lib/netstandard1.5/x64/msdia140.dll",
  2343. "lib/netstandard1.5/x86/msdia140.dll",
  2344. "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2345. "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2346. "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2347. "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2348. "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2349. "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2350. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  2351. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  2352. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  2353. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  2354. "lib/uap10.0/testhost.dll",
  2355. "microsoft.testplatform.testhost.16.2.0.nupkg.sha512",
  2356. "microsoft.testplatform.testhost.nuspec"
  2357. ]
  2358. },
  2359. "Microsoft.Win32.Primitives/4.0.1": {
  2360. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  2361. "type": "package",
  2362. "path": "microsoft.win32.primitives/4.0.1",
  2363. "files": [
  2364. ".nupkg.metadata",
  2365. ".signature.p7s",
  2366. "ThirdPartyNotices.txt",
  2367. "dotnet_library_license.txt",
  2368. "lib/MonoAndroid10/_._",
  2369. "lib/MonoTouch10/_._",
  2370. "lib/net46/Microsoft.Win32.Primitives.dll",
  2371. "lib/xamarinios10/_._",
  2372. "lib/xamarinmac20/_._",
  2373. "lib/xamarintvos10/_._",
  2374. "lib/xamarinwatchos10/_._",
  2375. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  2376. "microsoft.win32.primitives.nuspec",
  2377. "ref/MonoAndroid10/_._",
  2378. "ref/MonoTouch10/_._",
  2379. "ref/net46/Microsoft.Win32.Primitives.dll",
  2380. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  2381. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  2382. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  2383. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  2384. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  2385. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  2386. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  2387. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  2388. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  2389. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  2390. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  2391. "ref/xamarinios10/_._",
  2392. "ref/xamarinmac20/_._",
  2393. "ref/xamarintvos10/_._",
  2394. "ref/xamarinwatchos10/_._"
  2395. ]
  2396. },
  2397. "Microsoft.Win32.Registry/4.0.0": {
  2398. "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
  2399. "type": "package",
  2400. "path": "microsoft.win32.registry/4.0.0",
  2401. "files": [
  2402. ".nupkg.metadata",
  2403. ".signature.p7s",
  2404. "ThirdPartyNotices.txt",
  2405. "dotnet_library_license.txt",
  2406. "lib/net46/Microsoft.Win32.Registry.dll",
  2407. "microsoft.win32.registry.4.0.0.nupkg.sha512",
  2408. "microsoft.win32.registry.nuspec",
  2409. "ref/net46/Microsoft.Win32.Registry.dll",
  2410. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  2411. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  2412. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  2413. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  2414. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  2415. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  2416. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  2417. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  2418. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  2419. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  2420. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  2421. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  2422. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  2423. "runtimes/win/lib/netcore50/_._",
  2424. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
  2425. ]
  2426. },
  2427. "NETStandard.Library/1.6.0": {
  2428. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  2429. "type": "package",
  2430. "path": "netstandard.library/1.6.0",
  2431. "files": [
  2432. ".nupkg.metadata",
  2433. "ThirdPartyNotices.txt",
  2434. "dotnet_library_license.txt",
  2435. "netstandard.library.1.6.0.nupkg.sha512",
  2436. "netstandard.library.nuspec"
  2437. ]
  2438. },
  2439. "Newtonsoft.Json/9.0.1": {
  2440. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  2441. "type": "package",
  2442. "path": "newtonsoft.json/9.0.1",
  2443. "hasTools": true,
  2444. "files": [
  2445. ".nupkg.metadata",
  2446. ".signature.p7s",
  2447. "lib/net20/Newtonsoft.Json.dll",
  2448. "lib/net20/Newtonsoft.Json.xml",
  2449. "lib/net35/Newtonsoft.Json.dll",
  2450. "lib/net35/Newtonsoft.Json.xml",
  2451. "lib/net40/Newtonsoft.Json.dll",
  2452. "lib/net40/Newtonsoft.Json.xml",
  2453. "lib/net45/Newtonsoft.Json.dll",
  2454. "lib/net45/Newtonsoft.Json.xml",
  2455. "lib/netstandard1.0/Newtonsoft.Json.dll",
  2456. "lib/netstandard1.0/Newtonsoft.Json.xml",
  2457. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  2458. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  2459. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  2460. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  2461. "newtonsoft.json.9.0.1.nupkg.sha512",
  2462. "newtonsoft.json.nuspec",
  2463. "tools/install.ps1"
  2464. ]
  2465. },
  2466. "runtime.native.System/4.0.0": {
  2467. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  2468. "type": "package",
  2469. "path": "runtime.native.system/4.0.0",
  2470. "files": [
  2471. ".nupkg.metadata",
  2472. "ThirdPartyNotices.txt",
  2473. "dotnet_library_license.txt",
  2474. "lib/netstandard1.0/_._",
  2475. "runtime.native.system.4.0.0.nupkg.sha512",
  2476. "runtime.native.system.nuspec"
  2477. ]
  2478. },
  2479. "runtime.native.System.IO.Compression/4.1.0": {
  2480. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  2481. "type": "package",
  2482. "path": "runtime.native.system.io.compression/4.1.0",
  2483. "files": [
  2484. ".nupkg.metadata",
  2485. ".signature.p7s",
  2486. "ThirdPartyNotices.txt",
  2487. "dotnet_library_license.txt",
  2488. "lib/netstandard1.0/_._",
  2489. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  2490. "runtime.native.system.io.compression.nuspec"
  2491. ]
  2492. },
  2493. "runtime.native.System.Net.Http/4.0.1": {
  2494. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  2495. "type": "package",
  2496. "path": "runtime.native.system.net.http/4.0.1",
  2497. "files": [
  2498. ".nupkg.metadata",
  2499. "ThirdPartyNotices.txt",
  2500. "dotnet_library_license.txt",
  2501. "lib/netstandard1.0/_._",
  2502. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  2503. "runtime.native.system.net.http.nuspec"
  2504. ]
  2505. },
  2506. "runtime.native.System.Security.Cryptography/4.0.0": {
  2507. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  2508. "type": "package",
  2509. "path": "runtime.native.system.security.cryptography/4.0.0",
  2510. "files": [
  2511. ".nupkg.metadata",
  2512. ".signature.p7s",
  2513. "ThirdPartyNotices.txt",
  2514. "dotnet_library_license.txt",
  2515. "lib/netstandard1.0/_._",
  2516. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  2517. "runtime.native.system.security.cryptography.nuspec"
  2518. ]
  2519. },
  2520. "System.AppContext/4.1.0": {
  2521. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  2522. "type": "package",
  2523. "path": "system.appcontext/4.1.0",
  2524. "files": [
  2525. ".nupkg.metadata",
  2526. ".signature.p7s",
  2527. "ThirdPartyNotices.txt",
  2528. "dotnet_library_license.txt",
  2529. "lib/MonoAndroid10/_._",
  2530. "lib/MonoTouch10/_._",
  2531. "lib/net46/System.AppContext.dll",
  2532. "lib/net463/System.AppContext.dll",
  2533. "lib/netcore50/System.AppContext.dll",
  2534. "lib/netstandard1.6/System.AppContext.dll",
  2535. "lib/xamarinios10/_._",
  2536. "lib/xamarinmac20/_._",
  2537. "lib/xamarintvos10/_._",
  2538. "lib/xamarinwatchos10/_._",
  2539. "ref/MonoAndroid10/_._",
  2540. "ref/MonoTouch10/_._",
  2541. "ref/net46/System.AppContext.dll",
  2542. "ref/net463/System.AppContext.dll",
  2543. "ref/netstandard/_._",
  2544. "ref/netstandard1.3/System.AppContext.dll",
  2545. "ref/netstandard1.3/System.AppContext.xml",
  2546. "ref/netstandard1.3/de/System.AppContext.xml",
  2547. "ref/netstandard1.3/es/System.AppContext.xml",
  2548. "ref/netstandard1.3/fr/System.AppContext.xml",
  2549. "ref/netstandard1.3/it/System.AppContext.xml",
  2550. "ref/netstandard1.3/ja/System.AppContext.xml",
  2551. "ref/netstandard1.3/ko/System.AppContext.xml",
  2552. "ref/netstandard1.3/ru/System.AppContext.xml",
  2553. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  2554. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  2555. "ref/netstandard1.6/System.AppContext.dll",
  2556. "ref/netstandard1.6/System.AppContext.xml",
  2557. "ref/netstandard1.6/de/System.AppContext.xml",
  2558. "ref/netstandard1.6/es/System.AppContext.xml",
  2559. "ref/netstandard1.6/fr/System.AppContext.xml",
  2560. "ref/netstandard1.6/it/System.AppContext.xml",
  2561. "ref/netstandard1.6/ja/System.AppContext.xml",
  2562. "ref/netstandard1.6/ko/System.AppContext.xml",
  2563. "ref/netstandard1.6/ru/System.AppContext.xml",
  2564. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  2565. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  2566. "ref/xamarinios10/_._",
  2567. "ref/xamarinmac20/_._",
  2568. "ref/xamarintvos10/_._",
  2569. "ref/xamarinwatchos10/_._",
  2570. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  2571. "system.appcontext.4.1.0.nupkg.sha512",
  2572. "system.appcontext.nuspec"
  2573. ]
  2574. },
  2575. "System.Buffers/4.0.0": {
  2576. "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
  2577. "type": "package",
  2578. "path": "system.buffers/4.0.0",
  2579. "files": [
  2580. ".nupkg.metadata",
  2581. ".signature.p7s",
  2582. "ThirdPartyNotices.txt",
  2583. "dotnet_library_license.txt",
  2584. "lib/netstandard1.1/.xml",
  2585. "lib/netstandard1.1/System.Buffers.dll",
  2586. "system.buffers.4.0.0.nupkg.sha512",
  2587. "system.buffers.nuspec"
  2588. ]
  2589. },
  2590. "System.Collections/4.0.11": {
  2591. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  2592. "type": "package",
  2593. "path": "system.collections/4.0.11",
  2594. "files": [
  2595. ".nupkg.metadata",
  2596. ".signature.p7s",
  2597. "ThirdPartyNotices.txt",
  2598. "dotnet_library_license.txt",
  2599. "lib/MonoAndroid10/_._",
  2600. "lib/MonoTouch10/_._",
  2601. "lib/net45/_._",
  2602. "lib/portable-net45+win8+wp8+wpa81/_._",
  2603. "lib/win8/_._",
  2604. "lib/wp80/_._",
  2605. "lib/wpa81/_._",
  2606. "lib/xamarinios10/_._",
  2607. "lib/xamarinmac20/_._",
  2608. "lib/xamarintvos10/_._",
  2609. "lib/xamarinwatchos10/_._",
  2610. "ref/MonoAndroid10/_._",
  2611. "ref/MonoTouch10/_._",
  2612. "ref/net45/_._",
  2613. "ref/netcore50/System.Collections.dll",
  2614. "ref/netcore50/System.Collections.xml",
  2615. "ref/netcore50/de/System.Collections.xml",
  2616. "ref/netcore50/es/System.Collections.xml",
  2617. "ref/netcore50/fr/System.Collections.xml",
  2618. "ref/netcore50/it/System.Collections.xml",
  2619. "ref/netcore50/ja/System.Collections.xml",
  2620. "ref/netcore50/ko/System.Collections.xml",
  2621. "ref/netcore50/ru/System.Collections.xml",
  2622. "ref/netcore50/zh-hans/System.Collections.xml",
  2623. "ref/netcore50/zh-hant/System.Collections.xml",
  2624. "ref/netstandard1.0/System.Collections.dll",
  2625. "ref/netstandard1.0/System.Collections.xml",
  2626. "ref/netstandard1.0/de/System.Collections.xml",
  2627. "ref/netstandard1.0/es/System.Collections.xml",
  2628. "ref/netstandard1.0/fr/System.Collections.xml",
  2629. "ref/netstandard1.0/it/System.Collections.xml",
  2630. "ref/netstandard1.0/ja/System.Collections.xml",
  2631. "ref/netstandard1.0/ko/System.Collections.xml",
  2632. "ref/netstandard1.0/ru/System.Collections.xml",
  2633. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  2634. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  2635. "ref/netstandard1.3/System.Collections.dll",
  2636. "ref/netstandard1.3/System.Collections.xml",
  2637. "ref/netstandard1.3/de/System.Collections.xml",
  2638. "ref/netstandard1.3/es/System.Collections.xml",
  2639. "ref/netstandard1.3/fr/System.Collections.xml",
  2640. "ref/netstandard1.3/it/System.Collections.xml",
  2641. "ref/netstandard1.3/ja/System.Collections.xml",
  2642. "ref/netstandard1.3/ko/System.Collections.xml",
  2643. "ref/netstandard1.3/ru/System.Collections.xml",
  2644. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  2645. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  2646. "ref/portable-net45+win8+wp8+wpa81/_._",
  2647. "ref/win8/_._",
  2648. "ref/wp80/_._",
  2649. "ref/wpa81/_._",
  2650. "ref/xamarinios10/_._",
  2651. "ref/xamarinmac20/_._",
  2652. "ref/xamarintvos10/_._",
  2653. "ref/xamarinwatchos10/_._",
  2654. "system.collections.4.0.11.nupkg.sha512",
  2655. "system.collections.nuspec"
  2656. ]
  2657. },
  2658. "System.Collections.Concurrent/4.0.12": {
  2659. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  2660. "type": "package",
  2661. "path": "system.collections.concurrent/4.0.12",
  2662. "files": [
  2663. ".nupkg.metadata",
  2664. ".signature.p7s",
  2665. "ThirdPartyNotices.txt",
  2666. "dotnet_library_license.txt",
  2667. "lib/MonoAndroid10/_._",
  2668. "lib/MonoTouch10/_._",
  2669. "lib/net45/_._",
  2670. "lib/netcore50/System.Collections.Concurrent.dll",
  2671. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  2672. "lib/portable-net45+win8+wpa81/_._",
  2673. "lib/win8/_._",
  2674. "lib/wpa81/_._",
  2675. "lib/xamarinios10/_._",
  2676. "lib/xamarinmac20/_._",
  2677. "lib/xamarintvos10/_._",
  2678. "lib/xamarinwatchos10/_._",
  2679. "ref/MonoAndroid10/_._",
  2680. "ref/MonoTouch10/_._",
  2681. "ref/net45/_._",
  2682. "ref/netcore50/System.Collections.Concurrent.dll",
  2683. "ref/netcore50/System.Collections.Concurrent.xml",
  2684. "ref/netcore50/de/System.Collections.Concurrent.xml",
  2685. "ref/netcore50/es/System.Collections.Concurrent.xml",
  2686. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  2687. "ref/netcore50/it/System.Collections.Concurrent.xml",
  2688. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  2689. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  2690. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  2691. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  2692. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  2693. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  2694. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  2695. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  2696. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  2697. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  2698. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  2699. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  2700. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  2701. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  2702. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  2703. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  2704. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  2705. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  2706. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  2707. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  2708. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  2709. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  2710. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  2711. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  2712. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  2713. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  2714. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  2715. "ref/portable-net45+win8+wpa81/_._",
  2716. "ref/win8/_._",
  2717. "ref/wpa81/_._",
  2718. "ref/xamarinios10/_._",
  2719. "ref/xamarinmac20/_._",
  2720. "ref/xamarintvos10/_._",
  2721. "ref/xamarinwatchos10/_._",
  2722. "system.collections.concurrent.4.0.12.nupkg.sha512",
  2723. "system.collections.concurrent.nuspec"
  2724. ]
  2725. },
  2726. "System.Collections.Immutable/1.2.0": {
  2727. "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
  2728. "type": "package",
  2729. "path": "system.collections.immutable/1.2.0",
  2730. "files": [
  2731. ".nupkg.metadata",
  2732. ".signature.p7s",
  2733. "ThirdPartyNotices.txt",
  2734. "dotnet_library_license.txt",
  2735. "lib/netstandard1.0/System.Collections.Immutable.dll",
  2736. "lib/netstandard1.0/System.Collections.Immutable.xml",
  2737. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  2738. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  2739. "system.collections.immutable.1.2.0.nupkg.sha512",
  2740. "system.collections.immutable.nuspec"
  2741. ]
  2742. },
  2743. "System.Collections.NonGeneric/4.0.1": {
  2744. "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
  2745. "type": "package",
  2746. "path": "system.collections.nongeneric/4.0.1",
  2747. "files": [
  2748. ".nupkg.metadata",
  2749. ".signature.p7s",
  2750. "ThirdPartyNotices.txt",
  2751. "dotnet_library_license.txt",
  2752. "lib/MonoAndroid10/_._",
  2753. "lib/MonoTouch10/_._",
  2754. "lib/net46/System.Collections.NonGeneric.dll",
  2755. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  2756. "lib/xamarinios10/_._",
  2757. "lib/xamarinmac20/_._",
  2758. "lib/xamarintvos10/_._",
  2759. "lib/xamarinwatchos10/_._",
  2760. "ref/MonoAndroid10/_._",
  2761. "ref/MonoTouch10/_._",
  2762. "ref/net46/System.Collections.NonGeneric.dll",
  2763. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  2764. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  2765. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  2766. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  2767. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  2768. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  2769. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  2770. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  2771. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  2772. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  2773. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  2774. "ref/xamarinios10/_._",
  2775. "ref/xamarinmac20/_._",
  2776. "ref/xamarintvos10/_._",
  2777. "ref/xamarinwatchos10/_._",
  2778. "system.collections.nongeneric.4.0.1.nupkg.sha512",
  2779. "system.collections.nongeneric.nuspec"
  2780. ]
  2781. },
  2782. "System.Collections.Specialized/4.0.1": {
  2783. "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
  2784. "type": "package",
  2785. "path": "system.collections.specialized/4.0.1",
  2786. "files": [
  2787. ".nupkg.metadata",
  2788. ".signature.p7s",
  2789. "ThirdPartyNotices.txt",
  2790. "dotnet_library_license.txt",
  2791. "lib/MonoAndroid10/_._",
  2792. "lib/MonoTouch10/_._",
  2793. "lib/net46/System.Collections.Specialized.dll",
  2794. "lib/netstandard1.3/System.Collections.Specialized.dll",
  2795. "lib/xamarinios10/_._",
  2796. "lib/xamarinmac20/_._",
  2797. "lib/xamarintvos10/_._",
  2798. "lib/xamarinwatchos10/_._",
  2799. "ref/MonoAndroid10/_._",
  2800. "ref/MonoTouch10/_._",
  2801. "ref/net46/System.Collections.Specialized.dll",
  2802. "ref/netstandard1.3/System.Collections.Specialized.dll",
  2803. "ref/netstandard1.3/System.Collections.Specialized.xml",
  2804. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  2805. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  2806. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  2807. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  2808. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  2809. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  2810. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  2811. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  2812. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  2813. "ref/xamarinios10/_._",
  2814. "ref/xamarinmac20/_._",
  2815. "ref/xamarintvos10/_._",
  2816. "ref/xamarinwatchos10/_._",
  2817. "system.collections.specialized.4.0.1.nupkg.sha512",
  2818. "system.collections.specialized.nuspec"
  2819. ]
  2820. },
  2821. "System.ComponentModel/4.0.1": {
  2822. "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
  2823. "type": "package",
  2824. "path": "system.componentmodel/4.0.1",
  2825. "files": [
  2826. ".nupkg.metadata",
  2827. ".signature.p7s",
  2828. "ThirdPartyNotices.txt",
  2829. "dotnet_library_license.txt",
  2830. "lib/MonoAndroid10/_._",
  2831. "lib/MonoTouch10/_._",
  2832. "lib/net45/_._",
  2833. "lib/netcore50/System.ComponentModel.dll",
  2834. "lib/netstandard1.3/System.ComponentModel.dll",
  2835. "lib/portable-net45+win8+wp8+wpa81/_._",
  2836. "lib/win8/_._",
  2837. "lib/wp80/_._",
  2838. "lib/wpa81/_._",
  2839. "lib/xamarinios10/_._",
  2840. "lib/xamarinmac20/_._",
  2841. "lib/xamarintvos10/_._",
  2842. "lib/xamarinwatchos10/_._",
  2843. "ref/MonoAndroid10/_._",
  2844. "ref/MonoTouch10/_._",
  2845. "ref/net45/_._",
  2846. "ref/netcore50/System.ComponentModel.dll",
  2847. "ref/netcore50/System.ComponentModel.xml",
  2848. "ref/netcore50/de/System.ComponentModel.xml",
  2849. "ref/netcore50/es/System.ComponentModel.xml",
  2850. "ref/netcore50/fr/System.ComponentModel.xml",
  2851. "ref/netcore50/it/System.ComponentModel.xml",
  2852. "ref/netcore50/ja/System.ComponentModel.xml",
  2853. "ref/netcore50/ko/System.ComponentModel.xml",
  2854. "ref/netcore50/ru/System.ComponentModel.xml",
  2855. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  2856. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  2857. "ref/netstandard1.0/System.ComponentModel.dll",
  2858. "ref/netstandard1.0/System.ComponentModel.xml",
  2859. "ref/netstandard1.0/de/System.ComponentModel.xml",
  2860. "ref/netstandard1.0/es/System.ComponentModel.xml",
  2861. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  2862. "ref/netstandard1.0/it/System.ComponentModel.xml",
  2863. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  2864. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  2865. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  2866. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  2867. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  2868. "ref/portable-net45+win8+wp8+wpa81/_._",
  2869. "ref/win8/_._",
  2870. "ref/wp80/_._",
  2871. "ref/wpa81/_._",
  2872. "ref/xamarinios10/_._",
  2873. "ref/xamarinmac20/_._",
  2874. "ref/xamarintvos10/_._",
  2875. "ref/xamarinwatchos10/_._",
  2876. "system.componentmodel.4.0.1.nupkg.sha512",
  2877. "system.componentmodel.nuspec"
  2878. ]
  2879. },
  2880. "System.ComponentModel.EventBasedAsync/4.0.11": {
  2881. "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
  2882. "type": "package",
  2883. "path": "system.componentmodel.eventbasedasync/4.0.11",
  2884. "files": [
  2885. ".nupkg.metadata",
  2886. ".signature.p7s",
  2887. "ThirdPartyNotices.txt",
  2888. "dotnet_library_license.txt",
  2889. "lib/MonoAndroid10/_._",
  2890. "lib/MonoTouch10/_._",
  2891. "lib/net45/_._",
  2892. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  2893. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  2894. "lib/portable-net45+win8+wp8+wpa81/_._",
  2895. "lib/win8/_._",
  2896. "lib/wp80/_._",
  2897. "lib/wpa81/_._",
  2898. "lib/xamarinios10/_._",
  2899. "lib/xamarinmac20/_._",
  2900. "lib/xamarintvos10/_._",
  2901. "lib/xamarinwatchos10/_._",
  2902. "ref/MonoAndroid10/_._",
  2903. "ref/MonoTouch10/_._",
  2904. "ref/net45/_._",
  2905. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  2906. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  2907. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  2908. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  2909. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  2910. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  2911. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  2912. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  2913. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  2914. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  2915. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  2916. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  2917. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  2918. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  2919. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  2920. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  2921. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  2922. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  2923. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  2924. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  2925. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  2926. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  2927. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  2928. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  2929. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  2930. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  2931. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  2932. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  2933. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  2934. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  2935. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  2936. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  2937. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  2938. "ref/portable-net45+win8+wp8+wpa81/_._",
  2939. "ref/win8/_._",
  2940. "ref/wp80/_._",
  2941. "ref/wpa81/_._",
  2942. "ref/xamarinios10/_._",
  2943. "ref/xamarinmac20/_._",
  2944. "ref/xamarintvos10/_._",
  2945. "ref/xamarinwatchos10/_._",
  2946. "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512",
  2947. "system.componentmodel.eventbasedasync.nuspec"
  2948. ]
  2949. },
  2950. "System.ComponentModel.Primitives/4.1.0": {
  2951. "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
  2952. "type": "package",
  2953. "path": "system.componentmodel.primitives/4.1.0",
  2954. "files": [
  2955. ".nupkg.metadata",
  2956. ".signature.p7s",
  2957. "ThirdPartyNotices.txt",
  2958. "dotnet_library_license.txt",
  2959. "lib/MonoAndroid10/_._",
  2960. "lib/MonoTouch10/_._",
  2961. "lib/net45/System.ComponentModel.Primitives.dll",
  2962. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  2963. "lib/xamarinios10/_._",
  2964. "lib/xamarinmac20/_._",
  2965. "lib/xamarintvos10/_._",
  2966. "lib/xamarinwatchos10/_._",
  2967. "ref/MonoAndroid10/_._",
  2968. "ref/MonoTouch10/_._",
  2969. "ref/net45/System.ComponentModel.Primitives.dll",
  2970. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  2971. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  2972. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  2973. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  2974. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  2975. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  2976. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  2977. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  2978. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  2979. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  2980. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  2981. "ref/xamarinios10/_._",
  2982. "ref/xamarinmac20/_._",
  2983. "ref/xamarintvos10/_._",
  2984. "ref/xamarinwatchos10/_._",
  2985. "system.componentmodel.primitives.4.1.0.nupkg.sha512",
  2986. "system.componentmodel.primitives.nuspec"
  2987. ]
  2988. },
  2989. "System.ComponentModel.TypeConverter/4.1.0": {
  2990. "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
  2991. "type": "package",
  2992. "path": "system.componentmodel.typeconverter/4.1.0",
  2993. "files": [
  2994. ".nupkg.metadata",
  2995. ".signature.p7s",
  2996. "ThirdPartyNotices.txt",
  2997. "dotnet_library_license.txt",
  2998. "lib/MonoAndroid10/_._",
  2999. "lib/MonoTouch10/_._",
  3000. "lib/net45/System.ComponentModel.TypeConverter.dll",
  3001. "lib/net462/System.ComponentModel.TypeConverter.dll",
  3002. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  3003. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  3004. "lib/xamarinios10/_._",
  3005. "lib/xamarinmac20/_._",
  3006. "lib/xamarintvos10/_._",
  3007. "lib/xamarinwatchos10/_._",
  3008. "ref/MonoAndroid10/_._",
  3009. "ref/MonoTouch10/_._",
  3010. "ref/net45/System.ComponentModel.TypeConverter.dll",
  3011. "ref/net462/System.ComponentModel.TypeConverter.dll",
  3012. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  3013. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  3014. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  3015. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  3016. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  3017. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  3018. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  3019. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  3020. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  3021. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  3022. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  3023. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  3024. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  3025. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  3026. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  3027. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  3028. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  3029. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  3030. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  3031. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  3032. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  3033. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  3034. "ref/xamarinios10/_._",
  3035. "ref/xamarinmac20/_._",
  3036. "ref/xamarintvos10/_._",
  3037. "ref/xamarinwatchos10/_._",
  3038. "system.componentmodel.typeconverter.4.1.0.nupkg.sha512",
  3039. "system.componentmodel.typeconverter.nuspec"
  3040. ]
  3041. },
  3042. "System.Console/4.0.0": {
  3043. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  3044. "type": "package",
  3045. "path": "system.console/4.0.0",
  3046. "files": [
  3047. ".nupkg.metadata",
  3048. "ThirdPartyNotices.txt",
  3049. "dotnet_library_license.txt",
  3050. "lib/MonoAndroid10/_._",
  3051. "lib/MonoTouch10/_._",
  3052. "lib/net46/System.Console.dll",
  3053. "lib/xamarinios10/_._",
  3054. "lib/xamarinmac20/_._",
  3055. "lib/xamarintvos10/_._",
  3056. "lib/xamarinwatchos10/_._",
  3057. "ref/MonoAndroid10/_._",
  3058. "ref/MonoTouch10/_._",
  3059. "ref/net46/System.Console.dll",
  3060. "ref/netstandard1.3/System.Console.dll",
  3061. "ref/netstandard1.3/System.Console.xml",
  3062. "ref/netstandard1.3/de/System.Console.xml",
  3063. "ref/netstandard1.3/es/System.Console.xml",
  3064. "ref/netstandard1.3/fr/System.Console.xml",
  3065. "ref/netstandard1.3/it/System.Console.xml",
  3066. "ref/netstandard1.3/ja/System.Console.xml",
  3067. "ref/netstandard1.3/ko/System.Console.xml",
  3068. "ref/netstandard1.3/ru/System.Console.xml",
  3069. "ref/netstandard1.3/zh-hans/System.Console.xml",
  3070. "ref/netstandard1.3/zh-hant/System.Console.xml",
  3071. "ref/xamarinios10/_._",
  3072. "ref/xamarinmac20/_._",
  3073. "ref/xamarintvos10/_._",
  3074. "ref/xamarinwatchos10/_._",
  3075. "system.console.4.0.0.nupkg.sha512",
  3076. "system.console.nuspec"
  3077. ]
  3078. },
  3079. "System.Diagnostics.Debug/4.0.11": {
  3080. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  3081. "type": "package",
  3082. "path": "system.diagnostics.debug/4.0.11",
  3083. "files": [
  3084. ".nupkg.metadata",
  3085. ".signature.p7s",
  3086. "ThirdPartyNotices.txt",
  3087. "dotnet_library_license.txt",
  3088. "lib/MonoAndroid10/_._",
  3089. "lib/MonoTouch10/_._",
  3090. "lib/net45/_._",
  3091. "lib/portable-net45+win8+wp8+wpa81/_._",
  3092. "lib/win8/_._",
  3093. "lib/wp80/_._",
  3094. "lib/wpa81/_._",
  3095. "lib/xamarinios10/_._",
  3096. "lib/xamarinmac20/_._",
  3097. "lib/xamarintvos10/_._",
  3098. "lib/xamarinwatchos10/_._",
  3099. "ref/MonoAndroid10/_._",
  3100. "ref/MonoTouch10/_._",
  3101. "ref/net45/_._",
  3102. "ref/netcore50/System.Diagnostics.Debug.dll",
  3103. "ref/netcore50/System.Diagnostics.Debug.xml",
  3104. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  3105. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  3106. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  3107. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  3108. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  3109. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  3110. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  3111. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  3112. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  3113. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  3114. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  3115. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  3116. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  3117. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  3118. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  3119. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  3120. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  3121. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  3122. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  3123. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  3124. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  3125. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  3126. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  3127. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  3128. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  3129. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  3130. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  3131. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  3132. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  3133. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  3134. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  3135. "ref/portable-net45+win8+wp8+wpa81/_._",
  3136. "ref/win8/_._",
  3137. "ref/wp80/_._",
  3138. "ref/wpa81/_._",
  3139. "ref/xamarinios10/_._",
  3140. "ref/xamarinmac20/_._",
  3141. "ref/xamarintvos10/_._",
  3142. "ref/xamarinwatchos10/_._",
  3143. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  3144. "system.diagnostics.debug.nuspec"
  3145. ]
  3146. },
  3147. "System.Diagnostics.DiagnosticSource/4.0.0": {
  3148. "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
  3149. "type": "package",
  3150. "path": "system.diagnostics.diagnosticsource/4.0.0",
  3151. "files": [
  3152. ".nupkg.metadata",
  3153. ".signature.p7s",
  3154. "ThirdPartyNotices.txt",
  3155. "dotnet_library_license.txt",
  3156. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  3157. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  3158. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  3159. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  3160. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  3161. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  3162. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  3163. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  3164. "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512",
  3165. "system.diagnostics.diagnosticsource.nuspec"
  3166. ]
  3167. },
  3168. "System.Diagnostics.Process/4.1.0": {
  3169. "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
  3170. "type": "package",
  3171. "path": "system.diagnostics.process/4.1.0",
  3172. "files": [
  3173. ".nupkg.metadata",
  3174. ".signature.p7s",
  3175. "ThirdPartyNotices.txt",
  3176. "dotnet_library_license.txt",
  3177. "lib/MonoAndroid10/_._",
  3178. "lib/MonoTouch10/_._",
  3179. "lib/net46/System.Diagnostics.Process.dll",
  3180. "lib/net461/System.Diagnostics.Process.dll",
  3181. "lib/xamarinios10/_._",
  3182. "lib/xamarinmac20/_._",
  3183. "lib/xamarintvos10/_._",
  3184. "lib/xamarinwatchos10/_._",
  3185. "ref/MonoAndroid10/_._",
  3186. "ref/MonoTouch10/_._",
  3187. "ref/net46/System.Diagnostics.Process.dll",
  3188. "ref/net461/System.Diagnostics.Process.dll",
  3189. "ref/netstandard1.3/System.Diagnostics.Process.dll",
  3190. "ref/netstandard1.3/System.Diagnostics.Process.xml",
  3191. "ref/netstandard1.3/de/System.Diagnostics.Process.xml",
  3192. "ref/netstandard1.3/es/System.Diagnostics.Process.xml",
  3193. "ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
  3194. "ref/netstandard1.3/it/System.Diagnostics.Process.xml",
  3195. "ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
  3196. "ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
  3197. "ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
  3198. "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
  3199. "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
  3200. "ref/netstandard1.4/System.Diagnostics.Process.dll",
  3201. "ref/netstandard1.4/System.Diagnostics.Process.xml",
  3202. "ref/netstandard1.4/de/System.Diagnostics.Process.xml",
  3203. "ref/netstandard1.4/es/System.Diagnostics.Process.xml",
  3204. "ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
  3205. "ref/netstandard1.4/it/System.Diagnostics.Process.xml",
  3206. "ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
  3207. "ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
  3208. "ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
  3209. "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
  3210. "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
  3211. "ref/xamarinios10/_._",
  3212. "ref/xamarinmac20/_._",
  3213. "ref/xamarintvos10/_._",
  3214. "ref/xamarinwatchos10/_._",
  3215. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll",
  3216. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll",
  3217. "runtimes/win/lib/net46/System.Diagnostics.Process.dll",
  3218. "runtimes/win/lib/net461/System.Diagnostics.Process.dll",
  3219. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll",
  3220. "runtimes/win7/lib/netcore50/_._",
  3221. "system.diagnostics.process.4.1.0.nupkg.sha512",
  3222. "system.diagnostics.process.nuspec"
  3223. ]
  3224. },
  3225. "System.Diagnostics.TextWriterTraceListener/4.0.0": {
  3226. "sha512": "w36Dr8yKy8xP150qPANe7Td+/zOI3G62ImRcHDIEW+oUXUuTKZHd4DHmqRx5+x8RXd85v3tXd1uhNTfsr+yxjA==",
  3227. "type": "package",
  3228. "path": "system.diagnostics.textwritertracelistener/4.0.0",
  3229. "files": [
  3230. ".nupkg.metadata",
  3231. ".signature.p7s",
  3232. "ThirdPartyNotices.txt",
  3233. "dotnet_library_license.txt",
  3234. "lib/MonoAndroid10/_._",
  3235. "lib/MonoTouch10/_._",
  3236. "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
  3237. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  3238. "lib/xamarinios10/_._",
  3239. "lib/xamarinmac20/_._",
  3240. "lib/xamarintvos10/_._",
  3241. "lib/xamarinwatchos10/_._",
  3242. "ref/MonoAndroid10/_._",
  3243. "ref/MonoTouch10/_._",
  3244. "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
  3245. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  3246. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
  3247. "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
  3248. "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
  3249. "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
  3250. "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
  3251. "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
  3252. "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
  3253. "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
  3254. "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
  3255. "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
  3256. "ref/xamarinios10/_._",
  3257. "ref/xamarinmac20/_._",
  3258. "ref/xamarintvos10/_._",
  3259. "ref/xamarinwatchos10/_._",
  3260. "system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512",
  3261. "system.diagnostics.textwritertracelistener.nuspec"
  3262. ]
  3263. },
  3264. "System.Diagnostics.Tools/4.0.1": {
  3265. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  3266. "type": "package",
  3267. "path": "system.diagnostics.tools/4.0.1",
  3268. "files": [
  3269. ".nupkg.metadata",
  3270. ".signature.p7s",
  3271. "ThirdPartyNotices.txt",
  3272. "dotnet_library_license.txt",
  3273. "lib/MonoAndroid10/_._",
  3274. "lib/MonoTouch10/_._",
  3275. "lib/net45/_._",
  3276. "lib/portable-net45+win8+wp8+wpa81/_._",
  3277. "lib/win8/_._",
  3278. "lib/wp80/_._",
  3279. "lib/wpa81/_._",
  3280. "lib/xamarinios10/_._",
  3281. "lib/xamarinmac20/_._",
  3282. "lib/xamarintvos10/_._",
  3283. "lib/xamarinwatchos10/_._",
  3284. "ref/MonoAndroid10/_._",
  3285. "ref/MonoTouch10/_._",
  3286. "ref/net45/_._",
  3287. "ref/netcore50/System.Diagnostics.Tools.dll",
  3288. "ref/netcore50/System.Diagnostics.Tools.xml",
  3289. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  3290. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  3291. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  3292. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  3293. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  3294. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  3295. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  3296. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  3297. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  3298. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  3299. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  3300. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  3301. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  3302. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  3303. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  3304. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  3305. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  3306. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  3307. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  3308. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  3309. "ref/portable-net45+win8+wp8+wpa81/_._",
  3310. "ref/win8/_._",
  3311. "ref/wp80/_._",
  3312. "ref/wpa81/_._",
  3313. "ref/xamarinios10/_._",
  3314. "ref/xamarinmac20/_._",
  3315. "ref/xamarintvos10/_._",
  3316. "ref/xamarinwatchos10/_._",
  3317. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  3318. "system.diagnostics.tools.nuspec"
  3319. ]
  3320. },
  3321. "System.Diagnostics.TraceSource/4.0.0": {
  3322. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  3323. "type": "package",
  3324. "path": "system.diagnostics.tracesource/4.0.0",
  3325. "files": [
  3326. ".nupkg.metadata",
  3327. ".signature.p7s",
  3328. "ThirdPartyNotices.txt",
  3329. "dotnet_library_license.txt",
  3330. "lib/MonoAndroid10/_._",
  3331. "lib/MonoTouch10/_._",
  3332. "lib/net46/System.Diagnostics.TraceSource.dll",
  3333. "lib/xamarinios10/_._",
  3334. "lib/xamarinmac20/_._",
  3335. "lib/xamarintvos10/_._",
  3336. "lib/xamarinwatchos10/_._",
  3337. "ref/MonoAndroid10/_._",
  3338. "ref/MonoTouch10/_._",
  3339. "ref/net46/System.Diagnostics.TraceSource.dll",
  3340. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3341. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  3342. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  3343. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  3344. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  3345. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  3346. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  3347. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  3348. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  3349. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  3350. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  3351. "ref/xamarinios10/_._",
  3352. "ref/xamarinmac20/_._",
  3353. "ref/xamarintvos10/_._",
  3354. "ref/xamarinwatchos10/_._",
  3355. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3356. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  3357. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3358. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  3359. "system.diagnostics.tracesource.nuspec"
  3360. ]
  3361. },
  3362. "System.Diagnostics.Tracing/4.1.0": {
  3363. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  3364. "type": "package",
  3365. "path": "system.diagnostics.tracing/4.1.0",
  3366. "files": [
  3367. ".nupkg.metadata",
  3368. ".signature.p7s",
  3369. "ThirdPartyNotices.txt",
  3370. "dotnet_library_license.txt",
  3371. "lib/MonoAndroid10/_._",
  3372. "lib/MonoTouch10/_._",
  3373. "lib/net45/_._",
  3374. "lib/net462/System.Diagnostics.Tracing.dll",
  3375. "lib/portable-net45+win8+wpa81/_._",
  3376. "lib/win8/_._",
  3377. "lib/wpa81/_._",
  3378. "lib/xamarinios10/_._",
  3379. "lib/xamarinmac20/_._",
  3380. "lib/xamarintvos10/_._",
  3381. "lib/xamarinwatchos10/_._",
  3382. "ref/MonoAndroid10/_._",
  3383. "ref/MonoTouch10/_._",
  3384. "ref/net45/_._",
  3385. "ref/net462/System.Diagnostics.Tracing.dll",
  3386. "ref/netcore50/System.Diagnostics.Tracing.dll",
  3387. "ref/netcore50/System.Diagnostics.Tracing.xml",
  3388. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  3389. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  3390. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  3391. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  3392. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  3393. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  3394. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  3395. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  3396. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  3397. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  3398. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  3399. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  3400. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  3401. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  3402. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  3403. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  3404. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  3405. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  3406. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  3407. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  3408. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  3409. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  3410. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  3411. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  3412. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  3413. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  3414. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  3415. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  3416. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  3417. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  3418. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  3419. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  3420. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  3421. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  3422. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  3423. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  3424. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  3425. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  3426. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  3427. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  3428. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  3429. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  3430. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  3431. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  3432. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  3433. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  3434. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  3435. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  3436. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  3437. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  3438. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  3439. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  3440. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  3441. "ref/portable-net45+win8+wpa81/_._",
  3442. "ref/win8/_._",
  3443. "ref/wpa81/_._",
  3444. "ref/xamarinios10/_._",
  3445. "ref/xamarinmac20/_._",
  3446. "ref/xamarintvos10/_._",
  3447. "ref/xamarinwatchos10/_._",
  3448. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  3449. "system.diagnostics.tracing.nuspec"
  3450. ]
  3451. },
  3452. "System.Dynamic.Runtime/4.0.11": {
  3453. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  3454. "type": "package",
  3455. "path": "system.dynamic.runtime/4.0.11",
  3456. "files": [
  3457. ".nupkg.metadata",
  3458. ".signature.p7s",
  3459. "ThirdPartyNotices.txt",
  3460. "dotnet_library_license.txt",
  3461. "lib/MonoAndroid10/_._",
  3462. "lib/MonoTouch10/_._",
  3463. "lib/net45/_._",
  3464. "lib/netcore50/System.Dynamic.Runtime.dll",
  3465. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  3466. "lib/portable-net45+win8+wp8+wpa81/_._",
  3467. "lib/win8/_._",
  3468. "lib/wp80/_._",
  3469. "lib/wpa81/_._",
  3470. "lib/xamarinios10/_._",
  3471. "lib/xamarinmac20/_._",
  3472. "lib/xamarintvos10/_._",
  3473. "lib/xamarinwatchos10/_._",
  3474. "ref/MonoAndroid10/_._",
  3475. "ref/MonoTouch10/_._",
  3476. "ref/net45/_._",
  3477. "ref/netcore50/System.Dynamic.Runtime.dll",
  3478. "ref/netcore50/System.Dynamic.Runtime.xml",
  3479. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  3480. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  3481. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  3482. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  3483. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  3484. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  3485. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  3486. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  3487. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  3488. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  3489. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  3490. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  3491. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  3492. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  3493. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  3494. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  3495. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  3496. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  3497. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  3498. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  3499. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  3500. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  3501. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  3502. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  3503. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  3504. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  3505. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  3506. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  3507. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  3508. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  3509. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  3510. "ref/portable-net45+win8+wp8+wpa81/_._",
  3511. "ref/win8/_._",
  3512. "ref/wp80/_._",
  3513. "ref/wpa81/_._",
  3514. "ref/xamarinios10/_._",
  3515. "ref/xamarinmac20/_._",
  3516. "ref/xamarintvos10/_._",
  3517. "ref/xamarinwatchos10/_._",
  3518. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  3519. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  3520. "system.dynamic.runtime.nuspec"
  3521. ]
  3522. },
  3523. "System.Globalization/4.0.11": {
  3524. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  3525. "type": "package",
  3526. "path": "system.globalization/4.0.11",
  3527. "files": [
  3528. ".nupkg.metadata",
  3529. ".signature.p7s",
  3530. "ThirdPartyNotices.txt",
  3531. "dotnet_library_license.txt",
  3532. "lib/MonoAndroid10/_._",
  3533. "lib/MonoTouch10/_._",
  3534. "lib/net45/_._",
  3535. "lib/portable-net45+win8+wp8+wpa81/_._",
  3536. "lib/win8/_._",
  3537. "lib/wp80/_._",
  3538. "lib/wpa81/_._",
  3539. "lib/xamarinios10/_._",
  3540. "lib/xamarinmac20/_._",
  3541. "lib/xamarintvos10/_._",
  3542. "lib/xamarinwatchos10/_._",
  3543. "ref/MonoAndroid10/_._",
  3544. "ref/MonoTouch10/_._",
  3545. "ref/net45/_._",
  3546. "ref/netcore50/System.Globalization.dll",
  3547. "ref/netcore50/System.Globalization.xml",
  3548. "ref/netcore50/de/System.Globalization.xml",
  3549. "ref/netcore50/es/System.Globalization.xml",
  3550. "ref/netcore50/fr/System.Globalization.xml",
  3551. "ref/netcore50/it/System.Globalization.xml",
  3552. "ref/netcore50/ja/System.Globalization.xml",
  3553. "ref/netcore50/ko/System.Globalization.xml",
  3554. "ref/netcore50/ru/System.Globalization.xml",
  3555. "ref/netcore50/zh-hans/System.Globalization.xml",
  3556. "ref/netcore50/zh-hant/System.Globalization.xml",
  3557. "ref/netstandard1.0/System.Globalization.dll",
  3558. "ref/netstandard1.0/System.Globalization.xml",
  3559. "ref/netstandard1.0/de/System.Globalization.xml",
  3560. "ref/netstandard1.0/es/System.Globalization.xml",
  3561. "ref/netstandard1.0/fr/System.Globalization.xml",
  3562. "ref/netstandard1.0/it/System.Globalization.xml",
  3563. "ref/netstandard1.0/ja/System.Globalization.xml",
  3564. "ref/netstandard1.0/ko/System.Globalization.xml",
  3565. "ref/netstandard1.0/ru/System.Globalization.xml",
  3566. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  3567. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  3568. "ref/netstandard1.3/System.Globalization.dll",
  3569. "ref/netstandard1.3/System.Globalization.xml",
  3570. "ref/netstandard1.3/de/System.Globalization.xml",
  3571. "ref/netstandard1.3/es/System.Globalization.xml",
  3572. "ref/netstandard1.3/fr/System.Globalization.xml",
  3573. "ref/netstandard1.3/it/System.Globalization.xml",
  3574. "ref/netstandard1.3/ja/System.Globalization.xml",
  3575. "ref/netstandard1.3/ko/System.Globalization.xml",
  3576. "ref/netstandard1.3/ru/System.Globalization.xml",
  3577. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  3578. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  3579. "ref/portable-net45+win8+wp8+wpa81/_._",
  3580. "ref/win8/_._",
  3581. "ref/wp80/_._",
  3582. "ref/wpa81/_._",
  3583. "ref/xamarinios10/_._",
  3584. "ref/xamarinmac20/_._",
  3585. "ref/xamarintvos10/_._",
  3586. "ref/xamarinwatchos10/_._",
  3587. "system.globalization.4.0.11.nupkg.sha512",
  3588. "system.globalization.nuspec"
  3589. ]
  3590. },
  3591. "System.Globalization.Calendars/4.0.1": {
  3592. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  3593. "type": "package",
  3594. "path": "system.globalization.calendars/4.0.1",
  3595. "files": [
  3596. ".nupkg.metadata",
  3597. ".signature.p7s",
  3598. "ThirdPartyNotices.txt",
  3599. "dotnet_library_license.txt",
  3600. "lib/MonoAndroid10/_._",
  3601. "lib/MonoTouch10/_._",
  3602. "lib/net46/System.Globalization.Calendars.dll",
  3603. "lib/xamarinios10/_._",
  3604. "lib/xamarinmac20/_._",
  3605. "lib/xamarintvos10/_._",
  3606. "lib/xamarinwatchos10/_._",
  3607. "ref/MonoAndroid10/_._",
  3608. "ref/MonoTouch10/_._",
  3609. "ref/net46/System.Globalization.Calendars.dll",
  3610. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  3611. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  3612. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  3613. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  3614. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  3615. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  3616. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  3617. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  3618. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  3619. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  3620. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  3621. "ref/xamarinios10/_._",
  3622. "ref/xamarinmac20/_._",
  3623. "ref/xamarintvos10/_._",
  3624. "ref/xamarinwatchos10/_._",
  3625. "system.globalization.calendars.4.0.1.nupkg.sha512",
  3626. "system.globalization.calendars.nuspec"
  3627. ]
  3628. },
  3629. "System.Globalization.Extensions/4.0.1": {
  3630. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  3631. "type": "package",
  3632. "path": "system.globalization.extensions/4.0.1",
  3633. "files": [
  3634. ".nupkg.metadata",
  3635. ".signature.p7s",
  3636. "ThirdPartyNotices.txt",
  3637. "dotnet_library_license.txt",
  3638. "lib/MonoAndroid10/_._",
  3639. "lib/MonoTouch10/_._",
  3640. "lib/net46/System.Globalization.Extensions.dll",
  3641. "lib/xamarinios10/_._",
  3642. "lib/xamarinmac20/_._",
  3643. "lib/xamarintvos10/_._",
  3644. "lib/xamarinwatchos10/_._",
  3645. "ref/MonoAndroid10/_._",
  3646. "ref/MonoTouch10/_._",
  3647. "ref/net46/System.Globalization.Extensions.dll",
  3648. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  3649. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  3650. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  3651. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  3652. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  3653. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  3654. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  3655. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  3656. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  3657. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  3658. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  3659. "ref/xamarinios10/_._",
  3660. "ref/xamarinmac20/_._",
  3661. "ref/xamarintvos10/_._",
  3662. "ref/xamarinwatchos10/_._",
  3663. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  3664. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  3665. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  3666. "system.globalization.extensions.4.0.1.nupkg.sha512",
  3667. "system.globalization.extensions.nuspec"
  3668. ]
  3669. },
  3670. "System.IO/4.1.0": {
  3671. "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
  3672. "type": "package",
  3673. "path": "system.io/4.1.0",
  3674. "files": [
  3675. ".nupkg.metadata",
  3676. ".signature.p7s",
  3677. "ThirdPartyNotices.txt",
  3678. "dotnet_library_license.txt",
  3679. "lib/MonoAndroid10/_._",
  3680. "lib/MonoTouch10/_._",
  3681. "lib/net45/_._",
  3682. "lib/net462/System.IO.dll",
  3683. "lib/portable-net45+win8+wp8+wpa81/_._",
  3684. "lib/win8/_._",
  3685. "lib/wp80/_._",
  3686. "lib/wpa81/_._",
  3687. "lib/xamarinios10/_._",
  3688. "lib/xamarinmac20/_._",
  3689. "lib/xamarintvos10/_._",
  3690. "lib/xamarinwatchos10/_._",
  3691. "ref/MonoAndroid10/_._",
  3692. "ref/MonoTouch10/_._",
  3693. "ref/net45/_._",
  3694. "ref/net462/System.IO.dll",
  3695. "ref/netcore50/System.IO.dll",
  3696. "ref/netcore50/System.IO.xml",
  3697. "ref/netcore50/de/System.IO.xml",
  3698. "ref/netcore50/es/System.IO.xml",
  3699. "ref/netcore50/fr/System.IO.xml",
  3700. "ref/netcore50/it/System.IO.xml",
  3701. "ref/netcore50/ja/System.IO.xml",
  3702. "ref/netcore50/ko/System.IO.xml",
  3703. "ref/netcore50/ru/System.IO.xml",
  3704. "ref/netcore50/zh-hans/System.IO.xml",
  3705. "ref/netcore50/zh-hant/System.IO.xml",
  3706. "ref/netstandard1.0/System.IO.dll",
  3707. "ref/netstandard1.0/System.IO.xml",
  3708. "ref/netstandard1.0/de/System.IO.xml",
  3709. "ref/netstandard1.0/es/System.IO.xml",
  3710. "ref/netstandard1.0/fr/System.IO.xml",
  3711. "ref/netstandard1.0/it/System.IO.xml",
  3712. "ref/netstandard1.0/ja/System.IO.xml",
  3713. "ref/netstandard1.0/ko/System.IO.xml",
  3714. "ref/netstandard1.0/ru/System.IO.xml",
  3715. "ref/netstandard1.0/zh-hans/System.IO.xml",
  3716. "ref/netstandard1.0/zh-hant/System.IO.xml",
  3717. "ref/netstandard1.3/System.IO.dll",
  3718. "ref/netstandard1.3/System.IO.xml",
  3719. "ref/netstandard1.3/de/System.IO.xml",
  3720. "ref/netstandard1.3/es/System.IO.xml",
  3721. "ref/netstandard1.3/fr/System.IO.xml",
  3722. "ref/netstandard1.3/it/System.IO.xml",
  3723. "ref/netstandard1.3/ja/System.IO.xml",
  3724. "ref/netstandard1.3/ko/System.IO.xml",
  3725. "ref/netstandard1.3/ru/System.IO.xml",
  3726. "ref/netstandard1.3/zh-hans/System.IO.xml",
  3727. "ref/netstandard1.3/zh-hant/System.IO.xml",
  3728. "ref/netstandard1.5/System.IO.dll",
  3729. "ref/netstandard1.5/System.IO.xml",
  3730. "ref/netstandard1.5/de/System.IO.xml",
  3731. "ref/netstandard1.5/es/System.IO.xml",
  3732. "ref/netstandard1.5/fr/System.IO.xml",
  3733. "ref/netstandard1.5/it/System.IO.xml",
  3734. "ref/netstandard1.5/ja/System.IO.xml",
  3735. "ref/netstandard1.5/ko/System.IO.xml",
  3736. "ref/netstandard1.5/ru/System.IO.xml",
  3737. "ref/netstandard1.5/zh-hans/System.IO.xml",
  3738. "ref/netstandard1.5/zh-hant/System.IO.xml",
  3739. "ref/portable-net45+win8+wp8+wpa81/_._",
  3740. "ref/win8/_._",
  3741. "ref/wp80/_._",
  3742. "ref/wpa81/_._",
  3743. "ref/xamarinios10/_._",
  3744. "ref/xamarinmac20/_._",
  3745. "ref/xamarintvos10/_._",
  3746. "ref/xamarinwatchos10/_._",
  3747. "system.io.4.1.0.nupkg.sha512",
  3748. "system.io.nuspec"
  3749. ]
  3750. },
  3751. "System.IO.Compression/4.1.0": {
  3752. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  3753. "type": "package",
  3754. "path": "system.io.compression/4.1.0",
  3755. "files": [
  3756. ".nupkg.metadata",
  3757. ".signature.p7s",
  3758. "ThirdPartyNotices.txt",
  3759. "dotnet_library_license.txt",
  3760. "lib/MonoAndroid10/_._",
  3761. "lib/MonoTouch10/_._",
  3762. "lib/net45/_._",
  3763. "lib/net46/System.IO.Compression.dll",
  3764. "lib/portable-net45+win8+wpa81/_._",
  3765. "lib/win8/_._",
  3766. "lib/wpa81/_._",
  3767. "lib/xamarinios10/_._",
  3768. "lib/xamarinmac20/_._",
  3769. "lib/xamarintvos10/_._",
  3770. "lib/xamarinwatchos10/_._",
  3771. "ref/MonoAndroid10/_._",
  3772. "ref/MonoTouch10/_._",
  3773. "ref/net45/_._",
  3774. "ref/net46/System.IO.Compression.dll",
  3775. "ref/netcore50/System.IO.Compression.dll",
  3776. "ref/netcore50/System.IO.Compression.xml",
  3777. "ref/netcore50/de/System.IO.Compression.xml",
  3778. "ref/netcore50/es/System.IO.Compression.xml",
  3779. "ref/netcore50/fr/System.IO.Compression.xml",
  3780. "ref/netcore50/it/System.IO.Compression.xml",
  3781. "ref/netcore50/ja/System.IO.Compression.xml",
  3782. "ref/netcore50/ko/System.IO.Compression.xml",
  3783. "ref/netcore50/ru/System.IO.Compression.xml",
  3784. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  3785. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  3786. "ref/netstandard1.1/System.IO.Compression.dll",
  3787. "ref/netstandard1.1/System.IO.Compression.xml",
  3788. "ref/netstandard1.1/de/System.IO.Compression.xml",
  3789. "ref/netstandard1.1/es/System.IO.Compression.xml",
  3790. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  3791. "ref/netstandard1.1/it/System.IO.Compression.xml",
  3792. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  3793. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  3794. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  3795. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  3796. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  3797. "ref/netstandard1.3/System.IO.Compression.dll",
  3798. "ref/netstandard1.3/System.IO.Compression.xml",
  3799. "ref/netstandard1.3/de/System.IO.Compression.xml",
  3800. "ref/netstandard1.3/es/System.IO.Compression.xml",
  3801. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  3802. "ref/netstandard1.3/it/System.IO.Compression.xml",
  3803. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  3804. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  3805. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  3806. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  3807. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  3808. "ref/portable-net45+win8+wpa81/_._",
  3809. "ref/win8/_._",
  3810. "ref/wpa81/_._",
  3811. "ref/xamarinios10/_._",
  3812. "ref/xamarinmac20/_._",
  3813. "ref/xamarintvos10/_._",
  3814. "ref/xamarinwatchos10/_._",
  3815. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  3816. "runtimes/win/lib/net46/System.IO.Compression.dll",
  3817. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  3818. "system.io.compression.4.1.0.nupkg.sha512",
  3819. "system.io.compression.nuspec"
  3820. ]
  3821. },
  3822. "System.IO.Compression.ZipFile/4.0.1": {
  3823. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  3824. "type": "package",
  3825. "path": "system.io.compression.zipfile/4.0.1",
  3826. "files": [
  3827. ".nupkg.metadata",
  3828. ".signature.p7s",
  3829. "ThirdPartyNotices.txt",
  3830. "dotnet_library_license.txt",
  3831. "lib/MonoAndroid10/_._",
  3832. "lib/MonoTouch10/_._",
  3833. "lib/net46/System.IO.Compression.ZipFile.dll",
  3834. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  3835. "lib/xamarinios10/_._",
  3836. "lib/xamarinmac20/_._",
  3837. "lib/xamarintvos10/_._",
  3838. "lib/xamarinwatchos10/_._",
  3839. "ref/MonoAndroid10/_._",
  3840. "ref/MonoTouch10/_._",
  3841. "ref/net46/System.IO.Compression.ZipFile.dll",
  3842. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  3843. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  3844. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  3845. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  3846. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  3847. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  3848. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  3849. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  3850. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  3851. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  3852. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  3853. "ref/xamarinios10/_._",
  3854. "ref/xamarinmac20/_._",
  3855. "ref/xamarintvos10/_._",
  3856. "ref/xamarinwatchos10/_._",
  3857. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  3858. "system.io.compression.zipfile.nuspec"
  3859. ]
  3860. },
  3861. "System.IO.FileSystem/4.0.1": {
  3862. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  3863. "type": "package",
  3864. "path": "system.io.filesystem/4.0.1",
  3865. "files": [
  3866. ".nupkg.metadata",
  3867. ".signature.p7s",
  3868. "ThirdPartyNotices.txt",
  3869. "dotnet_library_license.txt",
  3870. "lib/MonoAndroid10/_._",
  3871. "lib/MonoTouch10/_._",
  3872. "lib/net46/System.IO.FileSystem.dll",
  3873. "lib/xamarinios10/_._",
  3874. "lib/xamarinmac20/_._",
  3875. "lib/xamarintvos10/_._",
  3876. "lib/xamarinwatchos10/_._",
  3877. "ref/MonoAndroid10/_._",
  3878. "ref/MonoTouch10/_._",
  3879. "ref/net46/System.IO.FileSystem.dll",
  3880. "ref/netstandard1.3/System.IO.FileSystem.dll",
  3881. "ref/netstandard1.3/System.IO.FileSystem.xml",
  3882. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  3883. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  3884. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  3885. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  3886. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  3887. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  3888. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  3889. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  3890. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  3891. "ref/xamarinios10/_._",
  3892. "ref/xamarinmac20/_._",
  3893. "ref/xamarintvos10/_._",
  3894. "ref/xamarinwatchos10/_._",
  3895. "system.io.filesystem.4.0.1.nupkg.sha512",
  3896. "system.io.filesystem.nuspec"
  3897. ]
  3898. },
  3899. "System.IO.FileSystem.Primitives/4.0.1": {
  3900. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  3901. "type": "package",
  3902. "path": "system.io.filesystem.primitives/4.0.1",
  3903. "files": [
  3904. ".nupkg.metadata",
  3905. ".signature.p7s",
  3906. "ThirdPartyNotices.txt",
  3907. "dotnet_library_license.txt",
  3908. "lib/MonoAndroid10/_._",
  3909. "lib/MonoTouch10/_._",
  3910. "lib/net46/System.IO.FileSystem.Primitives.dll",
  3911. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  3912. "lib/xamarinios10/_._",
  3913. "lib/xamarinmac20/_._",
  3914. "lib/xamarintvos10/_._",
  3915. "lib/xamarinwatchos10/_._",
  3916. "ref/MonoAndroid10/_._",
  3917. "ref/MonoTouch10/_._",
  3918. "ref/net46/System.IO.FileSystem.Primitives.dll",
  3919. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  3920. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  3921. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  3922. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  3923. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  3924. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  3925. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  3926. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  3927. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  3928. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  3929. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  3930. "ref/xamarinios10/_._",
  3931. "ref/xamarinmac20/_._",
  3932. "ref/xamarintvos10/_._",
  3933. "ref/xamarinwatchos10/_._",
  3934. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  3935. "system.io.filesystem.primitives.nuspec"
  3936. ]
  3937. },
  3938. "System.Linq/4.1.0": {
  3939. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  3940. "type": "package",
  3941. "path": "system.linq/4.1.0",
  3942. "files": [
  3943. ".nupkg.metadata",
  3944. ".signature.p7s",
  3945. "ThirdPartyNotices.txt",
  3946. "dotnet_library_license.txt",
  3947. "lib/MonoAndroid10/_._",
  3948. "lib/MonoTouch10/_._",
  3949. "lib/net45/_._",
  3950. "lib/net463/System.Linq.dll",
  3951. "lib/netcore50/System.Linq.dll",
  3952. "lib/netstandard1.6/System.Linq.dll",
  3953. "lib/portable-net45+win8+wp8+wpa81/_._",
  3954. "lib/win8/_._",
  3955. "lib/wp80/_._",
  3956. "lib/wpa81/_._",
  3957. "lib/xamarinios10/_._",
  3958. "lib/xamarinmac20/_._",
  3959. "lib/xamarintvos10/_._",
  3960. "lib/xamarinwatchos10/_._",
  3961. "ref/MonoAndroid10/_._",
  3962. "ref/MonoTouch10/_._",
  3963. "ref/net45/_._",
  3964. "ref/net463/System.Linq.dll",
  3965. "ref/netcore50/System.Linq.dll",
  3966. "ref/netcore50/System.Linq.xml",
  3967. "ref/netcore50/de/System.Linq.xml",
  3968. "ref/netcore50/es/System.Linq.xml",
  3969. "ref/netcore50/fr/System.Linq.xml",
  3970. "ref/netcore50/it/System.Linq.xml",
  3971. "ref/netcore50/ja/System.Linq.xml",
  3972. "ref/netcore50/ko/System.Linq.xml",
  3973. "ref/netcore50/ru/System.Linq.xml",
  3974. "ref/netcore50/zh-hans/System.Linq.xml",
  3975. "ref/netcore50/zh-hant/System.Linq.xml",
  3976. "ref/netstandard1.0/System.Linq.dll",
  3977. "ref/netstandard1.0/System.Linq.xml",
  3978. "ref/netstandard1.0/de/System.Linq.xml",
  3979. "ref/netstandard1.0/es/System.Linq.xml",
  3980. "ref/netstandard1.0/fr/System.Linq.xml",
  3981. "ref/netstandard1.0/it/System.Linq.xml",
  3982. "ref/netstandard1.0/ja/System.Linq.xml",
  3983. "ref/netstandard1.0/ko/System.Linq.xml",
  3984. "ref/netstandard1.0/ru/System.Linq.xml",
  3985. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  3986. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  3987. "ref/netstandard1.6/System.Linq.dll",
  3988. "ref/netstandard1.6/System.Linq.xml",
  3989. "ref/netstandard1.6/de/System.Linq.xml",
  3990. "ref/netstandard1.6/es/System.Linq.xml",
  3991. "ref/netstandard1.6/fr/System.Linq.xml",
  3992. "ref/netstandard1.6/it/System.Linq.xml",
  3993. "ref/netstandard1.6/ja/System.Linq.xml",
  3994. "ref/netstandard1.6/ko/System.Linq.xml",
  3995. "ref/netstandard1.6/ru/System.Linq.xml",
  3996. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  3997. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  3998. "ref/portable-net45+win8+wp8+wpa81/_._",
  3999. "ref/win8/_._",
  4000. "ref/wp80/_._",
  4001. "ref/wpa81/_._",
  4002. "ref/xamarinios10/_._",
  4003. "ref/xamarinmac20/_._",
  4004. "ref/xamarintvos10/_._",
  4005. "ref/xamarinwatchos10/_._",
  4006. "system.linq.4.1.0.nupkg.sha512",
  4007. "system.linq.nuspec"
  4008. ]
  4009. },
  4010. "System.Linq.Expressions/4.1.0": {
  4011. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  4012. "type": "package",
  4013. "path": "system.linq.expressions/4.1.0",
  4014. "files": [
  4015. ".nupkg.metadata",
  4016. ".signature.p7s",
  4017. "ThirdPartyNotices.txt",
  4018. "dotnet_library_license.txt",
  4019. "lib/MonoAndroid10/_._",
  4020. "lib/MonoTouch10/_._",
  4021. "lib/net45/_._",
  4022. "lib/net463/System.Linq.Expressions.dll",
  4023. "lib/netcore50/System.Linq.Expressions.dll",
  4024. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4025. "lib/portable-net45+win8+wp8+wpa81/_._",
  4026. "lib/win8/_._",
  4027. "lib/wp80/_._",
  4028. "lib/wpa81/_._",
  4029. "lib/xamarinios10/_._",
  4030. "lib/xamarinmac20/_._",
  4031. "lib/xamarintvos10/_._",
  4032. "lib/xamarinwatchos10/_._",
  4033. "ref/MonoAndroid10/_._",
  4034. "ref/MonoTouch10/_._",
  4035. "ref/net45/_._",
  4036. "ref/net463/System.Linq.Expressions.dll",
  4037. "ref/netcore50/System.Linq.Expressions.dll",
  4038. "ref/netcore50/System.Linq.Expressions.xml",
  4039. "ref/netcore50/de/System.Linq.Expressions.xml",
  4040. "ref/netcore50/es/System.Linq.Expressions.xml",
  4041. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4042. "ref/netcore50/it/System.Linq.Expressions.xml",
  4043. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4044. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4045. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4046. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4047. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4048. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4049. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4050. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4051. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4052. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4053. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4054. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4055. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4056. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4057. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4058. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4059. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4060. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4061. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4062. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4063. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4064. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4065. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4066. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4067. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4068. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4069. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4070. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4071. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4072. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4073. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4074. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4075. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4076. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4077. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4078. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4079. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4080. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4081. "ref/portable-net45+win8+wp8+wpa81/_._",
  4082. "ref/win8/_._",
  4083. "ref/wp80/_._",
  4084. "ref/wpa81/_._",
  4085. "ref/xamarinios10/_._",
  4086. "ref/xamarinmac20/_._",
  4087. "ref/xamarintvos10/_._",
  4088. "ref/xamarinwatchos10/_._",
  4089. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4090. "system.linq.expressions.4.1.0.nupkg.sha512",
  4091. "system.linq.expressions.nuspec"
  4092. ]
  4093. },
  4094. "System.Net.Http/4.1.0": {
  4095. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  4096. "type": "package",
  4097. "path": "system.net.http/4.1.0",
  4098. "files": [
  4099. ".nupkg.metadata",
  4100. ".signature.p7s",
  4101. "ThirdPartyNotices.txt",
  4102. "dotnet_library_license.txt",
  4103. "lib/Xamarinmac20/_._",
  4104. "lib/monoandroid10/_._",
  4105. "lib/monotouch10/_._",
  4106. "lib/net45/_._",
  4107. "lib/net46/System.Net.Http.dll",
  4108. "lib/portable-net45+win8+wpa81/_._",
  4109. "lib/win8/_._",
  4110. "lib/wpa81/_._",
  4111. "lib/xamarinios10/_._",
  4112. "lib/xamarintvos10/_._",
  4113. "lib/xamarinwatchos10/_._",
  4114. "ref/Xamarinmac20/_._",
  4115. "ref/monoandroid10/_._",
  4116. "ref/monotouch10/_._",
  4117. "ref/net45/_._",
  4118. "ref/net46/System.Net.Http.dll",
  4119. "ref/net46/System.Net.Http.xml",
  4120. "ref/net46/de/System.Net.Http.xml",
  4121. "ref/net46/es/System.Net.Http.xml",
  4122. "ref/net46/fr/System.Net.Http.xml",
  4123. "ref/net46/it/System.Net.Http.xml",
  4124. "ref/net46/ja/System.Net.Http.xml",
  4125. "ref/net46/ko/System.Net.Http.xml",
  4126. "ref/net46/ru/System.Net.Http.xml",
  4127. "ref/net46/zh-hans/System.Net.Http.xml",
  4128. "ref/net46/zh-hant/System.Net.Http.xml",
  4129. "ref/netcore50/System.Net.Http.dll",
  4130. "ref/netcore50/System.Net.Http.xml",
  4131. "ref/netcore50/de/System.Net.Http.xml",
  4132. "ref/netcore50/es/System.Net.Http.xml",
  4133. "ref/netcore50/fr/System.Net.Http.xml",
  4134. "ref/netcore50/it/System.Net.Http.xml",
  4135. "ref/netcore50/ja/System.Net.Http.xml",
  4136. "ref/netcore50/ko/System.Net.Http.xml",
  4137. "ref/netcore50/ru/System.Net.Http.xml",
  4138. "ref/netcore50/zh-hans/System.Net.Http.xml",
  4139. "ref/netcore50/zh-hant/System.Net.Http.xml",
  4140. "ref/netstandard1.1/System.Net.Http.dll",
  4141. "ref/netstandard1.1/System.Net.Http.xml",
  4142. "ref/netstandard1.1/de/System.Net.Http.xml",
  4143. "ref/netstandard1.1/es/System.Net.Http.xml",
  4144. "ref/netstandard1.1/fr/System.Net.Http.xml",
  4145. "ref/netstandard1.1/it/System.Net.Http.xml",
  4146. "ref/netstandard1.1/ja/System.Net.Http.xml",
  4147. "ref/netstandard1.1/ko/System.Net.Http.xml",
  4148. "ref/netstandard1.1/ru/System.Net.Http.xml",
  4149. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  4150. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  4151. "ref/netstandard1.3/System.Net.Http.dll",
  4152. "ref/netstandard1.3/System.Net.Http.xml",
  4153. "ref/netstandard1.3/de/System.Net.Http.xml",
  4154. "ref/netstandard1.3/es/System.Net.Http.xml",
  4155. "ref/netstandard1.3/fr/System.Net.Http.xml",
  4156. "ref/netstandard1.3/it/System.Net.Http.xml",
  4157. "ref/netstandard1.3/ja/System.Net.Http.xml",
  4158. "ref/netstandard1.3/ko/System.Net.Http.xml",
  4159. "ref/netstandard1.3/ru/System.Net.Http.xml",
  4160. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  4161. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  4162. "ref/portable-net45+win8+wpa81/_._",
  4163. "ref/win8/_._",
  4164. "ref/wpa81/_._",
  4165. "ref/xamarinios10/_._",
  4166. "ref/xamarintvos10/_._",
  4167. "ref/xamarinwatchos10/_._",
  4168. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  4169. "runtimes/win/lib/net46/System.Net.Http.dll",
  4170. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  4171. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  4172. "system.net.http.4.1.0.nupkg.sha512",
  4173. "system.net.http.nuspec"
  4174. ]
  4175. },
  4176. "System.Net.Primitives/4.0.11": {
  4177. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  4178. "type": "package",
  4179. "path": "system.net.primitives/4.0.11",
  4180. "files": [
  4181. ".nupkg.metadata",
  4182. ".signature.p7s",
  4183. "ThirdPartyNotices.txt",
  4184. "dotnet_library_license.txt",
  4185. "lib/MonoAndroid10/_._",
  4186. "lib/MonoTouch10/_._",
  4187. "lib/net45/_._",
  4188. "lib/portable-net45+win8+wp8+wpa81/_._",
  4189. "lib/win8/_._",
  4190. "lib/wp80/_._",
  4191. "lib/wpa81/_._",
  4192. "lib/xamarinios10/_._",
  4193. "lib/xamarinmac20/_._",
  4194. "lib/xamarintvos10/_._",
  4195. "lib/xamarinwatchos10/_._",
  4196. "ref/MonoAndroid10/_._",
  4197. "ref/MonoTouch10/_._",
  4198. "ref/net45/_._",
  4199. "ref/netcore50/System.Net.Primitives.dll",
  4200. "ref/netcore50/System.Net.Primitives.xml",
  4201. "ref/netcore50/de/System.Net.Primitives.xml",
  4202. "ref/netcore50/es/System.Net.Primitives.xml",
  4203. "ref/netcore50/fr/System.Net.Primitives.xml",
  4204. "ref/netcore50/it/System.Net.Primitives.xml",
  4205. "ref/netcore50/ja/System.Net.Primitives.xml",
  4206. "ref/netcore50/ko/System.Net.Primitives.xml",
  4207. "ref/netcore50/ru/System.Net.Primitives.xml",
  4208. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  4209. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  4210. "ref/netstandard1.0/System.Net.Primitives.dll",
  4211. "ref/netstandard1.0/System.Net.Primitives.xml",
  4212. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  4213. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  4214. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  4215. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  4216. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  4217. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  4218. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  4219. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  4220. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  4221. "ref/netstandard1.1/System.Net.Primitives.dll",
  4222. "ref/netstandard1.1/System.Net.Primitives.xml",
  4223. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  4224. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  4225. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  4226. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  4227. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  4228. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  4229. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  4230. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  4231. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  4232. "ref/netstandard1.3/System.Net.Primitives.dll",
  4233. "ref/netstandard1.3/System.Net.Primitives.xml",
  4234. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  4235. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  4236. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  4237. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  4238. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  4239. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  4240. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  4241. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  4242. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  4243. "ref/portable-net45+win8+wp8+wpa81/_._",
  4244. "ref/win8/_._",
  4245. "ref/wp80/_._",
  4246. "ref/wpa81/_._",
  4247. "ref/xamarinios10/_._",
  4248. "ref/xamarinmac20/_._",
  4249. "ref/xamarintvos10/_._",
  4250. "ref/xamarinwatchos10/_._",
  4251. "system.net.primitives.4.0.11.nupkg.sha512",
  4252. "system.net.primitives.nuspec"
  4253. ]
  4254. },
  4255. "System.Net.Sockets/4.1.0": {
  4256. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  4257. "type": "package",
  4258. "path": "system.net.sockets/4.1.0",
  4259. "files": [
  4260. ".nupkg.metadata",
  4261. ".signature.p7s",
  4262. "ThirdPartyNotices.txt",
  4263. "dotnet_library_license.txt",
  4264. "lib/MonoAndroid10/_._",
  4265. "lib/MonoTouch10/_._",
  4266. "lib/net46/System.Net.Sockets.dll",
  4267. "lib/xamarinios10/_._",
  4268. "lib/xamarinmac20/_._",
  4269. "lib/xamarintvos10/_._",
  4270. "lib/xamarinwatchos10/_._",
  4271. "ref/MonoAndroid10/_._",
  4272. "ref/MonoTouch10/_._",
  4273. "ref/net46/System.Net.Sockets.dll",
  4274. "ref/netstandard1.3/System.Net.Sockets.dll",
  4275. "ref/netstandard1.3/System.Net.Sockets.xml",
  4276. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  4277. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  4278. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  4279. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  4280. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  4281. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  4282. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  4283. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  4284. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  4285. "ref/xamarinios10/_._",
  4286. "ref/xamarinmac20/_._",
  4287. "ref/xamarintvos10/_._",
  4288. "ref/xamarinwatchos10/_._",
  4289. "system.net.sockets.4.1.0.nupkg.sha512",
  4290. "system.net.sockets.nuspec"
  4291. ]
  4292. },
  4293. "System.ObjectModel/4.0.12": {
  4294. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  4295. "type": "package",
  4296. "path": "system.objectmodel/4.0.12",
  4297. "files": [
  4298. ".nupkg.metadata",
  4299. ".signature.p7s",
  4300. "ThirdPartyNotices.txt",
  4301. "dotnet_library_license.txt",
  4302. "lib/MonoAndroid10/_._",
  4303. "lib/MonoTouch10/_._",
  4304. "lib/net45/_._",
  4305. "lib/netcore50/System.ObjectModel.dll",
  4306. "lib/netstandard1.3/System.ObjectModel.dll",
  4307. "lib/portable-net45+win8+wp8+wpa81/_._",
  4308. "lib/win8/_._",
  4309. "lib/wp80/_._",
  4310. "lib/wpa81/_._",
  4311. "lib/xamarinios10/_._",
  4312. "lib/xamarinmac20/_._",
  4313. "lib/xamarintvos10/_._",
  4314. "lib/xamarinwatchos10/_._",
  4315. "ref/MonoAndroid10/_._",
  4316. "ref/MonoTouch10/_._",
  4317. "ref/net45/_._",
  4318. "ref/netcore50/System.ObjectModel.dll",
  4319. "ref/netcore50/System.ObjectModel.xml",
  4320. "ref/netcore50/de/System.ObjectModel.xml",
  4321. "ref/netcore50/es/System.ObjectModel.xml",
  4322. "ref/netcore50/fr/System.ObjectModel.xml",
  4323. "ref/netcore50/it/System.ObjectModel.xml",
  4324. "ref/netcore50/ja/System.ObjectModel.xml",
  4325. "ref/netcore50/ko/System.ObjectModel.xml",
  4326. "ref/netcore50/ru/System.ObjectModel.xml",
  4327. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4328. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4329. "ref/netstandard1.0/System.ObjectModel.dll",
  4330. "ref/netstandard1.0/System.ObjectModel.xml",
  4331. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4332. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4333. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4334. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4335. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4336. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4337. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4338. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4339. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  4340. "ref/netstandard1.3/System.ObjectModel.dll",
  4341. "ref/netstandard1.3/System.ObjectModel.xml",
  4342. "ref/netstandard1.3/de/System.ObjectModel.xml",
  4343. "ref/netstandard1.3/es/System.ObjectModel.xml",
  4344. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  4345. "ref/netstandard1.3/it/System.ObjectModel.xml",
  4346. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  4347. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  4348. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  4349. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  4350. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  4351. "ref/portable-net45+win8+wp8+wpa81/_._",
  4352. "ref/win8/_._",
  4353. "ref/wp80/_._",
  4354. "ref/wpa81/_._",
  4355. "ref/xamarinios10/_._",
  4356. "ref/xamarinmac20/_._",
  4357. "ref/xamarintvos10/_._",
  4358. "ref/xamarinwatchos10/_._",
  4359. "system.objectmodel.4.0.12.nupkg.sha512",
  4360. "system.objectmodel.nuspec"
  4361. ]
  4362. },
  4363. "System.Private.DataContractSerialization/4.1.1": {
  4364. "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
  4365. "type": "package",
  4366. "path": "system.private.datacontractserialization/4.1.1",
  4367. "files": [
  4368. ".nupkg.metadata",
  4369. ".signature.p7s",
  4370. "ThirdPartyNotices.txt",
  4371. "dotnet_library_license.txt",
  4372. "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
  4373. "ref/netstandard/_._",
  4374. "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
  4375. "system.private.datacontractserialization.4.1.1.nupkg.sha512",
  4376. "system.private.datacontractserialization.nuspec"
  4377. ]
  4378. },
  4379. "System.Reflection/4.1.0": {
  4380. "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
  4381. "type": "package",
  4382. "path": "system.reflection/4.1.0",
  4383. "files": [
  4384. ".nupkg.metadata",
  4385. ".signature.p7s",
  4386. "ThirdPartyNotices.txt",
  4387. "dotnet_library_license.txt",
  4388. "lib/MonoAndroid10/_._",
  4389. "lib/MonoTouch10/_._",
  4390. "lib/net45/_._",
  4391. "lib/net462/System.Reflection.dll",
  4392. "lib/portable-net45+win8+wp8+wpa81/_._",
  4393. "lib/win8/_._",
  4394. "lib/wp80/_._",
  4395. "lib/wpa81/_._",
  4396. "lib/xamarinios10/_._",
  4397. "lib/xamarinmac20/_._",
  4398. "lib/xamarintvos10/_._",
  4399. "lib/xamarinwatchos10/_._",
  4400. "ref/MonoAndroid10/_._",
  4401. "ref/MonoTouch10/_._",
  4402. "ref/net45/_._",
  4403. "ref/net462/System.Reflection.dll",
  4404. "ref/netcore50/System.Reflection.dll",
  4405. "ref/netcore50/System.Reflection.xml",
  4406. "ref/netcore50/de/System.Reflection.xml",
  4407. "ref/netcore50/es/System.Reflection.xml",
  4408. "ref/netcore50/fr/System.Reflection.xml",
  4409. "ref/netcore50/it/System.Reflection.xml",
  4410. "ref/netcore50/ja/System.Reflection.xml",
  4411. "ref/netcore50/ko/System.Reflection.xml",
  4412. "ref/netcore50/ru/System.Reflection.xml",
  4413. "ref/netcore50/zh-hans/System.Reflection.xml",
  4414. "ref/netcore50/zh-hant/System.Reflection.xml",
  4415. "ref/netstandard1.0/System.Reflection.dll",
  4416. "ref/netstandard1.0/System.Reflection.xml",
  4417. "ref/netstandard1.0/de/System.Reflection.xml",
  4418. "ref/netstandard1.0/es/System.Reflection.xml",
  4419. "ref/netstandard1.0/fr/System.Reflection.xml",
  4420. "ref/netstandard1.0/it/System.Reflection.xml",
  4421. "ref/netstandard1.0/ja/System.Reflection.xml",
  4422. "ref/netstandard1.0/ko/System.Reflection.xml",
  4423. "ref/netstandard1.0/ru/System.Reflection.xml",
  4424. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  4425. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  4426. "ref/netstandard1.3/System.Reflection.dll",
  4427. "ref/netstandard1.3/System.Reflection.xml",
  4428. "ref/netstandard1.3/de/System.Reflection.xml",
  4429. "ref/netstandard1.3/es/System.Reflection.xml",
  4430. "ref/netstandard1.3/fr/System.Reflection.xml",
  4431. "ref/netstandard1.3/it/System.Reflection.xml",
  4432. "ref/netstandard1.3/ja/System.Reflection.xml",
  4433. "ref/netstandard1.3/ko/System.Reflection.xml",
  4434. "ref/netstandard1.3/ru/System.Reflection.xml",
  4435. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  4436. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  4437. "ref/netstandard1.5/System.Reflection.dll",
  4438. "ref/netstandard1.5/System.Reflection.xml",
  4439. "ref/netstandard1.5/de/System.Reflection.xml",
  4440. "ref/netstandard1.5/es/System.Reflection.xml",
  4441. "ref/netstandard1.5/fr/System.Reflection.xml",
  4442. "ref/netstandard1.5/it/System.Reflection.xml",
  4443. "ref/netstandard1.5/ja/System.Reflection.xml",
  4444. "ref/netstandard1.5/ko/System.Reflection.xml",
  4445. "ref/netstandard1.5/ru/System.Reflection.xml",
  4446. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  4447. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  4448. "ref/portable-net45+win8+wp8+wpa81/_._",
  4449. "ref/win8/_._",
  4450. "ref/wp80/_._",
  4451. "ref/wpa81/_._",
  4452. "ref/xamarinios10/_._",
  4453. "ref/xamarinmac20/_._",
  4454. "ref/xamarintvos10/_._",
  4455. "ref/xamarinwatchos10/_._",
  4456. "system.reflection.4.1.0.nupkg.sha512",
  4457. "system.reflection.nuspec"
  4458. ]
  4459. },
  4460. "System.Reflection.Emit/4.0.1": {
  4461. "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  4462. "type": "package",
  4463. "path": "system.reflection.emit/4.0.1",
  4464. "files": [
  4465. ".nupkg.metadata",
  4466. ".signature.p7s",
  4467. "ThirdPartyNotices.txt",
  4468. "dotnet_library_license.txt",
  4469. "lib/MonoAndroid10/_._",
  4470. "lib/net45/_._",
  4471. "lib/netcore50/System.Reflection.Emit.dll",
  4472. "lib/netstandard1.3/System.Reflection.Emit.dll",
  4473. "lib/xamarinmac20/_._",
  4474. "ref/MonoAndroid10/_._",
  4475. "ref/net45/_._",
  4476. "ref/netstandard1.1/System.Reflection.Emit.dll",
  4477. "ref/netstandard1.1/System.Reflection.Emit.xml",
  4478. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  4479. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  4480. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  4481. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  4482. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  4483. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  4484. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  4485. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  4486. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  4487. "ref/xamarinmac20/_._",
  4488. "system.reflection.emit.4.0.1.nupkg.sha512",
  4489. "system.reflection.emit.nuspec"
  4490. ]
  4491. },
  4492. "System.Reflection.Emit.ILGeneration/4.0.1": {
  4493. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  4494. "type": "package",
  4495. "path": "system.reflection.emit.ilgeneration/4.0.1",
  4496. "files": [
  4497. ".nupkg.metadata",
  4498. ".signature.p7s",
  4499. "ThirdPartyNotices.txt",
  4500. "dotnet_library_license.txt",
  4501. "lib/net45/_._",
  4502. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  4503. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  4504. "lib/portable-net45+wp8/_._",
  4505. "lib/wp80/_._",
  4506. "ref/net45/_._",
  4507. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  4508. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  4509. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  4510. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  4511. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  4512. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  4513. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  4514. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  4515. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  4516. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  4517. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  4518. "ref/portable-net45+wp8/_._",
  4519. "ref/wp80/_._",
  4520. "runtimes/aot/lib/netcore50/_._",
  4521. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  4522. "system.reflection.emit.ilgeneration.nuspec"
  4523. ]
  4524. },
  4525. "System.Reflection.Emit.Lightweight/4.0.1": {
  4526. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  4527. "type": "package",
  4528. "path": "system.reflection.emit.lightweight/4.0.1",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "ThirdPartyNotices.txt",
  4533. "dotnet_library_license.txt",
  4534. "lib/net45/_._",
  4535. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  4536. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  4537. "lib/portable-net45+wp8/_._",
  4538. "lib/wp80/_._",
  4539. "ref/net45/_._",
  4540. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  4541. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  4542. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  4543. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  4544. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  4545. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  4546. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  4547. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  4548. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  4549. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  4550. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  4551. "ref/portable-net45+wp8/_._",
  4552. "ref/wp80/_._",
  4553. "runtimes/aot/lib/netcore50/_._",
  4554. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  4555. "system.reflection.emit.lightweight.nuspec"
  4556. ]
  4557. },
  4558. "System.Reflection.Extensions/4.0.1": {
  4559. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  4560. "type": "package",
  4561. "path": "system.reflection.extensions/4.0.1",
  4562. "files": [
  4563. ".nupkg.metadata",
  4564. ".signature.p7s",
  4565. "ThirdPartyNotices.txt",
  4566. "dotnet_library_license.txt",
  4567. "lib/MonoAndroid10/_._",
  4568. "lib/MonoTouch10/_._",
  4569. "lib/net45/_._",
  4570. "lib/portable-net45+win8+wp8+wpa81/_._",
  4571. "lib/win8/_._",
  4572. "lib/wp80/_._",
  4573. "lib/wpa81/_._",
  4574. "lib/xamarinios10/_._",
  4575. "lib/xamarinmac20/_._",
  4576. "lib/xamarintvos10/_._",
  4577. "lib/xamarinwatchos10/_._",
  4578. "ref/MonoAndroid10/_._",
  4579. "ref/MonoTouch10/_._",
  4580. "ref/net45/_._",
  4581. "ref/netcore50/System.Reflection.Extensions.dll",
  4582. "ref/netcore50/System.Reflection.Extensions.xml",
  4583. "ref/netcore50/de/System.Reflection.Extensions.xml",
  4584. "ref/netcore50/es/System.Reflection.Extensions.xml",
  4585. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  4586. "ref/netcore50/it/System.Reflection.Extensions.xml",
  4587. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  4588. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  4589. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  4590. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  4591. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  4592. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  4593. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  4594. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  4595. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  4596. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  4597. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  4598. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  4599. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  4600. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  4601. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  4602. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  4603. "ref/portable-net45+win8+wp8+wpa81/_._",
  4604. "ref/win8/_._",
  4605. "ref/wp80/_._",
  4606. "ref/wpa81/_._",
  4607. "ref/xamarinios10/_._",
  4608. "ref/xamarinmac20/_._",
  4609. "ref/xamarintvos10/_._",
  4610. "ref/xamarinwatchos10/_._",
  4611. "system.reflection.extensions.4.0.1.nupkg.sha512",
  4612. "system.reflection.extensions.nuspec"
  4613. ]
  4614. },
  4615. "System.Reflection.Metadata/1.3.0": {
  4616. "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
  4617. "type": "package",
  4618. "path": "system.reflection.metadata/1.3.0",
  4619. "files": [
  4620. ".nupkg.metadata",
  4621. ".signature.p7s",
  4622. "ThirdPartyNotices.txt",
  4623. "dotnet_library_license.txt",
  4624. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  4625. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  4626. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  4627. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  4628. "system.reflection.metadata.1.3.0.nupkg.sha512",
  4629. "system.reflection.metadata.nuspec"
  4630. ]
  4631. },
  4632. "System.Reflection.Primitives/4.0.1": {
  4633. "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
  4634. "type": "package",
  4635. "path": "system.reflection.primitives/4.0.1",
  4636. "files": [
  4637. ".nupkg.metadata",
  4638. ".signature.p7s",
  4639. "ThirdPartyNotices.txt",
  4640. "dotnet_library_license.txt",
  4641. "lib/MonoAndroid10/_._",
  4642. "lib/MonoTouch10/_._",
  4643. "lib/net45/_._",
  4644. "lib/portable-net45+win8+wp8+wpa81/_._",
  4645. "lib/win8/_._",
  4646. "lib/wp80/_._",
  4647. "lib/wpa81/_._",
  4648. "lib/xamarinios10/_._",
  4649. "lib/xamarinmac20/_._",
  4650. "lib/xamarintvos10/_._",
  4651. "lib/xamarinwatchos10/_._",
  4652. "ref/MonoAndroid10/_._",
  4653. "ref/MonoTouch10/_._",
  4654. "ref/net45/_._",
  4655. "ref/netcore50/System.Reflection.Primitives.dll",
  4656. "ref/netcore50/System.Reflection.Primitives.xml",
  4657. "ref/netcore50/de/System.Reflection.Primitives.xml",
  4658. "ref/netcore50/es/System.Reflection.Primitives.xml",
  4659. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  4660. "ref/netcore50/it/System.Reflection.Primitives.xml",
  4661. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  4662. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  4663. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  4664. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  4665. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  4666. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  4667. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  4668. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  4669. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  4670. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  4671. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  4672. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  4673. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  4674. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  4675. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  4676. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  4677. "ref/portable-net45+win8+wp8+wpa81/_._",
  4678. "ref/win8/_._",
  4679. "ref/wp80/_._",
  4680. "ref/wpa81/_._",
  4681. "ref/xamarinios10/_._",
  4682. "ref/xamarinmac20/_._",
  4683. "ref/xamarintvos10/_._",
  4684. "ref/xamarinwatchos10/_._",
  4685. "system.reflection.primitives.4.0.1.nupkg.sha512",
  4686. "system.reflection.primitives.nuspec"
  4687. ]
  4688. },
  4689. "System.Reflection.TypeExtensions/4.1.0": {
  4690. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  4691. "type": "package",
  4692. "path": "system.reflection.typeextensions/4.1.0",
  4693. "files": [
  4694. ".nupkg.metadata",
  4695. ".signature.p7s",
  4696. "ThirdPartyNotices.txt",
  4697. "dotnet_library_license.txt",
  4698. "lib/MonoAndroid10/_._",
  4699. "lib/MonoTouch10/_._",
  4700. "lib/net46/System.Reflection.TypeExtensions.dll",
  4701. "lib/net462/System.Reflection.TypeExtensions.dll",
  4702. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  4703. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  4704. "lib/xamarinios10/_._",
  4705. "lib/xamarinmac20/_._",
  4706. "lib/xamarintvos10/_._",
  4707. "lib/xamarinwatchos10/_._",
  4708. "ref/MonoAndroid10/_._",
  4709. "ref/MonoTouch10/_._",
  4710. "ref/net46/System.Reflection.TypeExtensions.dll",
  4711. "ref/net462/System.Reflection.TypeExtensions.dll",
  4712. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  4713. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  4714. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  4715. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  4716. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  4717. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  4718. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  4719. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  4720. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  4721. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  4722. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  4723. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  4724. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  4725. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  4726. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  4727. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  4728. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  4729. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  4730. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  4731. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  4732. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  4733. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  4734. "ref/xamarinios10/_._",
  4735. "ref/xamarinmac20/_._",
  4736. "ref/xamarintvos10/_._",
  4737. "ref/xamarinwatchos10/_._",
  4738. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  4739. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  4740. "system.reflection.typeextensions.nuspec"
  4741. ]
  4742. },
  4743. "System.Resources.ResourceManager/4.0.1": {
  4744. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  4745. "type": "package",
  4746. "path": "system.resources.resourcemanager/4.0.1",
  4747. "files": [
  4748. ".nupkg.metadata",
  4749. ".signature.p7s",
  4750. "ThirdPartyNotices.txt",
  4751. "dotnet_library_license.txt",
  4752. "lib/MonoAndroid10/_._",
  4753. "lib/MonoTouch10/_._",
  4754. "lib/net45/_._",
  4755. "lib/portable-net45+win8+wp8+wpa81/_._",
  4756. "lib/win8/_._",
  4757. "lib/wp80/_._",
  4758. "lib/wpa81/_._",
  4759. "lib/xamarinios10/_._",
  4760. "lib/xamarinmac20/_._",
  4761. "lib/xamarintvos10/_._",
  4762. "lib/xamarinwatchos10/_._",
  4763. "ref/MonoAndroid10/_._",
  4764. "ref/MonoTouch10/_._",
  4765. "ref/net45/_._",
  4766. "ref/netcore50/System.Resources.ResourceManager.dll",
  4767. "ref/netcore50/System.Resources.ResourceManager.xml",
  4768. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  4769. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  4770. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  4771. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  4772. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  4773. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  4774. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  4775. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  4776. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  4777. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  4778. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  4779. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  4780. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  4781. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  4782. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  4783. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  4784. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  4785. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  4786. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  4787. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  4788. "ref/portable-net45+win8+wp8+wpa81/_._",
  4789. "ref/win8/_._",
  4790. "ref/wp80/_._",
  4791. "ref/wpa81/_._",
  4792. "ref/xamarinios10/_._",
  4793. "ref/xamarinmac20/_._",
  4794. "ref/xamarintvos10/_._",
  4795. "ref/xamarinwatchos10/_._",
  4796. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  4797. "system.resources.resourcemanager.nuspec"
  4798. ]
  4799. },
  4800. "System.Runtime/4.1.0": {
  4801. "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
  4802. "type": "package",
  4803. "path": "system.runtime/4.1.0",
  4804. "files": [
  4805. ".nupkg.metadata",
  4806. ".signature.p7s",
  4807. "ThirdPartyNotices.txt",
  4808. "dotnet_library_license.txt",
  4809. "lib/MonoAndroid10/_._",
  4810. "lib/MonoTouch10/_._",
  4811. "lib/net45/_._",
  4812. "lib/net462/System.Runtime.dll",
  4813. "lib/portable-net45+win8+wp80+wpa81/_._",
  4814. "lib/win8/_._",
  4815. "lib/wp80/_._",
  4816. "lib/wpa81/_._",
  4817. "lib/xamarinios10/_._",
  4818. "lib/xamarinmac20/_._",
  4819. "lib/xamarintvos10/_._",
  4820. "lib/xamarinwatchos10/_._",
  4821. "ref/MonoAndroid10/_._",
  4822. "ref/MonoTouch10/_._",
  4823. "ref/net45/_._",
  4824. "ref/net462/System.Runtime.dll",
  4825. "ref/netcore50/System.Runtime.dll",
  4826. "ref/netcore50/System.Runtime.xml",
  4827. "ref/netcore50/de/System.Runtime.xml",
  4828. "ref/netcore50/es/System.Runtime.xml",
  4829. "ref/netcore50/fr/System.Runtime.xml",
  4830. "ref/netcore50/it/System.Runtime.xml",
  4831. "ref/netcore50/ja/System.Runtime.xml",
  4832. "ref/netcore50/ko/System.Runtime.xml",
  4833. "ref/netcore50/ru/System.Runtime.xml",
  4834. "ref/netcore50/zh-hans/System.Runtime.xml",
  4835. "ref/netcore50/zh-hant/System.Runtime.xml",
  4836. "ref/netstandard1.0/System.Runtime.dll",
  4837. "ref/netstandard1.0/System.Runtime.xml",
  4838. "ref/netstandard1.0/de/System.Runtime.xml",
  4839. "ref/netstandard1.0/es/System.Runtime.xml",
  4840. "ref/netstandard1.0/fr/System.Runtime.xml",
  4841. "ref/netstandard1.0/it/System.Runtime.xml",
  4842. "ref/netstandard1.0/ja/System.Runtime.xml",
  4843. "ref/netstandard1.0/ko/System.Runtime.xml",
  4844. "ref/netstandard1.0/ru/System.Runtime.xml",
  4845. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  4846. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  4847. "ref/netstandard1.2/System.Runtime.dll",
  4848. "ref/netstandard1.2/System.Runtime.xml",
  4849. "ref/netstandard1.2/de/System.Runtime.xml",
  4850. "ref/netstandard1.2/es/System.Runtime.xml",
  4851. "ref/netstandard1.2/fr/System.Runtime.xml",
  4852. "ref/netstandard1.2/it/System.Runtime.xml",
  4853. "ref/netstandard1.2/ja/System.Runtime.xml",
  4854. "ref/netstandard1.2/ko/System.Runtime.xml",
  4855. "ref/netstandard1.2/ru/System.Runtime.xml",
  4856. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  4857. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  4858. "ref/netstandard1.3/System.Runtime.dll",
  4859. "ref/netstandard1.3/System.Runtime.xml",
  4860. "ref/netstandard1.3/de/System.Runtime.xml",
  4861. "ref/netstandard1.3/es/System.Runtime.xml",
  4862. "ref/netstandard1.3/fr/System.Runtime.xml",
  4863. "ref/netstandard1.3/it/System.Runtime.xml",
  4864. "ref/netstandard1.3/ja/System.Runtime.xml",
  4865. "ref/netstandard1.3/ko/System.Runtime.xml",
  4866. "ref/netstandard1.3/ru/System.Runtime.xml",
  4867. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  4868. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  4869. "ref/netstandard1.5/System.Runtime.dll",
  4870. "ref/netstandard1.5/System.Runtime.xml",
  4871. "ref/netstandard1.5/de/System.Runtime.xml",
  4872. "ref/netstandard1.5/es/System.Runtime.xml",
  4873. "ref/netstandard1.5/fr/System.Runtime.xml",
  4874. "ref/netstandard1.5/it/System.Runtime.xml",
  4875. "ref/netstandard1.5/ja/System.Runtime.xml",
  4876. "ref/netstandard1.5/ko/System.Runtime.xml",
  4877. "ref/netstandard1.5/ru/System.Runtime.xml",
  4878. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  4879. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  4880. "ref/portable-net45+win8+wp80+wpa81/_._",
  4881. "ref/win8/_._",
  4882. "ref/wp80/_._",
  4883. "ref/wpa81/_._",
  4884. "ref/xamarinios10/_._",
  4885. "ref/xamarinmac20/_._",
  4886. "ref/xamarintvos10/_._",
  4887. "ref/xamarinwatchos10/_._",
  4888. "system.runtime.4.1.0.nupkg.sha512",
  4889. "system.runtime.nuspec"
  4890. ]
  4891. },
  4892. "System.Runtime.Extensions/4.1.0": {
  4893. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  4894. "type": "package",
  4895. "path": "system.runtime.extensions/4.1.0",
  4896. "files": [
  4897. ".nupkg.metadata",
  4898. ".signature.p7s",
  4899. "ThirdPartyNotices.txt",
  4900. "dotnet_library_license.txt",
  4901. "lib/MonoAndroid10/_._",
  4902. "lib/MonoTouch10/_._",
  4903. "lib/net45/_._",
  4904. "lib/net462/System.Runtime.Extensions.dll",
  4905. "lib/portable-net45+win8+wp8+wpa81/_._",
  4906. "lib/win8/_._",
  4907. "lib/wp80/_._",
  4908. "lib/wpa81/_._",
  4909. "lib/xamarinios10/_._",
  4910. "lib/xamarinmac20/_._",
  4911. "lib/xamarintvos10/_._",
  4912. "lib/xamarinwatchos10/_._",
  4913. "ref/MonoAndroid10/_._",
  4914. "ref/MonoTouch10/_._",
  4915. "ref/net45/_._",
  4916. "ref/net462/System.Runtime.Extensions.dll",
  4917. "ref/netcore50/System.Runtime.Extensions.dll",
  4918. "ref/netcore50/System.Runtime.Extensions.xml",
  4919. "ref/netcore50/de/System.Runtime.Extensions.xml",
  4920. "ref/netcore50/es/System.Runtime.Extensions.xml",
  4921. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  4922. "ref/netcore50/it/System.Runtime.Extensions.xml",
  4923. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  4924. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  4925. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  4926. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  4927. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  4928. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  4929. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  4930. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  4931. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  4932. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  4933. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  4934. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  4935. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  4936. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  4937. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  4938. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  4939. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  4940. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  4941. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  4942. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  4943. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  4944. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  4945. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  4946. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  4947. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  4948. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  4949. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  4950. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  4951. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  4952. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  4953. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  4954. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  4955. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  4956. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  4957. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  4958. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  4959. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  4960. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  4961. "ref/portable-net45+win8+wp8+wpa81/_._",
  4962. "ref/win8/_._",
  4963. "ref/wp80/_._",
  4964. "ref/wpa81/_._",
  4965. "ref/xamarinios10/_._",
  4966. "ref/xamarinmac20/_._",
  4967. "ref/xamarintvos10/_._",
  4968. "ref/xamarinwatchos10/_._",
  4969. "system.runtime.extensions.4.1.0.nupkg.sha512",
  4970. "system.runtime.extensions.nuspec"
  4971. ]
  4972. },
  4973. "System.Runtime.Handles/4.0.1": {
  4974. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  4975. "type": "package",
  4976. "path": "system.runtime.handles/4.0.1",
  4977. "files": [
  4978. ".nupkg.metadata",
  4979. ".signature.p7s",
  4980. "ThirdPartyNotices.txt",
  4981. "dotnet_library_license.txt",
  4982. "lib/MonoAndroid10/_._",
  4983. "lib/MonoTouch10/_._",
  4984. "lib/net46/_._",
  4985. "lib/xamarinios10/_._",
  4986. "lib/xamarinmac20/_._",
  4987. "lib/xamarintvos10/_._",
  4988. "lib/xamarinwatchos10/_._",
  4989. "ref/MonoAndroid10/_._",
  4990. "ref/MonoTouch10/_._",
  4991. "ref/net46/_._",
  4992. "ref/netstandard1.3/System.Runtime.Handles.dll",
  4993. "ref/netstandard1.3/System.Runtime.Handles.xml",
  4994. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  4995. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  4996. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  4997. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  4998. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  4999. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  5000. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  5001. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  5002. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  5003. "ref/xamarinios10/_._",
  5004. "ref/xamarinmac20/_._",
  5005. "ref/xamarintvos10/_._",
  5006. "ref/xamarinwatchos10/_._",
  5007. "system.runtime.handles.4.0.1.nupkg.sha512",
  5008. "system.runtime.handles.nuspec"
  5009. ]
  5010. },
  5011. "System.Runtime.InteropServices/4.1.0": {
  5012. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  5013. "type": "package",
  5014. "path": "system.runtime.interopservices/4.1.0",
  5015. "files": [
  5016. ".nupkg.metadata",
  5017. ".signature.p7s",
  5018. "ThirdPartyNotices.txt",
  5019. "dotnet_library_license.txt",
  5020. "lib/MonoAndroid10/_._",
  5021. "lib/MonoTouch10/_._",
  5022. "lib/net45/_._",
  5023. "lib/net462/System.Runtime.InteropServices.dll",
  5024. "lib/portable-net45+win8+wpa81/_._",
  5025. "lib/win8/_._",
  5026. "lib/wpa81/_._",
  5027. "lib/xamarinios10/_._",
  5028. "lib/xamarinmac20/_._",
  5029. "lib/xamarintvos10/_._",
  5030. "lib/xamarinwatchos10/_._",
  5031. "ref/MonoAndroid10/_._",
  5032. "ref/MonoTouch10/_._",
  5033. "ref/net45/_._",
  5034. "ref/net462/System.Runtime.InteropServices.dll",
  5035. "ref/netcore50/System.Runtime.InteropServices.dll",
  5036. "ref/netcore50/System.Runtime.InteropServices.xml",
  5037. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  5038. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  5039. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  5040. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  5041. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  5042. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  5043. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  5044. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  5045. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  5046. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  5047. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  5048. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  5049. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  5050. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  5051. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  5052. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  5053. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  5054. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  5055. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  5056. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  5057. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  5058. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  5059. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  5060. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  5061. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  5062. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  5063. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  5064. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  5065. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  5066. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  5067. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  5068. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  5069. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  5070. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  5071. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  5072. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  5073. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  5074. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  5075. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  5076. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  5077. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  5078. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  5079. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  5080. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  5081. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  5082. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  5083. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  5084. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  5085. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  5086. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  5087. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  5088. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  5089. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  5090. "ref/portable-net45+win8+wpa81/_._",
  5091. "ref/win8/_._",
  5092. "ref/wpa81/_._",
  5093. "ref/xamarinios10/_._",
  5094. "ref/xamarinmac20/_._",
  5095. "ref/xamarintvos10/_._",
  5096. "ref/xamarinwatchos10/_._",
  5097. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  5098. "system.runtime.interopservices.nuspec"
  5099. ]
  5100. },
  5101. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  5102. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  5103. "type": "package",
  5104. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  5105. "files": [
  5106. ".nupkg.metadata",
  5107. "ThirdPartyNotices.txt",
  5108. "dotnet_library_license.txt",
  5109. "lib/MonoAndroid10/_._",
  5110. "lib/MonoTouch10/_._",
  5111. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5112. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  5113. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  5114. "lib/xamarinios10/_._",
  5115. "lib/xamarinmac20/_._",
  5116. "lib/xamarintvos10/_._",
  5117. "lib/xamarinwatchos10/_._",
  5118. "ref/MonoAndroid10/_._",
  5119. "ref/MonoTouch10/_._",
  5120. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5121. "ref/xamarinios10/_._",
  5122. "ref/xamarinmac20/_._",
  5123. "ref/xamarintvos10/_._",
  5124. "ref/xamarinwatchos10/_._",
  5125. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5126. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5127. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5128. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5129. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5130. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  5131. "system.runtime.interopservices.runtimeinformation.nuspec"
  5132. ]
  5133. },
  5134. "System.Runtime.Loader/4.0.0": {
  5135. "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
  5136. "type": "package",
  5137. "path": "system.runtime.loader/4.0.0",
  5138. "files": [
  5139. ".nupkg.metadata",
  5140. ".signature.p7s",
  5141. "ThirdPartyNotices.txt",
  5142. "dotnet_library_license.txt",
  5143. "lib/net462/_._",
  5144. "lib/netstandard1.5/System.Runtime.Loader.dll",
  5145. "ref/netstandard1.5/System.Runtime.Loader.dll",
  5146. "ref/netstandard1.5/System.Runtime.Loader.xml",
  5147. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  5148. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  5149. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  5150. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  5151. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  5152. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  5153. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  5154. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  5155. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  5156. "system.runtime.loader.4.0.0.nupkg.sha512",
  5157. "system.runtime.loader.nuspec"
  5158. ]
  5159. },
  5160. "System.Runtime.Numerics/4.0.1": {
  5161. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  5162. "type": "package",
  5163. "path": "system.runtime.numerics/4.0.1",
  5164. "files": [
  5165. ".nupkg.metadata",
  5166. ".signature.p7s",
  5167. "ThirdPartyNotices.txt",
  5168. "dotnet_library_license.txt",
  5169. "lib/MonoAndroid10/_._",
  5170. "lib/MonoTouch10/_._",
  5171. "lib/net45/_._",
  5172. "lib/netcore50/System.Runtime.Numerics.dll",
  5173. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  5174. "lib/portable-net45+win8+wpa81/_._",
  5175. "lib/win8/_._",
  5176. "lib/wpa81/_._",
  5177. "lib/xamarinios10/_._",
  5178. "lib/xamarinmac20/_._",
  5179. "lib/xamarintvos10/_._",
  5180. "lib/xamarinwatchos10/_._",
  5181. "ref/MonoAndroid10/_._",
  5182. "ref/MonoTouch10/_._",
  5183. "ref/net45/_._",
  5184. "ref/netcore50/System.Runtime.Numerics.dll",
  5185. "ref/netcore50/System.Runtime.Numerics.xml",
  5186. "ref/netcore50/de/System.Runtime.Numerics.xml",
  5187. "ref/netcore50/es/System.Runtime.Numerics.xml",
  5188. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  5189. "ref/netcore50/it/System.Runtime.Numerics.xml",
  5190. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  5191. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  5192. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  5193. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  5194. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  5195. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  5196. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  5197. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  5198. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  5199. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  5200. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  5201. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  5202. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  5203. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  5204. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  5205. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  5206. "ref/portable-net45+win8+wpa81/_._",
  5207. "ref/win8/_._",
  5208. "ref/wpa81/_._",
  5209. "ref/xamarinios10/_._",
  5210. "ref/xamarinmac20/_._",
  5211. "ref/xamarintvos10/_._",
  5212. "ref/xamarinwatchos10/_._",
  5213. "system.runtime.numerics.4.0.1.nupkg.sha512",
  5214. "system.runtime.numerics.nuspec"
  5215. ]
  5216. },
  5217. "System.Runtime.Serialization.Json/4.0.2": {
  5218. "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
  5219. "type": "package",
  5220. "path": "system.runtime.serialization.json/4.0.2",
  5221. "files": [
  5222. ".nupkg.metadata",
  5223. ".signature.p7s",
  5224. "ThirdPartyNotices.txt",
  5225. "dotnet_library_license.txt",
  5226. "lib/MonoAndroid10/_._",
  5227. "lib/MonoTouch10/_._",
  5228. "lib/net45/_._",
  5229. "lib/netcore50/System.Runtime.Serialization.Json.dll",
  5230. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll",
  5231. "lib/portable-net45+win8+wp8+wpa81/_._",
  5232. "lib/win8/_._",
  5233. "lib/wp80/_._",
  5234. "lib/wpa81/_._",
  5235. "lib/xamarinios10/_._",
  5236. "lib/xamarinmac20/_._",
  5237. "lib/xamarintvos10/_._",
  5238. "lib/xamarinwatchos10/_._",
  5239. "ref/MonoAndroid10/_._",
  5240. "ref/MonoTouch10/_._",
  5241. "ref/net45/_._",
  5242. "ref/netcore50/System.Runtime.Serialization.Json.dll",
  5243. "ref/netcore50/System.Runtime.Serialization.Json.xml",
  5244. "ref/netcore50/de/System.Runtime.Serialization.Json.xml",
  5245. "ref/netcore50/es/System.Runtime.Serialization.Json.xml",
  5246. "ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
  5247. "ref/netcore50/it/System.Runtime.Serialization.Json.xml",
  5248. "ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
  5249. "ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
  5250. "ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
  5251. "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
  5252. "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
  5253. "ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
  5254. "ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
  5255. "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
  5256. "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
  5257. "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
  5258. "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
  5259. "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
  5260. "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
  5261. "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
  5262. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
  5263. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
  5264. "ref/portable-net45+win8+wp8+wpa81/_._",
  5265. "ref/win8/_._",
  5266. "ref/wp80/_._",
  5267. "ref/wpa81/_._",
  5268. "ref/xamarinios10/_._",
  5269. "ref/xamarinmac20/_._",
  5270. "ref/xamarintvos10/_._",
  5271. "ref/xamarinwatchos10/_._",
  5272. "system.runtime.serialization.json.4.0.2.nupkg.sha512",
  5273. "system.runtime.serialization.json.nuspec"
  5274. ]
  5275. },
  5276. "System.Runtime.Serialization.Primitives/4.1.1": {
  5277. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  5278. "type": "package",
  5279. "path": "system.runtime.serialization.primitives/4.1.1",
  5280. "files": [
  5281. ".nupkg.metadata",
  5282. ".signature.p7s",
  5283. "ThirdPartyNotices.txt",
  5284. "dotnet_library_license.txt",
  5285. "lib/MonoAndroid10/_._",
  5286. "lib/MonoTouch10/_._",
  5287. "lib/net45/_._",
  5288. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  5289. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5290. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5291. "lib/portable-net45+win8+wp8+wpa81/_._",
  5292. "lib/win8/_._",
  5293. "lib/wp80/_._",
  5294. "lib/wpa81/_._",
  5295. "lib/xamarinios10/_._",
  5296. "lib/xamarinmac20/_._",
  5297. "lib/xamarintvos10/_._",
  5298. "lib/xamarinwatchos10/_._",
  5299. "ref/MonoAndroid10/_._",
  5300. "ref/MonoTouch10/_._",
  5301. "ref/net45/_._",
  5302. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  5303. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  5304. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  5305. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  5306. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  5307. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  5308. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  5309. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  5310. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  5311. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  5312. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5313. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5314. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  5315. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  5316. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  5317. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  5318. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  5319. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  5320. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  5321. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  5322. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  5323. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5324. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5325. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5326. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  5327. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  5328. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  5329. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  5330. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  5331. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  5332. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  5333. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  5334. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5335. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5336. "ref/portable-net45+win8+wp8+wpa81/_._",
  5337. "ref/win8/_._",
  5338. "ref/wp80/_._",
  5339. "ref/wpa81/_._",
  5340. "ref/xamarinios10/_._",
  5341. "ref/xamarinmac20/_._",
  5342. "ref/xamarintvos10/_._",
  5343. "ref/xamarinwatchos10/_._",
  5344. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5345. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  5346. "system.runtime.serialization.primitives.nuspec"
  5347. ]
  5348. },
  5349. "System.Security.Cryptography.Algorithms/4.2.0": {
  5350. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  5351. "type": "package",
  5352. "path": "system.security.cryptography.algorithms/4.2.0",
  5353. "files": [
  5354. ".nupkg.metadata",
  5355. ".signature.p7s",
  5356. "ThirdPartyNotices.txt",
  5357. "dotnet_library_license.txt",
  5358. "lib/MonoAndroid10/_._",
  5359. "lib/MonoTouch10/_._",
  5360. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  5361. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  5362. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  5363. "lib/xamarinios10/_._",
  5364. "lib/xamarinmac20/_._",
  5365. "lib/xamarintvos10/_._",
  5366. "lib/xamarinwatchos10/_._",
  5367. "ref/MonoAndroid10/_._",
  5368. "ref/MonoTouch10/_._",
  5369. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  5370. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  5371. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  5372. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  5373. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  5374. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5375. "ref/xamarinios10/_._",
  5376. "ref/xamarinmac20/_._",
  5377. "ref/xamarintvos10/_._",
  5378. "ref/xamarinwatchos10/_._",
  5379. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5380. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  5381. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  5382. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  5383. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  5384. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5385. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  5386. "system.security.cryptography.algorithms.nuspec"
  5387. ]
  5388. },
  5389. "System.Security.Cryptography.Cng/4.2.0": {
  5390. "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
  5391. "type": "package",
  5392. "path": "system.security.cryptography.cng/4.2.0",
  5393. "files": [
  5394. ".nupkg.metadata",
  5395. ".signature.p7s",
  5396. "ThirdPartyNotices.txt",
  5397. "dotnet_library_license.txt",
  5398. "lib/net46/System.Security.Cryptography.Cng.dll",
  5399. "lib/net461/System.Security.Cryptography.Cng.dll",
  5400. "lib/net463/System.Security.Cryptography.Cng.dll",
  5401. "ref/net46/System.Security.Cryptography.Cng.dll",
  5402. "ref/net461/System.Security.Cryptography.Cng.dll",
  5403. "ref/net463/System.Security.Cryptography.Cng.dll",
  5404. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5405. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5406. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5407. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5408. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5409. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5410. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  5411. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5412. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5413. "system.security.cryptography.cng.4.2.0.nupkg.sha512",
  5414. "system.security.cryptography.cng.nuspec"
  5415. ]
  5416. },
  5417. "System.Security.Cryptography.Csp/4.0.0": {
  5418. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  5419. "type": "package",
  5420. "path": "system.security.cryptography.csp/4.0.0",
  5421. "files": [
  5422. ".nupkg.metadata",
  5423. "ThirdPartyNotices.txt",
  5424. "dotnet_library_license.txt",
  5425. "lib/MonoAndroid10/_._",
  5426. "lib/MonoTouch10/_._",
  5427. "lib/net46/System.Security.Cryptography.Csp.dll",
  5428. "lib/xamarinios10/_._",
  5429. "lib/xamarinmac20/_._",
  5430. "lib/xamarintvos10/_._",
  5431. "lib/xamarinwatchos10/_._",
  5432. "ref/MonoAndroid10/_._",
  5433. "ref/MonoTouch10/_._",
  5434. "ref/net46/System.Security.Cryptography.Csp.dll",
  5435. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5436. "ref/xamarinios10/_._",
  5437. "ref/xamarinmac20/_._",
  5438. "ref/xamarintvos10/_._",
  5439. "ref/xamarinwatchos10/_._",
  5440. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5441. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  5442. "runtimes/win/lib/netcore50/_._",
  5443. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5444. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  5445. "system.security.cryptography.csp.nuspec"
  5446. ]
  5447. },
  5448. "System.Security.Cryptography.Encoding/4.0.0": {
  5449. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  5450. "type": "package",
  5451. "path": "system.security.cryptography.encoding/4.0.0",
  5452. "files": [
  5453. ".nupkg.metadata",
  5454. ".signature.p7s",
  5455. "ThirdPartyNotices.txt",
  5456. "dotnet_library_license.txt",
  5457. "lib/MonoAndroid10/_._",
  5458. "lib/MonoTouch10/_._",
  5459. "lib/net46/System.Security.Cryptography.Encoding.dll",
  5460. "lib/xamarinios10/_._",
  5461. "lib/xamarinmac20/_._",
  5462. "lib/xamarintvos10/_._",
  5463. "lib/xamarinwatchos10/_._",
  5464. "ref/MonoAndroid10/_._",
  5465. "ref/MonoTouch10/_._",
  5466. "ref/net46/System.Security.Cryptography.Encoding.dll",
  5467. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5468. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  5469. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  5470. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  5471. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  5472. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  5473. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  5474. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  5475. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  5476. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  5477. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  5478. "ref/xamarinios10/_._",
  5479. "ref/xamarinmac20/_._",
  5480. "ref/xamarintvos10/_._",
  5481. "ref/xamarinwatchos10/_._",
  5482. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5483. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  5484. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5485. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  5486. "system.security.cryptography.encoding.nuspec"
  5487. ]
  5488. },
  5489. "System.Security.Cryptography.OpenSsl/4.0.0": {
  5490. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  5491. "type": "package",
  5492. "path": "system.security.cryptography.openssl/4.0.0",
  5493. "files": [
  5494. ".nupkg.metadata",
  5495. "ThirdPartyNotices.txt",
  5496. "dotnet_library_license.txt",
  5497. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5498. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5499. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5500. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  5501. "system.security.cryptography.openssl.nuspec"
  5502. ]
  5503. },
  5504. "System.Security.Cryptography.Primitives/4.0.0": {
  5505. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  5506. "type": "package",
  5507. "path": "system.security.cryptography.primitives/4.0.0",
  5508. "files": [
  5509. ".nupkg.metadata",
  5510. ".signature.p7s",
  5511. "ThirdPartyNotices.txt",
  5512. "dotnet_library_license.txt",
  5513. "lib/MonoAndroid10/_._",
  5514. "lib/MonoTouch10/_._",
  5515. "lib/net46/System.Security.Cryptography.Primitives.dll",
  5516. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5517. "lib/xamarinios10/_._",
  5518. "lib/xamarinmac20/_._",
  5519. "lib/xamarintvos10/_._",
  5520. "lib/xamarinwatchos10/_._",
  5521. "ref/MonoAndroid10/_._",
  5522. "ref/MonoTouch10/_._",
  5523. "ref/net46/System.Security.Cryptography.Primitives.dll",
  5524. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5525. "ref/xamarinios10/_._",
  5526. "ref/xamarinmac20/_._",
  5527. "ref/xamarintvos10/_._",
  5528. "ref/xamarinwatchos10/_._",
  5529. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  5530. "system.security.cryptography.primitives.nuspec"
  5531. ]
  5532. },
  5533. "System.Security.Cryptography.X509Certificates/4.1.0": {
  5534. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  5535. "type": "package",
  5536. "path": "system.security.cryptography.x509certificates/4.1.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/MonoAndroid10/_._",
  5543. "lib/MonoTouch10/_._",
  5544. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5545. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5546. "lib/xamarinios10/_._",
  5547. "lib/xamarinmac20/_._",
  5548. "lib/xamarintvos10/_._",
  5549. "lib/xamarinwatchos10/_._",
  5550. "ref/MonoAndroid10/_._",
  5551. "ref/MonoTouch10/_._",
  5552. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  5553. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  5554. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  5555. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  5556. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  5557. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  5558. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  5559. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  5560. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  5561. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  5562. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  5563. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5564. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5565. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  5566. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  5567. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  5568. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  5569. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  5570. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  5571. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  5572. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  5573. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  5574. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5575. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5576. "ref/xamarinios10/_._",
  5577. "ref/xamarinmac20/_._",
  5578. "ref/xamarintvos10/_._",
  5579. "ref/xamarinwatchos10/_._",
  5580. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5581. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5582. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5583. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  5584. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5585. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  5586. "system.security.cryptography.x509certificates.nuspec"
  5587. ]
  5588. },
  5589. "System.Text.Encoding/4.0.11": {
  5590. "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
  5591. "type": "package",
  5592. "path": "system.text.encoding/4.0.11",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. ".signature.p7s",
  5596. "ThirdPartyNotices.txt",
  5597. "dotnet_library_license.txt",
  5598. "lib/MonoAndroid10/_._",
  5599. "lib/MonoTouch10/_._",
  5600. "lib/net45/_._",
  5601. "lib/portable-net45+win8+wp8+wpa81/_._",
  5602. "lib/win8/_._",
  5603. "lib/wp80/_._",
  5604. "lib/wpa81/_._",
  5605. "lib/xamarinios10/_._",
  5606. "lib/xamarinmac20/_._",
  5607. "lib/xamarintvos10/_._",
  5608. "lib/xamarinwatchos10/_._",
  5609. "ref/MonoAndroid10/_._",
  5610. "ref/MonoTouch10/_._",
  5611. "ref/net45/_._",
  5612. "ref/netcore50/System.Text.Encoding.dll",
  5613. "ref/netcore50/System.Text.Encoding.xml",
  5614. "ref/netcore50/de/System.Text.Encoding.xml",
  5615. "ref/netcore50/es/System.Text.Encoding.xml",
  5616. "ref/netcore50/fr/System.Text.Encoding.xml",
  5617. "ref/netcore50/it/System.Text.Encoding.xml",
  5618. "ref/netcore50/ja/System.Text.Encoding.xml",
  5619. "ref/netcore50/ko/System.Text.Encoding.xml",
  5620. "ref/netcore50/ru/System.Text.Encoding.xml",
  5621. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  5622. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  5623. "ref/netstandard1.0/System.Text.Encoding.dll",
  5624. "ref/netstandard1.0/System.Text.Encoding.xml",
  5625. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  5626. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  5627. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  5628. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  5629. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  5630. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  5631. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  5632. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  5633. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  5634. "ref/netstandard1.3/System.Text.Encoding.dll",
  5635. "ref/netstandard1.3/System.Text.Encoding.xml",
  5636. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  5637. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  5638. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  5639. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  5640. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  5641. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  5642. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  5643. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  5644. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  5645. "ref/portable-net45+win8+wp8+wpa81/_._",
  5646. "ref/win8/_._",
  5647. "ref/wp80/_._",
  5648. "ref/wpa81/_._",
  5649. "ref/xamarinios10/_._",
  5650. "ref/xamarinmac20/_._",
  5651. "ref/xamarintvos10/_._",
  5652. "ref/xamarinwatchos10/_._",
  5653. "system.text.encoding.4.0.11.nupkg.sha512",
  5654. "system.text.encoding.nuspec"
  5655. ]
  5656. },
  5657. "System.Text.Encoding.Extensions/4.0.11": {
  5658. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  5659. "type": "package",
  5660. "path": "system.text.encoding.extensions/4.0.11",
  5661. "files": [
  5662. ".nupkg.metadata",
  5663. ".signature.p7s",
  5664. "ThirdPartyNotices.txt",
  5665. "dotnet_library_license.txt",
  5666. "lib/MonoAndroid10/_._",
  5667. "lib/MonoTouch10/_._",
  5668. "lib/net45/_._",
  5669. "lib/portable-net45+win8+wp8+wpa81/_._",
  5670. "lib/win8/_._",
  5671. "lib/wp80/_._",
  5672. "lib/wpa81/_._",
  5673. "lib/xamarinios10/_._",
  5674. "lib/xamarinmac20/_._",
  5675. "lib/xamarintvos10/_._",
  5676. "lib/xamarinwatchos10/_._",
  5677. "ref/MonoAndroid10/_._",
  5678. "ref/MonoTouch10/_._",
  5679. "ref/net45/_._",
  5680. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  5681. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  5682. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  5683. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  5684. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  5685. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  5686. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  5687. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  5688. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  5689. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  5690. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  5691. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  5692. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  5693. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  5694. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  5695. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  5696. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  5697. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  5698. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  5699. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  5700. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  5701. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  5702. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  5703. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  5704. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  5705. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  5706. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  5707. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  5708. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  5709. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  5710. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  5711. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  5712. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  5713. "ref/portable-net45+win8+wp8+wpa81/_._",
  5714. "ref/win8/_._",
  5715. "ref/wp80/_._",
  5716. "ref/wpa81/_._",
  5717. "ref/xamarinios10/_._",
  5718. "ref/xamarinmac20/_._",
  5719. "ref/xamarintvos10/_._",
  5720. "ref/xamarinwatchos10/_._",
  5721. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  5722. "system.text.encoding.extensions.nuspec"
  5723. ]
  5724. },
  5725. "System.Text.RegularExpressions/4.1.0": {
  5726. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  5727. "type": "package",
  5728. "path": "system.text.regularexpressions/4.1.0",
  5729. "files": [
  5730. ".nupkg.metadata",
  5731. ".signature.p7s",
  5732. "ThirdPartyNotices.txt",
  5733. "dotnet_library_license.txt",
  5734. "lib/MonoAndroid10/_._",
  5735. "lib/MonoTouch10/_._",
  5736. "lib/net45/_._",
  5737. "lib/net463/System.Text.RegularExpressions.dll",
  5738. "lib/netcore50/System.Text.RegularExpressions.dll",
  5739. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  5740. "lib/portable-net45+win8+wp8+wpa81/_._",
  5741. "lib/win8/_._",
  5742. "lib/wp80/_._",
  5743. "lib/wpa81/_._",
  5744. "lib/xamarinios10/_._",
  5745. "lib/xamarinmac20/_._",
  5746. "lib/xamarintvos10/_._",
  5747. "lib/xamarinwatchos10/_._",
  5748. "ref/MonoAndroid10/_._",
  5749. "ref/MonoTouch10/_._",
  5750. "ref/net45/_._",
  5751. "ref/net463/System.Text.RegularExpressions.dll",
  5752. "ref/netcore50/System.Text.RegularExpressions.dll",
  5753. "ref/netcore50/System.Text.RegularExpressions.xml",
  5754. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  5755. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  5756. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  5757. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  5758. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  5759. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  5760. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  5761. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  5762. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  5763. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  5764. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  5765. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  5766. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  5767. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  5768. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  5769. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  5770. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  5771. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  5772. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  5773. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  5774. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  5775. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  5776. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  5777. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  5778. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  5779. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  5780. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  5781. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  5782. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  5783. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  5784. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  5785. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  5786. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  5787. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  5788. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  5789. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  5790. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  5791. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  5792. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  5793. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  5794. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  5795. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  5796. "ref/portable-net45+win8+wp8+wpa81/_._",
  5797. "ref/win8/_._",
  5798. "ref/wp80/_._",
  5799. "ref/wpa81/_._",
  5800. "ref/xamarinios10/_._",
  5801. "ref/xamarinmac20/_._",
  5802. "ref/xamarintvos10/_._",
  5803. "ref/xamarinwatchos10/_._",
  5804. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  5805. "system.text.regularexpressions.nuspec"
  5806. ]
  5807. },
  5808. "System.Threading/4.0.11": {
  5809. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  5810. "type": "package",
  5811. "path": "system.threading/4.0.11",
  5812. "files": [
  5813. ".nupkg.metadata",
  5814. ".signature.p7s",
  5815. "ThirdPartyNotices.txt",
  5816. "dotnet_library_license.txt",
  5817. "lib/MonoAndroid10/_._",
  5818. "lib/MonoTouch10/_._",
  5819. "lib/net45/_._",
  5820. "lib/netcore50/System.Threading.dll",
  5821. "lib/netstandard1.3/System.Threading.dll",
  5822. "lib/portable-net45+win8+wp8+wpa81/_._",
  5823. "lib/win8/_._",
  5824. "lib/wp80/_._",
  5825. "lib/wpa81/_._",
  5826. "lib/xamarinios10/_._",
  5827. "lib/xamarinmac20/_._",
  5828. "lib/xamarintvos10/_._",
  5829. "lib/xamarinwatchos10/_._",
  5830. "ref/MonoAndroid10/_._",
  5831. "ref/MonoTouch10/_._",
  5832. "ref/net45/_._",
  5833. "ref/netcore50/System.Threading.dll",
  5834. "ref/netcore50/System.Threading.xml",
  5835. "ref/netcore50/de/System.Threading.xml",
  5836. "ref/netcore50/es/System.Threading.xml",
  5837. "ref/netcore50/fr/System.Threading.xml",
  5838. "ref/netcore50/it/System.Threading.xml",
  5839. "ref/netcore50/ja/System.Threading.xml",
  5840. "ref/netcore50/ko/System.Threading.xml",
  5841. "ref/netcore50/ru/System.Threading.xml",
  5842. "ref/netcore50/zh-hans/System.Threading.xml",
  5843. "ref/netcore50/zh-hant/System.Threading.xml",
  5844. "ref/netstandard1.0/System.Threading.dll",
  5845. "ref/netstandard1.0/System.Threading.xml",
  5846. "ref/netstandard1.0/de/System.Threading.xml",
  5847. "ref/netstandard1.0/es/System.Threading.xml",
  5848. "ref/netstandard1.0/fr/System.Threading.xml",
  5849. "ref/netstandard1.0/it/System.Threading.xml",
  5850. "ref/netstandard1.0/ja/System.Threading.xml",
  5851. "ref/netstandard1.0/ko/System.Threading.xml",
  5852. "ref/netstandard1.0/ru/System.Threading.xml",
  5853. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  5854. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  5855. "ref/netstandard1.3/System.Threading.dll",
  5856. "ref/netstandard1.3/System.Threading.xml",
  5857. "ref/netstandard1.3/de/System.Threading.xml",
  5858. "ref/netstandard1.3/es/System.Threading.xml",
  5859. "ref/netstandard1.3/fr/System.Threading.xml",
  5860. "ref/netstandard1.3/it/System.Threading.xml",
  5861. "ref/netstandard1.3/ja/System.Threading.xml",
  5862. "ref/netstandard1.3/ko/System.Threading.xml",
  5863. "ref/netstandard1.3/ru/System.Threading.xml",
  5864. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  5865. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  5866. "ref/portable-net45+win8+wp8+wpa81/_._",
  5867. "ref/win8/_._",
  5868. "ref/wp80/_._",
  5869. "ref/wpa81/_._",
  5870. "ref/xamarinios10/_._",
  5871. "ref/xamarinmac20/_._",
  5872. "ref/xamarintvos10/_._",
  5873. "ref/xamarinwatchos10/_._",
  5874. "runtimes/aot/lib/netcore50/System.Threading.dll",
  5875. "system.threading.4.0.11.nupkg.sha512",
  5876. "system.threading.nuspec"
  5877. ]
  5878. },
  5879. "System.Threading.Tasks/4.0.11": {
  5880. "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
  5881. "type": "package",
  5882. "path": "system.threading.tasks/4.0.11",
  5883. "files": [
  5884. ".nupkg.metadata",
  5885. ".signature.p7s",
  5886. "ThirdPartyNotices.txt",
  5887. "dotnet_library_license.txt",
  5888. "lib/MonoAndroid10/_._",
  5889. "lib/MonoTouch10/_._",
  5890. "lib/net45/_._",
  5891. "lib/portable-net45+win8+wp8+wpa81/_._",
  5892. "lib/win8/_._",
  5893. "lib/wp80/_._",
  5894. "lib/wpa81/_._",
  5895. "lib/xamarinios10/_._",
  5896. "lib/xamarinmac20/_._",
  5897. "lib/xamarintvos10/_._",
  5898. "lib/xamarinwatchos10/_._",
  5899. "ref/MonoAndroid10/_._",
  5900. "ref/MonoTouch10/_._",
  5901. "ref/net45/_._",
  5902. "ref/netcore50/System.Threading.Tasks.dll",
  5903. "ref/netcore50/System.Threading.Tasks.xml",
  5904. "ref/netcore50/de/System.Threading.Tasks.xml",
  5905. "ref/netcore50/es/System.Threading.Tasks.xml",
  5906. "ref/netcore50/fr/System.Threading.Tasks.xml",
  5907. "ref/netcore50/it/System.Threading.Tasks.xml",
  5908. "ref/netcore50/ja/System.Threading.Tasks.xml",
  5909. "ref/netcore50/ko/System.Threading.Tasks.xml",
  5910. "ref/netcore50/ru/System.Threading.Tasks.xml",
  5911. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  5912. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  5913. "ref/netstandard1.0/System.Threading.Tasks.dll",
  5914. "ref/netstandard1.0/System.Threading.Tasks.xml",
  5915. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  5916. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  5917. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  5918. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  5919. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  5920. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  5921. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  5922. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  5923. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  5924. "ref/netstandard1.3/System.Threading.Tasks.dll",
  5925. "ref/netstandard1.3/System.Threading.Tasks.xml",
  5926. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  5927. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  5928. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  5929. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  5930. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  5931. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  5932. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  5933. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  5934. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  5935. "ref/portable-net45+win8+wp8+wpa81/_._",
  5936. "ref/win8/_._",
  5937. "ref/wp80/_._",
  5938. "ref/wpa81/_._",
  5939. "ref/xamarinios10/_._",
  5940. "ref/xamarinmac20/_._",
  5941. "ref/xamarintvos10/_._",
  5942. "ref/xamarinwatchos10/_._",
  5943. "system.threading.tasks.4.0.11.nupkg.sha512",
  5944. "system.threading.tasks.nuspec"
  5945. ]
  5946. },
  5947. "System.Threading.Tasks.Extensions/4.0.0": {
  5948. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  5949. "type": "package",
  5950. "path": "system.threading.tasks.extensions/4.0.0",
  5951. "files": [
  5952. ".nupkg.metadata",
  5953. ".signature.p7s",
  5954. "ThirdPartyNotices.txt",
  5955. "dotnet_library_license.txt",
  5956. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  5957. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  5958. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  5959. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  5960. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  5961. "system.threading.tasks.extensions.nuspec"
  5962. ]
  5963. },
  5964. "System.Threading.Thread/4.0.0": {
  5965. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  5966. "type": "package",
  5967. "path": "system.threading.thread/4.0.0",
  5968. "files": [
  5969. ".nupkg.metadata",
  5970. ".signature.p7s",
  5971. "ThirdPartyNotices.txt",
  5972. "dotnet_library_license.txt",
  5973. "lib/MonoAndroid10/_._",
  5974. "lib/MonoTouch10/_._",
  5975. "lib/net46/System.Threading.Thread.dll",
  5976. "lib/netcore50/_._",
  5977. "lib/netstandard1.3/System.Threading.Thread.dll",
  5978. "lib/xamarinios10/_._",
  5979. "lib/xamarinmac20/_._",
  5980. "lib/xamarintvos10/_._",
  5981. "lib/xamarinwatchos10/_._",
  5982. "ref/MonoAndroid10/_._",
  5983. "ref/MonoTouch10/_._",
  5984. "ref/net46/System.Threading.Thread.dll",
  5985. "ref/netstandard1.3/System.Threading.Thread.dll",
  5986. "ref/netstandard1.3/System.Threading.Thread.xml",
  5987. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  5988. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  5989. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  5990. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  5991. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  5992. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  5993. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  5994. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  5995. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  5996. "ref/xamarinios10/_._",
  5997. "ref/xamarinmac20/_._",
  5998. "ref/xamarintvos10/_._",
  5999. "ref/xamarinwatchos10/_._",
  6000. "system.threading.thread.4.0.0.nupkg.sha512",
  6001. "system.threading.thread.nuspec"
  6002. ]
  6003. },
  6004. "System.Threading.ThreadPool/4.0.10": {
  6005. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  6006. "type": "package",
  6007. "path": "system.threading.threadpool/4.0.10",
  6008. "files": [
  6009. ".nupkg.metadata",
  6010. ".signature.p7s",
  6011. "ThirdPartyNotices.txt",
  6012. "dotnet_library_license.txt",
  6013. "lib/MonoAndroid10/_._",
  6014. "lib/MonoTouch10/_._",
  6015. "lib/net46/System.Threading.ThreadPool.dll",
  6016. "lib/netcore50/_._",
  6017. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  6018. "lib/xamarinios10/_._",
  6019. "lib/xamarinmac20/_._",
  6020. "lib/xamarintvos10/_._",
  6021. "lib/xamarinwatchos10/_._",
  6022. "ref/MonoAndroid10/_._",
  6023. "ref/MonoTouch10/_._",
  6024. "ref/net46/System.Threading.ThreadPool.dll",
  6025. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  6026. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  6027. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  6028. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  6029. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  6030. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  6031. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  6032. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  6033. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  6034. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  6035. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  6036. "ref/xamarinios10/_._",
  6037. "ref/xamarinmac20/_._",
  6038. "ref/xamarintvos10/_._",
  6039. "ref/xamarinwatchos10/_._",
  6040. "system.threading.threadpool.4.0.10.nupkg.sha512",
  6041. "system.threading.threadpool.nuspec"
  6042. ]
  6043. },
  6044. "System.Threading.Timer/4.0.1": {
  6045. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  6046. "type": "package",
  6047. "path": "system.threading.timer/4.0.1",
  6048. "files": [
  6049. ".nupkg.metadata",
  6050. ".signature.p7s",
  6051. "ThirdPartyNotices.txt",
  6052. "dotnet_library_license.txt",
  6053. "lib/MonoAndroid10/_._",
  6054. "lib/MonoTouch10/_._",
  6055. "lib/net451/_._",
  6056. "lib/portable-net451+win81+wpa81/_._",
  6057. "lib/win81/_._",
  6058. "lib/wpa81/_._",
  6059. "lib/xamarinios10/_._",
  6060. "lib/xamarinmac20/_._",
  6061. "lib/xamarintvos10/_._",
  6062. "lib/xamarinwatchos10/_._",
  6063. "ref/MonoAndroid10/_._",
  6064. "ref/MonoTouch10/_._",
  6065. "ref/net451/_._",
  6066. "ref/netcore50/System.Threading.Timer.dll",
  6067. "ref/netcore50/System.Threading.Timer.xml",
  6068. "ref/netcore50/de/System.Threading.Timer.xml",
  6069. "ref/netcore50/es/System.Threading.Timer.xml",
  6070. "ref/netcore50/fr/System.Threading.Timer.xml",
  6071. "ref/netcore50/it/System.Threading.Timer.xml",
  6072. "ref/netcore50/ja/System.Threading.Timer.xml",
  6073. "ref/netcore50/ko/System.Threading.Timer.xml",
  6074. "ref/netcore50/ru/System.Threading.Timer.xml",
  6075. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  6076. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  6077. "ref/netstandard1.2/System.Threading.Timer.dll",
  6078. "ref/netstandard1.2/System.Threading.Timer.xml",
  6079. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  6080. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  6081. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  6082. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  6083. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  6084. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  6085. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  6086. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  6087. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  6088. "ref/portable-net451+win81+wpa81/_._",
  6089. "ref/win81/_._",
  6090. "ref/wpa81/_._",
  6091. "ref/xamarinios10/_._",
  6092. "ref/xamarinmac20/_._",
  6093. "ref/xamarintvos10/_._",
  6094. "ref/xamarinwatchos10/_._",
  6095. "system.threading.timer.4.0.1.nupkg.sha512",
  6096. "system.threading.timer.nuspec"
  6097. ]
  6098. },
  6099. "System.Xml.ReaderWriter/4.0.11": {
  6100. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  6101. "type": "package",
  6102. "path": "system.xml.readerwriter/4.0.11",
  6103. "files": [
  6104. ".nupkg.metadata",
  6105. ".signature.p7s",
  6106. "ThirdPartyNotices.txt",
  6107. "dotnet_library_license.txt",
  6108. "lib/MonoAndroid10/_._",
  6109. "lib/MonoTouch10/_._",
  6110. "lib/net45/_._",
  6111. "lib/netcore50/System.Xml.ReaderWriter.dll",
  6112. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  6113. "lib/portable-net45+win8+wp8+wpa81/_._",
  6114. "lib/win8/_._",
  6115. "lib/wp80/_._",
  6116. "lib/wpa81/_._",
  6117. "lib/xamarinios10/_._",
  6118. "lib/xamarinmac20/_._",
  6119. "lib/xamarintvos10/_._",
  6120. "lib/xamarinwatchos10/_._",
  6121. "ref/MonoAndroid10/_._",
  6122. "ref/MonoTouch10/_._",
  6123. "ref/net45/_._",
  6124. "ref/netcore50/System.Xml.ReaderWriter.dll",
  6125. "ref/netcore50/System.Xml.ReaderWriter.xml",
  6126. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  6127. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  6128. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  6129. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  6130. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  6131. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  6132. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  6133. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  6134. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  6135. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  6136. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  6137. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  6138. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  6139. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  6140. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  6141. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  6142. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  6143. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  6144. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  6145. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  6146. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  6147. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  6148. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  6149. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  6150. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  6151. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  6152. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  6153. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  6154. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  6155. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  6156. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  6157. "ref/portable-net45+win8+wp8+wpa81/_._",
  6158. "ref/win8/_._",
  6159. "ref/wp80/_._",
  6160. "ref/wpa81/_._",
  6161. "ref/xamarinios10/_._",
  6162. "ref/xamarinmac20/_._",
  6163. "ref/xamarintvos10/_._",
  6164. "ref/xamarinwatchos10/_._",
  6165. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  6166. "system.xml.readerwriter.nuspec"
  6167. ]
  6168. },
  6169. "System.Xml.XDocument/4.0.11": {
  6170. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  6171. "type": "package",
  6172. "path": "system.xml.xdocument/4.0.11",
  6173. "files": [
  6174. ".nupkg.metadata",
  6175. ".signature.p7s",
  6176. "ThirdPartyNotices.txt",
  6177. "dotnet_library_license.txt",
  6178. "lib/MonoAndroid10/_._",
  6179. "lib/MonoTouch10/_._",
  6180. "lib/net45/_._",
  6181. "lib/netcore50/System.Xml.XDocument.dll",
  6182. "lib/netstandard1.3/System.Xml.XDocument.dll",
  6183. "lib/portable-net45+win8+wp8+wpa81/_._",
  6184. "lib/win8/_._",
  6185. "lib/wp80/_._",
  6186. "lib/wpa81/_._",
  6187. "lib/xamarinios10/_._",
  6188. "lib/xamarinmac20/_._",
  6189. "lib/xamarintvos10/_._",
  6190. "lib/xamarinwatchos10/_._",
  6191. "ref/MonoAndroid10/_._",
  6192. "ref/MonoTouch10/_._",
  6193. "ref/net45/_._",
  6194. "ref/netcore50/System.Xml.XDocument.dll",
  6195. "ref/netcore50/System.Xml.XDocument.xml",
  6196. "ref/netcore50/de/System.Xml.XDocument.xml",
  6197. "ref/netcore50/es/System.Xml.XDocument.xml",
  6198. "ref/netcore50/fr/System.Xml.XDocument.xml",
  6199. "ref/netcore50/it/System.Xml.XDocument.xml",
  6200. "ref/netcore50/ja/System.Xml.XDocument.xml",
  6201. "ref/netcore50/ko/System.Xml.XDocument.xml",
  6202. "ref/netcore50/ru/System.Xml.XDocument.xml",
  6203. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  6204. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  6205. "ref/netstandard1.0/System.Xml.XDocument.dll",
  6206. "ref/netstandard1.0/System.Xml.XDocument.xml",
  6207. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  6208. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  6209. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  6210. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  6211. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  6212. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  6213. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  6214. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  6215. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  6216. "ref/netstandard1.3/System.Xml.XDocument.dll",
  6217. "ref/netstandard1.3/System.Xml.XDocument.xml",
  6218. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  6219. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  6220. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  6221. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  6222. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  6223. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  6224. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  6225. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  6226. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  6227. "ref/portable-net45+win8+wp8+wpa81/_._",
  6228. "ref/win8/_._",
  6229. "ref/wp80/_._",
  6230. "ref/wpa81/_._",
  6231. "ref/xamarinios10/_._",
  6232. "ref/xamarinmac20/_._",
  6233. "ref/xamarintvos10/_._",
  6234. "ref/xamarinwatchos10/_._",
  6235. "system.xml.xdocument.4.0.11.nupkg.sha512",
  6236. "system.xml.xdocument.nuspec"
  6237. ]
  6238. },
  6239. "System.Xml.XmlDocument/4.0.1": {
  6240. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  6241. "type": "package",
  6242. "path": "system.xml.xmldocument/4.0.1",
  6243. "files": [
  6244. ".nupkg.metadata",
  6245. ".signature.p7s",
  6246. "ThirdPartyNotices.txt",
  6247. "dotnet_library_license.txt",
  6248. "lib/MonoAndroid10/_._",
  6249. "lib/MonoTouch10/_._",
  6250. "lib/net46/System.Xml.XmlDocument.dll",
  6251. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  6252. "lib/xamarinios10/_._",
  6253. "lib/xamarinmac20/_._",
  6254. "lib/xamarintvos10/_._",
  6255. "lib/xamarinwatchos10/_._",
  6256. "ref/MonoAndroid10/_._",
  6257. "ref/MonoTouch10/_._",
  6258. "ref/net46/System.Xml.XmlDocument.dll",
  6259. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  6260. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  6261. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  6262. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  6263. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  6264. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  6265. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  6266. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  6267. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  6268. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  6269. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  6270. "ref/xamarinios10/_._",
  6271. "ref/xamarinmac20/_._",
  6272. "ref/xamarintvos10/_._",
  6273. "ref/xamarinwatchos10/_._",
  6274. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  6275. "system.xml.xmldocument.nuspec"
  6276. ]
  6277. },
  6278. "System.Xml.XmlSerializer/4.0.11": {
  6279. "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
  6280. "type": "package",
  6281. "path": "system.xml.xmlserializer/4.0.11",
  6282. "files": [
  6283. ".nupkg.metadata",
  6284. ".signature.p7s",
  6285. "ThirdPartyNotices.txt",
  6286. "dotnet_library_license.txt",
  6287. "lib/MonoAndroid10/_._",
  6288. "lib/MonoTouch10/_._",
  6289. "lib/net45/_._",
  6290. "lib/netcore50/System.Xml.XmlSerializer.dll",
  6291. "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
  6292. "lib/portable-net45+win8+wp8+wpa81/_._",
  6293. "lib/win8/_._",
  6294. "lib/wp80/_._",
  6295. "lib/wpa81/_._",
  6296. "lib/xamarinios10/_._",
  6297. "lib/xamarinmac20/_._",
  6298. "lib/xamarintvos10/_._",
  6299. "lib/xamarinwatchos10/_._",
  6300. "ref/MonoAndroid10/_._",
  6301. "ref/MonoTouch10/_._",
  6302. "ref/net45/_._",
  6303. "ref/netcore50/System.Xml.XmlSerializer.dll",
  6304. "ref/netcore50/System.Xml.XmlSerializer.xml",
  6305. "ref/netcore50/de/System.Xml.XmlSerializer.xml",
  6306. "ref/netcore50/es/System.Xml.XmlSerializer.xml",
  6307. "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
  6308. "ref/netcore50/it/System.Xml.XmlSerializer.xml",
  6309. "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
  6310. "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
  6311. "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
  6312. "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
  6313. "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
  6314. "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
  6315. "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
  6316. "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
  6317. "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
  6318. "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
  6319. "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
  6320. "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
  6321. "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
  6322. "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
  6323. "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
  6324. "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
  6325. "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
  6326. "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
  6327. "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
  6328. "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
  6329. "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
  6330. "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
  6331. "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
  6332. "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
  6333. "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
  6334. "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
  6335. "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
  6336. "ref/portable-net45+win8+wp8+wpa81/_._",
  6337. "ref/win8/_._",
  6338. "ref/wp80/_._",
  6339. "ref/wpa81/_._",
  6340. "ref/xamarinios10/_._",
  6341. "ref/xamarinmac20/_._",
  6342. "ref/xamarintvos10/_._",
  6343. "ref/xamarinwatchos10/_._",
  6344. "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
  6345. "system.xml.xmlserializer.4.0.11.nupkg.sha512",
  6346. "system.xml.xmlserializer.nuspec"
  6347. ]
  6348. },
  6349. "System.Xml.XPath/4.0.1": {
  6350. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  6351. "type": "package",
  6352. "path": "system.xml.xpath/4.0.1",
  6353. "files": [
  6354. ".nupkg.metadata",
  6355. ".signature.p7s",
  6356. "ThirdPartyNotices.txt",
  6357. "dotnet_library_license.txt",
  6358. "lib/MonoAndroid10/_._",
  6359. "lib/MonoTouch10/_._",
  6360. "lib/net46/System.Xml.XPath.dll",
  6361. "lib/netstandard1.3/System.Xml.XPath.dll",
  6362. "lib/xamarinios10/_._",
  6363. "lib/xamarinmac20/_._",
  6364. "lib/xamarintvos10/_._",
  6365. "lib/xamarinwatchos10/_._",
  6366. "ref/MonoAndroid10/_._",
  6367. "ref/MonoTouch10/_._",
  6368. "ref/net46/System.Xml.XPath.dll",
  6369. "ref/netstandard1.3/System.Xml.XPath.dll",
  6370. "ref/netstandard1.3/System.Xml.XPath.xml",
  6371. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  6372. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  6373. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  6374. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  6375. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  6376. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  6377. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  6378. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  6379. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  6380. "ref/xamarinios10/_._",
  6381. "ref/xamarinmac20/_._",
  6382. "ref/xamarintvos10/_._",
  6383. "ref/xamarinwatchos10/_._",
  6384. "system.xml.xpath.4.0.1.nupkg.sha512",
  6385. "system.xml.xpath.nuspec"
  6386. ]
  6387. },
  6388. "System.Xml.XPath.XmlDocument/4.0.1": {
  6389. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  6390. "type": "package",
  6391. "path": "system.xml.xpath.xmldocument/4.0.1",
  6392. "files": [
  6393. ".nupkg.metadata",
  6394. ".signature.p7s",
  6395. "ThirdPartyNotices.txt",
  6396. "dotnet_library_license.txt",
  6397. "lib/MonoAndroid10/_._",
  6398. "lib/MonoTouch10/_._",
  6399. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  6400. "lib/xamarinios10/_._",
  6401. "lib/xamarinmac20/_._",
  6402. "lib/xamarintvos10/_._",
  6403. "lib/xamarinwatchos10/_._",
  6404. "ref/MonoAndroid10/_._",
  6405. "ref/MonoTouch10/_._",
  6406. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  6407. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  6408. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  6409. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  6410. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  6411. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  6412. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  6413. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  6414. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  6415. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  6416. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  6417. "ref/xamarinios10/_._",
  6418. "ref/xamarinmac20/_._",
  6419. "ref/xamarintvos10/_._",
  6420. "ref/xamarinwatchos10/_._",
  6421. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  6422. "system.xml.xpath.xmldocument.nuspec"
  6423. ]
  6424. },
  6425. "xunit/2.4.0": {
  6426. "sha512": "NL00nGsDsyWc1CWxz5FXXjLpW9oFG18WJoTPCyhNv4KGP/e5iLJqAqgM1uaJZyQ6WaTtmWIy4yjYP3RdcaT7Vw==",
  6427. "type": "package",
  6428. "path": "xunit/2.4.0",
  6429. "files": [
  6430. ".nupkg.metadata",
  6431. ".signature.p7s",
  6432. "xunit.2.4.0.nupkg.sha512",
  6433. "xunit.nuspec"
  6434. ]
  6435. },
  6436. "xunit.abstractions/2.0.2": {
  6437. "sha512": "vItLB0WkaKg0426RgWq+ZdXH6D+YV/uH28C0weWMOBnVx7I+luHuEYss9hoOngpkiN5kUpLvh9VZRx1H2sk59A==",
  6438. "type": "package",
  6439. "path": "xunit.abstractions/2.0.2",
  6440. "files": [
  6441. ".nupkg.metadata",
  6442. ".signature.p7s",
  6443. "lib/net35/xunit.abstractions.dll",
  6444. "lib/net35/xunit.abstractions.xml",
  6445. "lib/netstandard1.0/xunit.abstractions.dll",
  6446. "lib/netstandard1.0/xunit.abstractions.xml",
  6447. "lib/netstandard2.0/xunit.abstractions.dll",
  6448. "lib/netstandard2.0/xunit.abstractions.xml",
  6449. "xunit.abstractions.2.0.2.nupkg.sha512",
  6450. "xunit.abstractions.nuspec"
  6451. ]
  6452. },
  6453. "xunit.analyzers/0.10.0": {
  6454. "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==",
  6455. "type": "package",
  6456. "path": "xunit.analyzers/0.10.0",
  6457. "hasTools": true,
  6458. "files": [
  6459. ".nupkg.metadata",
  6460. ".signature.p7s",
  6461. "analyzers/dotnet/cs/xunit.analyzers.dll",
  6462. "tools/install.ps1",
  6463. "tools/uninstall.ps1",
  6464. "xunit.analyzers.0.10.0.nupkg.sha512",
  6465. "xunit.analyzers.nuspec"
  6466. ]
  6467. },
  6468. "xunit.assert/2.4.0": {
  6469. "sha512": "Swvkm6iTjZr8TiUj5vMnmfG+2dD4s/BIBgsVOzTxxmoq2ndGsmM2WIL4wuqJ8RhxydWIDOPpIaaytjT2pMTEdg==",
  6470. "type": "package",
  6471. "path": "xunit.assert/2.4.0",
  6472. "files": [
  6473. ".nupkg.metadata",
  6474. ".signature.p7s",
  6475. "lib/netstandard1.1/xunit.assert.dll",
  6476. "lib/netstandard1.1/xunit.assert.xml",
  6477. "lib/netstandard2.0/xunit.assert.dll",
  6478. "lib/netstandard2.0/xunit.assert.xml",
  6479. "xunit.assert.2.4.0.nupkg.sha512",
  6480. "xunit.assert.nuspec"
  6481. ]
  6482. },
  6483. "xunit.core/2.4.0": {
  6484. "sha512": "BJ/O/tPEcHUCwQYuwqXoYccTMyw6B5dA6yh7WxWWBhKbjqTsG9RWL0nCQXM5yQYJwUuFzBkiXDPN1BO6UdBB4Q==",
  6485. "type": "package",
  6486. "path": "xunit.core/2.4.0",
  6487. "files": [
  6488. ".nupkg.metadata",
  6489. ".signature.p7s",
  6490. "build/xunit.core.props",
  6491. "build/xunit.core.targets",
  6492. "buildMultiTargeting/xunit.core.props",
  6493. "buildMultiTargeting/xunit.core.targets",
  6494. "xunit.core.2.4.0.nupkg.sha512",
  6495. "xunit.core.nuspec"
  6496. ]
  6497. },
  6498. "xunit.extensibility.core/2.4.0": {
  6499. "sha512": "qr/KrR6uukHXD9e/lLQjyCPfMEDuvvhNFDzsYzCF2kKlYKiqcADfUvA9Q68rBtKFtwHFeghjWEuv15KoGD2SfA==",
  6500. "type": "package",
  6501. "path": "xunit.extensibility.core/2.4.0",
  6502. "files": [
  6503. ".nupkg.metadata",
  6504. ".signature.p7s",
  6505. "lib/net452/xunit.core.dll",
  6506. "lib/net452/xunit.core.dll.tdnet",
  6507. "lib/net452/xunit.core.xml",
  6508. "lib/net452/xunit.runner.tdnet.dll",
  6509. "lib/net452/xunit.runner.utility.net452.dll",
  6510. "lib/netstandard1.1/xunit.core.dll",
  6511. "lib/netstandard1.1/xunit.core.xml",
  6512. "lib/netstandard2.0/xunit.core.dll",
  6513. "lib/netstandard2.0/xunit.core.xml",
  6514. "xunit.extensibility.core.2.4.0.nupkg.sha512",
  6515. "xunit.extensibility.core.nuspec"
  6516. ]
  6517. },
  6518. "xunit.extensibility.execution/2.4.0": {
  6519. "sha512": "252Dzn7i5bMPKtAL15aOP3qJhxKd+57I8ldwIQRJa745JxQuiBu5Da0vtIISVTtc3buRSkBwVnD9iUzsEmCzZA==",
  6520. "type": "package",
  6521. "path": "xunit.extensibility.execution/2.4.0",
  6522. "files": [
  6523. ".nupkg.metadata",
  6524. ".signature.p7s",
  6525. "lib/net452/xunit.execution.desktop.dll",
  6526. "lib/net452/xunit.execution.desktop.xml",
  6527. "lib/netstandard1.1/xunit.execution.dotnet.dll",
  6528. "lib/netstandard1.1/xunit.execution.dotnet.xml",
  6529. "lib/netstandard2.0/xunit.execution.dotnet.dll",
  6530. "lib/netstandard2.0/xunit.execution.dotnet.xml",
  6531. "xunit.extensibility.execution.2.4.0.nupkg.sha512",
  6532. "xunit.extensibility.execution.nuspec"
  6533. ]
  6534. },
  6535. "xunit.runner.visualstudio/2.4.0": {
  6536. "sha512": "3eq5cGXbEJkqW9nwLuXwtxy9B5gMA8i7HW4rN63AhAvy5UvEcQbZnve23wx/oPrkyg/4CbfNhxkBezS0b1oUdQ==",
  6537. "type": "package",
  6538. "path": "xunit.runner.visualstudio/2.4.0",
  6539. "files": [
  6540. ".nupkg.metadata",
  6541. ".signature.p7s",
  6542. "build/_common/xunit.abstractions.dll",
  6543. "build/_common/xunit.runner.reporters.net452.dll",
  6544. "build/_common/xunit.runner.utility.net452.dll",
  6545. "build/_common/xunit.runner.visualstudio.testadapter.dll",
  6546. "build/net20/xunit.runner.visualstudio.props",
  6547. "build/netcoreapp1.0/xunit.abstractions.dll",
  6548. "build/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll",
  6549. "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll",
  6550. "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml",
  6551. "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.deps.json",
  6552. "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll",
  6553. "build/netcoreapp1.0/xunit.runner.visualstudio.props",
  6554. "build/uap10.0/xunit.runner.reporters.netstandard11.dll",
  6555. "build/uap10.0/xunit.runner.utility.uwp10.dll",
  6556. "build/uap10.0/xunit.runner.utility.uwp10.pri",
  6557. "build/uap10.0/xunit.runner.visualstudio.props",
  6558. "build/uap10.0/xunit.runner.visualstudio.targets",
  6559. "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.dll",
  6560. "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.pri",
  6561. "xunit.runner.visualstudio.2.4.0.nupkg.sha512",
  6562. "xunit.runner.visualstudio.nuspec"
  6563. ]
  6564. }
  6565. },
  6566. "projectFileDependencyGroups": {
  6567. ".NETCoreApp,Version=v3.1": [
  6568. "Microsoft.NET.Test.Sdk >= 16.2.0",
  6569. "coverlet.collector >= 1.0.1",
  6570. "xunit >= 2.4.0",
  6571. "xunit.runner.visualstudio >= 2.4.0"
  6572. ]
  6573. },
  6574. "packageFolders": {
  6575. "C:\\Users\\olimp\\.nuget\\packages\\": {},
  6576. "C:\\Microsoft\\Xamarin\\NuGet\\": {}
  6577. },
  6578. "project": {
  6579. "version": "1.0.0",
  6580. "restore": {
  6581. "projectUniqueName": "C:\\Users\\olimp\\source\\repos\\Devyatok10\\XUnitTestProject1\\XUnitTestProject1.csproj",
  6582. "projectName": "XUnitTestProject1",
  6583. "projectPath": "C:\\Users\\olimp\\source\\repos\\Devyatok10\\XUnitTestProject1\\XUnitTestProject1.csproj",
  6584. "packagesPath": "C:\\Users\\olimp\\.nuget\\packages\\",
  6585. "outputPath": "C:\\Users\\olimp\\source\\repos\\Devyatok10\\XUnitTestProject1\\obj\\",
  6586. "projectStyle": "PackageReference",
  6587. "fallbackFolders": [
  6588. "C:\\Microsoft\\Xamarin\\NuGet\\"
  6589. ],
  6590. "configFilePaths": [
  6591. "C:\\Users\\olimp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  6592. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  6593. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  6594. ],
  6595. "originalTargetFrameworks": [
  6596. "netcoreapp3.1"
  6597. ],
  6598. "sources": {
  6599. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  6600. "https://api.nuget.org/v3/index.json": {}
  6601. },
  6602. "frameworks": {
  6603. "netcoreapp3.1": {
  6604. "projectReferences": {}
  6605. }
  6606. },
  6607. "warningProperties": {
  6608. "warnAsError": [
  6609. "NU1605"
  6610. ]
  6611. }
  6612. },
  6613. "frameworks": {
  6614. "netcoreapp3.1": {
  6615. "dependencies": {
  6616. "Microsoft.NET.Test.Sdk": {
  6617. "target": "Package",
  6618. "version": "[16.2.0, )"
  6619. },
  6620. "coverlet.collector": {
  6621. "target": "Package",
  6622. "version": "[1.0.1, )"
  6623. },
  6624. "xunit": {
  6625. "target": "Package",
  6626. "version": "[2.4.0, )"
  6627. },
  6628. "xunit.runner.visualstudio": {
  6629. "target": "Package",
  6630. "version": "[2.4.0, )"
  6631. }
  6632. },
  6633. "imports": [
  6634. "net461",
  6635. "net462",
  6636. "net47",
  6637. "net471",
  6638. "net472",
  6639. "net48"
  6640. ],
  6641. "assetTargetFallback": true,
  6642. "warn": true,
  6643. "frameworkReferences": {
  6644. "Microsoft.NETCore.App": {
  6645. "privateAssets": "all"
  6646. }
  6647. },
  6648. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
  6649. }
  6650. }
  6651. }
  6652. }