project.assets.json 276 KB

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