您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

project.lock.json 438KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313
  1. {
  2. "locked": false,
  3. "version": 2,
  4. "targets": {
  5. ".NETCoreApp,Version=v1.0": {
  6. "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0": {
  7. "type": "package",
  8. "dependencies": {
  9. "Microsoft.CSharp": "4.0.1",
  10. "Microsoft.Extensions.Logging": "1.1.0-alpha1-22144",
  11. "Microsoft.Extensions.Options": "1.1.0-alpha1-22144",
  12. "System.Collections.Concurrent": "4.0.12",
  13. "System.Diagnostics.Tools": "4.0.1",
  14. "System.Dynamic.Runtime": "4.0.11",
  15. "System.Linq.Expressions": "4.1.0",
  16. "System.Reflection.Emit": "4.0.1",
  17. "System.Reflection.Emit.ILGeneration": "4.0.1",
  18. "System.Reflection.Extensions": "4.0.1",
  19. "System.Reflection.Primitives": "4.0.1",
  20. "System.Security.Cryptography.Algorithms": "4.2.0",
  21. "System.Text.Encoding.Extensions": "4.0.11",
  22. "System.Threading.Thread": "4.0.0",
  23. "System.Threading.ThreadPool": "4.0.10",
  24. "System.Threading.Timer": "4.0.1"
  25. },
  26. "compile": {
  27. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  28. },
  29. "runtime": {
  30. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  31. }
  32. },
  33. "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1": {
  34. "type": "package",
  35. "dependencies": {
  36. "Gray.Microsoft.AspNetCore.SignalR.Messaging": "0.2.0",
  37. "Microsoft.AspNetCore.DataProtection": "1.1.0-alpha1-22144",
  38. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-alpha1-22144",
  39. "Microsoft.AspNetCore.Http.Extensions": "1.1.0-alpha1-22144",
  40. "Microsoft.Extensions.DependencyModel": "1.0.1-beta-003206",
  41. "Newtonsoft.Json": "9.0.1",
  42. "System.Runtime.Serialization.Primitives": "4.1.1"
  43. },
  44. "compile": {
  45. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll": {}
  46. },
  47. "runtime": {
  48. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll": {}
  49. }
  50. },
  51. "Libuv/1.9.1": {
  52. "type": "package",
  53. "dependencies": {
  54. "Microsoft.NETCore.Platforms": "1.0.1"
  55. },
  56. "runtimeTargets": {
  57. "runtimes/debian-x64/native/libuv.so": {
  58. "assetType": "native",
  59. "rid": "debian-x64"
  60. },
  61. "runtimes/fedora-x64/native/libuv.so": {
  62. "assetType": "native",
  63. "rid": "fedora-x64"
  64. },
  65. "runtimes/opensuse-x64/native/libuv.so": {
  66. "assetType": "native",
  67. "rid": "opensuse-x64"
  68. },
  69. "runtimes/osx/native/libuv.dylib": {
  70. "assetType": "native",
  71. "rid": "osx"
  72. },
  73. "runtimes/rhel-x64/native/libuv.so": {
  74. "assetType": "native",
  75. "rid": "rhel-x64"
  76. },
  77. "runtimes/win7-arm/native/libuv.dll": {
  78. "assetType": "native",
  79. "rid": "win7-arm"
  80. },
  81. "runtimes/win7-x64/native/libuv.dll": {
  82. "assetType": "native",
  83. "rid": "win7-x64"
  84. },
  85. "runtimes/win7-x86/native/libuv.dll": {
  86. "assetType": "native",
  87. "rid": "win7-x86"
  88. }
  89. }
  90. },
  91. "Microsoft.ApplicationInsights/2.1.0": {
  92. "type": "package",
  93. "dependencies": {
  94. "System.Collections": "4.0.10",
  95. "System.Diagnostics.Debug": "4.0.10",
  96. "System.Diagnostics.Tools": "4.0.0",
  97. "System.Diagnostics.Tracing": "4.0.20",
  98. "System.Globalization": "4.0.10",
  99. "System.IO": "4.0.10",
  100. "System.IO.Compression": "4.0.0",
  101. "System.Linq": "4.0.0",
  102. "System.Net.Http": "4.0.0",
  103. "System.Reflection": "4.0.10",
  104. "System.Reflection.Extensions": "4.0.0",
  105. "System.Runtime": "4.0.20",
  106. "System.Runtime.Extensions": "4.0.10",
  107. "System.Text.Encoding": "4.0.10",
  108. "System.Text.Encoding.Extensions": "4.0.10",
  109. "System.Text.RegularExpressions": "4.0.10",
  110. "System.Threading": "4.0.10",
  111. "System.Threading.Tasks": "4.0.10",
  112. "System.Xml.XDocument": "4.0.10"
  113. },
  114. "compile": {
  115. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  116. },
  117. "runtime": {
  118. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  119. }
  120. },
  121. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  122. "type": "package",
  123. "dependencies": {
  124. "Microsoft.ApplicationInsights": "2.1.0",
  125. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  126. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  127. "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
  128. "Microsoft.Extensions.Configuration": "1.0.0",
  129. "Microsoft.Extensions.DiagnosticAdapter": "1.0.0",
  130. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  131. "System.Net.NameResolution": "4.0.0"
  132. },
  133. "compile": {
  134. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  135. },
  136. "runtime": {
  137. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  138. }
  139. },
  140. "Microsoft.AspNetCore.Antiforgery/1.1.0": {
  141. "type": "package",
  142. "dependencies": {
  143. "Microsoft.AspNetCore.DataProtection": "1.1.0",
  144. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  145. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  146. "Microsoft.AspNetCore.WebUtilities": "1.1.0",
  147. "Microsoft.Extensions.ObjectPool": "1.1.0",
  148. "NETStandard.Library": "1.6.1"
  149. },
  150. "compile": {
  151. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  152. },
  153. "runtime": {
  154. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  155. }
  156. },
  157. "Microsoft.AspNetCore.Authorization/1.1.0": {
  158. "type": "package",
  159. "dependencies": {
  160. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  161. "Microsoft.Extensions.Options": "1.1.0",
  162. "NETStandard.Library": "1.6.1",
  163. "System.Security.Claims": "4.3.0"
  164. },
  165. "compile": {
  166. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  167. },
  168. "runtime": {
  169. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  170. }
  171. },
  172. "Microsoft.AspNetCore.Cors/1.1.0": {
  173. "type": "package",
  174. "dependencies": {
  175. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  176. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  177. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  178. "Microsoft.Extensions.Options": "1.1.0",
  179. "NETStandard.Library": "1.6.1"
  180. },
  181. "compile": {
  182. "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
  183. },
  184. "runtime": {
  185. "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
  186. }
  187. },
  188. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
  189. "type": "package",
  190. "dependencies": {
  191. "NETStandard.Library": "1.6.1"
  192. },
  193. "compile": {
  194. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  195. },
  196. "runtime": {
  197. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  198. }
  199. },
  200. "Microsoft.AspNetCore.DataProtection/1.1.0": {
  201. "type": "package",
  202. "dependencies": {
  203. "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
  204. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
  205. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  206. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  207. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  208. "Microsoft.Extensions.Options": "1.1.0",
  209. "Microsoft.Win32.Registry": "4.3.0",
  210. "NETStandard.Library": "1.6.1",
  211. "System.Security.Claims": "4.3.0",
  212. "System.Security.Principal.Windows": "4.3.0"
  213. },
  214. "compile": {
  215. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  216. },
  217. "runtime": {
  218. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  219. }
  220. },
  221. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
  222. "type": "package",
  223. "dependencies": {
  224. "NETStandard.Library": "1.6.1",
  225. "System.ComponentModel": "4.3.0"
  226. },
  227. "compile": {
  228. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  232. }
  233. },
  234. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
  235. "type": "package",
  236. "dependencies": {
  237. "NETStandard.Library": "1.6.1"
  238. },
  239. "compile": {
  240. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  241. },
  242. "runtime": {
  243. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  244. }
  245. },
  246. "Microsoft.AspNetCore.Hosting/1.1.0": {
  247. "type": "package",
  248. "dependencies": {
  249. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  250. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
  251. "Microsoft.AspNetCore.Http": "1.1.0",
  252. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  253. "Microsoft.Extensions.Configuration": "1.1.0",
  254. "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
  255. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  256. "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
  257. "Microsoft.Extensions.Logging": "1.1.0",
  258. "Microsoft.Extensions.Options": "1.1.0",
  259. "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
  260. "NETStandard.Library": "1.6.1",
  261. "System.Diagnostics.DiagnosticSource": "4.3.0",
  262. "System.Diagnostics.StackTrace": "4.3.0",
  263. "System.Reflection.Metadata": "1.4.1",
  264. "System.Runtime.Loader": "4.3.0"
  265. },
  266. "compile": {
  267. "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
  268. },
  269. "runtime": {
  270. "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
  271. }
  272. },
  273. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  274. "type": "package",
  275. "dependencies": {
  276. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
  277. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  278. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  279. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  280. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  281. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  282. "NETStandard.Library": "1.6.1"
  283. },
  284. "compile": {
  285. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  286. },
  287. "runtime": {
  288. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  289. }
  290. },
  291. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  292. "type": "package",
  293. "dependencies": {
  294. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  295. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  296. "NETStandard.Library": "1.6.1"
  297. },
  298. "compile": {
  299. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  300. },
  301. "runtime": {
  302. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  303. }
  304. },
  305. "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
  306. "type": "package",
  307. "dependencies": {
  308. "NETStandard.Library": "1.6.1",
  309. "System.Text.Encodings.Web": "4.3.0"
  310. },
  311. "compile": {
  312. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  313. },
  314. "runtime": {
  315. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  316. }
  317. },
  318. "Microsoft.AspNetCore.Http/1.1.0": {
  319. "type": "package",
  320. "dependencies": {
  321. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  322. "Microsoft.AspNetCore.WebUtilities": "1.1.0",
  323. "Microsoft.Extensions.ObjectPool": "1.1.0",
  324. "Microsoft.Extensions.Options": "1.1.0",
  325. "Microsoft.Net.Http.Headers": "1.1.0",
  326. "NETStandard.Library": "1.6.1",
  327. "System.Buffers": "4.3.0"
  328. },
  329. "compile": {
  330. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  331. },
  332. "runtime": {
  333. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  334. }
  335. },
  336. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  337. "type": "package",
  338. "dependencies": {
  339. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  340. "Microsoft.Extensions.Primitives": "1.1.0",
  341. "NETStandard.Library": "1.6.1",
  342. "System.Globalization.Extensions": "4.3.0",
  343. "System.Reflection.TypeExtensions": "4.3.0",
  344. "System.Text.Encodings.Web": "4.3.0"
  345. },
  346. "compile": {
  347. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  348. },
  349. "runtime": {
  350. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  351. }
  352. },
  353. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  354. "type": "package",
  355. "dependencies": {
  356. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  357. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  358. "Microsoft.Net.Http.Headers": "1.1.0",
  359. "NETStandard.Library": "1.6.1",
  360. "System.Buffers": "4.3.0"
  361. },
  362. "compile": {
  363. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  364. },
  365. "runtime": {
  366. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  367. }
  368. },
  369. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  370. "type": "package",
  371. "dependencies": {
  372. "Microsoft.Extensions.Primitives": "1.1.0",
  373. "NETStandard.Library": "1.6.1",
  374. "System.ComponentModel": "4.3.0",
  375. "System.Net.WebSockets": "4.3.0",
  376. "System.Security.Claims": "4.3.0",
  377. "System.Security.Principal": "4.3.0"
  378. },
  379. "compile": {
  380. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  381. },
  382. "runtime": {
  383. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  384. }
  385. },
  386. "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
  387. "type": "package",
  388. "dependencies": {
  389. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  390. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  391. "Microsoft.Extensions.Options": "1.1.0",
  392. "NETStandard.Library": "1.6.1"
  393. },
  394. "compile": {
  395. "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
  396. },
  397. "runtime": {
  398. "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
  399. }
  400. },
  401. "Microsoft.AspNetCore.JsonPatch/1.1.0": {
  402. "type": "package",
  403. "dependencies": {
  404. "Microsoft.CSharp": "4.3.0",
  405. "NETStandard.Library": "1.6.1",
  406. "Newtonsoft.Json": "9.0.1",
  407. "System.Reflection.TypeExtensions": "4.3.0"
  408. },
  409. "compile": {
  410. "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
  411. },
  412. "runtime": {
  413. "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
  414. }
  415. },
  416. "Microsoft.AspNetCore.Localization/1.1.0": {
  417. "type": "package",
  418. "dependencies": {
  419. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  420. "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
  421. "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
  422. "Microsoft.Extensions.Options": "1.1.0",
  423. "NETStandard.Library": "1.6.1"
  424. },
  425. "compile": {
  426. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
  427. },
  428. "runtime": {
  429. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
  430. }
  431. },
  432. "Microsoft.AspNetCore.Mvc/1.1.0": {
  433. "type": "package",
  434. "dependencies": {
  435. "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
  436. "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
  437. "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
  438. "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
  439. "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
  440. "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
  441. "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
  442. "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
  443. "Microsoft.Extensions.Caching.Memory": "1.1.0",
  444. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  445. "NETStandard.Library": "1.6.1"
  446. },
  447. "compile": {
  448. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
  449. },
  450. "runtime": {
  451. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
  452. }
  453. },
  454. "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
  455. "type": "package",
  456. "dependencies": {
  457. "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
  458. "Microsoft.CSharp": "4.3.0",
  459. "Microsoft.Net.Http.Headers": "1.1.0",
  460. "NETStandard.Library": "1.6.1",
  461. "System.ComponentModel.TypeConverter": "4.3.0"
  462. },
  463. "compile": {
  464. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  465. },
  466. "runtime": {
  467. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  468. }
  469. },
  470. "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
  471. "type": "package",
  472. "dependencies": {
  473. "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
  474. "NETStandard.Library": "1.6.1"
  475. },
  476. "compile": {
  477. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  478. },
  479. "runtime": {
  480. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  481. }
  482. },
  483. "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.AspNetCore.Authorization": "1.1.0",
  487. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  488. "Microsoft.AspNetCore.Http": "1.1.0",
  489. "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
  490. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
  491. "Microsoft.AspNetCore.Routing": "1.1.0",
  492. "Microsoft.Extensions.DependencyModel": "1.1.0",
  493. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  494. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  495. "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
  496. "NETStandard.Library": "1.6.1",
  497. "System.Buffers": "4.3.0",
  498. "System.Diagnostics.DiagnosticSource": "4.3.0"
  499. },
  500. "compile": {
  501. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  502. },
  503. "runtime": {
  504. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  505. }
  506. },
  507. "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
  508. "type": "package",
  509. "dependencies": {
  510. "Microsoft.AspNetCore.Cors": "1.1.0",
  511. "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
  512. "NETStandard.Library": "1.6.1"
  513. },
  514. "compile": {
  515. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
  516. },
  517. "runtime": {
  518. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
  519. }
  520. },
  521. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
  522. "type": "package",
  523. "dependencies": {
  524. "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
  525. "Microsoft.Extensions.Localization": "1.1.0",
  526. "NETStandard.Library": "1.6.1",
  527. "System.ComponentModel.Annotations": "4.3.0"
  528. },
  529. "compile": {
  530. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  531. },
  532. "runtime": {
  533. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  534. }
  535. },
  536. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
  537. "type": "package",
  538. "dependencies": {
  539. "Microsoft.AspNetCore.JsonPatch": "1.1.0",
  540. "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
  541. "NETStandard.Library": "1.6.1"
  542. },
  543. "compile": {
  544. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  545. },
  546. "runtime": {
  547. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  548. }
  549. },
  550. "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
  551. "type": "package",
  552. "dependencies": {
  553. "Microsoft.AspNetCore.Localization": "1.1.0",
  554. "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
  555. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  556. "Microsoft.Extensions.Localization": "1.1.0",
  557. "NETStandard.Library": "1.6.1"
  558. },
  559. "compile": {
  560. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
  561. },
  562. "runtime": {
  563. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
  564. }
  565. },
  566. "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
  567. "type": "package",
  568. "dependencies": {
  569. "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
  570. "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
  571. "Microsoft.CodeAnalysis.CSharp": "1.3.0",
  572. "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
  573. "NETStandard.Library": "1.6.1",
  574. "System.Runtime.Loader": "4.3.0"
  575. },
  576. "compile": {
  577. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
  578. },
  579. "runtime": {
  580. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
  581. }
  582. },
  583. "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
  584. "type": "package",
  585. "dependencies": {
  586. "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
  587. "Microsoft.Extensions.Caching.Memory": "1.1.0",
  588. "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
  589. "NETStandard.Library": "1.6.1",
  590. "System.ComponentModel.TypeConverter": "4.3.0"
  591. },
  592. "compile": {
  593. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
  594. },
  595. "runtime": {
  596. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
  597. }
  598. },
  599. "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
  603. "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
  604. "Microsoft.Extensions.Caching.Memory": "1.1.0",
  605. "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
  606. "Microsoft.Extensions.Primitives": "1.1.0",
  607. "NETStandard.Library": "1.6.1"
  608. },
  609. "compile": {
  610. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  611. },
  612. "runtime": {
  613. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  614. }
  615. },
  616. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
  617. "type": "package",
  618. "dependencies": {
  619. "Microsoft.AspNetCore.Antiforgery": "1.1.0",
  620. "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
  621. "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
  622. "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
  623. "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
  624. "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
  625. "Microsoft.Extensions.WebEncoders": "1.1.0",
  626. "NETStandard.Library": "1.6.1",
  627. "Newtonsoft.Json": "9.0.1",
  628. "System.Buffers": "4.3.0",
  629. "System.Runtime.Serialization.Primitives": "4.3.0"
  630. },
  631. "compile": {
  632. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  633. },
  634. "runtime": {
  635. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  636. }
  637. },
  638. "Microsoft.AspNetCore.Razor/1.1.0": {
  639. "type": "package",
  640. "dependencies": {
  641. "NETStandard.Library": "1.6.1",
  642. "System.Threading.Thread": "4.3.0"
  643. },
  644. "compile": {
  645. "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
  646. },
  647. "runtime": {
  648. "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
  649. }
  650. },
  651. "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
  652. "type": "package",
  653. "dependencies": {
  654. "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
  655. "Microsoft.AspNetCore.Razor": "1.1.0",
  656. "NETStandard.Library": "1.6.1",
  657. "System.Reflection.TypeExtensions": "4.3.0"
  658. },
  659. "compile": {
  660. "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  661. },
  662. "runtime": {
  663. "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  664. }
  665. },
  666. "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
  667. "type": "package",
  668. "dependencies": {
  669. "Microsoft.Extensions.Primitives": "1.1.0",
  670. "NETStandard.Library": "1.6.1"
  671. },
  672. "compile": {
  673. "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  674. },
  675. "runtime": {
  676. "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  677. }
  678. },
  679. "Microsoft.AspNetCore.Routing/1.1.0": {
  680. "type": "package",
  681. "dependencies": {
  682. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  683. "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
  684. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  685. "Microsoft.Extensions.ObjectPool": "1.1.0",
  686. "Microsoft.Extensions.Options": "1.1.0",
  687. "NETStandard.Library": "1.6.1"
  688. },
  689. "compile": {
  690. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  691. },
  692. "runtime": {
  693. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  694. }
  695. },
  696. "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
  697. "type": "package",
  698. "dependencies": {
  699. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  700. "NETStandard.Library": "1.6.1"
  701. },
  702. "compile": {
  703. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  704. },
  705. "runtime": {
  706. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  707. }
  708. },
  709. "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
  710. "type": "package",
  711. "dependencies": {
  712. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  713. "Microsoft.AspNetCore.Http": "1.1.0",
  714. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  715. "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
  716. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  717. "Microsoft.Extensions.Options": "1.1.0",
  718. "NETStandard.Library": "1.6.1",
  719. "System.Security.Principal.Windows": "4.3.0"
  720. },
  721. "compile": {
  722. "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  723. },
  724. "runtime": {
  725. "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  726. }
  727. },
  728. "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
  729. "type": "package",
  730. "dependencies": {
  731. "Libuv": "1.9.1",
  732. "Microsoft.AspNetCore.Hosting": "1.1.0",
  733. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  734. "NETStandard.Library": "1.6.1",
  735. "System.Buffers": "4.3.0",
  736. "System.Numerics.Vectors": "4.3.0",
  737. "System.Threading.Tasks.Extensions": "4.3.0",
  738. "System.Threading.Thread": "4.3.0",
  739. "System.Threading.ThreadPool": "4.3.0"
  740. },
  741. "compile": {
  742. "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
  743. },
  744. "runtime": {
  745. "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
  746. }
  747. },
  748. "Microsoft.AspNetCore.WebSockets/1.0.0": {
  749. "type": "package",
  750. "dependencies": {
  751. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  752. "Microsoft.Extensions.Options": "1.1.0",
  753. "NETStandard.Library": "1.6.1"
  754. },
  755. "compile": {
  756. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  757. },
  758. "runtime": {
  759. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  760. }
  761. },
  762. "Microsoft.AspNetCore.WebUtilities/1.1.0": {
  763. "type": "package",
  764. "dependencies": {
  765. "Microsoft.Extensions.Primitives": "1.1.0",
  766. "Microsoft.Net.Http.Headers": "1.1.0",
  767. "NETStandard.Library": "1.6.1",
  768. "System.Buffers": "4.3.0",
  769. "System.Text.Encodings.Web": "4.3.0"
  770. },
  771. "compile": {
  772. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  773. },
  774. "runtime": {
  775. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  776. }
  777. },
  778. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  779. "type": "package"
  780. },
  781. "Microsoft.CodeAnalysis.Common/1.3.0": {
  782. "type": "package",
  783. "dependencies": {
  784. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  785. "System.AppContext": "4.1.0",
  786. "System.Collections": "4.0.11",
  787. "System.Collections.Concurrent": "4.0.12",
  788. "System.Collections.Immutable": "1.2.0",
  789. "System.Console": "4.0.0",
  790. "System.Diagnostics.Debug": "4.0.11",
  791. "System.Diagnostics.FileVersionInfo": "4.0.0",
  792. "System.Diagnostics.StackTrace": "4.0.1",
  793. "System.Diagnostics.Tools": "4.0.1",
  794. "System.Dynamic.Runtime": "4.0.11",
  795. "System.Globalization": "4.0.11",
  796. "System.IO.FileSystem": "4.0.1",
  797. "System.IO.FileSystem.Primitives": "4.0.1",
  798. "System.Linq": "4.1.0",
  799. "System.Linq.Expressions": "4.1.0",
  800. "System.Reflection": "4.1.0",
  801. "System.Reflection.Metadata": "1.3.0",
  802. "System.Reflection.Primitives": "4.0.1",
  803. "System.Resources.ResourceManager": "4.0.1",
  804. "System.Runtime": "4.1.0",
  805. "System.Runtime.Extensions": "4.1.0",
  806. "System.Runtime.Handles": "4.0.1",
  807. "System.Runtime.InteropServices": "4.1.0",
  808. "System.Runtime.Numerics": "4.0.1",
  809. "System.Security.Cryptography.Algorithms": "4.2.0",
  810. "System.Security.Cryptography.Encoding": "4.0.0",
  811. "System.Security.Cryptography.X509Certificates": "4.1.0",
  812. "System.Text.Encoding": "4.0.11",
  813. "System.Text.Encoding.CodePages": "4.0.1",
  814. "System.Text.Encoding.Extensions": "4.0.11",
  815. "System.Threading": "4.0.11",
  816. "System.Threading.Tasks": "4.0.11",
  817. "System.Threading.Tasks.Parallel": "4.0.1",
  818. "System.Threading.Thread": "4.0.0",
  819. "System.Xml.ReaderWriter": "4.0.11",
  820. "System.Xml.XDocument": "4.0.11",
  821. "System.Xml.XPath.XDocument": "4.0.1",
  822. "System.Xml.XmlDocument": "4.0.1"
  823. },
  824. "compile": {
  825. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
  826. },
  827. "runtime": {
  828. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
  829. }
  830. },
  831. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  832. "type": "package",
  833. "dependencies": {
  834. "Microsoft.CodeAnalysis.Common": "[1.3.0]"
  835. },
  836. "compile": {
  837. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
  838. },
  839. "runtime": {
  840. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
  841. }
  842. },
  843. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  844. "type": "package",
  845. "dependencies": {
  846. "Microsoft.CodeAnalysis.Common": "1.3.0"
  847. },
  848. "compile": {
  849. "lib/netstandard1.3/_._": {}
  850. },
  851. "runtime": {
  852. "lib/netstandard1.3/_._": {}
  853. }
  854. },
  855. "Microsoft.CSharp/4.3.0": {
  856. "type": "package",
  857. "dependencies": {
  858. "System.Collections": "4.3.0",
  859. "System.Diagnostics.Debug": "4.3.0",
  860. "System.Dynamic.Runtime": "4.3.0",
  861. "System.Globalization": "4.3.0",
  862. "System.Linq": "4.3.0",
  863. "System.Linq.Expressions": "4.3.0",
  864. "System.ObjectModel": "4.3.0",
  865. "System.Reflection": "4.3.0",
  866. "System.Reflection.Extensions": "4.3.0",
  867. "System.Reflection.Primitives": "4.3.0",
  868. "System.Reflection.TypeExtensions": "4.3.0",
  869. "System.Resources.ResourceManager": "4.3.0",
  870. "System.Runtime": "4.3.0",
  871. "System.Runtime.Extensions": "4.3.0",
  872. "System.Runtime.InteropServices": "4.3.0",
  873. "System.Threading": "4.3.0"
  874. },
  875. "compile": {
  876. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  877. },
  878. "runtime": {
  879. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  880. }
  881. },
  882. "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
  883. "type": "package",
  884. "dependencies": {
  885. "System.AppContext": "4.1.0",
  886. "System.Collections": "4.0.11",
  887. "System.IO": "4.1.0",
  888. "System.IO.FileSystem": "4.0.1",
  889. "System.Reflection.TypeExtensions": "4.1.0",
  890. "System.Runtime.Extensions": "4.1.0",
  891. "System.Runtime.InteropServices": "4.1.0",
  892. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  893. },
  894. "compile": {
  895. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  896. },
  897. "runtime": {
  898. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  899. }
  900. },
  901. "Microsoft.EntityFrameworkCore/1.1.0": {
  902. "type": "package",
  903. "dependencies": {
  904. "Microsoft.Extensions.Caching.Memory": "1.1.0",
  905. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  906. "Microsoft.Extensions.Logging": "1.1.0",
  907. "NETStandard.Library": "1.6.1",
  908. "Remotion.Linq": "2.1.1",
  909. "System.Collections.Immutable": "1.3.0",
  910. "System.ComponentModel.Annotations": "4.3.0",
  911. "System.Interactive.Async": "3.0.0",
  912. "System.Linq.Queryable": "4.3.0"
  913. },
  914. "compile": {
  915. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  916. },
  917. "runtime": {
  918. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  919. }
  920. },
  921. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  922. "type": "package",
  923. "dependencies": {
  924. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  925. "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.0",
  926. "NETStandard.Library": "1.6.1",
  927. "System.Collections.NonGeneric": "4.3.0"
  928. },
  929. "compile": {
  930. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  931. },
  932. "runtime": {
  933. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  934. }
  935. },
  936. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  937. "type": "package",
  938. "dependencies": {
  939. "Microsoft.CSharp": "4.3.0",
  940. "Microsoft.EntityFrameworkCore": "1.1.0",
  941. "NETStandard.Library": "1.6.1",
  942. "System.Data.Common": "4.3.0",
  943. "System.Diagnostics.DiagnosticSource": "4.3.0"
  944. },
  945. "compile": {
  946. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  947. },
  948. "runtime": {
  949. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  950. }
  951. },
  952. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  953. "type": "package",
  954. "dependencies": {
  955. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  956. "NETStandard.Library": "1.6.1"
  957. },
  958. "compile": {
  959. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  960. },
  961. "runtime": {
  962. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  963. }
  964. },
  965. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  966. "type": "package",
  967. "dependencies": {
  968. "Microsoft.EntityFrameworkCore.Design": "1.1.0"
  969. },
  970. "compile": {
  971. "lib/netstandard1.3/_._": {}
  972. },
  973. "runtime": {
  974. "lib/netstandard1.3/_._": {}
  975. }
  976. },
  977. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  978. "type": "package",
  979. "dependencies": {
  980. "Microsoft.Extensions.Primitives": "1.1.0",
  981. "NETStandard.Library": "1.6.1"
  982. },
  983. "compile": {
  984. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  985. },
  986. "runtime": {
  987. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  988. }
  989. },
  990. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  991. "type": "package",
  992. "dependencies": {
  993. "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
  994. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  995. "Microsoft.Extensions.Options": "1.1.0",
  996. "NETStandard.Library": "1.6.1"
  997. },
  998. "compile": {
  999. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  1000. },
  1001. "runtime": {
  1002. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  1003. }
  1004. },
  1005. "Microsoft.Extensions.Configuration/1.1.0": {
  1006. "type": "package",
  1007. "dependencies": {
  1008. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  1009. "NETStandard.Library": "1.6.1"
  1010. },
  1011. "compile": {
  1012. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  1013. },
  1014. "runtime": {
  1015. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  1016. }
  1017. },
  1018. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  1019. "type": "package",
  1020. "dependencies": {
  1021. "Microsoft.Extensions.Primitives": "1.1.0",
  1022. "NETStandard.Library": "1.6.1"
  1023. },
  1024. "compile": {
  1025. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  1026. },
  1027. "runtime": {
  1028. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  1029. }
  1030. },
  1031. "Microsoft.Extensions.Configuration.Binder/1.1.0": {
  1032. "type": "package",
  1033. "dependencies": {
  1034. "Microsoft.Extensions.Configuration": "1.1.0",
  1035. "NETStandard.Library": "1.6.1",
  1036. "System.ComponentModel.TypeConverter": "4.3.0"
  1037. },
  1038. "compile": {
  1039. "lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  1040. },
  1041. "runtime": {
  1042. "lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  1043. }
  1044. },
  1045. "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
  1046. "type": "package",
  1047. "dependencies": {
  1048. "Microsoft.Extensions.Configuration": "1.1.0",
  1049. "NETStandard.Library": "1.6.1"
  1050. },
  1051. "compile": {
  1052. "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  1053. },
  1054. "runtime": {
  1055. "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  1056. }
  1057. },
  1058. "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
  1059. "type": "package",
  1060. "dependencies": {
  1061. "Microsoft.Extensions.Configuration": "1.1.0",
  1062. "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
  1063. "NETStandard.Library": "1.6.1",
  1064. "System.Threading.Thread": "4.3.0"
  1065. },
  1066. "compile": {
  1067. "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  1068. },
  1069. "runtime": {
  1070. "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  1071. }
  1072. },
  1073. "Microsoft.Extensions.Configuration.Json/1.1.0": {
  1074. "type": "package",
  1075. "dependencies": {
  1076. "Microsoft.Extensions.Configuration": "1.1.0",
  1077. "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
  1078. "NETStandard.Library": "1.6.1",
  1079. "Newtonsoft.Json": "9.0.1",
  1080. "System.Dynamic.Runtime": "4.3.0",
  1081. "System.Runtime.Serialization.Primitives": "4.3.0"
  1082. },
  1083. "compile": {
  1084. "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
  1085. },
  1086. "runtime": {
  1087. "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
  1088. }
  1089. },
  1090. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  1091. "type": "package",
  1092. "dependencies": {
  1093. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1094. "NETStandard.Library": "1.6.1"
  1095. },
  1096. "compile": {
  1097. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  1101. }
  1102. },
  1103. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  1104. "type": "package",
  1105. "dependencies": {
  1106. "NETStandard.Library": "1.6.1",
  1107. "System.ComponentModel": "4.3.0"
  1108. },
  1109. "compile": {
  1110. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  1111. },
  1112. "runtime": {
  1113. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  1114. }
  1115. },
  1116. "Microsoft.Extensions.DependencyModel/1.1.0": {
  1117. "type": "package",
  1118. "dependencies": {
  1119. "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
  1120. "Newtonsoft.Json": "9.0.1",
  1121. "System.Diagnostics.Debug": "4.0.11",
  1122. "System.Dynamic.Runtime": "4.0.11",
  1123. "System.Linq": "4.1.0"
  1124. },
  1125. "compile": {
  1126. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1127. },
  1128. "runtime": {
  1129. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1130. }
  1131. },
  1132. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  1133. "type": "package",
  1134. "dependencies": {
  1135. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  1136. "System.Collections.Concurrent": "4.0.12",
  1137. "System.ComponentModel": "4.0.1",
  1138. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1139. "System.Reflection.Emit": "4.0.1",
  1140. "System.Reflection.Emit.Lightweight": "4.0.1",
  1141. "System.Reflection.Extensions": "4.0.1",
  1142. "System.Runtime.Extensions": "4.1.0"
  1143. },
  1144. "compile": {
  1145. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  1146. },
  1147. "runtime": {
  1148. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  1149. }
  1150. },
  1151. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  1152. "type": "package",
  1153. "dependencies": {
  1154. "Microsoft.Extensions.Primitives": "1.1.0",
  1155. "NETStandard.Library": "1.6.1"
  1156. },
  1157. "compile": {
  1158. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  1159. },
  1160. "runtime": {
  1161. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  1162. }
  1163. },
  1164. "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
  1165. "type": "package",
  1166. "dependencies": {
  1167. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  1168. "NETStandard.Library": "1.6.1"
  1169. },
  1170. "compile": {
  1171. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
  1172. },
  1173. "runtime": {
  1174. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
  1175. }
  1176. },
  1177. "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
  1178. "type": "package",
  1179. "dependencies": {
  1180. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  1181. "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
  1182. "NETStandard.Library": "1.6.1",
  1183. "System.IO.FileSystem.Watcher": "4.3.0"
  1184. },
  1185. "compile": {
  1186. "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
  1187. },
  1188. "runtime": {
  1189. "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
  1190. }
  1191. },
  1192. "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
  1193. "type": "package",
  1194. "dependencies": {
  1195. "NETStandard.Library": "1.6.1"
  1196. },
  1197. "compile": {
  1198. "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  1199. },
  1200. "runtime": {
  1201. "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  1202. }
  1203. },
  1204. "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
  1205. "type": "package",
  1206. "dependencies": {
  1207. "NETStandard.Library": "1.6.1"
  1208. },
  1209. "compile": {
  1210. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
  1211. },
  1212. "runtime": {
  1213. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
  1214. }
  1215. },
  1216. "Microsoft.Extensions.Localization/1.1.0": {
  1217. "type": "package",
  1218. "dependencies": {
  1219. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  1220. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1221. "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
  1222. "Microsoft.Extensions.Options": "1.1.0",
  1223. "NETStandard.Library": "1.6.1",
  1224. "System.Resources.Reader": "4.3.0"
  1225. },
  1226. "compile": {
  1227. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  1228. },
  1229. "runtime": {
  1230. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  1231. }
  1232. },
  1233. "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
  1234. "type": "package",
  1235. "dependencies": {
  1236. "Microsoft.CSharp": "4.3.0",
  1237. "NETStandard.Library": "1.6.1"
  1238. },
  1239. "compile": {
  1240. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  1241. },
  1242. "runtime": {
  1243. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  1244. }
  1245. },
  1246. "Microsoft.Extensions.Logging/1.1.0": {
  1247. "type": "package",
  1248. "dependencies": {
  1249. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1250. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  1251. "NETStandard.Library": "1.6.1"
  1252. },
  1253. "compile": {
  1254. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  1255. },
  1256. "runtime": {
  1257. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  1258. }
  1259. },
  1260. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "NETStandard.Library": "1.6.1"
  1264. },
  1265. "compile": {
  1266. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  1267. },
  1268. "runtime": {
  1269. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  1270. }
  1271. },
  1272. "Microsoft.Extensions.Logging.Console/1.1.0": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  1276. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  1277. "NETStandard.Library": "1.6.1"
  1278. },
  1279. "compile": {
  1280. "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
  1281. },
  1282. "runtime": {
  1283. "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
  1284. }
  1285. },
  1286. "Microsoft.Extensions.Logging.Debug/1.1.0": {
  1287. "type": "package",
  1288. "dependencies": {
  1289. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  1290. "NETStandard.Library": "1.6.1"
  1291. },
  1292. "compile": {
  1293. "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
  1294. },
  1295. "runtime": {
  1296. "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
  1297. }
  1298. },
  1299. "Microsoft.Extensions.ObjectPool/1.1.0": {
  1300. "type": "package",
  1301. "dependencies": {
  1302. "NETStandard.Library": "1.6.1"
  1303. },
  1304. "compile": {
  1305. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  1306. },
  1307. "runtime": {
  1308. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  1309. }
  1310. },
  1311. "Microsoft.Extensions.Options/1.1.0": {
  1312. "type": "package",
  1313. "dependencies": {
  1314. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1315. "Microsoft.Extensions.Primitives": "1.1.0",
  1316. "NETStandard.Library": "1.6.1",
  1317. "System.ComponentModel": "4.3.0"
  1318. },
  1319. "compile": {
  1320. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  1321. },
  1322. "runtime": {
  1323. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  1324. }
  1325. },
  1326. "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
  1327. "type": "package",
  1328. "dependencies": {
  1329. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  1330. "Microsoft.Extensions.Configuration.Binder": "1.1.0",
  1331. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1332. "Microsoft.Extensions.Options": "1.1.0",
  1333. "NETStandard.Library": "1.6.1"
  1334. },
  1335. "compile": {
  1336. "lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  1337. },
  1338. "runtime": {
  1339. "lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  1340. }
  1341. },
  1342. "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
  1343. "type": "package",
  1344. "dependencies": {
  1345. "NETStandard.Library": "1.6.1",
  1346. "System.Reflection.TypeExtensions": "4.3.0"
  1347. },
  1348. "compile": {
  1349. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  1350. },
  1351. "runtime": {
  1352. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  1353. }
  1354. },
  1355. "Microsoft.Extensions.Primitives/1.1.0": {
  1356. "type": "package",
  1357. "dependencies": {
  1358. "NETStandard.Library": "1.6.1",
  1359. "System.Runtime.CompilerServices.Unsafe": "4.3.0"
  1360. },
  1361. "compile": {
  1362. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  1363. },
  1364. "runtime": {
  1365. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  1366. }
  1367. },
  1368. "Microsoft.Extensions.WebEncoders/1.1.0": {
  1369. "type": "package",
  1370. "dependencies": {
  1371. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1372. "Microsoft.Extensions.Options": "1.1.0",
  1373. "NETStandard.Library": "1.6.1",
  1374. "System.Text.Encodings.Web": "4.3.0"
  1375. },
  1376. "compile": {
  1377. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  1378. },
  1379. "runtime": {
  1380. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  1381. }
  1382. },
  1383. "Microsoft.Net.Http.Headers/1.1.0": {
  1384. "type": "package",
  1385. "dependencies": {
  1386. "Microsoft.Extensions.Primitives": "1.1.0",
  1387. "NETStandard.Library": "1.6.1",
  1388. "System.Buffers": "4.3.0",
  1389. "System.Diagnostics.Contracts": "4.3.0"
  1390. },
  1391. "compile": {
  1392. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  1393. },
  1394. "runtime": {
  1395. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  1396. }
  1397. },
  1398. "Microsoft.NETCore.App/1.0.1": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "Libuv": "1.9.0",
  1402. "Microsoft.CSharp": "4.0.1",
  1403. "Microsoft.CodeAnalysis.CSharp": "1.3.0",
  1404. "Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
  1405. "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
  1406. "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
  1407. "Microsoft.VisualBasic": "10.0.1",
  1408. "NETStandard.Library": "1.6.0",
  1409. "System.Buffers": "4.0.0",
  1410. "System.Collections.Immutable": "1.2.0",
  1411. "System.ComponentModel": "4.0.1",
  1412. "System.ComponentModel.Annotations": "4.1.0",
  1413. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1414. "System.Diagnostics.Process": "4.1.0",
  1415. "System.Dynamic.Runtime": "4.0.11",
  1416. "System.Globalization.Extensions": "4.0.1",
  1417. "System.IO.FileSystem.Watcher": "4.0.0",
  1418. "System.IO.MemoryMappedFiles": "4.0.0",
  1419. "System.IO.UnmanagedMemoryStream": "4.0.1",
  1420. "System.Linq.Expressions": "4.1.0",
  1421. "System.Linq.Parallel": "4.0.1",
  1422. "System.Linq.Queryable": "4.0.1",
  1423. "System.Net.NameResolution": "4.0.0",
  1424. "System.Net.Requests": "4.0.11",
  1425. "System.Net.Security": "4.0.0",
  1426. "System.Net.WebHeaderCollection": "4.0.1",
  1427. "System.Numerics.Vectors": "4.1.1",
  1428. "System.Reflection.DispatchProxy": "4.0.1",
  1429. "System.Reflection.Metadata": "1.3.0",
  1430. "System.Reflection.TypeExtensions": "4.1.0",
  1431. "System.Resources.Reader": "4.0.0",
  1432. "System.Runtime.Loader": "4.0.0",
  1433. "System.Security.Cryptography.Algorithms": "4.2.0",
  1434. "System.Security.Cryptography.Encoding": "4.0.0",
  1435. "System.Security.Cryptography.Primitives": "4.0.0",
  1436. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1437. "System.Threading.Tasks.Dataflow": "4.6.0",
  1438. "System.Threading.Tasks.Extensions": "4.0.0",
  1439. "System.Threading.Tasks.Parallel": "4.0.1",
  1440. "System.Threading.Thread": "4.0.0",
  1441. "System.Threading.ThreadPool": "4.0.10"
  1442. },
  1443. "compile": {
  1444. "lib/netcoreapp1.0/_._": {}
  1445. },
  1446. "runtime": {
  1447. "lib/netcoreapp1.0/_._": {}
  1448. }
  1449. },
  1450. "Microsoft.NETCore.DotNetHost/1.0.1": {
  1451. "type": "package"
  1452. },
  1453. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  1454. "type": "package",
  1455. "dependencies": {
  1456. "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
  1457. }
  1458. },
  1459. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  1460. "type": "package",
  1461. "dependencies": {
  1462. "Microsoft.NETCore.DotNetHost": "1.0.1"
  1463. }
  1464. },
  1465. "Microsoft.NETCore.Jit/1.0.4": {
  1466. "type": "package"
  1467. },
  1468. "Microsoft.NETCore.Platforms/1.1.0": {
  1469. "type": "package",
  1470. "compile": {
  1471. "lib/netstandard1.0/_._": {}
  1472. },
  1473. "runtime": {
  1474. "lib/netstandard1.0/_._": {}
  1475. }
  1476. },
  1477. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  1478. "type": "package",
  1479. "dependencies": {
  1480. "Microsoft.NETCore.Jit": "1.0.4",
  1481. "Microsoft.NETCore.Windows.ApiSets": "1.0.1"
  1482. }
  1483. },
  1484. "Microsoft.NETCore.Targets/1.1.0": {
  1485. "type": "package",
  1486. "compile": {
  1487. "lib/netstandard1.0/_._": {}
  1488. },
  1489. "runtime": {
  1490. "lib/netstandard1.0/_._": {}
  1491. }
  1492. },
  1493. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  1494. "type": "package"
  1495. },
  1496. "Microsoft.VisualBasic/10.0.1": {
  1497. "type": "package",
  1498. "dependencies": {
  1499. "System.Collections": "4.0.11",
  1500. "System.Diagnostics.Debug": "4.0.11",
  1501. "System.Dynamic.Runtime": "4.0.11",
  1502. "System.Globalization": "4.0.11",
  1503. "System.Linq": "4.1.0",
  1504. "System.Linq.Expressions": "4.1.0",
  1505. "System.ObjectModel": "4.0.12",
  1506. "System.Reflection": "4.1.0",
  1507. "System.Reflection.Extensions": "4.0.1",
  1508. "System.Reflection.Primitives": "4.0.1",
  1509. "System.Reflection.TypeExtensions": "4.1.0",
  1510. "System.Resources.ResourceManager": "4.0.1",
  1511. "System.Runtime": "4.1.0",
  1512. "System.Runtime.Extensions": "4.1.0",
  1513. "System.Runtime.InteropServices": "4.1.0",
  1514. "System.Threading": "4.0.11"
  1515. },
  1516. "compile": {
  1517. "ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
  1518. },
  1519. "runtime": {
  1520. "lib/netstandard1.3/_._": {}
  1521. }
  1522. },
  1523. "Microsoft.Win32.Primitives/4.3.0": {
  1524. "type": "package",
  1525. "dependencies": {
  1526. "Microsoft.NETCore.Platforms": "1.1.0",
  1527. "Microsoft.NETCore.Targets": "1.1.0",
  1528. "System.Runtime": "4.3.0"
  1529. },
  1530. "compile": {
  1531. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  1532. }
  1533. },
  1534. "Microsoft.Win32.Registry/4.3.0": {
  1535. "type": "package",
  1536. "dependencies": {
  1537. "Microsoft.NETCore.Platforms": "1.1.0",
  1538. "System.Collections": "4.3.0",
  1539. "System.Globalization": "4.3.0",
  1540. "System.Resources.ResourceManager": "4.3.0",
  1541. "System.Runtime": "4.3.0",
  1542. "System.Runtime.Extensions": "4.3.0",
  1543. "System.Runtime.Handles": "4.3.0",
  1544. "System.Runtime.InteropServices": "4.3.0"
  1545. },
  1546. "compile": {
  1547. "ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
  1548. },
  1549. "runtimeTargets": {
  1550. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1551. "assetType": "runtime",
  1552. "rid": "unix"
  1553. },
  1554. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1555. "assetType": "runtime",
  1556. "rid": "win"
  1557. }
  1558. }
  1559. },
  1560. "NETStandard.Library/1.6.1": {
  1561. "type": "package",
  1562. "dependencies": {
  1563. "Microsoft.NETCore.Platforms": "1.1.0",
  1564. "Microsoft.Win32.Primitives": "4.3.0",
  1565. "System.AppContext": "4.3.0",
  1566. "System.Collections": "4.3.0",
  1567. "System.Collections.Concurrent": "4.3.0",
  1568. "System.Console": "4.3.0",
  1569. "System.Diagnostics.Debug": "4.3.0",
  1570. "System.Diagnostics.Tools": "4.3.0",
  1571. "System.Diagnostics.Tracing": "4.3.0",
  1572. "System.Globalization": "4.3.0",
  1573. "System.Globalization.Calendars": "4.3.0",
  1574. "System.IO": "4.3.0",
  1575. "System.IO.Compression": "4.3.0",
  1576. "System.IO.Compression.ZipFile": "4.3.0",
  1577. "System.IO.FileSystem": "4.3.0",
  1578. "System.IO.FileSystem.Primitives": "4.3.0",
  1579. "System.Linq": "4.3.0",
  1580. "System.Linq.Expressions": "4.3.0",
  1581. "System.Net.Http": "4.3.0",
  1582. "System.Net.Primitives": "4.3.0",
  1583. "System.Net.Sockets": "4.3.0",
  1584. "System.ObjectModel": "4.3.0",
  1585. "System.Reflection": "4.3.0",
  1586. "System.Reflection.Extensions": "4.3.0",
  1587. "System.Reflection.Primitives": "4.3.0",
  1588. "System.Resources.ResourceManager": "4.3.0",
  1589. "System.Runtime": "4.3.0",
  1590. "System.Runtime.Extensions": "4.3.0",
  1591. "System.Runtime.Handles": "4.3.0",
  1592. "System.Runtime.InteropServices": "4.3.0",
  1593. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1594. "System.Runtime.Numerics": "4.3.0",
  1595. "System.Security.Cryptography.Algorithms": "4.3.0",
  1596. "System.Security.Cryptography.Encoding": "4.3.0",
  1597. "System.Security.Cryptography.Primitives": "4.3.0",
  1598. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1599. "System.Text.Encoding": "4.3.0",
  1600. "System.Text.Encoding.Extensions": "4.3.0",
  1601. "System.Text.RegularExpressions": "4.3.0",
  1602. "System.Threading": "4.3.0",
  1603. "System.Threading.Tasks": "4.3.0",
  1604. "System.Threading.Timer": "4.3.0",
  1605. "System.Xml.ReaderWriter": "4.3.0",
  1606. "System.Xml.XDocument": "4.3.0"
  1607. }
  1608. },
  1609. "Newtonsoft.Json/9.0.1": {
  1610. "type": "package",
  1611. "dependencies": {
  1612. "Microsoft.CSharp": "4.0.1",
  1613. "System.Collections": "4.0.11",
  1614. "System.Diagnostics.Debug": "4.0.11",
  1615. "System.Dynamic.Runtime": "4.0.11",
  1616. "System.Globalization": "4.0.11",
  1617. "System.IO": "4.1.0",
  1618. "System.Linq": "4.1.0",
  1619. "System.Linq.Expressions": "4.1.0",
  1620. "System.ObjectModel": "4.0.12",
  1621. "System.Reflection": "4.1.0",
  1622. "System.Reflection.Extensions": "4.0.1",
  1623. "System.Resources.ResourceManager": "4.0.1",
  1624. "System.Runtime": "4.1.0",
  1625. "System.Runtime.Extensions": "4.1.0",
  1626. "System.Runtime.Serialization.Primitives": "4.1.1",
  1627. "System.Text.Encoding": "4.0.11",
  1628. "System.Text.Encoding.Extensions": "4.0.11",
  1629. "System.Text.RegularExpressions": "4.1.0",
  1630. "System.Threading": "4.0.11",
  1631. "System.Threading.Tasks": "4.0.11",
  1632. "System.Xml.ReaderWriter": "4.0.11",
  1633. "System.Xml.XDocument": "4.0.11"
  1634. },
  1635. "compile": {
  1636. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1637. },
  1638. "runtime": {
  1639. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1640. }
  1641. },
  1642. "Npgsql/3.1.9": {
  1643. "type": "package",
  1644. "dependencies": {
  1645. "Microsoft.Win32.Primitives": "4.0.1",
  1646. "System.Collections.Concurrent": "4.0.12",
  1647. "System.ComponentModel.TypeConverter": "4.1.0",
  1648. "System.Console": "4.0.0",
  1649. "System.Data.Common": "4.1.0",
  1650. "System.Diagnostics.Contracts": "4.0.1",
  1651. "System.Globalization.Extensions": "4.0.1",
  1652. "System.Linq": "4.1.0",
  1653. "System.Net.NameResolution": "4.0.0",
  1654. "System.Net.NetworkInformation": "4.1.0",
  1655. "System.Net.Primitives": "4.0.11",
  1656. "System.Net.Security": "4.0.0",
  1657. "System.Net.Sockets": "4.1.0",
  1658. "System.Reflection": "4.1.0",
  1659. "System.Reflection.Extensions": "4.0.1",
  1660. "System.Reflection.TypeExtensions": "4.1.0",
  1661. "System.Runtime": "4.1.0",
  1662. "System.Runtime.InteropServices": "4.1.0",
  1663. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  1664. "System.Runtime.Numerics": "4.0.1",
  1665. "System.Text.Encoding.Extensions": "4.0.11",
  1666. "System.Text.RegularExpressions": "4.1.0",
  1667. "System.Threading": "4.0.11",
  1668. "System.Threading.Thread": "4.0.0",
  1669. "System.Threading.Timer": "4.0.1"
  1670. },
  1671. "compile": {
  1672. "lib/netstandard1.3/Npgsql.dll": {}
  1673. },
  1674. "runtime": {
  1675. "lib/netstandard1.3/Npgsql.dll": {}
  1676. }
  1677. },
  1678. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  1679. "type": "package",
  1680. "dependencies": {
  1681. "Microsoft.EntityFrameworkCore": "1.1.0",
  1682. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  1683. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  1684. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1685. "Npgsql": "3.1.9"
  1686. },
  1687. "compile": {
  1688. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1689. },
  1690. "runtime": {
  1691. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1692. }
  1693. },
  1694. "Remotion.Linq/2.1.1": {
  1695. "type": "package",
  1696. "dependencies": {
  1697. "System.Collections": "4.0.11",
  1698. "System.Diagnostics.Debug": "4.0.11",
  1699. "System.Linq": "4.1.0",
  1700. "System.Linq.Expressions": "4.1.0",
  1701. "System.Linq.Queryable": "4.0.1",
  1702. "System.ObjectModel": "4.0.12",
  1703. "System.Reflection": "4.1.0",
  1704. "System.Reflection.Extensions": "4.0.1",
  1705. "System.Runtime": "4.1.0",
  1706. "System.Runtime.Extensions": "4.1.0",
  1707. "System.Threading": "4.0.11"
  1708. },
  1709. "compile": {
  1710. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1711. },
  1712. "runtime": {
  1713. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1714. }
  1715. },
  1716. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1717. "type": "package",
  1718. "runtimeTargets": {
  1719. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1720. "assetType": "native",
  1721. "rid": "debian.8-x64"
  1722. }
  1723. }
  1724. },
  1725. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1726. "type": "package",
  1727. "runtimeTargets": {
  1728. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1729. "assetType": "native",
  1730. "rid": "fedora.23-x64"
  1731. }
  1732. }
  1733. },
  1734. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1735. "type": "package",
  1736. "runtimeTargets": {
  1737. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1738. "assetType": "native",
  1739. "rid": "fedora.24-x64"
  1740. }
  1741. }
  1742. },
  1743. "runtime.native.System/4.3.0": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "1.1.0",
  1747. "Microsoft.NETCore.Targets": "1.1.0"
  1748. },
  1749. "compile": {
  1750. "lib/netstandard1.0/_._": {}
  1751. },
  1752. "runtime": {
  1753. "lib/netstandard1.0/_._": {}
  1754. }
  1755. },
  1756. "runtime.native.System.IO.Compression/4.3.0": {
  1757. "type": "package",
  1758. "dependencies": {
  1759. "Microsoft.NETCore.Platforms": "1.1.0",
  1760. "Microsoft.NETCore.Targets": "1.1.0"
  1761. },
  1762. "compile": {
  1763. "lib/netstandard1.0/_._": {}
  1764. },
  1765. "runtime": {
  1766. "lib/netstandard1.0/_._": {}
  1767. }
  1768. },
  1769. "runtime.native.System.Net.Http/4.3.0": {
  1770. "type": "package",
  1771. "dependencies": {
  1772. "Microsoft.NETCore.Platforms": "1.1.0",
  1773. "Microsoft.NETCore.Targets": "1.1.0"
  1774. },
  1775. "compile": {
  1776. "lib/netstandard1.0/_._": {}
  1777. },
  1778. "runtime": {
  1779. "lib/netstandard1.0/_._": {}
  1780. }
  1781. },
  1782. "runtime.native.System.Net.Security/4.0.1": {
  1783. "type": "package",
  1784. "dependencies": {
  1785. "Microsoft.NETCore.Platforms": "1.0.1",
  1786. "Microsoft.NETCore.Targets": "1.0.1"
  1787. },
  1788. "compile": {
  1789. "lib/netstandard1.0/_._": {}
  1790. },
  1791. "runtime": {
  1792. "lib/netstandard1.0/_._": {}
  1793. }
  1794. },
  1795. "runtime.native.System.Security.Cryptography/4.0.0": {
  1796. "type": "package",
  1797. "dependencies": {
  1798. "Microsoft.NETCore.Platforms": "1.0.1",
  1799. "Microsoft.NETCore.Targets": "1.0.1"
  1800. },
  1801. "compile": {
  1802. "lib/netstandard1.0/_._": {}
  1803. },
  1804. "runtime": {
  1805. "lib/netstandard1.0/_._": {}
  1806. }
  1807. },
  1808. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1809. "type": "package",
  1810. "dependencies": {
  1811. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1812. },
  1813. "compile": {
  1814. "lib/netstandard1.0/_._": {}
  1815. },
  1816. "runtime": {
  1817. "lib/netstandard1.0/_._": {}
  1818. }
  1819. },
  1820. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1821. "type": "package",
  1822. "dependencies": {
  1823. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1824. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1825. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1826. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1827. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1828. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1829. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1830. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1831. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1832. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1833. },
  1834. "compile": {
  1835. "lib/netstandard1.0/_._": {}
  1836. },
  1837. "runtime": {
  1838. "lib/netstandard1.0/_._": {}
  1839. }
  1840. },
  1841. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1842. "type": "package",
  1843. "runtimeTargets": {
  1844. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1845. "assetType": "native",
  1846. "rid": "opensuse.13.2-x64"
  1847. }
  1848. }
  1849. },
  1850. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1851. "type": "package",
  1852. "runtimeTargets": {
  1853. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1854. "assetType": "native",
  1855. "rid": "opensuse.42.1-x64"
  1856. }
  1857. }
  1858. },
  1859. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1860. "type": "package",
  1861. "runtimeTargets": {
  1862. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1863. "assetType": "native",
  1864. "rid": "osx.10.10-x64"
  1865. }
  1866. }
  1867. },
  1868. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1869. "type": "package",
  1870. "runtimeTargets": {
  1871. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1872. "assetType": "native",
  1873. "rid": "osx.10.10-x64"
  1874. }
  1875. }
  1876. },
  1877. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1878. "type": "package",
  1879. "runtimeTargets": {
  1880. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1881. "assetType": "native",
  1882. "rid": "rhel.7-x64"
  1883. }
  1884. }
  1885. },
  1886. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1887. "type": "package",
  1888. "runtimeTargets": {
  1889. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1890. "assetType": "native",
  1891. "rid": "ubuntu.14.04-x64"
  1892. }
  1893. }
  1894. },
  1895. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1896. "type": "package",
  1897. "runtimeTargets": {
  1898. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1899. "assetType": "native",
  1900. "rid": "ubuntu.16.04-x64"
  1901. }
  1902. }
  1903. },
  1904. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1905. "type": "package",
  1906. "runtimeTargets": {
  1907. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1908. "assetType": "native",
  1909. "rid": "ubuntu.16.10-x64"
  1910. }
  1911. }
  1912. },
  1913. "System.AppContext/4.3.0": {
  1914. "type": "package",
  1915. "dependencies": {
  1916. "System.Runtime": "4.3.0"
  1917. },
  1918. "compile": {
  1919. "ref/netstandard1.6/System.AppContext.dll": {}
  1920. },
  1921. "runtime": {
  1922. "lib/netstandard1.6/System.AppContext.dll": {}
  1923. }
  1924. },
  1925. "System.Buffers/4.3.0": {
  1926. "type": "package",
  1927. "dependencies": {
  1928. "System.Diagnostics.Debug": "4.3.0",
  1929. "System.Diagnostics.Tracing": "4.3.0",
  1930. "System.Resources.ResourceManager": "4.3.0",
  1931. "System.Runtime": "4.3.0",
  1932. "System.Threading": "4.3.0"
  1933. },
  1934. "compile": {
  1935. "lib/netstandard1.1/System.Buffers.dll": {}
  1936. },
  1937. "runtime": {
  1938. "lib/netstandard1.1/System.Buffers.dll": {}
  1939. }
  1940. },
  1941. "System.Collections/4.3.0": {
  1942. "type": "package",
  1943. "dependencies": {
  1944. "Microsoft.NETCore.Platforms": "1.1.0",
  1945. "Microsoft.NETCore.Targets": "1.1.0",
  1946. "System.Runtime": "4.3.0"
  1947. },
  1948. "compile": {
  1949. "ref/netstandard1.3/System.Collections.dll": {}
  1950. },
  1951. "runtime": {
  1952. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1953. }
  1954. },
  1955. "System.Collections.Concurrent/4.3.0": {
  1956. "type": "package",
  1957. "dependencies": {
  1958. "System.Collections": "4.3.0",
  1959. "System.Diagnostics.Debug": "4.3.0",
  1960. "System.Diagnostics.Tracing": "4.3.0",
  1961. "System.Globalization": "4.3.0",
  1962. "System.Reflection": "4.3.0",
  1963. "System.Resources.ResourceManager": "4.3.0",
  1964. "System.Runtime": "4.3.0",
  1965. "System.Runtime.Extensions": "4.3.0",
  1966. "System.Threading": "4.3.0",
  1967. "System.Threading.Tasks": "4.3.0"
  1968. },
  1969. "compile": {
  1970. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1971. },
  1972. "runtime": {
  1973. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1974. }
  1975. },
  1976. "System.Collections.Immutable/1.3.0": {
  1977. "type": "package",
  1978. "dependencies": {
  1979. "System.Collections": "4.3.0",
  1980. "System.Diagnostics.Debug": "4.3.0",
  1981. "System.Globalization": "4.3.0",
  1982. "System.Linq": "4.3.0",
  1983. "System.Resources.ResourceManager": "4.3.0",
  1984. "System.Runtime": "4.3.0",
  1985. "System.Runtime.Extensions": "4.3.0",
  1986. "System.Threading": "4.3.0"
  1987. },
  1988. "compile": {
  1989. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1990. },
  1991. "runtime": {
  1992. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1993. }
  1994. },
  1995. "System.Collections.NonGeneric/4.3.0": {
  1996. "type": "package",
  1997. "dependencies": {
  1998. "System.Diagnostics.Debug": "4.3.0",
  1999. "System.Globalization": "4.3.0",
  2000. "System.Resources.ResourceManager": "4.3.0",
  2001. "System.Runtime": "4.3.0",
  2002. "System.Runtime.Extensions": "4.3.0",
  2003. "System.Threading": "4.3.0"
  2004. },
  2005. "compile": {
  2006. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2007. },
  2008. "runtime": {
  2009. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2010. }
  2011. },
  2012. "System.Collections.Specialized/4.3.0": {
  2013. "type": "package",
  2014. "dependencies": {
  2015. "System.Collections.NonGeneric": "4.3.0",
  2016. "System.Globalization": "4.3.0",
  2017. "System.Globalization.Extensions": "4.3.0",
  2018. "System.Resources.ResourceManager": "4.3.0",
  2019. "System.Runtime": "4.3.0",
  2020. "System.Runtime.Extensions": "4.3.0",
  2021. "System.Threading": "4.3.0"
  2022. },
  2023. "compile": {
  2024. "ref/netstandard1.3/_._": {}
  2025. },
  2026. "runtime": {
  2027. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  2028. }
  2029. },
  2030. "System.ComponentModel/4.3.0": {
  2031. "type": "package",
  2032. "dependencies": {
  2033. "System.Runtime": "4.3.0"
  2034. },
  2035. "compile": {
  2036. "ref/netstandard1.0/System.ComponentModel.dll": {}
  2037. },
  2038. "runtime": {
  2039. "lib/netstandard1.3/System.ComponentModel.dll": {}
  2040. }
  2041. },
  2042. "System.ComponentModel.Annotations/4.3.0": {
  2043. "type": "package",
  2044. "dependencies": {
  2045. "System.Collections": "4.3.0",
  2046. "System.ComponentModel": "4.3.0",
  2047. "System.Globalization": "4.3.0",
  2048. "System.Linq": "4.3.0",
  2049. "System.Reflection": "4.3.0",
  2050. "System.Reflection.Extensions": "4.3.0",
  2051. "System.Resources.ResourceManager": "4.3.0",
  2052. "System.Runtime": "4.3.0",
  2053. "System.Runtime.Extensions": "4.3.0",
  2054. "System.Text.RegularExpressions": "4.3.0",
  2055. "System.Threading": "4.3.0"
  2056. },
  2057. "compile": {
  2058. "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  2059. },
  2060. "runtime": {
  2061. "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  2062. }
  2063. },
  2064. "System.ComponentModel.Primitives/4.3.0": {
  2065. "type": "package",
  2066. "dependencies": {
  2067. "System.ComponentModel": "4.3.0",
  2068. "System.Resources.ResourceManager": "4.3.0",
  2069. "System.Runtime": "4.3.0"
  2070. },
  2071. "compile": {
  2072. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2073. },
  2074. "runtime": {
  2075. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2076. }
  2077. },
  2078. "System.ComponentModel.TypeConverter/4.3.0": {
  2079. "type": "package",
  2080. "dependencies": {
  2081. "System.Collections": "4.3.0",
  2082. "System.Collections.NonGeneric": "4.3.0",
  2083. "System.Collections.Specialized": "4.3.0",
  2084. "System.ComponentModel": "4.3.0",
  2085. "System.ComponentModel.Primitives": "4.3.0",
  2086. "System.Globalization": "4.3.0",
  2087. "System.Linq": "4.3.0",
  2088. "System.Reflection": "4.3.0",
  2089. "System.Reflection.Extensions": "4.3.0",
  2090. "System.Reflection.Primitives": "4.3.0",
  2091. "System.Reflection.TypeExtensions": "4.3.0",
  2092. "System.Resources.ResourceManager": "4.3.0",
  2093. "System.Runtime": "4.3.0",
  2094. "System.Runtime.Extensions": "4.3.0",
  2095. "System.Threading": "4.3.0"
  2096. },
  2097. "compile": {
  2098. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  2099. },
  2100. "runtime": {
  2101. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  2102. }
  2103. },
  2104. "System.Console/4.3.0": {
  2105. "type": "package",
  2106. "dependencies": {
  2107. "Microsoft.NETCore.Platforms": "1.1.0",
  2108. "Microsoft.NETCore.Targets": "1.1.0",
  2109. "System.IO": "4.3.0",
  2110. "System.Runtime": "4.3.0",
  2111. "System.Text.Encoding": "4.3.0"
  2112. },
  2113. "compile": {
  2114. "ref/netstandard1.3/System.Console.dll": {}
  2115. }
  2116. },
  2117. "System.Data.Common/4.3.0": {
  2118. "type": "package",
  2119. "dependencies": {
  2120. "System.Collections": "4.3.0",
  2121. "System.Globalization": "4.3.0",
  2122. "System.IO": "4.3.0",
  2123. "System.Resources.ResourceManager": "4.3.0",
  2124. "System.Runtime": "4.3.0",
  2125. "System.Runtime.Extensions": "4.3.0",
  2126. "System.Text.RegularExpressions": "4.3.0",
  2127. "System.Threading.Tasks": "4.3.0"
  2128. },
  2129. "compile": {
  2130. "ref/netstandard1.2/System.Data.Common.dll": {}
  2131. },
  2132. "runtime": {
  2133. "lib/netstandard1.2/System.Data.Common.dll": {}
  2134. }
  2135. },
  2136. "System.Diagnostics.Contracts/4.3.0": {
  2137. "type": "package",
  2138. "dependencies": {
  2139. "System.Runtime": "4.3.0"
  2140. },
  2141. "compile": {
  2142. "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  2143. },
  2144. "runtime": {
  2145. "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  2146. }
  2147. },
  2148. "System.Diagnostics.Debug/4.3.0": {
  2149. "type": "package",
  2150. "dependencies": {
  2151. "Microsoft.NETCore.Platforms": "1.1.0",
  2152. "Microsoft.NETCore.Targets": "1.1.0",
  2153. "System.Runtime": "4.3.0"
  2154. },
  2155. "compile": {
  2156. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  2157. },
  2158. "runtime": {
  2159. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2160. }
  2161. },
  2162. "System.Diagnostics.DiagnosticSource/4.3.0": {
  2163. "type": "package",
  2164. "dependencies": {
  2165. "System.Collections": "4.3.0",
  2166. "System.Diagnostics.Tracing": "4.3.0",
  2167. "System.Reflection": "4.3.0",
  2168. "System.Runtime": "4.3.0",
  2169. "System.Threading": "4.3.0"
  2170. },
  2171. "compile": {
  2172. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  2173. },
  2174. "runtime": {
  2175. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  2176. }
  2177. },
  2178. "System.Diagnostics.FileVersionInfo/4.0.0": {
  2179. "type": "package",
  2180. "dependencies": {
  2181. "Microsoft.NETCore.Platforms": "1.0.1",
  2182. "System.Globalization": "4.0.11",
  2183. "System.IO": "4.1.0",
  2184. "System.IO.FileSystem": "4.0.1",
  2185. "System.IO.FileSystem.Primitives": "4.0.1",
  2186. "System.Reflection.Metadata": "1.3.0",
  2187. "System.Runtime": "4.1.0",
  2188. "System.Runtime.Extensions": "4.1.0",
  2189. "System.Runtime.InteropServices": "4.1.0"
  2190. },
  2191. "compile": {
  2192. "ref/netstandard1.3/_._": {}
  2193. },
  2194. "runtimeTargets": {
  2195. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  2196. "assetType": "runtime",
  2197. "rid": "unix"
  2198. },
  2199. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  2200. "assetType": "runtime",
  2201. "rid": "win"
  2202. }
  2203. }
  2204. },
  2205. "System.Diagnostics.Process/4.1.0": {
  2206. "type": "package",
  2207. "dependencies": {
  2208. "Microsoft.NETCore.Platforms": "1.0.1",
  2209. "Microsoft.Win32.Primitives": "4.0.1",
  2210. "Microsoft.Win32.Registry": "4.0.0",
  2211. "System.Collections": "4.0.11",
  2212. "System.Diagnostics.Debug": "4.0.11",
  2213. "System.Globalization": "4.0.11",
  2214. "System.IO": "4.1.0",
  2215. "System.IO.FileSystem": "4.0.1",
  2216. "System.IO.FileSystem.Primitives": "4.0.1",
  2217. "System.Resources.ResourceManager": "4.0.1",
  2218. "System.Runtime": "4.1.0",
  2219. "System.Runtime.Extensions": "4.1.0",
  2220. "System.Runtime.Handles": "4.0.1",
  2221. "System.Runtime.InteropServices": "4.1.0",
  2222. "System.Text.Encoding": "4.0.11",
  2223. "System.Text.Encoding.Extensions": "4.0.11",
  2224. "System.Threading": "4.0.11",
  2225. "System.Threading.Tasks": "4.0.11",
  2226. "System.Threading.Thread": "4.0.0",
  2227. "System.Threading.ThreadPool": "4.0.10",
  2228. "runtime.native.System": "4.0.0"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.4/System.Diagnostics.Process.dll": {}
  2232. },
  2233. "runtimeTargets": {
  2234. "runtimes/osx/lib/netstandard1.4/_._": {
  2235. "assetType": "runtime",
  2236. "rid": "osx"
  2237. }
  2238. }
  2239. },
  2240. "System.Diagnostics.StackTrace/4.3.0": {
  2241. "type": "package",
  2242. "dependencies": {
  2243. "System.IO.FileSystem": "4.3.0",
  2244. "System.Reflection": "4.3.0",
  2245. "System.Reflection.Metadata": "1.4.1",
  2246. "System.Runtime": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  2250. },
  2251. "runtime": {
  2252. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  2253. }
  2254. },
  2255. "System.Diagnostics.Tools/4.3.0": {
  2256. "type": "package",
  2257. "dependencies": {
  2258. "Microsoft.NETCore.Platforms": "1.1.0",
  2259. "Microsoft.NETCore.Targets": "1.1.0",
  2260. "System.Runtime": "4.3.0"
  2261. },
  2262. "compile": {
  2263. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  2264. },
  2265. "runtime": {
  2266. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2267. }
  2268. },
  2269. "System.Diagnostics.Tracing/4.3.0": {
  2270. "type": "package",
  2271. "dependencies": {
  2272. "Microsoft.NETCore.Platforms": "1.1.0",
  2273. "Microsoft.NETCore.Targets": "1.1.0",
  2274. "System.Runtime": "4.3.0"
  2275. },
  2276. "compile": {
  2277. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  2278. },
  2279. "runtime": {
  2280. "lib/portable-net45+win8+wpa81/_._": {}
  2281. }
  2282. },
  2283. "System.Dynamic.Runtime/4.3.0": {
  2284. "type": "package",
  2285. "dependencies": {
  2286. "System.Collections": "4.3.0",
  2287. "System.Diagnostics.Debug": "4.3.0",
  2288. "System.Linq": "4.3.0",
  2289. "System.Linq.Expressions": "4.3.0",
  2290. "System.ObjectModel": "4.3.0",
  2291. "System.Reflection": "4.3.0",
  2292. "System.Reflection.Emit": "4.3.0",
  2293. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2294. "System.Reflection.Primitives": "4.3.0",
  2295. "System.Reflection.TypeExtensions": "4.3.0",
  2296. "System.Resources.ResourceManager": "4.3.0",
  2297. "System.Runtime": "4.3.0",
  2298. "System.Runtime.Extensions": "4.3.0",
  2299. "System.Threading": "4.3.0"
  2300. },
  2301. "compile": {
  2302. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2303. },
  2304. "runtime": {
  2305. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2306. }
  2307. },
  2308. "System.Globalization/4.3.0": {
  2309. "type": "package",
  2310. "dependencies": {
  2311. "Microsoft.NETCore.Platforms": "1.1.0",
  2312. "Microsoft.NETCore.Targets": "1.1.0",
  2313. "System.Runtime": "4.3.0"
  2314. },
  2315. "compile": {
  2316. "ref/netstandard1.3/System.Globalization.dll": {}
  2317. },
  2318. "runtime": {
  2319. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2320. }
  2321. },
  2322. "System.Globalization.Calendars/4.3.0": {
  2323. "type": "package",
  2324. "dependencies": {
  2325. "Microsoft.NETCore.Platforms": "1.1.0",
  2326. "Microsoft.NETCore.Targets": "1.1.0",
  2327. "System.Globalization": "4.3.0",
  2328. "System.Runtime": "4.3.0"
  2329. },
  2330. "compile": {
  2331. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  2332. }
  2333. },
  2334. "System.Globalization.Extensions/4.3.0": {
  2335. "type": "package",
  2336. "dependencies": {
  2337. "Microsoft.NETCore.Platforms": "1.1.0",
  2338. "System.Globalization": "4.3.0",
  2339. "System.Resources.ResourceManager": "4.3.0",
  2340. "System.Runtime": "4.3.0",
  2341. "System.Runtime.Extensions": "4.3.0",
  2342. "System.Runtime.InteropServices": "4.3.0"
  2343. },
  2344. "compile": {
  2345. "ref/netstandard1.3/System.Globalization.Extensions.dll": {}
  2346. },
  2347. "runtimeTargets": {
  2348. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2349. "assetType": "runtime",
  2350. "rid": "unix"
  2351. },
  2352. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2353. "assetType": "runtime",
  2354. "rid": "win"
  2355. }
  2356. }
  2357. },
  2358. "System.Interactive.Async/3.0.0": {
  2359. "type": "package",
  2360. "dependencies": {
  2361. "System.Collections": "4.0.11",
  2362. "System.Diagnostics.Debug": "4.0.11",
  2363. "System.Linq": "4.1.0",
  2364. "System.Resources.ResourceManager": "4.0.1",
  2365. "System.Runtime": "4.1.0",
  2366. "System.Runtime.Extensions": "4.1.0",
  2367. "System.Threading": "4.0.11",
  2368. "System.Threading.Tasks": "4.0.11"
  2369. },
  2370. "compile": {
  2371. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  2372. },
  2373. "runtime": {
  2374. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  2375. }
  2376. },
  2377. "System.IO/4.3.0": {
  2378. "type": "package",
  2379. "dependencies": {
  2380. "Microsoft.NETCore.Platforms": "1.1.0",
  2381. "Microsoft.NETCore.Targets": "1.1.0",
  2382. "System.Runtime": "4.3.0",
  2383. "System.Text.Encoding": "4.3.0",
  2384. "System.Threading.Tasks": "4.3.0"
  2385. },
  2386. "compile": {
  2387. "ref/netstandard1.5/System.IO.dll": {}
  2388. },
  2389. "runtime": {
  2390. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2391. }
  2392. },
  2393. "System.IO.Compression/4.3.0": {
  2394. "type": "package",
  2395. "dependencies": {
  2396. "Microsoft.NETCore.Platforms": "1.1.0",
  2397. "System.Buffers": "4.3.0",
  2398. "System.Collections": "4.3.0",
  2399. "System.Diagnostics.Debug": "4.3.0",
  2400. "System.IO": "4.3.0",
  2401. "System.Resources.ResourceManager": "4.3.0",
  2402. "System.Runtime": "4.3.0",
  2403. "System.Runtime.Extensions": "4.3.0",
  2404. "System.Runtime.Handles": "4.3.0",
  2405. "System.Runtime.InteropServices": "4.3.0",
  2406. "System.Text.Encoding": "4.3.0",
  2407. "System.Threading": "4.3.0",
  2408. "System.Threading.Tasks": "4.3.0",
  2409. "runtime.native.System": "4.3.0",
  2410. "runtime.native.System.IO.Compression": "4.3.0"
  2411. },
  2412. "compile": {
  2413. "ref/netstandard1.3/System.IO.Compression.dll": {}
  2414. },
  2415. "runtime": {
  2416. "lib/portable-net45+win8+wpa81/_._": {}
  2417. },
  2418. "runtimeTargets": {
  2419. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2420. "assetType": "runtime",
  2421. "rid": "unix"
  2422. },
  2423. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2424. "assetType": "runtime",
  2425. "rid": "win"
  2426. }
  2427. }
  2428. },
  2429. "System.IO.Compression.ZipFile/4.3.0": {
  2430. "type": "package",
  2431. "dependencies": {
  2432. "System.Buffers": "4.3.0",
  2433. "System.IO": "4.3.0",
  2434. "System.IO.Compression": "4.3.0",
  2435. "System.IO.FileSystem": "4.3.0",
  2436. "System.IO.FileSystem.Primitives": "4.3.0",
  2437. "System.Resources.ResourceManager": "4.3.0",
  2438. "System.Runtime": "4.3.0",
  2439. "System.Runtime.Extensions": "4.3.0",
  2440. "System.Text.Encoding": "4.3.0"
  2441. },
  2442. "compile": {
  2443. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2444. },
  2445. "runtime": {
  2446. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2447. }
  2448. },
  2449. "System.IO.FileSystem/4.3.0": {
  2450. "type": "package",
  2451. "dependencies": {
  2452. "Microsoft.NETCore.Platforms": "1.1.0",
  2453. "Microsoft.NETCore.Targets": "1.1.0",
  2454. "System.IO": "4.3.0",
  2455. "System.IO.FileSystem.Primitives": "4.3.0",
  2456. "System.Runtime": "4.3.0",
  2457. "System.Runtime.Handles": "4.3.0",
  2458. "System.Text.Encoding": "4.3.0",
  2459. "System.Threading.Tasks": "4.3.0"
  2460. },
  2461. "compile": {
  2462. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  2463. }
  2464. },
  2465. "System.IO.FileSystem.Primitives/4.3.0": {
  2466. "type": "package",
  2467. "dependencies": {
  2468. "System.Runtime": "4.3.0"
  2469. },
  2470. "compile": {
  2471. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2472. },
  2473. "runtime": {
  2474. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2475. }
  2476. },
  2477. "System.IO.FileSystem.Watcher/4.3.0": {
  2478. "type": "package",
  2479. "dependencies": {
  2480. "Microsoft.NETCore.Platforms": "1.1.0",
  2481. "Microsoft.Win32.Primitives": "4.3.0",
  2482. "System.Collections": "4.3.0",
  2483. "System.IO.FileSystem": "4.3.0",
  2484. "System.IO.FileSystem.Primitives": "4.3.0",
  2485. "System.Resources.ResourceManager": "4.3.0",
  2486. "System.Runtime": "4.3.0",
  2487. "System.Runtime.Extensions": "4.3.0",
  2488. "System.Runtime.Handles": "4.3.0",
  2489. "System.Runtime.InteropServices": "4.3.0",
  2490. "System.Text.Encoding": "4.3.0",
  2491. "System.Threading": "4.3.0",
  2492. "System.Threading.Overlapped": "4.3.0",
  2493. "System.Threading.Tasks": "4.3.0",
  2494. "System.Threading.Thread": "4.3.0",
  2495. "runtime.native.System": "4.3.0"
  2496. },
  2497. "compile": {
  2498. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
  2499. },
  2500. "runtimeTargets": {
  2501. "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2502. "assetType": "runtime",
  2503. "rid": "linux"
  2504. },
  2505. "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2506. "assetType": "runtime",
  2507. "rid": "osx"
  2508. },
  2509. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2510. "assetType": "runtime",
  2511. "rid": "win"
  2512. }
  2513. }
  2514. },
  2515. "System.IO.MemoryMappedFiles/4.0.0": {
  2516. "type": "package",
  2517. "dependencies": {
  2518. "Microsoft.NETCore.Platforms": "1.0.1",
  2519. "System.IO": "4.1.0",
  2520. "System.IO.FileSystem": "4.0.1",
  2521. "System.IO.FileSystem.Primitives": "4.0.1",
  2522. "System.IO.UnmanagedMemoryStream": "4.0.1",
  2523. "System.Resources.ResourceManager": "4.0.1",
  2524. "System.Runtime": "4.1.0",
  2525. "System.Runtime.Extensions": "4.1.0",
  2526. "System.Runtime.Handles": "4.0.1",
  2527. "System.Runtime.InteropServices": "4.1.0",
  2528. "System.Threading": "4.0.11",
  2529. "System.Threading.Tasks": "4.0.11",
  2530. "runtime.native.System": "4.0.0"
  2531. },
  2532. "compile": {
  2533. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
  2534. },
  2535. "runtimeTargets": {
  2536. "runtimes/win/lib/netstandard1.3/_._": {
  2537. "assetType": "runtime",
  2538. "rid": "win"
  2539. }
  2540. }
  2541. },
  2542. "System.IO.UnmanagedMemoryStream/4.0.1": {
  2543. "type": "package",
  2544. "dependencies": {
  2545. "System.IO": "4.1.0",
  2546. "System.IO.FileSystem.Primitives": "4.0.1",
  2547. "System.Resources.ResourceManager": "4.0.1",
  2548. "System.Runtime": "4.1.0",
  2549. "System.Runtime.InteropServices": "4.1.0",
  2550. "System.Threading": "4.0.11",
  2551. "System.Threading.Tasks": "4.0.11"
  2552. },
  2553. "compile": {
  2554. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
  2555. },
  2556. "runtime": {
  2557. "lib/netstandard1.3/_._": {}
  2558. }
  2559. },
  2560. "System.Linq/4.3.0": {
  2561. "type": "package",
  2562. "dependencies": {
  2563. "System.Collections": "4.3.0",
  2564. "System.Diagnostics.Debug": "4.3.0",
  2565. "System.Resources.ResourceManager": "4.3.0",
  2566. "System.Runtime": "4.3.0",
  2567. "System.Runtime.Extensions": "4.3.0"
  2568. },
  2569. "compile": {
  2570. "ref/netstandard1.6/System.Linq.dll": {}
  2571. },
  2572. "runtime": {
  2573. "lib/netstandard1.6/System.Linq.dll": {}
  2574. }
  2575. },
  2576. "System.Linq.Expressions/4.3.0": {
  2577. "type": "package",
  2578. "dependencies": {
  2579. "System.Collections": "4.3.0",
  2580. "System.Diagnostics.Debug": "4.3.0",
  2581. "System.Globalization": "4.3.0",
  2582. "System.IO": "4.3.0",
  2583. "System.Linq": "4.3.0",
  2584. "System.ObjectModel": "4.3.0",
  2585. "System.Reflection": "4.3.0",
  2586. "System.Reflection.Emit": "4.3.0",
  2587. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2588. "System.Reflection.Emit.Lightweight": "4.3.0",
  2589. "System.Reflection.Extensions": "4.3.0",
  2590. "System.Reflection.Primitives": "4.3.0",
  2591. "System.Reflection.TypeExtensions": "4.3.0",
  2592. "System.Resources.ResourceManager": "4.3.0",
  2593. "System.Runtime": "4.3.0",
  2594. "System.Runtime.Extensions": "4.3.0",
  2595. "System.Threading": "4.3.0"
  2596. },
  2597. "compile": {
  2598. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  2599. },
  2600. "runtime": {
  2601. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2602. }
  2603. },
  2604. "System.Linq.Parallel/4.0.1": {
  2605. "type": "package",
  2606. "dependencies": {
  2607. "System.Collections": "4.0.11",
  2608. "System.Collections.Concurrent": "4.0.12",
  2609. "System.Diagnostics.Debug": "4.0.11",
  2610. "System.Diagnostics.Tracing": "4.1.0",
  2611. "System.Linq": "4.1.0",
  2612. "System.Resources.ResourceManager": "4.0.1",
  2613. "System.Runtime": "4.1.0",
  2614. "System.Runtime.Extensions": "4.1.0",
  2615. "System.Threading": "4.0.11",
  2616. "System.Threading.Tasks": "4.0.11"
  2617. },
  2618. "compile": {
  2619. "ref/netstandard1.1/System.Linq.Parallel.dll": {}
  2620. },
  2621. "runtime": {
  2622. "lib/netstandard1.3/_._": {}
  2623. }
  2624. },
  2625. "System.Linq.Queryable/4.3.0": {
  2626. "type": "package",
  2627. "dependencies": {
  2628. "System.Collections": "4.3.0",
  2629. "System.Diagnostics.Debug": "4.3.0",
  2630. "System.Linq": "4.3.0",
  2631. "System.Linq.Expressions": "4.3.0",
  2632. "System.Reflection": "4.3.0",
  2633. "System.Reflection.Extensions": "4.3.0",
  2634. "System.Resources.ResourceManager": "4.3.0",
  2635. "System.Runtime": "4.3.0"
  2636. },
  2637. "compile": {
  2638. "ref/netstandard1.0/System.Linq.Queryable.dll": {}
  2639. },
  2640. "runtime": {
  2641. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  2642. }
  2643. },
  2644. "System.Net.Http/4.3.0": {
  2645. "type": "package",
  2646. "dependencies": {
  2647. "Microsoft.NETCore.Platforms": "1.1.0",
  2648. "System.Collections": "4.3.0",
  2649. "System.Diagnostics.Debug": "4.3.0",
  2650. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2651. "System.Diagnostics.Tracing": "4.3.0",
  2652. "System.Globalization": "4.3.0",
  2653. "System.Globalization.Extensions": "4.3.0",
  2654. "System.IO": "4.3.0",
  2655. "System.IO.FileSystem": "4.3.0",
  2656. "System.Net.Primitives": "4.3.0",
  2657. "System.Resources.ResourceManager": "4.3.0",
  2658. "System.Runtime": "4.3.0",
  2659. "System.Runtime.Extensions": "4.3.0",
  2660. "System.Runtime.Handles": "4.3.0",
  2661. "System.Runtime.InteropServices": "4.3.0",
  2662. "System.Security.Cryptography.Algorithms": "4.3.0",
  2663. "System.Security.Cryptography.Encoding": "4.3.0",
  2664. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2665. "System.Security.Cryptography.Primitives": "4.3.0",
  2666. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2667. "System.Text.Encoding": "4.3.0",
  2668. "System.Threading": "4.3.0",
  2669. "System.Threading.Tasks": "4.3.0",
  2670. "runtime.native.System": "4.3.0",
  2671. "runtime.native.System.Net.Http": "4.3.0",
  2672. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2673. },
  2674. "compile": {
  2675. "ref/netstandard1.3/System.Net.Http.dll": {}
  2676. },
  2677. "runtime": {
  2678. "lib/portable-net45+win8+wpa81/_._": {}
  2679. },
  2680. "runtimeTargets": {
  2681. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2682. "assetType": "runtime",
  2683. "rid": "unix"
  2684. },
  2685. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2686. "assetType": "runtime",
  2687. "rid": "win"
  2688. }
  2689. }
  2690. },
  2691. "System.Net.NameResolution/4.0.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "Microsoft.NETCore.Platforms": "1.0.1",
  2695. "System.Collections": "4.0.11",
  2696. "System.Diagnostics.Tracing": "4.1.0",
  2697. "System.Globalization": "4.0.11",
  2698. "System.Net.Primitives": "4.0.11",
  2699. "System.Resources.ResourceManager": "4.0.1",
  2700. "System.Runtime": "4.1.0",
  2701. "System.Runtime.Extensions": "4.1.0",
  2702. "System.Runtime.Handles": "4.0.1",
  2703. "System.Runtime.InteropServices": "4.1.0",
  2704. "System.Security.Principal.Windows": "4.0.0",
  2705. "System.Threading": "4.0.11",
  2706. "System.Threading.Tasks": "4.0.11",
  2707. "runtime.native.System": "4.0.0"
  2708. },
  2709. "compile": {
  2710. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  2711. },
  2712. "runtimeTargets": {
  2713. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2714. "assetType": "runtime",
  2715. "rid": "unix"
  2716. },
  2717. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2718. "assetType": "runtime",
  2719. "rid": "win"
  2720. }
  2721. }
  2722. },
  2723. "System.Net.NetworkInformation/4.1.0": {
  2724. "type": "package",
  2725. "dependencies": {
  2726. "Microsoft.NETCore.Platforms": "1.0.1",
  2727. "Microsoft.Win32.Primitives": "4.0.1",
  2728. "System.Collections": "4.0.11",
  2729. "System.Diagnostics.Tracing": "4.1.0",
  2730. "System.Globalization": "4.0.11",
  2731. "System.IO": "4.1.0",
  2732. "System.IO.FileSystem": "4.0.1",
  2733. "System.IO.FileSystem.Primitives": "4.0.1",
  2734. "System.Linq": "4.1.0",
  2735. "System.Net.Primitives": "4.0.11",
  2736. "System.Net.Sockets": "4.1.0",
  2737. "System.Resources.ResourceManager": "4.0.1",
  2738. "System.Runtime": "4.1.0",
  2739. "System.Runtime.Extensions": "4.1.0",
  2740. "System.Runtime.Handles": "4.0.1",
  2741. "System.Runtime.InteropServices": "4.1.0",
  2742. "System.Security.Principal.Windows": "4.0.0",
  2743. "System.Threading": "4.0.11",
  2744. "System.Threading.Overlapped": "4.0.1",
  2745. "System.Threading.Tasks": "4.0.11",
  2746. "System.Threading.Thread": "4.0.0",
  2747. "System.Threading.ThreadPool": "4.0.10",
  2748. "runtime.native.System": "4.0.0"
  2749. },
  2750. "compile": {
  2751. "ref/netstandard1.3/System.Net.NetworkInformation.dll": {}
  2752. },
  2753. "runtime": {
  2754. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2755. },
  2756. "runtimeTargets": {
  2757. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2758. "assetType": "runtime",
  2759. "rid": "linux"
  2760. },
  2761. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2762. "assetType": "runtime",
  2763. "rid": "osx"
  2764. },
  2765. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2766. "assetType": "runtime",
  2767. "rid": "win"
  2768. }
  2769. }
  2770. },
  2771. "System.Net.Primitives/4.3.0": {
  2772. "type": "package",
  2773. "dependencies": {
  2774. "Microsoft.NETCore.Platforms": "1.1.0",
  2775. "Microsoft.NETCore.Targets": "1.1.0",
  2776. "System.Runtime": "4.3.0",
  2777. "System.Runtime.Handles": "4.3.0"
  2778. },
  2779. "compile": {
  2780. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2781. },
  2782. "runtime": {
  2783. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2784. }
  2785. },
  2786. "System.Net.Requests/4.0.11": {
  2787. "type": "package",
  2788. "dependencies": {
  2789. "Microsoft.NETCore.Platforms": "1.0.1",
  2790. "System.Collections": "4.0.11",
  2791. "System.Diagnostics.Debug": "4.0.11",
  2792. "System.Diagnostics.Tracing": "4.1.0",
  2793. "System.Globalization": "4.0.11",
  2794. "System.IO": "4.1.0",
  2795. "System.Net.Http": "4.1.0",
  2796. "System.Net.Primitives": "4.0.11",
  2797. "System.Net.WebHeaderCollection": "4.0.1",
  2798. "System.Resources.ResourceManager": "4.0.1",
  2799. "System.Runtime": "4.1.0",
  2800. "System.Threading": "4.0.11",
  2801. "System.Threading.Tasks": "4.0.11"
  2802. },
  2803. "compile": {
  2804. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2805. },
  2806. "runtime": {
  2807. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2808. },
  2809. "runtimeTargets": {
  2810. "runtimes/win/lib/netstandard1.3/_._": {
  2811. "assetType": "runtime",
  2812. "rid": "win"
  2813. }
  2814. }
  2815. },
  2816. "System.Net.Security/4.0.0": {
  2817. "type": "package",
  2818. "dependencies": {
  2819. "Microsoft.NETCore.Platforms": "1.0.1",
  2820. "Microsoft.Win32.Primitives": "4.0.1",
  2821. "System.Collections": "4.0.11",
  2822. "System.Collections.Concurrent": "4.0.12",
  2823. "System.Diagnostics.Tracing": "4.1.0",
  2824. "System.Globalization": "4.0.11",
  2825. "System.Globalization.Extensions": "4.0.1",
  2826. "System.IO": "4.1.0",
  2827. "System.Net.Primitives": "4.0.11",
  2828. "System.Resources.ResourceManager": "4.0.1",
  2829. "System.Runtime": "4.1.0",
  2830. "System.Runtime.Extensions": "4.1.0",
  2831. "System.Runtime.Handles": "4.0.1",
  2832. "System.Runtime.InteropServices": "4.1.0",
  2833. "System.Security.Claims": "4.0.1",
  2834. "System.Security.Cryptography.Algorithms": "4.2.0",
  2835. "System.Security.Cryptography.Encoding": "4.0.0",
  2836. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2837. "System.Security.Cryptography.Primitives": "4.0.0",
  2838. "System.Security.Cryptography.X509Certificates": "4.1.0",
  2839. "System.Security.Principal": "4.0.1",
  2840. "System.Text.Encoding": "4.0.11",
  2841. "System.Threading": "4.0.11",
  2842. "System.Threading.Tasks": "4.0.11",
  2843. "System.Threading.ThreadPool": "4.0.10",
  2844. "runtime.native.System": "4.0.0",
  2845. "runtime.native.System.Net.Security": "4.0.1",
  2846. "runtime.native.System.Security.Cryptography": "4.0.0"
  2847. },
  2848. "compile": {
  2849. "ref/netstandard1.3/System.Net.Security.dll": {}
  2850. },
  2851. "runtimeTargets": {
  2852. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2853. "assetType": "runtime",
  2854. "rid": "unix"
  2855. },
  2856. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2857. "assetType": "runtime",
  2858. "rid": "win"
  2859. }
  2860. }
  2861. },
  2862. "System.Net.Sockets/4.3.0": {
  2863. "type": "package",
  2864. "dependencies": {
  2865. "Microsoft.NETCore.Platforms": "1.1.0",
  2866. "Microsoft.NETCore.Targets": "1.1.0",
  2867. "System.IO": "4.3.0",
  2868. "System.Net.Primitives": "4.3.0",
  2869. "System.Runtime": "4.3.0",
  2870. "System.Threading.Tasks": "4.3.0"
  2871. },
  2872. "compile": {
  2873. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2874. }
  2875. },
  2876. "System.Net.WebHeaderCollection/4.0.1": {
  2877. "type": "package",
  2878. "dependencies": {
  2879. "System.Collections": "4.0.11",
  2880. "System.Resources.ResourceManager": "4.0.1",
  2881. "System.Runtime": "4.1.0",
  2882. "System.Runtime.Extensions": "4.1.0"
  2883. },
  2884. "compile": {
  2885. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2886. },
  2887. "runtime": {
  2888. "lib/netstandard1.3/_._": {}
  2889. }
  2890. },
  2891. "System.Net.WebSockets/4.3.0": {
  2892. "type": "package",
  2893. "dependencies": {
  2894. "Microsoft.Win32.Primitives": "4.3.0",
  2895. "System.Resources.ResourceManager": "4.3.0",
  2896. "System.Runtime": "4.3.0",
  2897. "System.Threading.Tasks": "4.3.0"
  2898. },
  2899. "compile": {
  2900. "ref/netstandard1.3/System.Net.WebSockets.dll": {}
  2901. },
  2902. "runtime": {
  2903. "lib/netstandard1.3/System.Net.WebSockets.dll": {}
  2904. }
  2905. },
  2906. "System.Numerics.Vectors/4.3.0": {
  2907. "type": "package",
  2908. "dependencies": {
  2909. "System.Globalization": "4.3.0",
  2910. "System.Resources.ResourceManager": "4.3.0",
  2911. "System.Runtime": "4.3.0",
  2912. "System.Runtime.Extensions": "4.3.0"
  2913. },
  2914. "compile": {
  2915. "ref/netstandard1.0/System.Numerics.Vectors.dll": {}
  2916. },
  2917. "runtime": {
  2918. "lib/netstandard1.0/System.Numerics.Vectors.dll": {}
  2919. }
  2920. },
  2921. "System.ObjectModel/4.3.0": {
  2922. "type": "package",
  2923. "dependencies": {
  2924. "System.Collections": "4.3.0",
  2925. "System.Diagnostics.Debug": "4.3.0",
  2926. "System.Resources.ResourceManager": "4.3.0",
  2927. "System.Runtime": "4.3.0",
  2928. "System.Threading": "4.3.0"
  2929. },
  2930. "compile": {
  2931. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2932. },
  2933. "runtime": {
  2934. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2935. }
  2936. },
  2937. "System.Reflection/4.3.0": {
  2938. "type": "package",
  2939. "dependencies": {
  2940. "Microsoft.NETCore.Platforms": "1.1.0",
  2941. "Microsoft.NETCore.Targets": "1.1.0",
  2942. "System.IO": "4.3.0",
  2943. "System.Reflection.Primitives": "4.3.0",
  2944. "System.Runtime": "4.3.0"
  2945. },
  2946. "compile": {
  2947. "ref/netstandard1.5/System.Reflection.dll": {}
  2948. },
  2949. "runtime": {
  2950. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2951. }
  2952. },
  2953. "System.Reflection.DispatchProxy/4.0.1": {
  2954. "type": "package",
  2955. "dependencies": {
  2956. "System.Collections": "4.0.11",
  2957. "System.Linq": "4.1.0",
  2958. "System.Reflection": "4.1.0",
  2959. "System.Reflection.Emit": "4.0.1",
  2960. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2961. "System.Reflection.Extensions": "4.0.1",
  2962. "System.Reflection.Primitives": "4.0.1",
  2963. "System.Resources.ResourceManager": "4.0.1",
  2964. "System.Runtime": "4.1.0",
  2965. "System.Threading": "4.0.11"
  2966. },
  2967. "compile": {
  2968. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
  2969. },
  2970. "runtime": {
  2971. "lib/netstandard1.3/_._": {}
  2972. }
  2973. },
  2974. "System.Reflection.Emit/4.3.0": {
  2975. "type": "package",
  2976. "dependencies": {
  2977. "System.IO": "4.3.0",
  2978. "System.Reflection": "4.3.0",
  2979. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2980. "System.Reflection.Primitives": "4.3.0",
  2981. "System.Runtime": "4.3.0"
  2982. },
  2983. "compile": {
  2984. "ref/netstandard1.1/System.Reflection.Emit.dll": {}
  2985. },
  2986. "runtime": {
  2987. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2988. }
  2989. },
  2990. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2991. "type": "package",
  2992. "dependencies": {
  2993. "System.Reflection": "4.3.0",
  2994. "System.Reflection.Primitives": "4.3.0",
  2995. "System.Runtime": "4.3.0"
  2996. },
  2997. "compile": {
  2998. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2999. },
  3000. "runtime": {
  3001. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  3002. }
  3003. },
  3004. "System.Reflection.Emit.Lightweight/4.3.0": {
  3005. "type": "package",
  3006. "dependencies": {
  3007. "System.Reflection": "4.3.0",
  3008. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3009. "System.Reflection.Primitives": "4.3.0",
  3010. "System.Runtime": "4.3.0"
  3011. },
  3012. "compile": {
  3013. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  3014. },
  3015. "runtime": {
  3016. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  3017. }
  3018. },
  3019. "System.Reflection.Extensions/4.3.0": {
  3020. "type": "package",
  3021. "dependencies": {
  3022. "Microsoft.NETCore.Platforms": "1.1.0",
  3023. "Microsoft.NETCore.Targets": "1.1.0",
  3024. "System.Reflection": "4.3.0",
  3025. "System.Runtime": "4.3.0"
  3026. },
  3027. "compile": {
  3028. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  3029. },
  3030. "runtime": {
  3031. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3032. }
  3033. },
  3034. "System.Reflection.Metadata/1.4.1": {
  3035. "type": "package",
  3036. "dependencies": {
  3037. "System.Collections": "4.3.0",
  3038. "System.Collections.Immutable": "1.3.0",
  3039. "System.Diagnostics.Debug": "4.3.0",
  3040. "System.IO": "4.3.0",
  3041. "System.IO.Compression": "4.3.0",
  3042. "System.Linq": "4.3.0",
  3043. "System.Reflection": "4.3.0",
  3044. "System.Reflection.Extensions": "4.3.0",
  3045. "System.Reflection.Primitives": "4.3.0",
  3046. "System.Resources.ResourceManager": "4.3.0",
  3047. "System.Runtime": "4.3.0",
  3048. "System.Runtime.Extensions": "4.3.0",
  3049. "System.Runtime.InteropServices": "4.3.0",
  3050. "System.Text.Encoding": "4.3.0",
  3051. "System.Text.Encoding.Extensions": "4.3.0",
  3052. "System.Threading": "4.3.0"
  3053. },
  3054. "compile": {
  3055. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  3056. },
  3057. "runtime": {
  3058. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  3059. }
  3060. },
  3061. "System.Reflection.Primitives/4.3.0": {
  3062. "type": "package",
  3063. "dependencies": {
  3064. "Microsoft.NETCore.Platforms": "1.1.0",
  3065. "Microsoft.NETCore.Targets": "1.1.0",
  3066. "System.Runtime": "4.3.0"
  3067. },
  3068. "compile": {
  3069. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  3070. },
  3071. "runtime": {
  3072. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3073. }
  3074. },
  3075. "System.Reflection.TypeExtensions/4.3.0": {
  3076. "type": "package",
  3077. "dependencies": {
  3078. "System.Reflection": "4.3.0",
  3079. "System.Runtime": "4.3.0"
  3080. },
  3081. "compile": {
  3082. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  3083. },
  3084. "runtime": {
  3085. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  3086. }
  3087. },
  3088. "System.Resources.Reader/4.3.0": {
  3089. "type": "package",
  3090. "dependencies": {
  3091. "System.IO": "4.3.0",
  3092. "System.Resources.ResourceManager": "4.3.0",
  3093. "System.Runtime": "4.3.0",
  3094. "System.Text.Encoding": "4.3.0",
  3095. "System.Threading": "4.3.0"
  3096. },
  3097. "compile": {
  3098. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  3099. },
  3100. "runtime": {
  3101. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  3102. }
  3103. },
  3104. "System.Resources.ResourceManager/4.3.0": {
  3105. "type": "package",
  3106. "dependencies": {
  3107. "Microsoft.NETCore.Platforms": "1.1.0",
  3108. "Microsoft.NETCore.Targets": "1.1.0",
  3109. "System.Globalization": "4.3.0",
  3110. "System.Reflection": "4.3.0",
  3111. "System.Runtime": "4.3.0"
  3112. },
  3113. "compile": {
  3114. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  3115. },
  3116. "runtime": {
  3117. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3118. }
  3119. },
  3120. "System.Runtime/4.3.0": {
  3121. "type": "package",
  3122. "dependencies": {
  3123. "Microsoft.NETCore.Platforms": "1.1.0",
  3124. "Microsoft.NETCore.Targets": "1.1.0"
  3125. },
  3126. "compile": {
  3127. "ref/netstandard1.5/System.Runtime.dll": {}
  3128. },
  3129. "runtime": {
  3130. "lib/portable-net45+win8+wp80+wpa81/_._": {}
  3131. }
  3132. },
  3133. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  3134. "type": "package",
  3135. "dependencies": {
  3136. "System.Runtime": "4.3.0"
  3137. },
  3138. "compile": {
  3139. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  3140. },
  3141. "runtime": {
  3142. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  3143. }
  3144. },
  3145. "System.Runtime.Extensions/4.3.0": {
  3146. "type": "package",
  3147. "dependencies": {
  3148. "Microsoft.NETCore.Platforms": "1.1.0",
  3149. "Microsoft.NETCore.Targets": "1.1.0",
  3150. "System.Runtime": "4.3.0"
  3151. },
  3152. "compile": {
  3153. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  3154. },
  3155. "runtime": {
  3156. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3157. }
  3158. },
  3159. "System.Runtime.Handles/4.3.0": {
  3160. "type": "package",
  3161. "dependencies": {
  3162. "Microsoft.NETCore.Platforms": "1.1.0",
  3163. "Microsoft.NETCore.Targets": "1.1.0",
  3164. "System.Runtime": "4.3.0"
  3165. },
  3166. "compile": {
  3167. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  3168. }
  3169. },
  3170. "System.Runtime.InteropServices/4.3.0": {
  3171. "type": "package",
  3172. "dependencies": {
  3173. "Microsoft.NETCore.Platforms": "1.1.0",
  3174. "Microsoft.NETCore.Targets": "1.1.0",
  3175. "System.Reflection": "4.3.0",
  3176. "System.Reflection.Primitives": "4.3.0",
  3177. "System.Runtime": "4.3.0",
  3178. "System.Runtime.Handles": "4.3.0"
  3179. },
  3180. "compile": {
  3181. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  3182. },
  3183. "runtime": {
  3184. "lib/portable-net45+win8+wpa81/_._": {}
  3185. }
  3186. },
  3187. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  3188. "type": "package",
  3189. "dependencies": {
  3190. "System.Reflection": "4.3.0",
  3191. "System.Reflection.Extensions": "4.3.0",
  3192. "System.Resources.ResourceManager": "4.3.0",
  3193. "System.Runtime": "4.3.0",
  3194. "System.Runtime.InteropServices": "4.3.0",
  3195. "System.Threading": "4.3.0",
  3196. "runtime.native.System": "4.3.0"
  3197. },
  3198. "compile": {
  3199. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3200. },
  3201. "runtime": {
  3202. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3203. },
  3204. "runtimeTargets": {
  3205. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3206. "assetType": "runtime",
  3207. "rid": "unix"
  3208. },
  3209. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3210. "assetType": "runtime",
  3211. "rid": "win"
  3212. }
  3213. }
  3214. },
  3215. "System.Runtime.Loader/4.3.0": {
  3216. "type": "package",
  3217. "dependencies": {
  3218. "System.IO": "4.3.0",
  3219. "System.Reflection": "4.3.0",
  3220. "System.Runtime": "4.3.0"
  3221. },
  3222. "compile": {
  3223. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  3224. },
  3225. "runtime": {
  3226. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  3227. }
  3228. },
  3229. "System.Runtime.Numerics/4.3.0": {
  3230. "type": "package",
  3231. "dependencies": {
  3232. "System.Globalization": "4.3.0",
  3233. "System.Resources.ResourceManager": "4.3.0",
  3234. "System.Runtime": "4.3.0",
  3235. "System.Runtime.Extensions": "4.3.0"
  3236. },
  3237. "compile": {
  3238. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  3239. },
  3240. "runtime": {
  3241. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3242. }
  3243. },
  3244. "System.Runtime.Serialization.Primitives/4.3.0": {
  3245. "type": "package",
  3246. "dependencies": {
  3247. "System.Resources.ResourceManager": "4.3.0",
  3248. "System.Runtime": "4.3.0"
  3249. },
  3250. "compile": {
  3251. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3252. },
  3253. "runtime": {
  3254. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3255. }
  3256. },
  3257. "System.Security.Claims/4.3.0": {
  3258. "type": "package",
  3259. "dependencies": {
  3260. "System.Collections": "4.3.0",
  3261. "System.Globalization": "4.3.0",
  3262. "System.IO": "4.3.0",
  3263. "System.Resources.ResourceManager": "4.3.0",
  3264. "System.Runtime": "4.3.0",
  3265. "System.Runtime.Extensions": "4.3.0",
  3266. "System.Security.Principal": "4.3.0"
  3267. },
  3268. "compile": {
  3269. "ref/netstandard1.3/System.Security.Claims.dll": {}
  3270. },
  3271. "runtime": {
  3272. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3273. }
  3274. },
  3275. "System.Security.Cryptography.Algorithms/4.3.0": {
  3276. "type": "package",
  3277. "dependencies": {
  3278. "Microsoft.NETCore.Platforms": "1.1.0",
  3279. "System.Collections": "4.3.0",
  3280. "System.IO": "4.3.0",
  3281. "System.Resources.ResourceManager": "4.3.0",
  3282. "System.Runtime": "4.3.0",
  3283. "System.Runtime.Extensions": "4.3.0",
  3284. "System.Runtime.Handles": "4.3.0",
  3285. "System.Runtime.InteropServices": "4.3.0",
  3286. "System.Runtime.Numerics": "4.3.0",
  3287. "System.Security.Cryptography.Encoding": "4.3.0",
  3288. "System.Security.Cryptography.Primitives": "4.3.0",
  3289. "System.Text.Encoding": "4.3.0",
  3290. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3291. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3292. },
  3293. "compile": {
  3294. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3295. },
  3296. "runtimeTargets": {
  3297. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3298. "assetType": "runtime",
  3299. "rid": "osx"
  3300. },
  3301. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3302. "assetType": "runtime",
  3303. "rid": "unix"
  3304. },
  3305. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3306. "assetType": "runtime",
  3307. "rid": "win"
  3308. }
  3309. }
  3310. },
  3311. "System.Security.Cryptography.Cng/4.3.0": {
  3312. "type": "package",
  3313. "dependencies": {
  3314. "Microsoft.NETCore.Platforms": "1.1.0",
  3315. "System.IO": "4.3.0",
  3316. "System.Resources.ResourceManager": "4.3.0",
  3317. "System.Runtime": "4.3.0",
  3318. "System.Runtime.Extensions": "4.3.0",
  3319. "System.Runtime.Handles": "4.3.0",
  3320. "System.Runtime.InteropServices": "4.3.0",
  3321. "System.Security.Cryptography.Algorithms": "4.3.0",
  3322. "System.Security.Cryptography.Encoding": "4.3.0",
  3323. "System.Security.Cryptography.Primitives": "4.3.0",
  3324. "System.Text.Encoding": "4.3.0"
  3325. },
  3326. "compile": {
  3327. "ref/netstandard1.6/_._": {}
  3328. },
  3329. "runtimeTargets": {
  3330. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3331. "assetType": "runtime",
  3332. "rid": "unix"
  3333. },
  3334. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3335. "assetType": "runtime",
  3336. "rid": "win"
  3337. }
  3338. }
  3339. },
  3340. "System.Security.Cryptography.Csp/4.3.0": {
  3341. "type": "package",
  3342. "dependencies": {
  3343. "Microsoft.NETCore.Platforms": "1.1.0",
  3344. "System.IO": "4.3.0",
  3345. "System.Reflection": "4.3.0",
  3346. "System.Resources.ResourceManager": "4.3.0",
  3347. "System.Runtime": "4.3.0",
  3348. "System.Runtime.Extensions": "4.3.0",
  3349. "System.Runtime.Handles": "4.3.0",
  3350. "System.Runtime.InteropServices": "4.3.0",
  3351. "System.Security.Cryptography.Algorithms": "4.3.0",
  3352. "System.Security.Cryptography.Encoding": "4.3.0",
  3353. "System.Security.Cryptography.Primitives": "4.3.0",
  3354. "System.Text.Encoding": "4.3.0",
  3355. "System.Threading": "4.3.0"
  3356. },
  3357. "compile": {
  3358. "ref/netstandard1.3/_._": {}
  3359. },
  3360. "runtimeTargets": {
  3361. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3362. "assetType": "runtime",
  3363. "rid": "unix"
  3364. },
  3365. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3366. "assetType": "runtime",
  3367. "rid": "win"
  3368. }
  3369. }
  3370. },
  3371. "System.Security.Cryptography.Encoding/4.3.0": {
  3372. "type": "package",
  3373. "dependencies": {
  3374. "Microsoft.NETCore.Platforms": "1.1.0",
  3375. "System.Collections": "4.3.0",
  3376. "System.Collections.Concurrent": "4.3.0",
  3377. "System.Linq": "4.3.0",
  3378. "System.Resources.ResourceManager": "4.3.0",
  3379. "System.Runtime": "4.3.0",
  3380. "System.Runtime.Extensions": "4.3.0",
  3381. "System.Runtime.Handles": "4.3.0",
  3382. "System.Runtime.InteropServices": "4.3.0",
  3383. "System.Security.Cryptography.Primitives": "4.3.0",
  3384. "System.Text.Encoding": "4.3.0",
  3385. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3386. },
  3387. "compile": {
  3388. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  3389. },
  3390. "runtimeTargets": {
  3391. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3392. "assetType": "runtime",
  3393. "rid": "unix"
  3394. },
  3395. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3396. "assetType": "runtime",
  3397. "rid": "win"
  3398. }
  3399. }
  3400. },
  3401. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3402. "type": "package",
  3403. "dependencies": {
  3404. "System.Collections": "4.3.0",
  3405. "System.IO": "4.3.0",
  3406. "System.Resources.ResourceManager": "4.3.0",
  3407. "System.Runtime": "4.3.0",
  3408. "System.Runtime.Extensions": "4.3.0",
  3409. "System.Runtime.Handles": "4.3.0",
  3410. "System.Runtime.InteropServices": "4.3.0",
  3411. "System.Runtime.Numerics": "4.3.0",
  3412. "System.Security.Cryptography.Algorithms": "4.3.0",
  3413. "System.Security.Cryptography.Encoding": "4.3.0",
  3414. "System.Security.Cryptography.Primitives": "4.3.0",
  3415. "System.Text.Encoding": "4.3.0",
  3416. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3417. },
  3418. "compile": {
  3419. "ref/netstandard1.6/_._": {}
  3420. },
  3421. "runtime": {
  3422. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3423. },
  3424. "runtimeTargets": {
  3425. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3426. "assetType": "runtime",
  3427. "rid": "unix"
  3428. }
  3429. }
  3430. },
  3431. "System.Security.Cryptography.Primitives/4.3.0": {
  3432. "type": "package",
  3433. "dependencies": {
  3434. "System.Diagnostics.Debug": "4.3.0",
  3435. "System.Globalization": "4.3.0",
  3436. "System.IO": "4.3.0",
  3437. "System.Resources.ResourceManager": "4.3.0",
  3438. "System.Runtime": "4.3.0",
  3439. "System.Threading": "4.3.0",
  3440. "System.Threading.Tasks": "4.3.0"
  3441. },
  3442. "compile": {
  3443. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3444. },
  3445. "runtime": {
  3446. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3447. }
  3448. },
  3449. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3450. "type": "package",
  3451. "dependencies": {
  3452. "Microsoft.NETCore.Platforms": "1.1.0",
  3453. "System.Collections": "4.3.0",
  3454. "System.Diagnostics.Debug": "4.3.0",
  3455. "System.Globalization": "4.3.0",
  3456. "System.Globalization.Calendars": "4.3.0",
  3457. "System.IO": "4.3.0",
  3458. "System.IO.FileSystem": "4.3.0",
  3459. "System.IO.FileSystem.Primitives": "4.3.0",
  3460. "System.Resources.ResourceManager": "4.3.0",
  3461. "System.Runtime": "4.3.0",
  3462. "System.Runtime.Extensions": "4.3.0",
  3463. "System.Runtime.Handles": "4.3.0",
  3464. "System.Runtime.InteropServices": "4.3.0",
  3465. "System.Runtime.Numerics": "4.3.0",
  3466. "System.Security.Cryptography.Algorithms": "4.3.0",
  3467. "System.Security.Cryptography.Cng": "4.3.0",
  3468. "System.Security.Cryptography.Csp": "4.3.0",
  3469. "System.Security.Cryptography.Encoding": "4.3.0",
  3470. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3471. "System.Security.Cryptography.Primitives": "4.3.0",
  3472. "System.Text.Encoding": "4.3.0",
  3473. "System.Threading": "4.3.0",
  3474. "runtime.native.System": "4.3.0",
  3475. "runtime.native.System.Net.Http": "4.3.0",
  3476. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3477. },
  3478. "compile": {
  3479. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  3480. },
  3481. "runtimeTargets": {
  3482. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3483. "assetType": "runtime",
  3484. "rid": "unix"
  3485. },
  3486. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3487. "assetType": "runtime",
  3488. "rid": "win"
  3489. }
  3490. }
  3491. },
  3492. "System.Security.Principal/4.3.0": {
  3493. "type": "package",
  3494. "dependencies": {
  3495. "System.Runtime": "4.3.0"
  3496. },
  3497. "compile": {
  3498. "ref/netstandard1.0/System.Security.Principal.dll": {}
  3499. },
  3500. "runtime": {
  3501. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3502. }
  3503. },
  3504. "System.Security.Principal.Windows/4.3.0": {
  3505. "type": "package",
  3506. "dependencies": {
  3507. "Microsoft.NETCore.Platforms": "1.1.0",
  3508. "Microsoft.Win32.Primitives": "4.3.0",
  3509. "System.Collections": "4.3.0",
  3510. "System.Diagnostics.Debug": "4.3.0",
  3511. "System.Reflection": "4.3.0",
  3512. "System.Resources.ResourceManager": "4.3.0",
  3513. "System.Runtime": "4.3.0",
  3514. "System.Runtime.Extensions": "4.3.0",
  3515. "System.Runtime.Handles": "4.3.0",
  3516. "System.Runtime.InteropServices": "4.3.0",
  3517. "System.Security.Claims": "4.3.0",
  3518. "System.Security.Principal": "4.3.0",
  3519. "System.Text.Encoding": "4.3.0",
  3520. "System.Threading": "4.3.0"
  3521. },
  3522. "compile": {
  3523. "ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
  3524. },
  3525. "runtimeTargets": {
  3526. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3527. "assetType": "runtime",
  3528. "rid": "unix"
  3529. },
  3530. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3531. "assetType": "runtime",
  3532. "rid": "win"
  3533. }
  3534. }
  3535. },
  3536. "System.Text.Encoding/4.3.0": {
  3537. "type": "package",
  3538. "dependencies": {
  3539. "Microsoft.NETCore.Platforms": "1.1.0",
  3540. "Microsoft.NETCore.Targets": "1.1.0",
  3541. "System.Runtime": "4.3.0"
  3542. },
  3543. "compile": {
  3544. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  3545. },
  3546. "runtime": {
  3547. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3548. }
  3549. },
  3550. "System.Text.Encoding.CodePages/4.0.1": {
  3551. "type": "package",
  3552. "dependencies": {
  3553. "Microsoft.NETCore.Platforms": "1.0.1",
  3554. "System.Collections": "4.0.11",
  3555. "System.Globalization": "4.0.11",
  3556. "System.IO": "4.1.0",
  3557. "System.Reflection": "4.1.0",
  3558. "System.Resources.ResourceManager": "4.0.1",
  3559. "System.Runtime": "4.1.0",
  3560. "System.Runtime.Extensions": "4.1.0",
  3561. "System.Runtime.Handles": "4.0.1",
  3562. "System.Runtime.InteropServices": "4.1.0",
  3563. "System.Text.Encoding": "4.0.11",
  3564. "System.Threading": "4.0.11"
  3565. },
  3566. "compile": {
  3567. "ref/netstandard1.3/_._": {}
  3568. },
  3569. "runtimeTargets": {
  3570. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  3571. "assetType": "runtime",
  3572. "rid": "unix"
  3573. },
  3574. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  3575. "assetType": "runtime",
  3576. "rid": "win"
  3577. }
  3578. }
  3579. },
  3580. "System.Text.Encoding.Extensions/4.3.0": {
  3581. "type": "package",
  3582. "dependencies": {
  3583. "Microsoft.NETCore.Platforms": "1.1.0",
  3584. "Microsoft.NETCore.Targets": "1.1.0",
  3585. "System.Runtime": "4.3.0",
  3586. "System.Text.Encoding": "4.3.0"
  3587. },
  3588. "compile": {
  3589. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  3590. },
  3591. "runtime": {
  3592. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3593. }
  3594. },
  3595. "System.Text.Encodings.Web/4.3.0": {
  3596. "type": "package",
  3597. "dependencies": {
  3598. "System.Diagnostics.Debug": "4.3.0",
  3599. "System.IO": "4.3.0",
  3600. "System.Reflection": "4.3.0",
  3601. "System.Resources.ResourceManager": "4.3.0",
  3602. "System.Runtime": "4.3.0",
  3603. "System.Runtime.Extensions": "4.3.0",
  3604. "System.Threading": "4.3.0"
  3605. },
  3606. "compile": {
  3607. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3608. },
  3609. "runtime": {
  3610. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3611. }
  3612. },
  3613. "System.Text.RegularExpressions/4.3.0": {
  3614. "type": "package",
  3615. "dependencies": {
  3616. "System.Collections": "4.3.0",
  3617. "System.Globalization": "4.3.0",
  3618. "System.Resources.ResourceManager": "4.3.0",
  3619. "System.Runtime": "4.3.0",
  3620. "System.Runtime.Extensions": "4.3.0",
  3621. "System.Threading": "4.3.0"
  3622. },
  3623. "compile": {
  3624. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3625. },
  3626. "runtime": {
  3627. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3628. }
  3629. },
  3630. "System.Threading/4.3.0": {
  3631. "type": "package",
  3632. "dependencies": {
  3633. "System.Runtime": "4.3.0",
  3634. "System.Threading.Tasks": "4.3.0"
  3635. },
  3636. "compile": {
  3637. "ref/netstandard1.3/System.Threading.dll": {}
  3638. },
  3639. "runtime": {
  3640. "lib/netstandard1.3/System.Threading.dll": {}
  3641. }
  3642. },
  3643. "System.Threading.Overlapped/4.3.0": {
  3644. "type": "package",
  3645. "dependencies": {
  3646. "Microsoft.NETCore.Platforms": "1.1.0",
  3647. "System.Resources.ResourceManager": "4.3.0",
  3648. "System.Runtime": "4.3.0",
  3649. "System.Runtime.Handles": "4.3.0"
  3650. },
  3651. "compile": {
  3652. "ref/netstandard1.3/_._": {}
  3653. },
  3654. "runtimeTargets": {
  3655. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3656. "assetType": "runtime",
  3657. "rid": "unix"
  3658. },
  3659. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3660. "assetType": "runtime",
  3661. "rid": "win"
  3662. }
  3663. }
  3664. },
  3665. "System.Threading.Tasks/4.3.0": {
  3666. "type": "package",
  3667. "dependencies": {
  3668. "Microsoft.NETCore.Platforms": "1.1.0",
  3669. "Microsoft.NETCore.Targets": "1.1.0",
  3670. "System.Runtime": "4.3.0"
  3671. },
  3672. "compile": {
  3673. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  3674. },
  3675. "runtime": {
  3676. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3677. }
  3678. },
  3679. "System.Threading.Tasks.Dataflow/4.6.0": {
  3680. "type": "package",
  3681. "dependencies": {
  3682. "System.Collections": "4.0.11",
  3683. "System.Collections.Concurrent": "4.0.12",
  3684. "System.Diagnostics.Debug": "4.0.11",
  3685. "System.Diagnostics.Tracing": "4.1.0",
  3686. "System.Dynamic.Runtime": "4.0.11",
  3687. "System.Linq": "4.1.0",
  3688. "System.Resources.ResourceManager": "4.0.1",
  3689. "System.Runtime": "4.1.0",
  3690. "System.Runtime.Extensions": "4.1.0",
  3691. "System.Threading": "4.0.11",
  3692. "System.Threading.Tasks": "4.0.11"
  3693. },
  3694. "compile": {
  3695. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
  3696. },
  3697. "runtime": {
  3698. "lib/netstandard1.1/_._": {}
  3699. }
  3700. },
  3701. "System.Threading.Tasks.Extensions/4.3.0": {
  3702. "type": "package",
  3703. "dependencies": {
  3704. "System.Collections": "4.3.0",
  3705. "System.Runtime": "4.3.0",
  3706. "System.Threading.Tasks": "4.3.0"
  3707. },
  3708. "compile": {
  3709. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3710. },
  3711. "runtime": {
  3712. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3713. }
  3714. },
  3715. "System.Threading.Tasks.Parallel/4.0.1": {
  3716. "type": "package",
  3717. "dependencies": {
  3718. "System.Collections.Concurrent": "4.0.12",
  3719. "System.Diagnostics.Debug": "4.0.11",
  3720. "System.Diagnostics.Tracing": "4.1.0",
  3721. "System.Resources.ResourceManager": "4.0.1",
  3722. "System.Runtime": "4.1.0",
  3723. "System.Runtime.Extensions": "4.1.0",
  3724. "System.Threading": "4.0.11",
  3725. "System.Threading.Tasks": "4.0.11"
  3726. },
  3727. "compile": {
  3728. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
  3729. },
  3730. "runtime": {
  3731. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
  3732. }
  3733. },
  3734. "System.Threading.Thread/4.3.0": {
  3735. "type": "package",
  3736. "dependencies": {
  3737. "System.Runtime": "4.3.0"
  3738. },
  3739. "compile": {
  3740. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  3741. },
  3742. "runtime": {
  3743. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3744. }
  3745. },
  3746. "System.Threading.ThreadPool/4.3.0": {
  3747. "type": "package",
  3748. "dependencies": {
  3749. "System.Runtime": "4.3.0",
  3750. "System.Runtime.Handles": "4.3.0"
  3751. },
  3752. "compile": {
  3753. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3754. },
  3755. "runtime": {
  3756. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3757. }
  3758. },
  3759. "System.Threading.Timer/4.3.0": {
  3760. "type": "package",
  3761. "dependencies": {
  3762. "Microsoft.NETCore.Platforms": "1.1.0",
  3763. "Microsoft.NETCore.Targets": "1.1.0",
  3764. "System.Runtime": "4.3.0"
  3765. },
  3766. "compile": {
  3767. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  3768. }
  3769. },
  3770. "System.Xml.ReaderWriter/4.3.0": {
  3771. "type": "package",
  3772. "dependencies": {
  3773. "System.Collections": "4.3.0",
  3774. "System.Diagnostics.Debug": "4.3.0",
  3775. "System.Globalization": "4.3.0",
  3776. "System.IO": "4.3.0",
  3777. "System.IO.FileSystem": "4.3.0",
  3778. "System.IO.FileSystem.Primitives": "4.3.0",
  3779. "System.Resources.ResourceManager": "4.3.0",
  3780. "System.Runtime": "4.3.0",
  3781. "System.Runtime.Extensions": "4.3.0",
  3782. "System.Runtime.InteropServices": "4.3.0",
  3783. "System.Text.Encoding": "4.3.0",
  3784. "System.Text.Encoding.Extensions": "4.3.0",
  3785. "System.Text.RegularExpressions": "4.3.0",
  3786. "System.Threading.Tasks": "4.3.0",
  3787. "System.Threading.Tasks.Extensions": "4.3.0"
  3788. },
  3789. "compile": {
  3790. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3791. },
  3792. "runtime": {
  3793. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3794. }
  3795. },
  3796. "System.Xml.XDocument/4.3.0": {
  3797. "type": "package",
  3798. "dependencies": {
  3799. "System.Collections": "4.3.0",
  3800. "System.Diagnostics.Debug": "4.3.0",
  3801. "System.Diagnostics.Tools": "4.3.0",
  3802. "System.Globalization": "4.3.0",
  3803. "System.IO": "4.3.0",
  3804. "System.Reflection": "4.3.0",
  3805. "System.Resources.ResourceManager": "4.3.0",
  3806. "System.Runtime": "4.3.0",
  3807. "System.Runtime.Extensions": "4.3.0",
  3808. "System.Text.Encoding": "4.3.0",
  3809. "System.Threading": "4.3.0",
  3810. "System.Xml.ReaderWriter": "4.3.0"
  3811. },
  3812. "compile": {
  3813. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  3814. },
  3815. "runtime": {
  3816. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3817. }
  3818. },
  3819. "System.Xml.XmlDocument/4.0.1": {
  3820. "type": "package",
  3821. "dependencies": {
  3822. "System.Collections": "4.0.11",
  3823. "System.Diagnostics.Debug": "4.0.11",
  3824. "System.Globalization": "4.0.11",
  3825. "System.IO": "4.1.0",
  3826. "System.Resources.ResourceManager": "4.0.1",
  3827. "System.Runtime": "4.1.0",
  3828. "System.Runtime.Extensions": "4.1.0",
  3829. "System.Text.Encoding": "4.0.11",
  3830. "System.Threading": "4.0.11",
  3831. "System.Xml.ReaderWriter": "4.0.11"
  3832. },
  3833. "compile": {
  3834. "ref/netstandard1.3/_._": {}
  3835. },
  3836. "runtime": {
  3837. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3838. }
  3839. },
  3840. "System.Xml.XPath/4.0.1": {
  3841. "type": "package",
  3842. "dependencies": {
  3843. "System.Collections": "4.0.11",
  3844. "System.Diagnostics.Debug": "4.0.11",
  3845. "System.Globalization": "4.0.11",
  3846. "System.IO": "4.1.0",
  3847. "System.Resources.ResourceManager": "4.0.1",
  3848. "System.Runtime": "4.1.0",
  3849. "System.Runtime.Extensions": "4.1.0",
  3850. "System.Threading": "4.0.11",
  3851. "System.Xml.ReaderWriter": "4.0.11"
  3852. },
  3853. "compile": {
  3854. "ref/netstandard1.3/_._": {}
  3855. },
  3856. "runtime": {
  3857. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  3858. }
  3859. },
  3860. "System.Xml.XPath.XDocument/4.0.1": {
  3861. "type": "package",
  3862. "dependencies": {
  3863. "System.Diagnostics.Debug": "4.0.11",
  3864. "System.Linq": "4.1.0",
  3865. "System.Resources.ResourceManager": "4.0.1",
  3866. "System.Runtime": "4.1.0",
  3867. "System.Runtime.Extensions": "4.1.0",
  3868. "System.Threading": "4.0.11",
  3869. "System.Xml.ReaderWriter": "4.0.11",
  3870. "System.Xml.XDocument": "4.0.11",
  3871. "System.Xml.XPath": "4.0.1"
  3872. },
  3873. "compile": {
  3874. "ref/netstandard1.3/_._": {}
  3875. },
  3876. "runtime": {
  3877. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
  3878. }
  3879. },
  3880. "Luticate2.Auth/1.0.0": {
  3881. "type": "project",
  3882. "framework": ".NETCoreApp,Version=v1.0",
  3883. "dependencies": {
  3884. "Luticate2.Utils": "1.0.0"
  3885. },
  3886. "compile": {
  3887. "netcoreapp1.0/Luticate2.Auth.dll": {}
  3888. },
  3889. "runtime": {
  3890. "netcoreapp1.0/Luticate2.Auth.dll": {}
  3891. }
  3892. },
  3893. "Luticate2.Utils/1.0.0": {
  3894. "type": "project",
  3895. "framework": ".NETCoreApp,Version=v1.0",
  3896. "dependencies": {
  3897. "Gray.Microsoft.AspNetCore.SignalR.Server": "0.2.0-alpha1",
  3898. "Microsoft.ApplicationInsights.AspNetCore": "1.0.2",
  3899. "Microsoft.AspNetCore.WebSockets": "1.0.0",
  3900. "Microsoft.EntityFrameworkCore.Tools": "1.1.0-preview4-final",
  3901. "Npgsql.EntityFrameworkCore.PostgreSQL": "1.1.0"
  3902. },
  3903. "compile": {
  3904. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3905. },
  3906. "runtime": {
  3907. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3908. }
  3909. }
  3910. }
  3911. },
  3912. "libraries": {
  3913. "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0": {
  3914. "sha512": "f6ADNhKb2bJEIOL8kCR9ypGfKjiUa21KtIAa2mM2zjDNbddBgLRYE5k05aqTB7KqivFwp1MqhrJwiMrGsqNF8w==",
  3915. "type": "package",
  3916. "path": "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0",
  3917. "files": [
  3918. "Gray.Microsoft.AspNetCore.SignalR.Messaging.0.2.0.nupkg.sha512",
  3919. "Gray.Microsoft.AspNetCore.SignalR.Messaging.nuspec",
  3920. "lib/net451/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll",
  3921. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll"
  3922. ]
  3923. },
  3924. "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1": {
  3925. "sha512": "MyB2gibCua7nxjFaP+PHO/LdgV4xkJRtDFKrN5MNOcycky9yhCG3JtxFbm3UFpo/24GEmrmSgzC0pxIIwr3MVg==",
  3926. "type": "package",
  3927. "path": "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1",
  3928. "files": [
  3929. "Gray.Microsoft.AspNetCore.SignalR.Server.0.2.0-alpha1.nupkg.sha512",
  3930. "Gray.Microsoft.AspNetCore.SignalR.Server.nuspec",
  3931. "lib/net451/Gray.Microsoft.AspNetCore.SignalR.Server.dll",
  3932. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll"
  3933. ]
  3934. },
  3935. "Libuv/1.9.1": {
  3936. "sha512": "uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==",
  3937. "type": "package",
  3938. "path": "Libuv/1.9.1",
  3939. "files": [
  3940. "Libuv.1.9.1.nupkg.sha512",
  3941. "Libuv.nuspec",
  3942. "License.txt",
  3943. "runtimes/debian-x64/native/libuv.so",
  3944. "runtimes/fedora-x64/native/libuv.so",
  3945. "runtimes/opensuse-x64/native/libuv.so",
  3946. "runtimes/osx/native/libuv.dylib",
  3947. "runtimes/rhel-x64/native/libuv.so",
  3948. "runtimes/win7-arm/native/libuv.dll",
  3949. "runtimes/win7-x64/native/libuv.dll",
  3950. "runtimes/win7-x86/native/libuv.dll"
  3951. ]
  3952. },
  3953. "Microsoft.ApplicationInsights/2.1.0": {
  3954. "sha512": "mviO8PLQd3r22Pmv8JfjYzTCQ9ByhkU9wdC4fwd6WmAARwAMgMw9HEbHeYS3r+8pB3w+fZMi7p4LKijzgNybRQ==",
  3955. "type": "package",
  3956. "path": "Microsoft.ApplicationInsights/2.1.0",
  3957. "files": [
  3958. "Microsoft.ApplicationInsights.2.1.0.nupkg.sha512",
  3959. "Microsoft.ApplicationInsights.nuspec",
  3960. "lib/dotnet5.4/Microsoft.ApplicationInsights.XML",
  3961. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll",
  3962. "lib/net40/Microsoft.ApplicationInsights.XML",
  3963. "lib/net40/Microsoft.ApplicationInsights.dll",
  3964. "lib/net45/Microsoft.ApplicationInsights.XML",
  3965. "lib/net45/Microsoft.ApplicationInsights.dll",
  3966. "lib/net46/Microsoft.ApplicationInsights.XML",
  3967. "lib/net46/Microsoft.ApplicationInsights.dll",
  3968. "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
  3969. "lib/uap10.0/Microsoft.ApplicationInsights.dll",
  3970. "lib/wp8/Microsoft.ApplicationInsights.dll"
  3971. ]
  3972. },
  3973. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  3974. "sha512": "2pe22FuypQRT5YNd4cIehYqDduxiQzt1o/585LgG6vJmOfuX7aF2h4uSI5epRrvu1EikuoZEzBchAR6U8cBybQ==",
  3975. "type": "package",
  3976. "path": "Microsoft.ApplicationInsights.AspNetCore/1.0.2",
  3977. "files": [
  3978. "Microsoft.ApplicationInsights.AspNetCore.1.0.2.nupkg.sha512",
  3979. "Microsoft.ApplicationInsights.AspNetCore.nuspec",
  3980. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.dll",
  3981. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.xml",
  3982. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll",
  3983. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.xml"
  3984. ]
  3985. },
  3986. "Microsoft.AspNetCore.Antiforgery/1.1.0": {
  3987. "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
  3988. "type": "package",
  3989. "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
  3990. "files": [
  3991. "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
  3992. "Microsoft.AspNetCore.Antiforgery.nuspec",
  3993. "lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
  3994. "lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
  3995. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll",
  3996. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
  3997. ]
  3998. },
  3999. "Microsoft.AspNetCore.Authorization/1.1.0": {
  4000. "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
  4001. "type": "package",
  4002. "path": "Microsoft.AspNetCore.Authorization/1.1.0",
  4003. "files": [
  4004. "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
  4005. "Microsoft.AspNetCore.Authorization.nuspec",
  4006. "lib/net451/Microsoft.AspNetCore.Authorization.dll",
  4007. "lib/net451/Microsoft.AspNetCore.Authorization.xml",
  4008. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll",
  4009. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
  4010. ]
  4011. },
  4012. "Microsoft.AspNetCore.Cors/1.1.0": {
  4013. "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
  4014. "type": "package",
  4015. "path": "Microsoft.AspNetCore.Cors/1.1.0",
  4016. "files": [
  4017. "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
  4018. "Microsoft.AspNetCore.Cors.nuspec",
  4019. "lib/net451/Microsoft.AspNetCore.Cors.dll",
  4020. "lib/net451/Microsoft.AspNetCore.Cors.xml",
  4021. "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll",
  4022. "lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
  4023. ]
  4024. },
  4025. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
  4026. "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
  4027. "type": "package",
  4028. "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
  4029. "files": [
  4030. "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
  4031. "Microsoft.AspNetCore.Cryptography.Internal.nuspec",
  4032. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4033. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4034. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4035. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
  4036. ]
  4037. },
  4038. "Microsoft.AspNetCore.DataProtection/1.1.0": {
  4039. "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
  4040. "type": "package",
  4041. "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
  4042. "files": [
  4043. "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
  4044. "Microsoft.AspNetCore.DataProtection.nuspec",
  4045. "lib/net451/Microsoft.AspNetCore.DataProtection.dll",
  4046. "lib/net451/Microsoft.AspNetCore.DataProtection.xml",
  4047. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll",
  4048. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
  4049. ]
  4050. },
  4051. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
  4052. "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
  4053. "type": "package",
  4054. "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
  4055. "files": [
  4056. "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
  4057. "Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
  4058. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4059. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4060. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4061. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
  4062. ]
  4063. },
  4064. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
  4065. "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
  4066. "type": "package",
  4067. "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
  4068. "files": [
  4069. "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
  4070. "Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
  4071. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  4072. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
  4073. ]
  4074. },
  4075. "Microsoft.AspNetCore.Hosting/1.1.0": {
  4076. "sha512": "yNiCwtCi1mYfTjLyHWQt4A3QRd84ok8XxuTP4wSnr6aT3bIzI7upstGe7diaEDirmku10qnISC/8CsMTG4xd4w==",
  4077. "type": "package",
  4078. "path": "Microsoft.AspNetCore.Hosting/1.1.0",
  4079. "files": [
  4080. "Microsoft.AspNetCore.Hosting.1.1.0.nupkg.sha512",
  4081. "Microsoft.AspNetCore.Hosting.nuspec",
  4082. "lib/net451/Microsoft.AspNetCore.Hosting.dll",
  4083. "lib/net451/Microsoft.AspNetCore.Hosting.xml",
  4084. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll",
  4085. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml",
  4086. "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll",
  4087. "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.xml"
  4088. ]
  4089. },
  4090. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  4091. "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
  4092. "type": "package",
  4093. "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
  4094. "files": [
  4095. "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
  4096. "Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
  4097. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4098. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4099. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4100. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
  4101. ]
  4102. },
  4103. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  4104. "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
  4105. "type": "package",
  4106. "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
  4107. "files": [
  4108. "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
  4109. "Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
  4110. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4111. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4112. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4113. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
  4114. ]
  4115. },
  4116. "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
  4117. "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
  4118. "type": "package",
  4119. "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
  4120. "files": [
  4121. "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
  4122. "Microsoft.AspNetCore.Html.Abstractions.nuspec",
  4123. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  4124. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
  4125. ]
  4126. },
  4127. "Microsoft.AspNetCore.Http/1.1.0": {
  4128. "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
  4129. "type": "package",
  4130. "path": "Microsoft.AspNetCore.Http/1.1.0",
  4131. "files": [
  4132. "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
  4133. "Microsoft.AspNetCore.Http.nuspec",
  4134. "lib/net451/Microsoft.AspNetCore.Http.dll",
  4135. "lib/net451/Microsoft.AspNetCore.Http.xml",
  4136. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll",
  4137. "lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
  4138. ]
  4139. },
  4140. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  4141. "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
  4142. "type": "package",
  4143. "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
  4144. "files": [
  4145. "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
  4146. "Microsoft.AspNetCore.Http.Abstractions.nuspec",
  4147. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
  4148. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
  4149. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll",
  4150. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
  4151. ]
  4152. },
  4153. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  4154. "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
  4155. "type": "package",
  4156. "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
  4157. "files": [
  4158. "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
  4159. "Microsoft.AspNetCore.Http.Extensions.nuspec",
  4160. "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
  4161. "lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
  4162. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll",
  4163. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
  4164. ]
  4165. },
  4166. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  4167. "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
  4168. "type": "package",
  4169. "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
  4170. "files": [
  4171. "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
  4172. "Microsoft.AspNetCore.Http.Features.nuspec",
  4173. "lib/net451/Microsoft.AspNetCore.Http.Features.dll",
  4174. "lib/net451/Microsoft.AspNetCore.Http.Features.xml",
  4175. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll",
  4176. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
  4177. ]
  4178. },
  4179. "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
  4180. "sha512": "nvNbiYTQZhOWIT9zjhbzIMJTRwcJXGx8DqzMRKcrlGeRNG9ysa3M/hEBrxAp8NKIJeVtnp/n46MhLgmx0CLJWw==",
  4181. "type": "package",
  4182. "path": "Microsoft.AspNetCore.HttpOverrides/1.1.0",
  4183. "files": [
  4184. "Microsoft.AspNetCore.HttpOverrides.1.1.0.nupkg.sha512",
  4185. "Microsoft.AspNetCore.HttpOverrides.nuspec",
  4186. "lib/net451/Microsoft.AspNetCore.HttpOverrides.dll",
  4187. "lib/net451/Microsoft.AspNetCore.HttpOverrides.xml",
  4188. "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll",
  4189. "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml"
  4190. ]
  4191. },
  4192. "Microsoft.AspNetCore.JsonPatch/1.1.0": {
  4193. "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
  4194. "type": "package",
  4195. "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
  4196. "files": [
  4197. "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
  4198. "Microsoft.AspNetCore.JsonPatch.nuspec",
  4199. "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
  4200. "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
  4201. "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
  4202. "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
  4203. ]
  4204. },
  4205. "Microsoft.AspNetCore.Localization/1.1.0": {
  4206. "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
  4207. "type": "package",
  4208. "path": "Microsoft.AspNetCore.Localization/1.1.0",
  4209. "files": [
  4210. "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
  4211. "Microsoft.AspNetCore.Localization.nuspec",
  4212. "lib/net451/Microsoft.AspNetCore.Localization.dll",
  4213. "lib/net451/Microsoft.AspNetCore.Localization.xml",
  4214. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll",
  4215. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
  4216. ]
  4217. },
  4218. "Microsoft.AspNetCore.Mvc/1.1.0": {
  4219. "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
  4220. "type": "package",
  4221. "path": "Microsoft.AspNetCore.Mvc/1.1.0",
  4222. "files": [
  4223. "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
  4224. "Microsoft.AspNetCore.Mvc.nuspec",
  4225. "lib/net451/Microsoft.AspNetCore.Mvc.dll",
  4226. "lib/net451/Microsoft.AspNetCore.Mvc.xml",
  4227. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll",
  4228. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
  4229. ]
  4230. },
  4231. "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
  4232. "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
  4233. "type": "package",
  4234. "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
  4235. "files": [
  4236. "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
  4237. "Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
  4238. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  4239. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  4240. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  4241. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
  4242. ]
  4243. },
  4244. "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
  4245. "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
  4246. "type": "package",
  4247. "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
  4248. "files": [
  4249. "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
  4250. "Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
  4251. "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
  4252. "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
  4253. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
  4254. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
  4255. ]
  4256. },
  4257. "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
  4258. "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
  4259. "type": "package",
  4260. "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
  4261. "files": [
  4262. "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
  4263. "Microsoft.AspNetCore.Mvc.Core.nuspec",
  4264. "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
  4265. "lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
  4266. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll",
  4267. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
  4268. ]
  4269. },
  4270. "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
  4271. "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
  4272. "type": "package",
  4273. "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
  4274. "files": [
  4275. "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
  4276. "Microsoft.AspNetCore.Mvc.Cors.nuspec",
  4277. "lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
  4278. "lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
  4279. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll",
  4280. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
  4281. ]
  4282. },
  4283. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
  4284. "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
  4285. "type": "package",
  4286. "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
  4287. "files": [
  4288. "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
  4289. "Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
  4290. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4291. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  4292. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4293. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
  4294. ]
  4295. },
  4296. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
  4297. "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
  4298. "type": "package",
  4299. "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
  4300. "files": [
  4301. "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
  4302. "Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
  4303. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4304. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  4305. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4306. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
  4307. ]
  4308. },
  4309. "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
  4310. "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
  4311. "type": "package",
  4312. "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
  4313. "files": [
  4314. "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
  4315. "Microsoft.AspNetCore.Mvc.Localization.nuspec",
  4316. "lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
  4317. "lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
  4318. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll",
  4319. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
  4320. ]
  4321. },
  4322. "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
  4323. "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
  4324. "type": "package",
  4325. "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
  4326. "files": [
  4327. "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
  4328. "Microsoft.AspNetCore.Mvc.Razor.nuspec",
  4329. "lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
  4330. "lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
  4331. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll",
  4332. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
  4333. ]
  4334. },
  4335. "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
  4336. "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
  4337. "type": "package",
  4338. "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
  4339. "files": [
  4340. "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
  4341. "Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
  4342. "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
  4343. "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
  4344. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
  4345. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
  4346. ]
  4347. },
  4348. "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
  4349. "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
  4350. "type": "package",
  4351. "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
  4352. "files": [
  4353. "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
  4354. "Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
  4355. "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
  4356. "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
  4357. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
  4358. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
  4359. ]
  4360. },
  4361. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
  4362. "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
  4363. "type": "package",
  4364. "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
  4365. "files": [
  4366. "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
  4367. "Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
  4368. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4369. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  4370. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4371. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
  4372. ]
  4373. },
  4374. "Microsoft.AspNetCore.Razor/1.1.0": {
  4375. "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
  4376. "type": "package",
  4377. "path": "Microsoft.AspNetCore.Razor/1.1.0",
  4378. "files": [
  4379. "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
  4380. "Microsoft.AspNetCore.Razor.nuspec",
  4381. "lib/net451/Microsoft.AspNetCore.Razor.dll",
  4382. "lib/net451/Microsoft.AspNetCore.Razor.xml",
  4383. "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll",
  4384. "lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
  4385. ]
  4386. },
  4387. "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
  4388. "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
  4389. "type": "package",
  4390. "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
  4391. "files": [
  4392. "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
  4393. "Microsoft.AspNetCore.Razor.Runtime.nuspec",
  4394. "lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
  4395. "lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
  4396. "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll",
  4397. "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
  4398. ]
  4399. },
  4400. "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
  4401. "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
  4402. "type": "package",
  4403. "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
  4404. "files": [
  4405. "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
  4406. "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
  4407. "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
  4408. "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
  4409. "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
  4410. "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
  4411. ]
  4412. },
  4413. "Microsoft.AspNetCore.Routing/1.1.0": {
  4414. "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
  4415. "type": "package",
  4416. "path": "Microsoft.AspNetCore.Routing/1.1.0",
  4417. "files": [
  4418. "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
  4419. "Microsoft.AspNetCore.Routing.nuspec",
  4420. "lib/net451/Microsoft.AspNetCore.Routing.dll",
  4421. "lib/net451/Microsoft.AspNetCore.Routing.xml",
  4422. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll",
  4423. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
  4424. ]
  4425. },
  4426. "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
  4427. "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
  4428. "type": "package",
  4429. "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
  4430. "files": [
  4431. "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
  4432. "Microsoft.AspNetCore.Routing.Abstractions.nuspec",
  4433. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4434. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4435. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4436. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
  4437. ]
  4438. },
  4439. "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
  4440. "sha512": "Z/K/RsUUh6Cfc8W+uP0IeXu8NJP/7li+E3ep+u4t9McrDUdJMrfgfBSPC5SrrUkTZjrt9udQS6JLrB6v3b8pag==",
  4441. "type": "package",
  4442. "path": "Microsoft.AspNetCore.Server.IISIntegration/1.1.0",
  4443. "files": [
  4444. "Microsoft.AspNetCore.Server.IISIntegration.1.1.0.nupkg.sha512",
  4445. "Microsoft.AspNetCore.Server.IISIntegration.nuspec",
  4446. "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll",
  4447. "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml",
  4448. "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll",
  4449. "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml"
  4450. ]
  4451. },
  4452. "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
  4453. "sha512": "PbVYQUVxOwtrl9YCnw8ykXSufELVeEuASYahVh1F7B4LYVtcqwyV5+FhXlJkboGM4ozKMrdhB5w/tlLLcmHxNA==",
  4454. "type": "package",
  4455. "path": "Microsoft.AspNetCore.Server.Kestrel/1.1.0",
  4456. "files": [
  4457. "Microsoft.AspNetCore.Server.Kestrel.1.1.0.nupkg.sha512",
  4458. "Microsoft.AspNetCore.Server.Kestrel.nuspec",
  4459. "lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll",
  4460. "lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml",
  4461. "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll",
  4462. "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml"
  4463. ]
  4464. },
  4465. "Microsoft.AspNetCore.WebSockets/1.0.0": {
  4466. "sha512": "vhA8iwDMjL+C/iNKubp9qBjkeh0b1bJyl3nOiL+B15yiUeEcnvx7vPXV2eyIX792dVCqn+hyYCatm/ST1Cg0Hg==",
  4467. "type": "package",
  4468. "path": "Microsoft.AspNetCore.WebSockets/1.0.0",
  4469. "files": [
  4470. "Microsoft.AspNetCore.WebSockets.1.0.0.nupkg.sha512",
  4471. "Microsoft.AspNetCore.WebSockets.nuspec",
  4472. "lib/net451/Microsoft.AspNetCore.WebSockets.dll",
  4473. "lib/net451/Microsoft.AspNetCore.WebSockets.xml",
  4474. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll",
  4475. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.xml"
  4476. ]
  4477. },
  4478. "Microsoft.AspNetCore.WebUtilities/1.1.0": {
  4479. "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
  4480. "type": "package",
  4481. "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
  4482. "files": [
  4483. "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
  4484. "Microsoft.AspNetCore.WebUtilities.nuspec",
  4485. "lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
  4486. "lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
  4487. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll",
  4488. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.xml"
  4489. ]
  4490. },
  4491. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  4492. "sha512": "65YL5Wa8x4Ip6nUVLwVmoFWmfUfO7T5TwwqYZ5eFuu3ekpKZwub1gCKlfEDCJlzYT8h+IWdr2wvGQqWk6Kc70w==",
  4493. "type": "package",
  4494. "path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
  4495. "files": [
  4496. "Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg.sha512",
  4497. "Microsoft.CodeAnalysis.Analyzers.nuspec",
  4498. "ThirdPartyNotices.rtf",
  4499. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4500. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4501. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4502. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4503. "tools/install.ps1",
  4504. "tools/uninstall.ps1"
  4505. ]
  4506. },
  4507. "Microsoft.CodeAnalysis.Common/1.3.0": {
  4508. "sha512": "8alKL52PjN/eelP22WMnbPblT7EadukkeTKMCKozStKUOHYbjAenjQIFRa9y8WveR2ypej2NetvUnW81vDRzQg==",
  4509. "type": "package",
  4510. "path": "Microsoft.CodeAnalysis.Common/1.3.0",
  4511. "files": [
  4512. "Microsoft.CodeAnalysis.Common.1.3.0.nupkg.sha512",
  4513. "Microsoft.CodeAnalysis.Common.nuspec",
  4514. "ThirdPartyNotices.rtf",
  4515. "lib/net45/Microsoft.CodeAnalysis.dll",
  4516. "lib/net45/Microsoft.CodeAnalysis.xml",
  4517. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  4518. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  4519. "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll",
  4520. "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml"
  4521. ]
  4522. },
  4523. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  4524. "sha512": "1Qf+GO6rDrndaJ1KKnAf8UgSIWgM+f3tiO3HGqTo1iAmFsVYOw95E0kQLaD7rRKJ9jG8aoiWdfKFPpvgdmnk3A==",
  4525. "type": "package",
  4526. "path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
  4527. "files": [
  4528. "Microsoft.CodeAnalysis.CSharp.1.3.0.nupkg.sha512",
  4529. "Microsoft.CodeAnalysis.CSharp.nuspec",
  4530. "ThirdPartyNotices.rtf",
  4531. "lib/net45/Microsoft.CodeAnalysis.CSharp.dll",
  4532. "lib/net45/Microsoft.CodeAnalysis.CSharp.xml",
  4533. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  4534. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  4535. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll",
  4536. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml"
  4537. ]
  4538. },
  4539. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  4540. "sha512": "EcgpeGq0OKq+AT4l2wYOxHweSbSajzpqU0RqQrsY6rv8bL1x+gP6cI26/PbtCdQljfhnTvFQSr98tqLQL8XmNQ==",
  4541. "type": "package",
  4542. "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
  4543. "files": [
  4544. "Microsoft.CodeAnalysis.VisualBasic.1.3.0.nupkg.sha512",
  4545. "Microsoft.CodeAnalysis.VisualBasic.nuspec",
  4546. "ThirdPartyNotices.rtf",
  4547. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll",
  4548. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml",
  4549. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll",
  4550. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml",
  4551. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll",
  4552. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
  4553. ]
  4554. },
  4555. "Microsoft.CSharp/4.3.0": {
  4556. "sha512": "jJcEOG+9VTkBqsWo4yERaaEea3aw9zL2H02Y6k6gKLqiJXbj9BYEyzKGdxrsD1OGCIcaAbPEGhaxTbp124Vb9g==",
  4557. "type": "package",
  4558. "path": "Microsoft.CSharp/4.3.0",
  4559. "files": [
  4560. "Microsoft.CSharp.4.3.0.nupkg.sha512",
  4561. "Microsoft.CSharp.nuspec",
  4562. "ThirdPartyNotices.txt",
  4563. "dotnet_library_license.txt",
  4564. "lib/MonoAndroid10/_._",
  4565. "lib/MonoTouch10/_._",
  4566. "lib/net45/_._",
  4567. "lib/netcore50/Microsoft.CSharp.dll",
  4568. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4569. "lib/portable-net45+win8+wp8+wpa81/_._",
  4570. "lib/win8/_._",
  4571. "lib/wp80/_._",
  4572. "lib/wpa81/_._",
  4573. "lib/xamarinios10/_._",
  4574. "lib/xamarinmac20/_._",
  4575. "lib/xamarintvos10/_._",
  4576. "lib/xamarinwatchos10/_._",
  4577. "ref/MonoAndroid10/_._",
  4578. "ref/MonoTouch10/_._",
  4579. "ref/net45/_._",
  4580. "ref/netcore50/Microsoft.CSharp.dll",
  4581. "ref/netcore50/Microsoft.CSharp.xml",
  4582. "ref/netcore50/de/Microsoft.CSharp.xml",
  4583. "ref/netcore50/es/Microsoft.CSharp.xml",
  4584. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4585. "ref/netcore50/it/Microsoft.CSharp.xml",
  4586. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4587. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4588. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4589. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4590. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4591. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4592. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4593. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4594. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4595. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4596. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4597. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4598. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4599. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4600. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4601. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4602. "ref/portable-net45+win8+wp8+wpa81/_._",
  4603. "ref/win8/_._",
  4604. "ref/wp80/_._",
  4605. "ref/wpa81/_._",
  4606. "ref/xamarinios10/_._",
  4607. "ref/xamarinmac20/_._",
  4608. "ref/xamarintvos10/_._",
  4609. "ref/xamarinwatchos10/_._"
  4610. ]
  4611. },
  4612. "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
  4613. "sha512": "stlfv92tY1itlriy67K7WUYujNbkw9CBDQar9fid3VcGzRXpr3Bsv57ssxuTKFL+xRsF6i3gqRIDmWZBmhRZ/g==",
  4614. "type": "package",
  4615. "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
  4616. "files": [
  4617. "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
  4618. "Microsoft.DotNet.PlatformAbstractions.nuspec",
  4619. "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
  4620. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
  4621. ]
  4622. },
  4623. "Microsoft.EntityFrameworkCore/1.1.0": {
  4624. "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
  4625. "type": "package",
  4626. "path": "Microsoft.EntityFrameworkCore/1.1.0",
  4627. "files": [
  4628. "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
  4629. "Microsoft.EntityFrameworkCore.nuspec",
  4630. "lib/net451/Microsoft.EntityFrameworkCore.dll",
  4631. "lib/net451/Microsoft.EntityFrameworkCore.xml",
  4632. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll",
  4633. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
  4634. ]
  4635. },
  4636. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  4637. "sha512": "7hWqxlNYUocjRqljw6yi3bQpEjMyzNSBX+LqsUuo9cFqTu3uv2YVRyRobBmfvnXVNfRxB6EysMmTmhxApPhiNw==",
  4638. "type": "package",
  4639. "path": "Microsoft.EntityFrameworkCore.Design/1.1.0",
  4640. "files": [
  4641. "Microsoft.EntityFrameworkCore.Design.1.1.0.nupkg.sha512",
  4642. "Microsoft.EntityFrameworkCore.Design.nuspec",
  4643. "lib/net451/Microsoft.EntityFrameworkCore.Design.dll",
  4644. "lib/net451/Microsoft.EntityFrameworkCore.Design.xml",
  4645. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll",
  4646. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.xml"
  4647. ]
  4648. },
  4649. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  4650. "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
  4651. "type": "package",
  4652. "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
  4653. "files": [
  4654. "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
  4655. "Microsoft.EntityFrameworkCore.Relational.nuspec",
  4656. "lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
  4657. "lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
  4658. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll",
  4659. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
  4660. ]
  4661. },
  4662. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  4663. "sha512": "fF0sVEUkoGeJutGIzwnYsJJ9o2hxEGJRpSaCxPq63rhSwn0hBmCwf9ET4QqYqO9Pc6+ODXenAQa095CWzuM4Kg==",
  4664. "type": "package",
  4665. "path": "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0",
  4666. "files": [
  4667. "Microsoft.EntityFrameworkCore.Relational.Design.1.1.0.nupkg.sha512",
  4668. "Microsoft.EntityFrameworkCore.Relational.Design.nuspec",
  4669. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4670. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.xml",
  4671. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4672. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml"
  4673. ]
  4674. },
  4675. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  4676. "sha512": "n7g5JB4YxLYCl32XCmjXEHDF/9J/DSeNYGjxGAzG1xUi/IXOCWd6T3XyEnDXsub7iFDvpB2VgUlh6wHDqmTZgA==",
  4677. "type": "package",
  4678. "path": "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final",
  4679. "files": [
  4680. "Microsoft.EntityFrameworkCore.Tools.1.1.0-preview4-final.nupkg.sha512",
  4681. "Microsoft.EntityFrameworkCore.Tools.nuspec",
  4682. "lib/net451/_._",
  4683. "lib/netstandard1.3/_._",
  4684. "tools/EntityFrameworkCore.PowerShell2.psd1",
  4685. "tools/EntityFrameworkCore.PowerShell2.psm1",
  4686. "tools/EntityFrameworkCore.psd1",
  4687. "tools/EntityFrameworkCore.psm1",
  4688. "tools/Microsoft.EntityFrameworkCore.Tools.dll",
  4689. "tools/about_EntityFrameworkCore.help.txt",
  4690. "tools/init.ps1",
  4691. "tools/install.ps1",
  4692. "tools/net451/ef.exe",
  4693. "tools/net451/ef.x86.exe",
  4694. "tools/netcoreapp1.0/ef.dll",
  4695. "tools/netcoreapp1.0/ef.runtimeconfig.json"
  4696. ]
  4697. },
  4698. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  4699. "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
  4700. "type": "package",
  4701. "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
  4702. "files": [
  4703. "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
  4704. "Microsoft.Extensions.Caching.Abstractions.nuspec",
  4705. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4706. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
  4707. ]
  4708. },
  4709. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  4710. "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
  4711. "type": "package",
  4712. "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
  4713. "files": [
  4714. "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
  4715. "Microsoft.Extensions.Caching.Memory.nuspec",
  4716. "lib/net451/Microsoft.Extensions.Caching.Memory.dll",
  4717. "lib/net451/Microsoft.Extensions.Caching.Memory.xml",
  4718. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll",
  4719. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
  4720. ]
  4721. },
  4722. "Microsoft.Extensions.Configuration/1.1.0": {
  4723. "sha512": "iqp8UepCsS902j0kPO/d7hrd9PSyK7l84UFlpqdV8QY+/pMUY5k8wlAIuN6mWdW97HI8a8BJyvjhJbJps2GwZw==",
  4724. "type": "package",
  4725. "path": "Microsoft.Extensions.Configuration/1.1.0",
  4726. "files": [
  4727. "Microsoft.Extensions.Configuration.1.1.0.nupkg.sha512",
  4728. "Microsoft.Extensions.Configuration.nuspec",
  4729. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
  4730. "lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
  4731. ]
  4732. },
  4733. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  4734. "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
  4735. "type": "package",
  4736. "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
  4737. "files": [
  4738. "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
  4739. "Microsoft.Extensions.Configuration.Abstractions.nuspec",
  4740. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4741. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
  4742. ]
  4743. },
  4744. "Microsoft.Extensions.Configuration.Binder/1.1.0": {
  4745. "sha512": "1dTFEL493MfC5O7MNaElQBhX4txb9ivSmTMwB3qDqEJHXnnUdgThTChn32FjhLIA6Fn7YXjqkZzAB/LdZEKupw==",
  4746. "type": "package",
  4747. "path": "Microsoft.Extensions.Configuration.Binder/1.1.0",
  4748. "files": [
  4749. "Microsoft.Extensions.Configuration.Binder.1.1.0.nupkg.sha512",
  4750. "Microsoft.Extensions.Configuration.Binder.nuspec",
  4751. "lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll",
  4752. "lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.xml"
  4753. ]
  4754. },
  4755. "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
  4756. "sha512": "7AWmPQoX4Kx0Kf4VAig5yKbCziHjO6F2povXeToOaWuZnKahi5qXCG7wrWtATFrheOQLfkrqxxLyarTP3J1mnA==",
  4757. "type": "package",
  4758. "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0",
  4759. "files": [
  4760. "Microsoft.Extensions.Configuration.EnvironmentVariables.1.1.0.nupkg.sha512",
  4761. "Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec",
  4762. "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4763. "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4764. "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4765. "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml"
  4766. ]
  4767. },
  4768. "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
  4769. "sha512": "jZRdMHops4npC8qKFEmqw6QODfA5h50sUYBIyB31DICzYSp+IQyvf5yb1zwW2x1EFuUEMv+aWZi1WDDc7JPdqA==",
  4770. "type": "package",
  4771. "path": "Microsoft.Extensions.Configuration.FileExtensions/1.1.0",
  4772. "files": [
  4773. "Microsoft.Extensions.Configuration.FileExtensions.1.1.0.nupkg.sha512",
  4774. "Microsoft.Extensions.Configuration.FileExtensions.nuspec",
  4775. "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4776. "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4777. "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4778. "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml"
  4779. ]
  4780. },
  4781. "Microsoft.Extensions.Configuration.Json/1.1.0": {
  4782. "sha512": "QmHQbrOoVxXblM2x9NzGPbX3XpQGTCXiO6jZghx4KqUxPfJMS0VgBlgOUnLAz7sJyx3GvhUG6SEX6Xz70dpwDw==",
  4783. "type": "package",
  4784. "path": "Microsoft.Extensions.Configuration.Json/1.1.0",
  4785. "files": [
  4786. "Microsoft.Extensions.Configuration.Json.1.1.0.nupkg.sha512",
  4787. "Microsoft.Extensions.Configuration.Json.nuspec",
  4788. "lib/net451/Microsoft.Extensions.Configuration.Json.dll",
  4789. "lib/net451/Microsoft.Extensions.Configuration.Json.xml",
  4790. "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll",
  4791. "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml"
  4792. ]
  4793. },
  4794. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  4795. "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
  4796. "type": "package",
  4797. "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
  4798. "files": [
  4799. "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
  4800. "Microsoft.Extensions.DependencyInjection.nuspec",
  4801. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
  4802. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
  4803. ]
  4804. },
  4805. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  4806. "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
  4807. "type": "package",
  4808. "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
  4809. "files": [
  4810. "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
  4811. "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
  4812. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4813. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
  4814. ]
  4815. },
  4816. "Microsoft.Extensions.DependencyModel/1.1.0": {
  4817. "sha512": "GKyeEnHk/NMnGzU0U9lWx8ulxs6BzoTRbTHIq0ZgJ+TvVvd5xs3AXDRi5cpeEW1Wd9xsG2lXoSKSzYW6eUwSoA==",
  4818. "type": "package",
  4819. "path": "Microsoft.Extensions.DependencyModel/1.1.0",
  4820. "files": [
  4821. "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
  4822. "Microsoft.Extensions.DependencyModel.nuspec",
  4823. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4824. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  4825. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
  4826. ]
  4827. },
  4828. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  4829. "sha512": "GGI4Pp9DpRBFlAXDcZRz5e+R+TqLFBWzToTDXqxPjQiRq6DwPvDYuKD10rlJD4QxxeX8fcjakTlKO1RfC+DmFg==",
  4830. "type": "package",
  4831. "path": "Microsoft.Extensions.DiagnosticAdapter/1.0.0",
  4832. "files": [
  4833. "Microsoft.Extensions.DiagnosticAdapter.1.0.0.nupkg.sha512",
  4834. "Microsoft.Extensions.DiagnosticAdapter.nuspec",
  4835. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll",
  4836. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.xml"
  4837. ]
  4838. },
  4839. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  4840. "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
  4841. "type": "package",
  4842. "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
  4843. "files": [
  4844. "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
  4845. "Microsoft.Extensions.FileProviders.Abstractions.nuspec",
  4846. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4847. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
  4848. ]
  4849. },
  4850. "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
  4851. "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
  4852. "type": "package",
  4853. "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
  4854. "files": [
  4855. "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
  4856. "Microsoft.Extensions.FileProviders.Composite.nuspec",
  4857. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
  4858. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
  4859. ]
  4860. },
  4861. "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
  4862. "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
  4863. "type": "package",
  4864. "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
  4865. "files": [
  4866. "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
  4867. "Microsoft.Extensions.FileProviders.Physical.nuspec",
  4868. "lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
  4869. "lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
  4870. "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll",
  4871. "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
  4872. ]
  4873. },
  4874. "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
  4875. "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
  4876. "type": "package",
  4877. "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
  4878. "files": [
  4879. "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
  4880. "Microsoft.Extensions.FileSystemGlobbing.nuspec",
  4881. "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
  4882. "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
  4883. "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
  4884. "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
  4885. ]
  4886. },
  4887. "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
  4888. "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
  4889. "type": "package",
  4890. "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
  4891. "files": [
  4892. "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
  4893. "Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
  4894. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
  4895. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
  4896. ]
  4897. },
  4898. "Microsoft.Extensions.Localization/1.1.0": {
  4899. "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
  4900. "type": "package",
  4901. "path": "Microsoft.Extensions.Localization/1.1.0",
  4902. "files": [
  4903. "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
  4904. "Microsoft.Extensions.Localization.nuspec",
  4905. "lib/net451/Microsoft.Extensions.Localization.dll",
  4906. "lib/net451/Microsoft.Extensions.Localization.xml",
  4907. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll",
  4908. "lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
  4909. ]
  4910. },
  4911. "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
  4912. "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
  4913. "type": "package",
  4914. "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
  4915. "files": [
  4916. "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
  4917. "Microsoft.Extensions.Localization.Abstractions.nuspec",
  4918. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4919. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
  4920. ]
  4921. },
  4922. "Microsoft.Extensions.Logging/1.1.0": {
  4923. "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
  4924. "type": "package",
  4925. "path": "Microsoft.Extensions.Logging/1.1.0",
  4926. "files": [
  4927. "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
  4928. "Microsoft.Extensions.Logging.nuspec",
  4929. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
  4930. "lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
  4931. ]
  4932. },
  4933. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  4934. "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
  4935. "type": "package",
  4936. "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
  4937. "files": [
  4938. "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
  4939. "Microsoft.Extensions.Logging.Abstractions.nuspec",
  4940. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
  4941. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
  4942. ]
  4943. },
  4944. "Microsoft.Extensions.Logging.Console/1.1.0": {
  4945. "sha512": "MkFjLvtMdYN1g3NesmkeuQ56f/LuQS46PvjhbF1rUoH9L1ZM3/uteuTknVDUryeWlh18oh6ew7Xo9H50KWPAog==",
  4946. "type": "package",
  4947. "path": "Microsoft.Extensions.Logging.Console/1.1.0",
  4948. "files": [
  4949. "Microsoft.Extensions.Logging.Console.1.1.0.nupkg.sha512",
  4950. "Microsoft.Extensions.Logging.Console.nuspec",
  4951. "lib/net451/Microsoft.Extensions.Logging.Console.dll",
  4952. "lib/net451/Microsoft.Extensions.Logging.Console.xml",
  4953. "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll",
  4954. "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml"
  4955. ]
  4956. },
  4957. "Microsoft.Extensions.Logging.Debug/1.1.0": {
  4958. "sha512": "6Kg1PyEbQjd37ZeWkrseJNvb99iUCdXRAjUqFd2zxW9ZCwjn9h+aSC2bMbyERvC+n6lImp053jqRBsotIrMiXw==",
  4959. "type": "package",
  4960. "path": "Microsoft.Extensions.Logging.Debug/1.1.0",
  4961. "files": [
  4962. "Microsoft.Extensions.Logging.Debug.1.1.0.nupkg.sha512",
  4963. "Microsoft.Extensions.Logging.Debug.nuspec",
  4964. "lib/net451/Microsoft.Extensions.Logging.Debug.dll",
  4965. "lib/net451/Microsoft.Extensions.Logging.Debug.xml",
  4966. "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll",
  4967. "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.xml"
  4968. ]
  4969. },
  4970. "Microsoft.Extensions.ObjectPool/1.1.0": {
  4971. "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
  4972. "type": "package",
  4973. "path": "Microsoft.Extensions.ObjectPool/1.1.0",
  4974. "files": [
  4975. "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
  4976. "Microsoft.Extensions.ObjectPool.nuspec",
  4977. "lib/net451/Microsoft.Extensions.ObjectPool.dll",
  4978. "lib/net451/Microsoft.Extensions.ObjectPool.xml",
  4979. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll",
  4980. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
  4981. ]
  4982. },
  4983. "Microsoft.Extensions.Options/1.1.0": {
  4984. "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
  4985. "type": "package",
  4986. "path": "Microsoft.Extensions.Options/1.1.0",
  4987. "files": [
  4988. "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
  4989. "Microsoft.Extensions.Options.nuspec",
  4990. "lib/netstandard1.0/Microsoft.Extensions.Options.dll",
  4991. "lib/netstandard1.0/Microsoft.Extensions.Options.xml"
  4992. ]
  4993. },
  4994. "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
  4995. "sha512": "loehh0znbtZw+mqk2VY7VyJu7t7N2TvEjSpln0Twkli/rF26HcxWQ3rdSvSr66yOCt7Dnur6DcW6HWXfa2u/PA==",
  4996. "type": "package",
  4997. "path": "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0",
  4998. "files": [
  4999. "Microsoft.Extensions.Options.ConfigurationExtensions.1.1.0.nupkg.sha512",
  5000. "Microsoft.Extensions.Options.ConfigurationExtensions.nuspec",
  5001. "lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5002. "lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml"
  5003. ]
  5004. },
  5005. "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
  5006. "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
  5007. "type": "package",
  5008. "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
  5009. "files": [
  5010. "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
  5011. "Microsoft.Extensions.PlatformAbstractions.nuspec",
  5012. "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
  5013. "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
  5014. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll",
  5015. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
  5016. ]
  5017. },
  5018. "Microsoft.Extensions.Primitives/1.1.0": {
  5019. "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
  5020. "type": "package",
  5021. "path": "Microsoft.Extensions.Primitives/1.1.0",
  5022. "files": [
  5023. "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
  5024. "Microsoft.Extensions.Primitives.nuspec",
  5025. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
  5026. "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
  5027. ]
  5028. },
  5029. "Microsoft.Extensions.WebEncoders/1.1.0": {
  5030. "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
  5031. "type": "package",
  5032. "path": "Microsoft.Extensions.WebEncoders/1.1.0",
  5033. "files": [
  5034. "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
  5035. "Microsoft.Extensions.WebEncoders.nuspec",
  5036. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
  5037. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
  5038. ]
  5039. },
  5040. "Microsoft.Net.Http.Headers/1.1.0": {
  5041. "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
  5042. "type": "package",
  5043. "path": "Microsoft.Net.Http.Headers/1.1.0",
  5044. "files": [
  5045. "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
  5046. "Microsoft.Net.Http.Headers.nuspec",
  5047. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
  5048. "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
  5049. ]
  5050. },
  5051. "Microsoft.NETCore.App/1.0.1": {
  5052. "sha512": "1ZiTaAAc3Msi4siXtdVmallNCrFA5ZUzoGkIh4litHjBJBZcRgWvwRXT60woB5FpWPC9qDiTFc6L1Gr8EbOPog==",
  5053. "type": "package",
  5054. "path": "Microsoft.NETCore.App/1.0.1",
  5055. "files": [
  5056. "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
  5057. "Microsoft.NETCore.App.nuspec",
  5058. "ThirdPartyNotices.txt",
  5059. "dotnet_library_license.txt",
  5060. "lib/netcoreapp1.0/_._"
  5061. ]
  5062. },
  5063. "Microsoft.NETCore.DotNetHost/1.0.1": {
  5064. "sha512": "sMqlTLwQ7PPeFs6w4eLPN07z+xtecj4k+mFoCLPsppsid91fmjRJBTRwOAx2k1cFCZb4TXswDhjmN05eqJ+0Lg==",
  5065. "type": "package",
  5066. "path": "Microsoft.NETCore.DotNetHost/1.0.1",
  5067. "files": [
  5068. "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
  5069. "Microsoft.NETCore.DotNetHost.nuspec",
  5070. "ThirdPartyNotices.txt",
  5071. "dotnet_library_license.txt",
  5072. "runtime.json"
  5073. ]
  5074. },
  5075. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  5076. "sha512": "GRziAkBjDCXhlsVra4tHyK+Q5sK+pwUrpuOMEgk1G501zCaU2b7JMneLZyvU6vJ463n07/jboqjT897CDzyioQ==",
  5077. "type": "package",
  5078. "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
  5079. "files": [
  5080. "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
  5081. "Microsoft.NETCore.DotNetHostPolicy.nuspec",
  5082. "ThirdPartyNotices.txt",
  5083. "dotnet_library_license.txt",
  5084. "runtime.json"
  5085. ]
  5086. },
  5087. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  5088. "sha512": "irdpBgW2A7C/kJf38hWUWp2ouF2mDQqGKbiqtF7UhDysTPW5j7oOhvikgPjojvnGXL9TpCjqEGE3ZYkYdKZLeA==",
  5089. "type": "package",
  5090. "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
  5091. "files": [
  5092. "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
  5093. "Microsoft.NETCore.DotNetHostResolver.nuspec",
  5094. "ThirdPartyNotices.txt",
  5095. "dotnet_library_license.txt",
  5096. "runtime.json"
  5097. ]
  5098. },
  5099. "Microsoft.NETCore.Jit/1.0.4": {
  5100. "sha512": "s336ryZlopR+pQ4VfKlILX1LxiQzpCPnmiGot0p5aFPeCjwmKtHC88MI8jXdvdGPySON9i1bPUKJP8jiiPIAjA==",
  5101. "type": "package",
  5102. "path": "Microsoft.NETCore.Jit/1.0.4",
  5103. "files": [
  5104. "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
  5105. "Microsoft.NETCore.Jit.nuspec",
  5106. "ThirdPartyNotices.txt",
  5107. "dotnet_library_license.txt",
  5108. "runtime.json"
  5109. ]
  5110. },
  5111. "Microsoft.NETCore.Platforms/1.1.0": {
  5112. "sha512": "RTmkgwugaI7tV0PjAwBX4ZKHbv/lMuIKUBeyIB0aosbGALFKIxiGvseJDF5ui5RBGbEJ5AvxZsGI0Rr6ZEfwaw==",
  5113. "type": "package",
  5114. "path": "Microsoft.NETCore.Platforms/1.1.0",
  5115. "files": [
  5116. "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
  5117. "Microsoft.NETCore.Platforms.nuspec",
  5118. "ThirdPartyNotices.txt",
  5119. "dotnet_library_license.txt",
  5120. "lib/netstandard1.0/_._",
  5121. "runtime.json"
  5122. ]
  5123. },
  5124. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  5125. "sha512": "NTd+F7MQJi5wFh6Hq3uVH0L3om+pVcfF+bpw0hSd+Ka92QSZ4IfDJw/IWqTQ9jUtLyWYR4XR+52HD5HW+a+zoQ==",
  5126. "type": "package",
  5127. "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
  5128. "files": [
  5129. "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
  5130. "Microsoft.NETCore.Runtime.CoreCLR.nuspec",
  5131. "ThirdPartyNotices.txt",
  5132. "dotnet_library_license.txt",
  5133. "runtime.json"
  5134. ]
  5135. },
  5136. "Microsoft.NETCore.Targets/1.1.0": {
  5137. "sha512": "TjtMctxB3IKIyNMBQYoxx7jFQmJM9iaTLMp/6g4nMLC33nc6PgL8kXmnvQouPBVR+WvHVDY1By0D2Elpf2KB4w==",
  5138. "type": "package",
  5139. "path": "Microsoft.NETCore.Targets/1.1.0",
  5140. "files": [
  5141. "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
  5142. "Microsoft.NETCore.Targets.nuspec",
  5143. "ThirdPartyNotices.txt",
  5144. "dotnet_library_license.txt",
  5145. "lib/netstandard1.0/_._",
  5146. "runtime.json"
  5147. ]
  5148. },
  5149. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  5150. "sha512": "2BQeO8o+R9rDiMzsBqFrtr3S8fC8wrC1v20gcYAkVrzk/4ydLbzHfpk6SP3QbXIM2G9pPf1idJ/G1mgwSVgkuA==",
  5151. "type": "package",
  5152. "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
  5153. "files": [
  5154. "Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512",
  5155. "Microsoft.NETCore.Windows.ApiSets.nuspec",
  5156. "ThirdPartyNotices.txt",
  5157. "dotnet_library_license.txt",
  5158. "runtime.json"
  5159. ]
  5160. },
  5161. "Microsoft.VisualBasic/10.0.1": {
  5162. "sha512": "nEk7ZPzxzfOvFbIjdBB7cgg/4toz2TLu4qLKcbL7NiLWvxXQMsU4PbWnRBByiCFFSKVcALEvq2d2yfmxQCYstQ==",
  5163. "type": "package",
  5164. "path": "Microsoft.VisualBasic/10.0.1",
  5165. "files": [
  5166. "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
  5167. "Microsoft.VisualBasic.nuspec",
  5168. "ThirdPartyNotices.txt",
  5169. "dotnet_library_license.txt",
  5170. "lib/net45/_._",
  5171. "lib/netcore50/Microsoft.VisualBasic.dll",
  5172. "lib/netstandard1.3/Microsoft.VisualBasic.dll",
  5173. "lib/portable-net45+win8+wpa81/_._",
  5174. "lib/win8/_._",
  5175. "lib/wpa81/_._",
  5176. "ref/net45/_._",
  5177. "ref/netcore50/Microsoft.VisualBasic.dll",
  5178. "ref/netcore50/Microsoft.VisualBasic.xml",
  5179. "ref/netcore50/de/Microsoft.VisualBasic.xml",
  5180. "ref/netcore50/es/Microsoft.VisualBasic.xml",
  5181. "ref/netcore50/fr/Microsoft.VisualBasic.xml",
  5182. "ref/netcore50/it/Microsoft.VisualBasic.xml",
  5183. "ref/netcore50/ja/Microsoft.VisualBasic.xml",
  5184. "ref/netcore50/ko/Microsoft.VisualBasic.xml",
  5185. "ref/netcore50/ru/Microsoft.VisualBasic.xml",
  5186. "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml",
  5187. "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml",
  5188. "ref/netstandard1.1/Microsoft.VisualBasic.dll",
  5189. "ref/netstandard1.1/Microsoft.VisualBasic.xml",
  5190. "ref/netstandard1.1/de/Microsoft.VisualBasic.xml",
  5191. "ref/netstandard1.1/es/Microsoft.VisualBasic.xml",
  5192. "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml",
  5193. "ref/netstandard1.1/it/Microsoft.VisualBasic.xml",
  5194. "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml",
  5195. "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml",
  5196. "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml",
  5197. "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml",
  5198. "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
  5199. "ref/portable-net45+win8+wpa81/_._",
  5200. "ref/win8/_._",
  5201. "ref/wpa81/_._"
  5202. ]
  5203. },
  5204. "Microsoft.Win32.Primitives/4.3.0": {
  5205. "sha512": "vl5HOGiTB5AcQfZ9OPmgiLTwBlM5MhYtbv+nh+plxq2epP8lNZwHcaB9IGcVi3cOVV9MQbt+MQ/q4pAcmBOgjA==",
  5206. "type": "package",
  5207. "path": "Microsoft.Win32.Primitives/4.3.0",
  5208. "files": [
  5209. "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
  5210. "Microsoft.Win32.Primitives.nuspec",
  5211. "ThirdPartyNotices.txt",
  5212. "dotnet_library_license.txt",
  5213. "lib/MonoAndroid10/_._",
  5214. "lib/MonoTouch10/_._",
  5215. "lib/net46/Microsoft.Win32.Primitives.dll",
  5216. "lib/xamarinios10/_._",
  5217. "lib/xamarinmac20/_._",
  5218. "lib/xamarintvos10/_._",
  5219. "lib/xamarinwatchos10/_._",
  5220. "ref/MonoAndroid10/_._",
  5221. "ref/MonoTouch10/_._",
  5222. "ref/net46/Microsoft.Win32.Primitives.dll",
  5223. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5224. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5225. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5226. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5227. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5228. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5229. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5230. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5231. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5232. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5233. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5234. "ref/xamarinios10/_._",
  5235. "ref/xamarinmac20/_._",
  5236. "ref/xamarintvos10/_._",
  5237. "ref/xamarinwatchos10/_._"
  5238. ]
  5239. },
  5240. "Microsoft.Win32.Registry/4.3.0": {
  5241. "sha512": "YGkqKGEvkF0m1gWSKdcVSyXthX9L5QNuMxuMuSd9GTxDqR18mmdspaXUTpKS5NZBhnxdFF59pJbZ4VyP3OdPOw==",
  5242. "type": "package",
  5243. "path": "Microsoft.Win32.Registry/4.3.0",
  5244. "files": [
  5245. "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
  5246. "Microsoft.Win32.Registry.nuspec",
  5247. "ThirdPartyNotices.txt",
  5248. "dotnet_library_license.txt",
  5249. "lib/net46/Microsoft.Win32.Registry.dll",
  5250. "ref/net46/Microsoft.Win32.Registry.dll",
  5251. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  5252. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  5253. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  5254. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  5255. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  5256. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  5257. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  5258. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  5259. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  5260. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  5261. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  5262. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5263. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  5264. "runtimes/win/lib/netcore50/_._",
  5265. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
  5266. ]
  5267. },
  5268. "NETStandard.Library/1.6.1": {
  5269. "sha512": "xKGn5Y57yyimfRm6sKI2Yg/ZJ7oGcvR9+lpfZZI6StFCJqhS8JdRkT+qTZOTl37Trh7rLN5X5qFgbOfAlbPQrQ==",
  5270. "type": "package",
  5271. "path": "NETStandard.Library/1.6.1",
  5272. "files": [
  5273. "NETStandard.Library.1.6.1.nupkg.sha512",
  5274. "NETStandard.Library.nuspec",
  5275. "ThirdPartyNotices.txt",
  5276. "dotnet_library_license.txt"
  5277. ]
  5278. },
  5279. "Newtonsoft.Json/9.0.1": {
  5280. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  5281. "type": "package",
  5282. "path": "Newtonsoft.Json/9.0.1",
  5283. "files": [
  5284. "Newtonsoft.Json.9.0.1.nupkg.sha512",
  5285. "Newtonsoft.Json.nuspec",
  5286. "lib/net20/Newtonsoft.Json.dll",
  5287. "lib/net20/Newtonsoft.Json.xml",
  5288. "lib/net35/Newtonsoft.Json.dll",
  5289. "lib/net35/Newtonsoft.Json.xml",
  5290. "lib/net40/Newtonsoft.Json.dll",
  5291. "lib/net40/Newtonsoft.Json.xml",
  5292. "lib/net45/Newtonsoft.Json.dll",
  5293. "lib/net45/Newtonsoft.Json.xml",
  5294. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5295. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5296. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  5297. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  5298. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  5299. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  5300. "tools/install.ps1"
  5301. ]
  5302. },
  5303. "Npgsql/3.1.9": {
  5304. "sha512": "maoOs4rudcIG1SlPHsLRTgwUQA8+06k037z2f9KSKe8KrVHu3tBUUePgt3U3saGFrACf80/j9CzsleCisnPo5A==",
  5305. "type": "package",
  5306. "path": "Npgsql/3.1.9",
  5307. "files": [
  5308. "Npgsql.3.1.9.nupkg.sha512",
  5309. "Npgsql.nuspec",
  5310. "lib/net45/Npgsql.dll",
  5311. "lib/net45/Npgsql.xml",
  5312. "lib/net451/Npgsql.dll",
  5313. "lib/net451/Npgsql.xml",
  5314. "lib/netstandard1.3/Npgsql.dll",
  5315. "lib/netstandard1.3/Npgsql.xml"
  5316. ]
  5317. },
  5318. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  5319. "sha512": "7J4oVuALr8voMhbCkQUODu6VG9DR4u3Io4oIwZK1VocNlXN8RHPFhS1nOQOb/TAe+Eav/GqnmEiSZ0uhe2wphQ==",
  5320. "type": "package",
  5321. "path": "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0",
  5322. "files": [
  5323. "Npgsql.EntityFrameworkCore.PostgreSQL.1.1.0.nupkg.sha512",
  5324. "Npgsql.EntityFrameworkCore.PostgreSQL.nuspec",
  5325. "lib/net451/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
  5326. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll"
  5327. ]
  5328. },
  5329. "Remotion.Linq/2.1.1": {
  5330. "sha512": "IJn0BqkvwEDpP+2qjvci7n4/a9f7DhKESLWb2/uG4xQh3rTkGTBUz69bI4IivCoKkTFAqjXxYDZw2K/npohjsw==",
  5331. "type": "package",
  5332. "path": "Remotion.Linq/2.1.1",
  5333. "files": [
  5334. "Remotion.Linq.2.1.1.nupkg.sha512",
  5335. "Remotion.Linq.nuspec",
  5336. "lib/net35/Remotion.Linq.XML",
  5337. "lib/net35/Remotion.Linq.dll",
  5338. "lib/net40/Remotion.Linq.XML",
  5339. "lib/net40/Remotion.Linq.dll",
  5340. "lib/net45/Remotion.Linq.XML",
  5341. "lib/net45/Remotion.Linq.dll",
  5342. "lib/netstandard1.0/Remotion.Linq.dll",
  5343. "lib/netstandard1.0/Remotion.Linq.xml",
  5344. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll",
  5345. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
  5346. ]
  5347. },
  5348. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5349. "sha512": "ZJbyxj5gWzOfnJTXGn9LH8ZK9t/PGFUVlsgv/dZUFy/ruE+eScVrAkaBTwf58FJ3F84cBMBOIm4QscRTtfxgqg==",
  5350. "type": "package",
  5351. "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5352. "files": [
  5353. "ThirdPartyNotices.txt",
  5354. "dotnet_library_license.txt",
  5355. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5356. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5357. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5358. ]
  5359. },
  5360. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5361. "sha512": "NCGzArSeAPBQJrBY2TUzb/19o3E3TgDFYyl+r+8zWuExcqJDBz5aGkEW8SwwqdscRc37IdtwTr2D2duW47CmHg==",
  5362. "type": "package",
  5363. "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5364. "files": [
  5365. "ThirdPartyNotices.txt",
  5366. "dotnet_library_license.txt",
  5367. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5368. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5369. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5370. ]
  5371. },
  5372. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5373. "sha512": "LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==",
  5374. "type": "package",
  5375. "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5376. "files": [
  5377. "ThirdPartyNotices.txt",
  5378. "dotnet_library_license.txt",
  5379. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5380. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5381. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5382. ]
  5383. },
  5384. "runtime.native.System/4.3.0": {
  5385. "sha512": "nTWOfeX69uwxSiJSyNyzsEglUyfMJQykNusa31AsilJ3vWjhW8RqCIdjR+qxfx/40LGlLUKECl+j6A+/sI1ejw==",
  5386. "type": "package",
  5387. "path": "runtime.native.System/4.3.0",
  5388. "files": [
  5389. "ThirdPartyNotices.txt",
  5390. "dotnet_library_license.txt",
  5391. "lib/netstandard1.0/_._",
  5392. "runtime.native.System.4.3.0.nupkg.sha512",
  5393. "runtime.native.System.nuspec"
  5394. ]
  5395. },
  5396. "runtime.native.System.IO.Compression/4.3.0": {
  5397. "sha512": "b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==",
  5398. "type": "package",
  5399. "path": "runtime.native.System.IO.Compression/4.3.0",
  5400. "files": [
  5401. "ThirdPartyNotices.txt",
  5402. "dotnet_library_license.txt",
  5403. "lib/netstandard1.0/_._",
  5404. "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
  5405. "runtime.native.System.IO.Compression.nuspec"
  5406. ]
  5407. },
  5408. "runtime.native.System.Net.Http/4.3.0": {
  5409. "sha512": "guqHgQOK2eUgtJae2VKjNawBn1xjC0hfOt5wASHa60XHbIdCsQlqtvMsFG+3hy7yp88V+gi9fZCjubuDkeakcQ==",
  5410. "type": "package",
  5411. "path": "runtime.native.System.Net.Http/4.3.0",
  5412. "files": [
  5413. "ThirdPartyNotices.txt",
  5414. "dotnet_library_license.txt",
  5415. "lib/netstandard1.0/_._",
  5416. "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
  5417. "runtime.native.System.Net.Http.nuspec"
  5418. ]
  5419. },
  5420. "runtime.native.System.Net.Security/4.0.1": {
  5421. "sha512": "U3JOSWmwFNUpbxw+Iq+NDXruyFQhl1qej0VcDmVFwU4n2Y7IHN6nd2dQQsRpJiqtYAHjiHhfQH9US60BjUvxHg==",
  5422. "type": "package",
  5423. "path": "runtime.native.System.Net.Security/4.0.1",
  5424. "files": [
  5425. "ThirdPartyNotices.txt",
  5426. "dotnet_library_license.txt",
  5427. "lib/netstandard1.0/_._",
  5428. "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
  5429. "runtime.native.System.Net.Security.nuspec"
  5430. ]
  5431. },
  5432. "runtime.native.System.Security.Cryptography/4.0.0": {
  5433. "sha512": "vM+JcNCiIj/XxXu4IWqxrOROrDxZGStukyg31j177KruTYbvsEu8biJoo8YEZUrHG+WcBtvIlcRLohVOQlwfWg==",
  5434. "type": "package",
  5435. "path": "runtime.native.System.Security.Cryptography/4.0.0",
  5436. "files": [
  5437. "ThirdPartyNotices.txt",
  5438. "dotnet_library_license.txt",
  5439. "lib/netstandard1.0/_._",
  5440. "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
  5441. "runtime.native.System.Security.Cryptography.nuspec"
  5442. ]
  5443. },
  5444. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5445. "sha512": "jwjwlEL0Elv6gwoyaokRn12nv/JE+UW/DXJEbzhjCPvGbef36StnHKc9XaZD/rGWqYicrphZ7eumR/jdmNcjRg==",
  5446. "type": "package",
  5447. "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
  5448. "files": [
  5449. "ThirdPartyNotices.txt",
  5450. "dotnet_library_license.txt",
  5451. "lib/netstandard1.0/_._",
  5452. "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  5453. "runtime.native.System.Security.Cryptography.Apple.nuspec"
  5454. ]
  5455. },
  5456. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5457. "sha512": "wWqB5kJ+vYC+IH7orP8EezottaOczECwYBFcecbkgG3IG6s8WghUdmM6pbUqSLhPibItxCWNg73rvG5cbL9tmw==",
  5458. "type": "package",
  5459. "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5460. "files": [
  5461. "ThirdPartyNotices.txt",
  5462. "dotnet_library_license.txt",
  5463. "lib/netstandard1.0/_._",
  5464. "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5465. "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
  5466. ]
  5467. },
  5468. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5469. "sha512": "zWLOQ77Y4FV/6Vw2g+FYzprbQX5/xKvjoCLe4L9159Aw1bSboQoJ1KRZFNdexDooWRAIsLSdE0ZokkrVkwN8Yw==",
  5470. "type": "package",
  5471. "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5472. "files": [
  5473. "ThirdPartyNotices.txt",
  5474. "dotnet_library_license.txt",
  5475. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5476. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5477. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5478. ]
  5479. },
  5480. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5481. "sha512": "G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==",
  5482. "type": "package",
  5483. "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5484. "files": [
  5485. "ThirdPartyNotices.txt",
  5486. "dotnet_library_license.txt",
  5487. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5488. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5489. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5490. ]
  5491. },
  5492. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5493. "sha512": "Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==",
  5494. "type": "package",
  5495. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
  5496. "files": [
  5497. "ThirdPartyNotices.txt",
  5498. "dotnet_library_license.txt",
  5499. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  5500. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
  5501. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5502. ]
  5503. },
  5504. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5505. "sha512": "/p8IQT2brFMDa7BHMH71LV+w5Tb3OxoLHxhn6+MGqN5xeqhM2HRHmj+7xQGJnaRn73d7ZTvp6yRCFMvolws4wA==",
  5506. "type": "package",
  5507. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5508. "files": [
  5509. "ThirdPartyNotices.txt",
  5510. "dotnet_library_license.txt",
  5511. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5512. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5513. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5514. ]
  5515. },
  5516. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5517. "sha512": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==",
  5518. "type": "package",
  5519. "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5520. "files": [
  5521. "ThirdPartyNotices.txt",
  5522. "dotnet_library_license.txt",
  5523. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5524. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5525. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5526. ]
  5527. },
  5528. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5529. "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==",
  5530. "type": "package",
  5531. "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5532. "files": [
  5533. "ThirdPartyNotices.txt",
  5534. "dotnet_library_license.txt",
  5535. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5536. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5537. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5538. ]
  5539. },
  5540. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5541. "sha512": "YWzJvhiC+iLWI/IfpPQUIBhYnAHUFQFRDqR7VDNmPj0b3rjW7dArFqKysZ9v0iSBs9Ih4v9GasLpYCSUwADMQQ==",
  5542. "type": "package",
  5543. "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5544. "files": [
  5545. "ThirdPartyNotices.txt",
  5546. "dotnet_library_license.txt",
  5547. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5548. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5549. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5550. ]
  5551. },
  5552. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5553. "sha512": "1uVTITQP8/cI6YoO6FqfW1pzP0k2TnDZ3TFD88Bu/9H7ZuTsMY9xmadbGpwPu8w8swcd1ifZJsjD9hF9O6C/tg==",
  5554. "type": "package",
  5555. "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5556. "files": [
  5557. "ThirdPartyNotices.txt",
  5558. "dotnet_library_license.txt",
  5559. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5560. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5561. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5562. ]
  5563. },
  5564. "System.AppContext/4.3.0": {
  5565. "sha512": "196NfWFfUbYriRPqeGwOnLnvmXBRPOEeo5oaLQ1TcMExbCBC3Ub8cGkjSfc/XbXjYyXXpeePcYOIJAzaEgwpcg==",
  5566. "type": "package",
  5567. "path": "System.AppContext/4.3.0",
  5568. "files": [
  5569. "System.AppContext.4.3.0.nupkg.sha512",
  5570. "System.AppContext.nuspec",
  5571. "ThirdPartyNotices.txt",
  5572. "dotnet_library_license.txt",
  5573. "lib/MonoAndroid10/_._",
  5574. "lib/MonoTouch10/_._",
  5575. "lib/net46/System.AppContext.dll",
  5576. "lib/net463/System.AppContext.dll",
  5577. "lib/netcore50/System.AppContext.dll",
  5578. "lib/netstandard1.6/System.AppContext.dll",
  5579. "lib/xamarinios10/_._",
  5580. "lib/xamarinmac20/_._",
  5581. "lib/xamarintvos10/_._",
  5582. "lib/xamarinwatchos10/_._",
  5583. "ref/MonoAndroid10/_._",
  5584. "ref/MonoTouch10/_._",
  5585. "ref/net46/System.AppContext.dll",
  5586. "ref/net463/System.AppContext.dll",
  5587. "ref/netstandard/_._",
  5588. "ref/netstandard1.3/System.AppContext.dll",
  5589. "ref/netstandard1.3/System.AppContext.xml",
  5590. "ref/netstandard1.3/de/System.AppContext.xml",
  5591. "ref/netstandard1.3/es/System.AppContext.xml",
  5592. "ref/netstandard1.3/fr/System.AppContext.xml",
  5593. "ref/netstandard1.3/it/System.AppContext.xml",
  5594. "ref/netstandard1.3/ja/System.AppContext.xml",
  5595. "ref/netstandard1.3/ko/System.AppContext.xml",
  5596. "ref/netstandard1.3/ru/System.AppContext.xml",
  5597. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5598. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5599. "ref/netstandard1.6/System.AppContext.dll",
  5600. "ref/netstandard1.6/System.AppContext.xml",
  5601. "ref/netstandard1.6/de/System.AppContext.xml",
  5602. "ref/netstandard1.6/es/System.AppContext.xml",
  5603. "ref/netstandard1.6/fr/System.AppContext.xml",
  5604. "ref/netstandard1.6/it/System.AppContext.xml",
  5605. "ref/netstandard1.6/ja/System.AppContext.xml",
  5606. "ref/netstandard1.6/ko/System.AppContext.xml",
  5607. "ref/netstandard1.6/ru/System.AppContext.xml",
  5608. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5609. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5610. "ref/xamarinios10/_._",
  5611. "ref/xamarinmac20/_._",
  5612. "ref/xamarintvos10/_._",
  5613. "ref/xamarinwatchos10/_._",
  5614. "runtimes/aot/lib/netcore50/System.AppContext.dll"
  5615. ]
  5616. },
  5617. "System.Buffers/4.3.0": {
  5618. "sha512": "QlPt4bQMECP/uhcNRRS+pQIyV2wJKTNae0xOYabWEn0o5QeR8NGLcp6++ncRafvecygL22uEp9kHP5LQelw5yA==",
  5619. "type": "package",
  5620. "path": "System.Buffers/4.3.0",
  5621. "files": [
  5622. "System.Buffers.4.3.0.nupkg.sha512",
  5623. "System.Buffers.nuspec",
  5624. "ThirdPartyNotices.txt",
  5625. "dotnet_library_license.txt",
  5626. "lib/netstandard1.1/.xml",
  5627. "lib/netstandard1.1/System.Buffers.dll"
  5628. ]
  5629. },
  5630. "System.Collections/4.3.0": {
  5631. "sha512": "dCeWf/8Kw4IXDArDjLqCxuJedAlqWspWOpO0YZ+1pQj0GMmF89Y15PqUWwaTsEKaksidNA8yC8uUVDmfiueTkA==",
  5632. "type": "package",
  5633. "path": "System.Collections/4.3.0",
  5634. "files": [
  5635. "System.Collections.4.3.0.nupkg.sha512",
  5636. "System.Collections.nuspec",
  5637. "ThirdPartyNotices.txt",
  5638. "dotnet_library_license.txt",
  5639. "lib/MonoAndroid10/_._",
  5640. "lib/MonoTouch10/_._",
  5641. "lib/net45/_._",
  5642. "lib/portable-net45+win8+wp8+wpa81/_._",
  5643. "lib/win8/_._",
  5644. "lib/wp80/_._",
  5645. "lib/wpa81/_._",
  5646. "lib/xamarinios10/_._",
  5647. "lib/xamarinmac20/_._",
  5648. "lib/xamarintvos10/_._",
  5649. "lib/xamarinwatchos10/_._",
  5650. "ref/MonoAndroid10/_._",
  5651. "ref/MonoTouch10/_._",
  5652. "ref/net45/_._",
  5653. "ref/netcore50/System.Collections.dll",
  5654. "ref/netcore50/System.Collections.xml",
  5655. "ref/netcore50/de/System.Collections.xml",
  5656. "ref/netcore50/es/System.Collections.xml",
  5657. "ref/netcore50/fr/System.Collections.xml",
  5658. "ref/netcore50/it/System.Collections.xml",
  5659. "ref/netcore50/ja/System.Collections.xml",
  5660. "ref/netcore50/ko/System.Collections.xml",
  5661. "ref/netcore50/ru/System.Collections.xml",
  5662. "ref/netcore50/zh-hans/System.Collections.xml",
  5663. "ref/netcore50/zh-hant/System.Collections.xml",
  5664. "ref/netstandard1.0/System.Collections.dll",
  5665. "ref/netstandard1.0/System.Collections.xml",
  5666. "ref/netstandard1.0/de/System.Collections.xml",
  5667. "ref/netstandard1.0/es/System.Collections.xml",
  5668. "ref/netstandard1.0/fr/System.Collections.xml",
  5669. "ref/netstandard1.0/it/System.Collections.xml",
  5670. "ref/netstandard1.0/ja/System.Collections.xml",
  5671. "ref/netstandard1.0/ko/System.Collections.xml",
  5672. "ref/netstandard1.0/ru/System.Collections.xml",
  5673. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5674. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5675. "ref/netstandard1.3/System.Collections.dll",
  5676. "ref/netstandard1.3/System.Collections.xml",
  5677. "ref/netstandard1.3/de/System.Collections.xml",
  5678. "ref/netstandard1.3/es/System.Collections.xml",
  5679. "ref/netstandard1.3/fr/System.Collections.xml",
  5680. "ref/netstandard1.3/it/System.Collections.xml",
  5681. "ref/netstandard1.3/ja/System.Collections.xml",
  5682. "ref/netstandard1.3/ko/System.Collections.xml",
  5683. "ref/netstandard1.3/ru/System.Collections.xml",
  5684. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5685. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5686. "ref/portable-net45+win8+wp8+wpa81/_._",
  5687. "ref/win8/_._",
  5688. "ref/wp80/_._",
  5689. "ref/wpa81/_._",
  5690. "ref/xamarinios10/_._",
  5691. "ref/xamarinmac20/_._",
  5692. "ref/xamarintvos10/_._",
  5693. "ref/xamarinwatchos10/_._"
  5694. ]
  5695. },
  5696. "System.Collections.Concurrent/4.3.0": {
  5697. "sha512": "W1w8D/B4Nt0S8rwPZJGIAxVvUTGxE69AEW79okWOoYuA04gqJQeHoi+QK7Agpk5FnTFxxVQ30k7HAs9yhRIzFA==",
  5698. "type": "package",
  5699. "path": "System.Collections.Concurrent/4.3.0",
  5700. "files": [
  5701. "System.Collections.Concurrent.4.3.0.nupkg.sha512",
  5702. "System.Collections.Concurrent.nuspec",
  5703. "ThirdPartyNotices.txt",
  5704. "dotnet_library_license.txt",
  5705. "lib/MonoAndroid10/_._",
  5706. "lib/MonoTouch10/_._",
  5707. "lib/net45/_._",
  5708. "lib/netcore50/System.Collections.Concurrent.dll",
  5709. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5710. "lib/portable-net45+win8+wpa81/_._",
  5711. "lib/win8/_._",
  5712. "lib/wpa81/_._",
  5713. "lib/xamarinios10/_._",
  5714. "lib/xamarinmac20/_._",
  5715. "lib/xamarintvos10/_._",
  5716. "lib/xamarinwatchos10/_._",
  5717. "ref/MonoAndroid10/_._",
  5718. "ref/MonoTouch10/_._",
  5719. "ref/net45/_._",
  5720. "ref/netcore50/System.Collections.Concurrent.dll",
  5721. "ref/netcore50/System.Collections.Concurrent.xml",
  5722. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5723. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5724. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5725. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5726. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5727. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5728. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5729. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5730. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5731. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5732. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5733. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5734. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5735. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5736. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5737. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5738. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5739. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5740. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5741. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5742. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5743. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5744. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5745. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5746. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5747. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5748. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5749. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5750. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5751. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5752. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5753. "ref/portable-net45+win8+wpa81/_._",
  5754. "ref/win8/_._",
  5755. "ref/wpa81/_._",
  5756. "ref/xamarinios10/_._",
  5757. "ref/xamarinmac20/_._",
  5758. "ref/xamarintvos10/_._",
  5759. "ref/xamarinwatchos10/_._"
  5760. ]
  5761. },
  5762. "System.Collections.Immutable/1.3.0": {
  5763. "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
  5764. "type": "package",
  5765. "path": "System.Collections.Immutable/1.3.0",
  5766. "files": [
  5767. "System.Collections.Immutable.1.3.0.nupkg.sha512",
  5768. "System.Collections.Immutable.nuspec",
  5769. "ThirdPartyNotices.txt",
  5770. "dotnet_library_license.txt",
  5771. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5772. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5773. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5774. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
  5775. ]
  5776. },
  5777. "System.Collections.NonGeneric/4.3.0": {
  5778. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5779. "type": "package",
  5780. "path": "System.Collections.NonGeneric/4.3.0",
  5781. "files": [
  5782. "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
  5783. "System.Collections.NonGeneric.nuspec",
  5784. "ThirdPartyNotices.txt",
  5785. "dotnet_library_license.txt",
  5786. "lib/MonoAndroid10/_._",
  5787. "lib/MonoTouch10/_._",
  5788. "lib/net46/System.Collections.NonGeneric.dll",
  5789. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5790. "lib/xamarinios10/_._",
  5791. "lib/xamarinmac20/_._",
  5792. "lib/xamarintvos10/_._",
  5793. "lib/xamarinwatchos10/_._",
  5794. "ref/MonoAndroid10/_._",
  5795. "ref/MonoTouch10/_._",
  5796. "ref/net46/System.Collections.NonGeneric.dll",
  5797. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5798. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5799. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5800. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5801. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5802. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5803. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5804. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5805. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5806. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5807. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5808. "ref/xamarinios10/_._",
  5809. "ref/xamarinmac20/_._",
  5810. "ref/xamarintvos10/_._",
  5811. "ref/xamarinwatchos10/_._"
  5812. ]
  5813. },
  5814. "System.Collections.Specialized/4.3.0": {
  5815. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5816. "type": "package",
  5817. "path": "System.Collections.Specialized/4.3.0",
  5818. "files": [
  5819. "System.Collections.Specialized.4.3.0.nupkg.sha512",
  5820. "System.Collections.Specialized.nuspec",
  5821. "ThirdPartyNotices.txt",
  5822. "dotnet_library_license.txt",
  5823. "lib/MonoAndroid10/_._",
  5824. "lib/MonoTouch10/_._",
  5825. "lib/net46/System.Collections.Specialized.dll",
  5826. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5827. "lib/xamarinios10/_._",
  5828. "lib/xamarinmac20/_._",
  5829. "lib/xamarintvos10/_._",
  5830. "lib/xamarinwatchos10/_._",
  5831. "ref/MonoAndroid10/_._",
  5832. "ref/MonoTouch10/_._",
  5833. "ref/net46/System.Collections.Specialized.dll",
  5834. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5835. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5836. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5837. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5838. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5839. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5840. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5841. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5842. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5843. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5844. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5845. "ref/xamarinios10/_._",
  5846. "ref/xamarinmac20/_._",
  5847. "ref/xamarintvos10/_._",
  5848. "ref/xamarinwatchos10/_._"
  5849. ]
  5850. },
  5851. "System.ComponentModel/4.3.0": {
  5852. "sha512": "Zglf50lZbM1GhgQdi/M315CW83GBZ+InRWeZwsNtO3djtszSPp0Xzf78P3vtD7GkE440I+04JKfgNdi9mlnimQ==",
  5853. "type": "package",
  5854. "path": "System.ComponentModel/4.3.0",
  5855. "files": [
  5856. "System.ComponentModel.4.3.0.nupkg.sha512",
  5857. "System.ComponentModel.nuspec",
  5858. "ThirdPartyNotices.txt",
  5859. "dotnet_library_license.txt",
  5860. "lib/MonoAndroid10/_._",
  5861. "lib/MonoTouch10/_._",
  5862. "lib/net45/_._",
  5863. "lib/netcore50/System.ComponentModel.dll",
  5864. "lib/netstandard1.3/System.ComponentModel.dll",
  5865. "lib/portable-net45+win8+wp8+wpa81/_._",
  5866. "lib/win8/_._",
  5867. "lib/wp80/_._",
  5868. "lib/wpa81/_._",
  5869. "lib/xamarinios10/_._",
  5870. "lib/xamarinmac20/_._",
  5871. "lib/xamarintvos10/_._",
  5872. "lib/xamarinwatchos10/_._",
  5873. "ref/MonoAndroid10/_._",
  5874. "ref/MonoTouch10/_._",
  5875. "ref/net45/_._",
  5876. "ref/netcore50/System.ComponentModel.dll",
  5877. "ref/netcore50/System.ComponentModel.xml",
  5878. "ref/netcore50/de/System.ComponentModel.xml",
  5879. "ref/netcore50/es/System.ComponentModel.xml",
  5880. "ref/netcore50/fr/System.ComponentModel.xml",
  5881. "ref/netcore50/it/System.ComponentModel.xml",
  5882. "ref/netcore50/ja/System.ComponentModel.xml",
  5883. "ref/netcore50/ko/System.ComponentModel.xml",
  5884. "ref/netcore50/ru/System.ComponentModel.xml",
  5885. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5886. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5887. "ref/netstandard1.0/System.ComponentModel.dll",
  5888. "ref/netstandard1.0/System.ComponentModel.xml",
  5889. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5890. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5891. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5892. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5893. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5894. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5895. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5896. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5897. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5898. "ref/portable-net45+win8+wp8+wpa81/_._",
  5899. "ref/win8/_._",
  5900. "ref/wp80/_._",
  5901. "ref/wpa81/_._",
  5902. "ref/xamarinios10/_._",
  5903. "ref/xamarinmac20/_._",
  5904. "ref/xamarintvos10/_._",
  5905. "ref/xamarinwatchos10/_._"
  5906. ]
  5907. },
  5908. "System.ComponentModel.Annotations/4.3.0": {
  5909. "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
  5910. "type": "package",
  5911. "path": "System.ComponentModel.Annotations/4.3.0",
  5912. "files": [
  5913. "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
  5914. "System.ComponentModel.Annotations.nuspec",
  5915. "ThirdPartyNotices.txt",
  5916. "dotnet_library_license.txt",
  5917. "lib/MonoAndroid10/_._",
  5918. "lib/MonoTouch10/_._",
  5919. "lib/net45/_._",
  5920. "lib/net461/System.ComponentModel.Annotations.dll",
  5921. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5922. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5923. "lib/portable-net45+win8/_._",
  5924. "lib/win8/_._",
  5925. "lib/xamarinios10/_._",
  5926. "lib/xamarinmac20/_._",
  5927. "lib/xamarintvos10/_._",
  5928. "lib/xamarinwatchos10/_._",
  5929. "ref/MonoAndroid10/_._",
  5930. "ref/MonoTouch10/_._",
  5931. "ref/net45/_._",
  5932. "ref/net461/System.ComponentModel.Annotations.dll",
  5933. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5934. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5935. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5936. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5937. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5938. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5939. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5940. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5941. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5942. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5943. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5944. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5945. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5946. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5947. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5948. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5949. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5950. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5951. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5952. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5953. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5954. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5955. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5956. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5957. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5958. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5959. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5960. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5961. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5962. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5963. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5964. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5965. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5966. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5967. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5968. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5969. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5970. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5971. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5972. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5973. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5974. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5975. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5976. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5977. "ref/portable-net45+win8/_._",
  5978. "ref/win8/_._",
  5979. "ref/xamarinios10/_._",
  5980. "ref/xamarinmac20/_._",
  5981. "ref/xamarintvos10/_._",
  5982. "ref/xamarinwatchos10/_._"
  5983. ]
  5984. },
  5985. "System.ComponentModel.Primitives/4.3.0": {
  5986. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5987. "type": "package",
  5988. "path": "System.ComponentModel.Primitives/4.3.0",
  5989. "files": [
  5990. "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
  5991. "System.ComponentModel.Primitives.nuspec",
  5992. "ThirdPartyNotices.txt",
  5993. "dotnet_library_license.txt",
  5994. "lib/MonoAndroid10/_._",
  5995. "lib/MonoTouch10/_._",
  5996. "lib/net45/System.ComponentModel.Primitives.dll",
  5997. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5998. "lib/xamarinios10/_._",
  5999. "lib/xamarinmac20/_._",
  6000. "lib/xamarintvos10/_._",
  6001. "lib/xamarinwatchos10/_._",
  6002. "ref/MonoAndroid10/_._",
  6003. "ref/MonoTouch10/_._",
  6004. "ref/net45/System.ComponentModel.Primitives.dll",
  6005. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6006. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6007. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6008. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6009. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6010. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6011. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6012. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6013. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6014. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6015. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6016. "ref/xamarinios10/_._",
  6017. "ref/xamarinmac20/_._",
  6018. "ref/xamarintvos10/_._",
  6019. "ref/xamarinwatchos10/_._"
  6020. ]
  6021. },
  6022. "System.ComponentModel.TypeConverter/4.3.0": {
  6023. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6024. "type": "package",
  6025. "path": "System.ComponentModel.TypeConverter/4.3.0",
  6026. "files": [
  6027. "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
  6028. "System.ComponentModel.TypeConverter.nuspec",
  6029. "ThirdPartyNotices.txt",
  6030. "dotnet_library_license.txt",
  6031. "lib/MonoAndroid10/_._",
  6032. "lib/MonoTouch10/_._",
  6033. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6034. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6035. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6036. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6037. "lib/xamarinios10/_._",
  6038. "lib/xamarinmac20/_._",
  6039. "lib/xamarintvos10/_._",
  6040. "lib/xamarinwatchos10/_._",
  6041. "ref/MonoAndroid10/_._",
  6042. "ref/MonoTouch10/_._",
  6043. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6044. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6045. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6046. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6047. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6048. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6049. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6050. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6051. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6052. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6053. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6054. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6055. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6056. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6057. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6058. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6059. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6060. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6061. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6062. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6063. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6064. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6065. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6066. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6067. "ref/xamarinios10/_._",
  6068. "ref/xamarinmac20/_._",
  6069. "ref/xamarintvos10/_._",
  6070. "ref/xamarinwatchos10/_._"
  6071. ]
  6072. },
  6073. "System.Console/4.3.0": {
  6074. "sha512": "Ik/kfdgP1dA+xJOCUMqkrB+m7PmzYvN5w2HedSaLGJpncrfcFEuTois34LJPSnF8oaIsiUA0VxNODUd7EJ3qKQ==",
  6075. "type": "package",
  6076. "path": "System.Console/4.3.0",
  6077. "files": [
  6078. "System.Console.4.3.0.nupkg.sha512",
  6079. "System.Console.nuspec",
  6080. "ThirdPartyNotices.txt",
  6081. "dotnet_library_license.txt",
  6082. "lib/MonoAndroid10/_._",
  6083. "lib/MonoTouch10/_._",
  6084. "lib/net46/System.Console.dll",
  6085. "lib/xamarinios10/_._",
  6086. "lib/xamarinmac20/_._",
  6087. "lib/xamarintvos10/_._",
  6088. "lib/xamarinwatchos10/_._",
  6089. "ref/MonoAndroid10/_._",
  6090. "ref/MonoTouch10/_._",
  6091. "ref/net46/System.Console.dll",
  6092. "ref/netstandard1.3/System.Console.dll",
  6093. "ref/netstandard1.3/System.Console.xml",
  6094. "ref/netstandard1.3/de/System.Console.xml",
  6095. "ref/netstandard1.3/es/System.Console.xml",
  6096. "ref/netstandard1.3/fr/System.Console.xml",
  6097. "ref/netstandard1.3/it/System.Console.xml",
  6098. "ref/netstandard1.3/ja/System.Console.xml",
  6099. "ref/netstandard1.3/ko/System.Console.xml",
  6100. "ref/netstandard1.3/ru/System.Console.xml",
  6101. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6102. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6103. "ref/xamarinios10/_._",
  6104. "ref/xamarinmac20/_._",
  6105. "ref/xamarintvos10/_._",
  6106. "ref/xamarinwatchos10/_._"
  6107. ]
  6108. },
  6109. "System.Data.Common/4.3.0": {
  6110. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  6111. "type": "package",
  6112. "path": "System.Data.Common/4.3.0",
  6113. "files": [
  6114. "System.Data.Common.4.3.0.nupkg.sha512",
  6115. "System.Data.Common.nuspec",
  6116. "ThirdPartyNotices.txt",
  6117. "dotnet_library_license.txt",
  6118. "lib/MonoAndroid10/_._",
  6119. "lib/MonoTouch10/_._",
  6120. "lib/net451/System.Data.Common.dll",
  6121. "lib/netstandard1.2/System.Data.Common.dll",
  6122. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6123. "lib/xamarinios10/_._",
  6124. "lib/xamarinmac20/_._",
  6125. "lib/xamarintvos10/_._",
  6126. "lib/xamarinwatchos10/_._",
  6127. "ref/MonoAndroid10/_._",
  6128. "ref/MonoTouch10/_._",
  6129. "ref/net451/System.Data.Common.dll",
  6130. "ref/netstandard1.2/System.Data.Common.dll",
  6131. "ref/netstandard1.2/System.Data.Common.xml",
  6132. "ref/netstandard1.2/de/System.Data.Common.xml",
  6133. "ref/netstandard1.2/es/System.Data.Common.xml",
  6134. "ref/netstandard1.2/fr/System.Data.Common.xml",
  6135. "ref/netstandard1.2/it/System.Data.Common.xml",
  6136. "ref/netstandard1.2/ja/System.Data.Common.xml",
  6137. "ref/netstandard1.2/ko/System.Data.Common.xml",
  6138. "ref/netstandard1.2/ru/System.Data.Common.xml",
  6139. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  6140. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  6141. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6142. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  6143. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  6144. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  6145. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  6146. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  6147. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  6148. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  6149. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  6150. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  6151. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  6152. "ref/xamarinios10/_._",
  6153. "ref/xamarinmac20/_._",
  6154. "ref/xamarintvos10/_._",
  6155. "ref/xamarinwatchos10/_._"
  6156. ]
  6157. },
  6158. "System.Diagnostics.Contracts/4.3.0": {
  6159. "sha512": "pE7RRONH8d93rbABHPVw4C1tGwB9CtIYgLUPT9sMih/oHSIlP9XvtTlpkGBHK0TFwqzOaZky1wXCNlLcDDnyJw==",
  6160. "type": "package",
  6161. "path": "System.Diagnostics.Contracts/4.3.0",
  6162. "files": [
  6163. "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
  6164. "System.Diagnostics.Contracts.nuspec",
  6165. "ThirdPartyNotices.txt",
  6166. "dotnet_library_license.txt",
  6167. "lib/MonoAndroid10/_._",
  6168. "lib/MonoTouch10/_._",
  6169. "lib/net45/_._",
  6170. "lib/netcore50/System.Diagnostics.Contracts.dll",
  6171. "lib/netstandard1.0/System.Diagnostics.Contracts.dll",
  6172. "lib/portable-net45+win8+wp8+wpa81/_._",
  6173. "lib/win8/_._",
  6174. "lib/wp80/_._",
  6175. "lib/wpa81/_._",
  6176. "lib/xamarinios10/_._",
  6177. "lib/xamarinmac20/_._",
  6178. "lib/xamarintvos10/_._",
  6179. "lib/xamarinwatchos10/_._",
  6180. "ref/MonoAndroid10/_._",
  6181. "ref/MonoTouch10/_._",
  6182. "ref/net45/_._",
  6183. "ref/netcore50/System.Diagnostics.Contracts.dll",
  6184. "ref/netcore50/System.Diagnostics.Contracts.xml",
  6185. "ref/netcore50/de/System.Diagnostics.Contracts.xml",
  6186. "ref/netcore50/es/System.Diagnostics.Contracts.xml",
  6187. "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
  6188. "ref/netcore50/it/System.Diagnostics.Contracts.xml",
  6189. "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
  6190. "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
  6191. "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
  6192. "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
  6193. "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
  6194. "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
  6195. "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
  6196. "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
  6197. "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
  6198. "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
  6199. "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
  6200. "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
  6201. "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
  6202. "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
  6203. "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
  6204. "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
  6205. "ref/portable-net45+win8+wp8+wpa81/_._",
  6206. "ref/win8/_._",
  6207. "ref/wp80/_._",
  6208. "ref/wpa81/_._",
  6209. "ref/xamarinios10/_._",
  6210. "ref/xamarinmac20/_._",
  6211. "ref/xamarintvos10/_._",
  6212. "ref/xamarinwatchos10/_._",
  6213. "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
  6214. ]
  6215. },
  6216. "System.Diagnostics.Debug/4.3.0": {
  6217. "sha512": "wtg85zBbPrOo5lkGsdSlSXfy9ebeKW/3kcg6m3pA2PZaeib8gkSssMRCwqSG16hV+nAMoRZwbqzxFZT7LW7NXg==",
  6218. "type": "package",
  6219. "path": "System.Diagnostics.Debug/4.3.0",
  6220. "files": [
  6221. "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
  6222. "System.Diagnostics.Debug.nuspec",
  6223. "ThirdPartyNotices.txt",
  6224. "dotnet_library_license.txt",
  6225. "lib/MonoAndroid10/_._",
  6226. "lib/MonoTouch10/_._",
  6227. "lib/net45/_._",
  6228. "lib/portable-net45+win8+wp8+wpa81/_._",
  6229. "lib/win8/_._",
  6230. "lib/wp80/_._",
  6231. "lib/wpa81/_._",
  6232. "lib/xamarinios10/_._",
  6233. "lib/xamarinmac20/_._",
  6234. "lib/xamarintvos10/_._",
  6235. "lib/xamarinwatchos10/_._",
  6236. "ref/MonoAndroid10/_._",
  6237. "ref/MonoTouch10/_._",
  6238. "ref/net45/_._",
  6239. "ref/netcore50/System.Diagnostics.Debug.dll",
  6240. "ref/netcore50/System.Diagnostics.Debug.xml",
  6241. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6242. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6243. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6244. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6245. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6246. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6247. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6248. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6249. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6250. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6251. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6252. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6253. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6254. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6255. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6256. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6257. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6258. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6259. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6260. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6261. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6262. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6263. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6264. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6265. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6266. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6267. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6268. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6269. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6270. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6271. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6272. "ref/portable-net45+win8+wp8+wpa81/_._",
  6273. "ref/win8/_._",
  6274. "ref/wp80/_._",
  6275. "ref/wpa81/_._",
  6276. "ref/xamarinios10/_._",
  6277. "ref/xamarinmac20/_._",
  6278. "ref/xamarintvos10/_._",
  6279. "ref/xamarinwatchos10/_._"
  6280. ]
  6281. },
  6282. "System.Diagnostics.DiagnosticSource/4.3.0": {
  6283. "sha512": "S7z/ARtRxDygqv8f9VlC42M4eqCninL29ijZY0SyU/5r25X/H1vzC14P19DDEArKempVnjSJlX2XR5wGrWzKOw==",
  6284. "type": "package",
  6285. "path": "System.Diagnostics.DiagnosticSource/4.3.0",
  6286. "files": [
  6287. "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
  6288. "System.Diagnostics.DiagnosticSource.nuspec",
  6289. "ThirdPartyNotices.txt",
  6290. "dotnet_library_license.txt",
  6291. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6292. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6293. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6294. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6295. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6296. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6297. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6298. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
  6299. ]
  6300. },
  6301. "System.Diagnostics.FileVersionInfo/4.0.0": {
  6302. "sha512": "y3jHY9nmSiGasMfg+EtUoTw/i7iFPvJeGzEwffBThBjwgF+dz34BUSfa/qp4LyR0YqqWmt7CqP+FbomGeLnPNw==",
  6303. "type": "package",
  6304. "path": "System.Diagnostics.FileVersionInfo/4.0.0",
  6305. "files": [
  6306. "System.Diagnostics.FileVersionInfo.4.0.0.nupkg.sha512",
  6307. "System.Diagnostics.FileVersionInfo.nuspec",
  6308. "ThirdPartyNotices.txt",
  6309. "dotnet_library_license.txt",
  6310. "lib/MonoAndroid10/_._",
  6311. "lib/MonoTouch10/_._",
  6312. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6313. "lib/xamarinios10/_._",
  6314. "lib/xamarinmac20/_._",
  6315. "lib/xamarintvos10/_._",
  6316. "lib/xamarinwatchos10/_._",
  6317. "ref/MonoAndroid10/_._",
  6318. "ref/MonoTouch10/_._",
  6319. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  6320. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6321. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  6322. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  6323. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  6324. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  6325. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  6326. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  6327. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  6328. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  6329. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  6330. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  6331. "ref/xamarinios10/_._",
  6332. "ref/xamarinmac20/_._",
  6333. "ref/xamarintvos10/_._",
  6334. "ref/xamarinwatchos10/_._",
  6335. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6336. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6337. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  6338. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
  6339. ]
  6340. },
  6341. "System.Diagnostics.Process/4.1.0": {
  6342. "sha512": "sa4NxaGiD/iRM9m667nspIUMLT9nyoWkmAhYBlC4USnarm48cOOi13LOq7b127CeWZEHv0IkBt79g6r6l28LiA==",
  6343. "type": "package",
  6344. "path": "System.Diagnostics.Process/4.1.0",
  6345. "files": [
  6346. "System.Diagnostics.Process.4.1.0.nupkg.sha512",
  6347. "System.Diagnostics.Process.nuspec",
  6348. "ThirdPartyNotices.txt",
  6349. "dotnet_library_license.txt",
  6350. "lib/MonoAndroid10/_._",
  6351. "lib/MonoTouch10/_._",
  6352. "lib/net46/System.Diagnostics.Process.dll",
  6353. "lib/net461/System.Diagnostics.Process.dll",
  6354. "lib/xamarinios10/_._",
  6355. "lib/xamarinmac20/_._",
  6356. "lib/xamarintvos10/_._",
  6357. "lib/xamarinwatchos10/_._",
  6358. "ref/MonoAndroid10/_._",
  6359. "ref/MonoTouch10/_._",
  6360. "ref/net46/System.Diagnostics.Process.dll",
  6361. "ref/net461/System.Diagnostics.Process.dll",
  6362. "ref/netstandard1.3/System.Diagnostics.Process.dll",
  6363. "ref/netstandard1.3/System.Diagnostics.Process.xml",
  6364. "ref/netstandard1.3/de/System.Diagnostics.Process.xml",
  6365. "ref/netstandard1.3/es/System.Diagnostics.Process.xml",
  6366. "ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
  6367. "ref/netstandard1.3/it/System.Diagnostics.Process.xml",
  6368. "ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
  6369. "ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
  6370. "ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
  6371. "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
  6372. "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
  6373. "ref/netstandard1.4/System.Diagnostics.Process.dll",
  6374. "ref/netstandard1.4/System.Diagnostics.Process.xml",
  6375. "ref/netstandard1.4/de/System.Diagnostics.Process.xml",
  6376. "ref/netstandard1.4/es/System.Diagnostics.Process.xml",
  6377. "ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
  6378. "ref/netstandard1.4/it/System.Diagnostics.Process.xml",
  6379. "ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
  6380. "ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
  6381. "ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
  6382. "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
  6383. "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
  6384. "ref/xamarinios10/_._",
  6385. "ref/xamarinmac20/_._",
  6386. "ref/xamarintvos10/_._",
  6387. "ref/xamarinwatchos10/_._",
  6388. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6389. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6390. "runtimes/win/lib/net46/System.Diagnostics.Process.dll",
  6391. "runtimes/win/lib/net461/System.Diagnostics.Process.dll",
  6392. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6393. "runtimes/win7/lib/netcore50/_._"
  6394. ]
  6395. },
  6396. "System.Diagnostics.StackTrace/4.3.0": {
  6397. "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  6398. "type": "package",
  6399. "path": "System.Diagnostics.StackTrace/4.3.0",
  6400. "files": [
  6401. "System.Diagnostics.StackTrace.4.3.0.nupkg.sha512",
  6402. "System.Diagnostics.StackTrace.nuspec",
  6403. "ThirdPartyNotices.txt",
  6404. "dotnet_library_license.txt",
  6405. "lib/MonoAndroid10/_._",
  6406. "lib/MonoTouch10/_._",
  6407. "lib/net46/System.Diagnostics.StackTrace.dll",
  6408. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6409. "lib/xamarinios10/_._",
  6410. "lib/xamarinmac20/_._",
  6411. "lib/xamarintvos10/_._",
  6412. "lib/xamarinwatchos10/_._",
  6413. "ref/MonoAndroid10/_._",
  6414. "ref/MonoTouch10/_._",
  6415. "ref/net46/System.Diagnostics.StackTrace.dll",
  6416. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6417. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  6418. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  6419. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  6420. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  6421. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  6422. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  6423. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  6424. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  6425. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  6426. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  6427. "ref/xamarinios10/_._",
  6428. "ref/xamarinmac20/_._",
  6429. "ref/xamarintvos10/_._",
  6430. "ref/xamarinwatchos10/_._",
  6431. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
  6432. ]
  6433. },
  6434. "System.Diagnostics.Tools/4.3.0": {
  6435. "sha512": "czwL60JAaLVGvtNAKCzK718b+wUgw7/8vHiZ1rrtEjBXsODEG4S9Qoevu5DMpUHlZn7+pSsw5xk/HKXxE+oDoQ==",
  6436. "type": "package",
  6437. "path": "System.Diagnostics.Tools/4.3.0",
  6438. "files": [
  6439. "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
  6440. "System.Diagnostics.Tools.nuspec",
  6441. "ThirdPartyNotices.txt",
  6442. "dotnet_library_license.txt",
  6443. "lib/MonoAndroid10/_._",
  6444. "lib/MonoTouch10/_._",
  6445. "lib/net45/_._",
  6446. "lib/portable-net45+win8+wp8+wpa81/_._",
  6447. "lib/win8/_._",
  6448. "lib/wp80/_._",
  6449. "lib/wpa81/_._",
  6450. "lib/xamarinios10/_._",
  6451. "lib/xamarinmac20/_._",
  6452. "lib/xamarintvos10/_._",
  6453. "lib/xamarinwatchos10/_._",
  6454. "ref/MonoAndroid10/_._",
  6455. "ref/MonoTouch10/_._",
  6456. "ref/net45/_._",
  6457. "ref/netcore50/System.Diagnostics.Tools.dll",
  6458. "ref/netcore50/System.Diagnostics.Tools.xml",
  6459. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6460. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6461. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6462. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6463. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6464. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6465. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6466. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6467. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6468. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6469. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6470. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6471. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6472. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6473. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6474. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6475. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6476. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6477. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6478. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6479. "ref/portable-net45+win8+wp8+wpa81/_._",
  6480. "ref/win8/_._",
  6481. "ref/wp80/_._",
  6482. "ref/wpa81/_._",
  6483. "ref/xamarinios10/_._",
  6484. "ref/xamarinmac20/_._",
  6485. "ref/xamarintvos10/_._",
  6486. "ref/xamarinwatchos10/_._"
  6487. ]
  6488. },
  6489. "System.Diagnostics.Tracing/4.3.0": {
  6490. "sha512": "i7hxQeTRMSYS9CMuWyldbzRkVpIy0VOZVwGkzuhF4NK3y3xd6zr97o0+q1VJ7xDNSa/h1ytwP7N2hd82IqRmLQ==",
  6491. "type": "package",
  6492. "path": "System.Diagnostics.Tracing/4.3.0",
  6493. "files": [
  6494. "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
  6495. "System.Diagnostics.Tracing.nuspec",
  6496. "ThirdPartyNotices.txt",
  6497. "dotnet_library_license.txt",
  6498. "lib/MonoAndroid10/_._",
  6499. "lib/MonoTouch10/_._",
  6500. "lib/net45/_._",
  6501. "lib/net462/System.Diagnostics.Tracing.dll",
  6502. "lib/portable-net45+win8+wpa81/_._",
  6503. "lib/win8/_._",
  6504. "lib/wpa81/_._",
  6505. "lib/xamarinios10/_._",
  6506. "lib/xamarinmac20/_._",
  6507. "lib/xamarintvos10/_._",
  6508. "lib/xamarinwatchos10/_._",
  6509. "ref/MonoAndroid10/_._",
  6510. "ref/MonoTouch10/_._",
  6511. "ref/net45/_._",
  6512. "ref/net462/System.Diagnostics.Tracing.dll",
  6513. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6514. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6515. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6516. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6517. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6518. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6519. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6520. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6521. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6522. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6523. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6524. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6525. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6526. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6527. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6528. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6529. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6530. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6531. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6532. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6533. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6534. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6535. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6536. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6537. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6538. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6539. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6540. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6541. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6542. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6543. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6544. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6545. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6546. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6547. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6548. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6549. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6550. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6551. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6552. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6553. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6554. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6555. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6556. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6557. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6558. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6559. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6560. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6561. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6562. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6563. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6564. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6565. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6566. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6567. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6568. "ref/portable-net45+win8+wpa81/_._",
  6569. "ref/win8/_._",
  6570. "ref/wpa81/_._",
  6571. "ref/xamarinios10/_._",
  6572. "ref/xamarinmac20/_._",
  6573. "ref/xamarintvos10/_._",
  6574. "ref/xamarinwatchos10/_._"
  6575. ]
  6576. },
  6577. "System.Dynamic.Runtime/4.3.0": {
  6578. "sha512": "6I9mCWqeCgjg661yDDuSmGQ9Ro5LK6VTLDvRWWBmOuyVnN8F+2p9Ka1MnkD6p5tZbzbf50Bhp2TLfl5mix+NXw==",
  6579. "type": "package",
  6580. "path": "System.Dynamic.Runtime/4.3.0",
  6581. "files": [
  6582. "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
  6583. "System.Dynamic.Runtime.nuspec",
  6584. "ThirdPartyNotices.txt",
  6585. "dotnet_library_license.txt",
  6586. "lib/MonoAndroid10/_._",
  6587. "lib/MonoTouch10/_._",
  6588. "lib/net45/_._",
  6589. "lib/netcore50/System.Dynamic.Runtime.dll",
  6590. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6591. "lib/portable-net45+win8+wp8+wpa81/_._",
  6592. "lib/win8/_._",
  6593. "lib/wp80/_._",
  6594. "lib/wpa81/_._",
  6595. "lib/xamarinios10/_._",
  6596. "lib/xamarinmac20/_._",
  6597. "lib/xamarintvos10/_._",
  6598. "lib/xamarinwatchos10/_._",
  6599. "ref/MonoAndroid10/_._",
  6600. "ref/MonoTouch10/_._",
  6601. "ref/net45/_._",
  6602. "ref/netcore50/System.Dynamic.Runtime.dll",
  6603. "ref/netcore50/System.Dynamic.Runtime.xml",
  6604. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6605. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6606. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6607. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6608. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6609. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6610. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6611. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6612. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6613. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6614. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6615. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6616. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6617. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6618. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6619. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6620. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6621. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6622. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6623. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6624. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6625. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6626. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6627. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6628. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6629. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6630. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6631. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6632. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6633. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6634. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6635. "ref/portable-net45+win8+wp8+wpa81/_._",
  6636. "ref/win8/_._",
  6637. "ref/wp80/_._",
  6638. "ref/wpa81/_._",
  6639. "ref/xamarinios10/_._",
  6640. "ref/xamarinmac20/_._",
  6641. "ref/xamarintvos10/_._",
  6642. "ref/xamarinwatchos10/_._",
  6643. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
  6644. ]
  6645. },
  6646. "System.Globalization/4.3.0": {
  6647. "sha512": "ySK9WB3u1ONxQ82Q6cE7O3IfboPZ/QlyKID75oOC66GKfyfvEyZvaZpqzLTy4n7a9SUHwz90pfflJ9HFRM8GZQ==",
  6648. "type": "package",
  6649. "path": "System.Globalization/4.3.0",
  6650. "files": [
  6651. "System.Globalization.4.3.0.nupkg.sha512",
  6652. "System.Globalization.nuspec",
  6653. "ThirdPartyNotices.txt",
  6654. "dotnet_library_license.txt",
  6655. "lib/MonoAndroid10/_._",
  6656. "lib/MonoTouch10/_._",
  6657. "lib/net45/_._",
  6658. "lib/portable-net45+win8+wp8+wpa81/_._",
  6659. "lib/win8/_._",
  6660. "lib/wp80/_._",
  6661. "lib/wpa81/_._",
  6662. "lib/xamarinios10/_._",
  6663. "lib/xamarinmac20/_._",
  6664. "lib/xamarintvos10/_._",
  6665. "lib/xamarinwatchos10/_._",
  6666. "ref/MonoAndroid10/_._",
  6667. "ref/MonoTouch10/_._",
  6668. "ref/net45/_._",
  6669. "ref/netcore50/System.Globalization.dll",
  6670. "ref/netcore50/System.Globalization.xml",
  6671. "ref/netcore50/de/System.Globalization.xml",
  6672. "ref/netcore50/es/System.Globalization.xml",
  6673. "ref/netcore50/fr/System.Globalization.xml",
  6674. "ref/netcore50/it/System.Globalization.xml",
  6675. "ref/netcore50/ja/System.Globalization.xml",
  6676. "ref/netcore50/ko/System.Globalization.xml",
  6677. "ref/netcore50/ru/System.Globalization.xml",
  6678. "ref/netcore50/zh-hans/System.Globalization.xml",
  6679. "ref/netcore50/zh-hant/System.Globalization.xml",
  6680. "ref/netstandard1.0/System.Globalization.dll",
  6681. "ref/netstandard1.0/System.Globalization.xml",
  6682. "ref/netstandard1.0/de/System.Globalization.xml",
  6683. "ref/netstandard1.0/es/System.Globalization.xml",
  6684. "ref/netstandard1.0/fr/System.Globalization.xml",
  6685. "ref/netstandard1.0/it/System.Globalization.xml",
  6686. "ref/netstandard1.0/ja/System.Globalization.xml",
  6687. "ref/netstandard1.0/ko/System.Globalization.xml",
  6688. "ref/netstandard1.0/ru/System.Globalization.xml",
  6689. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6690. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6691. "ref/netstandard1.3/System.Globalization.dll",
  6692. "ref/netstandard1.3/System.Globalization.xml",
  6693. "ref/netstandard1.3/de/System.Globalization.xml",
  6694. "ref/netstandard1.3/es/System.Globalization.xml",
  6695. "ref/netstandard1.3/fr/System.Globalization.xml",
  6696. "ref/netstandard1.3/it/System.Globalization.xml",
  6697. "ref/netstandard1.3/ja/System.Globalization.xml",
  6698. "ref/netstandard1.3/ko/System.Globalization.xml",
  6699. "ref/netstandard1.3/ru/System.Globalization.xml",
  6700. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6701. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6702. "ref/portable-net45+win8+wp8+wpa81/_._",
  6703. "ref/win8/_._",
  6704. "ref/wp80/_._",
  6705. "ref/wpa81/_._",
  6706. "ref/xamarinios10/_._",
  6707. "ref/xamarinmac20/_._",
  6708. "ref/xamarintvos10/_._",
  6709. "ref/xamarinwatchos10/_._"
  6710. ]
  6711. },
  6712. "System.Globalization.Calendars/4.3.0": {
  6713. "sha512": "Lealz3HSgQd/FOC1TMDZ564wLsjMPeRiyH4j7Baiq2x79ei3uo05zlqhxpaXtHAUHJskMtzc2RsjAsd5Pg2+aw==",
  6714. "type": "package",
  6715. "path": "System.Globalization.Calendars/4.3.0",
  6716. "files": [
  6717. "System.Globalization.Calendars.4.3.0.nupkg.sha512",
  6718. "System.Globalization.Calendars.nuspec",
  6719. "ThirdPartyNotices.txt",
  6720. "dotnet_library_license.txt",
  6721. "lib/MonoAndroid10/_._",
  6722. "lib/MonoTouch10/_._",
  6723. "lib/net46/System.Globalization.Calendars.dll",
  6724. "lib/xamarinios10/_._",
  6725. "lib/xamarinmac20/_._",
  6726. "lib/xamarintvos10/_._",
  6727. "lib/xamarinwatchos10/_._",
  6728. "ref/MonoAndroid10/_._",
  6729. "ref/MonoTouch10/_._",
  6730. "ref/net46/System.Globalization.Calendars.dll",
  6731. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6732. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6733. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6734. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6735. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6736. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6737. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6738. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6739. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6740. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6741. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6742. "ref/xamarinios10/_._",
  6743. "ref/xamarinmac20/_._",
  6744. "ref/xamarintvos10/_._",
  6745. "ref/xamarinwatchos10/_._"
  6746. ]
  6747. },
  6748. "System.Globalization.Extensions/4.3.0": {
  6749. "sha512": "V94vDBcAzxqObtShcgiWSDazkkZm/mtfET5dXIgvzbTNgFXtoUots+s4FyQkUaAf9HtutUMQtBdaPmHXhIYTiw==",
  6750. "type": "package",
  6751. "path": "System.Globalization.Extensions/4.3.0",
  6752. "files": [
  6753. "System.Globalization.Extensions.4.3.0.nupkg.sha512",
  6754. "System.Globalization.Extensions.nuspec",
  6755. "ThirdPartyNotices.txt",
  6756. "dotnet_library_license.txt",
  6757. "lib/MonoAndroid10/_._",
  6758. "lib/MonoTouch10/_._",
  6759. "lib/net46/System.Globalization.Extensions.dll",
  6760. "lib/xamarinios10/_._",
  6761. "lib/xamarinmac20/_._",
  6762. "lib/xamarintvos10/_._",
  6763. "lib/xamarinwatchos10/_._",
  6764. "ref/MonoAndroid10/_._",
  6765. "ref/MonoTouch10/_._",
  6766. "ref/net46/System.Globalization.Extensions.dll",
  6767. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6768. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6769. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6770. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6771. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6772. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6773. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6774. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6775. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6776. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6777. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6778. "ref/xamarinios10/_._",
  6779. "ref/xamarinmac20/_._",
  6780. "ref/xamarintvos10/_._",
  6781. "ref/xamarinwatchos10/_._",
  6782. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6783. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6784. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
  6785. ]
  6786. },
  6787. "System.Interactive.Async/3.0.0": {
  6788. "sha512": "iyrgkZz9Dzm0fiPouQszFC3SO/46k6AYd/jG9bu+/o0AoDMaRXtlo3TIuWVNtOuJFd1noL963QouroJ0T3rImw==",
  6789. "type": "package",
  6790. "path": "System.Interactive.Async/3.0.0",
  6791. "files": [
  6792. "System.Interactive.Async.3.0.0.nupkg.sha512",
  6793. "System.Interactive.Async.nuspec",
  6794. "lib/net45/System.Interactive.Async.dll",
  6795. "lib/net45/System.Interactive.Async.xml",
  6796. "lib/netstandard1.0/System.Interactive.Async.dll",
  6797. "lib/netstandard1.0/System.Interactive.Async.xml"
  6798. ]
  6799. },
  6800. "System.IO/4.3.0": {
  6801. "sha512": "cXuYu/ygrY2jSUssaHsn/PfCPS/Kek0It6YztrW5hjVssowvgsgKuqHmjrCeAf3AmSI79vZ8PsLW1iiD7nWxqA==",
  6802. "type": "package",
  6803. "path": "System.IO/4.3.0",
  6804. "files": [
  6805. "System.IO.4.3.0.nupkg.sha512",
  6806. "System.IO.nuspec",
  6807. "ThirdPartyNotices.txt",
  6808. "dotnet_library_license.txt",
  6809. "lib/MonoAndroid10/_._",
  6810. "lib/MonoTouch10/_._",
  6811. "lib/net45/_._",
  6812. "lib/net462/System.IO.dll",
  6813. "lib/portable-net45+win8+wp8+wpa81/_._",
  6814. "lib/win8/_._",
  6815. "lib/wp80/_._",
  6816. "lib/wpa81/_._",
  6817. "lib/xamarinios10/_._",
  6818. "lib/xamarinmac20/_._",
  6819. "lib/xamarintvos10/_._",
  6820. "lib/xamarinwatchos10/_._",
  6821. "ref/MonoAndroid10/_._",
  6822. "ref/MonoTouch10/_._",
  6823. "ref/net45/_._",
  6824. "ref/net462/System.IO.dll",
  6825. "ref/netcore50/System.IO.dll",
  6826. "ref/netcore50/System.IO.xml",
  6827. "ref/netcore50/de/System.IO.xml",
  6828. "ref/netcore50/es/System.IO.xml",
  6829. "ref/netcore50/fr/System.IO.xml",
  6830. "ref/netcore50/it/System.IO.xml",
  6831. "ref/netcore50/ja/System.IO.xml",
  6832. "ref/netcore50/ko/System.IO.xml",
  6833. "ref/netcore50/ru/System.IO.xml",
  6834. "ref/netcore50/zh-hans/System.IO.xml",
  6835. "ref/netcore50/zh-hant/System.IO.xml",
  6836. "ref/netstandard1.0/System.IO.dll",
  6837. "ref/netstandard1.0/System.IO.xml",
  6838. "ref/netstandard1.0/de/System.IO.xml",
  6839. "ref/netstandard1.0/es/System.IO.xml",
  6840. "ref/netstandard1.0/fr/System.IO.xml",
  6841. "ref/netstandard1.0/it/System.IO.xml",
  6842. "ref/netstandard1.0/ja/System.IO.xml",
  6843. "ref/netstandard1.0/ko/System.IO.xml",
  6844. "ref/netstandard1.0/ru/System.IO.xml",
  6845. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6846. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6847. "ref/netstandard1.3/System.IO.dll",
  6848. "ref/netstandard1.3/System.IO.xml",
  6849. "ref/netstandard1.3/de/System.IO.xml",
  6850. "ref/netstandard1.3/es/System.IO.xml",
  6851. "ref/netstandard1.3/fr/System.IO.xml",
  6852. "ref/netstandard1.3/it/System.IO.xml",
  6853. "ref/netstandard1.3/ja/System.IO.xml",
  6854. "ref/netstandard1.3/ko/System.IO.xml",
  6855. "ref/netstandard1.3/ru/System.IO.xml",
  6856. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6857. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6858. "ref/netstandard1.5/System.IO.dll",
  6859. "ref/netstandard1.5/System.IO.xml",
  6860. "ref/netstandard1.5/de/System.IO.xml",
  6861. "ref/netstandard1.5/es/System.IO.xml",
  6862. "ref/netstandard1.5/fr/System.IO.xml",
  6863. "ref/netstandard1.5/it/System.IO.xml",
  6864. "ref/netstandard1.5/ja/System.IO.xml",
  6865. "ref/netstandard1.5/ko/System.IO.xml",
  6866. "ref/netstandard1.5/ru/System.IO.xml",
  6867. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6868. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6869. "ref/portable-net45+win8+wp8+wpa81/_._",
  6870. "ref/win8/_._",
  6871. "ref/wp80/_._",
  6872. "ref/wpa81/_._",
  6873. "ref/xamarinios10/_._",
  6874. "ref/xamarinmac20/_._",
  6875. "ref/xamarintvos10/_._",
  6876. "ref/xamarinwatchos10/_._"
  6877. ]
  6878. },
  6879. "System.IO.Compression/4.3.0": {
  6880. "sha512": "1QYOMtObmdRHs5dthBBr5Jef3X+d6YACS3neNwSDaWs+yxsDgBCPgEzZhFnXWoibLDROETI+zkBMAL+vopVbfg==",
  6881. "type": "package",
  6882. "path": "System.IO.Compression/4.3.0",
  6883. "files": [
  6884. "System.IO.Compression.4.3.0.nupkg.sha512",
  6885. "System.IO.Compression.nuspec",
  6886. "ThirdPartyNotices.txt",
  6887. "dotnet_library_license.txt",
  6888. "lib/MonoAndroid10/_._",
  6889. "lib/MonoTouch10/_._",
  6890. "lib/net45/_._",
  6891. "lib/net46/System.IO.Compression.dll",
  6892. "lib/portable-net45+win8+wpa81/_._",
  6893. "lib/win8/_._",
  6894. "lib/wpa81/_._",
  6895. "lib/xamarinios10/_._",
  6896. "lib/xamarinmac20/_._",
  6897. "lib/xamarintvos10/_._",
  6898. "lib/xamarinwatchos10/_._",
  6899. "ref/MonoAndroid10/_._",
  6900. "ref/MonoTouch10/_._",
  6901. "ref/net45/_._",
  6902. "ref/net46/System.IO.Compression.dll",
  6903. "ref/netcore50/System.IO.Compression.dll",
  6904. "ref/netcore50/System.IO.Compression.xml",
  6905. "ref/netcore50/de/System.IO.Compression.xml",
  6906. "ref/netcore50/es/System.IO.Compression.xml",
  6907. "ref/netcore50/fr/System.IO.Compression.xml",
  6908. "ref/netcore50/it/System.IO.Compression.xml",
  6909. "ref/netcore50/ja/System.IO.Compression.xml",
  6910. "ref/netcore50/ko/System.IO.Compression.xml",
  6911. "ref/netcore50/ru/System.IO.Compression.xml",
  6912. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6913. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6914. "ref/netstandard1.1/System.IO.Compression.dll",
  6915. "ref/netstandard1.1/System.IO.Compression.xml",
  6916. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6917. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6918. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6919. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6920. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6921. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6922. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6923. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6924. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6925. "ref/netstandard1.3/System.IO.Compression.dll",
  6926. "ref/netstandard1.3/System.IO.Compression.xml",
  6927. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6928. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6929. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6930. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6931. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6932. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6933. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6934. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6935. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6936. "ref/portable-net45+win8+wpa81/_._",
  6937. "ref/win8/_._",
  6938. "ref/wpa81/_._",
  6939. "ref/xamarinios10/_._",
  6940. "ref/xamarinmac20/_._",
  6941. "ref/xamarintvos10/_._",
  6942. "ref/xamarinwatchos10/_._",
  6943. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6944. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6945. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
  6946. ]
  6947. },
  6948. "System.IO.Compression.ZipFile/4.3.0": {
  6949. "sha512": "K7yrRwJuU22iBhr0ySICB4xfPDbV2x9lV6BNpf9N72ngRn/qO34JgMHcBHZI+PSLjRBVJzFeNVopt+5NOsY/aQ==",
  6950. "type": "package",
  6951. "path": "System.IO.Compression.ZipFile/4.3.0",
  6952. "files": [
  6953. "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
  6954. "System.IO.Compression.ZipFile.nuspec",
  6955. "ThirdPartyNotices.txt",
  6956. "dotnet_library_license.txt",
  6957. "lib/MonoAndroid10/_._",
  6958. "lib/MonoTouch10/_._",
  6959. "lib/net46/System.IO.Compression.ZipFile.dll",
  6960. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6961. "lib/xamarinios10/_._",
  6962. "lib/xamarinmac20/_._",
  6963. "lib/xamarintvos10/_._",
  6964. "lib/xamarinwatchos10/_._",
  6965. "ref/MonoAndroid10/_._",
  6966. "ref/MonoTouch10/_._",
  6967. "ref/net46/System.IO.Compression.ZipFile.dll",
  6968. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6969. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6970. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6971. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6972. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6973. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6974. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6975. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6976. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6977. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6978. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6979. "ref/xamarinios10/_._",
  6980. "ref/xamarinmac20/_._",
  6981. "ref/xamarintvos10/_._",
  6982. "ref/xamarinwatchos10/_._"
  6983. ]
  6984. },
  6985. "System.IO.FileSystem/4.3.0": {
  6986. "sha512": "oTvCY1epVpXNDk0CSKp8NvaHsrDPUoEiFAAx6GuJWDnOq8EBd/qW+gmRut8Zfol3ghlhuKrikz8O1aQgzPJPbQ==",
  6987. "type": "package",
  6988. "path": "System.IO.FileSystem/4.3.0",
  6989. "files": [
  6990. "System.IO.FileSystem.4.3.0.nupkg.sha512",
  6991. "System.IO.FileSystem.nuspec",
  6992. "ThirdPartyNotices.txt",
  6993. "dotnet_library_license.txt",
  6994. "lib/MonoAndroid10/_._",
  6995. "lib/MonoTouch10/_._",
  6996. "lib/net46/System.IO.FileSystem.dll",
  6997. "lib/xamarinios10/_._",
  6998. "lib/xamarinmac20/_._",
  6999. "lib/xamarintvos10/_._",
  7000. "lib/xamarinwatchos10/_._",
  7001. "ref/MonoAndroid10/_._",
  7002. "ref/MonoTouch10/_._",
  7003. "ref/net46/System.IO.FileSystem.dll",
  7004. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7005. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7006. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7007. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7008. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7009. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7010. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7011. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7012. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7013. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7014. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7015. "ref/xamarinios10/_._",
  7016. "ref/xamarinmac20/_._",
  7017. "ref/xamarintvos10/_._",
  7018. "ref/xamarinwatchos10/_._"
  7019. ]
  7020. },
  7021. "System.IO.FileSystem.Primitives/4.3.0": {
  7022. "sha512": "dUvETypIrGfDyjkGe99Z9EsD740KKyJWkHdVJYw294K56f8dHu8AHHbjmpb4bCOE9VGlIqWL5kM8UlejpYIhnQ==",
  7023. "type": "package",
  7024. "path": "System.IO.FileSystem.Primitives/4.3.0",
  7025. "files": [
  7026. "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
  7027. "System.IO.FileSystem.Primitives.nuspec",
  7028. "ThirdPartyNotices.txt",
  7029. "dotnet_library_license.txt",
  7030. "lib/MonoAndroid10/_._",
  7031. "lib/MonoTouch10/_._",
  7032. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7033. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7034. "lib/xamarinios10/_._",
  7035. "lib/xamarinmac20/_._",
  7036. "lib/xamarintvos10/_._",
  7037. "lib/xamarinwatchos10/_._",
  7038. "ref/MonoAndroid10/_._",
  7039. "ref/MonoTouch10/_._",
  7040. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7041. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7042. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7043. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7044. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7045. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7046. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7047. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7048. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7049. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7050. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7051. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7052. "ref/xamarinios10/_._",
  7053. "ref/xamarinmac20/_._",
  7054. "ref/xamarintvos10/_._",
  7055. "ref/xamarinwatchos10/_._"
  7056. ]
  7057. },
  7058. "System.IO.FileSystem.Watcher/4.3.0": {
  7059. "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
  7060. "type": "package",
  7061. "path": "System.IO.FileSystem.Watcher/4.3.0",
  7062. "files": [
  7063. "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
  7064. "System.IO.FileSystem.Watcher.nuspec",
  7065. "ThirdPartyNotices.txt",
  7066. "dotnet_library_license.txt",
  7067. "lib/MonoAndroid10/_._",
  7068. "lib/MonoTouch10/_._",
  7069. "lib/net46/System.IO.FileSystem.Watcher.dll",
  7070. "lib/xamarinios10/_._",
  7071. "lib/xamarinmac20/_._",
  7072. "lib/xamarintvos10/_._",
  7073. "lib/xamarinwatchos10/_._",
  7074. "ref/MonoAndroid10/_._",
  7075. "ref/MonoTouch10/_._",
  7076. "ref/net46/System.IO.FileSystem.Watcher.dll",
  7077. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7078. "ref/netstandard1.3/System.IO.FileSystem.Watcher.xml",
  7079. "ref/netstandard1.3/de/System.IO.FileSystem.Watcher.xml",
  7080. "ref/netstandard1.3/es/System.IO.FileSystem.Watcher.xml",
  7081. "ref/netstandard1.3/fr/System.IO.FileSystem.Watcher.xml",
  7082. "ref/netstandard1.3/it/System.IO.FileSystem.Watcher.xml",
  7083. "ref/netstandard1.3/ja/System.IO.FileSystem.Watcher.xml",
  7084. "ref/netstandard1.3/ko/System.IO.FileSystem.Watcher.xml",
  7085. "ref/netstandard1.3/ru/System.IO.FileSystem.Watcher.xml",
  7086. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Watcher.xml",
  7087. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Watcher.xml",
  7088. "ref/xamarinios10/_._",
  7089. "ref/xamarinmac20/_._",
  7090. "ref/xamarintvos10/_._",
  7091. "ref/xamarinwatchos10/_._",
  7092. "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7093. "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7094. "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll",
  7095. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7096. "runtimes/win7/lib/netcore50/_._"
  7097. ]
  7098. },
  7099. "System.IO.MemoryMappedFiles/4.0.0": {
  7100. "sha512": "PStypGn+lGm2JtQPyiwTrCVHz3dohrljUJ6vIVpgLGaaiMLXA6ZH413Ia7mv1LjKW/5vmGCT3RwSdemsgxkuMg==",
  7101. "type": "package",
  7102. "path": "System.IO.MemoryMappedFiles/4.0.0",
  7103. "files": [
  7104. "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
  7105. "System.IO.MemoryMappedFiles.nuspec",
  7106. "ThirdPartyNotices.txt",
  7107. "dotnet_library_license.txt",
  7108. "lib/MonoAndroid10/_._",
  7109. "lib/MonoTouch10/_._",
  7110. "lib/net46/System.IO.MemoryMappedFiles.dll",
  7111. "lib/xamarinios10/_._",
  7112. "lib/xamarinmac20/_._",
  7113. "lib/xamarintvos10/_._",
  7114. "lib/xamarinwatchos10/_._",
  7115. "ref/MonoAndroid10/_._",
  7116. "ref/MonoTouch10/_._",
  7117. "ref/net46/System.IO.MemoryMappedFiles.dll",
  7118. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  7119. "ref/netstandard1.3/System.IO.MemoryMappedFiles.xml",
  7120. "ref/netstandard1.3/de/System.IO.MemoryMappedFiles.xml",
  7121. "ref/netstandard1.3/es/System.IO.MemoryMappedFiles.xml",
  7122. "ref/netstandard1.3/fr/System.IO.MemoryMappedFiles.xml",
  7123. "ref/netstandard1.3/it/System.IO.MemoryMappedFiles.xml",
  7124. "ref/netstandard1.3/ja/System.IO.MemoryMappedFiles.xml",
  7125. "ref/netstandard1.3/ko/System.IO.MemoryMappedFiles.xml",
  7126. "ref/netstandard1.3/ru/System.IO.MemoryMappedFiles.xml",
  7127. "ref/netstandard1.3/zh-hans/System.IO.MemoryMappedFiles.xml",
  7128. "ref/netstandard1.3/zh-hant/System.IO.MemoryMappedFiles.xml",
  7129. "ref/xamarinios10/_._",
  7130. "ref/xamarinmac20/_._",
  7131. "ref/xamarintvos10/_._",
  7132. "ref/xamarinwatchos10/_._",
  7133. "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  7134. "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll",
  7135. "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll",
  7136. "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
  7137. ]
  7138. },
  7139. "System.IO.UnmanagedMemoryStream/4.0.1": {
  7140. "sha512": "Xm2rVGIaXJN0ScBYeo5fDmNifi3AKkOo5q6AeqZoje1WcrAEwteLNaXsY6Kqqzuspv1YXTylyvs1z1XYLwEglw==",
  7141. "type": "package",
  7142. "path": "System.IO.UnmanagedMemoryStream/4.0.1",
  7143. "files": [
  7144. "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
  7145. "System.IO.UnmanagedMemoryStream.nuspec",
  7146. "ThirdPartyNotices.txt",
  7147. "dotnet_library_license.txt",
  7148. "lib/MonoAndroid10/_._",
  7149. "lib/MonoTouch10/_._",
  7150. "lib/net46/System.IO.UnmanagedMemoryStream.dll",
  7151. "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  7152. "lib/xamarinios10/_._",
  7153. "lib/xamarinmac20/_._",
  7154. "lib/xamarintvos10/_._",
  7155. "lib/xamarinwatchos10/_._",
  7156. "ref/MonoAndroid10/_._",
  7157. "ref/MonoTouch10/_._",
  7158. "ref/net46/System.IO.UnmanagedMemoryStream.dll",
  7159. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  7160. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml",
  7161. "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml",
  7162. "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml",
  7163. "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml",
  7164. "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml",
  7165. "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml",
  7166. "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml",
  7167. "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml",
  7168. "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml",
  7169. "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml",
  7170. "ref/xamarinios10/_._",
  7171. "ref/xamarinmac20/_._",
  7172. "ref/xamarintvos10/_._",
  7173. "ref/xamarinwatchos10/_._"
  7174. ]
  7175. },
  7176. "System.Linq/4.3.0": {
  7177. "sha512": "P71Cxp86ljJd8N2EO2OXb/xdClfs6BRCqDSZeXfSF0g+fT+S6/zmPFVJUEPFycY1pYDAqPGu+2lI9vcP46qmWg==",
  7178. "type": "package",
  7179. "path": "System.Linq/4.3.0",
  7180. "files": [
  7181. "System.Linq.4.3.0.nupkg.sha512",
  7182. "System.Linq.nuspec",
  7183. "ThirdPartyNotices.txt",
  7184. "dotnet_library_license.txt",
  7185. "lib/MonoAndroid10/_._",
  7186. "lib/MonoTouch10/_._",
  7187. "lib/net45/_._",
  7188. "lib/net463/System.Linq.dll",
  7189. "lib/netcore50/System.Linq.dll",
  7190. "lib/netstandard1.6/System.Linq.dll",
  7191. "lib/portable-net45+win8+wp8+wpa81/_._",
  7192. "lib/win8/_._",
  7193. "lib/wp80/_._",
  7194. "lib/wpa81/_._",
  7195. "lib/xamarinios10/_._",
  7196. "lib/xamarinmac20/_._",
  7197. "lib/xamarintvos10/_._",
  7198. "lib/xamarinwatchos10/_._",
  7199. "ref/MonoAndroid10/_._",
  7200. "ref/MonoTouch10/_._",
  7201. "ref/net45/_._",
  7202. "ref/net463/System.Linq.dll",
  7203. "ref/netcore50/System.Linq.dll",
  7204. "ref/netcore50/System.Linq.xml",
  7205. "ref/netcore50/de/System.Linq.xml",
  7206. "ref/netcore50/es/System.Linq.xml",
  7207. "ref/netcore50/fr/System.Linq.xml",
  7208. "ref/netcore50/it/System.Linq.xml",
  7209. "ref/netcore50/ja/System.Linq.xml",
  7210. "ref/netcore50/ko/System.Linq.xml",
  7211. "ref/netcore50/ru/System.Linq.xml",
  7212. "ref/netcore50/zh-hans/System.Linq.xml",
  7213. "ref/netcore50/zh-hant/System.Linq.xml",
  7214. "ref/netstandard1.0/System.Linq.dll",
  7215. "ref/netstandard1.0/System.Linq.xml",
  7216. "ref/netstandard1.0/de/System.Linq.xml",
  7217. "ref/netstandard1.0/es/System.Linq.xml",
  7218. "ref/netstandard1.0/fr/System.Linq.xml",
  7219. "ref/netstandard1.0/it/System.Linq.xml",
  7220. "ref/netstandard1.0/ja/System.Linq.xml",
  7221. "ref/netstandard1.0/ko/System.Linq.xml",
  7222. "ref/netstandard1.0/ru/System.Linq.xml",
  7223. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7224. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7225. "ref/netstandard1.6/System.Linq.dll",
  7226. "ref/netstandard1.6/System.Linq.xml",
  7227. "ref/netstandard1.6/de/System.Linq.xml",
  7228. "ref/netstandard1.6/es/System.Linq.xml",
  7229. "ref/netstandard1.6/fr/System.Linq.xml",
  7230. "ref/netstandard1.6/it/System.Linq.xml",
  7231. "ref/netstandard1.6/ja/System.Linq.xml",
  7232. "ref/netstandard1.6/ko/System.Linq.xml",
  7233. "ref/netstandard1.6/ru/System.Linq.xml",
  7234. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7235. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7236. "ref/portable-net45+win8+wp8+wpa81/_._",
  7237. "ref/win8/_._",
  7238. "ref/wp80/_._",
  7239. "ref/wpa81/_._",
  7240. "ref/xamarinios10/_._",
  7241. "ref/xamarinmac20/_._",
  7242. "ref/xamarintvos10/_._",
  7243. "ref/xamarinwatchos10/_._"
  7244. ]
  7245. },
  7246. "System.Linq.Expressions/4.3.0": {
  7247. "sha512": "/J2T2wXiXRBhO910kRJl3dGU/AvUrsNpVJCfsC5YuVjiRve1JmyUntYScnN2yWb9YOXTscdYbZiI2jtgowslIg==",
  7248. "type": "package",
  7249. "path": "System.Linq.Expressions/4.3.0",
  7250. "files": [
  7251. "System.Linq.Expressions.4.3.0.nupkg.sha512",
  7252. "System.Linq.Expressions.nuspec",
  7253. "ThirdPartyNotices.txt",
  7254. "dotnet_library_license.txt",
  7255. "lib/MonoAndroid10/_._",
  7256. "lib/MonoTouch10/_._",
  7257. "lib/net45/_._",
  7258. "lib/net463/System.Linq.Expressions.dll",
  7259. "lib/netcore50/System.Linq.Expressions.dll",
  7260. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7261. "lib/portable-net45+win8+wp8+wpa81/_._",
  7262. "lib/win8/_._",
  7263. "lib/wp80/_._",
  7264. "lib/wpa81/_._",
  7265. "lib/xamarinios10/_._",
  7266. "lib/xamarinmac20/_._",
  7267. "lib/xamarintvos10/_._",
  7268. "lib/xamarinwatchos10/_._",
  7269. "ref/MonoAndroid10/_._",
  7270. "ref/MonoTouch10/_._",
  7271. "ref/net45/_._",
  7272. "ref/net463/System.Linq.Expressions.dll",
  7273. "ref/netcore50/System.Linq.Expressions.dll",
  7274. "ref/netcore50/System.Linq.Expressions.xml",
  7275. "ref/netcore50/de/System.Linq.Expressions.xml",
  7276. "ref/netcore50/es/System.Linq.Expressions.xml",
  7277. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7278. "ref/netcore50/it/System.Linq.Expressions.xml",
  7279. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7280. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7281. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7282. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7283. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7284. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7285. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7286. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7287. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7288. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7289. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7290. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7291. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7292. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7293. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7294. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7295. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7296. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7297. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7298. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7299. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7300. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7301. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7302. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7303. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7304. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7305. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7306. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7307. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7308. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7309. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7310. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7311. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7312. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7313. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7314. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7315. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7316. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7317. "ref/portable-net45+win8+wp8+wpa81/_._",
  7318. "ref/win8/_._",
  7319. "ref/wp80/_._",
  7320. "ref/wpa81/_._",
  7321. "ref/xamarinios10/_._",
  7322. "ref/xamarinmac20/_._",
  7323. "ref/xamarintvos10/_._",
  7324. "ref/xamarinwatchos10/_._",
  7325. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
  7326. ]
  7327. },
  7328. "System.Linq.Parallel/4.0.1": {
  7329. "sha512": "cze1FtznS4SLU9kbYyJjuy9mhKPbLCqc9OMqAEIDQjkqNZgsRDGfBx1kKjP7Xsk+UXdAfUDTk4Dl9HrIyMExew==",
  7330. "type": "package",
  7331. "path": "System.Linq.Parallel/4.0.1",
  7332. "files": [
  7333. "System.Linq.Parallel.4.0.1.nupkg.sha512",
  7334. "System.Linq.Parallel.nuspec",
  7335. "ThirdPartyNotices.txt",
  7336. "dotnet_library_license.txt",
  7337. "lib/MonoAndroid10/_._",
  7338. "lib/MonoTouch10/_._",
  7339. "lib/net45/_._",
  7340. "lib/netcore50/System.Linq.Parallel.dll",
  7341. "lib/netstandard1.3/System.Linq.Parallel.dll",
  7342. "lib/portable-net45+win8+wpa81/_._",
  7343. "lib/win8/_._",
  7344. "lib/wpa81/_._",
  7345. "lib/xamarinios10/_._",
  7346. "lib/xamarinmac20/_._",
  7347. "lib/xamarintvos10/_._",
  7348. "lib/xamarinwatchos10/_._",
  7349. "ref/MonoAndroid10/_._",
  7350. "ref/MonoTouch10/_._",
  7351. "ref/net45/_._",
  7352. "ref/netcore50/System.Linq.Parallel.dll",
  7353. "ref/netcore50/System.Linq.Parallel.xml",
  7354. "ref/netcore50/de/System.Linq.Parallel.xml",
  7355. "ref/netcore50/es/System.Linq.Parallel.xml",
  7356. "ref/netcore50/fr/System.Linq.Parallel.xml",
  7357. "ref/netcore50/it/System.Linq.Parallel.xml",
  7358. "ref/netcore50/ja/System.Linq.Parallel.xml",
  7359. "ref/netcore50/ko/System.Linq.Parallel.xml",
  7360. "ref/netcore50/ru/System.Linq.Parallel.xml",
  7361. "ref/netcore50/zh-hans/System.Linq.Parallel.xml",
  7362. "ref/netcore50/zh-hant/System.Linq.Parallel.xml",
  7363. "ref/netstandard1.1/System.Linq.Parallel.dll",
  7364. "ref/netstandard1.1/System.Linq.Parallel.xml",
  7365. "ref/netstandard1.1/de/System.Linq.Parallel.xml",
  7366. "ref/netstandard1.1/es/System.Linq.Parallel.xml",
  7367. "ref/netstandard1.1/fr/System.Linq.Parallel.xml",
  7368. "ref/netstandard1.1/it/System.Linq.Parallel.xml",
  7369. "ref/netstandard1.1/ja/System.Linq.Parallel.xml",
  7370. "ref/netstandard1.1/ko/System.Linq.Parallel.xml",
  7371. "ref/netstandard1.1/ru/System.Linq.Parallel.xml",
  7372. "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml",
  7373. "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml",
  7374. "ref/portable-net45+win8+wpa81/_._",
  7375. "ref/win8/_._",
  7376. "ref/wpa81/_._",
  7377. "ref/xamarinios10/_._",
  7378. "ref/xamarinmac20/_._",
  7379. "ref/xamarintvos10/_._",
  7380. "ref/xamarinwatchos10/_._"
  7381. ]
  7382. },
  7383. "System.Linq.Queryable/4.3.0": {
  7384. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  7385. "type": "package",
  7386. "path": "System.Linq.Queryable/4.3.0",
  7387. "files": [
  7388. "System.Linq.Queryable.4.3.0.nupkg.sha512",
  7389. "System.Linq.Queryable.nuspec",
  7390. "ThirdPartyNotices.txt",
  7391. "dotnet_library_license.txt",
  7392. "lib/monoandroid10/_._",
  7393. "lib/monotouch10/_._",
  7394. "lib/net45/_._",
  7395. "lib/netcore50/System.Linq.Queryable.dll",
  7396. "lib/netstandard1.3/System.Linq.Queryable.dll",
  7397. "lib/portable-net45+win8+wp8+wpa81/_._",
  7398. "lib/win8/_._",
  7399. "lib/wp80/_._",
  7400. "lib/wpa81/_._",
  7401. "lib/xamarinios10/_._",
  7402. "lib/xamarinmac20/_._",
  7403. "lib/xamarintvos10/_._",
  7404. "lib/xamarinwatchos10/_._",
  7405. "ref/monoandroid10/_._",
  7406. "ref/monotouch10/_._",
  7407. "ref/net45/_._",
  7408. "ref/netcore50/System.Linq.Queryable.dll",
  7409. "ref/netcore50/System.Linq.Queryable.xml",
  7410. "ref/netcore50/de/System.Linq.Queryable.xml",
  7411. "ref/netcore50/es/System.Linq.Queryable.xml",
  7412. "ref/netcore50/fr/System.Linq.Queryable.xml",
  7413. "ref/netcore50/it/System.Linq.Queryable.xml",
  7414. "ref/netcore50/ja/System.Linq.Queryable.xml",
  7415. "ref/netcore50/ko/System.Linq.Queryable.xml",
  7416. "ref/netcore50/ru/System.Linq.Queryable.xml",
  7417. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  7418. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  7419. "ref/netstandard1.0/System.Linq.Queryable.dll",
  7420. "ref/netstandard1.0/System.Linq.Queryable.xml",
  7421. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  7422. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  7423. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  7424. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  7425. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  7426. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  7427. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  7428. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  7429. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  7430. "ref/portable-net45+win8+wp8+wpa81/_._",
  7431. "ref/win8/_._",
  7432. "ref/wp80/_._",
  7433. "ref/wpa81/_._",
  7434. "ref/xamarinios10/_._",
  7435. "ref/xamarinmac20/_._",
  7436. "ref/xamarintvos10/_._",
  7437. "ref/xamarinwatchos10/_._"
  7438. ]
  7439. },
  7440. "System.Net.Http/4.3.0": {
  7441. "sha512": "lL9E2a0Z5O+QodbZAAn2HYkSKKPJT6S7+O+qV7jasC7J3zaiXRjv4C7uk61+SwEjAt5ybpmsO1lqStXR4T0Cbg==",
  7442. "type": "package",
  7443. "path": "System.Net.Http/4.3.0",
  7444. "files": [
  7445. "System.Net.Http.4.3.0.nupkg.sha512",
  7446. "System.Net.Http.nuspec",
  7447. "ThirdPartyNotices.txt",
  7448. "dotnet_library_license.txt",
  7449. "lib/Xamarinmac20/_._",
  7450. "lib/monoandroid10/_._",
  7451. "lib/monotouch10/_._",
  7452. "lib/net45/_._",
  7453. "lib/net46/System.Net.Http.dll",
  7454. "lib/portable-net45+win8+wpa81/_._",
  7455. "lib/win8/_._",
  7456. "lib/wpa81/_._",
  7457. "lib/xamarinios10/_._",
  7458. "lib/xamarintvos10/_._",
  7459. "lib/xamarinwatchos10/_._",
  7460. "ref/Xamarinmac20/_._",
  7461. "ref/monoandroid10/_._",
  7462. "ref/monotouch10/_._",
  7463. "ref/net45/_._",
  7464. "ref/net46/System.Net.Http.dll",
  7465. "ref/net46/System.Net.Http.xml",
  7466. "ref/net46/de/System.Net.Http.xml",
  7467. "ref/net46/es/System.Net.Http.xml",
  7468. "ref/net46/fr/System.Net.Http.xml",
  7469. "ref/net46/it/System.Net.Http.xml",
  7470. "ref/net46/ja/System.Net.Http.xml",
  7471. "ref/net46/ko/System.Net.Http.xml",
  7472. "ref/net46/ru/System.Net.Http.xml",
  7473. "ref/net46/zh-hans/System.Net.Http.xml",
  7474. "ref/net46/zh-hant/System.Net.Http.xml",
  7475. "ref/netcore50/System.Net.Http.dll",
  7476. "ref/netcore50/System.Net.Http.xml",
  7477. "ref/netcore50/de/System.Net.Http.xml",
  7478. "ref/netcore50/es/System.Net.Http.xml",
  7479. "ref/netcore50/fr/System.Net.Http.xml",
  7480. "ref/netcore50/it/System.Net.Http.xml",
  7481. "ref/netcore50/ja/System.Net.Http.xml",
  7482. "ref/netcore50/ko/System.Net.Http.xml",
  7483. "ref/netcore50/ru/System.Net.Http.xml",
  7484. "ref/netcore50/zh-hans/System.Net.Http.xml",
  7485. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7486. "ref/netstandard1.1/System.Net.Http.dll",
  7487. "ref/netstandard1.1/System.Net.Http.xml",
  7488. "ref/netstandard1.1/de/System.Net.Http.xml",
  7489. "ref/netstandard1.1/es/System.Net.Http.xml",
  7490. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7491. "ref/netstandard1.1/it/System.Net.Http.xml",
  7492. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7493. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7494. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7495. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7496. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7497. "ref/netstandard1.3/System.Net.Http.dll",
  7498. "ref/netstandard1.3/System.Net.Http.xml",
  7499. "ref/netstandard1.3/de/System.Net.Http.xml",
  7500. "ref/netstandard1.3/es/System.Net.Http.xml",
  7501. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7502. "ref/netstandard1.3/it/System.Net.Http.xml",
  7503. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7504. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7505. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7506. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7507. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7508. "ref/portable-net45+win8+wpa81/_._",
  7509. "ref/win8/_._",
  7510. "ref/wpa81/_._",
  7511. "ref/xamarinios10/_._",
  7512. "ref/xamarintvos10/_._",
  7513. "ref/xamarinwatchos10/_._",
  7514. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7515. "runtimes/win/lib/net46/System.Net.Http.dll",
  7516. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7517. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
  7518. ]
  7519. },
  7520. "System.Net.NameResolution/4.0.0": {
  7521. "sha512": "OThG4wPbLixNd2++hNQH7dg36eJbvHTHOn2OUr9uXsq67kMIHeURNBmVEIPKxA7MWvBYTqHbMv18igLyXMtTdQ==",
  7522. "type": "package",
  7523. "path": "System.Net.NameResolution/4.0.0",
  7524. "files": [
  7525. "System.Net.NameResolution.4.0.0.nupkg.sha512",
  7526. "System.Net.NameResolution.nuspec",
  7527. "ThirdPartyNotices.txt",
  7528. "dotnet_library_license.txt",
  7529. "lib/MonoAndroid10/_._",
  7530. "lib/MonoTouch10/_._",
  7531. "lib/net46/System.Net.NameResolution.dll",
  7532. "lib/xamarinios10/_._",
  7533. "lib/xamarinmac20/_._",
  7534. "lib/xamarintvos10/_._",
  7535. "lib/xamarinwatchos10/_._",
  7536. "ref/MonoAndroid10/_._",
  7537. "ref/MonoTouch10/_._",
  7538. "ref/net46/System.Net.NameResolution.dll",
  7539. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7540. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7541. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7542. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7543. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7544. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7545. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7546. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7547. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7548. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7549. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7550. "ref/xamarinios10/_._",
  7551. "ref/xamarinmac20/_._",
  7552. "ref/xamarintvos10/_._",
  7553. "ref/xamarinwatchos10/_._",
  7554. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7555. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7556. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7557. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
  7558. ]
  7559. },
  7560. "System.Net.NetworkInformation/4.1.0": {
  7561. "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
  7562. "type": "package",
  7563. "path": "System.Net.NetworkInformation/4.1.0",
  7564. "files": [
  7565. "System.Net.NetworkInformation.4.1.0.nupkg.sha512",
  7566. "System.Net.NetworkInformation.nuspec",
  7567. "ThirdPartyNotices.txt",
  7568. "dotnet_library_license.txt",
  7569. "lib/MonoAndroid10/_._",
  7570. "lib/MonoTouch10/_._",
  7571. "lib/net45/_._",
  7572. "lib/net46/System.Net.NetworkInformation.dll",
  7573. "lib/portable-net45+win8+wp8+wpa81/_._",
  7574. "lib/win8/_._",
  7575. "lib/wp80/_._",
  7576. "lib/wpa81/_._",
  7577. "lib/xamarinios10/_._",
  7578. "lib/xamarinmac20/_._",
  7579. "lib/xamarintvos10/_._",
  7580. "lib/xamarinwatchos10/_._",
  7581. "ref/MonoAndroid10/_._",
  7582. "ref/MonoTouch10/_._",
  7583. "ref/net45/_._",
  7584. "ref/net46/System.Net.NetworkInformation.dll",
  7585. "ref/netcore50/System.Net.NetworkInformation.dll",
  7586. "ref/netcore50/System.Net.NetworkInformation.xml",
  7587. "ref/netcore50/de/System.Net.NetworkInformation.xml",
  7588. "ref/netcore50/es/System.Net.NetworkInformation.xml",
  7589. "ref/netcore50/fr/System.Net.NetworkInformation.xml",
  7590. "ref/netcore50/it/System.Net.NetworkInformation.xml",
  7591. "ref/netcore50/ja/System.Net.NetworkInformation.xml",
  7592. "ref/netcore50/ko/System.Net.NetworkInformation.xml",
  7593. "ref/netcore50/ru/System.Net.NetworkInformation.xml",
  7594. "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
  7595. "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
  7596. "ref/netstandard1.0/System.Net.NetworkInformation.dll",
  7597. "ref/netstandard1.0/System.Net.NetworkInformation.xml",
  7598. "ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
  7599. "ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
  7600. "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
  7601. "ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
  7602. "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
  7603. "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
  7604. "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
  7605. "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
  7606. "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
  7607. "ref/netstandard1.3/System.Net.NetworkInformation.dll",
  7608. "ref/netstandard1.3/System.Net.NetworkInformation.xml",
  7609. "ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
  7610. "ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
  7611. "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
  7612. "ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
  7613. "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
  7614. "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
  7615. "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
  7616. "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
  7617. "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
  7618. "ref/portable-net45+win8+wp8+wpa81/_._",
  7619. "ref/win8/_._",
  7620. "ref/wp80/_._",
  7621. "ref/wpa81/_._",
  7622. "ref/xamarinios10/_._",
  7623. "ref/xamarinmac20/_._",
  7624. "ref/xamarintvos10/_._",
  7625. "ref/xamarinwatchos10/_._",
  7626. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  7627. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  7628. "runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
  7629. "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
  7630. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
  7631. ]
  7632. },
  7633. "System.Net.Primitives/4.3.0": {
  7634. "sha512": "/F1CygaK7ssyNozh2IJpyKST7J3zhQF69S04a++b8mS35XY7UOiDdgFdSI78pJMxR8r89VfnszrfDeU1ICUgiQ==",
  7635. "type": "package",
  7636. "path": "System.Net.Primitives/4.3.0",
  7637. "files": [
  7638. "System.Net.Primitives.4.3.0.nupkg.sha512",
  7639. "System.Net.Primitives.nuspec",
  7640. "ThirdPartyNotices.txt",
  7641. "dotnet_library_license.txt",
  7642. "lib/MonoAndroid10/_._",
  7643. "lib/MonoTouch10/_._",
  7644. "lib/net45/_._",
  7645. "lib/portable-net45+win8+wp8+wpa81/_._",
  7646. "lib/win8/_._",
  7647. "lib/wp80/_._",
  7648. "lib/wpa81/_._",
  7649. "lib/xamarinios10/_._",
  7650. "lib/xamarinmac20/_._",
  7651. "lib/xamarintvos10/_._",
  7652. "lib/xamarinwatchos10/_._",
  7653. "ref/MonoAndroid10/_._",
  7654. "ref/MonoTouch10/_._",
  7655. "ref/net45/_._",
  7656. "ref/netcore50/System.Net.Primitives.dll",
  7657. "ref/netcore50/System.Net.Primitives.xml",
  7658. "ref/netcore50/de/System.Net.Primitives.xml",
  7659. "ref/netcore50/es/System.Net.Primitives.xml",
  7660. "ref/netcore50/fr/System.Net.Primitives.xml",
  7661. "ref/netcore50/it/System.Net.Primitives.xml",
  7662. "ref/netcore50/ja/System.Net.Primitives.xml",
  7663. "ref/netcore50/ko/System.Net.Primitives.xml",
  7664. "ref/netcore50/ru/System.Net.Primitives.xml",
  7665. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7666. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7667. "ref/netstandard1.0/System.Net.Primitives.dll",
  7668. "ref/netstandard1.0/System.Net.Primitives.xml",
  7669. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7670. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7671. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7672. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7673. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7674. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7675. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7676. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7677. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7678. "ref/netstandard1.1/System.Net.Primitives.dll",
  7679. "ref/netstandard1.1/System.Net.Primitives.xml",
  7680. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7681. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7682. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7683. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7684. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7685. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7686. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7687. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7688. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7689. "ref/netstandard1.3/System.Net.Primitives.dll",
  7690. "ref/netstandard1.3/System.Net.Primitives.xml",
  7691. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7692. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7693. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7694. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7695. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7696. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7697. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7698. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7699. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7700. "ref/portable-net45+win8+wp8+wpa81/_._",
  7701. "ref/win8/_._",
  7702. "ref/wp80/_._",
  7703. "ref/wpa81/_._",
  7704. "ref/xamarinios10/_._",
  7705. "ref/xamarinmac20/_._",
  7706. "ref/xamarintvos10/_._",
  7707. "ref/xamarinwatchos10/_._"
  7708. ]
  7709. },
  7710. "System.Net.Requests/4.0.11": {
  7711. "sha512": "MrvLsG/G/1UjIFIh9tFt2dO0k4V/CILA7yAv+lrIFmUtVdzBhF4ZG/sT/AaaGuchJJ16UEBBwP3ggPXlvVARcA==",
  7712. "type": "package",
  7713. "path": "System.Net.Requests/4.0.11",
  7714. "files": [
  7715. "System.Net.Requests.4.0.11.nupkg.sha512",
  7716. "System.Net.Requests.nuspec",
  7717. "ThirdPartyNotices.txt",
  7718. "dotnet_library_license.txt",
  7719. "lib/MonoAndroid10/_._",
  7720. "lib/MonoTouch10/_._",
  7721. "lib/net45/_._",
  7722. "lib/portable-net45+win8+wp8+wpa81/_._",
  7723. "lib/win8/_._",
  7724. "lib/wp80/_._",
  7725. "lib/wpa81/_._",
  7726. "lib/xamarinios10/_._",
  7727. "lib/xamarinmac20/_._",
  7728. "lib/xamarintvos10/_._",
  7729. "lib/xamarinwatchos10/_._",
  7730. "ref/MonoAndroid10/_._",
  7731. "ref/MonoTouch10/_._",
  7732. "ref/net45/_._",
  7733. "ref/net46/_._",
  7734. "ref/netcore50/System.Net.Requests.dll",
  7735. "ref/netcore50/System.Net.Requests.xml",
  7736. "ref/netcore50/de/System.Net.Requests.xml",
  7737. "ref/netcore50/es/System.Net.Requests.xml",
  7738. "ref/netcore50/fr/System.Net.Requests.xml",
  7739. "ref/netcore50/it/System.Net.Requests.xml",
  7740. "ref/netcore50/ja/System.Net.Requests.xml",
  7741. "ref/netcore50/ko/System.Net.Requests.xml",
  7742. "ref/netcore50/ru/System.Net.Requests.xml",
  7743. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  7744. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  7745. "ref/netstandard1.0/System.Net.Requests.dll",
  7746. "ref/netstandard1.0/System.Net.Requests.xml",
  7747. "ref/netstandard1.0/de/System.Net.Requests.xml",
  7748. "ref/netstandard1.0/es/System.Net.Requests.xml",
  7749. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  7750. "ref/netstandard1.0/it/System.Net.Requests.xml",
  7751. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  7752. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  7753. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  7754. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  7755. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  7756. "ref/netstandard1.1/System.Net.Requests.dll",
  7757. "ref/netstandard1.1/System.Net.Requests.xml",
  7758. "ref/netstandard1.1/de/System.Net.Requests.xml",
  7759. "ref/netstandard1.1/es/System.Net.Requests.xml",
  7760. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  7761. "ref/netstandard1.1/it/System.Net.Requests.xml",
  7762. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  7763. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  7764. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  7765. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  7766. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  7767. "ref/netstandard1.3/System.Net.Requests.dll",
  7768. "ref/netstandard1.3/System.Net.Requests.xml",
  7769. "ref/netstandard1.3/de/System.Net.Requests.xml",
  7770. "ref/netstandard1.3/es/System.Net.Requests.xml",
  7771. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  7772. "ref/netstandard1.3/it/System.Net.Requests.xml",
  7773. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  7774. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  7775. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  7776. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  7777. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  7778. "ref/portable-net45+win8+wp8+wpa81/_._",
  7779. "ref/win8/_._",
  7780. "ref/wp80/_._",
  7781. "ref/wpa81/_._",
  7782. "ref/xamarinios10/_._",
  7783. "ref/xamarinmac20/_._",
  7784. "ref/xamarintvos10/_._",
  7785. "ref/xamarinwatchos10/_._",
  7786. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  7787. "runtimes/win/lib/net46/_._",
  7788. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
  7789. ]
  7790. },
  7791. "System.Net.Security/4.0.0": {
  7792. "sha512": "VDAJz83kg0UpbDI8dx97T8lpATcoowky6BYvVYqKAyWUeZ8dDS/SOUi8PciD4bYrnDEmpJpCxOZgxX2/VO+QxQ==",
  7793. "type": "package",
  7794. "path": "System.Net.Security/4.0.0",
  7795. "files": [
  7796. "System.Net.Security.4.0.0.nupkg.sha512",
  7797. "System.Net.Security.nuspec",
  7798. "ThirdPartyNotices.txt",
  7799. "dotnet_library_license.txt",
  7800. "lib/MonoAndroid10/_._",
  7801. "lib/MonoTouch10/_._",
  7802. "lib/net46/System.Net.Security.dll",
  7803. "lib/xamarinios10/_._",
  7804. "lib/xamarinmac20/_._",
  7805. "lib/xamarintvos10/_._",
  7806. "lib/xamarinwatchos10/_._",
  7807. "ref/MonoAndroid10/_._",
  7808. "ref/MonoTouch10/_._",
  7809. "ref/net46/System.Net.Security.dll",
  7810. "ref/netstandard1.3/System.Net.Security.dll",
  7811. "ref/netstandard1.3/System.Net.Security.xml",
  7812. "ref/netstandard1.3/de/System.Net.Security.xml",
  7813. "ref/netstandard1.3/es/System.Net.Security.xml",
  7814. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7815. "ref/netstandard1.3/it/System.Net.Security.xml",
  7816. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7817. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7818. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7819. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7820. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7821. "ref/xamarinios10/_._",
  7822. "ref/xamarinmac20/_._",
  7823. "ref/xamarintvos10/_._",
  7824. "ref/xamarinwatchos10/_._",
  7825. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7826. "runtimes/win/lib/net46/System.Net.Security.dll",
  7827. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7828. "runtimes/win7/lib/netcore50/_._"
  7829. ]
  7830. },
  7831. "System.Net.Sockets/4.3.0": {
  7832. "sha512": "KtqIgQ1TFnwpL/0fbB9pYZg3NzcOfTsC0GCx1a+w3MLkNCcyRs/F/UjunKzRDp5L9zWsKV822IyNuukxjgGuww==",
  7833. "type": "package",
  7834. "path": "System.Net.Sockets/4.3.0",
  7835. "files": [
  7836. "System.Net.Sockets.4.3.0.nupkg.sha512",
  7837. "System.Net.Sockets.nuspec",
  7838. "ThirdPartyNotices.txt",
  7839. "dotnet_library_license.txt",
  7840. "lib/MonoAndroid10/_._",
  7841. "lib/MonoTouch10/_._",
  7842. "lib/net46/System.Net.Sockets.dll",
  7843. "lib/xamarinios10/_._",
  7844. "lib/xamarinmac20/_._",
  7845. "lib/xamarintvos10/_._",
  7846. "lib/xamarinwatchos10/_._",
  7847. "ref/MonoAndroid10/_._",
  7848. "ref/MonoTouch10/_._",
  7849. "ref/net46/System.Net.Sockets.dll",
  7850. "ref/netstandard1.3/System.Net.Sockets.dll",
  7851. "ref/netstandard1.3/System.Net.Sockets.xml",
  7852. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7853. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7854. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7855. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7856. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7857. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7858. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7859. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7860. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7861. "ref/xamarinios10/_._",
  7862. "ref/xamarinmac20/_._",
  7863. "ref/xamarintvos10/_._",
  7864. "ref/xamarinwatchos10/_._"
  7865. ]
  7866. },
  7867. "System.Net.WebHeaderCollection/4.0.1": {
  7868. "sha512": "1wzUZ5bS+Tt2nbj75+BxWiTFgrcigDQHfWWoXJzz1LdvPCwkgkbbi+tqojxWnGy17Sm7t57zQLdWMVNvqU+OMw==",
  7869. "type": "package",
  7870. "path": "System.Net.WebHeaderCollection/4.0.1",
  7871. "files": [
  7872. "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
  7873. "System.Net.WebHeaderCollection.nuspec",
  7874. "ThirdPartyNotices.txt",
  7875. "dotnet_library_license.txt",
  7876. "lib/MonoAndroid10/_._",
  7877. "lib/MonoTouch10/_._",
  7878. "lib/net46/_._",
  7879. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7880. "lib/xamarinios10/_._",
  7881. "lib/xamarinmac20/_._",
  7882. "lib/xamarintvos10/_._",
  7883. "lib/xamarinwatchos10/_._",
  7884. "ref/MonoAndroid10/_._",
  7885. "ref/MonoTouch10/_._",
  7886. "ref/net46/_._",
  7887. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7888. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7889. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7890. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7891. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7892. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7893. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7894. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7895. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7896. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7897. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7898. "ref/xamarinios10/_._",
  7899. "ref/xamarinmac20/_._",
  7900. "ref/xamarintvos10/_._",
  7901. "ref/xamarinwatchos10/_._"
  7902. ]
  7903. },
  7904. "System.Net.WebSockets/4.3.0": {
  7905. "sha512": "B4lrKZVGE6lp1OKhkIk+Nyapq0hM6x61WHB2pwa70E1BPl67raIynuUWH6usxdVye4T7Tp4o7yA20po03mNbhA==",
  7906. "type": "package",
  7907. "path": "System.Net.WebSockets/4.3.0",
  7908. "files": [
  7909. "System.Net.WebSockets.4.3.0.nupkg.sha512",
  7910. "System.Net.WebSockets.nuspec",
  7911. "ThirdPartyNotices.txt",
  7912. "dotnet_library_license.txt",
  7913. "lib/MonoAndroid10/_._",
  7914. "lib/MonoTouch10/_._",
  7915. "lib/net46/System.Net.WebSockets.dll",
  7916. "lib/netstandard1.3/System.Net.WebSockets.dll",
  7917. "lib/xamarinios10/_._",
  7918. "lib/xamarinmac20/_._",
  7919. "lib/xamarintvos10/_._",
  7920. "lib/xamarinwatchos10/_._",
  7921. "ref/MonoAndroid10/_._",
  7922. "ref/MonoTouch10/_._",
  7923. "ref/net46/System.Net.WebSockets.dll",
  7924. "ref/netstandard1.3/System.Net.WebSockets.dll",
  7925. "ref/netstandard1.3/System.Net.WebSockets.xml",
  7926. "ref/netstandard1.3/de/System.Net.WebSockets.xml",
  7927. "ref/netstandard1.3/es/System.Net.WebSockets.xml",
  7928. "ref/netstandard1.3/fr/System.Net.WebSockets.xml",
  7929. "ref/netstandard1.3/it/System.Net.WebSockets.xml",
  7930. "ref/netstandard1.3/ja/System.Net.WebSockets.xml",
  7931. "ref/netstandard1.3/ko/System.Net.WebSockets.xml",
  7932. "ref/netstandard1.3/ru/System.Net.WebSockets.xml",
  7933. "ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml",
  7934. "ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml",
  7935. "ref/xamarinios10/_._",
  7936. "ref/xamarinmac20/_._",
  7937. "ref/xamarintvos10/_._",
  7938. "ref/xamarinwatchos10/_._"
  7939. ]
  7940. },
  7941. "System.Numerics.Vectors/4.3.0": {
  7942. "sha512": "uAIqmwiQPPXdCz59MQcyHwsH2MzIv24VGCS54kP/1GzTRTuU3hazmiPnGUTlKFia4B1DnbLWjTHoGyTI5BMCTQ==",
  7943. "type": "package",
  7944. "path": "System.Numerics.Vectors/4.3.0",
  7945. "files": [
  7946. "System.Numerics.Vectors.4.3.0.nupkg.sha512",
  7947. "System.Numerics.Vectors.nuspec",
  7948. "ThirdPartyNotices.txt",
  7949. "dotnet_library_license.txt",
  7950. "lib/MonoAndroid10/_._",
  7951. "lib/MonoTouch10/_._",
  7952. "lib/net46/System.Numerics.Vectors.dll",
  7953. "lib/net46/System.Numerics.Vectors.xml",
  7954. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7955. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7956. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7957. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7958. "lib/xamarinios10/_._",
  7959. "lib/xamarinmac20/_._",
  7960. "lib/xamarintvos10/_._",
  7961. "lib/xamarinwatchos10/_._",
  7962. "ref/MonoAndroid10/_._",
  7963. "ref/MonoTouch10/_._",
  7964. "ref/net46/System.Numerics.Vectors.dll",
  7965. "ref/net46/System.Numerics.Vectors.xml",
  7966. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7967. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7968. "ref/xamarinios10/_._",
  7969. "ref/xamarinmac20/_._",
  7970. "ref/xamarintvos10/_._",
  7971. "ref/xamarinwatchos10/_._"
  7972. ]
  7973. },
  7974. "System.ObjectModel/4.3.0": {
  7975. "sha512": "04rvkI2O4vQW06QHRKPOlMMjLwKPyHpFjOgSq3YtQqzoVy8lzaC/CtbhHJzb6E2/0hP6gMCxFz0cOvTOUoLa2g==",
  7976. "type": "package",
  7977. "path": "System.ObjectModel/4.3.0",
  7978. "files": [
  7979. "System.ObjectModel.4.3.0.nupkg.sha512",
  7980. "System.ObjectModel.nuspec",
  7981. "ThirdPartyNotices.txt",
  7982. "dotnet_library_license.txt",
  7983. "lib/MonoAndroid10/_._",
  7984. "lib/MonoTouch10/_._",
  7985. "lib/net45/_._",
  7986. "lib/netcore50/System.ObjectModel.dll",
  7987. "lib/netstandard1.3/System.ObjectModel.dll",
  7988. "lib/portable-net45+win8+wp8+wpa81/_._",
  7989. "lib/win8/_._",
  7990. "lib/wp80/_._",
  7991. "lib/wpa81/_._",
  7992. "lib/xamarinios10/_._",
  7993. "lib/xamarinmac20/_._",
  7994. "lib/xamarintvos10/_._",
  7995. "lib/xamarinwatchos10/_._",
  7996. "ref/MonoAndroid10/_._",
  7997. "ref/MonoTouch10/_._",
  7998. "ref/net45/_._",
  7999. "ref/netcore50/System.ObjectModel.dll",
  8000. "ref/netcore50/System.ObjectModel.xml",
  8001. "ref/netcore50/de/System.ObjectModel.xml",
  8002. "ref/netcore50/es/System.ObjectModel.xml",
  8003. "ref/netcore50/fr/System.ObjectModel.xml",
  8004. "ref/netcore50/it/System.ObjectModel.xml",
  8005. "ref/netcore50/ja/System.ObjectModel.xml",
  8006. "ref/netcore50/ko/System.ObjectModel.xml",
  8007. "ref/netcore50/ru/System.ObjectModel.xml",
  8008. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  8009. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  8010. "ref/netstandard1.0/System.ObjectModel.dll",
  8011. "ref/netstandard1.0/System.ObjectModel.xml",
  8012. "ref/netstandard1.0/de/System.ObjectModel.xml",
  8013. "ref/netstandard1.0/es/System.ObjectModel.xml",
  8014. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  8015. "ref/netstandard1.0/it/System.ObjectModel.xml",
  8016. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  8017. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  8018. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  8019. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  8020. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  8021. "ref/netstandard1.3/System.ObjectModel.dll",
  8022. "ref/netstandard1.3/System.ObjectModel.xml",
  8023. "ref/netstandard1.3/de/System.ObjectModel.xml",
  8024. "ref/netstandard1.3/es/System.ObjectModel.xml",
  8025. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  8026. "ref/netstandard1.3/it/System.ObjectModel.xml",
  8027. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  8028. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  8029. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  8030. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  8031. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  8032. "ref/portable-net45+win8+wp8+wpa81/_._",
  8033. "ref/win8/_._",
  8034. "ref/wp80/_._",
  8035. "ref/wpa81/_._",
  8036. "ref/xamarinios10/_._",
  8037. "ref/xamarinmac20/_._",
  8038. "ref/xamarintvos10/_._",
  8039. "ref/xamarinwatchos10/_._"
  8040. ]
  8041. },
  8042. "System.Reflection/4.3.0": {
  8043. "sha512": "rIm0+BBrDLfCzhbIrVlqqrYxjqUS1/KIV0HLsVG2cN5PGGOyVTpnged4vC2YL5yHnPaqKJgqhU5Sk+2RnEbmfw==",
  8044. "type": "package",
  8045. "path": "System.Reflection/4.3.0",
  8046. "files": [
  8047. "System.Reflection.4.3.0.nupkg.sha512",
  8048. "System.Reflection.nuspec",
  8049. "ThirdPartyNotices.txt",
  8050. "dotnet_library_license.txt",
  8051. "lib/MonoAndroid10/_._",
  8052. "lib/MonoTouch10/_._",
  8053. "lib/net45/_._",
  8054. "lib/net462/System.Reflection.dll",
  8055. "lib/portable-net45+win8+wp8+wpa81/_._",
  8056. "lib/win8/_._",
  8057. "lib/wp80/_._",
  8058. "lib/wpa81/_._",
  8059. "lib/xamarinios10/_._",
  8060. "lib/xamarinmac20/_._",
  8061. "lib/xamarintvos10/_._",
  8062. "lib/xamarinwatchos10/_._",
  8063. "ref/MonoAndroid10/_._",
  8064. "ref/MonoTouch10/_._",
  8065. "ref/net45/_._",
  8066. "ref/net462/System.Reflection.dll",
  8067. "ref/netcore50/System.Reflection.dll",
  8068. "ref/netcore50/System.Reflection.xml",
  8069. "ref/netcore50/de/System.Reflection.xml",
  8070. "ref/netcore50/es/System.Reflection.xml",
  8071. "ref/netcore50/fr/System.Reflection.xml",
  8072. "ref/netcore50/it/System.Reflection.xml",
  8073. "ref/netcore50/ja/System.Reflection.xml",
  8074. "ref/netcore50/ko/System.Reflection.xml",
  8075. "ref/netcore50/ru/System.Reflection.xml",
  8076. "ref/netcore50/zh-hans/System.Reflection.xml",
  8077. "ref/netcore50/zh-hant/System.Reflection.xml",
  8078. "ref/netstandard1.0/System.Reflection.dll",
  8079. "ref/netstandard1.0/System.Reflection.xml",
  8080. "ref/netstandard1.0/de/System.Reflection.xml",
  8081. "ref/netstandard1.0/es/System.Reflection.xml",
  8082. "ref/netstandard1.0/fr/System.Reflection.xml",
  8083. "ref/netstandard1.0/it/System.Reflection.xml",
  8084. "ref/netstandard1.0/ja/System.Reflection.xml",
  8085. "ref/netstandard1.0/ko/System.Reflection.xml",
  8086. "ref/netstandard1.0/ru/System.Reflection.xml",
  8087. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  8088. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  8089. "ref/netstandard1.3/System.Reflection.dll",
  8090. "ref/netstandard1.3/System.Reflection.xml",
  8091. "ref/netstandard1.3/de/System.Reflection.xml",
  8092. "ref/netstandard1.3/es/System.Reflection.xml",
  8093. "ref/netstandard1.3/fr/System.Reflection.xml",
  8094. "ref/netstandard1.3/it/System.Reflection.xml",
  8095. "ref/netstandard1.3/ja/System.Reflection.xml",
  8096. "ref/netstandard1.3/ko/System.Reflection.xml",
  8097. "ref/netstandard1.3/ru/System.Reflection.xml",
  8098. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8099. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8100. "ref/netstandard1.5/System.Reflection.dll",
  8101. "ref/netstandard1.5/System.Reflection.xml",
  8102. "ref/netstandard1.5/de/System.Reflection.xml",
  8103. "ref/netstandard1.5/es/System.Reflection.xml",
  8104. "ref/netstandard1.5/fr/System.Reflection.xml",
  8105. "ref/netstandard1.5/it/System.Reflection.xml",
  8106. "ref/netstandard1.5/ja/System.Reflection.xml",
  8107. "ref/netstandard1.5/ko/System.Reflection.xml",
  8108. "ref/netstandard1.5/ru/System.Reflection.xml",
  8109. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8110. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8111. "ref/portable-net45+win8+wp8+wpa81/_._",
  8112. "ref/win8/_._",
  8113. "ref/wp80/_._",
  8114. "ref/wpa81/_._",
  8115. "ref/xamarinios10/_._",
  8116. "ref/xamarinmac20/_._",
  8117. "ref/xamarintvos10/_._",
  8118. "ref/xamarinwatchos10/_._"
  8119. ]
  8120. },
  8121. "System.Reflection.DispatchProxy/4.0.1": {
  8122. "sha512": "SsEK/GSCyMWk4CvftyexYZjKKPE+9HjrlKo7F9AqErUffgqDQh60sm90C4YLA8xfq90ymJL/veXl/OewOQ/Hyw==",
  8123. "type": "package",
  8124. "path": "System.Reflection.DispatchProxy/4.0.1",
  8125. "files": [
  8126. "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
  8127. "System.Reflection.DispatchProxy.nuspec",
  8128. "ThirdPartyNotices.txt",
  8129. "dotnet_library_license.txt",
  8130. "lib/MonoAndroid10/_._",
  8131. "lib/MonoTouch10/_._",
  8132. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  8133. "lib/xamarinios10/_._",
  8134. "lib/xamarinmac20/_._",
  8135. "lib/xamarintvos10/_._",
  8136. "lib/xamarinwatchos10/_._",
  8137. "ref/MonoAndroid10/_._",
  8138. "ref/MonoTouch10/_._",
  8139. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  8140. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  8141. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  8142. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  8143. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  8144. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  8145. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  8146. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  8147. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  8148. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  8149. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  8150. "ref/xamarinios10/_._",
  8151. "ref/xamarinmac20/_._",
  8152. "ref/xamarintvos10/_._",
  8153. "ref/xamarinwatchos10/_._",
  8154. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
  8155. ]
  8156. },
  8157. "System.Reflection.Emit/4.3.0": {
  8158. "sha512": "y0LBLyMUaxkALaxB8vhoIDC3kxRW8ASkL7cK86kbN2CpauEWE+SPGUbca2inK+HMPImkN9ut74l4DSnB30ozFQ==",
  8159. "type": "package",
  8160. "path": "System.Reflection.Emit/4.3.0",
  8161. "files": [
  8162. "System.Reflection.Emit.4.3.0.nupkg.sha512",
  8163. "System.Reflection.Emit.nuspec",
  8164. "ThirdPartyNotices.txt",
  8165. "dotnet_library_license.txt",
  8166. "lib/MonoAndroid10/_._",
  8167. "lib/monotouch10/_._",
  8168. "lib/net45/_._",
  8169. "lib/netcore50/System.Reflection.Emit.dll",
  8170. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8171. "lib/xamarinios10/_._",
  8172. "lib/xamarinmac20/_._",
  8173. "lib/xamarintvos10/_._",
  8174. "lib/xamarinwatchos10/_._",
  8175. "ref/MonoAndroid10/_._",
  8176. "ref/net45/_._",
  8177. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8178. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8179. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8180. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8181. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8182. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8183. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8184. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8185. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8186. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8187. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8188. "ref/xamarinmac20/_._"
  8189. ]
  8190. },
  8191. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8192. "sha512": "gESuD3AAQLwwD3up3lCmH0vi0sPq2E4Zi7nx4hUkuqSXm7dF4kuQqrWkKgrT2F+HHG9oxf1p/t1s+VC2jKcFmQ==",
  8193. "type": "package",
  8194. "path": "System.Reflection.Emit.ILGeneration/4.3.0",
  8195. "files": [
  8196. "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
  8197. "System.Reflection.Emit.ILGeneration.nuspec",
  8198. "ThirdPartyNotices.txt",
  8199. "dotnet_library_license.txt",
  8200. "lib/MonoAndroid10/_._",
  8201. "lib/MonoTouch10/_._",
  8202. "lib/net45/_._",
  8203. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8204. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8205. "lib/portable-net45+wp8/_._",
  8206. "lib/wp80/_._",
  8207. "lib/xamarinios10/_._",
  8208. "lib/xamarinmac20/_._",
  8209. "lib/xamarintvos10/_._",
  8210. "lib/xamarinwatchos10/_._",
  8211. "ref/MonoAndroid10/_._",
  8212. "ref/MonoTouch10/_._",
  8213. "ref/net45/_._",
  8214. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8215. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8216. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8217. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8218. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8219. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8220. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8221. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8222. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8223. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8224. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8225. "ref/portable-net45+wp8/_._",
  8226. "ref/wp80/_._",
  8227. "ref/xamarinios10/_._",
  8228. "ref/xamarinmac20/_._",
  8229. "ref/xamarintvos10/_._",
  8230. "ref/xamarinwatchos10/_._",
  8231. "runtimes/aot/lib/netcore50/_._"
  8232. ]
  8233. },
  8234. "System.Reflection.Emit.Lightweight/4.3.0": {
  8235. "sha512": "17M3uPACyrdLG/RZoY6irUI6WhLXPL8AnTUt6og3/ko3kgAwxe8jFT6m9mAQ44qVElUlBhqLb9G+iDp54GyrNg==",
  8236. "type": "package",
  8237. "path": "System.Reflection.Emit.Lightweight/4.3.0",
  8238. "files": [
  8239. "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
  8240. "System.Reflection.Emit.Lightweight.nuspec",
  8241. "ThirdPartyNotices.txt",
  8242. "dotnet_library_license.txt",
  8243. "lib/MonoAndroid10/_._",
  8244. "lib/MonoTouch10/_._",
  8245. "lib/net45/_._",
  8246. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8247. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8248. "lib/portable-net45+wp8/_._",
  8249. "lib/wp80/_._",
  8250. "lib/xamarinios10/_._",
  8251. "lib/xamarinmac20/_._",
  8252. "lib/xamarintvos10/_._",
  8253. "lib/xamarinwatchos10/_._",
  8254. "ref/MonoAndroid10/_._",
  8255. "ref/MonoTouch10/_._",
  8256. "ref/net45/_._",
  8257. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8258. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8259. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8260. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8261. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8262. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8263. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8264. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8265. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8266. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8267. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8268. "ref/portable-net45+wp8/_._",
  8269. "ref/wp80/_._",
  8270. "ref/xamarinios10/_._",
  8271. "ref/xamarinmac20/_._",
  8272. "ref/xamarintvos10/_._",
  8273. "ref/xamarinwatchos10/_._",
  8274. "runtimes/aot/lib/netcore50/_._"
  8275. ]
  8276. },
  8277. "System.Reflection.Extensions/4.3.0": {
  8278. "sha512": "TmoUwQELjPHz4mM5iiCbsqlh7pGvmbD+9zkXWQLlVR7xJaBb+KX/j41nXyX4iTqs7JEdojvT3kt/u7ZCW2TjbA==",
  8279. "type": "package",
  8280. "path": "System.Reflection.Extensions/4.3.0",
  8281. "files": [
  8282. "System.Reflection.Extensions.4.3.0.nupkg.sha512",
  8283. "System.Reflection.Extensions.nuspec",
  8284. "ThirdPartyNotices.txt",
  8285. "dotnet_library_license.txt",
  8286. "lib/MonoAndroid10/_._",
  8287. "lib/MonoTouch10/_._",
  8288. "lib/net45/_._",
  8289. "lib/portable-net45+win8+wp8+wpa81/_._",
  8290. "lib/win8/_._",
  8291. "lib/wp80/_._",
  8292. "lib/wpa81/_._",
  8293. "lib/xamarinios10/_._",
  8294. "lib/xamarinmac20/_._",
  8295. "lib/xamarintvos10/_._",
  8296. "lib/xamarinwatchos10/_._",
  8297. "ref/MonoAndroid10/_._",
  8298. "ref/MonoTouch10/_._",
  8299. "ref/net45/_._",
  8300. "ref/netcore50/System.Reflection.Extensions.dll",
  8301. "ref/netcore50/System.Reflection.Extensions.xml",
  8302. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8303. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8304. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8305. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8306. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8307. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8308. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8309. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8310. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8311. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8312. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8313. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8314. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8315. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8316. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8317. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8318. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8319. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8320. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8321. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8322. "ref/portable-net45+win8+wp8+wpa81/_._",
  8323. "ref/win8/_._",
  8324. "ref/wp80/_._",
  8325. "ref/wpa81/_._",
  8326. "ref/xamarinios10/_._",
  8327. "ref/xamarinmac20/_._",
  8328. "ref/xamarintvos10/_._",
  8329. "ref/xamarinwatchos10/_._"
  8330. ]
  8331. },
  8332. "System.Reflection.Metadata/1.4.1": {
  8333. "sha512": "tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==",
  8334. "type": "package",
  8335. "path": "System.Reflection.Metadata/1.4.1",
  8336. "files": [
  8337. "System.Reflection.Metadata.1.4.1.nupkg.sha512",
  8338. "System.Reflection.Metadata.nuspec",
  8339. "ThirdPartyNotices.txt",
  8340. "dotnet_library_license.txt",
  8341. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  8342. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  8343. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  8344. "lib/portable-net45+win8/System.Reflection.Metadata.xml"
  8345. ]
  8346. },
  8347. "System.Reflection.Primitives/4.3.0": {
  8348. "sha512": "nOjHLSGyMAcNd4KHC6+VQguBjVfSJ/GiGfofmVRvctMB/nZPFuc1ttpa7VUf2Jjae44fOQFgr1omhbKOGykaQA==",
  8349. "type": "package",
  8350. "path": "System.Reflection.Primitives/4.3.0",
  8351. "files": [
  8352. "System.Reflection.Primitives.4.3.0.nupkg.sha512",
  8353. "System.Reflection.Primitives.nuspec",
  8354. "ThirdPartyNotices.txt",
  8355. "dotnet_library_license.txt",
  8356. "lib/MonoAndroid10/_._",
  8357. "lib/MonoTouch10/_._",
  8358. "lib/net45/_._",
  8359. "lib/portable-net45+win8+wp8+wpa81/_._",
  8360. "lib/win8/_._",
  8361. "lib/wp80/_._",
  8362. "lib/wpa81/_._",
  8363. "lib/xamarinios10/_._",
  8364. "lib/xamarinmac20/_._",
  8365. "lib/xamarintvos10/_._",
  8366. "lib/xamarinwatchos10/_._",
  8367. "ref/MonoAndroid10/_._",
  8368. "ref/MonoTouch10/_._",
  8369. "ref/net45/_._",
  8370. "ref/netcore50/System.Reflection.Primitives.dll",
  8371. "ref/netcore50/System.Reflection.Primitives.xml",
  8372. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8373. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8374. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8375. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8376. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8377. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8378. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8379. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8380. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8381. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8382. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8383. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8384. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8385. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8386. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8387. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8388. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8389. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8390. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8391. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8392. "ref/portable-net45+win8+wp8+wpa81/_._",
  8393. "ref/win8/_._",
  8394. "ref/wp80/_._",
  8395. "ref/wpa81/_._",
  8396. "ref/xamarinios10/_._",
  8397. "ref/xamarinmac20/_._",
  8398. "ref/xamarintvos10/_._",
  8399. "ref/xamarinwatchos10/_._"
  8400. ]
  8401. },
  8402. "System.Reflection.TypeExtensions/4.3.0": {
  8403. "sha512": "mBE8znhdqUyHut5iu/mvMPzh0QWkWimCvddJso+6nqOmbte4XHEY1nzDw9uUW52F6NrueuD2lgx6aY+IY+l2pA==",
  8404. "type": "package",
  8405. "path": "System.Reflection.TypeExtensions/4.3.0",
  8406. "files": [
  8407. "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
  8408. "System.Reflection.TypeExtensions.nuspec",
  8409. "ThirdPartyNotices.txt",
  8410. "dotnet_library_license.txt",
  8411. "lib/MonoAndroid10/_._",
  8412. "lib/MonoTouch10/_._",
  8413. "lib/net46/System.Reflection.TypeExtensions.dll",
  8414. "lib/net462/System.Reflection.TypeExtensions.dll",
  8415. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8416. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8417. "lib/xamarinios10/_._",
  8418. "lib/xamarinmac20/_._",
  8419. "lib/xamarintvos10/_._",
  8420. "lib/xamarinwatchos10/_._",
  8421. "ref/MonoAndroid10/_._",
  8422. "ref/MonoTouch10/_._",
  8423. "ref/net46/System.Reflection.TypeExtensions.dll",
  8424. "ref/net462/System.Reflection.TypeExtensions.dll",
  8425. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8426. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8427. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8428. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8429. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8430. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8431. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8432. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8433. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8434. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8435. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8436. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8437. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8438. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8439. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8440. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8441. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8442. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8443. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8444. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8445. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8446. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8447. "ref/xamarinios10/_._",
  8448. "ref/xamarinmac20/_._",
  8449. "ref/xamarintvos10/_._",
  8450. "ref/xamarinwatchos10/_._",
  8451. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
  8452. ]
  8453. },
  8454. "System.Resources.Reader/4.3.0": {
  8455. "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
  8456. "type": "package",
  8457. "path": "System.Resources.Reader/4.3.0",
  8458. "files": [
  8459. "System.Resources.Reader.4.3.0.nupkg.sha512",
  8460. "System.Resources.Reader.nuspec",
  8461. "ThirdPartyNotices.txt",
  8462. "dotnet_library_license.txt",
  8463. "lib/netstandard1.0/System.Resources.Reader.dll"
  8464. ]
  8465. },
  8466. "System.Resources.ResourceManager/4.3.0": {
  8467. "sha512": "R8JNBwxjGxZCaEPmMDCPXGS7nBjqBc3IZStpfGu1HfZVIvT0i52z9hnH2krhYUYRRt9ZVxSxdkIuDsw5ECd+Ow==",
  8468. "type": "package",
  8469. "path": "System.Resources.ResourceManager/4.3.0",
  8470. "files": [
  8471. "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
  8472. "System.Resources.ResourceManager.nuspec",
  8473. "ThirdPartyNotices.txt",
  8474. "dotnet_library_license.txt",
  8475. "lib/MonoAndroid10/_._",
  8476. "lib/MonoTouch10/_._",
  8477. "lib/net45/_._",
  8478. "lib/portable-net45+win8+wp8+wpa81/_._",
  8479. "lib/win8/_._",
  8480. "lib/wp80/_._",
  8481. "lib/wpa81/_._",
  8482. "lib/xamarinios10/_._",
  8483. "lib/xamarinmac20/_._",
  8484. "lib/xamarintvos10/_._",
  8485. "lib/xamarinwatchos10/_._",
  8486. "ref/MonoAndroid10/_._",
  8487. "ref/MonoTouch10/_._",
  8488. "ref/net45/_._",
  8489. "ref/netcore50/System.Resources.ResourceManager.dll",
  8490. "ref/netcore50/System.Resources.ResourceManager.xml",
  8491. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8492. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8493. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8494. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8495. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8496. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8497. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8498. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8499. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8500. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8501. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8502. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8503. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8504. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8505. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8506. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8507. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8508. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8509. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8510. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8511. "ref/portable-net45+win8+wp8+wpa81/_._",
  8512. "ref/win8/_._",
  8513. "ref/wp80/_._",
  8514. "ref/wpa81/_._",
  8515. "ref/xamarinios10/_._",
  8516. "ref/xamarinmac20/_._",
  8517. "ref/xamarintvos10/_._",
  8518. "ref/xamarinwatchos10/_._"
  8519. ]
  8520. },
  8521. "System.Runtime/4.3.0": {
  8522. "sha512": "GInOqt4B5f1RrcK10DwaNUZff0zDSZ2/wcHKA3SLTpwKEMZ6RT0NG4OYfT/y6rwvZ2PnJgT6U/lfzkX2wDlH4A==",
  8523. "type": "package",
  8524. "path": "System.Runtime/4.3.0",
  8525. "files": [
  8526. "System.Runtime.4.3.0.nupkg.sha512",
  8527. "System.Runtime.nuspec",
  8528. "ThirdPartyNotices.txt",
  8529. "dotnet_library_license.txt",
  8530. "lib/MonoAndroid10/_._",
  8531. "lib/MonoTouch10/_._",
  8532. "lib/net45/_._",
  8533. "lib/net462/System.Runtime.dll",
  8534. "lib/portable-net45+win8+wp80+wpa81/_._",
  8535. "lib/win8/_._",
  8536. "lib/wp80/_._",
  8537. "lib/wpa81/_._",
  8538. "lib/xamarinios10/_._",
  8539. "lib/xamarinmac20/_._",
  8540. "lib/xamarintvos10/_._",
  8541. "lib/xamarinwatchos10/_._",
  8542. "ref/MonoAndroid10/_._",
  8543. "ref/MonoTouch10/_._",
  8544. "ref/net45/_._",
  8545. "ref/net462/System.Runtime.dll",
  8546. "ref/netcore50/System.Runtime.dll",
  8547. "ref/netcore50/System.Runtime.xml",
  8548. "ref/netcore50/de/System.Runtime.xml",
  8549. "ref/netcore50/es/System.Runtime.xml",
  8550. "ref/netcore50/fr/System.Runtime.xml",
  8551. "ref/netcore50/it/System.Runtime.xml",
  8552. "ref/netcore50/ja/System.Runtime.xml",
  8553. "ref/netcore50/ko/System.Runtime.xml",
  8554. "ref/netcore50/ru/System.Runtime.xml",
  8555. "ref/netcore50/zh-hans/System.Runtime.xml",
  8556. "ref/netcore50/zh-hant/System.Runtime.xml",
  8557. "ref/netstandard1.0/System.Runtime.dll",
  8558. "ref/netstandard1.0/System.Runtime.xml",
  8559. "ref/netstandard1.0/de/System.Runtime.xml",
  8560. "ref/netstandard1.0/es/System.Runtime.xml",
  8561. "ref/netstandard1.0/fr/System.Runtime.xml",
  8562. "ref/netstandard1.0/it/System.Runtime.xml",
  8563. "ref/netstandard1.0/ja/System.Runtime.xml",
  8564. "ref/netstandard1.0/ko/System.Runtime.xml",
  8565. "ref/netstandard1.0/ru/System.Runtime.xml",
  8566. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8567. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8568. "ref/netstandard1.2/System.Runtime.dll",
  8569. "ref/netstandard1.2/System.Runtime.xml",
  8570. "ref/netstandard1.2/de/System.Runtime.xml",
  8571. "ref/netstandard1.2/es/System.Runtime.xml",
  8572. "ref/netstandard1.2/fr/System.Runtime.xml",
  8573. "ref/netstandard1.2/it/System.Runtime.xml",
  8574. "ref/netstandard1.2/ja/System.Runtime.xml",
  8575. "ref/netstandard1.2/ko/System.Runtime.xml",
  8576. "ref/netstandard1.2/ru/System.Runtime.xml",
  8577. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8578. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8579. "ref/netstandard1.3/System.Runtime.dll",
  8580. "ref/netstandard1.3/System.Runtime.xml",
  8581. "ref/netstandard1.3/de/System.Runtime.xml",
  8582. "ref/netstandard1.3/es/System.Runtime.xml",
  8583. "ref/netstandard1.3/fr/System.Runtime.xml",
  8584. "ref/netstandard1.3/it/System.Runtime.xml",
  8585. "ref/netstandard1.3/ja/System.Runtime.xml",
  8586. "ref/netstandard1.3/ko/System.Runtime.xml",
  8587. "ref/netstandard1.3/ru/System.Runtime.xml",
  8588. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8589. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8590. "ref/netstandard1.5/System.Runtime.dll",
  8591. "ref/netstandard1.5/System.Runtime.xml",
  8592. "ref/netstandard1.5/de/System.Runtime.xml",
  8593. "ref/netstandard1.5/es/System.Runtime.xml",
  8594. "ref/netstandard1.5/fr/System.Runtime.xml",
  8595. "ref/netstandard1.5/it/System.Runtime.xml",
  8596. "ref/netstandard1.5/ja/System.Runtime.xml",
  8597. "ref/netstandard1.5/ko/System.Runtime.xml",
  8598. "ref/netstandard1.5/ru/System.Runtime.xml",
  8599. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8600. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8601. "ref/portable-net45+win8+wp80+wpa81/_._",
  8602. "ref/win8/_._",
  8603. "ref/wp80/_._",
  8604. "ref/wpa81/_._",
  8605. "ref/xamarinios10/_._",
  8606. "ref/xamarinmac20/_._",
  8607. "ref/xamarintvos10/_._",
  8608. "ref/xamarinwatchos10/_._"
  8609. ]
  8610. },
  8611. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  8612. "sha512": "xhacsojOHYwPbRPNwT1bqhaXp1p4eMuctUXrOwL25kHrs3HIT6MK5EzazfbshWDKv5d3je6Dha9zChGhPMNjTA==",
  8613. "type": "package",
  8614. "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
  8615. "files": [
  8616. "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
  8617. "System.Runtime.CompilerServices.Unsafe.nuspec",
  8618. "ThirdPartyNotices.txt",
  8619. "dotnet_library_license.txt",
  8620. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8621. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
  8622. ]
  8623. },
  8624. "System.Runtime.Extensions/4.3.0": {
  8625. "sha512": "N8FTfVQk8FkB/VM8jwi/m5L/i6VOilcNjRLGO99MobplmUqy8nhh8Wnfy2nM3jwOdSXjcA2ypZ9hoZl4bOI9QQ==",
  8626. "type": "package",
  8627. "path": "System.Runtime.Extensions/4.3.0",
  8628. "files": [
  8629. "System.Runtime.Extensions.4.3.0.nupkg.sha512",
  8630. "System.Runtime.Extensions.nuspec",
  8631. "ThirdPartyNotices.txt",
  8632. "dotnet_library_license.txt",
  8633. "lib/MonoAndroid10/_._",
  8634. "lib/MonoTouch10/_._",
  8635. "lib/net45/_._",
  8636. "lib/net462/System.Runtime.Extensions.dll",
  8637. "lib/portable-net45+win8+wp8+wpa81/_._",
  8638. "lib/win8/_._",
  8639. "lib/wp80/_._",
  8640. "lib/wpa81/_._",
  8641. "lib/xamarinios10/_._",
  8642. "lib/xamarinmac20/_._",
  8643. "lib/xamarintvos10/_._",
  8644. "lib/xamarinwatchos10/_._",
  8645. "ref/MonoAndroid10/_._",
  8646. "ref/MonoTouch10/_._",
  8647. "ref/net45/_._",
  8648. "ref/net462/System.Runtime.Extensions.dll",
  8649. "ref/netcore50/System.Runtime.Extensions.dll",
  8650. "ref/netcore50/System.Runtime.Extensions.xml",
  8651. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8652. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8653. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8654. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8655. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8656. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8657. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8658. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8659. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8660. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8661. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8662. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8663. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8664. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8665. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8666. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8667. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8668. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8669. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8670. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8671. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8672. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8673. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8674. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8675. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8676. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8677. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8678. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8679. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8680. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8681. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8682. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8683. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8684. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8685. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8686. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8687. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8688. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8689. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8690. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8691. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8692. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8693. "ref/portable-net45+win8+wp8+wpa81/_._",
  8694. "ref/win8/_._",
  8695. "ref/wp80/_._",
  8696. "ref/wpa81/_._",
  8697. "ref/xamarinios10/_._",
  8698. "ref/xamarinmac20/_._",
  8699. "ref/xamarintvos10/_._",
  8700. "ref/xamarinwatchos10/_._"
  8701. ]
  8702. },
  8703. "System.Runtime.Handles/4.3.0": {
  8704. "sha512": "fGofPWaMaMt5S3smhLR2EIjTlpqjkVuc+5kuNaus0VcZrYNXTvjBwzgu5GXhOS59q5zUs8l2dtE2jzVzIlQCSg==",
  8705. "type": "package",
  8706. "path": "System.Runtime.Handles/4.3.0",
  8707. "files": [
  8708. "System.Runtime.Handles.4.3.0.nupkg.sha512",
  8709. "System.Runtime.Handles.nuspec",
  8710. "ThirdPartyNotices.txt",
  8711. "dotnet_library_license.txt",
  8712. "lib/MonoAndroid10/_._",
  8713. "lib/MonoTouch10/_._",
  8714. "lib/net46/_._",
  8715. "lib/xamarinios10/_._",
  8716. "lib/xamarinmac20/_._",
  8717. "lib/xamarintvos10/_._",
  8718. "lib/xamarinwatchos10/_._",
  8719. "ref/MonoAndroid10/_._",
  8720. "ref/MonoTouch10/_._",
  8721. "ref/net46/_._",
  8722. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8723. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8724. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8725. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8726. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8727. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8728. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8729. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8730. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8731. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8732. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8733. "ref/xamarinios10/_._",
  8734. "ref/xamarinmac20/_._",
  8735. "ref/xamarintvos10/_._",
  8736. "ref/xamarinwatchos10/_._"
  8737. ]
  8738. },
  8739. "System.Runtime.InteropServices/4.3.0": {
  8740. "sha512": "X0kW7e0Wq6inWIDDZhy0JfBAUHiJ+Z99LWLae54MUIMgby0pZuEaXziAd9dPsLOids04ft9ksIkLZrmDBHWHtA==",
  8741. "type": "package",
  8742. "path": "System.Runtime.InteropServices/4.3.0",
  8743. "files": [
  8744. "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
  8745. "System.Runtime.InteropServices.nuspec",
  8746. "ThirdPartyNotices.txt",
  8747. "dotnet_library_license.txt",
  8748. "lib/MonoAndroid10/_._",
  8749. "lib/MonoTouch10/_._",
  8750. "lib/net45/_._",
  8751. "lib/net462/System.Runtime.InteropServices.dll",
  8752. "lib/net463/System.Runtime.InteropServices.dll",
  8753. "lib/portable-net45+win8+wpa81/_._",
  8754. "lib/win8/_._",
  8755. "lib/wpa81/_._",
  8756. "lib/xamarinios10/_._",
  8757. "lib/xamarinmac20/_._",
  8758. "lib/xamarintvos10/_._",
  8759. "lib/xamarinwatchos10/_._",
  8760. "ref/MonoAndroid10/_._",
  8761. "ref/MonoTouch10/_._",
  8762. "ref/net45/_._",
  8763. "ref/net462/System.Runtime.InteropServices.dll",
  8764. "ref/net463/System.Runtime.InteropServices.dll",
  8765. "ref/netcore50/System.Runtime.InteropServices.dll",
  8766. "ref/netcore50/System.Runtime.InteropServices.xml",
  8767. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8768. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8769. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8770. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8771. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8772. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8773. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8774. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8775. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8776. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8777. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8778. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8779. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8780. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8781. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8782. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8783. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8784. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8785. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8786. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8787. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8788. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8789. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8790. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8791. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8792. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8793. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8794. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8795. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8796. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8797. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8798. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8799. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8800. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8801. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8802. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8803. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8804. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8805. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8806. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8807. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8808. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8809. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8810. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8811. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8812. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8813. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8814. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8815. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8816. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8817. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8818. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8819. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8820. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8821. "ref/portable-net45+win8+wpa81/_._",
  8822. "ref/win8/_._",
  8823. "ref/wpa81/_._",
  8824. "ref/xamarinios10/_._",
  8825. "ref/xamarinmac20/_._",
  8826. "ref/xamarintvos10/_._",
  8827. "ref/xamarinwatchos10/_._"
  8828. ]
  8829. },
  8830. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8831. "sha512": "eMlGhHMyby7s1jrGSus4vbAHQsigM6nmzenfJ9L/Lx42ZtvHMm69yWagPwVQ7vWEOcJoChHv93qMmvhrPNJ5jQ==",
  8832. "type": "package",
  8833. "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
  8834. "files": [
  8835. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  8836. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  8837. "ThirdPartyNotices.txt",
  8838. "dotnet_library_license.txt",
  8839. "lib/MonoAndroid10/_._",
  8840. "lib/MonoTouch10/_._",
  8841. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8842. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8843. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8844. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8845. "lib/xamarinios10/_._",
  8846. "lib/xamarinmac20/_._",
  8847. "lib/xamarintvos10/_._",
  8848. "lib/xamarinwatchos10/_._",
  8849. "ref/MonoAndroid10/_._",
  8850. "ref/MonoTouch10/_._",
  8851. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8852. "ref/xamarinios10/_._",
  8853. "ref/xamarinmac20/_._",
  8854. "ref/xamarintvos10/_._",
  8855. "ref/xamarinwatchos10/_._",
  8856. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8857. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8858. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8859. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8860. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  8861. ]
  8862. },
  8863. "System.Runtime.Loader/4.3.0": {
  8864. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8865. "type": "package",
  8866. "path": "System.Runtime.Loader/4.3.0",
  8867. "files": [
  8868. "System.Runtime.Loader.4.3.0.nupkg.sha512",
  8869. "System.Runtime.Loader.nuspec",
  8870. "ThirdPartyNotices.txt",
  8871. "dotnet_library_license.txt",
  8872. "lib/MonoAndroid10/_._",
  8873. "lib/MonoTouch10/_._",
  8874. "lib/net462/_._",
  8875. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8876. "lib/xamarinios10/_._",
  8877. "lib/xamarinmac20/_._",
  8878. "lib/xamarintvos10/_._",
  8879. "lib/xamarinwatchos10/_._",
  8880. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8881. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8882. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8883. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8884. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8885. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8886. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8887. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8888. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8889. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8890. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
  8891. ]
  8892. },
  8893. "System.Runtime.Numerics/4.3.0": {
  8894. "sha512": "5Fjob3agW1SpK9eFQq/ovw2gOaxTm3q8U4FvuP6il8G6fp7W5RDHZ9uSBmYtgP3XvK/W5c2clKeeZr1wNH9Z6Q==",
  8895. "type": "package",
  8896. "path": "System.Runtime.Numerics/4.3.0",
  8897. "files": [
  8898. "System.Runtime.Numerics.4.3.0.nupkg.sha512",
  8899. "System.Runtime.Numerics.nuspec",
  8900. "ThirdPartyNotices.txt",
  8901. "dotnet_library_license.txt",
  8902. "lib/MonoAndroid10/_._",
  8903. "lib/MonoTouch10/_._",
  8904. "lib/net45/_._",
  8905. "lib/netcore50/System.Runtime.Numerics.dll",
  8906. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8907. "lib/portable-net45+win8+wpa81/_._",
  8908. "lib/win8/_._",
  8909. "lib/wpa81/_._",
  8910. "lib/xamarinios10/_._",
  8911. "lib/xamarinmac20/_._",
  8912. "lib/xamarintvos10/_._",
  8913. "lib/xamarinwatchos10/_._",
  8914. "ref/MonoAndroid10/_._",
  8915. "ref/MonoTouch10/_._",
  8916. "ref/net45/_._",
  8917. "ref/netcore50/System.Runtime.Numerics.dll",
  8918. "ref/netcore50/System.Runtime.Numerics.xml",
  8919. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8920. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8921. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8922. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8923. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8924. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8925. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8926. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8927. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8928. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8929. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8930. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8931. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8932. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8933. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8934. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8935. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8936. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8937. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8938. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8939. "ref/portable-net45+win8+wpa81/_._",
  8940. "ref/win8/_._",
  8941. "ref/wpa81/_._",
  8942. "ref/xamarinios10/_._",
  8943. "ref/xamarinmac20/_._",
  8944. "ref/xamarintvos10/_._",
  8945. "ref/xamarinwatchos10/_._"
  8946. ]
  8947. },
  8948. "System.Runtime.Serialization.Primitives/4.3.0": {
  8949. "sha512": "2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==",
  8950. "type": "package",
  8951. "path": "System.Runtime.Serialization.Primitives/4.3.0",
  8952. "files": [
  8953. "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
  8954. "System.Runtime.Serialization.Primitives.nuspec",
  8955. "ThirdPartyNotices.txt",
  8956. "dotnet_library_license.txt",
  8957. "lib/MonoAndroid10/_._",
  8958. "lib/MonoTouch10/_._",
  8959. "lib/net45/_._",
  8960. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8961. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8962. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8963. "lib/portable-net45+win8+wp8+wpa81/_._",
  8964. "lib/win8/_._",
  8965. "lib/wp80/_._",
  8966. "lib/wpa81/_._",
  8967. "lib/xamarinios10/_._",
  8968. "lib/xamarinmac20/_._",
  8969. "lib/xamarintvos10/_._",
  8970. "lib/xamarinwatchos10/_._",
  8971. "ref/MonoAndroid10/_._",
  8972. "ref/MonoTouch10/_._",
  8973. "ref/net45/_._",
  8974. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8975. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8976. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8977. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8978. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8979. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8980. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8981. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8982. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8983. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8984. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8985. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8986. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8987. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8988. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8989. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8990. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8991. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8992. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8993. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8994. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8995. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8996. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8997. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8998. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8999. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  9000. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  9001. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  9002. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  9003. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  9004. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  9005. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  9006. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9007. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9008. "ref/portable-net45+win8+wp8+wpa81/_._",
  9009. "ref/win8/_._",
  9010. "ref/wp80/_._",
  9011. "ref/wpa81/_._",
  9012. "ref/xamarinios10/_._",
  9013. "ref/xamarinmac20/_._",
  9014. "ref/xamarintvos10/_._",
  9015. "ref/xamarinwatchos10/_._",
  9016. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
  9017. ]
  9018. },
  9019. "System.Security.Claims/4.3.0": {
  9020. "sha512": "BDVkWERVmVnPyN8sSb1YlY0vytaPaaPwLbNOF1cwP4wrCm9OY5z3UnOthja88Z99YrETiD4EFfOCYmDHE4AOOA==",
  9021. "type": "package",
  9022. "path": "System.Security.Claims/4.3.0",
  9023. "files": [
  9024. "System.Security.Claims.4.3.0.nupkg.sha512",
  9025. "System.Security.Claims.nuspec",
  9026. "ThirdPartyNotices.txt",
  9027. "dotnet_library_license.txt",
  9028. "lib/MonoAndroid10/_._",
  9029. "lib/MonoTouch10/_._",
  9030. "lib/net46/System.Security.Claims.dll",
  9031. "lib/netstandard1.3/System.Security.Claims.dll",
  9032. "lib/xamarinios10/_._",
  9033. "lib/xamarinmac20/_._",
  9034. "lib/xamarintvos10/_._",
  9035. "lib/xamarinwatchos10/_._",
  9036. "ref/MonoAndroid10/_._",
  9037. "ref/MonoTouch10/_._",
  9038. "ref/net46/System.Security.Claims.dll",
  9039. "ref/netstandard1.3/System.Security.Claims.dll",
  9040. "ref/netstandard1.3/System.Security.Claims.xml",
  9041. "ref/netstandard1.3/de/System.Security.Claims.xml",
  9042. "ref/netstandard1.3/es/System.Security.Claims.xml",
  9043. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  9044. "ref/netstandard1.3/it/System.Security.Claims.xml",
  9045. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  9046. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  9047. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  9048. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  9049. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  9050. "ref/xamarinios10/_._",
  9051. "ref/xamarinmac20/_._",
  9052. "ref/xamarintvos10/_._",
  9053. "ref/xamarinwatchos10/_._"
  9054. ]
  9055. },
  9056. "System.Security.Cryptography.Algorithms/4.3.0": {
  9057. "sha512": "prGZyzFDK1I5VldOlfO0SQsCDsd8iDFTonCB2AAeYsl1GKp8Zmi2uXC/yMfnv70xWWDx/SjcCc+uJ5s8MnvlHQ==",
  9058. "type": "package",
  9059. "path": "System.Security.Cryptography.Algorithms/4.3.0",
  9060. "files": [
  9061. "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
  9062. "System.Security.Cryptography.Algorithms.nuspec",
  9063. "ThirdPartyNotices.txt",
  9064. "dotnet_library_license.txt",
  9065. "lib/MonoAndroid10/_._",
  9066. "lib/MonoTouch10/_._",
  9067. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  9068. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  9069. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  9070. "lib/xamarinios10/_._",
  9071. "lib/xamarinmac20/_._",
  9072. "lib/xamarintvos10/_._",
  9073. "lib/xamarinwatchos10/_._",
  9074. "ref/MonoAndroid10/_._",
  9075. "ref/MonoTouch10/_._",
  9076. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  9077. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  9078. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  9079. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  9080. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  9081. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9082. "ref/xamarinios10/_._",
  9083. "ref/xamarinmac20/_._",
  9084. "ref/xamarintvos10/_._",
  9085. "ref/xamarinwatchos10/_._",
  9086. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9087. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9088. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  9089. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  9090. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  9091. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  9092. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
  9093. ]
  9094. },
  9095. "System.Security.Cryptography.Cng/4.3.0": {
  9096. "sha512": "blipAQpn9NAYtknm8Yhs9s6I12s0B0OPo3RAOGWxBQCjYMx8G72oNc3eNE9JQJgw/EV66kifIaF9oVLMxR8sQA==",
  9097. "type": "package",
  9098. "path": "System.Security.Cryptography.Cng/4.3.0",
  9099. "files": [
  9100. "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
  9101. "System.Security.Cryptography.Cng.nuspec",
  9102. "ThirdPartyNotices.txt",
  9103. "dotnet_library_license.txt",
  9104. "lib/net46/System.Security.Cryptography.Cng.dll",
  9105. "lib/net461/System.Security.Cryptography.Cng.dll",
  9106. "lib/net463/System.Security.Cryptography.Cng.dll",
  9107. "ref/net46/System.Security.Cryptography.Cng.dll",
  9108. "ref/net461/System.Security.Cryptography.Cng.dll",
  9109. "ref/net463/System.Security.Cryptography.Cng.dll",
  9110. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9111. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9112. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9113. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9114. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9115. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9116. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  9117. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9118. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
  9119. ]
  9120. },
  9121. "System.Security.Cryptography.Csp/4.3.0": {
  9122. "sha512": "yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==",
  9123. "type": "package",
  9124. "path": "System.Security.Cryptography.Csp/4.3.0",
  9125. "files": [
  9126. "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
  9127. "System.Security.Cryptography.Csp.nuspec",
  9128. "ThirdPartyNotices.txt",
  9129. "dotnet_library_license.txt",
  9130. "lib/MonoAndroid10/_._",
  9131. "lib/MonoTouch10/_._",
  9132. "lib/net46/System.Security.Cryptography.Csp.dll",
  9133. "lib/xamarinios10/_._",
  9134. "lib/xamarinmac20/_._",
  9135. "lib/xamarintvos10/_._",
  9136. "lib/xamarinwatchos10/_._",
  9137. "ref/MonoAndroid10/_._",
  9138. "ref/MonoTouch10/_._",
  9139. "ref/net46/System.Security.Cryptography.Csp.dll",
  9140. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9141. "ref/xamarinios10/_._",
  9142. "ref/xamarinmac20/_._",
  9143. "ref/xamarintvos10/_._",
  9144. "ref/xamarinwatchos10/_._",
  9145. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9146. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9147. "runtimes/win/lib/netcore50/_._",
  9148. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
  9149. ]
  9150. },
  9151. "System.Security.Cryptography.Encoding/4.3.0": {
  9152. "sha512": "Lkf2ulpcKgt3Afd/IVRTpqN6QTz7tKWmDOnDj3pVp1fVK2EcH7Ma326DKHyyU2rvmh0YcwRoYEO95PS5bIeT+w==",
  9153. "type": "package",
  9154. "path": "System.Security.Cryptography.Encoding/4.3.0",
  9155. "files": [
  9156. "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
  9157. "System.Security.Cryptography.Encoding.nuspec",
  9158. "ThirdPartyNotices.txt",
  9159. "dotnet_library_license.txt",
  9160. "lib/MonoAndroid10/_._",
  9161. "lib/MonoTouch10/_._",
  9162. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9163. "lib/xamarinios10/_._",
  9164. "lib/xamarinmac20/_._",
  9165. "lib/xamarintvos10/_._",
  9166. "lib/xamarinwatchos10/_._",
  9167. "ref/MonoAndroid10/_._",
  9168. "ref/MonoTouch10/_._",
  9169. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9170. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9171. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9172. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9173. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9174. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9175. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9176. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9177. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9178. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9179. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9180. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9181. "ref/xamarinios10/_._",
  9182. "ref/xamarinmac20/_._",
  9183. "ref/xamarintvos10/_._",
  9184. "ref/xamarinwatchos10/_._",
  9185. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9186. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9187. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
  9188. ]
  9189. },
  9190. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9191. "sha512": "vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==",
  9192. "type": "package",
  9193. "path": "System.Security.Cryptography.OpenSsl/4.3.0",
  9194. "files": [
  9195. "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  9196. "System.Security.Cryptography.OpenSsl.nuspec",
  9197. "ThirdPartyNotices.txt",
  9198. "dotnet_library_license.txt",
  9199. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9200. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9201. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
  9202. ]
  9203. },
  9204. "System.Security.Cryptography.Primitives/4.3.0": {
  9205. "sha512": "5sASQ/lka08PqSjlteeKYrpLf9tbtaFSVc3HgPCM4gbVXykM6rW7aZRaQQihKhvXLFE4mL/+NMtls3YwMc8srQ==",
  9206. "type": "package",
  9207. "path": "System.Security.Cryptography.Primitives/4.3.0",
  9208. "files": [
  9209. "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
  9210. "System.Security.Cryptography.Primitives.nuspec",
  9211. "ThirdPartyNotices.txt",
  9212. "dotnet_library_license.txt",
  9213. "lib/MonoAndroid10/_._",
  9214. "lib/MonoTouch10/_._",
  9215. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9216. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9217. "lib/xamarinios10/_._",
  9218. "lib/xamarinmac20/_._",
  9219. "lib/xamarintvos10/_._",
  9220. "lib/xamarinwatchos10/_._",
  9221. "ref/MonoAndroid10/_._",
  9222. "ref/MonoTouch10/_._",
  9223. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9224. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9225. "ref/xamarinios10/_._",
  9226. "ref/xamarinmac20/_._",
  9227. "ref/xamarintvos10/_._",
  9228. "ref/xamarinwatchos10/_._"
  9229. ]
  9230. },
  9231. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9232. "sha512": "F5wSRdv3QJe4Di/CL6AsW3CQkc0d7RLv8LOn2XubpvszI3zl239pnvGCM7YDS8S8UKtwDJByVXUfHQG/kW3zjQ==",
  9233. "type": "package",
  9234. "path": "System.Security.Cryptography.X509Certificates/4.3.0",
  9235. "files": [
  9236. "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
  9237. "System.Security.Cryptography.X509Certificates.nuspec",
  9238. "ThirdPartyNotices.txt",
  9239. "dotnet_library_license.txt",
  9240. "lib/MonoAndroid10/_._",
  9241. "lib/MonoTouch10/_._",
  9242. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9243. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9244. "lib/xamarinios10/_._",
  9245. "lib/xamarinmac20/_._",
  9246. "lib/xamarintvos10/_._",
  9247. "lib/xamarinwatchos10/_._",
  9248. "ref/MonoAndroid10/_._",
  9249. "ref/MonoTouch10/_._",
  9250. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9251. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9252. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9253. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9254. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9255. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9256. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9257. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9258. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9259. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9260. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9261. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9262. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9263. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9264. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9265. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9266. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9267. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9268. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9269. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9270. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9271. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9272. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9273. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9274. "ref/xamarinios10/_._",
  9275. "ref/xamarinmac20/_._",
  9276. "ref/xamarintvos10/_._",
  9277. "ref/xamarinwatchos10/_._",
  9278. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9279. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9280. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9281. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9282. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
  9283. ]
  9284. },
  9285. "System.Security.Principal/4.3.0": {
  9286. "sha512": "BMPnm8H2BmIxPAnACPKFXxkePsag2Wyto/qWZnvlSxBxAC9HNyx2Bp9+XNTg/HqfjG42ZrR4fXLZ/p9tbkrW8A==",
  9287. "type": "package",
  9288. "path": "System.Security.Principal/4.3.0",
  9289. "files": [
  9290. "System.Security.Principal.4.3.0.nupkg.sha512",
  9291. "System.Security.Principal.nuspec",
  9292. "ThirdPartyNotices.txt",
  9293. "dotnet_library_license.txt",
  9294. "lib/MonoAndroid10/_._",
  9295. "lib/MonoTouch10/_._",
  9296. "lib/net45/_._",
  9297. "lib/netcore50/System.Security.Principal.dll",
  9298. "lib/netstandard1.0/System.Security.Principal.dll",
  9299. "lib/portable-net45+win8+wp8+wpa81/_._",
  9300. "lib/win8/_._",
  9301. "lib/wp80/_._",
  9302. "lib/wpa81/_._",
  9303. "lib/xamarinios10/_._",
  9304. "lib/xamarinmac20/_._",
  9305. "lib/xamarintvos10/_._",
  9306. "lib/xamarinwatchos10/_._",
  9307. "ref/MonoAndroid10/_._",
  9308. "ref/MonoTouch10/_._",
  9309. "ref/net45/_._",
  9310. "ref/netcore50/System.Security.Principal.dll",
  9311. "ref/netcore50/System.Security.Principal.xml",
  9312. "ref/netcore50/de/System.Security.Principal.xml",
  9313. "ref/netcore50/es/System.Security.Principal.xml",
  9314. "ref/netcore50/fr/System.Security.Principal.xml",
  9315. "ref/netcore50/it/System.Security.Principal.xml",
  9316. "ref/netcore50/ja/System.Security.Principal.xml",
  9317. "ref/netcore50/ko/System.Security.Principal.xml",
  9318. "ref/netcore50/ru/System.Security.Principal.xml",
  9319. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9320. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9321. "ref/netstandard1.0/System.Security.Principal.dll",
  9322. "ref/netstandard1.0/System.Security.Principal.xml",
  9323. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9324. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9325. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9326. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9327. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9328. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9329. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9330. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9331. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9332. "ref/portable-net45+win8+wp8+wpa81/_._",
  9333. "ref/win8/_._",
  9334. "ref/wp80/_._",
  9335. "ref/wpa81/_._",
  9336. "ref/xamarinios10/_._",
  9337. "ref/xamarinmac20/_._",
  9338. "ref/xamarintvos10/_._",
  9339. "ref/xamarinwatchos10/_._"
  9340. ]
  9341. },
  9342. "System.Security.Principal.Windows/4.3.0": {
  9343. "sha512": "38zo3OMmOoR5twVinKjl7h+FljejIk8px70zq39GZ+RH2kKDDFNVK1YFDBSdOjqohNYslgidZuXoWLdB3e7hsw==",
  9344. "type": "package",
  9345. "path": "System.Security.Principal.Windows/4.3.0",
  9346. "files": [
  9347. "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
  9348. "System.Security.Principal.Windows.nuspec",
  9349. "ThirdPartyNotices.txt",
  9350. "dotnet_library_license.txt",
  9351. "lib/net46/System.Security.Principal.Windows.dll",
  9352. "ref/net46/System.Security.Principal.Windows.dll",
  9353. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9354. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9355. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9356. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9357. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9358. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9359. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9360. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9361. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9362. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9363. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9364. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9365. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9366. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
  9367. ]
  9368. },
  9369. "System.Text.Encoding/4.3.0": {
  9370. "sha512": "+iP02U89BqFB39pJ0wLsWT0lHFj5ccVv4+ruGvIdjl2FamD6qC07ngrw07tQF7PTVOmsuq5XN28Q+TRF5scLEQ==",
  9371. "type": "package",
  9372. "path": "System.Text.Encoding/4.3.0",
  9373. "files": [
  9374. "System.Text.Encoding.4.3.0.nupkg.sha512",
  9375. "System.Text.Encoding.nuspec",
  9376. "ThirdPartyNotices.txt",
  9377. "dotnet_library_license.txt",
  9378. "lib/MonoAndroid10/_._",
  9379. "lib/MonoTouch10/_._",
  9380. "lib/net45/_._",
  9381. "lib/portable-net45+win8+wp8+wpa81/_._",
  9382. "lib/win8/_._",
  9383. "lib/wp80/_._",
  9384. "lib/wpa81/_._",
  9385. "lib/xamarinios10/_._",
  9386. "lib/xamarinmac20/_._",
  9387. "lib/xamarintvos10/_._",
  9388. "lib/xamarinwatchos10/_._",
  9389. "ref/MonoAndroid10/_._",
  9390. "ref/MonoTouch10/_._",
  9391. "ref/net45/_._",
  9392. "ref/netcore50/System.Text.Encoding.dll",
  9393. "ref/netcore50/System.Text.Encoding.xml",
  9394. "ref/netcore50/de/System.Text.Encoding.xml",
  9395. "ref/netcore50/es/System.Text.Encoding.xml",
  9396. "ref/netcore50/fr/System.Text.Encoding.xml",
  9397. "ref/netcore50/it/System.Text.Encoding.xml",
  9398. "ref/netcore50/ja/System.Text.Encoding.xml",
  9399. "ref/netcore50/ko/System.Text.Encoding.xml",
  9400. "ref/netcore50/ru/System.Text.Encoding.xml",
  9401. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9402. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9403. "ref/netstandard1.0/System.Text.Encoding.dll",
  9404. "ref/netstandard1.0/System.Text.Encoding.xml",
  9405. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9406. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9407. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9408. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9409. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9410. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9411. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9412. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9413. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9414. "ref/netstandard1.3/System.Text.Encoding.dll",
  9415. "ref/netstandard1.3/System.Text.Encoding.xml",
  9416. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9417. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9418. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9419. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9420. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9421. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9422. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9423. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9424. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9425. "ref/portable-net45+win8+wp8+wpa81/_._",
  9426. "ref/win8/_._",
  9427. "ref/wp80/_._",
  9428. "ref/wpa81/_._",
  9429. "ref/xamarinios10/_._",
  9430. "ref/xamarinmac20/_._",
  9431. "ref/xamarintvos10/_._",
  9432. "ref/xamarinwatchos10/_._"
  9433. ]
  9434. },
  9435. "System.Text.Encoding.CodePages/4.0.1": {
  9436. "sha512": "+PUTo8pGLNuvG6zDKJswAnVUPMS4XBROyqeFvpEueyYFrim+cprnmo2zEXZZe6Enakf75umMThjinrH/qH2Y4A==",
  9437. "type": "package",
  9438. "path": "System.Text.Encoding.CodePages/4.0.1",
  9439. "files": [
  9440. "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
  9441. "System.Text.Encoding.CodePages.nuspec",
  9442. "ThirdPartyNotices.txt",
  9443. "dotnet_library_license.txt",
  9444. "lib/MonoAndroid10/_._",
  9445. "lib/MonoTouch10/_._",
  9446. "lib/net46/System.Text.Encoding.CodePages.dll",
  9447. "lib/xamarinios10/_._",
  9448. "lib/xamarinmac20/_._",
  9449. "lib/xamarintvos10/_._",
  9450. "lib/xamarinwatchos10/_._",
  9451. "ref/MonoAndroid10/_._",
  9452. "ref/MonoTouch10/_._",
  9453. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9454. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  9455. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  9456. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  9457. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  9458. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  9459. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  9460. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  9461. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  9462. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  9463. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  9464. "ref/xamarinios10/_._",
  9465. "ref/xamarinmac20/_._",
  9466. "ref/xamarintvos10/_._",
  9467. "ref/xamarinwatchos10/_._",
  9468. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9469. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
  9470. ]
  9471. },
  9472. "System.Text.Encoding.Extensions/4.3.0": {
  9473. "sha512": "htlnmFmHyyJ3W33dYn7ryer4luJ7QUoFCL/b5/df3YnQC2coNDk97NEH8dKKHqhvi/ApAru8ddN8zzKPkTxAZQ==",
  9474. "type": "package",
  9475. "path": "System.Text.Encoding.Extensions/4.3.0",
  9476. "files": [
  9477. "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
  9478. "System.Text.Encoding.Extensions.nuspec",
  9479. "ThirdPartyNotices.txt",
  9480. "dotnet_library_license.txt",
  9481. "lib/MonoAndroid10/_._",
  9482. "lib/MonoTouch10/_._",
  9483. "lib/net45/_._",
  9484. "lib/portable-net45+win8+wp8+wpa81/_._",
  9485. "lib/win8/_._",
  9486. "lib/wp80/_._",
  9487. "lib/wpa81/_._",
  9488. "lib/xamarinios10/_._",
  9489. "lib/xamarinmac20/_._",
  9490. "lib/xamarintvos10/_._",
  9491. "lib/xamarinwatchos10/_._",
  9492. "ref/MonoAndroid10/_._",
  9493. "ref/MonoTouch10/_._",
  9494. "ref/net45/_._",
  9495. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9496. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9497. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9498. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9499. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9500. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9501. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9502. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9503. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9504. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9505. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9506. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9507. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9508. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9509. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9510. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9511. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9512. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9513. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9514. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9515. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9516. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9517. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9518. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9519. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9520. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9521. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9522. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9523. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9524. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9525. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9526. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9527. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9528. "ref/portable-net45+win8+wp8+wpa81/_._",
  9529. "ref/win8/_._",
  9530. "ref/wp80/_._",
  9531. "ref/wpa81/_._",
  9532. "ref/xamarinios10/_._",
  9533. "ref/xamarinmac20/_._",
  9534. "ref/xamarintvos10/_._",
  9535. "ref/xamarinwatchos10/_._"
  9536. ]
  9537. },
  9538. "System.Text.Encodings.Web/4.3.0": {
  9539. "sha512": "Yc1XficqB5ae0yuwAfO8I9dbVW/B0txYWGIhyq/XeJFwWcaSvjyBlRtcuZzpwMS3f57FYoO7EZP1bV16+iHk0A==",
  9540. "type": "package",
  9541. "path": "System.Text.Encodings.Web/4.3.0",
  9542. "files": [
  9543. "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
  9544. "System.Text.Encodings.Web.nuspec",
  9545. "ThirdPartyNotices.txt",
  9546. "dotnet_library_license.txt",
  9547. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9548. "lib/netstandard1.0/System.Text.Encodings.Web.xml"
  9549. ]
  9550. },
  9551. "System.Text.RegularExpressions/4.3.0": {
  9552. "sha512": "zmRmBA0opc1WBtIZBIbdhwnUeaT1JU6AUDjGzLeY6alHYGSSBxKCrCJNqbz4GE4k5CdfBE2XEpT8AeZd+XUXGQ==",
  9553. "type": "package",
  9554. "path": "System.Text.RegularExpressions/4.3.0",
  9555. "files": [
  9556. "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
  9557. "System.Text.RegularExpressions.nuspec",
  9558. "ThirdPartyNotices.txt",
  9559. "dotnet_library_license.txt",
  9560. "lib/MonoAndroid10/_._",
  9561. "lib/MonoTouch10/_._",
  9562. "lib/net45/_._",
  9563. "lib/net463/System.Text.RegularExpressions.dll",
  9564. "lib/netcore50/System.Text.RegularExpressions.dll",
  9565. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9566. "lib/portable-net45+win8+wp8+wpa81/_._",
  9567. "lib/win8/_._",
  9568. "lib/wp80/_._",
  9569. "lib/wpa81/_._",
  9570. "lib/xamarinios10/_._",
  9571. "lib/xamarinmac20/_._",
  9572. "lib/xamarintvos10/_._",
  9573. "lib/xamarinwatchos10/_._",
  9574. "ref/MonoAndroid10/_._",
  9575. "ref/MonoTouch10/_._",
  9576. "ref/net45/_._",
  9577. "ref/net463/System.Text.RegularExpressions.dll",
  9578. "ref/netcore50/System.Text.RegularExpressions.dll",
  9579. "ref/netcore50/System.Text.RegularExpressions.xml",
  9580. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9581. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9582. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9583. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9584. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9585. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9586. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9587. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9588. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9589. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9590. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9591. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9592. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9593. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9594. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9595. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9596. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9597. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9598. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9599. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9600. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9601. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9602. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9603. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9604. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9605. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9606. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9607. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9608. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9609. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9610. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9611. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9612. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9613. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9614. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9615. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9616. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9617. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9618. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9619. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9620. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9621. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9622. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9623. "ref/portable-net45+win8+wp8+wpa81/_._",
  9624. "ref/win8/_._",
  9625. "ref/wp80/_._",
  9626. "ref/wpa81/_._",
  9627. "ref/xamarinios10/_._",
  9628. "ref/xamarinmac20/_._",
  9629. "ref/xamarintvos10/_._",
  9630. "ref/xamarinwatchos10/_._"
  9631. ]
  9632. },
  9633. "System.Threading/4.3.0": {
  9634. "sha512": "/MayCVIEltqXBtXrPKVadskHubAE6SnOQpLvifR/dXEOPFRvvwJtVpwqiV101SdHSsJi9Mzb7bpHWMM0C5Hr9Q==",
  9635. "type": "package",
  9636. "path": "System.Threading/4.3.0",
  9637. "files": [
  9638. "System.Threading.4.3.0.nupkg.sha512",
  9639. "System.Threading.nuspec",
  9640. "ThirdPartyNotices.txt",
  9641. "dotnet_library_license.txt",
  9642. "lib/MonoAndroid10/_._",
  9643. "lib/MonoTouch10/_._",
  9644. "lib/net45/_._",
  9645. "lib/netcore50/System.Threading.dll",
  9646. "lib/netstandard1.3/System.Threading.dll",
  9647. "lib/portable-net45+win8+wp8+wpa81/_._",
  9648. "lib/win8/_._",
  9649. "lib/wp80/_._",
  9650. "lib/wpa81/_._",
  9651. "lib/xamarinios10/_._",
  9652. "lib/xamarinmac20/_._",
  9653. "lib/xamarintvos10/_._",
  9654. "lib/xamarinwatchos10/_._",
  9655. "ref/MonoAndroid10/_._",
  9656. "ref/MonoTouch10/_._",
  9657. "ref/net45/_._",
  9658. "ref/netcore50/System.Threading.dll",
  9659. "ref/netcore50/System.Threading.xml",
  9660. "ref/netcore50/de/System.Threading.xml",
  9661. "ref/netcore50/es/System.Threading.xml",
  9662. "ref/netcore50/fr/System.Threading.xml",
  9663. "ref/netcore50/it/System.Threading.xml",
  9664. "ref/netcore50/ja/System.Threading.xml",
  9665. "ref/netcore50/ko/System.Threading.xml",
  9666. "ref/netcore50/ru/System.Threading.xml",
  9667. "ref/netcore50/zh-hans/System.Threading.xml",
  9668. "ref/netcore50/zh-hant/System.Threading.xml",
  9669. "ref/netstandard1.0/System.Threading.dll",
  9670. "ref/netstandard1.0/System.Threading.xml",
  9671. "ref/netstandard1.0/de/System.Threading.xml",
  9672. "ref/netstandard1.0/es/System.Threading.xml",
  9673. "ref/netstandard1.0/fr/System.Threading.xml",
  9674. "ref/netstandard1.0/it/System.Threading.xml",
  9675. "ref/netstandard1.0/ja/System.Threading.xml",
  9676. "ref/netstandard1.0/ko/System.Threading.xml",
  9677. "ref/netstandard1.0/ru/System.Threading.xml",
  9678. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9679. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9680. "ref/netstandard1.3/System.Threading.dll",
  9681. "ref/netstandard1.3/System.Threading.xml",
  9682. "ref/netstandard1.3/de/System.Threading.xml",
  9683. "ref/netstandard1.3/es/System.Threading.xml",
  9684. "ref/netstandard1.3/fr/System.Threading.xml",
  9685. "ref/netstandard1.3/it/System.Threading.xml",
  9686. "ref/netstandard1.3/ja/System.Threading.xml",
  9687. "ref/netstandard1.3/ko/System.Threading.xml",
  9688. "ref/netstandard1.3/ru/System.Threading.xml",
  9689. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9690. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9691. "ref/portable-net45+win8+wp8+wpa81/_._",
  9692. "ref/win8/_._",
  9693. "ref/wp80/_._",
  9694. "ref/wpa81/_._",
  9695. "ref/xamarinios10/_._",
  9696. "ref/xamarinmac20/_._",
  9697. "ref/xamarintvos10/_._",
  9698. "ref/xamarinwatchos10/_._",
  9699. "runtimes/aot/lib/netcore50/System.Threading.dll"
  9700. ]
  9701. },
  9702. "System.Threading.Overlapped/4.3.0": {
  9703. "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
  9704. "type": "package",
  9705. "path": "System.Threading.Overlapped/4.3.0",
  9706. "files": [
  9707. "System.Threading.Overlapped.4.3.0.nupkg.sha512",
  9708. "System.Threading.Overlapped.nuspec",
  9709. "ThirdPartyNotices.txt",
  9710. "dotnet_library_license.txt",
  9711. "lib/net46/System.Threading.Overlapped.dll",
  9712. "ref/net46/System.Threading.Overlapped.dll",
  9713. "ref/netstandard1.3/System.Threading.Overlapped.dll",
  9714. "ref/netstandard1.3/System.Threading.Overlapped.xml",
  9715. "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
  9716. "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
  9717. "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
  9718. "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
  9719. "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
  9720. "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
  9721. "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
  9722. "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
  9723. "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
  9724. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
  9725. "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
  9726. "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
  9727. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
  9728. ]
  9729. },
  9730. "System.Threading.Tasks/4.3.0": {
  9731. "sha512": "3X5WUrc2NZmi2pV7HU3zivGrMUsuT3r0ToS/V+bmgNRV+vd+jUngFZqGRLAs6Xed/+MJO+sd2++3G3YA+kUvgg==",
  9732. "type": "package",
  9733. "path": "System.Threading.Tasks/4.3.0",
  9734. "files": [
  9735. "System.Threading.Tasks.4.3.0.nupkg.sha512",
  9736. "System.Threading.Tasks.nuspec",
  9737. "ThirdPartyNotices.txt",
  9738. "dotnet_library_license.txt",
  9739. "lib/MonoAndroid10/_._",
  9740. "lib/MonoTouch10/_._",
  9741. "lib/net45/_._",
  9742. "lib/portable-net45+win8+wp8+wpa81/_._",
  9743. "lib/win8/_._",
  9744. "lib/wp80/_._",
  9745. "lib/wpa81/_._",
  9746. "lib/xamarinios10/_._",
  9747. "lib/xamarinmac20/_._",
  9748. "lib/xamarintvos10/_._",
  9749. "lib/xamarinwatchos10/_._",
  9750. "ref/MonoAndroid10/_._",
  9751. "ref/MonoTouch10/_._",
  9752. "ref/net45/_._",
  9753. "ref/netcore50/System.Threading.Tasks.dll",
  9754. "ref/netcore50/System.Threading.Tasks.xml",
  9755. "ref/netcore50/de/System.Threading.Tasks.xml",
  9756. "ref/netcore50/es/System.Threading.Tasks.xml",
  9757. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9758. "ref/netcore50/it/System.Threading.Tasks.xml",
  9759. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9760. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9761. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9762. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9763. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9764. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9765. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9766. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9767. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9768. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9769. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9770. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9771. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9772. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9773. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9774. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9775. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9776. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9777. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9778. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9779. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9780. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9781. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9782. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9783. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9784. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9785. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9786. "ref/portable-net45+win8+wp8+wpa81/_._",
  9787. "ref/win8/_._",
  9788. "ref/wp80/_._",
  9789. "ref/wpa81/_._",
  9790. "ref/xamarinios10/_._",
  9791. "ref/xamarinmac20/_._",
  9792. "ref/xamarintvos10/_._",
  9793. "ref/xamarinwatchos10/_._"
  9794. ]
  9795. },
  9796. "System.Threading.Tasks.Dataflow/4.6.0": {
  9797. "sha512": "xoVYfOA5XE9dfmQeNewe/8fiuYLo9oyyCzDk/oKHfGXIzaezrwA6XfCjmLDiB6sOwglJJQrxyCJlXMVsi73f4A==",
  9798. "type": "package",
  9799. "path": "System.Threading.Tasks.Dataflow/4.6.0",
  9800. "files": [
  9801. "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
  9802. "System.Threading.Tasks.Dataflow.nuspec",
  9803. "ThirdPartyNotices.txt",
  9804. "dotnet_library_license.txt",
  9805. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
  9806. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
  9807. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
  9808. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
  9809. ]
  9810. },
  9811. "System.Threading.Tasks.Extensions/4.3.0": {
  9812. "sha512": "Fndgac424TbKeV2uY0TXopkg6/4WfcKT1+vYa9jCM0yrx7rJYOFx/yOYw7qoGijbyUtHxbo6ieRI3+23vhrgiA==",
  9813. "type": "package",
  9814. "path": "System.Threading.Tasks.Extensions/4.3.0",
  9815. "files": [
  9816. "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
  9817. "System.Threading.Tasks.Extensions.nuspec",
  9818. "ThirdPartyNotices.txt",
  9819. "dotnet_library_license.txt",
  9820. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9821. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9822. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9823. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
  9824. ]
  9825. },
  9826. "System.Threading.Tasks.Parallel/4.0.1": {
  9827. "sha512": "NeY1d7KYltSvSSYQX2FxqN/pktX0wb6urCRf3MjpbOPiRZhYBFjqCL2a8Pefgqls6np4r8ir8qA2WGZegqq3Bg==",
  9828. "type": "package",
  9829. "path": "System.Threading.Tasks.Parallel/4.0.1",
  9830. "files": [
  9831. "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
  9832. "System.Threading.Tasks.Parallel.nuspec",
  9833. "ThirdPartyNotices.txt",
  9834. "dotnet_library_license.txt",
  9835. "lib/MonoAndroid10/_._",
  9836. "lib/MonoTouch10/_._",
  9837. "lib/net45/_._",
  9838. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  9839. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  9840. "lib/portable-net45+win8+wpa81/_._",
  9841. "lib/win8/_._",
  9842. "lib/wpa81/_._",
  9843. "lib/xamarinios10/_._",
  9844. "lib/xamarinmac20/_._",
  9845. "lib/xamarintvos10/_._",
  9846. "lib/xamarinwatchos10/_._",
  9847. "ref/MonoAndroid10/_._",
  9848. "ref/MonoTouch10/_._",
  9849. "ref/net45/_._",
  9850. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  9851. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  9852. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  9853. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  9854. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  9855. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  9856. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  9857. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  9858. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  9859. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  9860. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  9861. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  9862. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  9863. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  9864. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  9865. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  9866. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  9867. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  9868. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  9869. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  9870. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  9871. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  9872. "ref/portable-net45+win8+wpa81/_._",
  9873. "ref/win8/_._",
  9874. "ref/wpa81/_._",
  9875. "ref/xamarinios10/_._",
  9876. "ref/xamarinmac20/_._",
  9877. "ref/xamarintvos10/_._",
  9878. "ref/xamarinwatchos10/_._"
  9879. ]
  9880. },
  9881. "System.Threading.Thread/4.3.0": {
  9882. "sha512": "OqHbGdnQAQzxS+nYWexRRrQUPq9QU5Mii/0GampwcAqOY3AzM5r9cDusiKj97cXsAlsZYYrRI+/xSsR0r1EFEw==",
  9883. "type": "package",
  9884. "path": "System.Threading.Thread/4.3.0",
  9885. "files": [
  9886. "System.Threading.Thread.4.3.0.nupkg.sha512",
  9887. "System.Threading.Thread.nuspec",
  9888. "ThirdPartyNotices.txt",
  9889. "dotnet_library_license.txt",
  9890. "lib/MonoAndroid10/_._",
  9891. "lib/MonoTouch10/_._",
  9892. "lib/net46/System.Threading.Thread.dll",
  9893. "lib/netcore50/_._",
  9894. "lib/netstandard1.3/System.Threading.Thread.dll",
  9895. "lib/xamarinios10/_._",
  9896. "lib/xamarinmac20/_._",
  9897. "lib/xamarintvos10/_._",
  9898. "lib/xamarinwatchos10/_._",
  9899. "ref/MonoAndroid10/_._",
  9900. "ref/MonoTouch10/_._",
  9901. "ref/net46/System.Threading.Thread.dll",
  9902. "ref/netstandard1.3/System.Threading.Thread.dll",
  9903. "ref/netstandard1.3/System.Threading.Thread.xml",
  9904. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9905. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9906. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9907. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9908. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9909. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9910. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9911. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9912. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9913. "ref/xamarinios10/_._",
  9914. "ref/xamarinmac20/_._",
  9915. "ref/xamarintvos10/_._",
  9916. "ref/xamarinwatchos10/_._"
  9917. ]
  9918. },
  9919. "System.Threading.ThreadPool/4.3.0": {
  9920. "sha512": "SrCOmTvvOOCmJT4BBxdZcwhz6XEMsjBGZvGSVorOxdCznaUNeVotEjDfXGIZ8gcGo00qgPbTV6puHDgcFYl6Iw==",
  9921. "type": "package",
  9922. "path": "System.Threading.ThreadPool/4.3.0",
  9923. "files": [
  9924. "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
  9925. "System.Threading.ThreadPool.nuspec",
  9926. "ThirdPartyNotices.txt",
  9927. "dotnet_library_license.txt",
  9928. "lib/MonoAndroid10/_._",
  9929. "lib/MonoTouch10/_._",
  9930. "lib/net46/System.Threading.ThreadPool.dll",
  9931. "lib/netcore50/_._",
  9932. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9933. "lib/xamarinios10/_._",
  9934. "lib/xamarinmac20/_._",
  9935. "lib/xamarintvos10/_._",
  9936. "lib/xamarinwatchos10/_._",
  9937. "ref/MonoAndroid10/_._",
  9938. "ref/MonoTouch10/_._",
  9939. "ref/net46/System.Threading.ThreadPool.dll",
  9940. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9941. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9942. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9943. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9944. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9945. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9946. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9947. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9948. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9949. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9950. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9951. "ref/xamarinios10/_._",
  9952. "ref/xamarinmac20/_._",
  9953. "ref/xamarintvos10/_._",
  9954. "ref/xamarinwatchos10/_._"
  9955. ]
  9956. },
  9957. "System.Threading.Timer/4.3.0": {
  9958. "sha512": "hoKRMGwOfTpSykA4CMiStPWmfIETJ6W6snKuqgHi1TZwnOdpCfXI5jkm2QEclcq04aVaqvd6/xkoXd8iObQpHw==",
  9959. "type": "package",
  9960. "path": "System.Threading.Timer/4.3.0",
  9961. "files": [
  9962. "System.Threading.Timer.4.3.0.nupkg.sha512",
  9963. "System.Threading.Timer.nuspec",
  9964. "ThirdPartyNotices.txt",
  9965. "dotnet_library_license.txt",
  9966. "lib/MonoAndroid10/_._",
  9967. "lib/MonoTouch10/_._",
  9968. "lib/net451/_._",
  9969. "lib/portable-net451+win81+wpa81/_._",
  9970. "lib/win81/_._",
  9971. "lib/wpa81/_._",
  9972. "lib/xamarinios10/_._",
  9973. "lib/xamarinmac20/_._",
  9974. "lib/xamarintvos10/_._",
  9975. "lib/xamarinwatchos10/_._",
  9976. "ref/MonoAndroid10/_._",
  9977. "ref/MonoTouch10/_._",
  9978. "ref/net451/_._",
  9979. "ref/netcore50/System.Threading.Timer.dll",
  9980. "ref/netcore50/System.Threading.Timer.xml",
  9981. "ref/netcore50/de/System.Threading.Timer.xml",
  9982. "ref/netcore50/es/System.Threading.Timer.xml",
  9983. "ref/netcore50/fr/System.Threading.Timer.xml",
  9984. "ref/netcore50/it/System.Threading.Timer.xml",
  9985. "ref/netcore50/ja/System.Threading.Timer.xml",
  9986. "ref/netcore50/ko/System.Threading.Timer.xml",
  9987. "ref/netcore50/ru/System.Threading.Timer.xml",
  9988. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9989. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9990. "ref/netstandard1.2/System.Threading.Timer.dll",
  9991. "ref/netstandard1.2/System.Threading.Timer.xml",
  9992. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9993. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9994. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9995. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9996. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9997. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9998. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9999. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10000. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10001. "ref/portable-net451+win81+wpa81/_._",
  10002. "ref/win81/_._",
  10003. "ref/wpa81/_._",
  10004. "ref/xamarinios10/_._",
  10005. "ref/xamarinmac20/_._",
  10006. "ref/xamarintvos10/_._",
  10007. "ref/xamarinwatchos10/_._"
  10008. ]
  10009. },
  10010. "System.Xml.ReaderWriter/4.3.0": {
  10011. "sha512": "f0HgI5Hp/jvkyqr1qldLrqps4+mjn6XHNoWQ1Cgj3L2paZUHq3fdRVU1NoEBYOByL/O6vXIS0D62MpyEC/Mhqw==",
  10012. "type": "package",
  10013. "path": "System.Xml.ReaderWriter/4.3.0",
  10014. "files": [
  10015. "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
  10016. "System.Xml.ReaderWriter.nuspec",
  10017. "ThirdPartyNotices.txt",
  10018. "dotnet_library_license.txt",
  10019. "lib/MonoAndroid10/_._",
  10020. "lib/MonoTouch10/_._",
  10021. "lib/net45/_._",
  10022. "lib/net46/System.Xml.ReaderWriter.dll",
  10023. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10024. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10025. "lib/portable-net45+win8+wp8+wpa81/_._",
  10026. "lib/win8/_._",
  10027. "lib/wp80/_._",
  10028. "lib/wpa81/_._",
  10029. "lib/xamarinios10/_._",
  10030. "lib/xamarinmac20/_._",
  10031. "lib/xamarintvos10/_._",
  10032. "lib/xamarinwatchos10/_._",
  10033. "ref/MonoAndroid10/_._",
  10034. "ref/MonoTouch10/_._",
  10035. "ref/net45/_._",
  10036. "ref/net46/System.Xml.ReaderWriter.dll",
  10037. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10038. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10039. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10040. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10041. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10042. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10043. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10044. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10045. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10046. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10047. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10048. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10049. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10050. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10051. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10052. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10053. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10054. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10055. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10056. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10057. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10058. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10059. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10060. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10061. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10062. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10063. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10064. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10065. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10066. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10067. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10068. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10069. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10070. "ref/portable-net45+win8+wp8+wpa81/_._",
  10071. "ref/win8/_._",
  10072. "ref/wp80/_._",
  10073. "ref/wpa81/_._",
  10074. "ref/xamarinios10/_._",
  10075. "ref/xamarinmac20/_._",
  10076. "ref/xamarintvos10/_._",
  10077. "ref/xamarinwatchos10/_._"
  10078. ]
  10079. },
  10080. "System.Xml.XDocument/4.3.0": {
  10081. "sha512": "x5+orDQBjivGFynvLXDJgkQSeF64z7GTA7EooyogRG8/8U67m7jhEFNf5bJPfQdJSmlgBEVKxsVH3uepJ4fmqA==",
  10082. "type": "package",
  10083. "path": "System.Xml.XDocument/4.3.0",
  10084. "files": [
  10085. "System.Xml.XDocument.4.3.0.nupkg.sha512",
  10086. "System.Xml.XDocument.nuspec",
  10087. "ThirdPartyNotices.txt",
  10088. "dotnet_library_license.txt",
  10089. "lib/MonoAndroid10/_._",
  10090. "lib/MonoTouch10/_._",
  10091. "lib/net45/_._",
  10092. "lib/netcore50/System.Xml.XDocument.dll",
  10093. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10094. "lib/portable-net45+win8+wp8+wpa81/_._",
  10095. "lib/win8/_._",
  10096. "lib/wp80/_._",
  10097. "lib/wpa81/_._",
  10098. "lib/xamarinios10/_._",
  10099. "lib/xamarinmac20/_._",
  10100. "lib/xamarintvos10/_._",
  10101. "lib/xamarinwatchos10/_._",
  10102. "ref/MonoAndroid10/_._",
  10103. "ref/MonoTouch10/_._",
  10104. "ref/net45/_._",
  10105. "ref/netcore50/System.Xml.XDocument.dll",
  10106. "ref/netcore50/System.Xml.XDocument.xml",
  10107. "ref/netcore50/de/System.Xml.XDocument.xml",
  10108. "ref/netcore50/es/System.Xml.XDocument.xml",
  10109. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10110. "ref/netcore50/it/System.Xml.XDocument.xml",
  10111. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10112. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10113. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10114. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10115. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10116. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10117. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10118. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10119. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10120. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10121. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10122. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10123. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10124. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10125. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10126. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10127. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10128. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10129. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10130. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10131. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10132. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10133. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10134. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10135. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10136. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10137. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10138. "ref/portable-net45+win8+wp8+wpa81/_._",
  10139. "ref/win8/_._",
  10140. "ref/wp80/_._",
  10141. "ref/wpa81/_._",
  10142. "ref/xamarinios10/_._",
  10143. "ref/xamarinmac20/_._",
  10144. "ref/xamarintvos10/_._",
  10145. "ref/xamarinwatchos10/_._"
  10146. ]
  10147. },
  10148. "System.Xml.XmlDocument/4.0.1": {
  10149. "sha512": "467a5tcqMHHaXMzG6aDXnsLSwJAmW7gHPeqOIbvXlQ/+hDRdbyFGXHe+npQ2tcYw138IRwynigPPuYnG57qwMQ==",
  10150. "type": "package",
  10151. "path": "System.Xml.XmlDocument/4.0.1",
  10152. "files": [
  10153. "System.Xml.XmlDocument.4.0.1.nupkg.sha512",
  10154. "System.Xml.XmlDocument.nuspec",
  10155. "ThirdPartyNotices.txt",
  10156. "dotnet_library_license.txt",
  10157. "lib/MonoAndroid10/_._",
  10158. "lib/MonoTouch10/_._",
  10159. "lib/net46/System.Xml.XmlDocument.dll",
  10160. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10161. "lib/xamarinios10/_._",
  10162. "lib/xamarinmac20/_._",
  10163. "lib/xamarintvos10/_._",
  10164. "lib/xamarinwatchos10/_._",
  10165. "ref/MonoAndroid10/_._",
  10166. "ref/MonoTouch10/_._",
  10167. "ref/net46/System.Xml.XmlDocument.dll",
  10168. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10169. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10170. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10171. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10172. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10173. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10174. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10175. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10176. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10177. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10178. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10179. "ref/xamarinios10/_._",
  10180. "ref/xamarinmac20/_._",
  10181. "ref/xamarintvos10/_._",
  10182. "ref/xamarinwatchos10/_._"
  10183. ]
  10184. },
  10185. "System.Xml.XPath/4.0.1": {
  10186. "sha512": "fNMrSYKz66pOCUqBLLmd3sBXCULopHsu78uU1NgMHn/SOMpXdYyIbfY+ed8O7WgzNrPDoxXXS5qxPDWagBBYWw==",
  10187. "type": "package",
  10188. "path": "System.Xml.XPath/4.0.1",
  10189. "files": [
  10190. "System.Xml.XPath.4.0.1.nupkg.sha512",
  10191. "System.Xml.XPath.nuspec",
  10192. "ThirdPartyNotices.txt",
  10193. "dotnet_library_license.txt",
  10194. "lib/MonoAndroid10/_._",
  10195. "lib/MonoTouch10/_._",
  10196. "lib/net46/System.Xml.XPath.dll",
  10197. "lib/netstandard1.3/System.Xml.XPath.dll",
  10198. "lib/xamarinios10/_._",
  10199. "lib/xamarinmac20/_._",
  10200. "lib/xamarintvos10/_._",
  10201. "lib/xamarinwatchos10/_._",
  10202. "ref/MonoAndroid10/_._",
  10203. "ref/MonoTouch10/_._",
  10204. "ref/net46/System.Xml.XPath.dll",
  10205. "ref/netstandard1.3/System.Xml.XPath.dll",
  10206. "ref/netstandard1.3/System.Xml.XPath.xml",
  10207. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  10208. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  10209. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  10210. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  10211. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  10212. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  10213. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  10214. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  10215. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  10216. "ref/xamarinios10/_._",
  10217. "ref/xamarinmac20/_._",
  10218. "ref/xamarintvos10/_._",
  10219. "ref/xamarinwatchos10/_._"
  10220. ]
  10221. },
  10222. "System.Xml.XPath.XDocument/4.0.1": {
  10223. "sha512": "M4noCUSSS3m/E9IwgkkdFA9dVeouBSP7jx4sozDLu2wm86R4zfhIsitSgfeuobLXZWEQ9AKZGLY7SmNaRGD4mA==",
  10224. "type": "package",
  10225. "path": "System.Xml.XPath.XDocument/4.0.1",
  10226. "files": [
  10227. "System.Xml.XPath.XDocument.4.0.1.nupkg.sha512",
  10228. "System.Xml.XPath.XDocument.nuspec",
  10229. "ThirdPartyNotices.txt",
  10230. "dotnet_library_license.txt",
  10231. "lib/MonoAndroid10/_._",
  10232. "lib/MonoTouch10/_._",
  10233. "lib/net46/System.Xml.XPath.XDocument.dll",
  10234. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  10235. "lib/xamarinios10/_._",
  10236. "lib/xamarinmac20/_._",
  10237. "lib/xamarintvos10/_._",
  10238. "lib/xamarinwatchos10/_._",
  10239. "ref/MonoAndroid10/_._",
  10240. "ref/MonoTouch10/_._",
  10241. "ref/net46/System.Xml.XPath.XDocument.dll",
  10242. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  10243. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  10244. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  10245. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  10246. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  10247. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  10248. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  10249. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  10250. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  10251. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  10252. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  10253. "ref/xamarinios10/_._",
  10254. "ref/xamarinmac20/_._",
  10255. "ref/xamarintvos10/_._",
  10256. "ref/xamarinwatchos10/_._"
  10257. ]
  10258. },
  10259. "Luticate2.Auth/1.0.0": {
  10260. "type": "project",
  10261. "path": "../Luticate2.Auth/project.json",
  10262. "msbuildProject": "../Luticate2.Auth/Luticate2.Auth.xproj"
  10263. },
  10264. "Luticate2.Utils/1.0.0": {
  10265. "type": "project",
  10266. "path": "../Luticate2.Utils/project.json",
  10267. "msbuildProject": "../Luticate2.Utils/Luticate2.Utils.xproj"
  10268. }
  10269. },
  10270. "projectFileDependencyGroups": {
  10271. "": [
  10272. "Luticate2.Auth >= 1.0.*",
  10273. "Microsoft.ApplicationInsights.AspNetCore >= 1.0.2",
  10274. "Microsoft.AspNetCore.Mvc >= 1.1.0",
  10275. "Microsoft.AspNetCore.Routing >= 1.1.0",
  10276. "Microsoft.AspNetCore.Server.IISIntegration >= 1.1.0",
  10277. "Microsoft.AspNetCore.Server.Kestrel >= 1.1.0",
  10278. "Microsoft.Extensions.Configuration.EnvironmentVariables >= 1.1.0",
  10279. "Microsoft.Extensions.Configuration.FileExtensions >= 1.1.0",
  10280. "Microsoft.Extensions.Configuration.Json >= 1.1.0",
  10281. "Microsoft.Extensions.Logging >= 1.1.0",
  10282. "Microsoft.Extensions.Logging.Console >= 1.1.0",
  10283. "Microsoft.Extensions.Logging.Debug >= 1.1.0",
  10284. "Microsoft.Extensions.Options.ConfigurationExtensions >= 1.1.0",
  10285. "Microsoft.NETCore.App >= 1.0.1"
  10286. ],
  10287. ".NETCoreApp,Version=v1.0": []
  10288. },
  10289. "tools": {
  10290. ".NETCoreApp,Version=v1.0": {
  10291. "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.0.0-preview2-final": {
  10292. "type": "package",
  10293. "dependencies": {
  10294. "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121",
  10295. "Microsoft.Extensions.CommandLineUtils": "1.0.0",
  10296. "Microsoft.NETCore.App": "1.0.0",
  10297. "System.Diagnostics.Process": "4.1.0"
  10298. },
  10299. "compile": {
  10300. "lib/netcoreapp1.0/dotnet-publish-iis.dll": {}
  10301. },
  10302. "runtime": {
  10303. "lib/netcoreapp1.0/dotnet-publish-iis.dll": {}
  10304. }
  10305. }
  10306. }
  10307. },
  10308. "projectFileToolGroups": {
  10309. ".NETCoreApp,Version=v1.0": [
  10310. "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview2-final"
  10311. ]
  10312. }
  10313. }