project.assets.json 298 KB

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