project.assets.json 348 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.0": {
  5. "BouncyCastle.NetCore/1.8.3": {
  6. "type": "package",
  7. "dependencies": {
  8. "NETStandard.Library": "1.6.0",
  9. "System.Reflection": "4.3.0",
  10. "System.Reflection.TypeExtensions": "4.1.0"
  11. },
  12. "compile": {
  13. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  14. },
  15. "runtime": {
  16. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  17. }
  18. },
  19. "CSRedisCore/3.6.5": {
  20. "type": "package",
  21. "dependencies": {
  22. "Newtonsoft.Json": "12.0.3",
  23. "System.ValueTuple": "4.5.0"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/CSRedisCore.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/CSRedisCore.dll": {}
  30. }
  31. },
  32. "Google.Protobuf/3.6.1": {
  33. "type": "package",
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.1"
  36. },
  37. "compile": {
  38. "lib/netstandard1.0/Google.Protobuf.dll": {}
  39. },
  40. "runtime": {
  41. "lib/netstandard1.0/Google.Protobuf.dll": {}
  42. }
  43. },
  44. "GraphQL/2.4.0": {
  45. "type": "package",
  46. "dependencies": {
  47. "GraphQL-Parser": "3.0.0",
  48. "Newtonsoft.Json": "10.0.3",
  49. "System.Buffers": "4.5.0",
  50. "System.Reactive.Core": "3.1.1",
  51. "System.Reactive.Linq": "3.1.1"
  52. },
  53. "compile": {
  54. "lib/netstandard2.0/GraphQL.dll": {}
  55. },
  56. "runtime": {
  57. "lib/netstandard2.0/GraphQL.dll": {}
  58. }
  59. },
  60. "GraphQL-Parser/3.0.0": {
  61. "type": "package",
  62. "dependencies": {
  63. "NETStandard.Library": "1.6.0"
  64. },
  65. "compile": {
  66. "lib/netstandard1.1/GraphQL-Parser.dll": {}
  67. },
  68. "runtime": {
  69. "lib/netstandard1.1/GraphQL-Parser.dll": {}
  70. }
  71. },
  72. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  73. "type": "package",
  74. "dependencies": {
  75. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.5.0"
  76. },
  77. "compile": {
  78. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  79. },
  80. "runtime": {
  81. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  82. },
  83. "frameworkReferences": [
  84. "Microsoft.AspNetCore.App"
  85. ]
  86. },
  87. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  88. "type": "package",
  89. "compile": {
  90. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  91. },
  92. "runtime": {
  93. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  94. }
  95. },
  96. "Microsoft.Bcl.HashCode/1.1.0": {
  97. "type": "package",
  98. "compile": {
  99. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  100. },
  101. "runtime": {
  102. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  103. }
  104. },
  105. "Microsoft.CSharp/4.7.0": {
  106. "type": "package",
  107. "compile": {
  108. "ref/netcoreapp2.0/_._": {}
  109. },
  110. "runtime": {
  111. "lib/netcoreapp2.0/_._": {}
  112. }
  113. },
  114. "Microsoft.EntityFrameworkCore/3.1.0": {
  115. "type": "package",
  116. "dependencies": {
  117. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  118. "Microsoft.Bcl.HashCode": "1.1.0",
  119. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.0",
  120. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.0",
  121. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  122. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  123. "Microsoft.Extensions.Logging": "3.1.0",
  124. "System.Collections.Immutable": "1.7.0",
  125. "System.ComponentModel.Annotations": "4.7.0",
  126. "System.Diagnostics.DiagnosticSource": "4.7.0"
  127. },
  128. "compile": {
  129. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  130. },
  131. "runtime": {
  132. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  133. }
  134. },
  135. "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": {
  136. "type": "package",
  137. "compile": {
  138. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  139. },
  140. "runtime": {
  141. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  142. }
  143. },
  144. "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": {
  145. "type": "package",
  146. "compile": {
  147. "lib/netstandard2.0/_._": {}
  148. },
  149. "runtime": {
  150. "lib/netstandard2.0/_._": {}
  151. }
  152. },
  153. "Microsoft.EntityFrameworkCore.Design/3.1.0": {
  154. "type": "package",
  155. "dependencies": {
  156. "Microsoft.CSharp": "4.7.0",
  157. "Microsoft.EntityFrameworkCore.Relational": "3.1.0"
  158. },
  159. "compile": {
  160. "lib/netstandard2.0/_._": {}
  161. },
  162. "runtime": {
  163. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  164. },
  165. "build": {
  166. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props": {}
  167. }
  168. },
  169. "Microsoft.EntityFrameworkCore.Relational/3.1.0": {
  170. "type": "package",
  171. "dependencies": {
  172. "Microsoft.EntityFrameworkCore": "3.1.0"
  173. },
  174. "compile": {
  175. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  176. },
  177. "runtime": {
  178. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  179. }
  180. },
  181. "Microsoft.EntityFrameworkCore.Tools/3.1.0": {
  182. "type": "package",
  183. "dependencies": {
  184. "Microsoft.EntityFrameworkCore.Design": "3.1.0"
  185. },
  186. "compile": {
  187. "lib/netstandard2.0/_._": {}
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/_._": {}
  191. }
  192. },
  193. "Microsoft.Extensions.Caching.Abstractions/3.1.0": {
  194. "type": "package",
  195. "dependencies": {
  196. "Microsoft.Extensions.Primitives": "3.1.0"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  200. },
  201. "runtime": {
  202. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  203. }
  204. },
  205. "Microsoft.Extensions.Caching.Memory/3.1.0": {
  206. "type": "package",
  207. "dependencies": {
  208. "Microsoft.Extensions.Caching.Abstractions": "3.1.0",
  209. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  210. "Microsoft.Extensions.Logging.Abstractions": "3.1.0",
  211. "Microsoft.Extensions.Options": "3.1.0"
  212. },
  213. "compile": {
  214. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  215. },
  216. "runtime": {
  217. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  218. }
  219. },
  220. "Microsoft.Extensions.Configuration/3.1.0": {
  221. "type": "package",
  222. "dependencies": {
  223. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0"
  224. },
  225. "compile": {
  226. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  227. },
  228. "runtime": {
  229. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  230. }
  231. },
  232. "Microsoft.Extensions.Configuration.Abstractions/3.1.0": {
  233. "type": "package",
  234. "dependencies": {
  235. "Microsoft.Extensions.Primitives": "3.1.0"
  236. },
  237. "compile": {
  238. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  239. },
  240. "runtime": {
  241. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  242. }
  243. },
  244. "Microsoft.Extensions.Configuration.Binder/3.1.0": {
  245. "type": "package",
  246. "dependencies": {
  247. "Microsoft.Extensions.Configuration": "3.1.0"
  248. },
  249. "compile": {
  250. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  251. },
  252. "runtime": {
  253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  254. }
  255. },
  256. "Microsoft.Extensions.DependencyInjection/3.1.0": {
  257. "type": "package",
  258. "dependencies": {
  259. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0"
  260. },
  261. "compile": {
  262. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  263. },
  264. "runtime": {
  265. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  266. }
  267. },
  268. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": {
  269. "type": "package",
  270. "compile": {
  271. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  272. },
  273. "runtime": {
  274. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  275. }
  276. },
  277. "Microsoft.Extensions.Logging/3.1.0": {
  278. "type": "package",
  279. "dependencies": {
  280. "Microsoft.Extensions.Configuration.Binder": "3.1.0",
  281. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  282. "Microsoft.Extensions.Logging.Abstractions": "3.1.0",
  283. "Microsoft.Extensions.Options": "3.1.0"
  284. },
  285. "compile": {
  286. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  287. },
  288. "runtime": {
  289. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  290. }
  291. },
  292. "Microsoft.Extensions.Logging.Abstractions/3.1.0": {
  293. "type": "package",
  294. "compile": {
  295. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  296. },
  297. "runtime": {
  298. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  299. }
  300. },
  301. "Microsoft.Extensions.Options/3.1.0": {
  302. "type": "package",
  303. "dependencies": {
  304. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  305. "Microsoft.Extensions.Primitives": "3.1.0",
  306. "System.ComponentModel.Annotations": "4.7.0"
  307. },
  308. "compile": {
  309. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  310. },
  311. "runtime": {
  312. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  313. }
  314. },
  315. "Microsoft.Extensions.Primitives/3.1.0": {
  316. "type": "package",
  317. "dependencies": {
  318. "System.Memory": "4.5.2",
  319. "System.Runtime.CompilerServices.Unsafe": "4.7.0"
  320. },
  321. "compile": {
  322. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  323. },
  324. "runtime": {
  325. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  326. }
  327. },
  328. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  329. "type": "package",
  330. "dependencies": {
  331. "Microsoft.IdentityModel.Tokens": "5.5.0",
  332. "Newtonsoft.Json": "10.0.1"
  333. },
  334. "compile": {
  335. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  336. },
  337. "runtime": {
  338. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  339. }
  340. },
  341. "Microsoft.IdentityModel.Logging/5.5.0": {
  342. "type": "package",
  343. "compile": {
  344. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  345. },
  346. "runtime": {
  347. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  348. }
  349. },
  350. "Microsoft.IdentityModel.Protocols/5.5.0": {
  351. "type": "package",
  352. "dependencies": {
  353. "Microsoft.IdentityModel.Logging": "5.5.0",
  354. "Microsoft.IdentityModel.Tokens": "5.5.0"
  355. },
  356. "compile": {
  357. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  358. },
  359. "runtime": {
  360. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  361. }
  362. },
  363. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  364. "type": "package",
  365. "dependencies": {
  366. "Microsoft.IdentityModel.Protocols": "5.5.0",
  367. "Newtonsoft.Json": "10.0.1",
  368. "System.IdentityModel.Tokens.Jwt": "5.5.0"
  369. },
  370. "compile": {
  371. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  372. },
  373. "runtime": {
  374. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  375. }
  376. },
  377. "Microsoft.IdentityModel.Tokens/5.5.0": {
  378. "type": "package",
  379. "dependencies": {
  380. "Microsoft.IdentityModel.Logging": "5.5.0",
  381. "Newtonsoft.Json": "10.0.1",
  382. "System.Security.Cryptography.Cng": "4.5.0"
  383. },
  384. "compile": {
  385. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  386. },
  387. "runtime": {
  388. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  389. }
  390. },
  391. "Microsoft.NETCore.Platforms/3.1.0": {
  392. "type": "package",
  393. "compile": {
  394. "lib/netstandard1.0/_._": {}
  395. },
  396. "runtime": {
  397. "lib/netstandard1.0/_._": {}
  398. }
  399. },
  400. "Microsoft.NETCore.Targets/1.1.0": {
  401. "type": "package",
  402. "compile": {
  403. "lib/netstandard1.0/_._": {}
  404. },
  405. "runtime": {
  406. "lib/netstandard1.0/_._": {}
  407. }
  408. },
  409. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.0": {
  410. "type": "package",
  411. "compile": {
  412. "lib/net461/dotnet-aspnet-codegenerator-design.exe": {}
  413. },
  414. "runtime": {
  415. "lib/net461/dotnet-aspnet-codegenerator-design.exe": {}
  416. }
  417. },
  418. "Microsoft.Win32.Primitives/4.3.0": {
  419. "type": "package",
  420. "dependencies": {
  421. "Microsoft.NETCore.Platforms": "1.1.0",
  422. "Microsoft.NETCore.Targets": "1.1.0",
  423. "System.Runtime": "4.3.0"
  424. },
  425. "compile": {
  426. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  427. }
  428. },
  429. "Microsoft.Win32.SystemEvents/4.7.0": {
  430. "type": "package",
  431. "dependencies": {
  432. "Microsoft.NETCore.Platforms": "3.1.0"
  433. },
  434. "compile": {
  435. "ref/netstandard2.0/_._": {}
  436. },
  437. "runtime": {
  438. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  439. },
  440. "runtimeTargets": {
  441. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  442. "assetType": "runtime",
  443. "rid": "win"
  444. }
  445. }
  446. },
  447. "MySql.Data/8.0.18": {
  448. "type": "package",
  449. "dependencies": {
  450. "BouncyCastle.NetCore": "1.8.3",
  451. "Google.Protobuf": "3.6.1",
  452. "SSH.NET": "2016.1.0",
  453. "System.Configuration.ConfigurationManager": "4.4.1",
  454. "System.Resources.Extensions": "4.6.0-preview8.19405.3",
  455. "System.Security.Permissions": "4.4.1",
  456. "System.Text.Encoding.CodePages": "4.4.0"
  457. },
  458. "compile": {
  459. "lib/netstandard2.1/MySql.Data.dll": {}
  460. },
  461. "runtime": {
  462. "lib/netstandard2.1/MySql.Data.dll": {}
  463. }
  464. },
  465. "MySqlConnector/0.61.0": {
  466. "type": "package",
  467. "compile": {
  468. "lib/netcoreapp3.0/MySqlConnector.dll": {}
  469. },
  470. "runtime": {
  471. "lib/netcoreapp3.0/MySqlConnector.dll": {}
  472. }
  473. },
  474. "NETStandard.Library/1.6.1": {
  475. "type": "package",
  476. "dependencies": {
  477. "Microsoft.NETCore.Platforms": "1.1.0",
  478. "Microsoft.Win32.Primitives": "4.3.0",
  479. "System.AppContext": "4.3.0",
  480. "System.Collections": "4.3.0",
  481. "System.Collections.Concurrent": "4.3.0",
  482. "System.Console": "4.3.0",
  483. "System.Diagnostics.Debug": "4.3.0",
  484. "System.Diagnostics.Tools": "4.3.0",
  485. "System.Diagnostics.Tracing": "4.3.0",
  486. "System.Globalization": "4.3.0",
  487. "System.Globalization.Calendars": "4.3.0",
  488. "System.IO": "4.3.0",
  489. "System.IO.Compression": "4.3.0",
  490. "System.IO.Compression.ZipFile": "4.3.0",
  491. "System.IO.FileSystem": "4.3.0",
  492. "System.IO.FileSystem.Primitives": "4.3.0",
  493. "System.Linq": "4.3.0",
  494. "System.Linq.Expressions": "4.3.0",
  495. "System.Net.Http": "4.3.0",
  496. "System.Net.Primitives": "4.3.0",
  497. "System.Net.Sockets": "4.3.0",
  498. "System.ObjectModel": "4.3.0",
  499. "System.Reflection": "4.3.0",
  500. "System.Reflection.Extensions": "4.3.0",
  501. "System.Reflection.Primitives": "4.3.0",
  502. "System.Resources.ResourceManager": "4.3.0",
  503. "System.Runtime": "4.3.0",
  504. "System.Runtime.Extensions": "4.3.0",
  505. "System.Runtime.Handles": "4.3.0",
  506. "System.Runtime.InteropServices": "4.3.0",
  507. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  508. "System.Runtime.Numerics": "4.3.0",
  509. "System.Security.Cryptography.Algorithms": "4.3.0",
  510. "System.Security.Cryptography.Encoding": "4.3.0",
  511. "System.Security.Cryptography.Primitives": "4.3.0",
  512. "System.Security.Cryptography.X509Certificates": "4.3.0",
  513. "System.Text.Encoding": "4.3.0",
  514. "System.Text.Encoding.Extensions": "4.3.0",
  515. "System.Text.RegularExpressions": "4.3.0",
  516. "System.Threading": "4.3.0",
  517. "System.Threading.Tasks": "4.3.0",
  518. "System.Threading.Timer": "4.3.0",
  519. "System.Xml.ReaderWriter": "4.3.0",
  520. "System.Xml.XDocument": "4.3.0"
  521. }
  522. },
  523. "Newtonsoft.Json/12.0.3": {
  524. "type": "package",
  525. "compile": {
  526. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  527. },
  528. "runtime": {
  529. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  530. }
  531. },
  532. "Pomelo.EntityFrameworkCore.MySql/3.0.1": {
  533. "type": "package",
  534. "dependencies": {
  535. "Microsoft.EntityFrameworkCore.Relational": "3.0.1",
  536. "MySqlConnector": "0.61.0",
  537. "Pomelo.JsonObject": "2.2.1"
  538. },
  539. "compile": {
  540. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  541. },
  542. "runtime": {
  543. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  544. }
  545. },
  546. "Pomelo.JsonObject/2.2.1": {
  547. "type": "package",
  548. "dependencies": {
  549. "Microsoft.CSharp": "4.5.0",
  550. "Newtonsoft.Json": "11.0.2"
  551. },
  552. "compile": {
  553. "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
  554. },
  555. "runtime": {
  556. "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
  557. }
  558. },
  559. "RabbitMQ.Client/6.2.2": {
  560. "type": "package",
  561. "dependencies": {
  562. "System.Memory": "4.5.4",
  563. "System.Threading.Channels": "4.7.1"
  564. },
  565. "compile": {
  566. "lib/netstandard2.0/RabbitMQ.Client.dll": {}
  567. },
  568. "runtime": {
  569. "lib/netstandard2.0/RabbitMQ.Client.dll": {}
  570. }
  571. },
  572. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  573. "type": "package",
  574. "runtimeTargets": {
  575. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  576. "assetType": "native",
  577. "rid": "debian.8-x64"
  578. }
  579. }
  580. },
  581. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  582. "type": "package",
  583. "runtimeTargets": {
  584. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  585. "assetType": "native",
  586. "rid": "fedora.23-x64"
  587. }
  588. }
  589. },
  590. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  591. "type": "package",
  592. "runtimeTargets": {
  593. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  594. "assetType": "native",
  595. "rid": "fedora.24-x64"
  596. }
  597. }
  598. },
  599. "runtime.native.System/4.3.0": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.NETCore.Platforms": "1.1.0",
  603. "Microsoft.NETCore.Targets": "1.1.0"
  604. },
  605. "compile": {
  606. "lib/netstandard1.0/_._": {}
  607. },
  608. "runtime": {
  609. "lib/netstandard1.0/_._": {}
  610. }
  611. },
  612. "runtime.native.System.IO.Compression/4.3.0": {
  613. "type": "package",
  614. "dependencies": {
  615. "Microsoft.NETCore.Platforms": "1.1.0",
  616. "Microsoft.NETCore.Targets": "1.1.0"
  617. },
  618. "compile": {
  619. "lib/netstandard1.0/_._": {}
  620. },
  621. "runtime": {
  622. "lib/netstandard1.0/_._": {}
  623. }
  624. },
  625. "runtime.native.System.Net.Http/4.3.0": {
  626. "type": "package",
  627. "dependencies": {
  628. "Microsoft.NETCore.Platforms": "1.1.0",
  629. "Microsoft.NETCore.Targets": "1.1.0"
  630. },
  631. "compile": {
  632. "lib/netstandard1.0/_._": {}
  633. },
  634. "runtime": {
  635. "lib/netstandard1.0/_._": {}
  636. }
  637. },
  638. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  639. "type": "package",
  640. "dependencies": {
  641. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  642. },
  643. "compile": {
  644. "lib/netstandard1.0/_._": {}
  645. },
  646. "runtime": {
  647. "lib/netstandard1.0/_._": {}
  648. }
  649. },
  650. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  651. "type": "package",
  652. "dependencies": {
  653. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  654. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  655. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  656. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  657. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  658. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  659. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  660. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  661. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  662. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  663. },
  664. "compile": {
  665. "lib/netstandard1.0/_._": {}
  666. },
  667. "runtime": {
  668. "lib/netstandard1.0/_._": {}
  669. }
  670. },
  671. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  672. "type": "package",
  673. "runtimeTargets": {
  674. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  675. "assetType": "native",
  676. "rid": "opensuse.13.2-x64"
  677. }
  678. }
  679. },
  680. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  681. "type": "package",
  682. "runtimeTargets": {
  683. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  684. "assetType": "native",
  685. "rid": "opensuse.42.1-x64"
  686. }
  687. }
  688. },
  689. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  690. "type": "package",
  691. "runtimeTargets": {
  692. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  693. "assetType": "native",
  694. "rid": "osx.10.10-x64"
  695. }
  696. }
  697. },
  698. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  699. "type": "package",
  700. "runtimeTargets": {
  701. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  702. "assetType": "native",
  703. "rid": "osx.10.10-x64"
  704. }
  705. }
  706. },
  707. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  708. "type": "package",
  709. "runtimeTargets": {
  710. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  711. "assetType": "native",
  712. "rid": "rhel.7-x64"
  713. }
  714. }
  715. },
  716. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  717. "type": "package",
  718. "runtimeTargets": {
  719. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  720. "assetType": "native",
  721. "rid": "ubuntu.14.04-x64"
  722. }
  723. }
  724. },
  725. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  726. "type": "package",
  727. "runtimeTargets": {
  728. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  729. "assetType": "native",
  730. "rid": "ubuntu.16.04-x64"
  731. }
  732. }
  733. },
  734. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  735. "type": "package",
  736. "runtimeTargets": {
  737. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  738. "assetType": "native",
  739. "rid": "ubuntu.16.10-x64"
  740. }
  741. }
  742. },
  743. "SSH.NET/2016.1.0": {
  744. "type": "package",
  745. "dependencies": {
  746. "Microsoft.CSharp": "4.0.1",
  747. "SshNet.Security.Cryptography": "[1.2.0]",
  748. "System.Diagnostics.Debug": "4.0.11",
  749. "System.Diagnostics.Tools": "4.0.1",
  750. "System.Diagnostics.TraceSource": "4.0.0",
  751. "System.Globalization": "4.0.11",
  752. "System.IO": "4.1.0",
  753. "System.IO.FileSystem": "4.0.1",
  754. "System.IO.FileSystem.Primitives": "4.0.1",
  755. "System.Linq": "4.1.0",
  756. "System.Net.NameResolution": "4.0.0",
  757. "System.Net.Sockets": "4.1.0",
  758. "System.Reflection.Extensions": "4.0.1",
  759. "System.Runtime.Extensions": "4.1.0",
  760. "System.Security.Cryptography.Algorithms": "4.2.0",
  761. "System.Text.RegularExpressions": "4.1.0",
  762. "System.Threading": "4.0.11",
  763. "System.Threading.Thread": "4.0.0",
  764. "System.Threading.ThreadPool": "4.0.10",
  765. "System.Threading.Timer": "4.0.1",
  766. "System.Xml.XPath.XmlDocument": "4.0.1",
  767. "System.Xml.XmlDocument": "4.0.1"
  768. },
  769. "compile": {
  770. "lib/netstandard1.3/Renci.SshNet.dll": {}
  771. },
  772. "runtime": {
  773. "lib/netstandard1.3/Renci.SshNet.dll": {}
  774. }
  775. },
  776. "SshNet.Security.Cryptography/1.2.0": {
  777. "type": "package",
  778. "dependencies": {
  779. "System.IO": "4.1.0",
  780. "System.Security.Cryptography.Primitives": "4.0.0"
  781. },
  782. "compile": {
  783. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  784. },
  785. "runtime": {
  786. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  787. }
  788. },
  789. "System.AppContext/4.3.0": {
  790. "type": "package",
  791. "dependencies": {
  792. "System.Runtime": "4.3.0"
  793. },
  794. "compile": {
  795. "ref/netstandard1.6/System.AppContext.dll": {}
  796. },
  797. "runtime": {
  798. "lib/netstandard1.6/System.AppContext.dll": {}
  799. }
  800. },
  801. "System.Buffers/4.5.0": {
  802. "type": "package",
  803. "compile": {
  804. "ref/netcoreapp2.0/_._": {}
  805. },
  806. "runtime": {
  807. "lib/netcoreapp2.0/_._": {}
  808. }
  809. },
  810. "System.Collections/4.3.0": {
  811. "type": "package",
  812. "dependencies": {
  813. "Microsoft.NETCore.Platforms": "1.1.0",
  814. "Microsoft.NETCore.Targets": "1.1.0",
  815. "System.Runtime": "4.3.0"
  816. },
  817. "compile": {
  818. "ref/netstandard1.3/System.Collections.dll": {}
  819. }
  820. },
  821. "System.Collections.Concurrent/4.3.0": {
  822. "type": "package",
  823. "dependencies": {
  824. "System.Collections": "4.3.0",
  825. "System.Diagnostics.Debug": "4.3.0",
  826. "System.Diagnostics.Tracing": "4.3.0",
  827. "System.Globalization": "4.3.0",
  828. "System.Reflection": "4.3.0",
  829. "System.Resources.ResourceManager": "4.3.0",
  830. "System.Runtime": "4.3.0",
  831. "System.Runtime.Extensions": "4.3.0",
  832. "System.Threading": "4.3.0",
  833. "System.Threading.Tasks": "4.3.0"
  834. },
  835. "compile": {
  836. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  837. },
  838. "runtime": {
  839. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  840. }
  841. },
  842. "System.Collections.Immutable/1.7.0": {
  843. "type": "package",
  844. "compile": {
  845. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  846. },
  847. "runtime": {
  848. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  849. }
  850. },
  851. "System.Collections.NonGeneric/4.3.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "System.Diagnostics.Debug": "4.3.0",
  855. "System.Globalization": "4.3.0",
  856. "System.Resources.ResourceManager": "4.3.0",
  857. "System.Runtime": "4.3.0",
  858. "System.Runtime.Extensions": "4.3.0",
  859. "System.Threading": "4.3.0"
  860. },
  861. "compile": {
  862. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  863. },
  864. "runtime": {
  865. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  866. }
  867. },
  868. "System.Collections.Specialized/4.3.0": {
  869. "type": "package",
  870. "dependencies": {
  871. "System.Collections.NonGeneric": "4.3.0",
  872. "System.Globalization": "4.3.0",
  873. "System.Globalization.Extensions": "4.3.0",
  874. "System.Resources.ResourceManager": "4.3.0",
  875. "System.Runtime": "4.3.0",
  876. "System.Runtime.Extensions": "4.3.0",
  877. "System.Threading": "4.3.0"
  878. },
  879. "compile": {
  880. "ref/netstandard1.3/System.Collections.Specialized.dll": {}
  881. },
  882. "runtime": {
  883. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  884. }
  885. },
  886. "System.ComponentModel/4.3.0": {
  887. "type": "package",
  888. "dependencies": {
  889. "System.Runtime": "4.3.0"
  890. },
  891. "compile": {
  892. "ref/netstandard1.0/System.ComponentModel.dll": {}
  893. },
  894. "runtime": {
  895. "lib/netstandard1.3/System.ComponentModel.dll": {}
  896. }
  897. },
  898. "System.ComponentModel.Annotations/4.7.0": {
  899. "type": "package",
  900. "compile": {
  901. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  902. },
  903. "runtime": {
  904. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  905. }
  906. },
  907. "System.ComponentModel.Primitives/4.3.0": {
  908. "type": "package",
  909. "dependencies": {
  910. "System.ComponentModel": "4.3.0",
  911. "System.Resources.ResourceManager": "4.3.0",
  912. "System.Runtime": "4.3.0"
  913. },
  914. "compile": {
  915. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  916. },
  917. "runtime": {
  918. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  919. }
  920. },
  921. "System.ComponentModel.TypeConverter/4.3.0": {
  922. "type": "package",
  923. "dependencies": {
  924. "System.Collections": "4.3.0",
  925. "System.Collections.NonGeneric": "4.3.0",
  926. "System.Collections.Specialized": "4.3.0",
  927. "System.ComponentModel": "4.3.0",
  928. "System.ComponentModel.Primitives": "4.3.0",
  929. "System.Globalization": "4.3.0",
  930. "System.Linq": "4.3.0",
  931. "System.Reflection": "4.3.0",
  932. "System.Reflection.Extensions": "4.3.0",
  933. "System.Reflection.Primitives": "4.3.0",
  934. "System.Reflection.TypeExtensions": "4.3.0",
  935. "System.Resources.ResourceManager": "4.3.0",
  936. "System.Runtime": "4.3.0",
  937. "System.Runtime.Extensions": "4.3.0",
  938. "System.Threading": "4.3.0"
  939. },
  940. "compile": {
  941. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  942. },
  943. "runtime": {
  944. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  945. }
  946. },
  947. "System.Configuration.ConfigurationManager/4.4.1": {
  948. "type": "package",
  949. "dependencies": {
  950. "System.Security.Cryptography.ProtectedData": "4.4.0"
  951. },
  952. "compile": {
  953. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  954. },
  955. "runtime": {
  956. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  957. }
  958. },
  959. "System.Console/4.3.0": {
  960. "type": "package",
  961. "dependencies": {
  962. "Microsoft.NETCore.Platforms": "1.1.0",
  963. "Microsoft.NETCore.Targets": "1.1.0",
  964. "System.IO": "4.3.0",
  965. "System.Runtime": "4.3.0",
  966. "System.Text.Encoding": "4.3.0"
  967. },
  968. "compile": {
  969. "ref/netstandard1.3/System.Console.dll": {}
  970. }
  971. },
  972. "System.Diagnostics.Contracts/4.0.1": {
  973. "type": "package",
  974. "dependencies": {
  975. "System.Runtime": "4.1.0"
  976. },
  977. "compile": {
  978. "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  979. },
  980. "runtime": {
  981. "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  982. }
  983. },
  984. "System.Diagnostics.Debug/4.3.0": {
  985. "type": "package",
  986. "dependencies": {
  987. "Microsoft.NETCore.Platforms": "1.1.0",
  988. "Microsoft.NETCore.Targets": "1.1.0",
  989. "System.Runtime": "4.3.0"
  990. },
  991. "compile": {
  992. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  993. }
  994. },
  995. "System.Diagnostics.DiagnosticSource/4.7.0": {
  996. "type": "package",
  997. "compile": {
  998. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  999. },
  1000. "runtime": {
  1001. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1002. }
  1003. },
  1004. "System.Diagnostics.Tools/4.3.0": {
  1005. "type": "package",
  1006. "dependencies": {
  1007. "Microsoft.NETCore.Platforms": "1.1.0",
  1008. "Microsoft.NETCore.Targets": "1.1.0",
  1009. "System.Runtime": "4.3.0"
  1010. },
  1011. "compile": {
  1012. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1013. }
  1014. },
  1015. "System.Diagnostics.TraceSource/4.0.0": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Microsoft.NETCore.Platforms": "1.0.1",
  1019. "System.Collections": "4.0.11",
  1020. "System.Diagnostics.Debug": "4.0.11",
  1021. "System.Globalization": "4.0.11",
  1022. "System.Resources.ResourceManager": "4.0.1",
  1023. "System.Runtime": "4.1.0",
  1024. "System.Runtime.Extensions": "4.1.0",
  1025. "System.Threading": "4.0.11",
  1026. "runtime.native.System": "4.0.0"
  1027. },
  1028. "compile": {
  1029. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1030. },
  1031. "runtimeTargets": {
  1032. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1033. "assetType": "runtime",
  1034. "rid": "unix"
  1035. },
  1036. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1037. "assetType": "runtime",
  1038. "rid": "win"
  1039. }
  1040. }
  1041. },
  1042. "System.Diagnostics.Tracing/4.3.0": {
  1043. "type": "package",
  1044. "dependencies": {
  1045. "Microsoft.NETCore.Platforms": "1.1.0",
  1046. "Microsoft.NETCore.Targets": "1.1.0",
  1047. "System.Runtime": "4.3.0"
  1048. },
  1049. "compile": {
  1050. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1051. }
  1052. },
  1053. "System.Drawing.Common/4.7.0": {
  1054. "type": "package",
  1055. "dependencies": {
  1056. "Microsoft.NETCore.Platforms": "3.1.0",
  1057. "Microsoft.Win32.SystemEvents": "4.7.0"
  1058. },
  1059. "compile": {
  1060. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1061. },
  1062. "runtime": {
  1063. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1064. },
  1065. "runtimeTargets": {
  1066. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1067. "assetType": "runtime",
  1068. "rid": "unix"
  1069. },
  1070. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1071. "assetType": "runtime",
  1072. "rid": "win"
  1073. }
  1074. }
  1075. },
  1076. "System.Dynamic.Runtime/4.0.11": {
  1077. "type": "package",
  1078. "dependencies": {
  1079. "System.Collections": "4.0.11",
  1080. "System.Diagnostics.Debug": "4.0.11",
  1081. "System.Globalization": "4.0.11",
  1082. "System.Linq": "4.1.0",
  1083. "System.Linq.Expressions": "4.1.0",
  1084. "System.ObjectModel": "4.0.12",
  1085. "System.Reflection": "4.1.0",
  1086. "System.Reflection.Emit": "4.0.1",
  1087. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1088. "System.Reflection.Primitives": "4.0.1",
  1089. "System.Reflection.TypeExtensions": "4.1.0",
  1090. "System.Resources.ResourceManager": "4.0.1",
  1091. "System.Runtime": "4.1.0",
  1092. "System.Runtime.Extensions": "4.1.0",
  1093. "System.Threading": "4.0.11"
  1094. },
  1095. "compile": {
  1096. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1097. },
  1098. "runtime": {
  1099. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1100. }
  1101. },
  1102. "System.Globalization/4.3.0": {
  1103. "type": "package",
  1104. "dependencies": {
  1105. "Microsoft.NETCore.Platforms": "1.1.0",
  1106. "Microsoft.NETCore.Targets": "1.1.0",
  1107. "System.Runtime": "4.3.0"
  1108. },
  1109. "compile": {
  1110. "ref/netstandard1.3/System.Globalization.dll": {}
  1111. }
  1112. },
  1113. "System.Globalization.Calendars/4.3.0": {
  1114. "type": "package",
  1115. "dependencies": {
  1116. "Microsoft.NETCore.Platforms": "1.1.0",
  1117. "Microsoft.NETCore.Targets": "1.1.0",
  1118. "System.Globalization": "4.3.0",
  1119. "System.Runtime": "4.3.0"
  1120. },
  1121. "compile": {
  1122. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1123. }
  1124. },
  1125. "System.Globalization.Extensions/4.3.0": {
  1126. "type": "package",
  1127. "dependencies": {
  1128. "Microsoft.NETCore.Platforms": "1.1.0",
  1129. "System.Globalization": "4.3.0",
  1130. "System.Resources.ResourceManager": "4.3.0",
  1131. "System.Runtime": "4.3.0",
  1132. "System.Runtime.Extensions": "4.3.0",
  1133. "System.Runtime.InteropServices": "4.3.0"
  1134. },
  1135. "compile": {
  1136. "ref/netstandard1.3/_._": {}
  1137. },
  1138. "runtimeTargets": {
  1139. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1140. "assetType": "runtime",
  1141. "rid": "unix"
  1142. },
  1143. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1144. "assetType": "runtime",
  1145. "rid": "win"
  1146. }
  1147. }
  1148. },
  1149. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  1150. "type": "package",
  1151. "dependencies": {
  1152. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  1153. "Microsoft.IdentityModel.Tokens": "5.5.0",
  1154. "Newtonsoft.Json": "10.0.1"
  1155. },
  1156. "compile": {
  1157. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1158. },
  1159. "runtime": {
  1160. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1161. }
  1162. },
  1163. "System.IO/4.3.0": {
  1164. "type": "package",
  1165. "dependencies": {
  1166. "Microsoft.NETCore.Platforms": "1.1.0",
  1167. "Microsoft.NETCore.Targets": "1.1.0",
  1168. "System.Runtime": "4.3.0",
  1169. "System.Text.Encoding": "4.3.0",
  1170. "System.Threading.Tasks": "4.3.0"
  1171. },
  1172. "compile": {
  1173. "ref/netstandard1.5/System.IO.dll": {}
  1174. }
  1175. },
  1176. "System.IO.Compression/4.3.0": {
  1177. "type": "package",
  1178. "dependencies": {
  1179. "Microsoft.NETCore.Platforms": "1.1.0",
  1180. "System.Buffers": "4.3.0",
  1181. "System.Collections": "4.3.0",
  1182. "System.Diagnostics.Debug": "4.3.0",
  1183. "System.IO": "4.3.0",
  1184. "System.Resources.ResourceManager": "4.3.0",
  1185. "System.Runtime": "4.3.0",
  1186. "System.Runtime.Extensions": "4.3.0",
  1187. "System.Runtime.Handles": "4.3.0",
  1188. "System.Runtime.InteropServices": "4.3.0",
  1189. "System.Text.Encoding": "4.3.0",
  1190. "System.Threading": "4.3.0",
  1191. "System.Threading.Tasks": "4.3.0",
  1192. "runtime.native.System": "4.3.0",
  1193. "runtime.native.System.IO.Compression": "4.3.0"
  1194. },
  1195. "compile": {
  1196. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1197. },
  1198. "runtimeTargets": {
  1199. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1200. "assetType": "runtime",
  1201. "rid": "unix"
  1202. },
  1203. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1204. "assetType": "runtime",
  1205. "rid": "win"
  1206. }
  1207. }
  1208. },
  1209. "System.IO.Compression.ZipFile/4.3.0": {
  1210. "type": "package",
  1211. "dependencies": {
  1212. "System.Buffers": "4.3.0",
  1213. "System.IO": "4.3.0",
  1214. "System.IO.Compression": "4.3.0",
  1215. "System.IO.FileSystem": "4.3.0",
  1216. "System.IO.FileSystem.Primitives": "4.3.0",
  1217. "System.Resources.ResourceManager": "4.3.0",
  1218. "System.Runtime": "4.3.0",
  1219. "System.Runtime.Extensions": "4.3.0",
  1220. "System.Text.Encoding": "4.3.0"
  1221. },
  1222. "compile": {
  1223. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1224. },
  1225. "runtime": {
  1226. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1227. }
  1228. },
  1229. "System.IO.FileSystem/4.3.0": {
  1230. "type": "package",
  1231. "dependencies": {
  1232. "Microsoft.NETCore.Platforms": "1.1.0",
  1233. "Microsoft.NETCore.Targets": "1.1.0",
  1234. "System.IO": "4.3.0",
  1235. "System.IO.FileSystem.Primitives": "4.3.0",
  1236. "System.Runtime": "4.3.0",
  1237. "System.Runtime.Handles": "4.3.0",
  1238. "System.Text.Encoding": "4.3.0",
  1239. "System.Threading.Tasks": "4.3.0"
  1240. },
  1241. "compile": {
  1242. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1243. }
  1244. },
  1245. "System.IO.FileSystem.Primitives/4.3.0": {
  1246. "type": "package",
  1247. "dependencies": {
  1248. "System.Runtime": "4.3.0"
  1249. },
  1250. "compile": {
  1251. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1252. },
  1253. "runtime": {
  1254. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1255. }
  1256. },
  1257. "System.Linq/4.3.0": {
  1258. "type": "package",
  1259. "dependencies": {
  1260. "System.Collections": "4.3.0",
  1261. "System.Diagnostics.Debug": "4.3.0",
  1262. "System.Resources.ResourceManager": "4.3.0",
  1263. "System.Runtime": "4.3.0",
  1264. "System.Runtime.Extensions": "4.3.0"
  1265. },
  1266. "compile": {
  1267. "ref/netstandard1.6/System.Linq.dll": {}
  1268. },
  1269. "runtime": {
  1270. "lib/netstandard1.6/System.Linq.dll": {}
  1271. }
  1272. },
  1273. "System.Linq.Expressions/4.3.0": {
  1274. "type": "package",
  1275. "dependencies": {
  1276. "System.Collections": "4.3.0",
  1277. "System.Diagnostics.Debug": "4.3.0",
  1278. "System.Globalization": "4.3.0",
  1279. "System.IO": "4.3.0",
  1280. "System.Linq": "4.3.0",
  1281. "System.ObjectModel": "4.3.0",
  1282. "System.Reflection": "4.3.0",
  1283. "System.Reflection.Emit": "4.3.0",
  1284. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1285. "System.Reflection.Emit.Lightweight": "4.3.0",
  1286. "System.Reflection.Extensions": "4.3.0",
  1287. "System.Reflection.Primitives": "4.3.0",
  1288. "System.Reflection.TypeExtensions": "4.3.0",
  1289. "System.Resources.ResourceManager": "4.3.0",
  1290. "System.Runtime": "4.3.0",
  1291. "System.Runtime.Extensions": "4.3.0",
  1292. "System.Threading": "4.3.0"
  1293. },
  1294. "compile": {
  1295. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1296. },
  1297. "runtime": {
  1298. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1299. }
  1300. },
  1301. "System.Memory/4.5.4": {
  1302. "type": "package",
  1303. "compile": {
  1304. "ref/netcoreapp2.1/_._": {}
  1305. },
  1306. "runtime": {
  1307. "lib/netcoreapp2.1/_._": {}
  1308. }
  1309. },
  1310. "System.Net.Http/4.3.0": {
  1311. "type": "package",
  1312. "dependencies": {
  1313. "Microsoft.NETCore.Platforms": "1.1.0",
  1314. "System.Collections": "4.3.0",
  1315. "System.Diagnostics.Debug": "4.3.0",
  1316. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1317. "System.Diagnostics.Tracing": "4.3.0",
  1318. "System.Globalization": "4.3.0",
  1319. "System.Globalization.Extensions": "4.3.0",
  1320. "System.IO": "4.3.0",
  1321. "System.IO.FileSystem": "4.3.0",
  1322. "System.Net.Primitives": "4.3.0",
  1323. "System.Resources.ResourceManager": "4.3.0",
  1324. "System.Runtime": "4.3.0",
  1325. "System.Runtime.Extensions": "4.3.0",
  1326. "System.Runtime.Handles": "4.3.0",
  1327. "System.Runtime.InteropServices": "4.3.0",
  1328. "System.Security.Cryptography.Algorithms": "4.3.0",
  1329. "System.Security.Cryptography.Encoding": "4.3.0",
  1330. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1331. "System.Security.Cryptography.Primitives": "4.3.0",
  1332. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1333. "System.Text.Encoding": "4.3.0",
  1334. "System.Threading": "4.3.0",
  1335. "System.Threading.Tasks": "4.3.0",
  1336. "runtime.native.System": "4.3.0",
  1337. "runtime.native.System.Net.Http": "4.3.0",
  1338. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1339. },
  1340. "compile": {
  1341. "ref/netstandard1.3/System.Net.Http.dll": {}
  1342. },
  1343. "runtimeTargets": {
  1344. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1345. "assetType": "runtime",
  1346. "rid": "unix"
  1347. },
  1348. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1349. "assetType": "runtime",
  1350. "rid": "win"
  1351. }
  1352. }
  1353. },
  1354. "System.Net.Http.WinHttpHandler/4.4.0": {
  1355. "type": "package",
  1356. "compile": {
  1357. "ref/netstandard2.0/_._": {}
  1358. },
  1359. "runtime": {
  1360. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  1361. },
  1362. "runtimeTargets": {
  1363. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  1364. "assetType": "runtime",
  1365. "rid": "win"
  1366. }
  1367. }
  1368. },
  1369. "System.Net.NameResolution/4.0.0": {
  1370. "type": "package",
  1371. "dependencies": {
  1372. "Microsoft.NETCore.Platforms": "1.0.1",
  1373. "System.Collections": "4.0.11",
  1374. "System.Diagnostics.Tracing": "4.1.0",
  1375. "System.Globalization": "4.0.11",
  1376. "System.Net.Primitives": "4.0.11",
  1377. "System.Resources.ResourceManager": "4.0.1",
  1378. "System.Runtime": "4.1.0",
  1379. "System.Runtime.Extensions": "4.1.0",
  1380. "System.Runtime.Handles": "4.0.1",
  1381. "System.Runtime.InteropServices": "4.1.0",
  1382. "System.Security.Principal.Windows": "4.0.0",
  1383. "System.Threading": "4.0.11",
  1384. "System.Threading.Tasks": "4.0.11",
  1385. "runtime.native.System": "4.0.0"
  1386. },
  1387. "compile": {
  1388. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1389. },
  1390. "runtimeTargets": {
  1391. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1392. "assetType": "runtime",
  1393. "rid": "unix"
  1394. },
  1395. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1396. "assetType": "runtime",
  1397. "rid": "win"
  1398. }
  1399. }
  1400. },
  1401. "System.Net.Primitives/4.3.0": {
  1402. "type": "package",
  1403. "dependencies": {
  1404. "Microsoft.NETCore.Platforms": "1.1.0",
  1405. "Microsoft.NETCore.Targets": "1.1.0",
  1406. "System.Runtime": "4.3.0",
  1407. "System.Runtime.Handles": "4.3.0"
  1408. },
  1409. "compile": {
  1410. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1411. }
  1412. },
  1413. "System.Net.Sockets/4.3.0": {
  1414. "type": "package",
  1415. "dependencies": {
  1416. "Microsoft.NETCore.Platforms": "1.1.0",
  1417. "Microsoft.NETCore.Targets": "1.1.0",
  1418. "System.IO": "4.3.0",
  1419. "System.Net.Primitives": "4.3.0",
  1420. "System.Runtime": "4.3.0",
  1421. "System.Threading.Tasks": "4.3.0"
  1422. },
  1423. "compile": {
  1424. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1425. }
  1426. },
  1427. "System.ObjectModel/4.3.0": {
  1428. "type": "package",
  1429. "dependencies": {
  1430. "System.Collections": "4.3.0",
  1431. "System.Diagnostics.Debug": "4.3.0",
  1432. "System.Resources.ResourceManager": "4.3.0",
  1433. "System.Runtime": "4.3.0",
  1434. "System.Threading": "4.3.0"
  1435. },
  1436. "compile": {
  1437. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1438. },
  1439. "runtime": {
  1440. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1441. }
  1442. },
  1443. "System.Private.ServiceModel/4.4.4": {
  1444. "type": "package",
  1445. "dependencies": {
  1446. "Microsoft.NETCore.Platforms": "2.0.0",
  1447. "System.Net.Http.WinHttpHandler": "4.4.0",
  1448. "System.Reflection.DispatchProxy": "4.4.0",
  1449. "System.Security.Principal.Windows": "4.4.0"
  1450. },
  1451. "compile": {
  1452. "ref/netstandard/_._": {}
  1453. },
  1454. "runtimeTargets": {
  1455. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  1456. "assetType": "runtime",
  1457. "rid": "unix"
  1458. },
  1459. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  1460. "assetType": "runtime",
  1461. "rid": "win7"
  1462. }
  1463. }
  1464. },
  1465. "System.Reactive.Core/3.1.1": {
  1466. "type": "package",
  1467. "dependencies": {
  1468. "System.ComponentModel": "4.0.1",
  1469. "System.Diagnostics.Contracts": "4.0.1",
  1470. "System.Dynamic.Runtime": "4.0.11",
  1471. "System.Reactive.Interfaces": "3.1.1",
  1472. "System.Threading.Thread": "4.0.0",
  1473. "System.Threading.ThreadPool": "4.0.10"
  1474. },
  1475. "compile": {
  1476. "lib/netcoreapp1.0/System.Reactive.Core.dll": {}
  1477. },
  1478. "runtime": {
  1479. "lib/netcoreapp1.0/System.Reactive.Core.dll": {}
  1480. }
  1481. },
  1482. "System.Reactive.Interfaces/3.1.1": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "NETStandard.Library": "1.6.0"
  1486. },
  1487. "compile": {
  1488. "lib/netstandard1.0/System.Reactive.Interfaces.dll": {}
  1489. },
  1490. "runtime": {
  1491. "lib/netstandard1.0/System.Reactive.Interfaces.dll": {}
  1492. }
  1493. },
  1494. "System.Reactive.Linq/3.1.1": {
  1495. "type": "package",
  1496. "dependencies": {
  1497. "System.Reactive.Core": "3.1.1",
  1498. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1"
  1499. },
  1500. "compile": {
  1501. "lib/netstandard1.3/System.Reactive.Linq.dll": {}
  1502. },
  1503. "runtime": {
  1504. "lib/netstandard1.3/System.Reactive.Linq.dll": {}
  1505. }
  1506. },
  1507. "System.Reflection/4.3.0": {
  1508. "type": "package",
  1509. "dependencies": {
  1510. "Microsoft.NETCore.Platforms": "1.1.0",
  1511. "Microsoft.NETCore.Targets": "1.1.0",
  1512. "System.IO": "4.3.0",
  1513. "System.Reflection.Primitives": "4.3.0",
  1514. "System.Runtime": "4.3.0"
  1515. },
  1516. "compile": {
  1517. "ref/netstandard1.5/System.Reflection.dll": {}
  1518. }
  1519. },
  1520. "System.Reflection.DispatchProxy/4.4.0": {
  1521. "type": "package",
  1522. "compile": {
  1523. "ref/netcoreapp2.0/_._": {}
  1524. },
  1525. "runtime": {
  1526. "lib/netcoreapp2.0/_._": {}
  1527. }
  1528. },
  1529. "System.Reflection.Emit/4.3.0": {
  1530. "type": "package",
  1531. "dependencies": {
  1532. "System.IO": "4.3.0",
  1533. "System.Reflection": "4.3.0",
  1534. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1535. "System.Reflection.Primitives": "4.3.0",
  1536. "System.Runtime": "4.3.0"
  1537. },
  1538. "compile": {
  1539. "ref/netstandard1.1/_._": {}
  1540. },
  1541. "runtime": {
  1542. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1543. }
  1544. },
  1545. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1546. "type": "package",
  1547. "dependencies": {
  1548. "System.Reflection": "4.3.0",
  1549. "System.Reflection.Primitives": "4.3.0",
  1550. "System.Runtime": "4.3.0"
  1551. },
  1552. "compile": {
  1553. "ref/netstandard1.0/_._": {}
  1554. },
  1555. "runtime": {
  1556. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1557. }
  1558. },
  1559. "System.Reflection.Emit.Lightweight/4.3.0": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "System.Reflection": "4.3.0",
  1563. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1564. "System.Reflection.Primitives": "4.3.0",
  1565. "System.Runtime": "4.3.0"
  1566. },
  1567. "compile": {
  1568. "ref/netstandard1.0/_._": {}
  1569. },
  1570. "runtime": {
  1571. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1572. }
  1573. },
  1574. "System.Reflection.Extensions/4.3.0": {
  1575. "type": "package",
  1576. "dependencies": {
  1577. "Microsoft.NETCore.Platforms": "1.1.0",
  1578. "Microsoft.NETCore.Targets": "1.1.0",
  1579. "System.Reflection": "4.3.0",
  1580. "System.Runtime": "4.3.0"
  1581. },
  1582. "compile": {
  1583. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1584. }
  1585. },
  1586. "System.Reflection.Primitives/4.3.0": {
  1587. "type": "package",
  1588. "dependencies": {
  1589. "Microsoft.NETCore.Platforms": "1.1.0",
  1590. "Microsoft.NETCore.Targets": "1.1.0",
  1591. "System.Runtime": "4.3.0"
  1592. },
  1593. "compile": {
  1594. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1595. }
  1596. },
  1597. "System.Reflection.TypeExtensions/4.3.0": {
  1598. "type": "package",
  1599. "dependencies": {
  1600. "System.Reflection": "4.3.0",
  1601. "System.Runtime": "4.3.0"
  1602. },
  1603. "compile": {
  1604. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1605. },
  1606. "runtime": {
  1607. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1608. }
  1609. },
  1610. "System.Resources.Extensions/4.6.0-preview8.19405.3": {
  1611. "type": "package",
  1612. "compile": {
  1613. "ref/netstandard2.0/System.Resources.Extensions.dll": {}
  1614. },
  1615. "runtime": {
  1616. "lib/netstandard2.0/System.Resources.Extensions.dll": {}
  1617. }
  1618. },
  1619. "System.Resources.ResourceManager/4.3.0": {
  1620. "type": "package",
  1621. "dependencies": {
  1622. "Microsoft.NETCore.Platforms": "1.1.0",
  1623. "Microsoft.NETCore.Targets": "1.1.0",
  1624. "System.Globalization": "4.3.0",
  1625. "System.Reflection": "4.3.0",
  1626. "System.Runtime": "4.3.0"
  1627. },
  1628. "compile": {
  1629. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1630. }
  1631. },
  1632. "System.Runtime/4.3.0": {
  1633. "type": "package",
  1634. "dependencies": {
  1635. "Microsoft.NETCore.Platforms": "1.1.0",
  1636. "Microsoft.NETCore.Targets": "1.1.0"
  1637. },
  1638. "compile": {
  1639. "ref/netstandard1.5/System.Runtime.dll": {}
  1640. }
  1641. },
  1642. "System.Runtime.CompilerServices.Unsafe/4.7.0": {
  1643. "type": "package",
  1644. "compile": {
  1645. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1646. },
  1647. "runtime": {
  1648. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1649. }
  1650. },
  1651. "System.Runtime.Extensions/4.3.0": {
  1652. "type": "package",
  1653. "dependencies": {
  1654. "Microsoft.NETCore.Platforms": "1.1.0",
  1655. "Microsoft.NETCore.Targets": "1.1.0",
  1656. "System.Runtime": "4.3.0"
  1657. },
  1658. "compile": {
  1659. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1660. }
  1661. },
  1662. "System.Runtime.Handles/4.3.0": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "Microsoft.NETCore.Platforms": "1.1.0",
  1666. "Microsoft.NETCore.Targets": "1.1.0",
  1667. "System.Runtime": "4.3.0"
  1668. },
  1669. "compile": {
  1670. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1671. }
  1672. },
  1673. "System.Runtime.InteropServices/4.3.0": {
  1674. "type": "package",
  1675. "dependencies": {
  1676. "Microsoft.NETCore.Platforms": "1.1.0",
  1677. "Microsoft.NETCore.Targets": "1.1.0",
  1678. "System.Reflection": "4.3.0",
  1679. "System.Reflection.Primitives": "4.3.0",
  1680. "System.Runtime": "4.3.0",
  1681. "System.Runtime.Handles": "4.3.0"
  1682. },
  1683. "compile": {
  1684. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  1685. }
  1686. },
  1687. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1688. "type": "package",
  1689. "dependencies": {
  1690. "System.Reflection": "4.3.0",
  1691. "System.Reflection.Extensions": "4.3.0",
  1692. "System.Resources.ResourceManager": "4.3.0",
  1693. "System.Runtime": "4.3.0",
  1694. "System.Runtime.InteropServices": "4.3.0",
  1695. "System.Threading": "4.3.0",
  1696. "runtime.native.System": "4.3.0"
  1697. },
  1698. "compile": {
  1699. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1700. },
  1701. "runtime": {
  1702. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1703. },
  1704. "runtimeTargets": {
  1705. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1706. "assetType": "runtime",
  1707. "rid": "unix"
  1708. },
  1709. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1710. "assetType": "runtime",
  1711. "rid": "win"
  1712. }
  1713. }
  1714. },
  1715. "System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
  1716. "type": "package",
  1717. "dependencies": {
  1718. "System.Runtime": "4.1.0"
  1719. },
  1720. "compile": {
  1721. "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  1722. },
  1723. "runtime": {
  1724. "lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  1725. }
  1726. },
  1727. "System.Runtime.Numerics/4.3.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "System.Globalization": "4.3.0",
  1731. "System.Resources.ResourceManager": "4.3.0",
  1732. "System.Runtime": "4.3.0",
  1733. "System.Runtime.Extensions": "4.3.0"
  1734. },
  1735. "compile": {
  1736. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1737. },
  1738. "runtime": {
  1739. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1740. }
  1741. },
  1742. "System.Runtime.Serialization.Primitives/4.3.0": {
  1743. "type": "package",
  1744. "dependencies": {
  1745. "System.Resources.ResourceManager": "4.3.0",
  1746. "System.Runtime": "4.3.0"
  1747. },
  1748. "compile": {
  1749. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1750. },
  1751. "runtime": {
  1752. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1753. }
  1754. },
  1755. "System.Security.AccessControl/4.4.0": {
  1756. "type": "package",
  1757. "dependencies": {
  1758. "Microsoft.NETCore.Platforms": "2.0.0",
  1759. "System.Security.Principal.Windows": "4.4.0"
  1760. },
  1761. "compile": {
  1762. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1763. },
  1764. "runtime": {
  1765. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1766. },
  1767. "runtimeTargets": {
  1768. "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1769. "assetType": "runtime",
  1770. "rid": "unix"
  1771. },
  1772. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1773. "assetType": "runtime",
  1774. "rid": "win"
  1775. }
  1776. }
  1777. },
  1778. "System.Security.Cryptography.Algorithms/4.3.0": {
  1779. "type": "package",
  1780. "dependencies": {
  1781. "Microsoft.NETCore.Platforms": "1.1.0",
  1782. "System.Collections": "4.3.0",
  1783. "System.IO": "4.3.0",
  1784. "System.Resources.ResourceManager": "4.3.0",
  1785. "System.Runtime": "4.3.0",
  1786. "System.Runtime.Extensions": "4.3.0",
  1787. "System.Runtime.Handles": "4.3.0",
  1788. "System.Runtime.InteropServices": "4.3.0",
  1789. "System.Runtime.Numerics": "4.3.0",
  1790. "System.Security.Cryptography.Encoding": "4.3.0",
  1791. "System.Security.Cryptography.Primitives": "4.3.0",
  1792. "System.Text.Encoding": "4.3.0",
  1793. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1794. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1795. },
  1796. "compile": {
  1797. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1798. },
  1799. "runtimeTargets": {
  1800. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1801. "assetType": "runtime",
  1802. "rid": "osx"
  1803. },
  1804. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1805. "assetType": "runtime",
  1806. "rid": "unix"
  1807. },
  1808. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1809. "assetType": "runtime",
  1810. "rid": "win"
  1811. }
  1812. }
  1813. },
  1814. "System.Security.Cryptography.Cng/4.5.0": {
  1815. "type": "package",
  1816. "compile": {
  1817. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1818. },
  1819. "runtime": {
  1820. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1821. },
  1822. "runtimeTargets": {
  1823. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1824. "assetType": "runtime",
  1825. "rid": "win"
  1826. }
  1827. }
  1828. },
  1829. "System.Security.Cryptography.Csp/4.3.0": {
  1830. "type": "package",
  1831. "dependencies": {
  1832. "Microsoft.NETCore.Platforms": "1.1.0",
  1833. "System.IO": "4.3.0",
  1834. "System.Reflection": "4.3.0",
  1835. "System.Resources.ResourceManager": "4.3.0",
  1836. "System.Runtime": "4.3.0",
  1837. "System.Runtime.Extensions": "4.3.0",
  1838. "System.Runtime.Handles": "4.3.0",
  1839. "System.Runtime.InteropServices": "4.3.0",
  1840. "System.Security.Cryptography.Algorithms": "4.3.0",
  1841. "System.Security.Cryptography.Encoding": "4.3.0",
  1842. "System.Security.Cryptography.Primitives": "4.3.0",
  1843. "System.Text.Encoding": "4.3.0",
  1844. "System.Threading": "4.3.0"
  1845. },
  1846. "compile": {
  1847. "ref/netstandard1.3/_._": {}
  1848. },
  1849. "runtimeTargets": {
  1850. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1851. "assetType": "runtime",
  1852. "rid": "unix"
  1853. },
  1854. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1855. "assetType": "runtime",
  1856. "rid": "win"
  1857. }
  1858. }
  1859. },
  1860. "System.Security.Cryptography.Encoding/4.3.0": {
  1861. "type": "package",
  1862. "dependencies": {
  1863. "Microsoft.NETCore.Platforms": "1.1.0",
  1864. "System.Collections": "4.3.0",
  1865. "System.Collections.Concurrent": "4.3.0",
  1866. "System.Linq": "4.3.0",
  1867. "System.Resources.ResourceManager": "4.3.0",
  1868. "System.Runtime": "4.3.0",
  1869. "System.Runtime.Extensions": "4.3.0",
  1870. "System.Runtime.Handles": "4.3.0",
  1871. "System.Runtime.InteropServices": "4.3.0",
  1872. "System.Security.Cryptography.Primitives": "4.3.0",
  1873. "System.Text.Encoding": "4.3.0",
  1874. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1875. },
  1876. "compile": {
  1877. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1878. },
  1879. "runtimeTargets": {
  1880. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1881. "assetType": "runtime",
  1882. "rid": "unix"
  1883. },
  1884. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1885. "assetType": "runtime",
  1886. "rid": "win"
  1887. }
  1888. }
  1889. },
  1890. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1891. "type": "package",
  1892. "dependencies": {
  1893. "System.Collections": "4.3.0",
  1894. "System.IO": "4.3.0",
  1895. "System.Resources.ResourceManager": "4.3.0",
  1896. "System.Runtime": "4.3.0",
  1897. "System.Runtime.Extensions": "4.3.0",
  1898. "System.Runtime.Handles": "4.3.0",
  1899. "System.Runtime.InteropServices": "4.3.0",
  1900. "System.Runtime.Numerics": "4.3.0",
  1901. "System.Security.Cryptography.Algorithms": "4.3.0",
  1902. "System.Security.Cryptography.Encoding": "4.3.0",
  1903. "System.Security.Cryptography.Primitives": "4.3.0",
  1904. "System.Text.Encoding": "4.3.0",
  1905. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1906. },
  1907. "compile": {
  1908. "ref/netstandard1.6/_._": {}
  1909. },
  1910. "runtime": {
  1911. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1912. },
  1913. "runtimeTargets": {
  1914. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1915. "assetType": "runtime",
  1916. "rid": "unix"
  1917. }
  1918. }
  1919. },
  1920. "System.Security.Cryptography.Primitives/4.3.0": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "System.Diagnostics.Debug": "4.3.0",
  1924. "System.Globalization": "4.3.0",
  1925. "System.IO": "4.3.0",
  1926. "System.Resources.ResourceManager": "4.3.0",
  1927. "System.Runtime": "4.3.0",
  1928. "System.Threading": "4.3.0",
  1929. "System.Threading.Tasks": "4.3.0"
  1930. },
  1931. "compile": {
  1932. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1933. },
  1934. "runtime": {
  1935. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1936. }
  1937. },
  1938. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1939. "type": "package",
  1940. "compile": {
  1941. "ref/netstandard2.0/_._": {}
  1942. },
  1943. "runtime": {
  1944. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  1945. },
  1946. "runtimeTargets": {
  1947. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1948. "assetType": "runtime",
  1949. "rid": "win"
  1950. }
  1951. }
  1952. },
  1953. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1954. "type": "package",
  1955. "dependencies": {
  1956. "Microsoft.NETCore.Platforms": "1.1.0",
  1957. "System.Collections": "4.3.0",
  1958. "System.Diagnostics.Debug": "4.3.0",
  1959. "System.Globalization": "4.3.0",
  1960. "System.Globalization.Calendars": "4.3.0",
  1961. "System.IO": "4.3.0",
  1962. "System.IO.FileSystem": "4.3.0",
  1963. "System.IO.FileSystem.Primitives": "4.3.0",
  1964. "System.Resources.ResourceManager": "4.3.0",
  1965. "System.Runtime": "4.3.0",
  1966. "System.Runtime.Extensions": "4.3.0",
  1967. "System.Runtime.Handles": "4.3.0",
  1968. "System.Runtime.InteropServices": "4.3.0",
  1969. "System.Runtime.Numerics": "4.3.0",
  1970. "System.Security.Cryptography.Algorithms": "4.3.0",
  1971. "System.Security.Cryptography.Cng": "4.3.0",
  1972. "System.Security.Cryptography.Csp": "4.3.0",
  1973. "System.Security.Cryptography.Encoding": "4.3.0",
  1974. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1975. "System.Security.Cryptography.Primitives": "4.3.0",
  1976. "System.Text.Encoding": "4.3.0",
  1977. "System.Threading": "4.3.0",
  1978. "runtime.native.System": "4.3.0",
  1979. "runtime.native.System.Net.Http": "4.3.0",
  1980. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1981. },
  1982. "compile": {
  1983. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  1984. },
  1985. "runtimeTargets": {
  1986. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1987. "assetType": "runtime",
  1988. "rid": "unix"
  1989. },
  1990. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1991. "assetType": "runtime",
  1992. "rid": "win"
  1993. }
  1994. }
  1995. },
  1996. "System.Security.Permissions/4.4.1": {
  1997. "type": "package",
  1998. "dependencies": {
  1999. "System.Security.AccessControl": "4.4.0"
  2000. },
  2001. "compile": {
  2002. "ref/netstandard2.0/System.Security.Permissions.dll": {}
  2003. },
  2004. "runtime": {
  2005. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  2006. }
  2007. },
  2008. "System.Security.Principal.Windows/4.4.0": {
  2009. "type": "package",
  2010. "dependencies": {
  2011. "Microsoft.NETCore.Platforms": "2.0.0"
  2012. },
  2013. "compile": {
  2014. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2015. },
  2016. "runtime": {
  2017. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2018. },
  2019. "runtimeTargets": {
  2020. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2021. "assetType": "runtime",
  2022. "rid": "unix"
  2023. },
  2024. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2025. "assetType": "runtime",
  2026. "rid": "win"
  2027. }
  2028. }
  2029. },
  2030. "System.ServiceModel.Duplex/4.4.4": {
  2031. "type": "package",
  2032. "dependencies": {
  2033. "System.Private.ServiceModel": "4.4.4",
  2034. "System.ServiceModel.Primitives": "4.4.4"
  2035. },
  2036. "compile": {
  2037. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2038. },
  2039. "runtime": {
  2040. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2041. }
  2042. },
  2043. "System.ServiceModel.Http/4.4.4": {
  2044. "type": "package",
  2045. "dependencies": {
  2046. "System.Private.ServiceModel": "4.4.4",
  2047. "System.ServiceModel.Primitives": "4.4.4"
  2048. },
  2049. "compile": {
  2050. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  2051. },
  2052. "runtime": {
  2053. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  2054. }
  2055. },
  2056. "System.ServiceModel.NetTcp/4.4.4": {
  2057. "type": "package",
  2058. "dependencies": {
  2059. "System.Private.ServiceModel": "4.4.4",
  2060. "System.ServiceModel.Primitives": "4.4.4"
  2061. },
  2062. "compile": {
  2063. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2064. },
  2065. "runtime": {
  2066. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2067. }
  2068. },
  2069. "System.ServiceModel.Primitives/4.4.4": {
  2070. "type": "package",
  2071. "dependencies": {
  2072. "System.Private.ServiceModel": "4.4.4"
  2073. },
  2074. "compile": {
  2075. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2076. "ref/netstandard2.0/System.ServiceModel.dll": {}
  2077. },
  2078. "runtime": {
  2079. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2080. "lib/netstandard2.0/System.ServiceModel.dll": {}
  2081. }
  2082. },
  2083. "System.ServiceModel.Security/4.4.4": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "System.Private.ServiceModel": "4.4.4",
  2087. "System.ServiceModel.Primitives": "4.4.4"
  2088. },
  2089. "compile": {
  2090. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  2091. },
  2092. "runtime": {
  2093. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  2094. }
  2095. },
  2096. "System.Text.Encoding/4.3.0": {
  2097. "type": "package",
  2098. "dependencies": {
  2099. "Microsoft.NETCore.Platforms": "1.1.0",
  2100. "Microsoft.NETCore.Targets": "1.1.0",
  2101. "System.Runtime": "4.3.0"
  2102. },
  2103. "compile": {
  2104. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2105. }
  2106. },
  2107. "System.Text.Encoding.CodePages/4.4.0": {
  2108. "type": "package",
  2109. "dependencies": {
  2110. "Microsoft.NETCore.Platforms": "2.0.0"
  2111. },
  2112. "compile": {
  2113. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2114. },
  2115. "runtime": {
  2116. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2117. },
  2118. "runtimeTargets": {
  2119. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2120. "assetType": "runtime",
  2121. "rid": "win"
  2122. }
  2123. }
  2124. },
  2125. "System.Text.Encoding.Extensions/4.3.0": {
  2126. "type": "package",
  2127. "dependencies": {
  2128. "Microsoft.NETCore.Platforms": "1.1.0",
  2129. "Microsoft.NETCore.Targets": "1.1.0",
  2130. "System.Runtime": "4.3.0",
  2131. "System.Text.Encoding": "4.3.0"
  2132. },
  2133. "compile": {
  2134. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2135. }
  2136. },
  2137. "System.Text.RegularExpressions/4.3.0": {
  2138. "type": "package",
  2139. "dependencies": {
  2140. "System.Runtime": "4.3.0"
  2141. },
  2142. "compile": {
  2143. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2144. },
  2145. "runtime": {
  2146. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2147. }
  2148. },
  2149. "System.Threading/4.3.0": {
  2150. "type": "package",
  2151. "dependencies": {
  2152. "System.Runtime": "4.3.0",
  2153. "System.Threading.Tasks": "4.3.0"
  2154. },
  2155. "compile": {
  2156. "ref/netstandard1.3/System.Threading.dll": {}
  2157. },
  2158. "runtime": {
  2159. "lib/netstandard1.3/System.Threading.dll": {}
  2160. }
  2161. },
  2162. "System.Threading.Channels/4.7.1": {
  2163. "type": "package",
  2164. "compile": {
  2165. "lib/netcoreapp3.0/System.Threading.Channels.dll": {}
  2166. },
  2167. "runtime": {
  2168. "lib/netcoreapp3.0/System.Threading.Channels.dll": {}
  2169. }
  2170. },
  2171. "System.Threading.Tasks/4.3.0": {
  2172. "type": "package",
  2173. "dependencies": {
  2174. "Microsoft.NETCore.Platforms": "1.1.0",
  2175. "Microsoft.NETCore.Targets": "1.1.0",
  2176. "System.Runtime": "4.3.0"
  2177. },
  2178. "compile": {
  2179. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2180. }
  2181. },
  2182. "System.Threading.Tasks.Extensions/4.3.0": {
  2183. "type": "package",
  2184. "dependencies": {
  2185. "System.Collections": "4.3.0",
  2186. "System.Runtime": "4.3.0",
  2187. "System.Threading.Tasks": "4.3.0"
  2188. },
  2189. "compile": {
  2190. "lib/netstandard1.0/_._": {}
  2191. },
  2192. "runtime": {
  2193. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2194. }
  2195. },
  2196. "System.Threading.Thread/4.3.0": {
  2197. "type": "package",
  2198. "dependencies": {
  2199. "System.Runtime": "4.3.0"
  2200. },
  2201. "compile": {
  2202. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2203. },
  2204. "runtime": {
  2205. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2206. }
  2207. },
  2208. "System.Threading.ThreadPool/4.0.10": {
  2209. "type": "package",
  2210. "dependencies": {
  2211. "System.Runtime": "4.1.0",
  2212. "System.Runtime.Handles": "4.0.1"
  2213. },
  2214. "compile": {
  2215. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2216. },
  2217. "runtime": {
  2218. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2219. }
  2220. },
  2221. "System.Threading.Timer/4.3.0": {
  2222. "type": "package",
  2223. "dependencies": {
  2224. "Microsoft.NETCore.Platforms": "1.1.0",
  2225. "Microsoft.NETCore.Targets": "1.1.0",
  2226. "System.Runtime": "4.3.0"
  2227. },
  2228. "compile": {
  2229. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2230. }
  2231. },
  2232. "System.ValueTuple/4.5.0": {
  2233. "type": "package",
  2234. "compile": {
  2235. "ref/netcoreapp2.0/_._": {}
  2236. },
  2237. "runtime": {
  2238. "lib/netcoreapp2.0/_._": {}
  2239. }
  2240. },
  2241. "System.Xml.ReaderWriter/4.3.0": {
  2242. "type": "package",
  2243. "dependencies": {
  2244. "System.Collections": "4.3.0",
  2245. "System.Diagnostics.Debug": "4.3.0",
  2246. "System.Globalization": "4.3.0",
  2247. "System.IO": "4.3.0",
  2248. "System.IO.FileSystem": "4.3.0",
  2249. "System.IO.FileSystem.Primitives": "4.3.0",
  2250. "System.Resources.ResourceManager": "4.3.0",
  2251. "System.Runtime": "4.3.0",
  2252. "System.Runtime.Extensions": "4.3.0",
  2253. "System.Runtime.InteropServices": "4.3.0",
  2254. "System.Text.Encoding": "4.3.0",
  2255. "System.Text.Encoding.Extensions": "4.3.0",
  2256. "System.Text.RegularExpressions": "4.3.0",
  2257. "System.Threading.Tasks": "4.3.0",
  2258. "System.Threading.Tasks.Extensions": "4.3.0"
  2259. },
  2260. "compile": {
  2261. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2262. },
  2263. "runtime": {
  2264. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2265. }
  2266. },
  2267. "System.Xml.XDocument/4.3.0": {
  2268. "type": "package",
  2269. "dependencies": {
  2270. "System.Collections": "4.3.0",
  2271. "System.Diagnostics.Debug": "4.3.0",
  2272. "System.Diagnostics.Tools": "4.3.0",
  2273. "System.Globalization": "4.3.0",
  2274. "System.IO": "4.3.0",
  2275. "System.Reflection": "4.3.0",
  2276. "System.Resources.ResourceManager": "4.3.0",
  2277. "System.Runtime": "4.3.0",
  2278. "System.Runtime.Extensions": "4.3.0",
  2279. "System.Text.Encoding": "4.3.0",
  2280. "System.Threading": "4.3.0",
  2281. "System.Xml.ReaderWriter": "4.3.0"
  2282. },
  2283. "compile": {
  2284. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2285. },
  2286. "runtime": {
  2287. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2288. }
  2289. },
  2290. "System.Xml.XmlDocument/4.0.1": {
  2291. "type": "package",
  2292. "dependencies": {
  2293. "System.Collections": "4.0.11",
  2294. "System.Diagnostics.Debug": "4.0.11",
  2295. "System.Globalization": "4.0.11",
  2296. "System.IO": "4.1.0",
  2297. "System.Resources.ResourceManager": "4.0.1",
  2298. "System.Runtime": "4.1.0",
  2299. "System.Runtime.Extensions": "4.1.0",
  2300. "System.Text.Encoding": "4.0.11",
  2301. "System.Threading": "4.0.11",
  2302. "System.Xml.ReaderWriter": "4.0.11"
  2303. },
  2304. "compile": {
  2305. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2306. },
  2307. "runtime": {
  2308. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2309. }
  2310. },
  2311. "System.Xml.XPath/4.0.1": {
  2312. "type": "package",
  2313. "dependencies": {
  2314. "System.Collections": "4.0.11",
  2315. "System.Diagnostics.Debug": "4.0.11",
  2316. "System.Globalization": "4.0.11",
  2317. "System.IO": "4.1.0",
  2318. "System.Resources.ResourceManager": "4.0.1",
  2319. "System.Runtime": "4.1.0",
  2320. "System.Runtime.Extensions": "4.1.0",
  2321. "System.Threading": "4.0.11",
  2322. "System.Xml.ReaderWriter": "4.0.11"
  2323. },
  2324. "compile": {
  2325. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2326. },
  2327. "runtime": {
  2328. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2329. }
  2330. },
  2331. "System.Xml.XPath.XmlDocument/4.0.1": {
  2332. "type": "package",
  2333. "dependencies": {
  2334. "System.Collections": "4.0.11",
  2335. "System.Globalization": "4.0.11",
  2336. "System.IO": "4.1.0",
  2337. "System.Resources.ResourceManager": "4.0.1",
  2338. "System.Runtime": "4.1.0",
  2339. "System.Runtime.Extensions": "4.1.0",
  2340. "System.Threading": "4.0.11",
  2341. "System.Xml.ReaderWriter": "4.0.11",
  2342. "System.Xml.XPath": "4.0.1",
  2343. "System.Xml.XmlDocument": "4.0.1"
  2344. },
  2345. "compile": {
  2346. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2347. },
  2348. "runtime": {
  2349. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2350. }
  2351. },
  2352. "ZKWeb.System.Drawing/4.0.1": {
  2353. "type": "package",
  2354. "dependencies": {
  2355. "System.Collections.NonGeneric": "4.3.0",
  2356. "System.Collections.Specialized": "4.3.0",
  2357. "System.ComponentModel.TypeConverter": "4.3.0",
  2358. "System.Runtime.InteropServices": "4.3.0",
  2359. "System.Runtime.Serialization.Primitives": "4.3.0",
  2360. "System.Threading.Thread": "4.3.0"
  2361. },
  2362. "compile": {
  2363. "lib/netstandard2.0/ZKWeb.System.Drawing.dll": {}
  2364. },
  2365. "runtime": {
  2366. "lib/netstandard2.0/ZKWeb.System.Drawing.dll": {}
  2367. }
  2368. }
  2369. }
  2370. },
  2371. "libraries": {
  2372. "BouncyCastle.NetCore/1.8.3": {
  2373. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2374. "type": "package",
  2375. "path": "bouncycastle.netcore/1.8.3",
  2376. "files": [
  2377. ".nupkg.metadata",
  2378. ".signature.p7s",
  2379. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2380. "bouncycastle.netcore.nuspec",
  2381. "lib/Mono/BouncyCastle.Crypto.dll",
  2382. "lib/Mono/BouncyCastle.Crypto.xml",
  2383. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2384. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2385. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2386. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2387. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2388. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2389. "lib/net20/BouncyCastle.Crypto.dll",
  2390. "lib/net20/BouncyCastle.Crypto.xml",
  2391. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2392. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2393. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2394. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2395. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2396. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2397. ]
  2398. },
  2399. "CSRedisCore/3.6.5": {
  2400. "sha512": "leAH+nG/WalDKiQFy1aCbUzNimvguRUvOnC8TwwcgoxeAonF7oWv0ilUpJ1ntqtRmLZhRWSO+we8yf0xm4Q/7A==",
  2401. "type": "package",
  2402. "path": "csrediscore/3.6.5",
  2403. "files": [
  2404. ".nupkg.metadata",
  2405. ".signature.p7s",
  2406. "csrediscore.3.6.5.nupkg.sha512",
  2407. "csrediscore.nuspec",
  2408. "lib/net40/CSRedisCore.dll",
  2409. "lib/net40/CSRedisCore.xml",
  2410. "lib/net45/CSRedisCore.dll",
  2411. "lib/net45/CSRedisCore.xml",
  2412. "lib/netstandard2.0/CSRedisCore.dll",
  2413. "lib/netstandard2.0/CSRedisCore.xml"
  2414. ]
  2415. },
  2416. "Google.Protobuf/3.6.1": {
  2417. "sha512": "741fGeDQjixBJaU2j+0CbrmZXsNJkTn/hWbOh4fLVXndHsCclJmWznCPWrJmPoZKvajBvAz3e8ECJOUvRtwjNQ==",
  2418. "type": "package",
  2419. "path": "google.protobuf/3.6.1",
  2420. "files": [
  2421. ".nupkg.metadata",
  2422. ".signature.p7s",
  2423. "google.protobuf.3.6.1.nupkg.sha512",
  2424. "google.protobuf.nuspec",
  2425. "lib/net45/Google.Protobuf.dll",
  2426. "lib/net45/Google.Protobuf.xml",
  2427. "lib/netstandard1.0/Google.Protobuf.dll",
  2428. "lib/netstandard1.0/Google.Protobuf.xml"
  2429. ]
  2430. },
  2431. "GraphQL/2.4.0": {
  2432. "sha512": "TMCyq9hB4rEyjZrI61BCtFIRUYfV+c3WrydeWefg4mOn4kVNRPDHTb2KtZrWbIlDriY6u5Dze0FkpXs4RlYVzQ==",
  2433. "type": "package",
  2434. "path": "graphql/2.4.0",
  2435. "files": [
  2436. ".nupkg.metadata",
  2437. ".signature.p7s",
  2438. "graphql.2.4.0.nupkg.sha512",
  2439. "graphql.nuspec",
  2440. "lib/net45/GraphQL.dll",
  2441. "lib/netstandard1.3/GraphQL.dll",
  2442. "lib/netstandard2.0/GraphQL.dll"
  2443. ]
  2444. },
  2445. "GraphQL-Parser/3.0.0": {
  2446. "sha512": "6vPhia+kfo44leH7GNAo4g/BRVxvprtu+96N4T218dTM/0KYhRCA8diqZFIib777TgKZpQfaaL014McoCuHTJA==",
  2447. "type": "package",
  2448. "path": "graphql-parser/3.0.0",
  2449. "files": [
  2450. ".nupkg.metadata",
  2451. ".signature.p7s",
  2452. "graphql-parser.3.0.0.nupkg.sha512",
  2453. "graphql-parser.nuspec",
  2454. "lib/net45/GraphQL-Parser.dll",
  2455. "lib/netstandard1.1/GraphQL-Parser.dll"
  2456. ]
  2457. },
  2458. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  2459. "sha512": "FrlxgBG6+FKlYr1IVxXNXSK7jpxiIYf036VNR1UgopKSIUNjaK2zvkhfVgFZVavagitQ/+UZ8Snnm6axyAVRNg==",
  2460. "type": "package",
  2461. "path": "microsoft.aspnetcore.authentication.jwtbearer/3.0.0",
  2462. "files": [
  2463. ".nupkg.metadata",
  2464. ".signature.p7s",
  2465. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  2466. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  2467. "microsoft.aspnetcore.authentication.jwtbearer.3.0.0.nupkg.sha512",
  2468. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  2469. ]
  2470. },
  2471. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2472. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  2473. "type": "package",
  2474. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  2475. "files": [
  2476. ".nupkg.metadata",
  2477. ".signature.p7s",
  2478. "LICENSE.TXT",
  2479. "THIRD-PARTY-NOTICES.TXT",
  2480. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2481. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2482. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2483. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2484. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2485. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2486. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  2487. "microsoft.bcl.asyncinterfaces.nuspec",
  2488. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2489. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2490. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2491. "useSharedDesignerContext.txt",
  2492. "version.txt"
  2493. ]
  2494. },
  2495. "Microsoft.Bcl.HashCode/1.1.0": {
  2496. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  2497. "type": "package",
  2498. "path": "microsoft.bcl.hashcode/1.1.0",
  2499. "files": [
  2500. ".nupkg.metadata",
  2501. ".signature.p7s",
  2502. "LICENSE.TXT",
  2503. "THIRD-PARTY-NOTICES.TXT",
  2504. "lib/net461/Microsoft.Bcl.HashCode.dll",
  2505. "lib/net461/Microsoft.Bcl.HashCode.xml",
  2506. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2507. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  2508. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2509. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  2510. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2511. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  2512. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  2513. "microsoft.bcl.hashcode.nuspec",
  2514. "ref/net461/Microsoft.Bcl.HashCode.dll",
  2515. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2516. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2517. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2518. "useSharedDesignerContext.txt",
  2519. "version.txt"
  2520. ]
  2521. },
  2522. "Microsoft.CSharp/4.7.0": {
  2523. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2524. "type": "package",
  2525. "path": "microsoft.csharp/4.7.0",
  2526. "files": [
  2527. ".nupkg.metadata",
  2528. ".signature.p7s",
  2529. "LICENSE.TXT",
  2530. "THIRD-PARTY-NOTICES.TXT",
  2531. "lib/MonoAndroid10/_._",
  2532. "lib/MonoTouch10/_._",
  2533. "lib/net45/_._",
  2534. "lib/netcore50/Microsoft.CSharp.dll",
  2535. "lib/netcoreapp2.0/_._",
  2536. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2537. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2538. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2539. "lib/portable-net45+win8+wp8+wpa81/_._",
  2540. "lib/uap10.0.16299/_._",
  2541. "lib/win8/_._",
  2542. "lib/wp80/_._",
  2543. "lib/wpa81/_._",
  2544. "lib/xamarinios10/_._",
  2545. "lib/xamarinmac20/_._",
  2546. "lib/xamarintvos10/_._",
  2547. "lib/xamarinwatchos10/_._",
  2548. "microsoft.csharp.4.7.0.nupkg.sha512",
  2549. "microsoft.csharp.nuspec",
  2550. "ref/MonoAndroid10/_._",
  2551. "ref/MonoTouch10/_._",
  2552. "ref/net45/_._",
  2553. "ref/netcore50/Microsoft.CSharp.dll",
  2554. "ref/netcore50/Microsoft.CSharp.xml",
  2555. "ref/netcore50/de/Microsoft.CSharp.xml",
  2556. "ref/netcore50/es/Microsoft.CSharp.xml",
  2557. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2558. "ref/netcore50/it/Microsoft.CSharp.xml",
  2559. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2560. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2561. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2562. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2563. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2564. "ref/netcoreapp2.0/_._",
  2565. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2566. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2567. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2568. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2569. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2570. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2571. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2572. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2573. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2574. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2575. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2576. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2577. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2578. "ref/portable-net45+win8+wp8+wpa81/_._",
  2579. "ref/uap10.0.16299/_._",
  2580. "ref/win8/_._",
  2581. "ref/wp80/_._",
  2582. "ref/wpa81/_._",
  2583. "ref/xamarinios10/_._",
  2584. "ref/xamarinmac20/_._",
  2585. "ref/xamarintvos10/_._",
  2586. "ref/xamarinwatchos10/_._",
  2587. "useSharedDesignerContext.txt",
  2588. "version.txt"
  2589. ]
  2590. },
  2591. "Microsoft.EntityFrameworkCore/3.1.0": {
  2592. "sha512": "BG+K/TBDlmkFUviU8lPvmQ3/nDf9e5MKh1il31gLEToV2kgxgkg+JulhtM0xOph6OU1Iyd5A+3c5FyBpI2xh3A==",
  2593. "type": "package",
  2594. "path": "microsoft.entityframeworkcore/3.1.0",
  2595. "files": [
  2596. ".nupkg.metadata",
  2597. ".signature.p7s",
  2598. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  2599. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  2600. "microsoft.entityframeworkcore.3.1.0.nupkg.sha512",
  2601. "microsoft.entityframeworkcore.nuspec",
  2602. "packageIcon.png"
  2603. ]
  2604. },
  2605. "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": {
  2606. "sha512": "6Wn8vQUq04aeXKVf7pu6/hQxqQliSyM5TocAJUBRQpDNAZGuu3nWMx1biEtZqhGXa4UTLTIJCOb8YANToC8ooA==",
  2607. "type": "package",
  2608. "path": "microsoft.entityframeworkcore.abstractions/3.1.0",
  2609. "files": [
  2610. ".nupkg.metadata",
  2611. ".signature.p7s",
  2612. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2613. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2614. "microsoft.entityframeworkcore.abstractions.3.1.0.nupkg.sha512",
  2615. "microsoft.entityframeworkcore.abstractions.nuspec",
  2616. "packageIcon.png"
  2617. ]
  2618. },
  2619. "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": {
  2620. "sha512": "Shqqf6MFaIkcuR6dMEBzvG0LMJMoKKMx+k14nUax98vv33i3AUUGxKF9VfJt7VsjOA3xu+KOdzCW8YJ2KLoRIA==",
  2621. "type": "package",
  2622. "path": "microsoft.entityframeworkcore.analyzers/3.1.0",
  2623. "files": [
  2624. ".nupkg.metadata",
  2625. ".signature.p7s",
  2626. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2627. "lib/netstandard2.0/_._",
  2628. "microsoft.entityframeworkcore.analyzers.3.1.0.nupkg.sha512",
  2629. "microsoft.entityframeworkcore.analyzers.nuspec",
  2630. "packageIcon.png"
  2631. ]
  2632. },
  2633. "Microsoft.EntityFrameworkCore.Design/3.1.0": {
  2634. "sha512": "zxyus0fUcAhst5Essf2g+GFgKN7BCITJ004DR4uAkLkn8lLS5MoxNDCBNjCF5lGrNx7a6wBaqQE7tgt7Ss2Hog==",
  2635. "type": "package",
  2636. "path": "microsoft.entityframeworkcore.design/3.1.0",
  2637. "files": [
  2638. ".nupkg.metadata",
  2639. ".signature.p7s",
  2640. "build/net461/Microsoft.EntityFrameworkCore.Design.props",
  2641. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props",
  2642. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll",
  2643. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml",
  2644. "microsoft.entityframeworkcore.design.3.1.0.nupkg.sha512",
  2645. "microsoft.entityframeworkcore.design.nuspec",
  2646. "packageIcon.png"
  2647. ]
  2648. },
  2649. "Microsoft.EntityFrameworkCore.Relational/3.1.0": {
  2650. "sha512": "eeiqVqzXVuwQsUbqXMyXSEUn/EHB9zmDsr5f/+v6uEt0ir7pgItuIi3I7QV4xvM/s0KbFsqGUOrAFPeRHE3plg==",
  2651. "type": "package",
  2652. "path": "microsoft.entityframeworkcore.relational/3.1.0",
  2653. "files": [
  2654. ".nupkg.metadata",
  2655. ".signature.p7s",
  2656. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2657. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2658. "microsoft.entityframeworkcore.relational.3.1.0.nupkg.sha512",
  2659. "microsoft.entityframeworkcore.relational.nuspec",
  2660. "packageIcon.png"
  2661. ]
  2662. },
  2663. "Microsoft.EntityFrameworkCore.Tools/3.1.0": {
  2664. "sha512": "b209nM8vHZXKG6hqZH2cYLpSVEmty9aDZf2gcYyJhpaEhf94AGdRfh8mlZCclJudjk07B37ebRysT1G//0IRzQ==",
  2665. "type": "package",
  2666. "path": "microsoft.entityframeworkcore.tools/3.1.0",
  2667. "hasTools": true,
  2668. "files": [
  2669. ".nupkg.metadata",
  2670. ".signature.p7s",
  2671. "lib/netstandard2.0/_._",
  2672. "microsoft.entityframeworkcore.tools.3.1.0.nupkg.sha512",
  2673. "microsoft.entityframeworkcore.tools.nuspec",
  2674. "packageIcon.png",
  2675. "tools/EntityFrameworkCore.PS2.psd1",
  2676. "tools/EntityFrameworkCore.PS2.psm1",
  2677. "tools/EntityFrameworkCore.psd1",
  2678. "tools/EntityFrameworkCore.psm1",
  2679. "tools/about_EntityFrameworkCore.help.txt",
  2680. "tools/init.ps1",
  2681. "tools/net461/any/ef.exe",
  2682. "tools/net461/win-x86/ef.exe",
  2683. "tools/netcoreapp2.0/any/ef.dll",
  2684. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  2685. ]
  2686. },
  2687. "Microsoft.Extensions.Caching.Abstractions/3.1.0": {
  2688. "sha512": "+R7REEI+Pks1/ITjDdvey+QJzIG3tIYOtrv4RT40UVVe2Y1Sa8pIjJy3MzPZbyXVgOFN3JHFz1UZH8kz04aa5A==",
  2689. "type": "package",
  2690. "path": "microsoft.extensions.caching.abstractions/3.1.0",
  2691. "files": [
  2692. ".nupkg.metadata",
  2693. ".signature.p7s",
  2694. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  2695. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  2696. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2697. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2698. "microsoft.extensions.caching.abstractions.3.1.0.nupkg.sha512",
  2699. "microsoft.extensions.caching.abstractions.nuspec",
  2700. "packageIcon.png"
  2701. ]
  2702. },
  2703. "Microsoft.Extensions.Caching.Memory/3.1.0": {
  2704. "sha512": "SWVYYFN8K4bUEZAwVbcdxjApYE7JtbjPXIqsQt/vKE243u0qeDuS7bA5hKVr+k5lo2R+BpITe6Mvqmkus2xDRQ==",
  2705. "type": "package",
  2706. "path": "microsoft.extensions.caching.memory/3.1.0",
  2707. "files": [
  2708. ".nupkg.metadata",
  2709. ".signature.p7s",
  2710. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  2711. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  2712. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2713. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2714. "microsoft.extensions.caching.memory.3.1.0.nupkg.sha512",
  2715. "microsoft.extensions.caching.memory.nuspec",
  2716. "packageIcon.png"
  2717. ]
  2718. },
  2719. "Microsoft.Extensions.Configuration/3.1.0": {
  2720. "sha512": "Lu41BWNmwhKr6LgyQvcYBOge0pPvmiaK8R5UHXX4//wBhonJyWcT2OK1mqYfEM5G7pTf31fPrpIHOT6sN7EGOA==",
  2721. "type": "package",
  2722. "path": "microsoft.extensions.configuration/3.1.0",
  2723. "files": [
  2724. ".nupkg.metadata",
  2725. ".signature.p7s",
  2726. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  2727. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  2728. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  2729. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  2730. "microsoft.extensions.configuration.3.1.0.nupkg.sha512",
  2731. "microsoft.extensions.configuration.nuspec",
  2732. "packageIcon.png"
  2733. ]
  2734. },
  2735. "Microsoft.Extensions.Configuration.Abstractions/3.1.0": {
  2736. "sha512": "ESz6bVoDQX7sgWdKHF6G9Pq672T8k+19AFb/txDXwdz7MoqaNQj2/in3agm/3qae9V+WvQZH86LLTNVo0it8vQ==",
  2737. "type": "package",
  2738. "path": "microsoft.extensions.configuration.abstractions/3.1.0",
  2739. "files": [
  2740. ".nupkg.metadata",
  2741. ".signature.p7s",
  2742. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  2743. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  2744. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2745. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2746. "microsoft.extensions.configuration.abstractions.3.1.0.nupkg.sha512",
  2747. "microsoft.extensions.configuration.abstractions.nuspec",
  2748. "packageIcon.png"
  2749. ]
  2750. },
  2751. "Microsoft.Extensions.Configuration.Binder/3.1.0": {
  2752. "sha512": "o9eELDBfNkR7sUtYysFZ1Q7BQ1mYt27DMkups/3vu7xgPyOpMD+iAfrBZFzUXT2iw0fmFb8s1gfNBZS+IgjKdQ==",
  2753. "type": "package",
  2754. "path": "microsoft.extensions.configuration.binder/3.1.0",
  2755. "files": [
  2756. ".nupkg.metadata",
  2757. ".signature.p7s",
  2758. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  2759. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  2760. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  2761. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  2762. "microsoft.extensions.configuration.binder.3.1.0.nupkg.sha512",
  2763. "microsoft.extensions.configuration.binder.nuspec",
  2764. "packageIcon.png"
  2765. ]
  2766. },
  2767. "Microsoft.Extensions.DependencyInjection/3.1.0": {
  2768. "sha512": "KVkv3aF2MQpmGFRh4xRx2CNbc2sjDFk+lH4ySrjWSOS+XoY1Xc+sJphw3N0iYOpoeCCq8976ceVYDH8sdx2qIQ==",
  2769. "type": "package",
  2770. "path": "microsoft.extensions.dependencyinjection/3.1.0",
  2771. "files": [
  2772. ".nupkg.metadata",
  2773. ".signature.p7s",
  2774. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2775. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2776. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  2777. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  2778. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2779. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2780. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2781. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2782. "microsoft.extensions.dependencyinjection.3.1.0.nupkg.sha512",
  2783. "microsoft.extensions.dependencyinjection.nuspec",
  2784. "packageIcon.png"
  2785. ]
  2786. },
  2787. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": {
  2788. "sha512": "44rDtOf1JXXAFpNT2EXMExaDm/4OJ2RXOL9i9lE4bK427nzC7Exphv+beB6IgluyE2GIoo8zezTStMXI7MQ8WA==",
  2789. "type": "package",
  2790. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.0",
  2791. "files": [
  2792. ".nupkg.metadata",
  2793. ".signature.p7s",
  2794. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2795. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2796. "microsoft.extensions.dependencyinjection.abstractions.3.1.0.nupkg.sha512",
  2797. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2798. "packageIcon.png"
  2799. ]
  2800. },
  2801. "Microsoft.Extensions.Logging/3.1.0": {
  2802. "sha512": "P+8sKQ8L4ooL79sxxqwFPxGGC3aBrUDLB/dZqhs4J0XjTyrkeeyJQ4D4nzJB6OnAhy78HIIgQ/RbD6upOXLynw==",
  2803. "type": "package",
  2804. "path": "microsoft.extensions.logging/3.1.0",
  2805. "files": [
  2806. ".nupkg.metadata",
  2807. ".signature.p7s",
  2808. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  2809. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  2810. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2811. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2812. "microsoft.extensions.logging.3.1.0.nupkg.sha512",
  2813. "microsoft.extensions.logging.nuspec",
  2814. "packageIcon.png"
  2815. ]
  2816. },
  2817. "Microsoft.Extensions.Logging.Abstractions/3.1.0": {
  2818. "sha512": "jjo4YXRx6MIpv6DiRxJjSpl+sPP0+5VW0clMEdLyIAz44PPwrDTFrd5PZckIxIXl1kKZ2KK6IL2nkt0+ug2MQg==",
  2819. "type": "package",
  2820. "path": "microsoft.extensions.logging.abstractions/3.1.0",
  2821. "files": [
  2822. ".nupkg.metadata",
  2823. ".signature.p7s",
  2824. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2825. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2826. "microsoft.extensions.logging.abstractions.3.1.0.nupkg.sha512",
  2827. "microsoft.extensions.logging.abstractions.nuspec",
  2828. "packageIcon.png"
  2829. ]
  2830. },
  2831. "Microsoft.Extensions.Options/3.1.0": {
  2832. "sha512": "9b6JHY7TAXrSfZ6EEGf+j8XnqKIiMPErfmaNXhJYSCb+BUW2H4RtzkNJvwLJzwgzqBP0wtTjyA6Uw4BPPdmkMw==",
  2833. "type": "package",
  2834. "path": "microsoft.extensions.options/3.1.0",
  2835. "files": [
  2836. ".nupkg.metadata",
  2837. ".signature.p7s",
  2838. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  2839. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  2840. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2841. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2842. "microsoft.extensions.options.3.1.0.nupkg.sha512",
  2843. "microsoft.extensions.options.nuspec",
  2844. "packageIcon.png"
  2845. ]
  2846. },
  2847. "Microsoft.Extensions.Primitives/3.1.0": {
  2848. "sha512": "LEKAnX7lhUhSoIc2XraCTK3M4IU/LdVUzCe464Sa4+7F4ZJuXHHRzZli2mDbiT4xzAZhgqXbvfnb5+CNDcQFfg==",
  2849. "type": "package",
  2850. "path": "microsoft.extensions.primitives/3.1.0",
  2851. "files": [
  2852. ".nupkg.metadata",
  2853. ".signature.p7s",
  2854. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2855. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2856. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2857. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2858. "microsoft.extensions.primitives.3.1.0.nupkg.sha512",
  2859. "microsoft.extensions.primitives.nuspec",
  2860. "packageIcon.png"
  2861. ]
  2862. },
  2863. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  2864. "sha512": "cT9SCW/dN+ulrvAtbh37c36DR6aArENH3S4UtFmvXRx+VGC0ArDgzRaEbEh+ChS4koxdl2oS691250iZhgKvwg==",
  2865. "type": "package",
  2866. "path": "microsoft.identitymodel.jsonwebtokens/5.5.0",
  2867. "files": [
  2868. ".nupkg.metadata",
  2869. ".signature.p7s",
  2870. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2871. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2872. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  2873. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  2874. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  2875. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  2876. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  2877. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  2878. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2879. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2880. "microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512",
  2881. "microsoft.identitymodel.jsonwebtokens.nuspec"
  2882. ]
  2883. },
  2884. "Microsoft.IdentityModel.Logging/5.5.0": {
  2885. "sha512": "1w/Hz/7+al+ugQn+6y0tAPmpN8U0u1aBtl1QXYCVkiJfbCC4tgyroFOuhdztOq48rgeM+3JW9bGqOtkfVurW8w==",
  2886. "type": "package",
  2887. "path": "microsoft.identitymodel.logging/5.5.0",
  2888. "files": [
  2889. ".nupkg.metadata",
  2890. ".signature.p7s",
  2891. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  2892. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  2893. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  2894. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  2895. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  2896. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  2897. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  2898. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  2899. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  2900. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  2901. "microsoft.identitymodel.logging.5.5.0.nupkg.sha512",
  2902. "microsoft.identitymodel.logging.nuspec"
  2903. ]
  2904. },
  2905. "Microsoft.IdentityModel.Protocols/5.5.0": {
  2906. "sha512": "m1gwAQwZjUxzRBC+4H40vYSo9Cms9yUbMdW492rQoXHU77G/ItiKxpk2+W9bWYcdsKUDKudye7im3T3MlVxEkg==",
  2907. "type": "package",
  2908. "path": "microsoft.identitymodel.protocols/5.5.0",
  2909. "files": [
  2910. ".nupkg.metadata",
  2911. ".signature.p7s",
  2912. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  2913. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  2914. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  2915. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  2916. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  2917. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  2918. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  2919. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  2920. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  2921. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  2922. "microsoft.identitymodel.protocols.5.5.0.nupkg.sha512",
  2923. "microsoft.identitymodel.protocols.nuspec"
  2924. ]
  2925. },
  2926. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  2927. "sha512": "21F4QlbaD5CXNs2urNRCO6vljbbrhv3gmGT8P18SKGKZ9IYBCn29extoJriHiPfhABd5b8S7RcdKU50XhERkYg==",
  2928. "type": "package",
  2929. "path": "microsoft.identitymodel.protocols.openidconnect/5.5.0",
  2930. "files": [
  2931. ".nupkg.metadata",
  2932. ".signature.p7s",
  2933. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2934. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2935. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2936. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2937. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2938. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2939. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2940. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2941. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2942. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2943. "microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512",
  2944. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  2945. ]
  2946. },
  2947. "Microsoft.IdentityModel.Tokens/5.5.0": {
  2948. "sha512": "cu1klZiuCwVYbXHs0QdnseuoRGG1/85VX9d1Sk0vbJlKp+HJUN/4pAS/fe2m9bTOYyIPdeCHeksMiVHgo1EfAA==",
  2949. "type": "package",
  2950. "path": "microsoft.identitymodel.tokens/5.5.0",
  2951. "files": [
  2952. ".nupkg.metadata",
  2953. ".signature.p7s",
  2954. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  2955. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  2956. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  2957. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  2958. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  2959. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  2960. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  2961. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  2962. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  2963. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  2964. "microsoft.identitymodel.tokens.5.5.0.nupkg.sha512",
  2965. "microsoft.identitymodel.tokens.nuspec"
  2966. ]
  2967. },
  2968. "Microsoft.NETCore.Platforms/3.1.0": {
  2969. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  2970. "type": "package",
  2971. "path": "microsoft.netcore.platforms/3.1.0",
  2972. "files": [
  2973. ".nupkg.metadata",
  2974. ".signature.p7s",
  2975. "LICENSE.TXT",
  2976. "THIRD-PARTY-NOTICES.TXT",
  2977. "lib/netstandard1.0/_._",
  2978. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  2979. "microsoft.netcore.platforms.nuspec",
  2980. "runtime.json",
  2981. "useSharedDesignerContext.txt",
  2982. "version.txt"
  2983. ]
  2984. },
  2985. "Microsoft.NETCore.Targets/1.1.0": {
  2986. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2987. "type": "package",
  2988. "path": "microsoft.netcore.targets/1.1.0",
  2989. "files": [
  2990. ".nupkg.metadata",
  2991. ".signature.p7s",
  2992. "ThirdPartyNotices.txt",
  2993. "dotnet_library_license.txt",
  2994. "lib/netstandard1.0/_._",
  2995. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2996. "microsoft.netcore.targets.nuspec",
  2997. "runtime.json"
  2998. ]
  2999. },
  3000. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.0": {
  3001. "sha512": "ZHXVe8nDkHXmPlBNGOl3SIxoUKfah2OJOKKmq769gBMqHJMaOrFKhPYsHdTORjKUtwc3AlO1CMLgnljFyyxA/Q==",
  3002. "type": "package",
  3003. "path": "microsoft.visualstudio.web.codegeneration.design/3.1.0",
  3004. "files": [
  3005. ".nupkg.metadata",
  3006. ".signature.p7s",
  3007. "lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3008. "lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3009. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll",
  3010. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.xml",
  3011. "microsoft.visualstudio.web.codegeneration.design.3.1.0.nupkg.sha512",
  3012. "microsoft.visualstudio.web.codegeneration.design.nuspec",
  3013. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3014. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3015. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3016. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3017. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3018. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3019. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3020. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml"
  3021. ]
  3022. },
  3023. "Microsoft.Win32.Primitives/4.3.0": {
  3024. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3025. "type": "package",
  3026. "path": "microsoft.win32.primitives/4.3.0",
  3027. "files": [
  3028. ".nupkg.metadata",
  3029. ".signature.p7s",
  3030. "ThirdPartyNotices.txt",
  3031. "dotnet_library_license.txt",
  3032. "lib/MonoAndroid10/_._",
  3033. "lib/MonoTouch10/_._",
  3034. "lib/net46/Microsoft.Win32.Primitives.dll",
  3035. "lib/xamarinios10/_._",
  3036. "lib/xamarinmac20/_._",
  3037. "lib/xamarintvos10/_._",
  3038. "lib/xamarinwatchos10/_._",
  3039. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3040. "microsoft.win32.primitives.nuspec",
  3041. "ref/MonoAndroid10/_._",
  3042. "ref/MonoTouch10/_._",
  3043. "ref/net46/Microsoft.Win32.Primitives.dll",
  3044. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3045. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3046. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3047. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3048. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3049. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3050. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3051. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3052. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3053. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3054. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3055. "ref/xamarinios10/_._",
  3056. "ref/xamarinmac20/_._",
  3057. "ref/xamarintvos10/_._",
  3058. "ref/xamarinwatchos10/_._"
  3059. ]
  3060. },
  3061. "Microsoft.Win32.SystemEvents/4.7.0": {
  3062. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3063. "type": "package",
  3064. "path": "microsoft.win32.systemevents/4.7.0",
  3065. "files": [
  3066. ".nupkg.metadata",
  3067. ".signature.p7s",
  3068. "LICENSE.TXT",
  3069. "THIRD-PARTY-NOTICES.TXT",
  3070. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3071. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3072. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3073. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3074. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3075. "microsoft.win32.systemevents.nuspec",
  3076. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3077. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3078. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3079. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3080. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3081. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3082. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3083. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3084. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3085. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3086. "useSharedDesignerContext.txt",
  3087. "version.txt"
  3088. ]
  3089. },
  3090. "MySql.Data/8.0.18": {
  3091. "sha512": "BgzDO6yitNn0np6kUbNpgRsXj7o1Km0lZoSdDi3++HuWQdFxbaERuxcYbmkDZEqEtvySxf5ww+dqSE0uf9F5+A==",
  3092. "type": "package",
  3093. "path": "mysql.data/8.0.18",
  3094. "files": [
  3095. ".nupkg.metadata",
  3096. ".signature.p7s",
  3097. "lib/net452/MySql.Data.dll",
  3098. "lib/net452/MySql.Data.xml",
  3099. "lib/netstandard2.0/MySql.Data.dll",
  3100. "lib/netstandard2.0/MySql.Data.xml",
  3101. "lib/netstandard2.1/MySql.Data.dll",
  3102. "lib/netstandard2.1/MySql.Data.xml",
  3103. "mysql.data.8.0.18.nupkg.sha512",
  3104. "mysql.data.nuspec"
  3105. ]
  3106. },
  3107. "MySqlConnector/0.61.0": {
  3108. "sha512": "E01yibVzCkVOmhNsUb+B4amjQKfKFlGiR1huNd6Q8aTCqBrACo0I3JMKvJBMpZfYhAsR8bqB9496PwcGpr+LuQ==",
  3109. "type": "package",
  3110. "path": "mysqlconnector/0.61.0",
  3111. "files": [
  3112. ".nupkg.metadata",
  3113. ".signature.p7s",
  3114. "lib/net45/MySqlConnector.dll",
  3115. "lib/net45/MySqlConnector.xml",
  3116. "lib/net461/MySqlConnector.dll",
  3117. "lib/net461/MySqlConnector.xml",
  3118. "lib/net471/MySqlConnector.dll",
  3119. "lib/net471/MySqlConnector.xml",
  3120. "lib/netcoreapp2.1/MySqlConnector.dll",
  3121. "lib/netcoreapp2.1/MySqlConnector.xml",
  3122. "lib/netcoreapp3.0/MySqlConnector.dll",
  3123. "lib/netcoreapp3.0/MySqlConnector.xml",
  3124. "lib/netstandard1.3/MySqlConnector.dll",
  3125. "lib/netstandard1.3/MySqlConnector.xml",
  3126. "lib/netstandard2.0/MySqlConnector.dll",
  3127. "lib/netstandard2.0/MySqlConnector.xml",
  3128. "lib/netstandard2.1/MySqlConnector.dll",
  3129. "lib/netstandard2.1/MySqlConnector.xml",
  3130. "logo.png",
  3131. "mysqlconnector.0.61.0.nupkg.sha512",
  3132. "mysqlconnector.nuspec"
  3133. ]
  3134. },
  3135. "NETStandard.Library/1.6.1": {
  3136. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  3137. "type": "package",
  3138. "path": "netstandard.library/1.6.1",
  3139. "files": [
  3140. ".nupkg.metadata",
  3141. ".signature.p7s",
  3142. "ThirdPartyNotices.txt",
  3143. "dotnet_library_license.txt",
  3144. "netstandard.library.1.6.1.nupkg.sha512",
  3145. "netstandard.library.nuspec"
  3146. ]
  3147. },
  3148. "Newtonsoft.Json/12.0.3": {
  3149. "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
  3150. "type": "package",
  3151. "path": "newtonsoft.json/12.0.3",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "LICENSE.md",
  3156. "lib/net20/Newtonsoft.Json.dll",
  3157. "lib/net20/Newtonsoft.Json.xml",
  3158. "lib/net35/Newtonsoft.Json.dll",
  3159. "lib/net35/Newtonsoft.Json.xml",
  3160. "lib/net40/Newtonsoft.Json.dll",
  3161. "lib/net40/Newtonsoft.Json.xml",
  3162. "lib/net45/Newtonsoft.Json.dll",
  3163. "lib/net45/Newtonsoft.Json.xml",
  3164. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3165. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3166. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3167. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3168. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3169. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3170. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3171. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3172. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3173. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3174. "newtonsoft.json.12.0.3.nupkg.sha512",
  3175. "newtonsoft.json.nuspec",
  3176. "packageIcon.png"
  3177. ]
  3178. },
  3179. "Pomelo.EntityFrameworkCore.MySql/3.0.1": {
  3180. "sha512": "5yNEvaya2JrGsXiXO8E/EWuPTnkvNWJw2cGcWm5uuW+yfWrqaSHF5lYLRrIdsk4W8SujnSC1m+OIsuENTQ6WGQ==",
  3181. "type": "package",
  3182. "path": "pomelo.entityframeworkcore.mysql/3.0.1",
  3183. "files": [
  3184. ".nupkg.metadata",
  3185. ".signature.p7s",
  3186. "icon.png",
  3187. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  3188. "pomelo.entityframeworkcore.mysql.3.0.1.nupkg.sha512",
  3189. "pomelo.entityframeworkcore.mysql.nuspec"
  3190. ]
  3191. },
  3192. "Pomelo.JsonObject/2.2.1": {
  3193. "sha512": "VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
  3194. "type": "package",
  3195. "path": "pomelo.jsonobject/2.2.1",
  3196. "files": [
  3197. ".nupkg.metadata",
  3198. ".signature.p7s",
  3199. "lib/netstandard2.0/Pomelo.JsonObject.dll",
  3200. "pomelo.jsonobject.2.2.1.nupkg.sha512",
  3201. "pomelo.jsonobject.nuspec"
  3202. ]
  3203. },
  3204. "RabbitMQ.Client/6.2.2": {
  3205. "sha512": "+tJSgE+rQXgLvOxWvOxdZ0+No1EMa86+puZuNlCb4cNryHw2PY2Xiw/y2dz/WWdeJQp74Y2UnNXPkuLiYpvn+A==",
  3206. "type": "package",
  3207. "path": "rabbitmq.client/6.2.2",
  3208. "files": [
  3209. ".nupkg.metadata",
  3210. ".signature.p7s",
  3211. "LICENSE",
  3212. "icon.png",
  3213. "lib/net461/RabbitMQ.Client.dll",
  3214. "lib/net461/RabbitMQ.Client.pdb",
  3215. "lib/net461/RabbitMQ.Client.xml",
  3216. "lib/netstandard2.0/RabbitMQ.Client.dll",
  3217. "lib/netstandard2.0/RabbitMQ.Client.pdb",
  3218. "lib/netstandard2.0/RabbitMQ.Client.xml",
  3219. "rabbitmq.client.6.2.2.nupkg.sha512",
  3220. "rabbitmq.client.nuspec"
  3221. ]
  3222. },
  3223. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3224. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  3225. "type": "package",
  3226. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3227. "files": [
  3228. ".nupkg.metadata",
  3229. ".signature.p7s",
  3230. "ThirdPartyNotices.txt",
  3231. "dotnet_library_license.txt",
  3232. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3233. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3234. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3235. ]
  3236. },
  3237. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3238. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  3239. "type": "package",
  3240. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3241. "files": [
  3242. ".nupkg.metadata",
  3243. ".signature.p7s",
  3244. "ThirdPartyNotices.txt",
  3245. "dotnet_library_license.txt",
  3246. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3247. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3248. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3249. ]
  3250. },
  3251. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3252. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  3253. "type": "package",
  3254. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3255. "files": [
  3256. ".nupkg.metadata",
  3257. ".signature.p7s",
  3258. "ThirdPartyNotices.txt",
  3259. "dotnet_library_license.txt",
  3260. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3261. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3262. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3263. ]
  3264. },
  3265. "runtime.native.System/4.3.0": {
  3266. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3267. "type": "package",
  3268. "path": "runtime.native.system/4.3.0",
  3269. "files": [
  3270. ".nupkg.metadata",
  3271. ".signature.p7s",
  3272. "ThirdPartyNotices.txt",
  3273. "dotnet_library_license.txt",
  3274. "lib/netstandard1.0/_._",
  3275. "runtime.native.system.4.3.0.nupkg.sha512",
  3276. "runtime.native.system.nuspec"
  3277. ]
  3278. },
  3279. "runtime.native.System.IO.Compression/4.3.0": {
  3280. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  3281. "type": "package",
  3282. "path": "runtime.native.system.io.compression/4.3.0",
  3283. "files": [
  3284. ".nupkg.metadata",
  3285. ".signature.p7s",
  3286. "ThirdPartyNotices.txt",
  3287. "dotnet_library_license.txt",
  3288. "lib/netstandard1.0/_._",
  3289. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  3290. "runtime.native.system.io.compression.nuspec"
  3291. ]
  3292. },
  3293. "runtime.native.System.Net.Http/4.3.0": {
  3294. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3295. "type": "package",
  3296. "path": "runtime.native.system.net.http/4.3.0",
  3297. "files": [
  3298. ".nupkg.metadata",
  3299. ".signature.p7s",
  3300. "ThirdPartyNotices.txt",
  3301. "dotnet_library_license.txt",
  3302. "lib/netstandard1.0/_._",
  3303. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3304. "runtime.native.system.net.http.nuspec"
  3305. ]
  3306. },
  3307. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3308. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3309. "type": "package",
  3310. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3311. "files": [
  3312. ".nupkg.metadata",
  3313. ".signature.p7s",
  3314. "ThirdPartyNotices.txt",
  3315. "dotnet_library_license.txt",
  3316. "lib/netstandard1.0/_._",
  3317. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3318. "runtime.native.system.security.cryptography.apple.nuspec"
  3319. ]
  3320. },
  3321. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3322. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  3323. "type": "package",
  3324. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  3325. "files": [
  3326. ".nupkg.metadata",
  3327. ".signature.p7s",
  3328. "ThirdPartyNotices.txt",
  3329. "dotnet_library_license.txt",
  3330. "lib/netstandard1.0/_._",
  3331. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3332. "runtime.native.system.security.cryptography.openssl.nuspec"
  3333. ]
  3334. },
  3335. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3336. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  3337. "type": "package",
  3338. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3339. "files": [
  3340. ".nupkg.metadata",
  3341. ".signature.p7s",
  3342. "ThirdPartyNotices.txt",
  3343. "dotnet_library_license.txt",
  3344. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3345. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3346. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3347. ]
  3348. },
  3349. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3350. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  3351. "type": "package",
  3352. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3353. "files": [
  3354. ".nupkg.metadata",
  3355. ".signature.p7s",
  3356. "ThirdPartyNotices.txt",
  3357. "dotnet_library_license.txt",
  3358. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3359. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3360. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3361. ]
  3362. },
  3363. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3364. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  3365. "type": "package",
  3366. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  3367. "files": [
  3368. ".nupkg.metadata",
  3369. ".signature.p7s",
  3370. "ThirdPartyNotices.txt",
  3371. "dotnet_library_license.txt",
  3372. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3373. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  3374. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  3375. ]
  3376. },
  3377. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3378. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  3379. "type": "package",
  3380. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3381. "files": [
  3382. ".nupkg.metadata",
  3383. ".signature.p7s",
  3384. "ThirdPartyNotices.txt",
  3385. "dotnet_library_license.txt",
  3386. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3387. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3388. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  3389. ]
  3390. },
  3391. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3392. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  3393. "type": "package",
  3394. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3395. "files": [
  3396. ".nupkg.metadata",
  3397. ".signature.p7s",
  3398. "ThirdPartyNotices.txt",
  3399. "dotnet_library_license.txt",
  3400. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3401. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3402. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3403. ]
  3404. },
  3405. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3406. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  3407. "type": "package",
  3408. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3409. "files": [
  3410. ".nupkg.metadata",
  3411. ".signature.p7s",
  3412. "ThirdPartyNotices.txt",
  3413. "dotnet_library_license.txt",
  3414. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3415. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3416. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3417. ]
  3418. },
  3419. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3420. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  3421. "type": "package",
  3422. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3423. "files": [
  3424. ".nupkg.metadata",
  3425. ".signature.p7s",
  3426. "ThirdPartyNotices.txt",
  3427. "dotnet_library_license.txt",
  3428. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3429. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3430. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3431. ]
  3432. },
  3433. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3434. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  3435. "type": "package",
  3436. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3437. "files": [
  3438. ".nupkg.metadata",
  3439. ".signature.p7s",
  3440. "ThirdPartyNotices.txt",
  3441. "dotnet_library_license.txt",
  3442. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3443. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3444. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3445. ]
  3446. },
  3447. "SSH.NET/2016.1.0": {
  3448. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  3449. "type": "package",
  3450. "path": "ssh.net/2016.1.0",
  3451. "files": [
  3452. ".nupkg.metadata",
  3453. ".signature.p7s",
  3454. "lib/net35/Renci.SshNet.dll",
  3455. "lib/net35/Renci.SshNet.xml",
  3456. "lib/net40/Renci.SshNet.dll",
  3457. "lib/net40/Renci.SshNet.xml",
  3458. "lib/netstandard1.3/Renci.SshNet.dll",
  3459. "lib/netstandard1.3/Renci.SshNet.xml",
  3460. "lib/sl4/Renci.SshNet.dll",
  3461. "lib/sl4/Renci.SshNet.xml",
  3462. "lib/sl5/Renci.SshNet.dll",
  3463. "lib/sl5/Renci.SshNet.xml",
  3464. "lib/uap10/Renci.SshNet.dll",
  3465. "lib/uap10/Renci.SshNet.xml",
  3466. "lib/wp71/Renci.SshNet.dll",
  3467. "lib/wp71/Renci.SshNet.xml",
  3468. "lib/wp8/Renci.SshNet.dll",
  3469. "lib/wp8/Renci.SshNet.xml",
  3470. "ssh.net.2016.1.0.nupkg.sha512",
  3471. "ssh.net.nuspec"
  3472. ]
  3473. },
  3474. "SshNet.Security.Cryptography/1.2.0": {
  3475. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  3476. "type": "package",
  3477. "path": "sshnet.security.cryptography/1.2.0",
  3478. "files": [
  3479. ".nupkg.metadata",
  3480. ".signature.p7s",
  3481. "lib/net20/SshNet.Security.Cryptography.dll",
  3482. "lib/net20/SshNet.Security.Cryptography.xml",
  3483. "lib/net40/SshNet.Security.Cryptography.dll",
  3484. "lib/net40/SshNet.Security.Cryptography.xml",
  3485. "lib/net45/SshNet.Security.Cryptography.dll",
  3486. "lib/net45/SshNet.Security.Cryptography.xml",
  3487. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  3488. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  3489. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  3490. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  3491. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  3492. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  3493. "lib/sl4/SshNet.Security.Cryptography.dll",
  3494. "lib/sl4/SshNet.Security.Cryptography.xml",
  3495. "lib/sl5/SshNet.Security.Cryptography.dll",
  3496. "lib/sl5/SshNet.Security.Cryptography.xml",
  3497. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  3498. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  3499. "lib/wp71/SshNet.Security.Cryptography.dll",
  3500. "lib/wp71/SshNet.Security.Cryptography.xml",
  3501. "lib/wp8/SshNet.Security.Cryptography.dll",
  3502. "lib/wp8/SshNet.Security.Cryptography.xml",
  3503. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3504. "sshnet.security.cryptography.nuspec"
  3505. ]
  3506. },
  3507. "System.AppContext/4.3.0": {
  3508. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  3509. "type": "package",
  3510. "path": "system.appcontext/4.3.0",
  3511. "files": [
  3512. ".nupkg.metadata",
  3513. ".signature.p7s",
  3514. "ThirdPartyNotices.txt",
  3515. "dotnet_library_license.txt",
  3516. "lib/MonoAndroid10/_._",
  3517. "lib/MonoTouch10/_._",
  3518. "lib/net46/System.AppContext.dll",
  3519. "lib/net463/System.AppContext.dll",
  3520. "lib/netcore50/System.AppContext.dll",
  3521. "lib/netstandard1.6/System.AppContext.dll",
  3522. "lib/xamarinios10/_._",
  3523. "lib/xamarinmac20/_._",
  3524. "lib/xamarintvos10/_._",
  3525. "lib/xamarinwatchos10/_._",
  3526. "ref/MonoAndroid10/_._",
  3527. "ref/MonoTouch10/_._",
  3528. "ref/net46/System.AppContext.dll",
  3529. "ref/net463/System.AppContext.dll",
  3530. "ref/netstandard/_._",
  3531. "ref/netstandard1.3/System.AppContext.dll",
  3532. "ref/netstandard1.3/System.AppContext.xml",
  3533. "ref/netstandard1.3/de/System.AppContext.xml",
  3534. "ref/netstandard1.3/es/System.AppContext.xml",
  3535. "ref/netstandard1.3/fr/System.AppContext.xml",
  3536. "ref/netstandard1.3/it/System.AppContext.xml",
  3537. "ref/netstandard1.3/ja/System.AppContext.xml",
  3538. "ref/netstandard1.3/ko/System.AppContext.xml",
  3539. "ref/netstandard1.3/ru/System.AppContext.xml",
  3540. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3541. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3542. "ref/netstandard1.6/System.AppContext.dll",
  3543. "ref/netstandard1.6/System.AppContext.xml",
  3544. "ref/netstandard1.6/de/System.AppContext.xml",
  3545. "ref/netstandard1.6/es/System.AppContext.xml",
  3546. "ref/netstandard1.6/fr/System.AppContext.xml",
  3547. "ref/netstandard1.6/it/System.AppContext.xml",
  3548. "ref/netstandard1.6/ja/System.AppContext.xml",
  3549. "ref/netstandard1.6/ko/System.AppContext.xml",
  3550. "ref/netstandard1.6/ru/System.AppContext.xml",
  3551. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3552. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3553. "ref/xamarinios10/_._",
  3554. "ref/xamarinmac20/_._",
  3555. "ref/xamarintvos10/_._",
  3556. "ref/xamarinwatchos10/_._",
  3557. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3558. "system.appcontext.4.3.0.nupkg.sha512",
  3559. "system.appcontext.nuspec"
  3560. ]
  3561. },
  3562. "System.Buffers/4.5.0": {
  3563. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  3564. "type": "package",
  3565. "path": "system.buffers/4.5.0",
  3566. "files": [
  3567. ".nupkg.metadata",
  3568. ".signature.p7s",
  3569. "LICENSE.TXT",
  3570. "THIRD-PARTY-NOTICES.TXT",
  3571. "lib/netcoreapp2.0/_._",
  3572. "lib/netstandard1.1/System.Buffers.dll",
  3573. "lib/netstandard1.1/System.Buffers.xml",
  3574. "lib/netstandard2.0/System.Buffers.dll",
  3575. "lib/netstandard2.0/System.Buffers.xml",
  3576. "lib/uap10.0.16299/_._",
  3577. "ref/net45/System.Buffers.dll",
  3578. "ref/net45/System.Buffers.xml",
  3579. "ref/netcoreapp2.0/_._",
  3580. "ref/netstandard1.1/System.Buffers.dll",
  3581. "ref/netstandard1.1/System.Buffers.xml",
  3582. "ref/netstandard2.0/System.Buffers.dll",
  3583. "ref/netstandard2.0/System.Buffers.xml",
  3584. "ref/uap10.0.16299/_._",
  3585. "system.buffers.4.5.0.nupkg.sha512",
  3586. "system.buffers.nuspec",
  3587. "useSharedDesignerContext.txt",
  3588. "version.txt"
  3589. ]
  3590. },
  3591. "System.Collections/4.3.0": {
  3592. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3593. "type": "package",
  3594. "path": "system.collections/4.3.0",
  3595. "files": [
  3596. ".nupkg.metadata",
  3597. ".signature.p7s",
  3598. "ThirdPartyNotices.txt",
  3599. "dotnet_library_license.txt",
  3600. "lib/MonoAndroid10/_._",
  3601. "lib/MonoTouch10/_._",
  3602. "lib/net45/_._",
  3603. "lib/portable-net45+win8+wp8+wpa81/_._",
  3604. "lib/win8/_._",
  3605. "lib/wp80/_._",
  3606. "lib/wpa81/_._",
  3607. "lib/xamarinios10/_._",
  3608. "lib/xamarinmac20/_._",
  3609. "lib/xamarintvos10/_._",
  3610. "lib/xamarinwatchos10/_._",
  3611. "ref/MonoAndroid10/_._",
  3612. "ref/MonoTouch10/_._",
  3613. "ref/net45/_._",
  3614. "ref/netcore50/System.Collections.dll",
  3615. "ref/netcore50/System.Collections.xml",
  3616. "ref/netcore50/de/System.Collections.xml",
  3617. "ref/netcore50/es/System.Collections.xml",
  3618. "ref/netcore50/fr/System.Collections.xml",
  3619. "ref/netcore50/it/System.Collections.xml",
  3620. "ref/netcore50/ja/System.Collections.xml",
  3621. "ref/netcore50/ko/System.Collections.xml",
  3622. "ref/netcore50/ru/System.Collections.xml",
  3623. "ref/netcore50/zh-hans/System.Collections.xml",
  3624. "ref/netcore50/zh-hant/System.Collections.xml",
  3625. "ref/netstandard1.0/System.Collections.dll",
  3626. "ref/netstandard1.0/System.Collections.xml",
  3627. "ref/netstandard1.0/de/System.Collections.xml",
  3628. "ref/netstandard1.0/es/System.Collections.xml",
  3629. "ref/netstandard1.0/fr/System.Collections.xml",
  3630. "ref/netstandard1.0/it/System.Collections.xml",
  3631. "ref/netstandard1.0/ja/System.Collections.xml",
  3632. "ref/netstandard1.0/ko/System.Collections.xml",
  3633. "ref/netstandard1.0/ru/System.Collections.xml",
  3634. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3635. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3636. "ref/netstandard1.3/System.Collections.dll",
  3637. "ref/netstandard1.3/System.Collections.xml",
  3638. "ref/netstandard1.3/de/System.Collections.xml",
  3639. "ref/netstandard1.3/es/System.Collections.xml",
  3640. "ref/netstandard1.3/fr/System.Collections.xml",
  3641. "ref/netstandard1.3/it/System.Collections.xml",
  3642. "ref/netstandard1.3/ja/System.Collections.xml",
  3643. "ref/netstandard1.3/ko/System.Collections.xml",
  3644. "ref/netstandard1.3/ru/System.Collections.xml",
  3645. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3646. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3647. "ref/portable-net45+win8+wp8+wpa81/_._",
  3648. "ref/win8/_._",
  3649. "ref/wp80/_._",
  3650. "ref/wpa81/_._",
  3651. "ref/xamarinios10/_._",
  3652. "ref/xamarinmac20/_._",
  3653. "ref/xamarintvos10/_._",
  3654. "ref/xamarinwatchos10/_._",
  3655. "system.collections.4.3.0.nupkg.sha512",
  3656. "system.collections.nuspec"
  3657. ]
  3658. },
  3659. "System.Collections.Concurrent/4.3.0": {
  3660. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3661. "type": "package",
  3662. "path": "system.collections.concurrent/4.3.0",
  3663. "files": [
  3664. ".nupkg.metadata",
  3665. ".signature.p7s",
  3666. "ThirdPartyNotices.txt",
  3667. "dotnet_library_license.txt",
  3668. "lib/MonoAndroid10/_._",
  3669. "lib/MonoTouch10/_._",
  3670. "lib/net45/_._",
  3671. "lib/netcore50/System.Collections.Concurrent.dll",
  3672. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3673. "lib/portable-net45+win8+wpa81/_._",
  3674. "lib/win8/_._",
  3675. "lib/wpa81/_._",
  3676. "lib/xamarinios10/_._",
  3677. "lib/xamarinmac20/_._",
  3678. "lib/xamarintvos10/_._",
  3679. "lib/xamarinwatchos10/_._",
  3680. "ref/MonoAndroid10/_._",
  3681. "ref/MonoTouch10/_._",
  3682. "ref/net45/_._",
  3683. "ref/netcore50/System.Collections.Concurrent.dll",
  3684. "ref/netcore50/System.Collections.Concurrent.xml",
  3685. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3686. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3687. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3688. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3689. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3690. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3691. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3692. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3693. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3694. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3695. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3696. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3697. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3698. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3699. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3700. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3701. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3702. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3703. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3704. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3705. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3706. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3707. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3708. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3709. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3710. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3711. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3712. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3713. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3714. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3715. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3716. "ref/portable-net45+win8+wpa81/_._",
  3717. "ref/win8/_._",
  3718. "ref/wpa81/_._",
  3719. "ref/xamarinios10/_._",
  3720. "ref/xamarinmac20/_._",
  3721. "ref/xamarintvos10/_._",
  3722. "ref/xamarinwatchos10/_._",
  3723. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3724. "system.collections.concurrent.nuspec"
  3725. ]
  3726. },
  3727. "System.Collections.Immutable/1.7.0": {
  3728. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  3729. "type": "package",
  3730. "path": "system.collections.immutable/1.7.0",
  3731. "files": [
  3732. ".nupkg.metadata",
  3733. ".signature.p7s",
  3734. "LICENSE.TXT",
  3735. "THIRD-PARTY-NOTICES.TXT",
  3736. "lib/netstandard1.0/System.Collections.Immutable.dll",
  3737. "lib/netstandard1.0/System.Collections.Immutable.xml",
  3738. "lib/netstandard1.3/System.Collections.Immutable.dll",
  3739. "lib/netstandard1.3/System.Collections.Immutable.xml",
  3740. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3741. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3742. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  3743. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  3744. "system.collections.immutable.1.7.0.nupkg.sha512",
  3745. "system.collections.immutable.nuspec",
  3746. "useSharedDesignerContext.txt",
  3747. "version.txt"
  3748. ]
  3749. },
  3750. "System.Collections.NonGeneric/4.3.0": {
  3751. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  3752. "type": "package",
  3753. "path": "system.collections.nongeneric/4.3.0",
  3754. "files": [
  3755. ".nupkg.metadata",
  3756. ".signature.p7s",
  3757. "ThirdPartyNotices.txt",
  3758. "dotnet_library_license.txt",
  3759. "lib/MonoAndroid10/_._",
  3760. "lib/MonoTouch10/_._",
  3761. "lib/net46/System.Collections.NonGeneric.dll",
  3762. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  3763. "lib/xamarinios10/_._",
  3764. "lib/xamarinmac20/_._",
  3765. "lib/xamarintvos10/_._",
  3766. "lib/xamarinwatchos10/_._",
  3767. "ref/MonoAndroid10/_._",
  3768. "ref/MonoTouch10/_._",
  3769. "ref/net46/System.Collections.NonGeneric.dll",
  3770. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  3771. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  3772. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  3773. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  3774. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  3775. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  3776. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  3777. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  3778. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  3779. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  3780. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  3781. "ref/xamarinios10/_._",
  3782. "ref/xamarinmac20/_._",
  3783. "ref/xamarintvos10/_._",
  3784. "ref/xamarinwatchos10/_._",
  3785. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  3786. "system.collections.nongeneric.nuspec"
  3787. ]
  3788. },
  3789. "System.Collections.Specialized/4.3.0": {
  3790. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  3791. "type": "package",
  3792. "path": "system.collections.specialized/4.3.0",
  3793. "files": [
  3794. ".nupkg.metadata",
  3795. ".signature.p7s",
  3796. "ThirdPartyNotices.txt",
  3797. "dotnet_library_license.txt",
  3798. "lib/MonoAndroid10/_._",
  3799. "lib/MonoTouch10/_._",
  3800. "lib/net46/System.Collections.Specialized.dll",
  3801. "lib/netstandard1.3/System.Collections.Specialized.dll",
  3802. "lib/xamarinios10/_._",
  3803. "lib/xamarinmac20/_._",
  3804. "lib/xamarintvos10/_._",
  3805. "lib/xamarinwatchos10/_._",
  3806. "ref/MonoAndroid10/_._",
  3807. "ref/MonoTouch10/_._",
  3808. "ref/net46/System.Collections.Specialized.dll",
  3809. "ref/netstandard1.3/System.Collections.Specialized.dll",
  3810. "ref/netstandard1.3/System.Collections.Specialized.xml",
  3811. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  3812. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  3813. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  3814. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  3815. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  3816. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  3817. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  3818. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  3819. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  3820. "ref/xamarinios10/_._",
  3821. "ref/xamarinmac20/_._",
  3822. "ref/xamarintvos10/_._",
  3823. "ref/xamarinwatchos10/_._",
  3824. "system.collections.specialized.4.3.0.nupkg.sha512",
  3825. "system.collections.specialized.nuspec"
  3826. ]
  3827. },
  3828. "System.ComponentModel/4.3.0": {
  3829. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  3830. "type": "package",
  3831. "path": "system.componentmodel/4.3.0",
  3832. "files": [
  3833. ".nupkg.metadata",
  3834. ".signature.p7s",
  3835. "ThirdPartyNotices.txt",
  3836. "dotnet_library_license.txt",
  3837. "lib/MonoAndroid10/_._",
  3838. "lib/MonoTouch10/_._",
  3839. "lib/net45/_._",
  3840. "lib/netcore50/System.ComponentModel.dll",
  3841. "lib/netstandard1.3/System.ComponentModel.dll",
  3842. "lib/portable-net45+win8+wp8+wpa81/_._",
  3843. "lib/win8/_._",
  3844. "lib/wp80/_._",
  3845. "lib/wpa81/_._",
  3846. "lib/xamarinios10/_._",
  3847. "lib/xamarinmac20/_._",
  3848. "lib/xamarintvos10/_._",
  3849. "lib/xamarinwatchos10/_._",
  3850. "ref/MonoAndroid10/_._",
  3851. "ref/MonoTouch10/_._",
  3852. "ref/net45/_._",
  3853. "ref/netcore50/System.ComponentModel.dll",
  3854. "ref/netcore50/System.ComponentModel.xml",
  3855. "ref/netcore50/de/System.ComponentModel.xml",
  3856. "ref/netcore50/es/System.ComponentModel.xml",
  3857. "ref/netcore50/fr/System.ComponentModel.xml",
  3858. "ref/netcore50/it/System.ComponentModel.xml",
  3859. "ref/netcore50/ja/System.ComponentModel.xml",
  3860. "ref/netcore50/ko/System.ComponentModel.xml",
  3861. "ref/netcore50/ru/System.ComponentModel.xml",
  3862. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  3863. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  3864. "ref/netstandard1.0/System.ComponentModel.dll",
  3865. "ref/netstandard1.0/System.ComponentModel.xml",
  3866. "ref/netstandard1.0/de/System.ComponentModel.xml",
  3867. "ref/netstandard1.0/es/System.ComponentModel.xml",
  3868. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  3869. "ref/netstandard1.0/it/System.ComponentModel.xml",
  3870. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  3871. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  3872. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  3873. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  3874. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  3875. "ref/portable-net45+win8+wp8+wpa81/_._",
  3876. "ref/win8/_._",
  3877. "ref/wp80/_._",
  3878. "ref/wpa81/_._",
  3879. "ref/xamarinios10/_._",
  3880. "ref/xamarinmac20/_._",
  3881. "ref/xamarintvos10/_._",
  3882. "ref/xamarinwatchos10/_._",
  3883. "system.componentmodel.4.3.0.nupkg.sha512",
  3884. "system.componentmodel.nuspec"
  3885. ]
  3886. },
  3887. "System.ComponentModel.Annotations/4.7.0": {
  3888. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  3889. "type": "package",
  3890. "path": "system.componentmodel.annotations/4.7.0",
  3891. "files": [
  3892. ".nupkg.metadata",
  3893. ".signature.p7s",
  3894. "LICENSE.TXT",
  3895. "THIRD-PARTY-NOTICES.TXT",
  3896. "lib/MonoAndroid10/_._",
  3897. "lib/MonoTouch10/_._",
  3898. "lib/net45/_._",
  3899. "lib/net461/System.ComponentModel.Annotations.dll",
  3900. "lib/netcore50/System.ComponentModel.Annotations.dll",
  3901. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  3902. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  3903. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  3904. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  3905. "lib/portable-net45+win8/_._",
  3906. "lib/win8/_._",
  3907. "lib/xamarinios10/_._",
  3908. "lib/xamarinmac20/_._",
  3909. "lib/xamarintvos10/_._",
  3910. "lib/xamarinwatchos10/_._",
  3911. "ref/MonoAndroid10/_._",
  3912. "ref/MonoTouch10/_._",
  3913. "ref/net45/_._",
  3914. "ref/net461/System.ComponentModel.Annotations.dll",
  3915. "ref/net461/System.ComponentModel.Annotations.xml",
  3916. "ref/netcore50/System.ComponentModel.Annotations.dll",
  3917. "ref/netcore50/System.ComponentModel.Annotations.xml",
  3918. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  3919. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  3920. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  3921. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  3922. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  3923. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  3924. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  3925. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  3926. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  3927. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  3928. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  3929. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  3930. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  3931. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  3932. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  3933. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  3934. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  3935. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  3936. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  3937. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  3938. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  3939. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  3940. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  3941. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  3942. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  3943. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  3944. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  3945. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  3946. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  3947. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  3948. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  3949. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  3950. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  3951. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  3952. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  3953. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  3954. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  3955. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  3956. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  3957. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  3958. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  3959. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  3960. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  3961. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  3962. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  3963. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  3964. "ref/portable-net45+win8/_._",
  3965. "ref/win8/_._",
  3966. "ref/xamarinios10/_._",
  3967. "ref/xamarinmac20/_._",
  3968. "ref/xamarintvos10/_._",
  3969. "ref/xamarinwatchos10/_._",
  3970. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  3971. "system.componentmodel.annotations.nuspec",
  3972. "useSharedDesignerContext.txt",
  3973. "version.txt"
  3974. ]
  3975. },
  3976. "System.ComponentModel.Primitives/4.3.0": {
  3977. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  3978. "type": "package",
  3979. "path": "system.componentmodel.primitives/4.3.0",
  3980. "files": [
  3981. ".nupkg.metadata",
  3982. ".signature.p7s",
  3983. "ThirdPartyNotices.txt",
  3984. "dotnet_library_license.txt",
  3985. "lib/MonoAndroid10/_._",
  3986. "lib/MonoTouch10/_._",
  3987. "lib/net45/System.ComponentModel.Primitives.dll",
  3988. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  3989. "lib/xamarinios10/_._",
  3990. "lib/xamarinmac20/_._",
  3991. "lib/xamarintvos10/_._",
  3992. "lib/xamarinwatchos10/_._",
  3993. "ref/MonoAndroid10/_._",
  3994. "ref/MonoTouch10/_._",
  3995. "ref/net45/System.ComponentModel.Primitives.dll",
  3996. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  3997. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  3998. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  3999. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4000. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4001. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4002. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4003. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4004. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4005. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4006. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4007. "ref/xamarinios10/_._",
  4008. "ref/xamarinmac20/_._",
  4009. "ref/xamarintvos10/_._",
  4010. "ref/xamarinwatchos10/_._",
  4011. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4012. "system.componentmodel.primitives.nuspec"
  4013. ]
  4014. },
  4015. "System.ComponentModel.TypeConverter/4.3.0": {
  4016. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4017. "type": "package",
  4018. "path": "system.componentmodel.typeconverter/4.3.0",
  4019. "files": [
  4020. ".nupkg.metadata",
  4021. ".signature.p7s",
  4022. "ThirdPartyNotices.txt",
  4023. "dotnet_library_license.txt",
  4024. "lib/MonoAndroid10/_._",
  4025. "lib/MonoTouch10/_._",
  4026. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4027. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4028. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4029. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4030. "lib/xamarinios10/_._",
  4031. "lib/xamarinmac20/_._",
  4032. "lib/xamarintvos10/_._",
  4033. "lib/xamarinwatchos10/_._",
  4034. "ref/MonoAndroid10/_._",
  4035. "ref/MonoTouch10/_._",
  4036. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4037. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4038. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4039. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4040. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4041. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4042. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4043. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4044. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4045. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4046. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4047. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4048. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4049. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4050. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4051. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4052. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4053. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4054. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4055. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4056. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4057. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4058. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4059. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4060. "ref/xamarinios10/_._",
  4061. "ref/xamarinmac20/_._",
  4062. "ref/xamarintvos10/_._",
  4063. "ref/xamarinwatchos10/_._",
  4064. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4065. "system.componentmodel.typeconverter.nuspec"
  4066. ]
  4067. },
  4068. "System.Configuration.ConfigurationManager/4.4.1": {
  4069. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  4070. "type": "package",
  4071. "path": "system.configuration.configurationmanager/4.4.1",
  4072. "files": [
  4073. ".nupkg.metadata",
  4074. ".signature.p7s",
  4075. "LICENSE.TXT",
  4076. "THIRD-PARTY-NOTICES.TXT",
  4077. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4078. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4079. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4080. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4081. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4082. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4083. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  4084. "system.configuration.configurationmanager.nuspec",
  4085. "useSharedDesignerContext.txt",
  4086. "version.txt"
  4087. ]
  4088. },
  4089. "System.Console/4.3.0": {
  4090. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4091. "type": "package",
  4092. "path": "system.console/4.3.0",
  4093. "files": [
  4094. ".nupkg.metadata",
  4095. ".signature.p7s",
  4096. "ThirdPartyNotices.txt",
  4097. "dotnet_library_license.txt",
  4098. "lib/MonoAndroid10/_._",
  4099. "lib/MonoTouch10/_._",
  4100. "lib/net46/System.Console.dll",
  4101. "lib/xamarinios10/_._",
  4102. "lib/xamarinmac20/_._",
  4103. "lib/xamarintvos10/_._",
  4104. "lib/xamarinwatchos10/_._",
  4105. "ref/MonoAndroid10/_._",
  4106. "ref/MonoTouch10/_._",
  4107. "ref/net46/System.Console.dll",
  4108. "ref/netstandard1.3/System.Console.dll",
  4109. "ref/netstandard1.3/System.Console.xml",
  4110. "ref/netstandard1.3/de/System.Console.xml",
  4111. "ref/netstandard1.3/es/System.Console.xml",
  4112. "ref/netstandard1.3/fr/System.Console.xml",
  4113. "ref/netstandard1.3/it/System.Console.xml",
  4114. "ref/netstandard1.3/ja/System.Console.xml",
  4115. "ref/netstandard1.3/ko/System.Console.xml",
  4116. "ref/netstandard1.3/ru/System.Console.xml",
  4117. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4118. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4119. "ref/xamarinios10/_._",
  4120. "ref/xamarinmac20/_._",
  4121. "ref/xamarintvos10/_._",
  4122. "ref/xamarinwatchos10/_._",
  4123. "system.console.4.3.0.nupkg.sha512",
  4124. "system.console.nuspec"
  4125. ]
  4126. },
  4127. "System.Diagnostics.Contracts/4.0.1": {
  4128. "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
  4129. "type": "package",
  4130. "path": "system.diagnostics.contracts/4.0.1",
  4131. "files": [
  4132. ".nupkg.metadata",
  4133. ".signature.p7s",
  4134. "ThirdPartyNotices.txt",
  4135. "dotnet_library_license.txt",
  4136. "lib/MonoAndroid10/_._",
  4137. "lib/MonoTouch10/_._",
  4138. "lib/net45/_._",
  4139. "lib/netcore50/System.Diagnostics.Contracts.dll",
  4140. "lib/netstandard1.0/System.Diagnostics.Contracts.dll",
  4141. "lib/portable-net45+win8+wp8+wpa81/_._",
  4142. "lib/win8/_._",
  4143. "lib/wp80/_._",
  4144. "lib/wpa81/_._",
  4145. "lib/xamarinios10/_._",
  4146. "lib/xamarinmac20/_._",
  4147. "lib/xamarintvos10/_._",
  4148. "lib/xamarinwatchos10/_._",
  4149. "ref/MonoAndroid10/_._",
  4150. "ref/MonoTouch10/_._",
  4151. "ref/net45/_._",
  4152. "ref/netcore50/System.Diagnostics.Contracts.dll",
  4153. "ref/netcore50/System.Diagnostics.Contracts.xml",
  4154. "ref/netcore50/de/System.Diagnostics.Contracts.xml",
  4155. "ref/netcore50/es/System.Diagnostics.Contracts.xml",
  4156. "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
  4157. "ref/netcore50/it/System.Diagnostics.Contracts.xml",
  4158. "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
  4159. "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
  4160. "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
  4161. "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
  4162. "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
  4163. "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
  4164. "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
  4165. "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
  4166. "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
  4167. "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
  4168. "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
  4169. "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
  4170. "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
  4171. "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
  4172. "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
  4173. "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
  4174. "ref/portable-net45+win8+wp8+wpa81/_._",
  4175. "ref/win8/_._",
  4176. "ref/wp80/_._",
  4177. "ref/wpa81/_._",
  4178. "ref/xamarinios10/_._",
  4179. "ref/xamarinmac20/_._",
  4180. "ref/xamarintvos10/_._",
  4181. "ref/xamarinwatchos10/_._",
  4182. "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll",
  4183. "system.diagnostics.contracts.4.0.1.nupkg.sha512",
  4184. "system.diagnostics.contracts.nuspec"
  4185. ]
  4186. },
  4187. "System.Diagnostics.Debug/4.3.0": {
  4188. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4189. "type": "package",
  4190. "path": "system.diagnostics.debug/4.3.0",
  4191. "files": [
  4192. ".nupkg.metadata",
  4193. ".signature.p7s",
  4194. "ThirdPartyNotices.txt",
  4195. "dotnet_library_license.txt",
  4196. "lib/MonoAndroid10/_._",
  4197. "lib/MonoTouch10/_._",
  4198. "lib/net45/_._",
  4199. "lib/portable-net45+win8+wp8+wpa81/_._",
  4200. "lib/win8/_._",
  4201. "lib/wp80/_._",
  4202. "lib/wpa81/_._",
  4203. "lib/xamarinios10/_._",
  4204. "lib/xamarinmac20/_._",
  4205. "lib/xamarintvos10/_._",
  4206. "lib/xamarinwatchos10/_._",
  4207. "ref/MonoAndroid10/_._",
  4208. "ref/MonoTouch10/_._",
  4209. "ref/net45/_._",
  4210. "ref/netcore50/System.Diagnostics.Debug.dll",
  4211. "ref/netcore50/System.Diagnostics.Debug.xml",
  4212. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4213. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4214. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4215. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4216. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4217. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4218. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4219. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4220. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4221. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4222. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4223. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4224. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4225. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4226. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4227. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4228. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4229. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4230. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4231. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4232. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4233. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4234. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4235. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4236. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4237. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4238. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4239. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4240. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4241. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4242. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4243. "ref/portable-net45+win8+wp8+wpa81/_._",
  4244. "ref/win8/_._",
  4245. "ref/wp80/_._",
  4246. "ref/wpa81/_._",
  4247. "ref/xamarinios10/_._",
  4248. "ref/xamarinmac20/_._",
  4249. "ref/xamarintvos10/_._",
  4250. "ref/xamarinwatchos10/_._",
  4251. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4252. "system.diagnostics.debug.nuspec"
  4253. ]
  4254. },
  4255. "System.Diagnostics.DiagnosticSource/4.7.0": {
  4256. "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
  4257. "type": "package",
  4258. "path": "system.diagnostics.diagnosticsource/4.7.0",
  4259. "files": [
  4260. ".nupkg.metadata",
  4261. ".signature.p7s",
  4262. "LICENSE.TXT",
  4263. "THIRD-PARTY-NOTICES.TXT",
  4264. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4265. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4266. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4267. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4268. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4269. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4270. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4271. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4272. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4273. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4274. "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
  4275. "system.diagnostics.diagnosticsource.nuspec",
  4276. "useSharedDesignerContext.txt",
  4277. "version.txt"
  4278. ]
  4279. },
  4280. "System.Diagnostics.Tools/4.3.0": {
  4281. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4282. "type": "package",
  4283. "path": "system.diagnostics.tools/4.3.0",
  4284. "files": [
  4285. ".nupkg.metadata",
  4286. ".signature.p7s",
  4287. "ThirdPartyNotices.txt",
  4288. "dotnet_library_license.txt",
  4289. "lib/MonoAndroid10/_._",
  4290. "lib/MonoTouch10/_._",
  4291. "lib/net45/_._",
  4292. "lib/portable-net45+win8+wp8+wpa81/_._",
  4293. "lib/win8/_._",
  4294. "lib/wp80/_._",
  4295. "lib/wpa81/_._",
  4296. "lib/xamarinios10/_._",
  4297. "lib/xamarinmac20/_._",
  4298. "lib/xamarintvos10/_._",
  4299. "lib/xamarinwatchos10/_._",
  4300. "ref/MonoAndroid10/_._",
  4301. "ref/MonoTouch10/_._",
  4302. "ref/net45/_._",
  4303. "ref/netcore50/System.Diagnostics.Tools.dll",
  4304. "ref/netcore50/System.Diagnostics.Tools.xml",
  4305. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4306. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4307. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4308. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4309. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4310. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4311. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4312. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4313. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4314. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4315. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4316. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4317. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4318. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4319. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4320. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4321. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4322. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4323. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4324. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4325. "ref/portable-net45+win8+wp8+wpa81/_._",
  4326. "ref/win8/_._",
  4327. "ref/wp80/_._",
  4328. "ref/wpa81/_._",
  4329. "ref/xamarinios10/_._",
  4330. "ref/xamarinmac20/_._",
  4331. "ref/xamarintvos10/_._",
  4332. "ref/xamarinwatchos10/_._",
  4333. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  4334. "system.diagnostics.tools.nuspec"
  4335. ]
  4336. },
  4337. "System.Diagnostics.TraceSource/4.0.0": {
  4338. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  4339. "type": "package",
  4340. "path": "system.diagnostics.tracesource/4.0.0",
  4341. "files": [
  4342. ".nupkg.metadata",
  4343. ".signature.p7s",
  4344. "ThirdPartyNotices.txt",
  4345. "dotnet_library_license.txt",
  4346. "lib/MonoAndroid10/_._",
  4347. "lib/MonoTouch10/_._",
  4348. "lib/net46/System.Diagnostics.TraceSource.dll",
  4349. "lib/xamarinios10/_._",
  4350. "lib/xamarinmac20/_._",
  4351. "lib/xamarintvos10/_._",
  4352. "lib/xamarinwatchos10/_._",
  4353. "ref/MonoAndroid10/_._",
  4354. "ref/MonoTouch10/_._",
  4355. "ref/net46/System.Diagnostics.TraceSource.dll",
  4356. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4357. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  4358. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  4359. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  4360. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  4361. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  4362. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  4363. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  4364. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  4365. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  4366. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  4367. "ref/xamarinios10/_._",
  4368. "ref/xamarinmac20/_._",
  4369. "ref/xamarintvos10/_._",
  4370. "ref/xamarinwatchos10/_._",
  4371. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4372. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  4373. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4374. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  4375. "system.diagnostics.tracesource.nuspec"
  4376. ]
  4377. },
  4378. "System.Diagnostics.Tracing/4.3.0": {
  4379. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4380. "type": "package",
  4381. "path": "system.diagnostics.tracing/4.3.0",
  4382. "files": [
  4383. ".nupkg.metadata",
  4384. ".signature.p7s",
  4385. "ThirdPartyNotices.txt",
  4386. "dotnet_library_license.txt",
  4387. "lib/MonoAndroid10/_._",
  4388. "lib/MonoTouch10/_._",
  4389. "lib/net45/_._",
  4390. "lib/net462/System.Diagnostics.Tracing.dll",
  4391. "lib/portable-net45+win8+wpa81/_._",
  4392. "lib/win8/_._",
  4393. "lib/wpa81/_._",
  4394. "lib/xamarinios10/_._",
  4395. "lib/xamarinmac20/_._",
  4396. "lib/xamarintvos10/_._",
  4397. "lib/xamarinwatchos10/_._",
  4398. "ref/MonoAndroid10/_._",
  4399. "ref/MonoTouch10/_._",
  4400. "ref/net45/_._",
  4401. "ref/net462/System.Diagnostics.Tracing.dll",
  4402. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4403. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4404. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4405. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4406. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4407. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4408. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4409. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4410. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4411. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4412. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4413. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4414. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4415. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4416. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4417. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4418. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4419. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4420. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4421. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4422. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4423. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4424. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4425. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4426. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4427. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4428. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4429. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4430. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4431. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4432. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4433. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4434. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4435. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4436. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4437. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4438. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4439. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4440. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4441. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4442. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4443. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4444. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4445. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4446. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4447. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4448. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4449. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4450. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4451. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4452. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4453. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4454. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4455. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4456. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4457. "ref/portable-net45+win8+wpa81/_._",
  4458. "ref/win8/_._",
  4459. "ref/wpa81/_._",
  4460. "ref/xamarinios10/_._",
  4461. "ref/xamarinmac20/_._",
  4462. "ref/xamarintvos10/_._",
  4463. "ref/xamarinwatchos10/_._",
  4464. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4465. "system.diagnostics.tracing.nuspec"
  4466. ]
  4467. },
  4468. "System.Drawing.Common/4.7.0": {
  4469. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4470. "type": "package",
  4471. "path": "system.drawing.common/4.7.0",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "LICENSE.TXT",
  4476. "THIRD-PARTY-NOTICES.TXT",
  4477. "lib/MonoAndroid10/_._",
  4478. "lib/MonoTouch10/_._",
  4479. "lib/net461/System.Drawing.Common.dll",
  4480. "lib/netstandard2.0/System.Drawing.Common.dll",
  4481. "lib/xamarinios10/_._",
  4482. "lib/xamarinmac20/_._",
  4483. "lib/xamarintvos10/_._",
  4484. "lib/xamarinwatchos10/_._",
  4485. "ref/MonoAndroid10/_._",
  4486. "ref/MonoTouch10/_._",
  4487. "ref/net461/System.Drawing.Common.dll",
  4488. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4489. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4490. "ref/netstandard2.0/System.Drawing.Common.dll",
  4491. "ref/xamarinios10/_._",
  4492. "ref/xamarinmac20/_._",
  4493. "ref/xamarintvos10/_._",
  4494. "ref/xamarinwatchos10/_._",
  4495. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4496. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4497. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4498. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4499. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4500. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4501. "system.drawing.common.4.7.0.nupkg.sha512",
  4502. "system.drawing.common.nuspec",
  4503. "useSharedDesignerContext.txt",
  4504. "version.txt"
  4505. ]
  4506. },
  4507. "System.Dynamic.Runtime/4.0.11": {
  4508. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  4509. "type": "package",
  4510. "path": "system.dynamic.runtime/4.0.11",
  4511. "files": [
  4512. ".nupkg.metadata",
  4513. ".signature.p7s",
  4514. "ThirdPartyNotices.txt",
  4515. "dotnet_library_license.txt",
  4516. "lib/MonoAndroid10/_._",
  4517. "lib/MonoTouch10/_._",
  4518. "lib/net45/_._",
  4519. "lib/netcore50/System.Dynamic.Runtime.dll",
  4520. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  4521. "lib/portable-net45+win8+wp8+wpa81/_._",
  4522. "lib/win8/_._",
  4523. "lib/wp80/_._",
  4524. "lib/wpa81/_._",
  4525. "lib/xamarinios10/_._",
  4526. "lib/xamarinmac20/_._",
  4527. "lib/xamarintvos10/_._",
  4528. "lib/xamarinwatchos10/_._",
  4529. "ref/MonoAndroid10/_._",
  4530. "ref/MonoTouch10/_._",
  4531. "ref/net45/_._",
  4532. "ref/netcore50/System.Dynamic.Runtime.dll",
  4533. "ref/netcore50/System.Dynamic.Runtime.xml",
  4534. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  4535. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  4536. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  4537. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  4538. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  4539. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  4540. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  4541. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  4542. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  4543. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  4544. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  4545. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  4546. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  4547. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  4548. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  4549. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  4550. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  4551. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  4552. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  4553. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  4554. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  4555. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  4556. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  4557. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  4558. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  4559. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  4560. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  4561. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  4562. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  4563. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  4564. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  4565. "ref/portable-net45+win8+wp8+wpa81/_._",
  4566. "ref/win8/_._",
  4567. "ref/wp80/_._",
  4568. "ref/wpa81/_._",
  4569. "ref/xamarinios10/_._",
  4570. "ref/xamarinmac20/_._",
  4571. "ref/xamarintvos10/_._",
  4572. "ref/xamarinwatchos10/_._",
  4573. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  4574. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  4575. "system.dynamic.runtime.nuspec"
  4576. ]
  4577. },
  4578. "System.Globalization/4.3.0": {
  4579. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4580. "type": "package",
  4581. "path": "system.globalization/4.3.0",
  4582. "files": [
  4583. ".nupkg.metadata",
  4584. ".signature.p7s",
  4585. "ThirdPartyNotices.txt",
  4586. "dotnet_library_license.txt",
  4587. "lib/MonoAndroid10/_._",
  4588. "lib/MonoTouch10/_._",
  4589. "lib/net45/_._",
  4590. "lib/portable-net45+win8+wp8+wpa81/_._",
  4591. "lib/win8/_._",
  4592. "lib/wp80/_._",
  4593. "lib/wpa81/_._",
  4594. "lib/xamarinios10/_._",
  4595. "lib/xamarinmac20/_._",
  4596. "lib/xamarintvos10/_._",
  4597. "lib/xamarinwatchos10/_._",
  4598. "ref/MonoAndroid10/_._",
  4599. "ref/MonoTouch10/_._",
  4600. "ref/net45/_._",
  4601. "ref/netcore50/System.Globalization.dll",
  4602. "ref/netcore50/System.Globalization.xml",
  4603. "ref/netcore50/de/System.Globalization.xml",
  4604. "ref/netcore50/es/System.Globalization.xml",
  4605. "ref/netcore50/fr/System.Globalization.xml",
  4606. "ref/netcore50/it/System.Globalization.xml",
  4607. "ref/netcore50/ja/System.Globalization.xml",
  4608. "ref/netcore50/ko/System.Globalization.xml",
  4609. "ref/netcore50/ru/System.Globalization.xml",
  4610. "ref/netcore50/zh-hans/System.Globalization.xml",
  4611. "ref/netcore50/zh-hant/System.Globalization.xml",
  4612. "ref/netstandard1.0/System.Globalization.dll",
  4613. "ref/netstandard1.0/System.Globalization.xml",
  4614. "ref/netstandard1.0/de/System.Globalization.xml",
  4615. "ref/netstandard1.0/es/System.Globalization.xml",
  4616. "ref/netstandard1.0/fr/System.Globalization.xml",
  4617. "ref/netstandard1.0/it/System.Globalization.xml",
  4618. "ref/netstandard1.0/ja/System.Globalization.xml",
  4619. "ref/netstandard1.0/ko/System.Globalization.xml",
  4620. "ref/netstandard1.0/ru/System.Globalization.xml",
  4621. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4622. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4623. "ref/netstandard1.3/System.Globalization.dll",
  4624. "ref/netstandard1.3/System.Globalization.xml",
  4625. "ref/netstandard1.3/de/System.Globalization.xml",
  4626. "ref/netstandard1.3/es/System.Globalization.xml",
  4627. "ref/netstandard1.3/fr/System.Globalization.xml",
  4628. "ref/netstandard1.3/it/System.Globalization.xml",
  4629. "ref/netstandard1.3/ja/System.Globalization.xml",
  4630. "ref/netstandard1.3/ko/System.Globalization.xml",
  4631. "ref/netstandard1.3/ru/System.Globalization.xml",
  4632. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4633. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4634. "ref/portable-net45+win8+wp8+wpa81/_._",
  4635. "ref/win8/_._",
  4636. "ref/wp80/_._",
  4637. "ref/wpa81/_._",
  4638. "ref/xamarinios10/_._",
  4639. "ref/xamarinmac20/_._",
  4640. "ref/xamarintvos10/_._",
  4641. "ref/xamarinwatchos10/_._",
  4642. "system.globalization.4.3.0.nupkg.sha512",
  4643. "system.globalization.nuspec"
  4644. ]
  4645. },
  4646. "System.Globalization.Calendars/4.3.0": {
  4647. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4648. "type": "package",
  4649. "path": "system.globalization.calendars/4.3.0",
  4650. "files": [
  4651. ".nupkg.metadata",
  4652. ".signature.p7s",
  4653. "ThirdPartyNotices.txt",
  4654. "dotnet_library_license.txt",
  4655. "lib/MonoAndroid10/_._",
  4656. "lib/MonoTouch10/_._",
  4657. "lib/net46/System.Globalization.Calendars.dll",
  4658. "lib/xamarinios10/_._",
  4659. "lib/xamarinmac20/_._",
  4660. "lib/xamarintvos10/_._",
  4661. "lib/xamarinwatchos10/_._",
  4662. "ref/MonoAndroid10/_._",
  4663. "ref/MonoTouch10/_._",
  4664. "ref/net46/System.Globalization.Calendars.dll",
  4665. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4666. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4667. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4668. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4669. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4670. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4671. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4672. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4673. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4674. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4675. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4676. "ref/xamarinios10/_._",
  4677. "ref/xamarinmac20/_._",
  4678. "ref/xamarintvos10/_._",
  4679. "ref/xamarinwatchos10/_._",
  4680. "system.globalization.calendars.4.3.0.nupkg.sha512",
  4681. "system.globalization.calendars.nuspec"
  4682. ]
  4683. },
  4684. "System.Globalization.Extensions/4.3.0": {
  4685. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4686. "type": "package",
  4687. "path": "system.globalization.extensions/4.3.0",
  4688. "files": [
  4689. ".nupkg.metadata",
  4690. ".signature.p7s",
  4691. "ThirdPartyNotices.txt",
  4692. "dotnet_library_license.txt",
  4693. "lib/MonoAndroid10/_._",
  4694. "lib/MonoTouch10/_._",
  4695. "lib/net46/System.Globalization.Extensions.dll",
  4696. "lib/xamarinios10/_._",
  4697. "lib/xamarinmac20/_._",
  4698. "lib/xamarintvos10/_._",
  4699. "lib/xamarinwatchos10/_._",
  4700. "ref/MonoAndroid10/_._",
  4701. "ref/MonoTouch10/_._",
  4702. "ref/net46/System.Globalization.Extensions.dll",
  4703. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4704. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4705. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4706. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4707. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4708. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4709. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4710. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4711. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4712. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4713. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4714. "ref/xamarinios10/_._",
  4715. "ref/xamarinmac20/_._",
  4716. "ref/xamarintvos10/_._",
  4717. "ref/xamarinwatchos10/_._",
  4718. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4719. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4720. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4721. "system.globalization.extensions.4.3.0.nupkg.sha512",
  4722. "system.globalization.extensions.nuspec"
  4723. ]
  4724. },
  4725. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  4726. "sha512": "xa8kptJ+uf9hzj366f3pLcs5HFZ6dQMDKzEGq/yZNF0s3mVfyIhuQwgDcTJlAU4AROne/6Z5+vITwrW3gVNKIA==",
  4727. "type": "package",
  4728. "path": "system.identitymodel.tokens.jwt/5.5.0",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4733. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4734. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  4735. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  4736. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4737. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4738. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  4739. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  4740. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4741. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4742. "system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512",
  4743. "system.identitymodel.tokens.jwt.nuspec"
  4744. ]
  4745. },
  4746. "System.IO/4.3.0": {
  4747. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4748. "type": "package",
  4749. "path": "system.io/4.3.0",
  4750. "files": [
  4751. ".nupkg.metadata",
  4752. ".signature.p7s",
  4753. "ThirdPartyNotices.txt",
  4754. "dotnet_library_license.txt",
  4755. "lib/MonoAndroid10/_._",
  4756. "lib/MonoTouch10/_._",
  4757. "lib/net45/_._",
  4758. "lib/net462/System.IO.dll",
  4759. "lib/portable-net45+win8+wp8+wpa81/_._",
  4760. "lib/win8/_._",
  4761. "lib/wp80/_._",
  4762. "lib/wpa81/_._",
  4763. "lib/xamarinios10/_._",
  4764. "lib/xamarinmac20/_._",
  4765. "lib/xamarintvos10/_._",
  4766. "lib/xamarinwatchos10/_._",
  4767. "ref/MonoAndroid10/_._",
  4768. "ref/MonoTouch10/_._",
  4769. "ref/net45/_._",
  4770. "ref/net462/System.IO.dll",
  4771. "ref/netcore50/System.IO.dll",
  4772. "ref/netcore50/System.IO.xml",
  4773. "ref/netcore50/de/System.IO.xml",
  4774. "ref/netcore50/es/System.IO.xml",
  4775. "ref/netcore50/fr/System.IO.xml",
  4776. "ref/netcore50/it/System.IO.xml",
  4777. "ref/netcore50/ja/System.IO.xml",
  4778. "ref/netcore50/ko/System.IO.xml",
  4779. "ref/netcore50/ru/System.IO.xml",
  4780. "ref/netcore50/zh-hans/System.IO.xml",
  4781. "ref/netcore50/zh-hant/System.IO.xml",
  4782. "ref/netstandard1.0/System.IO.dll",
  4783. "ref/netstandard1.0/System.IO.xml",
  4784. "ref/netstandard1.0/de/System.IO.xml",
  4785. "ref/netstandard1.0/es/System.IO.xml",
  4786. "ref/netstandard1.0/fr/System.IO.xml",
  4787. "ref/netstandard1.0/it/System.IO.xml",
  4788. "ref/netstandard1.0/ja/System.IO.xml",
  4789. "ref/netstandard1.0/ko/System.IO.xml",
  4790. "ref/netstandard1.0/ru/System.IO.xml",
  4791. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4792. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4793. "ref/netstandard1.3/System.IO.dll",
  4794. "ref/netstandard1.3/System.IO.xml",
  4795. "ref/netstandard1.3/de/System.IO.xml",
  4796. "ref/netstandard1.3/es/System.IO.xml",
  4797. "ref/netstandard1.3/fr/System.IO.xml",
  4798. "ref/netstandard1.3/it/System.IO.xml",
  4799. "ref/netstandard1.3/ja/System.IO.xml",
  4800. "ref/netstandard1.3/ko/System.IO.xml",
  4801. "ref/netstandard1.3/ru/System.IO.xml",
  4802. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4803. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4804. "ref/netstandard1.5/System.IO.dll",
  4805. "ref/netstandard1.5/System.IO.xml",
  4806. "ref/netstandard1.5/de/System.IO.xml",
  4807. "ref/netstandard1.5/es/System.IO.xml",
  4808. "ref/netstandard1.5/fr/System.IO.xml",
  4809. "ref/netstandard1.5/it/System.IO.xml",
  4810. "ref/netstandard1.5/ja/System.IO.xml",
  4811. "ref/netstandard1.5/ko/System.IO.xml",
  4812. "ref/netstandard1.5/ru/System.IO.xml",
  4813. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4814. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4815. "ref/portable-net45+win8+wp8+wpa81/_._",
  4816. "ref/win8/_._",
  4817. "ref/wp80/_._",
  4818. "ref/wpa81/_._",
  4819. "ref/xamarinios10/_._",
  4820. "ref/xamarinmac20/_._",
  4821. "ref/xamarintvos10/_._",
  4822. "ref/xamarinwatchos10/_._",
  4823. "system.io.4.3.0.nupkg.sha512",
  4824. "system.io.nuspec"
  4825. ]
  4826. },
  4827. "System.IO.Compression/4.3.0": {
  4828. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  4829. "type": "package",
  4830. "path": "system.io.compression/4.3.0",
  4831. "files": [
  4832. ".nupkg.metadata",
  4833. ".signature.p7s",
  4834. "ThirdPartyNotices.txt",
  4835. "dotnet_library_license.txt",
  4836. "lib/MonoAndroid10/_._",
  4837. "lib/MonoTouch10/_._",
  4838. "lib/net45/_._",
  4839. "lib/net46/System.IO.Compression.dll",
  4840. "lib/portable-net45+win8+wpa81/_._",
  4841. "lib/win8/_._",
  4842. "lib/wpa81/_._",
  4843. "lib/xamarinios10/_._",
  4844. "lib/xamarinmac20/_._",
  4845. "lib/xamarintvos10/_._",
  4846. "lib/xamarinwatchos10/_._",
  4847. "ref/MonoAndroid10/_._",
  4848. "ref/MonoTouch10/_._",
  4849. "ref/net45/_._",
  4850. "ref/net46/System.IO.Compression.dll",
  4851. "ref/netcore50/System.IO.Compression.dll",
  4852. "ref/netcore50/System.IO.Compression.xml",
  4853. "ref/netcore50/de/System.IO.Compression.xml",
  4854. "ref/netcore50/es/System.IO.Compression.xml",
  4855. "ref/netcore50/fr/System.IO.Compression.xml",
  4856. "ref/netcore50/it/System.IO.Compression.xml",
  4857. "ref/netcore50/ja/System.IO.Compression.xml",
  4858. "ref/netcore50/ko/System.IO.Compression.xml",
  4859. "ref/netcore50/ru/System.IO.Compression.xml",
  4860. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  4861. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  4862. "ref/netstandard1.1/System.IO.Compression.dll",
  4863. "ref/netstandard1.1/System.IO.Compression.xml",
  4864. "ref/netstandard1.1/de/System.IO.Compression.xml",
  4865. "ref/netstandard1.1/es/System.IO.Compression.xml",
  4866. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  4867. "ref/netstandard1.1/it/System.IO.Compression.xml",
  4868. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  4869. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  4870. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  4871. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  4872. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  4873. "ref/netstandard1.3/System.IO.Compression.dll",
  4874. "ref/netstandard1.3/System.IO.Compression.xml",
  4875. "ref/netstandard1.3/de/System.IO.Compression.xml",
  4876. "ref/netstandard1.3/es/System.IO.Compression.xml",
  4877. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  4878. "ref/netstandard1.3/it/System.IO.Compression.xml",
  4879. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  4880. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  4881. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  4882. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  4883. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  4884. "ref/portable-net45+win8+wpa81/_._",
  4885. "ref/win8/_._",
  4886. "ref/wpa81/_._",
  4887. "ref/xamarinios10/_._",
  4888. "ref/xamarinmac20/_._",
  4889. "ref/xamarintvos10/_._",
  4890. "ref/xamarinwatchos10/_._",
  4891. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  4892. "runtimes/win/lib/net46/System.IO.Compression.dll",
  4893. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  4894. "system.io.compression.4.3.0.nupkg.sha512",
  4895. "system.io.compression.nuspec"
  4896. ]
  4897. },
  4898. "System.IO.Compression.ZipFile/4.3.0": {
  4899. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  4900. "type": "package",
  4901. "path": "system.io.compression.zipfile/4.3.0",
  4902. "files": [
  4903. ".nupkg.metadata",
  4904. ".signature.p7s",
  4905. "ThirdPartyNotices.txt",
  4906. "dotnet_library_license.txt",
  4907. "lib/MonoAndroid10/_._",
  4908. "lib/MonoTouch10/_._",
  4909. "lib/net46/System.IO.Compression.ZipFile.dll",
  4910. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4911. "lib/xamarinios10/_._",
  4912. "lib/xamarinmac20/_._",
  4913. "lib/xamarintvos10/_._",
  4914. "lib/xamarinwatchos10/_._",
  4915. "ref/MonoAndroid10/_._",
  4916. "ref/MonoTouch10/_._",
  4917. "ref/net46/System.IO.Compression.ZipFile.dll",
  4918. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4919. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  4920. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  4921. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  4922. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  4923. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  4924. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  4925. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  4926. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  4927. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  4928. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  4929. "ref/xamarinios10/_._",
  4930. "ref/xamarinmac20/_._",
  4931. "ref/xamarintvos10/_._",
  4932. "ref/xamarinwatchos10/_._",
  4933. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  4934. "system.io.compression.zipfile.nuspec"
  4935. ]
  4936. },
  4937. "System.IO.FileSystem/4.3.0": {
  4938. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4939. "type": "package",
  4940. "path": "system.io.filesystem/4.3.0",
  4941. "files": [
  4942. ".nupkg.metadata",
  4943. ".signature.p7s",
  4944. "ThirdPartyNotices.txt",
  4945. "dotnet_library_license.txt",
  4946. "lib/MonoAndroid10/_._",
  4947. "lib/MonoTouch10/_._",
  4948. "lib/net46/System.IO.FileSystem.dll",
  4949. "lib/xamarinios10/_._",
  4950. "lib/xamarinmac20/_._",
  4951. "lib/xamarintvos10/_._",
  4952. "lib/xamarinwatchos10/_._",
  4953. "ref/MonoAndroid10/_._",
  4954. "ref/MonoTouch10/_._",
  4955. "ref/net46/System.IO.FileSystem.dll",
  4956. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4957. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4958. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4959. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4960. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4961. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4962. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4963. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4964. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4965. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4966. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4967. "ref/xamarinios10/_._",
  4968. "ref/xamarinmac20/_._",
  4969. "ref/xamarintvos10/_._",
  4970. "ref/xamarinwatchos10/_._",
  4971. "system.io.filesystem.4.3.0.nupkg.sha512",
  4972. "system.io.filesystem.nuspec"
  4973. ]
  4974. },
  4975. "System.IO.FileSystem.Primitives/4.3.0": {
  4976. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  4977. "type": "package",
  4978. "path": "system.io.filesystem.primitives/4.3.0",
  4979. "files": [
  4980. ".nupkg.metadata",
  4981. ".signature.p7s",
  4982. "ThirdPartyNotices.txt",
  4983. "dotnet_library_license.txt",
  4984. "lib/MonoAndroid10/_._",
  4985. "lib/MonoTouch10/_._",
  4986. "lib/net46/System.IO.FileSystem.Primitives.dll",
  4987. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4988. "lib/xamarinios10/_._",
  4989. "lib/xamarinmac20/_._",
  4990. "lib/xamarintvos10/_._",
  4991. "lib/xamarinwatchos10/_._",
  4992. "ref/MonoAndroid10/_._",
  4993. "ref/MonoTouch10/_._",
  4994. "ref/net46/System.IO.FileSystem.Primitives.dll",
  4995. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4996. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  4997. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  4998. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  4999. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5000. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5001. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5002. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5003. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5004. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5005. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5006. "ref/xamarinios10/_._",
  5007. "ref/xamarinmac20/_._",
  5008. "ref/xamarintvos10/_._",
  5009. "ref/xamarinwatchos10/_._",
  5010. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5011. "system.io.filesystem.primitives.nuspec"
  5012. ]
  5013. },
  5014. "System.Linq/4.3.0": {
  5015. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5016. "type": "package",
  5017. "path": "system.linq/4.3.0",
  5018. "files": [
  5019. ".nupkg.metadata",
  5020. ".signature.p7s",
  5021. "ThirdPartyNotices.txt",
  5022. "dotnet_library_license.txt",
  5023. "lib/MonoAndroid10/_._",
  5024. "lib/MonoTouch10/_._",
  5025. "lib/net45/_._",
  5026. "lib/net463/System.Linq.dll",
  5027. "lib/netcore50/System.Linq.dll",
  5028. "lib/netstandard1.6/System.Linq.dll",
  5029. "lib/portable-net45+win8+wp8+wpa81/_._",
  5030. "lib/win8/_._",
  5031. "lib/wp80/_._",
  5032. "lib/wpa81/_._",
  5033. "lib/xamarinios10/_._",
  5034. "lib/xamarinmac20/_._",
  5035. "lib/xamarintvos10/_._",
  5036. "lib/xamarinwatchos10/_._",
  5037. "ref/MonoAndroid10/_._",
  5038. "ref/MonoTouch10/_._",
  5039. "ref/net45/_._",
  5040. "ref/net463/System.Linq.dll",
  5041. "ref/netcore50/System.Linq.dll",
  5042. "ref/netcore50/System.Linq.xml",
  5043. "ref/netcore50/de/System.Linq.xml",
  5044. "ref/netcore50/es/System.Linq.xml",
  5045. "ref/netcore50/fr/System.Linq.xml",
  5046. "ref/netcore50/it/System.Linq.xml",
  5047. "ref/netcore50/ja/System.Linq.xml",
  5048. "ref/netcore50/ko/System.Linq.xml",
  5049. "ref/netcore50/ru/System.Linq.xml",
  5050. "ref/netcore50/zh-hans/System.Linq.xml",
  5051. "ref/netcore50/zh-hant/System.Linq.xml",
  5052. "ref/netstandard1.0/System.Linq.dll",
  5053. "ref/netstandard1.0/System.Linq.xml",
  5054. "ref/netstandard1.0/de/System.Linq.xml",
  5055. "ref/netstandard1.0/es/System.Linq.xml",
  5056. "ref/netstandard1.0/fr/System.Linq.xml",
  5057. "ref/netstandard1.0/it/System.Linq.xml",
  5058. "ref/netstandard1.0/ja/System.Linq.xml",
  5059. "ref/netstandard1.0/ko/System.Linq.xml",
  5060. "ref/netstandard1.0/ru/System.Linq.xml",
  5061. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5062. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5063. "ref/netstandard1.6/System.Linq.dll",
  5064. "ref/netstandard1.6/System.Linq.xml",
  5065. "ref/netstandard1.6/de/System.Linq.xml",
  5066. "ref/netstandard1.6/es/System.Linq.xml",
  5067. "ref/netstandard1.6/fr/System.Linq.xml",
  5068. "ref/netstandard1.6/it/System.Linq.xml",
  5069. "ref/netstandard1.6/ja/System.Linq.xml",
  5070. "ref/netstandard1.6/ko/System.Linq.xml",
  5071. "ref/netstandard1.6/ru/System.Linq.xml",
  5072. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5073. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5074. "ref/portable-net45+win8+wp8+wpa81/_._",
  5075. "ref/win8/_._",
  5076. "ref/wp80/_._",
  5077. "ref/wpa81/_._",
  5078. "ref/xamarinios10/_._",
  5079. "ref/xamarinmac20/_._",
  5080. "ref/xamarintvos10/_._",
  5081. "ref/xamarinwatchos10/_._",
  5082. "system.linq.4.3.0.nupkg.sha512",
  5083. "system.linq.nuspec"
  5084. ]
  5085. },
  5086. "System.Linq.Expressions/4.3.0": {
  5087. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5088. "type": "package",
  5089. "path": "system.linq.expressions/4.3.0",
  5090. "files": [
  5091. ".nupkg.metadata",
  5092. ".signature.p7s",
  5093. "ThirdPartyNotices.txt",
  5094. "dotnet_library_license.txt",
  5095. "lib/MonoAndroid10/_._",
  5096. "lib/MonoTouch10/_._",
  5097. "lib/net45/_._",
  5098. "lib/net463/System.Linq.Expressions.dll",
  5099. "lib/netcore50/System.Linq.Expressions.dll",
  5100. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5101. "lib/portable-net45+win8+wp8+wpa81/_._",
  5102. "lib/win8/_._",
  5103. "lib/wp80/_._",
  5104. "lib/wpa81/_._",
  5105. "lib/xamarinios10/_._",
  5106. "lib/xamarinmac20/_._",
  5107. "lib/xamarintvos10/_._",
  5108. "lib/xamarinwatchos10/_._",
  5109. "ref/MonoAndroid10/_._",
  5110. "ref/MonoTouch10/_._",
  5111. "ref/net45/_._",
  5112. "ref/net463/System.Linq.Expressions.dll",
  5113. "ref/netcore50/System.Linq.Expressions.dll",
  5114. "ref/netcore50/System.Linq.Expressions.xml",
  5115. "ref/netcore50/de/System.Linq.Expressions.xml",
  5116. "ref/netcore50/es/System.Linq.Expressions.xml",
  5117. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5118. "ref/netcore50/it/System.Linq.Expressions.xml",
  5119. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5120. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5121. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5122. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5123. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5124. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5125. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5126. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5127. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5128. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5129. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5130. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5131. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5132. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5133. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5134. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5135. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5136. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5137. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5138. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5139. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5140. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5141. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5142. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5143. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5144. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5145. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5146. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5147. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5148. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5149. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5150. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5151. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5152. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5153. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5154. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5155. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5156. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5157. "ref/portable-net45+win8+wp8+wpa81/_._",
  5158. "ref/win8/_._",
  5159. "ref/wp80/_._",
  5160. "ref/wpa81/_._",
  5161. "ref/xamarinios10/_._",
  5162. "ref/xamarinmac20/_._",
  5163. "ref/xamarintvos10/_._",
  5164. "ref/xamarinwatchos10/_._",
  5165. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5166. "system.linq.expressions.4.3.0.nupkg.sha512",
  5167. "system.linq.expressions.nuspec"
  5168. ]
  5169. },
  5170. "System.Memory/4.5.4": {
  5171. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  5172. "type": "package",
  5173. "path": "system.memory/4.5.4",
  5174. "files": [
  5175. ".nupkg.metadata",
  5176. ".signature.p7s",
  5177. "LICENSE.TXT",
  5178. "THIRD-PARTY-NOTICES.TXT",
  5179. "lib/net461/System.Memory.dll",
  5180. "lib/net461/System.Memory.xml",
  5181. "lib/netcoreapp2.1/_._",
  5182. "lib/netstandard1.1/System.Memory.dll",
  5183. "lib/netstandard1.1/System.Memory.xml",
  5184. "lib/netstandard2.0/System.Memory.dll",
  5185. "lib/netstandard2.0/System.Memory.xml",
  5186. "ref/netcoreapp2.1/_._",
  5187. "system.memory.4.5.4.nupkg.sha512",
  5188. "system.memory.nuspec",
  5189. "useSharedDesignerContext.txt",
  5190. "version.txt"
  5191. ]
  5192. },
  5193. "System.Net.Http/4.3.0": {
  5194. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5195. "type": "package",
  5196. "path": "system.net.http/4.3.0",
  5197. "files": [
  5198. ".nupkg.metadata",
  5199. ".signature.p7s",
  5200. "ThirdPartyNotices.txt",
  5201. "dotnet_library_license.txt",
  5202. "lib/Xamarinmac20/_._",
  5203. "lib/monoandroid10/_._",
  5204. "lib/monotouch10/_._",
  5205. "lib/net45/_._",
  5206. "lib/net46/System.Net.Http.dll",
  5207. "lib/portable-net45+win8+wpa81/_._",
  5208. "lib/win8/_._",
  5209. "lib/wpa81/_._",
  5210. "lib/xamarinios10/_._",
  5211. "lib/xamarintvos10/_._",
  5212. "lib/xamarinwatchos10/_._",
  5213. "ref/Xamarinmac20/_._",
  5214. "ref/monoandroid10/_._",
  5215. "ref/monotouch10/_._",
  5216. "ref/net45/_._",
  5217. "ref/net46/System.Net.Http.dll",
  5218. "ref/net46/System.Net.Http.xml",
  5219. "ref/net46/de/System.Net.Http.xml",
  5220. "ref/net46/es/System.Net.Http.xml",
  5221. "ref/net46/fr/System.Net.Http.xml",
  5222. "ref/net46/it/System.Net.Http.xml",
  5223. "ref/net46/ja/System.Net.Http.xml",
  5224. "ref/net46/ko/System.Net.Http.xml",
  5225. "ref/net46/ru/System.Net.Http.xml",
  5226. "ref/net46/zh-hans/System.Net.Http.xml",
  5227. "ref/net46/zh-hant/System.Net.Http.xml",
  5228. "ref/netcore50/System.Net.Http.dll",
  5229. "ref/netcore50/System.Net.Http.xml",
  5230. "ref/netcore50/de/System.Net.Http.xml",
  5231. "ref/netcore50/es/System.Net.Http.xml",
  5232. "ref/netcore50/fr/System.Net.Http.xml",
  5233. "ref/netcore50/it/System.Net.Http.xml",
  5234. "ref/netcore50/ja/System.Net.Http.xml",
  5235. "ref/netcore50/ko/System.Net.Http.xml",
  5236. "ref/netcore50/ru/System.Net.Http.xml",
  5237. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5238. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5239. "ref/netstandard1.1/System.Net.Http.dll",
  5240. "ref/netstandard1.1/System.Net.Http.xml",
  5241. "ref/netstandard1.1/de/System.Net.Http.xml",
  5242. "ref/netstandard1.1/es/System.Net.Http.xml",
  5243. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5244. "ref/netstandard1.1/it/System.Net.Http.xml",
  5245. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5246. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5247. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5248. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5249. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5250. "ref/netstandard1.3/System.Net.Http.dll",
  5251. "ref/netstandard1.3/System.Net.Http.xml",
  5252. "ref/netstandard1.3/de/System.Net.Http.xml",
  5253. "ref/netstandard1.3/es/System.Net.Http.xml",
  5254. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5255. "ref/netstandard1.3/it/System.Net.Http.xml",
  5256. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5257. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5258. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5259. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5260. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5261. "ref/portable-net45+win8+wpa81/_._",
  5262. "ref/win8/_._",
  5263. "ref/wpa81/_._",
  5264. "ref/xamarinios10/_._",
  5265. "ref/xamarintvos10/_._",
  5266. "ref/xamarinwatchos10/_._",
  5267. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5268. "runtimes/win/lib/net46/System.Net.Http.dll",
  5269. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5270. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5271. "system.net.http.4.3.0.nupkg.sha512",
  5272. "system.net.http.nuspec"
  5273. ]
  5274. },
  5275. "System.Net.Http.WinHttpHandler/4.4.0": {
  5276. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  5277. "type": "package",
  5278. "path": "system.net.http.winhttphandler/4.4.0",
  5279. "files": [
  5280. ".nupkg.metadata",
  5281. ".signature.p7s",
  5282. "LICENSE.TXT",
  5283. "THIRD-PARTY-NOTICES.TXT",
  5284. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  5285. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  5286. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  5287. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  5288. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  5289. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  5290. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  5291. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  5292. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  5293. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  5294. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  5295. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  5296. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  5297. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  5298. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  5299. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  5300. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  5301. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  5302. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  5303. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  5304. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  5305. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  5306. "system.net.http.winhttphandler.nuspec",
  5307. "useSharedDesignerContext.txt",
  5308. "version.txt"
  5309. ]
  5310. },
  5311. "System.Net.NameResolution/4.0.0": {
  5312. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  5313. "type": "package",
  5314. "path": "system.net.nameresolution/4.0.0",
  5315. "files": [
  5316. ".nupkg.metadata",
  5317. ".signature.p7s",
  5318. "ThirdPartyNotices.txt",
  5319. "dotnet_library_license.txt",
  5320. "lib/MonoAndroid10/_._",
  5321. "lib/MonoTouch10/_._",
  5322. "lib/net46/System.Net.NameResolution.dll",
  5323. "lib/xamarinios10/_._",
  5324. "lib/xamarinmac20/_._",
  5325. "lib/xamarintvos10/_._",
  5326. "lib/xamarinwatchos10/_._",
  5327. "ref/MonoAndroid10/_._",
  5328. "ref/MonoTouch10/_._",
  5329. "ref/net46/System.Net.NameResolution.dll",
  5330. "ref/netstandard1.3/System.Net.NameResolution.dll",
  5331. "ref/netstandard1.3/System.Net.NameResolution.xml",
  5332. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  5333. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  5334. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  5335. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  5336. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  5337. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  5338. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  5339. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  5340. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  5341. "ref/xamarinios10/_._",
  5342. "ref/xamarinmac20/_._",
  5343. "ref/xamarintvos10/_._",
  5344. "ref/xamarinwatchos10/_._",
  5345. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  5346. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  5347. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  5348. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  5349. "system.net.nameresolution.4.0.0.nupkg.sha512",
  5350. "system.net.nameresolution.nuspec"
  5351. ]
  5352. },
  5353. "System.Net.Primitives/4.3.0": {
  5354. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5355. "type": "package",
  5356. "path": "system.net.primitives/4.3.0",
  5357. "files": [
  5358. ".nupkg.metadata",
  5359. ".signature.p7s",
  5360. "ThirdPartyNotices.txt",
  5361. "dotnet_library_license.txt",
  5362. "lib/MonoAndroid10/_._",
  5363. "lib/MonoTouch10/_._",
  5364. "lib/net45/_._",
  5365. "lib/portable-net45+win8+wp8+wpa81/_._",
  5366. "lib/win8/_._",
  5367. "lib/wp80/_._",
  5368. "lib/wpa81/_._",
  5369. "lib/xamarinios10/_._",
  5370. "lib/xamarinmac20/_._",
  5371. "lib/xamarintvos10/_._",
  5372. "lib/xamarinwatchos10/_._",
  5373. "ref/MonoAndroid10/_._",
  5374. "ref/MonoTouch10/_._",
  5375. "ref/net45/_._",
  5376. "ref/netcore50/System.Net.Primitives.dll",
  5377. "ref/netcore50/System.Net.Primitives.xml",
  5378. "ref/netcore50/de/System.Net.Primitives.xml",
  5379. "ref/netcore50/es/System.Net.Primitives.xml",
  5380. "ref/netcore50/fr/System.Net.Primitives.xml",
  5381. "ref/netcore50/it/System.Net.Primitives.xml",
  5382. "ref/netcore50/ja/System.Net.Primitives.xml",
  5383. "ref/netcore50/ko/System.Net.Primitives.xml",
  5384. "ref/netcore50/ru/System.Net.Primitives.xml",
  5385. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5386. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5387. "ref/netstandard1.0/System.Net.Primitives.dll",
  5388. "ref/netstandard1.0/System.Net.Primitives.xml",
  5389. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5390. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5391. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5392. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5393. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5394. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5395. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5396. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5397. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5398. "ref/netstandard1.1/System.Net.Primitives.dll",
  5399. "ref/netstandard1.1/System.Net.Primitives.xml",
  5400. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5401. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5402. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5403. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5404. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5405. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5406. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5407. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5408. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5409. "ref/netstandard1.3/System.Net.Primitives.dll",
  5410. "ref/netstandard1.3/System.Net.Primitives.xml",
  5411. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5412. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5413. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5414. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5415. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5416. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5417. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5418. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5419. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5420. "ref/portable-net45+win8+wp8+wpa81/_._",
  5421. "ref/win8/_._",
  5422. "ref/wp80/_._",
  5423. "ref/wpa81/_._",
  5424. "ref/xamarinios10/_._",
  5425. "ref/xamarinmac20/_._",
  5426. "ref/xamarintvos10/_._",
  5427. "ref/xamarinwatchos10/_._",
  5428. "system.net.primitives.4.3.0.nupkg.sha512",
  5429. "system.net.primitives.nuspec"
  5430. ]
  5431. },
  5432. "System.Net.Sockets/4.3.0": {
  5433. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  5434. "type": "package",
  5435. "path": "system.net.sockets/4.3.0",
  5436. "files": [
  5437. ".nupkg.metadata",
  5438. ".signature.p7s",
  5439. "ThirdPartyNotices.txt",
  5440. "dotnet_library_license.txt",
  5441. "lib/MonoAndroid10/_._",
  5442. "lib/MonoTouch10/_._",
  5443. "lib/net46/System.Net.Sockets.dll",
  5444. "lib/xamarinios10/_._",
  5445. "lib/xamarinmac20/_._",
  5446. "lib/xamarintvos10/_._",
  5447. "lib/xamarinwatchos10/_._",
  5448. "ref/MonoAndroid10/_._",
  5449. "ref/MonoTouch10/_._",
  5450. "ref/net46/System.Net.Sockets.dll",
  5451. "ref/netstandard1.3/System.Net.Sockets.dll",
  5452. "ref/netstandard1.3/System.Net.Sockets.xml",
  5453. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5454. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5455. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5456. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5457. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5458. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5459. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5460. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5461. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5462. "ref/xamarinios10/_._",
  5463. "ref/xamarinmac20/_._",
  5464. "ref/xamarintvos10/_._",
  5465. "ref/xamarinwatchos10/_._",
  5466. "system.net.sockets.4.3.0.nupkg.sha512",
  5467. "system.net.sockets.nuspec"
  5468. ]
  5469. },
  5470. "System.ObjectModel/4.3.0": {
  5471. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  5472. "type": "package",
  5473. "path": "system.objectmodel/4.3.0",
  5474. "files": [
  5475. ".nupkg.metadata",
  5476. ".signature.p7s",
  5477. "ThirdPartyNotices.txt",
  5478. "dotnet_library_license.txt",
  5479. "lib/MonoAndroid10/_._",
  5480. "lib/MonoTouch10/_._",
  5481. "lib/net45/_._",
  5482. "lib/netcore50/System.ObjectModel.dll",
  5483. "lib/netstandard1.3/System.ObjectModel.dll",
  5484. "lib/portable-net45+win8+wp8+wpa81/_._",
  5485. "lib/win8/_._",
  5486. "lib/wp80/_._",
  5487. "lib/wpa81/_._",
  5488. "lib/xamarinios10/_._",
  5489. "lib/xamarinmac20/_._",
  5490. "lib/xamarintvos10/_._",
  5491. "lib/xamarinwatchos10/_._",
  5492. "ref/MonoAndroid10/_._",
  5493. "ref/MonoTouch10/_._",
  5494. "ref/net45/_._",
  5495. "ref/netcore50/System.ObjectModel.dll",
  5496. "ref/netcore50/System.ObjectModel.xml",
  5497. "ref/netcore50/de/System.ObjectModel.xml",
  5498. "ref/netcore50/es/System.ObjectModel.xml",
  5499. "ref/netcore50/fr/System.ObjectModel.xml",
  5500. "ref/netcore50/it/System.ObjectModel.xml",
  5501. "ref/netcore50/ja/System.ObjectModel.xml",
  5502. "ref/netcore50/ko/System.ObjectModel.xml",
  5503. "ref/netcore50/ru/System.ObjectModel.xml",
  5504. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5505. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5506. "ref/netstandard1.0/System.ObjectModel.dll",
  5507. "ref/netstandard1.0/System.ObjectModel.xml",
  5508. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5509. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5510. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5511. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5512. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5513. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5514. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5515. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5516. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5517. "ref/netstandard1.3/System.ObjectModel.dll",
  5518. "ref/netstandard1.3/System.ObjectModel.xml",
  5519. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5520. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5521. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5522. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5523. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5524. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5525. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5526. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5527. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5528. "ref/portable-net45+win8+wp8+wpa81/_._",
  5529. "ref/win8/_._",
  5530. "ref/wp80/_._",
  5531. "ref/wpa81/_._",
  5532. "ref/xamarinios10/_._",
  5533. "ref/xamarinmac20/_._",
  5534. "ref/xamarintvos10/_._",
  5535. "ref/xamarinwatchos10/_._",
  5536. "system.objectmodel.4.3.0.nupkg.sha512",
  5537. "system.objectmodel.nuspec"
  5538. ]
  5539. },
  5540. "System.Private.ServiceModel/4.4.4": {
  5541. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  5542. "type": "package",
  5543. "path": "system.private.servicemodel/4.4.4",
  5544. "files": [
  5545. ".nupkg.metadata",
  5546. ".signature.p7s",
  5547. "LICENSE.TXT",
  5548. "THIRD-PARTY-NOTICES.TXT",
  5549. "ref/netstandard/_._",
  5550. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  5551. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  5552. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  5553. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  5554. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  5555. "system.private.servicemodel.4.4.4.nupkg.sha512",
  5556. "system.private.servicemodel.nuspec",
  5557. "version.txt"
  5558. ]
  5559. },
  5560. "System.Reactive.Core/3.1.1": {
  5561. "sha512": "CKWC+UP1aM75taNX+sTBn2P97uHIUjKxq+z45iy7P91QGFqNFleR2tsqIC76HMVvYl7o8oWyMiycdsc9rC1Z/g==",
  5562. "type": "package",
  5563. "path": "system.reactive.core/3.1.1",
  5564. "files": [
  5565. ".nupkg.metadata",
  5566. ".signature.p7s",
  5567. "lib/net45/System.Reactive.Core.dll",
  5568. "lib/net45/System.Reactive.Core.xml",
  5569. "lib/net46/System.Reactive.Core.dll",
  5570. "lib/net46/System.Reactive.Core.xml",
  5571. "lib/netcore451/System.Reactive.Core.dll",
  5572. "lib/netcore451/System.Reactive.Core.xml",
  5573. "lib/netcoreapp1.0/System.Reactive.Core.dll",
  5574. "lib/netcoreapp1.0/System.Reactive.Core.xml",
  5575. "lib/netstandard1.0/System.Reactive.Core.dll",
  5576. "lib/netstandard1.0/System.Reactive.Core.xml",
  5577. "lib/netstandard1.1/System.Reactive.Core.dll",
  5578. "lib/netstandard1.1/System.Reactive.Core.xml",
  5579. "lib/netstandard1.3/System.Reactive.Core.dll",
  5580. "lib/netstandard1.3/System.Reactive.Core.xml",
  5581. "lib/uap10.0/System.Reactive.Core.dll",
  5582. "lib/uap10.0/System.Reactive.Core.xml",
  5583. "lib/wpa81/System.Reactive.Core.dll",
  5584. "lib/wpa81/System.Reactive.Core.xml",
  5585. "system.reactive.core.3.1.1.nupkg.sha512",
  5586. "system.reactive.core.nuspec"
  5587. ]
  5588. },
  5589. "System.Reactive.Interfaces/3.1.1": {
  5590. "sha512": "aNVY3QoRznGFeQ+w+bMqhD8ElNWoyYq+7XTQIoxKKjBOyTOjUqIMEf1wvSdtwC4y92zg2W9q38b4Sr6cYNHVLg==",
  5591. "type": "package",
  5592. "path": "system.reactive.interfaces/3.1.1",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. ".signature.p7s",
  5596. "lib/net45/System.Reactive.Interfaces.dll",
  5597. "lib/net45/System.Reactive.Interfaces.xml",
  5598. "lib/netstandard1.0/System.Reactive.Interfaces.dll",
  5599. "lib/netstandard1.0/System.Reactive.Interfaces.xml",
  5600. "system.reactive.interfaces.3.1.1.nupkg.sha512",
  5601. "system.reactive.interfaces.nuspec"
  5602. ]
  5603. },
  5604. "System.Reactive.Linq/3.1.1": {
  5605. "sha512": "HwsZsoYRg51cLGBOEa0uoZ5+d4CMcHEg/KrbqePhLxoz/SLA+ULISphBtn3woABPATOQ6j5YgGZWh4jxnJ3KYQ==",
  5606. "type": "package",
  5607. "path": "system.reactive.linq/3.1.1",
  5608. "files": [
  5609. ".nupkg.metadata",
  5610. ".signature.p7s",
  5611. "lib/net45/System.Reactive.Linq.dll",
  5612. "lib/net45/System.Reactive.Linq.xml",
  5613. "lib/net46/System.Reactive.Linq.dll",
  5614. "lib/net46/System.Reactive.Linq.xml",
  5615. "lib/netstandard1.0/System.Reactive.Linq.dll",
  5616. "lib/netstandard1.0/System.Reactive.Linq.xml",
  5617. "lib/netstandard1.1/System.Reactive.Linq.dll",
  5618. "lib/netstandard1.1/System.Reactive.Linq.xml",
  5619. "lib/netstandard1.3/System.Reactive.Linq.dll",
  5620. "lib/netstandard1.3/System.Reactive.Linq.xml",
  5621. "system.reactive.linq.3.1.1.nupkg.sha512",
  5622. "system.reactive.linq.nuspec"
  5623. ]
  5624. },
  5625. "System.Reflection/4.3.0": {
  5626. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5627. "type": "package",
  5628. "path": "system.reflection/4.3.0",
  5629. "files": [
  5630. ".nupkg.metadata",
  5631. ".signature.p7s",
  5632. "ThirdPartyNotices.txt",
  5633. "dotnet_library_license.txt",
  5634. "lib/MonoAndroid10/_._",
  5635. "lib/MonoTouch10/_._",
  5636. "lib/net45/_._",
  5637. "lib/net462/System.Reflection.dll",
  5638. "lib/portable-net45+win8+wp8+wpa81/_._",
  5639. "lib/win8/_._",
  5640. "lib/wp80/_._",
  5641. "lib/wpa81/_._",
  5642. "lib/xamarinios10/_._",
  5643. "lib/xamarinmac20/_._",
  5644. "lib/xamarintvos10/_._",
  5645. "lib/xamarinwatchos10/_._",
  5646. "ref/MonoAndroid10/_._",
  5647. "ref/MonoTouch10/_._",
  5648. "ref/net45/_._",
  5649. "ref/net462/System.Reflection.dll",
  5650. "ref/netcore50/System.Reflection.dll",
  5651. "ref/netcore50/System.Reflection.xml",
  5652. "ref/netcore50/de/System.Reflection.xml",
  5653. "ref/netcore50/es/System.Reflection.xml",
  5654. "ref/netcore50/fr/System.Reflection.xml",
  5655. "ref/netcore50/it/System.Reflection.xml",
  5656. "ref/netcore50/ja/System.Reflection.xml",
  5657. "ref/netcore50/ko/System.Reflection.xml",
  5658. "ref/netcore50/ru/System.Reflection.xml",
  5659. "ref/netcore50/zh-hans/System.Reflection.xml",
  5660. "ref/netcore50/zh-hant/System.Reflection.xml",
  5661. "ref/netstandard1.0/System.Reflection.dll",
  5662. "ref/netstandard1.0/System.Reflection.xml",
  5663. "ref/netstandard1.0/de/System.Reflection.xml",
  5664. "ref/netstandard1.0/es/System.Reflection.xml",
  5665. "ref/netstandard1.0/fr/System.Reflection.xml",
  5666. "ref/netstandard1.0/it/System.Reflection.xml",
  5667. "ref/netstandard1.0/ja/System.Reflection.xml",
  5668. "ref/netstandard1.0/ko/System.Reflection.xml",
  5669. "ref/netstandard1.0/ru/System.Reflection.xml",
  5670. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5671. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5672. "ref/netstandard1.3/System.Reflection.dll",
  5673. "ref/netstandard1.3/System.Reflection.xml",
  5674. "ref/netstandard1.3/de/System.Reflection.xml",
  5675. "ref/netstandard1.3/es/System.Reflection.xml",
  5676. "ref/netstandard1.3/fr/System.Reflection.xml",
  5677. "ref/netstandard1.3/it/System.Reflection.xml",
  5678. "ref/netstandard1.3/ja/System.Reflection.xml",
  5679. "ref/netstandard1.3/ko/System.Reflection.xml",
  5680. "ref/netstandard1.3/ru/System.Reflection.xml",
  5681. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5682. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5683. "ref/netstandard1.5/System.Reflection.dll",
  5684. "ref/netstandard1.5/System.Reflection.xml",
  5685. "ref/netstandard1.5/de/System.Reflection.xml",
  5686. "ref/netstandard1.5/es/System.Reflection.xml",
  5687. "ref/netstandard1.5/fr/System.Reflection.xml",
  5688. "ref/netstandard1.5/it/System.Reflection.xml",
  5689. "ref/netstandard1.5/ja/System.Reflection.xml",
  5690. "ref/netstandard1.5/ko/System.Reflection.xml",
  5691. "ref/netstandard1.5/ru/System.Reflection.xml",
  5692. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5693. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5694. "ref/portable-net45+win8+wp8+wpa81/_._",
  5695. "ref/win8/_._",
  5696. "ref/wp80/_._",
  5697. "ref/wpa81/_._",
  5698. "ref/xamarinios10/_._",
  5699. "ref/xamarinmac20/_._",
  5700. "ref/xamarintvos10/_._",
  5701. "ref/xamarinwatchos10/_._",
  5702. "system.reflection.4.3.0.nupkg.sha512",
  5703. "system.reflection.nuspec"
  5704. ]
  5705. },
  5706. "System.Reflection.DispatchProxy/4.4.0": {
  5707. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  5708. "type": "package",
  5709. "path": "system.reflection.dispatchproxy/4.4.0",
  5710. "files": [
  5711. ".nupkg.metadata",
  5712. ".signature.p7s",
  5713. "LICENSE.TXT",
  5714. "THIRD-PARTY-NOTICES.TXT",
  5715. "lib/MonoAndroid10/_._",
  5716. "lib/MonoTouch10/_._",
  5717. "lib/net461/System.Reflection.DispatchProxy.dll",
  5718. "lib/netcoreapp2.0/_._",
  5719. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  5720. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  5721. "lib/xamarinios10/_._",
  5722. "lib/xamarinmac20/_._",
  5723. "lib/xamarintvos10/_._",
  5724. "lib/xamarinwatchos10/_._",
  5725. "ref/MonoAndroid10/_._",
  5726. "ref/MonoTouch10/_._",
  5727. "ref/netcoreapp2.0/_._",
  5728. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  5729. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  5730. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  5731. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  5732. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  5733. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  5734. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  5735. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  5736. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  5737. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  5738. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  5739. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  5740. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  5741. "ref/xamarinios10/_._",
  5742. "ref/xamarinmac20/_._",
  5743. "ref/xamarintvos10/_._",
  5744. "ref/xamarinwatchos10/_._",
  5745. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  5746. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  5747. "system.reflection.dispatchproxy.nuspec",
  5748. "useSharedDesignerContext.txt",
  5749. "version.txt"
  5750. ]
  5751. },
  5752. "System.Reflection.Emit/4.3.0": {
  5753. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5754. "type": "package",
  5755. "path": "system.reflection.emit/4.3.0",
  5756. "files": [
  5757. ".nupkg.metadata",
  5758. ".signature.p7s",
  5759. "ThirdPartyNotices.txt",
  5760. "dotnet_library_license.txt",
  5761. "lib/MonoAndroid10/_._",
  5762. "lib/monotouch10/_._",
  5763. "lib/net45/_._",
  5764. "lib/netcore50/System.Reflection.Emit.dll",
  5765. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5766. "lib/xamarinios10/_._",
  5767. "lib/xamarinmac20/_._",
  5768. "lib/xamarintvos10/_._",
  5769. "lib/xamarinwatchos10/_._",
  5770. "ref/MonoAndroid10/_._",
  5771. "ref/net45/_._",
  5772. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5773. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5774. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5775. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5776. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5777. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5778. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5779. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5780. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5781. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5782. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5783. "ref/xamarinmac20/_._",
  5784. "system.reflection.emit.4.3.0.nupkg.sha512",
  5785. "system.reflection.emit.nuspec"
  5786. ]
  5787. },
  5788. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5789. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5790. "type": "package",
  5791. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5792. "files": [
  5793. ".nupkg.metadata",
  5794. ".signature.p7s",
  5795. "ThirdPartyNotices.txt",
  5796. "dotnet_library_license.txt",
  5797. "lib/MonoAndroid10/_._",
  5798. "lib/MonoTouch10/_._",
  5799. "lib/net45/_._",
  5800. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5801. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5802. "lib/portable-net45+wp8/_._",
  5803. "lib/wp80/_._",
  5804. "lib/xamarinios10/_._",
  5805. "lib/xamarinmac20/_._",
  5806. "lib/xamarintvos10/_._",
  5807. "lib/xamarinwatchos10/_._",
  5808. "ref/MonoAndroid10/_._",
  5809. "ref/MonoTouch10/_._",
  5810. "ref/net45/_._",
  5811. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5812. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5813. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5814. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5815. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5816. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5817. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5818. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5819. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5820. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5821. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5822. "ref/portable-net45+wp8/_._",
  5823. "ref/wp80/_._",
  5824. "ref/xamarinios10/_._",
  5825. "ref/xamarinmac20/_._",
  5826. "ref/xamarintvos10/_._",
  5827. "ref/xamarinwatchos10/_._",
  5828. "runtimes/aot/lib/netcore50/_._",
  5829. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5830. "system.reflection.emit.ilgeneration.nuspec"
  5831. ]
  5832. },
  5833. "System.Reflection.Emit.Lightweight/4.3.0": {
  5834. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5835. "type": "package",
  5836. "path": "system.reflection.emit.lightweight/4.3.0",
  5837. "files": [
  5838. ".nupkg.metadata",
  5839. ".signature.p7s",
  5840. "ThirdPartyNotices.txt",
  5841. "dotnet_library_license.txt",
  5842. "lib/MonoAndroid10/_._",
  5843. "lib/MonoTouch10/_._",
  5844. "lib/net45/_._",
  5845. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5846. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5847. "lib/portable-net45+wp8/_._",
  5848. "lib/wp80/_._",
  5849. "lib/xamarinios10/_._",
  5850. "lib/xamarinmac20/_._",
  5851. "lib/xamarintvos10/_._",
  5852. "lib/xamarinwatchos10/_._",
  5853. "ref/MonoAndroid10/_._",
  5854. "ref/MonoTouch10/_._",
  5855. "ref/net45/_._",
  5856. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5857. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5858. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5859. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5860. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5861. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5862. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5863. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5864. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5865. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5866. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5867. "ref/portable-net45+wp8/_._",
  5868. "ref/wp80/_._",
  5869. "ref/xamarinios10/_._",
  5870. "ref/xamarinmac20/_._",
  5871. "ref/xamarintvos10/_._",
  5872. "ref/xamarinwatchos10/_._",
  5873. "runtimes/aot/lib/netcore50/_._",
  5874. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  5875. "system.reflection.emit.lightweight.nuspec"
  5876. ]
  5877. },
  5878. "System.Reflection.Extensions/4.3.0": {
  5879. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  5880. "type": "package",
  5881. "path": "system.reflection.extensions/4.3.0",
  5882. "files": [
  5883. ".nupkg.metadata",
  5884. ".signature.p7s",
  5885. "ThirdPartyNotices.txt",
  5886. "dotnet_library_license.txt",
  5887. "lib/MonoAndroid10/_._",
  5888. "lib/MonoTouch10/_._",
  5889. "lib/net45/_._",
  5890. "lib/portable-net45+win8+wp8+wpa81/_._",
  5891. "lib/win8/_._",
  5892. "lib/wp80/_._",
  5893. "lib/wpa81/_._",
  5894. "lib/xamarinios10/_._",
  5895. "lib/xamarinmac20/_._",
  5896. "lib/xamarintvos10/_._",
  5897. "lib/xamarinwatchos10/_._",
  5898. "ref/MonoAndroid10/_._",
  5899. "ref/MonoTouch10/_._",
  5900. "ref/net45/_._",
  5901. "ref/netcore50/System.Reflection.Extensions.dll",
  5902. "ref/netcore50/System.Reflection.Extensions.xml",
  5903. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5904. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5905. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5906. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5907. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5908. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5909. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5910. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5911. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5912. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5913. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5914. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5915. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5916. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5917. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5918. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5919. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5920. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5921. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5922. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5923. "ref/portable-net45+win8+wp8+wpa81/_._",
  5924. "ref/win8/_._",
  5925. "ref/wp80/_._",
  5926. "ref/wpa81/_._",
  5927. "ref/xamarinios10/_._",
  5928. "ref/xamarinmac20/_._",
  5929. "ref/xamarintvos10/_._",
  5930. "ref/xamarinwatchos10/_._",
  5931. "system.reflection.extensions.4.3.0.nupkg.sha512",
  5932. "system.reflection.extensions.nuspec"
  5933. ]
  5934. },
  5935. "System.Reflection.Primitives/4.3.0": {
  5936. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5937. "type": "package",
  5938. "path": "system.reflection.primitives/4.3.0",
  5939. "files": [
  5940. ".nupkg.metadata",
  5941. ".signature.p7s",
  5942. "ThirdPartyNotices.txt",
  5943. "dotnet_library_license.txt",
  5944. "lib/MonoAndroid10/_._",
  5945. "lib/MonoTouch10/_._",
  5946. "lib/net45/_._",
  5947. "lib/portable-net45+win8+wp8+wpa81/_._",
  5948. "lib/win8/_._",
  5949. "lib/wp80/_._",
  5950. "lib/wpa81/_._",
  5951. "lib/xamarinios10/_._",
  5952. "lib/xamarinmac20/_._",
  5953. "lib/xamarintvos10/_._",
  5954. "lib/xamarinwatchos10/_._",
  5955. "ref/MonoAndroid10/_._",
  5956. "ref/MonoTouch10/_._",
  5957. "ref/net45/_._",
  5958. "ref/netcore50/System.Reflection.Primitives.dll",
  5959. "ref/netcore50/System.Reflection.Primitives.xml",
  5960. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5961. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5962. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5963. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5964. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5965. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5966. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5967. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5968. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5969. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5970. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5971. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5972. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5973. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5974. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5975. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5976. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5977. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5978. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5979. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5980. "ref/portable-net45+win8+wp8+wpa81/_._",
  5981. "ref/win8/_._",
  5982. "ref/wp80/_._",
  5983. "ref/wpa81/_._",
  5984. "ref/xamarinios10/_._",
  5985. "ref/xamarinmac20/_._",
  5986. "ref/xamarintvos10/_._",
  5987. "ref/xamarinwatchos10/_._",
  5988. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5989. "system.reflection.primitives.nuspec"
  5990. ]
  5991. },
  5992. "System.Reflection.TypeExtensions/4.3.0": {
  5993. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  5994. "type": "package",
  5995. "path": "system.reflection.typeextensions/4.3.0",
  5996. "files": [
  5997. ".nupkg.metadata",
  5998. ".signature.p7s",
  5999. "ThirdPartyNotices.txt",
  6000. "dotnet_library_license.txt",
  6001. "lib/MonoAndroid10/_._",
  6002. "lib/MonoTouch10/_._",
  6003. "lib/net46/System.Reflection.TypeExtensions.dll",
  6004. "lib/net462/System.Reflection.TypeExtensions.dll",
  6005. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6006. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6007. "lib/xamarinios10/_._",
  6008. "lib/xamarinmac20/_._",
  6009. "lib/xamarintvos10/_._",
  6010. "lib/xamarinwatchos10/_._",
  6011. "ref/MonoAndroid10/_._",
  6012. "ref/MonoTouch10/_._",
  6013. "ref/net46/System.Reflection.TypeExtensions.dll",
  6014. "ref/net462/System.Reflection.TypeExtensions.dll",
  6015. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6016. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6017. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6018. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6019. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6020. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6021. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6022. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6023. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6024. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6025. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6026. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6027. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6028. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6029. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6030. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6031. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6032. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6033. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6034. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6035. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6036. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6037. "ref/xamarinios10/_._",
  6038. "ref/xamarinmac20/_._",
  6039. "ref/xamarintvos10/_._",
  6040. "ref/xamarinwatchos10/_._",
  6041. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6042. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6043. "system.reflection.typeextensions.nuspec"
  6044. ]
  6045. },
  6046. "System.Resources.Extensions/4.6.0-preview8.19405.3": {
  6047. "sha512": "6GWlVqlVxY8bHHD2SSoWmI8o86BJXZT8LSadE8BIbUa5UzHYi95WFnYU6Xaif58D6fduDN/Dv0ZOindx4L7YYA==",
  6048. "type": "package",
  6049. "path": "system.resources.extensions/4.6.0-preview8.19405.3",
  6050. "files": [
  6051. ".nupkg.metadata",
  6052. ".signature.p7s",
  6053. "LICENSE.TXT",
  6054. "THIRD-PARTY-NOTICES.TXT",
  6055. "lib/netstandard2.0/System.Resources.Extensions.dll",
  6056. "lib/netstandard2.0/System.Resources.Extensions.xml",
  6057. "ref/netstandard2.0/System.Resources.Extensions.dll",
  6058. "system.resources.extensions.4.6.0-preview8.19405.3.nupkg.sha512",
  6059. "system.resources.extensions.nuspec",
  6060. "useSharedDesignerContext.txt",
  6061. "version.txt"
  6062. ]
  6063. },
  6064. "System.Resources.ResourceManager/4.3.0": {
  6065. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6066. "type": "package",
  6067. "path": "system.resources.resourcemanager/4.3.0",
  6068. "files": [
  6069. ".nupkg.metadata",
  6070. ".signature.p7s",
  6071. "ThirdPartyNotices.txt",
  6072. "dotnet_library_license.txt",
  6073. "lib/MonoAndroid10/_._",
  6074. "lib/MonoTouch10/_._",
  6075. "lib/net45/_._",
  6076. "lib/portable-net45+win8+wp8+wpa81/_._",
  6077. "lib/win8/_._",
  6078. "lib/wp80/_._",
  6079. "lib/wpa81/_._",
  6080. "lib/xamarinios10/_._",
  6081. "lib/xamarinmac20/_._",
  6082. "lib/xamarintvos10/_._",
  6083. "lib/xamarinwatchos10/_._",
  6084. "ref/MonoAndroid10/_._",
  6085. "ref/MonoTouch10/_._",
  6086. "ref/net45/_._",
  6087. "ref/netcore50/System.Resources.ResourceManager.dll",
  6088. "ref/netcore50/System.Resources.ResourceManager.xml",
  6089. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6090. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6091. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6092. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6093. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6094. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6095. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6096. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6097. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6098. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6099. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6100. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6101. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6102. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6103. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6104. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6105. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6106. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6107. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6108. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6109. "ref/portable-net45+win8+wp8+wpa81/_._",
  6110. "ref/win8/_._",
  6111. "ref/wp80/_._",
  6112. "ref/wpa81/_._",
  6113. "ref/xamarinios10/_._",
  6114. "ref/xamarinmac20/_._",
  6115. "ref/xamarintvos10/_._",
  6116. "ref/xamarinwatchos10/_._",
  6117. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6118. "system.resources.resourcemanager.nuspec"
  6119. ]
  6120. },
  6121. "System.Runtime/4.3.0": {
  6122. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6123. "type": "package",
  6124. "path": "system.runtime/4.3.0",
  6125. "files": [
  6126. ".nupkg.metadata",
  6127. ".signature.p7s",
  6128. "ThirdPartyNotices.txt",
  6129. "dotnet_library_license.txt",
  6130. "lib/MonoAndroid10/_._",
  6131. "lib/MonoTouch10/_._",
  6132. "lib/net45/_._",
  6133. "lib/net462/System.Runtime.dll",
  6134. "lib/portable-net45+win8+wp80+wpa81/_._",
  6135. "lib/win8/_._",
  6136. "lib/wp80/_._",
  6137. "lib/wpa81/_._",
  6138. "lib/xamarinios10/_._",
  6139. "lib/xamarinmac20/_._",
  6140. "lib/xamarintvos10/_._",
  6141. "lib/xamarinwatchos10/_._",
  6142. "ref/MonoAndroid10/_._",
  6143. "ref/MonoTouch10/_._",
  6144. "ref/net45/_._",
  6145. "ref/net462/System.Runtime.dll",
  6146. "ref/netcore50/System.Runtime.dll",
  6147. "ref/netcore50/System.Runtime.xml",
  6148. "ref/netcore50/de/System.Runtime.xml",
  6149. "ref/netcore50/es/System.Runtime.xml",
  6150. "ref/netcore50/fr/System.Runtime.xml",
  6151. "ref/netcore50/it/System.Runtime.xml",
  6152. "ref/netcore50/ja/System.Runtime.xml",
  6153. "ref/netcore50/ko/System.Runtime.xml",
  6154. "ref/netcore50/ru/System.Runtime.xml",
  6155. "ref/netcore50/zh-hans/System.Runtime.xml",
  6156. "ref/netcore50/zh-hant/System.Runtime.xml",
  6157. "ref/netstandard1.0/System.Runtime.dll",
  6158. "ref/netstandard1.0/System.Runtime.xml",
  6159. "ref/netstandard1.0/de/System.Runtime.xml",
  6160. "ref/netstandard1.0/es/System.Runtime.xml",
  6161. "ref/netstandard1.0/fr/System.Runtime.xml",
  6162. "ref/netstandard1.0/it/System.Runtime.xml",
  6163. "ref/netstandard1.0/ja/System.Runtime.xml",
  6164. "ref/netstandard1.0/ko/System.Runtime.xml",
  6165. "ref/netstandard1.0/ru/System.Runtime.xml",
  6166. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6167. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6168. "ref/netstandard1.2/System.Runtime.dll",
  6169. "ref/netstandard1.2/System.Runtime.xml",
  6170. "ref/netstandard1.2/de/System.Runtime.xml",
  6171. "ref/netstandard1.2/es/System.Runtime.xml",
  6172. "ref/netstandard1.2/fr/System.Runtime.xml",
  6173. "ref/netstandard1.2/it/System.Runtime.xml",
  6174. "ref/netstandard1.2/ja/System.Runtime.xml",
  6175. "ref/netstandard1.2/ko/System.Runtime.xml",
  6176. "ref/netstandard1.2/ru/System.Runtime.xml",
  6177. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6178. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6179. "ref/netstandard1.3/System.Runtime.dll",
  6180. "ref/netstandard1.3/System.Runtime.xml",
  6181. "ref/netstandard1.3/de/System.Runtime.xml",
  6182. "ref/netstandard1.3/es/System.Runtime.xml",
  6183. "ref/netstandard1.3/fr/System.Runtime.xml",
  6184. "ref/netstandard1.3/it/System.Runtime.xml",
  6185. "ref/netstandard1.3/ja/System.Runtime.xml",
  6186. "ref/netstandard1.3/ko/System.Runtime.xml",
  6187. "ref/netstandard1.3/ru/System.Runtime.xml",
  6188. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6189. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6190. "ref/netstandard1.5/System.Runtime.dll",
  6191. "ref/netstandard1.5/System.Runtime.xml",
  6192. "ref/netstandard1.5/de/System.Runtime.xml",
  6193. "ref/netstandard1.5/es/System.Runtime.xml",
  6194. "ref/netstandard1.5/fr/System.Runtime.xml",
  6195. "ref/netstandard1.5/it/System.Runtime.xml",
  6196. "ref/netstandard1.5/ja/System.Runtime.xml",
  6197. "ref/netstandard1.5/ko/System.Runtime.xml",
  6198. "ref/netstandard1.5/ru/System.Runtime.xml",
  6199. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6200. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6201. "ref/portable-net45+win8+wp80+wpa81/_._",
  6202. "ref/win8/_._",
  6203. "ref/wp80/_._",
  6204. "ref/wpa81/_._",
  6205. "ref/xamarinios10/_._",
  6206. "ref/xamarinmac20/_._",
  6207. "ref/xamarintvos10/_._",
  6208. "ref/xamarinwatchos10/_._",
  6209. "system.runtime.4.3.0.nupkg.sha512",
  6210. "system.runtime.nuspec"
  6211. ]
  6212. },
  6213. "System.Runtime.CompilerServices.Unsafe/4.7.0": {
  6214. "sha512": "IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
  6215. "type": "package",
  6216. "path": "system.runtime.compilerservices.unsafe/4.7.0",
  6217. "files": [
  6218. ".nupkg.metadata",
  6219. ".signature.p7s",
  6220. "LICENSE.TXT",
  6221. "THIRD-PARTY-NOTICES.TXT",
  6222. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6223. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6224. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6225. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6226. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6227. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6228. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6229. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6230. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6231. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6232. "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
  6233. "system.runtime.compilerservices.unsafe.nuspec",
  6234. "useSharedDesignerContext.txt",
  6235. "version.txt"
  6236. ]
  6237. },
  6238. "System.Runtime.Extensions/4.3.0": {
  6239. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6240. "type": "package",
  6241. "path": "system.runtime.extensions/4.3.0",
  6242. "files": [
  6243. ".nupkg.metadata",
  6244. ".signature.p7s",
  6245. "ThirdPartyNotices.txt",
  6246. "dotnet_library_license.txt",
  6247. "lib/MonoAndroid10/_._",
  6248. "lib/MonoTouch10/_._",
  6249. "lib/net45/_._",
  6250. "lib/net462/System.Runtime.Extensions.dll",
  6251. "lib/portable-net45+win8+wp8+wpa81/_._",
  6252. "lib/win8/_._",
  6253. "lib/wp80/_._",
  6254. "lib/wpa81/_._",
  6255. "lib/xamarinios10/_._",
  6256. "lib/xamarinmac20/_._",
  6257. "lib/xamarintvos10/_._",
  6258. "lib/xamarinwatchos10/_._",
  6259. "ref/MonoAndroid10/_._",
  6260. "ref/MonoTouch10/_._",
  6261. "ref/net45/_._",
  6262. "ref/net462/System.Runtime.Extensions.dll",
  6263. "ref/netcore50/System.Runtime.Extensions.dll",
  6264. "ref/netcore50/System.Runtime.Extensions.xml",
  6265. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6266. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6267. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6268. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6269. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6270. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6271. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6272. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6273. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6274. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6275. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6276. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6277. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6278. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6279. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6280. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6281. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6282. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6283. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6284. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6285. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6286. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6287. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6288. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6289. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6290. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6291. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6292. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6293. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6294. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6295. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6296. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6297. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6298. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6299. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6300. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6301. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6302. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6303. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6304. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6305. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6306. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6307. "ref/portable-net45+win8+wp8+wpa81/_._",
  6308. "ref/win8/_._",
  6309. "ref/wp80/_._",
  6310. "ref/wpa81/_._",
  6311. "ref/xamarinios10/_._",
  6312. "ref/xamarinmac20/_._",
  6313. "ref/xamarintvos10/_._",
  6314. "ref/xamarinwatchos10/_._",
  6315. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6316. "system.runtime.extensions.nuspec"
  6317. ]
  6318. },
  6319. "System.Runtime.Handles/4.3.0": {
  6320. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6321. "type": "package",
  6322. "path": "system.runtime.handles/4.3.0",
  6323. "files": [
  6324. ".nupkg.metadata",
  6325. ".signature.p7s",
  6326. "ThirdPartyNotices.txt",
  6327. "dotnet_library_license.txt",
  6328. "lib/MonoAndroid10/_._",
  6329. "lib/MonoTouch10/_._",
  6330. "lib/net46/_._",
  6331. "lib/xamarinios10/_._",
  6332. "lib/xamarinmac20/_._",
  6333. "lib/xamarintvos10/_._",
  6334. "lib/xamarinwatchos10/_._",
  6335. "ref/MonoAndroid10/_._",
  6336. "ref/MonoTouch10/_._",
  6337. "ref/net46/_._",
  6338. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6339. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6340. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6341. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6342. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6343. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6344. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6345. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6346. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6347. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6348. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6349. "ref/xamarinios10/_._",
  6350. "ref/xamarinmac20/_._",
  6351. "ref/xamarintvos10/_._",
  6352. "ref/xamarinwatchos10/_._",
  6353. "system.runtime.handles.4.3.0.nupkg.sha512",
  6354. "system.runtime.handles.nuspec"
  6355. ]
  6356. },
  6357. "System.Runtime.InteropServices/4.3.0": {
  6358. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6359. "type": "package",
  6360. "path": "system.runtime.interopservices/4.3.0",
  6361. "files": [
  6362. ".nupkg.metadata",
  6363. ".signature.p7s",
  6364. "ThirdPartyNotices.txt",
  6365. "dotnet_library_license.txt",
  6366. "lib/MonoAndroid10/_._",
  6367. "lib/MonoTouch10/_._",
  6368. "lib/net45/_._",
  6369. "lib/net462/System.Runtime.InteropServices.dll",
  6370. "lib/net463/System.Runtime.InteropServices.dll",
  6371. "lib/portable-net45+win8+wpa81/_._",
  6372. "lib/win8/_._",
  6373. "lib/wpa81/_._",
  6374. "lib/xamarinios10/_._",
  6375. "lib/xamarinmac20/_._",
  6376. "lib/xamarintvos10/_._",
  6377. "lib/xamarinwatchos10/_._",
  6378. "ref/MonoAndroid10/_._",
  6379. "ref/MonoTouch10/_._",
  6380. "ref/net45/_._",
  6381. "ref/net462/System.Runtime.InteropServices.dll",
  6382. "ref/net463/System.Runtime.InteropServices.dll",
  6383. "ref/netcore50/System.Runtime.InteropServices.dll",
  6384. "ref/netcore50/System.Runtime.InteropServices.xml",
  6385. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6386. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6387. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6388. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6389. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6390. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6391. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6392. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6393. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6394. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6395. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6396. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6397. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6398. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6399. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6400. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6401. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6402. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6403. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6404. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6405. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6406. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6407. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6408. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6409. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6410. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6411. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6412. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6413. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6414. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6415. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6416. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6417. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6418. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6419. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6420. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6421. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6422. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6423. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6424. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6425. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6426. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6427. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6428. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6429. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6430. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6431. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6432. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6433. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6434. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6435. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6436. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6437. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6438. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6439. "ref/portable-net45+win8+wpa81/_._",
  6440. "ref/win8/_._",
  6441. "ref/wpa81/_._",
  6442. "ref/xamarinios10/_._",
  6443. "ref/xamarinmac20/_._",
  6444. "ref/xamarintvos10/_._",
  6445. "ref/xamarinwatchos10/_._",
  6446. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6447. "system.runtime.interopservices.nuspec"
  6448. ]
  6449. },
  6450. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6451. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6452. "type": "package",
  6453. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6454. "files": [
  6455. ".nupkg.metadata",
  6456. ".signature.p7s",
  6457. "ThirdPartyNotices.txt",
  6458. "dotnet_library_license.txt",
  6459. "lib/MonoAndroid10/_._",
  6460. "lib/MonoTouch10/_._",
  6461. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6462. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6463. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6464. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6465. "lib/xamarinios10/_._",
  6466. "lib/xamarinmac20/_._",
  6467. "lib/xamarintvos10/_._",
  6468. "lib/xamarinwatchos10/_._",
  6469. "ref/MonoAndroid10/_._",
  6470. "ref/MonoTouch10/_._",
  6471. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6472. "ref/xamarinios10/_._",
  6473. "ref/xamarinmac20/_._",
  6474. "ref/xamarintvos10/_._",
  6475. "ref/xamarinwatchos10/_._",
  6476. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6477. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6478. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6479. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6480. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6481. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6482. "system.runtime.interopservices.runtimeinformation.nuspec"
  6483. ]
  6484. },
  6485. "System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
  6486. "sha512": "oIIXM4w2y3MiEZEXA+RTtfPV+SZ1ymbFdWppHlUciNdNIL0/Uo3HW9q9iN2O7T7KUmRdvjA7C2Gv4exAyW4zEQ==",
  6487. "type": "package",
  6488. "path": "system.runtime.interopservices.windowsruntime/4.0.1",
  6489. "files": [
  6490. ".nupkg.metadata",
  6491. ".signature.p7s",
  6492. "ThirdPartyNotices.txt",
  6493. "dotnet_library_license.txt",
  6494. "lib/net45/_._",
  6495. "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  6496. "lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll",
  6497. "lib/portable-net45+win8+wp8+wpa81/_._",
  6498. "lib/win8/_._",
  6499. "lib/wp80/_._",
  6500. "lib/wpa81/_._",
  6501. "lib/xamarinios1/_._",
  6502. "ref/net45/_._",
  6503. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  6504. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
  6505. "ref/netcore50/de/System.Runtime.InteropServices.WindowsRuntime.xml",
  6506. "ref/netcore50/es/System.Runtime.InteropServices.WindowsRuntime.xml",
  6507. "ref/netcore50/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
  6508. "ref/netcore50/it/System.Runtime.InteropServices.WindowsRuntime.xml",
  6509. "ref/netcore50/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
  6510. "ref/netcore50/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
  6511. "ref/netcore50/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
  6512. "ref/netcore50/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
  6513. "ref/netcore50/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
  6514. "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll",
  6515. "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.xml",
  6516. "ref/netstandard1.0/de/System.Runtime.InteropServices.WindowsRuntime.xml",
  6517. "ref/netstandard1.0/es/System.Runtime.InteropServices.WindowsRuntime.xml",
  6518. "ref/netstandard1.0/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
  6519. "ref/netstandard1.0/it/System.Runtime.InteropServices.WindowsRuntime.xml",
  6520. "ref/netstandard1.0/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
  6521. "ref/netstandard1.0/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
  6522. "ref/netstandard1.0/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
  6523. "ref/netstandard1.0/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
  6524. "ref/netstandard1.0/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
  6525. "ref/portable-net45+win8+wp8+wpa81/_._",
  6526. "ref/win8/_._",
  6527. "ref/wp80/_._",
  6528. "ref/wpa81/_._",
  6529. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  6530. "system.runtime.interopservices.windowsruntime.4.0.1.nupkg.sha512",
  6531. "system.runtime.interopservices.windowsruntime.nuspec"
  6532. ]
  6533. },
  6534. "System.Runtime.Numerics/4.3.0": {
  6535. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6536. "type": "package",
  6537. "path": "system.runtime.numerics/4.3.0",
  6538. "files": [
  6539. ".nupkg.metadata",
  6540. ".signature.p7s",
  6541. "ThirdPartyNotices.txt",
  6542. "dotnet_library_license.txt",
  6543. "lib/MonoAndroid10/_._",
  6544. "lib/MonoTouch10/_._",
  6545. "lib/net45/_._",
  6546. "lib/netcore50/System.Runtime.Numerics.dll",
  6547. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6548. "lib/portable-net45+win8+wpa81/_._",
  6549. "lib/win8/_._",
  6550. "lib/wpa81/_._",
  6551. "lib/xamarinios10/_._",
  6552. "lib/xamarinmac20/_._",
  6553. "lib/xamarintvos10/_._",
  6554. "lib/xamarinwatchos10/_._",
  6555. "ref/MonoAndroid10/_._",
  6556. "ref/MonoTouch10/_._",
  6557. "ref/net45/_._",
  6558. "ref/netcore50/System.Runtime.Numerics.dll",
  6559. "ref/netcore50/System.Runtime.Numerics.xml",
  6560. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6561. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6562. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6563. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6564. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6565. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6566. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6567. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6568. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6569. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6570. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6571. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6572. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6573. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6574. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6575. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6576. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6577. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6578. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6579. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6580. "ref/portable-net45+win8+wpa81/_._",
  6581. "ref/win8/_._",
  6582. "ref/wpa81/_._",
  6583. "ref/xamarinios10/_._",
  6584. "ref/xamarinmac20/_._",
  6585. "ref/xamarintvos10/_._",
  6586. "ref/xamarinwatchos10/_._",
  6587. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6588. "system.runtime.numerics.nuspec"
  6589. ]
  6590. },
  6591. "System.Runtime.Serialization.Primitives/4.3.0": {
  6592. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  6593. "type": "package",
  6594. "path": "system.runtime.serialization.primitives/4.3.0",
  6595. "files": [
  6596. ".nupkg.metadata",
  6597. ".signature.p7s",
  6598. "ThirdPartyNotices.txt",
  6599. "dotnet_library_license.txt",
  6600. "lib/MonoAndroid10/_._",
  6601. "lib/MonoTouch10/_._",
  6602. "lib/net45/_._",
  6603. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  6604. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6605. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6606. "lib/portable-net45+win8+wp8+wpa81/_._",
  6607. "lib/win8/_._",
  6608. "lib/wp80/_._",
  6609. "lib/wpa81/_._",
  6610. "lib/xamarinios10/_._",
  6611. "lib/xamarinmac20/_._",
  6612. "lib/xamarintvos10/_._",
  6613. "lib/xamarinwatchos10/_._",
  6614. "ref/MonoAndroid10/_._",
  6615. "ref/MonoTouch10/_._",
  6616. "ref/net45/_._",
  6617. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  6618. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  6619. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  6620. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  6621. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  6622. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  6623. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  6624. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  6625. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  6626. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  6627. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6628. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6629. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  6630. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  6631. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  6632. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  6633. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  6634. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  6635. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  6636. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  6637. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  6638. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6639. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6640. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6641. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  6642. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  6643. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  6644. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  6645. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  6646. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  6647. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  6648. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  6649. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6650. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6651. "ref/portable-net45+win8+wp8+wpa81/_._",
  6652. "ref/win8/_._",
  6653. "ref/wp80/_._",
  6654. "ref/wpa81/_._",
  6655. "ref/xamarinios10/_._",
  6656. "ref/xamarinmac20/_._",
  6657. "ref/xamarintvos10/_._",
  6658. "ref/xamarinwatchos10/_._",
  6659. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6660. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  6661. "system.runtime.serialization.primitives.nuspec"
  6662. ]
  6663. },
  6664. "System.Security.AccessControl/4.4.0": {
  6665. "sha512": "2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
  6666. "type": "package",
  6667. "path": "system.security.accesscontrol/4.4.0",
  6668. "files": [
  6669. ".nupkg.metadata",
  6670. ".signature.p7s",
  6671. "LICENSE.TXT",
  6672. "THIRD-PARTY-NOTICES.TXT",
  6673. "lib/net46/System.Security.AccessControl.dll",
  6674. "lib/net461/System.Security.AccessControl.dll",
  6675. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6676. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6677. "ref/net46/System.Security.AccessControl.dll",
  6678. "ref/net461/System.Security.AccessControl.dll",
  6679. "ref/net461/System.Security.AccessControl.xml",
  6680. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6681. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6682. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6683. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6684. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6685. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6686. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6687. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6688. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6689. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6690. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6691. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6692. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6693. "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6694. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6695. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6696. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6697. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6698. "system.security.accesscontrol.4.4.0.nupkg.sha512",
  6699. "system.security.accesscontrol.nuspec",
  6700. "useSharedDesignerContext.txt",
  6701. "version.txt"
  6702. ]
  6703. },
  6704. "System.Security.Cryptography.Algorithms/4.3.0": {
  6705. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6706. "type": "package",
  6707. "path": "system.security.cryptography.algorithms/4.3.0",
  6708. "files": [
  6709. ".nupkg.metadata",
  6710. ".signature.p7s",
  6711. "ThirdPartyNotices.txt",
  6712. "dotnet_library_license.txt",
  6713. "lib/MonoAndroid10/_._",
  6714. "lib/MonoTouch10/_._",
  6715. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6716. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6717. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6718. "lib/xamarinios10/_._",
  6719. "lib/xamarinmac20/_._",
  6720. "lib/xamarintvos10/_._",
  6721. "lib/xamarinwatchos10/_._",
  6722. "ref/MonoAndroid10/_._",
  6723. "ref/MonoTouch10/_._",
  6724. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6725. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6726. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6727. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6728. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6729. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6730. "ref/xamarinios10/_._",
  6731. "ref/xamarinmac20/_._",
  6732. "ref/xamarintvos10/_._",
  6733. "ref/xamarinwatchos10/_._",
  6734. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6735. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6736. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6737. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6738. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6739. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6740. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6741. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6742. "system.security.cryptography.algorithms.nuspec"
  6743. ]
  6744. },
  6745. "System.Security.Cryptography.Cng/4.5.0": {
  6746. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6747. "type": "package",
  6748. "path": "system.security.cryptography.cng/4.5.0",
  6749. "files": [
  6750. ".nupkg.metadata",
  6751. ".signature.p7s",
  6752. "LICENSE.TXT",
  6753. "THIRD-PARTY-NOTICES.TXT",
  6754. "lib/MonoAndroid10/_._",
  6755. "lib/MonoTouch10/_._",
  6756. "lib/net46/System.Security.Cryptography.Cng.dll",
  6757. "lib/net461/System.Security.Cryptography.Cng.dll",
  6758. "lib/net462/System.Security.Cryptography.Cng.dll",
  6759. "lib/net47/System.Security.Cryptography.Cng.dll",
  6760. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6761. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6762. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6763. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6764. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6765. "lib/uap10.0.16299/_._",
  6766. "lib/xamarinios10/_._",
  6767. "lib/xamarinmac20/_._",
  6768. "lib/xamarintvos10/_._",
  6769. "lib/xamarinwatchos10/_._",
  6770. "ref/MonoAndroid10/_._",
  6771. "ref/MonoTouch10/_._",
  6772. "ref/net46/System.Security.Cryptography.Cng.dll",
  6773. "ref/net461/System.Security.Cryptography.Cng.dll",
  6774. "ref/net461/System.Security.Cryptography.Cng.xml",
  6775. "ref/net462/System.Security.Cryptography.Cng.dll",
  6776. "ref/net462/System.Security.Cryptography.Cng.xml",
  6777. "ref/net47/System.Security.Cryptography.Cng.dll",
  6778. "ref/net47/System.Security.Cryptography.Cng.xml",
  6779. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6780. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6781. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6782. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6783. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6784. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6785. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6786. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6787. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6788. "ref/uap10.0.16299/_._",
  6789. "ref/xamarinios10/_._",
  6790. "ref/xamarinmac20/_._",
  6791. "ref/xamarintvos10/_._",
  6792. "ref/xamarinwatchos10/_._",
  6793. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6794. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6795. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6796. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6797. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6798. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6799. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6800. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6801. "runtimes/win/lib/uap10.0.16299/_._",
  6802. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6803. "system.security.cryptography.cng.nuspec",
  6804. "useSharedDesignerContext.txt",
  6805. "version.txt"
  6806. ]
  6807. },
  6808. "System.Security.Cryptography.Csp/4.3.0": {
  6809. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  6810. "type": "package",
  6811. "path": "system.security.cryptography.csp/4.3.0",
  6812. "files": [
  6813. ".nupkg.metadata",
  6814. ".signature.p7s",
  6815. "ThirdPartyNotices.txt",
  6816. "dotnet_library_license.txt",
  6817. "lib/MonoAndroid10/_._",
  6818. "lib/MonoTouch10/_._",
  6819. "lib/net46/System.Security.Cryptography.Csp.dll",
  6820. "lib/xamarinios10/_._",
  6821. "lib/xamarinmac20/_._",
  6822. "lib/xamarintvos10/_._",
  6823. "lib/xamarinwatchos10/_._",
  6824. "ref/MonoAndroid10/_._",
  6825. "ref/MonoTouch10/_._",
  6826. "ref/net46/System.Security.Cryptography.Csp.dll",
  6827. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6828. "ref/xamarinios10/_._",
  6829. "ref/xamarinmac20/_._",
  6830. "ref/xamarintvos10/_._",
  6831. "ref/xamarinwatchos10/_._",
  6832. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6833. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6834. "runtimes/win/lib/netcore50/_._",
  6835. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6836. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  6837. "system.security.cryptography.csp.nuspec"
  6838. ]
  6839. },
  6840. "System.Security.Cryptography.Encoding/4.3.0": {
  6841. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  6842. "type": "package",
  6843. "path": "system.security.cryptography.encoding/4.3.0",
  6844. "files": [
  6845. ".nupkg.metadata",
  6846. ".signature.p7s",
  6847. "ThirdPartyNotices.txt",
  6848. "dotnet_library_license.txt",
  6849. "lib/MonoAndroid10/_._",
  6850. "lib/MonoTouch10/_._",
  6851. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6852. "lib/xamarinios10/_._",
  6853. "lib/xamarinmac20/_._",
  6854. "lib/xamarintvos10/_._",
  6855. "lib/xamarinwatchos10/_._",
  6856. "ref/MonoAndroid10/_._",
  6857. "ref/MonoTouch10/_._",
  6858. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6859. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6860. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6861. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6862. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6863. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6864. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6865. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6866. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6867. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6868. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6869. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6870. "ref/xamarinios10/_._",
  6871. "ref/xamarinmac20/_._",
  6872. "ref/xamarintvos10/_._",
  6873. "ref/xamarinwatchos10/_._",
  6874. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6875. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6876. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6877. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  6878. "system.security.cryptography.encoding.nuspec"
  6879. ]
  6880. },
  6881. "System.Security.Cryptography.OpenSsl/4.3.0": {
  6882. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  6883. "type": "package",
  6884. "path": "system.security.cryptography.openssl/4.3.0",
  6885. "files": [
  6886. ".nupkg.metadata",
  6887. ".signature.p7s",
  6888. "ThirdPartyNotices.txt",
  6889. "dotnet_library_license.txt",
  6890. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6891. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6892. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6893. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6894. "system.security.cryptography.openssl.nuspec"
  6895. ]
  6896. },
  6897. "System.Security.Cryptography.Primitives/4.3.0": {
  6898. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  6899. "type": "package",
  6900. "path": "system.security.cryptography.primitives/4.3.0",
  6901. "files": [
  6902. ".nupkg.metadata",
  6903. ".signature.p7s",
  6904. "ThirdPartyNotices.txt",
  6905. "dotnet_library_license.txt",
  6906. "lib/MonoAndroid10/_._",
  6907. "lib/MonoTouch10/_._",
  6908. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6909. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6910. "lib/xamarinios10/_._",
  6911. "lib/xamarinmac20/_._",
  6912. "lib/xamarintvos10/_._",
  6913. "lib/xamarinwatchos10/_._",
  6914. "ref/MonoAndroid10/_._",
  6915. "ref/MonoTouch10/_._",
  6916. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6917. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6918. "ref/xamarinios10/_._",
  6919. "ref/xamarinmac20/_._",
  6920. "ref/xamarintvos10/_._",
  6921. "ref/xamarinwatchos10/_._",
  6922. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  6923. "system.security.cryptography.primitives.nuspec"
  6924. ]
  6925. },
  6926. "System.Security.Cryptography.ProtectedData/4.4.0": {
  6927. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  6928. "type": "package",
  6929. "path": "system.security.cryptography.protecteddata/4.4.0",
  6930. "files": [
  6931. ".nupkg.metadata",
  6932. ".signature.p7s",
  6933. "LICENSE.TXT",
  6934. "THIRD-PARTY-NOTICES.TXT",
  6935. "lib/MonoAndroid10/_._",
  6936. "lib/MonoTouch10/_._",
  6937. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6938. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6939. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6940. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6941. "lib/xamarinios10/_._",
  6942. "lib/xamarinmac20/_._",
  6943. "lib/xamarintvos10/_._",
  6944. "lib/xamarinwatchos10/_._",
  6945. "ref/MonoAndroid10/_._",
  6946. "ref/MonoTouch10/_._",
  6947. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  6948. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  6949. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  6950. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6951. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6952. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6953. "ref/xamarinios10/_._",
  6954. "ref/xamarinmac20/_._",
  6955. "ref/xamarintvos10/_._",
  6956. "ref/xamarinwatchos10/_._",
  6957. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6958. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6959. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6960. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6961. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  6962. "system.security.cryptography.protecteddata.nuspec",
  6963. "useSharedDesignerContext.txt",
  6964. "version.txt"
  6965. ]
  6966. },
  6967. "System.Security.Cryptography.X509Certificates/4.3.0": {
  6968. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  6969. "type": "package",
  6970. "path": "system.security.cryptography.x509certificates/4.3.0",
  6971. "files": [
  6972. ".nupkg.metadata",
  6973. ".signature.p7s",
  6974. "ThirdPartyNotices.txt",
  6975. "dotnet_library_license.txt",
  6976. "lib/MonoAndroid10/_._",
  6977. "lib/MonoTouch10/_._",
  6978. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6979. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6980. "lib/xamarinios10/_._",
  6981. "lib/xamarinmac20/_._",
  6982. "lib/xamarintvos10/_._",
  6983. "lib/xamarinwatchos10/_._",
  6984. "ref/MonoAndroid10/_._",
  6985. "ref/MonoTouch10/_._",
  6986. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  6987. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  6988. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  6989. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  6990. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  6991. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  6992. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  6993. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  6994. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  6995. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  6996. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  6997. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6998. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6999. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7000. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7001. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7002. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7003. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7004. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7005. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7006. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7007. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7008. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7009. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7010. "ref/xamarinios10/_._",
  7011. "ref/xamarinmac20/_._",
  7012. "ref/xamarintvos10/_._",
  7013. "ref/xamarinwatchos10/_._",
  7014. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7015. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7016. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7017. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7018. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7019. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7020. "system.security.cryptography.x509certificates.nuspec"
  7021. ]
  7022. },
  7023. "System.Security.Permissions/4.4.1": {
  7024. "sha512": "l8IxQ9mEAkKv85uoEcjcYhrh+yTLZtLgNqb2T7QChTdKXh45EUnmKd+Ckdt1D+VYW2dk2Pb5MT+0zwQ74Jd2Xg==",
  7025. "type": "package",
  7026. "path": "system.security.permissions/4.4.1",
  7027. "files": [
  7028. ".nupkg.metadata",
  7029. ".signature.p7s",
  7030. "LICENSE.TXT",
  7031. "THIRD-PARTY-NOTICES.TXT",
  7032. "lib/net461/System.Security.Permissions.dll",
  7033. "lib/netstandard2.0/System.Security.Permissions.dll",
  7034. "ref/net461/System.Security.Permissions.dll",
  7035. "ref/netstandard2.0/System.Security.Permissions.dll",
  7036. "ref/netstandard2.0/System.Security.Permissions.xml",
  7037. "system.security.permissions.4.4.1.nupkg.sha512",
  7038. "system.security.permissions.nuspec",
  7039. "useSharedDesignerContext.txt",
  7040. "version.txt"
  7041. ]
  7042. },
  7043. "System.Security.Principal.Windows/4.4.0": {
  7044. "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
  7045. "type": "package",
  7046. "path": "system.security.principal.windows/4.4.0",
  7047. "files": [
  7048. ".nupkg.metadata",
  7049. ".signature.p7s",
  7050. "LICENSE.TXT",
  7051. "THIRD-PARTY-NOTICES.TXT",
  7052. "lib/net46/System.Security.Principal.Windows.dll",
  7053. "lib/net461/System.Security.Principal.Windows.dll",
  7054. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7055. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7056. "ref/net46/System.Security.Principal.Windows.dll",
  7057. "ref/net461/System.Security.Principal.Windows.dll",
  7058. "ref/net461/System.Security.Principal.Windows.xml",
  7059. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7060. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7061. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7062. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7063. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7064. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7065. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7066. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7067. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7068. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7069. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7070. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7071. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7072. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7073. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7074. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7075. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7076. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7077. "system.security.principal.windows.4.4.0.nupkg.sha512",
  7078. "system.security.principal.windows.nuspec",
  7079. "useSharedDesignerContext.txt",
  7080. "version.txt"
  7081. ]
  7082. },
  7083. "System.ServiceModel.Duplex/4.4.4": {
  7084. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  7085. "type": "package",
  7086. "path": "system.servicemodel.duplex/4.4.4",
  7087. "files": [
  7088. ".nupkg.metadata",
  7089. ".signature.p7s",
  7090. "LICENSE.TXT",
  7091. "THIRD-PARTY-NOTICES.TXT",
  7092. "lib/MonoAndroid10/_._",
  7093. "lib/MonoTouch10/_._",
  7094. "lib/net45/_._",
  7095. "lib/net461/System.ServiceModel.Duplex.dll",
  7096. "lib/netcore50/System.ServiceModel.Duplex.dll",
  7097. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  7098. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  7099. "lib/portable-net45+win8/_._",
  7100. "lib/win8/_._",
  7101. "lib/xamarinios10/_._",
  7102. "lib/xamarinmac20/_._",
  7103. "lib/xamarintvos10/_._",
  7104. "lib/xamarinwatchos10/_._",
  7105. "ref/MonoAndroid10/_._",
  7106. "ref/MonoTouch10/_._",
  7107. "ref/net45/_._",
  7108. "ref/net461/System.ServiceModel.Duplex.dll",
  7109. "ref/netcore50/System.ServiceModel.Duplex.dll",
  7110. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  7111. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  7112. "ref/portable-net45+win8/_._",
  7113. "ref/win8/_._",
  7114. "ref/xamarinios10/_._",
  7115. "ref/xamarinmac20/_._",
  7116. "ref/xamarintvos10/_._",
  7117. "ref/xamarinwatchos10/_._",
  7118. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  7119. "system.servicemodel.duplex.nuspec",
  7120. "version.txt"
  7121. ]
  7122. },
  7123. "System.ServiceModel.Http/4.4.4": {
  7124. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  7125. "type": "package",
  7126. "path": "system.servicemodel.http/4.4.4",
  7127. "files": [
  7128. ".nupkg.metadata",
  7129. ".signature.p7s",
  7130. "LICENSE.TXT",
  7131. "THIRD-PARTY-NOTICES.TXT",
  7132. "lib/MonoAndroid10/_._",
  7133. "lib/MonoTouch10/_._",
  7134. "lib/net45/_._",
  7135. "lib/net46/System.ServiceModel.Http.dll",
  7136. "lib/net461/System.ServiceModel.Http.dll",
  7137. "lib/netcore50/System.ServiceModel.Http.dll",
  7138. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  7139. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  7140. "lib/portable-net45+win8+wp8/_._",
  7141. "lib/win8/_._",
  7142. "lib/wp8/_._",
  7143. "lib/xamarinios10/_._",
  7144. "lib/xamarinmac20/_._",
  7145. "lib/xamarintvos10/_._",
  7146. "lib/xamarinwatchos10/_._",
  7147. "ref/MonoAndroid10/_._",
  7148. "ref/MonoTouch10/_._",
  7149. "ref/net45/_._",
  7150. "ref/net46/System.ServiceModel.Http.dll",
  7151. "ref/net461/System.ServiceModel.Http.dll",
  7152. "ref/netcore50/System.ServiceModel.Http.dll",
  7153. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  7154. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  7155. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  7156. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  7157. "ref/portable-net45+win8+wp8/_._",
  7158. "ref/win8/_._",
  7159. "ref/wp8/_._",
  7160. "ref/xamarinios10/_._",
  7161. "ref/xamarinmac20/_._",
  7162. "ref/xamarintvos10/_._",
  7163. "ref/xamarinwatchos10/_._",
  7164. "system.servicemodel.http.4.4.4.nupkg.sha512",
  7165. "system.servicemodel.http.nuspec",
  7166. "version.txt"
  7167. ]
  7168. },
  7169. "System.ServiceModel.NetTcp/4.4.4": {
  7170. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  7171. "type": "package",
  7172. "path": "system.servicemodel.nettcp/4.4.4",
  7173. "files": [
  7174. ".nupkg.metadata",
  7175. ".signature.p7s",
  7176. "LICENSE.TXT",
  7177. "THIRD-PARTY-NOTICES.TXT",
  7178. "lib/MonoAndroid10/_._",
  7179. "lib/MonoTouch10/_._",
  7180. "lib/net45/_._",
  7181. "lib/net46/System.ServiceModel.NetTcp.dll",
  7182. "lib/net461/System.ServiceModel.NetTcp.dll",
  7183. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  7184. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  7185. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  7186. "lib/portable-net45+win8/_._",
  7187. "lib/win8/_._",
  7188. "lib/xamarinios10/_._",
  7189. "lib/xamarinmac20/_._",
  7190. "lib/xamarintvos10/_._",
  7191. "lib/xamarinwatchos10/_._",
  7192. "ref/MonoAndroid10/_._",
  7193. "ref/MonoTouch10/_._",
  7194. "ref/net45/_._",
  7195. "ref/net46/System.ServiceModel.NetTcp.dll",
  7196. "ref/net461/System.ServiceModel.NetTcp.dll",
  7197. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  7198. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  7199. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  7200. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  7201. "ref/portable-net45+win8/_._",
  7202. "ref/win8/_._",
  7203. "ref/xamarinios10/_._",
  7204. "ref/xamarinmac20/_._",
  7205. "ref/xamarintvos10/_._",
  7206. "ref/xamarinwatchos10/_._",
  7207. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  7208. "system.servicemodel.nettcp.nuspec",
  7209. "version.txt"
  7210. ]
  7211. },
  7212. "System.ServiceModel.Primitives/4.4.4": {
  7213. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  7214. "type": "package",
  7215. "path": "system.servicemodel.primitives/4.4.4",
  7216. "files": [
  7217. ".nupkg.metadata",
  7218. ".signature.p7s",
  7219. "LICENSE.TXT",
  7220. "THIRD-PARTY-NOTICES.TXT",
  7221. "lib/MonoAndroid10/_._",
  7222. "lib/MonoTouch10/_._",
  7223. "lib/net45/_._",
  7224. "lib/net46/System.ServiceModel.Primitives.dll",
  7225. "lib/net461/System.ServiceModel.Primitives.dll",
  7226. "lib/netcore50/System.ServiceModel.Primitives.dll",
  7227. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  7228. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  7229. "lib/netstandard2.0/System.ServiceModel.dll",
  7230. "lib/portable-net45+win8+wp8/_._",
  7231. "lib/win8/_._",
  7232. "lib/wp8/_._",
  7233. "lib/xamarinios10/_._",
  7234. "lib/xamarinmac20/_._",
  7235. "lib/xamarintvos10/_._",
  7236. "lib/xamarinwatchos10/_._",
  7237. "ref/MonoAndroid10/_._",
  7238. "ref/MonoTouch10/_._",
  7239. "ref/net45/_._",
  7240. "ref/net46/System.ServiceModel.Primitives.dll",
  7241. "ref/net461/System.ServiceModel.Primitives.dll",
  7242. "ref/netcore50/System.ServiceModel.Primitives.dll",
  7243. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  7244. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  7245. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  7246. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  7247. "ref/netstandard2.0/System.ServiceModel.dll",
  7248. "ref/portable-net45+win8+wp8/_._",
  7249. "ref/win8/_._",
  7250. "ref/wp8/_._",
  7251. "ref/xamarinios10/_._",
  7252. "ref/xamarinmac20/_._",
  7253. "ref/xamarintvos10/_._",
  7254. "ref/xamarinwatchos10/_._",
  7255. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  7256. "system.servicemodel.primitives.nuspec",
  7257. "version.txt"
  7258. ]
  7259. },
  7260. "System.ServiceModel.Security/4.4.4": {
  7261. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  7262. "type": "package",
  7263. "path": "system.servicemodel.security/4.4.4",
  7264. "files": [
  7265. ".nupkg.metadata",
  7266. ".signature.p7s",
  7267. "LICENSE.TXT",
  7268. "THIRD-PARTY-NOTICES.TXT",
  7269. "lib/MonoAndroid10/_._",
  7270. "lib/MonoTouch10/_._",
  7271. "lib/net45/_._",
  7272. "lib/netcore50/System.ServiceModel.Security.dll",
  7273. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  7274. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  7275. "lib/portable-net45+win8+wp8/_._",
  7276. "lib/win8/_._",
  7277. "lib/wp8/_._",
  7278. "lib/xamarinios10/_._",
  7279. "lib/xamarinmac20/_._",
  7280. "lib/xamarintvos10/_._",
  7281. "lib/xamarinwatchos10/_._",
  7282. "ref/MonoAndroid10/_._",
  7283. "ref/MonoTouch10/_._",
  7284. "ref/net45/_._",
  7285. "ref/netcore50/System.ServiceModel.Security.dll",
  7286. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  7287. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  7288. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  7289. "ref/portable-net45+win8+wp8/_._",
  7290. "ref/win8/_._",
  7291. "ref/wp8/_._",
  7292. "ref/xamarinios10/_._",
  7293. "ref/xamarinmac20/_._",
  7294. "ref/xamarintvos10/_._",
  7295. "ref/xamarinwatchos10/_._",
  7296. "system.servicemodel.security.4.4.4.nupkg.sha512",
  7297. "system.servicemodel.security.nuspec",
  7298. "version.txt"
  7299. ]
  7300. },
  7301. "System.Text.Encoding/4.3.0": {
  7302. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7303. "type": "package",
  7304. "path": "system.text.encoding/4.3.0",
  7305. "files": [
  7306. ".nupkg.metadata",
  7307. ".signature.p7s",
  7308. "ThirdPartyNotices.txt",
  7309. "dotnet_library_license.txt",
  7310. "lib/MonoAndroid10/_._",
  7311. "lib/MonoTouch10/_._",
  7312. "lib/net45/_._",
  7313. "lib/portable-net45+win8+wp8+wpa81/_._",
  7314. "lib/win8/_._",
  7315. "lib/wp80/_._",
  7316. "lib/wpa81/_._",
  7317. "lib/xamarinios10/_._",
  7318. "lib/xamarinmac20/_._",
  7319. "lib/xamarintvos10/_._",
  7320. "lib/xamarinwatchos10/_._",
  7321. "ref/MonoAndroid10/_._",
  7322. "ref/MonoTouch10/_._",
  7323. "ref/net45/_._",
  7324. "ref/netcore50/System.Text.Encoding.dll",
  7325. "ref/netcore50/System.Text.Encoding.xml",
  7326. "ref/netcore50/de/System.Text.Encoding.xml",
  7327. "ref/netcore50/es/System.Text.Encoding.xml",
  7328. "ref/netcore50/fr/System.Text.Encoding.xml",
  7329. "ref/netcore50/it/System.Text.Encoding.xml",
  7330. "ref/netcore50/ja/System.Text.Encoding.xml",
  7331. "ref/netcore50/ko/System.Text.Encoding.xml",
  7332. "ref/netcore50/ru/System.Text.Encoding.xml",
  7333. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7334. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7335. "ref/netstandard1.0/System.Text.Encoding.dll",
  7336. "ref/netstandard1.0/System.Text.Encoding.xml",
  7337. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7338. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7339. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7340. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7341. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7342. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7343. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7344. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7345. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7346. "ref/netstandard1.3/System.Text.Encoding.dll",
  7347. "ref/netstandard1.3/System.Text.Encoding.xml",
  7348. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7349. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7350. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7351. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7352. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7353. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7354. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7355. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7356. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7357. "ref/portable-net45+win8+wp8+wpa81/_._",
  7358. "ref/win8/_._",
  7359. "ref/wp80/_._",
  7360. "ref/wpa81/_._",
  7361. "ref/xamarinios10/_._",
  7362. "ref/xamarinmac20/_._",
  7363. "ref/xamarintvos10/_._",
  7364. "ref/xamarinwatchos10/_._",
  7365. "system.text.encoding.4.3.0.nupkg.sha512",
  7366. "system.text.encoding.nuspec"
  7367. ]
  7368. },
  7369. "System.Text.Encoding.CodePages/4.4.0": {
  7370. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  7371. "type": "package",
  7372. "path": "system.text.encoding.codepages/4.4.0",
  7373. "files": [
  7374. ".nupkg.metadata",
  7375. ".signature.p7s",
  7376. "LICENSE.TXT",
  7377. "THIRD-PARTY-NOTICES.TXT",
  7378. "lib/MonoAndroid10/_._",
  7379. "lib/MonoTouch10/_._",
  7380. "lib/net46/System.Text.Encoding.CodePages.dll",
  7381. "lib/net461/System.Text.Encoding.CodePages.dll",
  7382. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7383. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7384. "lib/xamarinios10/_._",
  7385. "lib/xamarinmac20/_._",
  7386. "lib/xamarintvos10/_._",
  7387. "lib/xamarinwatchos10/_._",
  7388. "ref/MonoAndroid10/_._",
  7389. "ref/MonoTouch10/_._",
  7390. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7391. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  7392. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  7393. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  7394. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  7395. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  7396. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  7397. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  7398. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  7399. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  7400. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  7401. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7402. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7403. "ref/xamarinios10/_._",
  7404. "ref/xamarinmac20/_._",
  7405. "ref/xamarintvos10/_._",
  7406. "ref/xamarinwatchos10/_._",
  7407. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7408. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7409. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7410. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7411. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  7412. "system.text.encoding.codepages.nuspec",
  7413. "useSharedDesignerContext.txt",
  7414. "version.txt"
  7415. ]
  7416. },
  7417. "System.Text.Encoding.Extensions/4.3.0": {
  7418. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7419. "type": "package",
  7420. "path": "system.text.encoding.extensions/4.3.0",
  7421. "files": [
  7422. ".nupkg.metadata",
  7423. ".signature.p7s",
  7424. "ThirdPartyNotices.txt",
  7425. "dotnet_library_license.txt",
  7426. "lib/MonoAndroid10/_._",
  7427. "lib/MonoTouch10/_._",
  7428. "lib/net45/_._",
  7429. "lib/portable-net45+win8+wp8+wpa81/_._",
  7430. "lib/win8/_._",
  7431. "lib/wp80/_._",
  7432. "lib/wpa81/_._",
  7433. "lib/xamarinios10/_._",
  7434. "lib/xamarinmac20/_._",
  7435. "lib/xamarintvos10/_._",
  7436. "lib/xamarinwatchos10/_._",
  7437. "ref/MonoAndroid10/_._",
  7438. "ref/MonoTouch10/_._",
  7439. "ref/net45/_._",
  7440. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7441. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7442. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7443. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7444. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7445. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7446. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7447. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7448. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7449. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7450. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7451. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7452. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7453. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7454. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7455. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7456. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7457. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7458. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7459. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7460. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7461. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7462. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7463. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7464. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7465. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7466. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7467. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7468. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7469. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7470. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7471. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7472. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7473. "ref/portable-net45+win8+wp8+wpa81/_._",
  7474. "ref/win8/_._",
  7475. "ref/wp80/_._",
  7476. "ref/wpa81/_._",
  7477. "ref/xamarinios10/_._",
  7478. "ref/xamarinmac20/_._",
  7479. "ref/xamarintvos10/_._",
  7480. "ref/xamarinwatchos10/_._",
  7481. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7482. "system.text.encoding.extensions.nuspec"
  7483. ]
  7484. },
  7485. "System.Text.RegularExpressions/4.3.0": {
  7486. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7487. "type": "package",
  7488. "path": "system.text.regularexpressions/4.3.0",
  7489. "files": [
  7490. ".nupkg.metadata",
  7491. ".signature.p7s",
  7492. "ThirdPartyNotices.txt",
  7493. "dotnet_library_license.txt",
  7494. "lib/MonoAndroid10/_._",
  7495. "lib/MonoTouch10/_._",
  7496. "lib/net45/_._",
  7497. "lib/net463/System.Text.RegularExpressions.dll",
  7498. "lib/netcore50/System.Text.RegularExpressions.dll",
  7499. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7500. "lib/portable-net45+win8+wp8+wpa81/_._",
  7501. "lib/win8/_._",
  7502. "lib/wp80/_._",
  7503. "lib/wpa81/_._",
  7504. "lib/xamarinios10/_._",
  7505. "lib/xamarinmac20/_._",
  7506. "lib/xamarintvos10/_._",
  7507. "lib/xamarinwatchos10/_._",
  7508. "ref/MonoAndroid10/_._",
  7509. "ref/MonoTouch10/_._",
  7510. "ref/net45/_._",
  7511. "ref/net463/System.Text.RegularExpressions.dll",
  7512. "ref/netcore50/System.Text.RegularExpressions.dll",
  7513. "ref/netcore50/System.Text.RegularExpressions.xml",
  7514. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7515. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7516. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7517. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7518. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7519. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7520. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7521. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7522. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7523. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7524. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7525. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7526. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7527. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7528. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7529. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7530. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7531. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7532. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7533. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7534. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7535. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7536. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7537. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7538. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7539. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7540. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7541. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7542. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7543. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7544. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7545. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7546. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7547. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7548. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7549. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7550. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7551. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7552. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7553. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7554. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7555. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7556. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7557. "ref/portable-net45+win8+wp8+wpa81/_._",
  7558. "ref/win8/_._",
  7559. "ref/wp80/_._",
  7560. "ref/wpa81/_._",
  7561. "ref/xamarinios10/_._",
  7562. "ref/xamarinmac20/_._",
  7563. "ref/xamarintvos10/_._",
  7564. "ref/xamarinwatchos10/_._",
  7565. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7566. "system.text.regularexpressions.nuspec"
  7567. ]
  7568. },
  7569. "System.Threading/4.3.0": {
  7570. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7571. "type": "package",
  7572. "path": "system.threading/4.3.0",
  7573. "files": [
  7574. ".nupkg.metadata",
  7575. ".signature.p7s",
  7576. "ThirdPartyNotices.txt",
  7577. "dotnet_library_license.txt",
  7578. "lib/MonoAndroid10/_._",
  7579. "lib/MonoTouch10/_._",
  7580. "lib/net45/_._",
  7581. "lib/netcore50/System.Threading.dll",
  7582. "lib/netstandard1.3/System.Threading.dll",
  7583. "lib/portable-net45+win8+wp8+wpa81/_._",
  7584. "lib/win8/_._",
  7585. "lib/wp80/_._",
  7586. "lib/wpa81/_._",
  7587. "lib/xamarinios10/_._",
  7588. "lib/xamarinmac20/_._",
  7589. "lib/xamarintvos10/_._",
  7590. "lib/xamarinwatchos10/_._",
  7591. "ref/MonoAndroid10/_._",
  7592. "ref/MonoTouch10/_._",
  7593. "ref/net45/_._",
  7594. "ref/netcore50/System.Threading.dll",
  7595. "ref/netcore50/System.Threading.xml",
  7596. "ref/netcore50/de/System.Threading.xml",
  7597. "ref/netcore50/es/System.Threading.xml",
  7598. "ref/netcore50/fr/System.Threading.xml",
  7599. "ref/netcore50/it/System.Threading.xml",
  7600. "ref/netcore50/ja/System.Threading.xml",
  7601. "ref/netcore50/ko/System.Threading.xml",
  7602. "ref/netcore50/ru/System.Threading.xml",
  7603. "ref/netcore50/zh-hans/System.Threading.xml",
  7604. "ref/netcore50/zh-hant/System.Threading.xml",
  7605. "ref/netstandard1.0/System.Threading.dll",
  7606. "ref/netstandard1.0/System.Threading.xml",
  7607. "ref/netstandard1.0/de/System.Threading.xml",
  7608. "ref/netstandard1.0/es/System.Threading.xml",
  7609. "ref/netstandard1.0/fr/System.Threading.xml",
  7610. "ref/netstandard1.0/it/System.Threading.xml",
  7611. "ref/netstandard1.0/ja/System.Threading.xml",
  7612. "ref/netstandard1.0/ko/System.Threading.xml",
  7613. "ref/netstandard1.0/ru/System.Threading.xml",
  7614. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7615. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7616. "ref/netstandard1.3/System.Threading.dll",
  7617. "ref/netstandard1.3/System.Threading.xml",
  7618. "ref/netstandard1.3/de/System.Threading.xml",
  7619. "ref/netstandard1.3/es/System.Threading.xml",
  7620. "ref/netstandard1.3/fr/System.Threading.xml",
  7621. "ref/netstandard1.3/it/System.Threading.xml",
  7622. "ref/netstandard1.3/ja/System.Threading.xml",
  7623. "ref/netstandard1.3/ko/System.Threading.xml",
  7624. "ref/netstandard1.3/ru/System.Threading.xml",
  7625. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7626. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7627. "ref/portable-net45+win8+wp8+wpa81/_._",
  7628. "ref/win8/_._",
  7629. "ref/wp80/_._",
  7630. "ref/wpa81/_._",
  7631. "ref/xamarinios10/_._",
  7632. "ref/xamarinmac20/_._",
  7633. "ref/xamarintvos10/_._",
  7634. "ref/xamarinwatchos10/_._",
  7635. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7636. "system.threading.4.3.0.nupkg.sha512",
  7637. "system.threading.nuspec"
  7638. ]
  7639. },
  7640. "System.Threading.Channels/4.7.1": {
  7641. "sha512": "6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==",
  7642. "type": "package",
  7643. "path": "system.threading.channels/4.7.1",
  7644. "files": [
  7645. ".nupkg.metadata",
  7646. ".signature.p7s",
  7647. "Icon.png",
  7648. "LICENSE.TXT",
  7649. "THIRD-PARTY-NOTICES.TXT",
  7650. "lib/net461/System.Threading.Channels.dll",
  7651. "lib/net461/System.Threading.Channels.xml",
  7652. "lib/netcoreapp3.0/System.Threading.Channels.dll",
  7653. "lib/netcoreapp3.0/System.Threading.Channels.xml",
  7654. "lib/netstandard1.3/System.Threading.Channels.dll",
  7655. "lib/netstandard1.3/System.Threading.Channels.xml",
  7656. "lib/netstandard2.0/System.Threading.Channels.dll",
  7657. "lib/netstandard2.0/System.Threading.Channels.xml",
  7658. "system.threading.channels.4.7.1.nupkg.sha512",
  7659. "system.threading.channels.nuspec",
  7660. "useSharedDesignerContext.txt",
  7661. "version.txt"
  7662. ]
  7663. },
  7664. "System.Threading.Tasks/4.3.0": {
  7665. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7666. "type": "package",
  7667. "path": "system.threading.tasks/4.3.0",
  7668. "files": [
  7669. ".nupkg.metadata",
  7670. ".signature.p7s",
  7671. "ThirdPartyNotices.txt",
  7672. "dotnet_library_license.txt",
  7673. "lib/MonoAndroid10/_._",
  7674. "lib/MonoTouch10/_._",
  7675. "lib/net45/_._",
  7676. "lib/portable-net45+win8+wp8+wpa81/_._",
  7677. "lib/win8/_._",
  7678. "lib/wp80/_._",
  7679. "lib/wpa81/_._",
  7680. "lib/xamarinios10/_._",
  7681. "lib/xamarinmac20/_._",
  7682. "lib/xamarintvos10/_._",
  7683. "lib/xamarinwatchos10/_._",
  7684. "ref/MonoAndroid10/_._",
  7685. "ref/MonoTouch10/_._",
  7686. "ref/net45/_._",
  7687. "ref/netcore50/System.Threading.Tasks.dll",
  7688. "ref/netcore50/System.Threading.Tasks.xml",
  7689. "ref/netcore50/de/System.Threading.Tasks.xml",
  7690. "ref/netcore50/es/System.Threading.Tasks.xml",
  7691. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7692. "ref/netcore50/it/System.Threading.Tasks.xml",
  7693. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7694. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7695. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7696. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7697. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7698. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7699. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7700. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7701. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7702. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7703. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7704. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7705. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7706. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7707. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7708. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7709. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7710. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7711. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7712. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7713. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7714. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7715. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7716. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7717. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7718. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7719. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7720. "ref/portable-net45+win8+wp8+wpa81/_._",
  7721. "ref/win8/_._",
  7722. "ref/wp80/_._",
  7723. "ref/wpa81/_._",
  7724. "ref/xamarinios10/_._",
  7725. "ref/xamarinmac20/_._",
  7726. "ref/xamarintvos10/_._",
  7727. "ref/xamarinwatchos10/_._",
  7728. "system.threading.tasks.4.3.0.nupkg.sha512",
  7729. "system.threading.tasks.nuspec"
  7730. ]
  7731. },
  7732. "System.Threading.Tasks.Extensions/4.3.0": {
  7733. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  7734. "type": "package",
  7735. "path": "system.threading.tasks.extensions/4.3.0",
  7736. "files": [
  7737. ".nupkg.metadata",
  7738. ".signature.p7s",
  7739. "ThirdPartyNotices.txt",
  7740. "dotnet_library_license.txt",
  7741. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7742. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7743. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7744. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7745. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  7746. "system.threading.tasks.extensions.nuspec"
  7747. ]
  7748. },
  7749. "System.Threading.Thread/4.3.0": {
  7750. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  7751. "type": "package",
  7752. "path": "system.threading.thread/4.3.0",
  7753. "files": [
  7754. ".nupkg.metadata",
  7755. ".signature.p7s",
  7756. "ThirdPartyNotices.txt",
  7757. "dotnet_library_license.txt",
  7758. "lib/MonoAndroid10/_._",
  7759. "lib/MonoTouch10/_._",
  7760. "lib/net46/System.Threading.Thread.dll",
  7761. "lib/netcore50/_._",
  7762. "lib/netstandard1.3/System.Threading.Thread.dll",
  7763. "lib/xamarinios10/_._",
  7764. "lib/xamarinmac20/_._",
  7765. "lib/xamarintvos10/_._",
  7766. "lib/xamarinwatchos10/_._",
  7767. "ref/MonoAndroid10/_._",
  7768. "ref/MonoTouch10/_._",
  7769. "ref/net46/System.Threading.Thread.dll",
  7770. "ref/netstandard1.3/System.Threading.Thread.dll",
  7771. "ref/netstandard1.3/System.Threading.Thread.xml",
  7772. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  7773. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  7774. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  7775. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  7776. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  7777. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  7778. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  7779. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  7780. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  7781. "ref/xamarinios10/_._",
  7782. "ref/xamarinmac20/_._",
  7783. "ref/xamarintvos10/_._",
  7784. "ref/xamarinwatchos10/_._",
  7785. "system.threading.thread.4.3.0.nupkg.sha512",
  7786. "system.threading.thread.nuspec"
  7787. ]
  7788. },
  7789. "System.Threading.ThreadPool/4.0.10": {
  7790. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  7791. "type": "package",
  7792. "path": "system.threading.threadpool/4.0.10",
  7793. "files": [
  7794. ".nupkg.metadata",
  7795. ".signature.p7s",
  7796. "ThirdPartyNotices.txt",
  7797. "dotnet_library_license.txt",
  7798. "lib/MonoAndroid10/_._",
  7799. "lib/MonoTouch10/_._",
  7800. "lib/net46/System.Threading.ThreadPool.dll",
  7801. "lib/netcore50/_._",
  7802. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  7803. "lib/xamarinios10/_._",
  7804. "lib/xamarinmac20/_._",
  7805. "lib/xamarintvos10/_._",
  7806. "lib/xamarinwatchos10/_._",
  7807. "ref/MonoAndroid10/_._",
  7808. "ref/MonoTouch10/_._",
  7809. "ref/net46/System.Threading.ThreadPool.dll",
  7810. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  7811. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  7812. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  7813. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  7814. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  7815. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  7816. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  7817. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  7818. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  7819. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  7820. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  7821. "ref/xamarinios10/_._",
  7822. "ref/xamarinmac20/_._",
  7823. "ref/xamarintvos10/_._",
  7824. "ref/xamarinwatchos10/_._",
  7825. "system.threading.threadpool.4.0.10.nupkg.sha512",
  7826. "system.threading.threadpool.nuspec"
  7827. ]
  7828. },
  7829. "System.Threading.Timer/4.3.0": {
  7830. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  7831. "type": "package",
  7832. "path": "system.threading.timer/4.3.0",
  7833. "files": [
  7834. ".nupkg.metadata",
  7835. ".signature.p7s",
  7836. "ThirdPartyNotices.txt",
  7837. "dotnet_library_license.txt",
  7838. "lib/MonoAndroid10/_._",
  7839. "lib/MonoTouch10/_._",
  7840. "lib/net451/_._",
  7841. "lib/portable-net451+win81+wpa81/_._",
  7842. "lib/win81/_._",
  7843. "lib/wpa81/_._",
  7844. "lib/xamarinios10/_._",
  7845. "lib/xamarinmac20/_._",
  7846. "lib/xamarintvos10/_._",
  7847. "lib/xamarinwatchos10/_._",
  7848. "ref/MonoAndroid10/_._",
  7849. "ref/MonoTouch10/_._",
  7850. "ref/net451/_._",
  7851. "ref/netcore50/System.Threading.Timer.dll",
  7852. "ref/netcore50/System.Threading.Timer.xml",
  7853. "ref/netcore50/de/System.Threading.Timer.xml",
  7854. "ref/netcore50/es/System.Threading.Timer.xml",
  7855. "ref/netcore50/fr/System.Threading.Timer.xml",
  7856. "ref/netcore50/it/System.Threading.Timer.xml",
  7857. "ref/netcore50/ja/System.Threading.Timer.xml",
  7858. "ref/netcore50/ko/System.Threading.Timer.xml",
  7859. "ref/netcore50/ru/System.Threading.Timer.xml",
  7860. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7861. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7862. "ref/netstandard1.2/System.Threading.Timer.dll",
  7863. "ref/netstandard1.2/System.Threading.Timer.xml",
  7864. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7865. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7866. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7867. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7868. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7869. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7870. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7871. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7872. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7873. "ref/portable-net451+win81+wpa81/_._",
  7874. "ref/win81/_._",
  7875. "ref/wpa81/_._",
  7876. "ref/xamarinios10/_._",
  7877. "ref/xamarinmac20/_._",
  7878. "ref/xamarintvos10/_._",
  7879. "ref/xamarinwatchos10/_._",
  7880. "system.threading.timer.4.3.0.nupkg.sha512",
  7881. "system.threading.timer.nuspec"
  7882. ]
  7883. },
  7884. "System.ValueTuple/4.5.0": {
  7885. "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
  7886. "type": "package",
  7887. "path": "system.valuetuple/4.5.0",
  7888. "files": [
  7889. ".nupkg.metadata",
  7890. ".signature.p7s",
  7891. "LICENSE.TXT",
  7892. "THIRD-PARTY-NOTICES.TXT",
  7893. "lib/MonoAndroid10/_._",
  7894. "lib/MonoTouch10/_._",
  7895. "lib/net461/System.ValueTuple.dll",
  7896. "lib/net461/System.ValueTuple.xml",
  7897. "lib/net47/System.ValueTuple.dll",
  7898. "lib/net47/System.ValueTuple.xml",
  7899. "lib/netcoreapp2.0/_._",
  7900. "lib/netstandard1.0/System.ValueTuple.dll",
  7901. "lib/netstandard1.0/System.ValueTuple.xml",
  7902. "lib/netstandard2.0/_._",
  7903. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  7904. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
  7905. "lib/uap10.0.16299/_._",
  7906. "lib/xamarinios10/_._",
  7907. "lib/xamarinmac20/_._",
  7908. "lib/xamarintvos10/_._",
  7909. "lib/xamarinwatchos10/_._",
  7910. "ref/MonoAndroid10/_._",
  7911. "ref/MonoTouch10/_._",
  7912. "ref/net461/System.ValueTuple.dll",
  7913. "ref/net47/System.ValueTuple.dll",
  7914. "ref/netcoreapp2.0/_._",
  7915. "ref/netstandard2.0/_._",
  7916. "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  7917. "ref/uap10.0.16299/_._",
  7918. "ref/xamarinios10/_._",
  7919. "ref/xamarinmac20/_._",
  7920. "ref/xamarintvos10/_._",
  7921. "ref/xamarinwatchos10/_._",
  7922. "system.valuetuple.4.5.0.nupkg.sha512",
  7923. "system.valuetuple.nuspec",
  7924. "useSharedDesignerContext.txt",
  7925. "version.txt"
  7926. ]
  7927. },
  7928. "System.Xml.ReaderWriter/4.3.0": {
  7929. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  7930. "type": "package",
  7931. "path": "system.xml.readerwriter/4.3.0",
  7932. "files": [
  7933. ".nupkg.metadata",
  7934. ".signature.p7s",
  7935. "ThirdPartyNotices.txt",
  7936. "dotnet_library_license.txt",
  7937. "lib/MonoAndroid10/_._",
  7938. "lib/MonoTouch10/_._",
  7939. "lib/net45/_._",
  7940. "lib/net46/System.Xml.ReaderWriter.dll",
  7941. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7942. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7943. "lib/portable-net45+win8+wp8+wpa81/_._",
  7944. "lib/win8/_._",
  7945. "lib/wp80/_._",
  7946. "lib/wpa81/_._",
  7947. "lib/xamarinios10/_._",
  7948. "lib/xamarinmac20/_._",
  7949. "lib/xamarintvos10/_._",
  7950. "lib/xamarinwatchos10/_._",
  7951. "ref/MonoAndroid10/_._",
  7952. "ref/MonoTouch10/_._",
  7953. "ref/net45/_._",
  7954. "ref/net46/System.Xml.ReaderWriter.dll",
  7955. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7956. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7957. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7958. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7959. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7960. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7961. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7962. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7963. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7964. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7965. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7966. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7967. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7968. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7969. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7970. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7971. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7972. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7973. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7974. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7975. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7976. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7977. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7978. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7979. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7980. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7981. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7982. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7983. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7984. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7985. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7986. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7987. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7988. "ref/portable-net45+win8+wp8+wpa81/_._",
  7989. "ref/win8/_._",
  7990. "ref/wp80/_._",
  7991. "ref/wpa81/_._",
  7992. "ref/xamarinios10/_._",
  7993. "ref/xamarinmac20/_._",
  7994. "ref/xamarintvos10/_._",
  7995. "ref/xamarinwatchos10/_._",
  7996. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  7997. "system.xml.readerwriter.nuspec"
  7998. ]
  7999. },
  8000. "System.Xml.XDocument/4.3.0": {
  8001. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8002. "type": "package",
  8003. "path": "system.xml.xdocument/4.3.0",
  8004. "files": [
  8005. ".nupkg.metadata",
  8006. ".signature.p7s",
  8007. "ThirdPartyNotices.txt",
  8008. "dotnet_library_license.txt",
  8009. "lib/MonoAndroid10/_._",
  8010. "lib/MonoTouch10/_._",
  8011. "lib/net45/_._",
  8012. "lib/netcore50/System.Xml.XDocument.dll",
  8013. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8014. "lib/portable-net45+win8+wp8+wpa81/_._",
  8015. "lib/win8/_._",
  8016. "lib/wp80/_._",
  8017. "lib/wpa81/_._",
  8018. "lib/xamarinios10/_._",
  8019. "lib/xamarinmac20/_._",
  8020. "lib/xamarintvos10/_._",
  8021. "lib/xamarinwatchos10/_._",
  8022. "ref/MonoAndroid10/_._",
  8023. "ref/MonoTouch10/_._",
  8024. "ref/net45/_._",
  8025. "ref/netcore50/System.Xml.XDocument.dll",
  8026. "ref/netcore50/System.Xml.XDocument.xml",
  8027. "ref/netcore50/de/System.Xml.XDocument.xml",
  8028. "ref/netcore50/es/System.Xml.XDocument.xml",
  8029. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8030. "ref/netcore50/it/System.Xml.XDocument.xml",
  8031. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8032. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8033. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8034. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8035. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8036. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8037. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8038. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8039. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8040. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8041. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8042. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8043. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8044. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8045. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8046. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8047. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8048. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8049. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8050. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8051. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8052. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8053. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8054. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8055. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8056. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8057. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8058. "ref/portable-net45+win8+wp8+wpa81/_._",
  8059. "ref/win8/_._",
  8060. "ref/wp80/_._",
  8061. "ref/wpa81/_._",
  8062. "ref/xamarinios10/_._",
  8063. "ref/xamarinmac20/_._",
  8064. "ref/xamarintvos10/_._",
  8065. "ref/xamarinwatchos10/_._",
  8066. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8067. "system.xml.xdocument.nuspec"
  8068. ]
  8069. },
  8070. "System.Xml.XmlDocument/4.0.1": {
  8071. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  8072. "type": "package",
  8073. "path": "system.xml.xmldocument/4.0.1",
  8074. "files": [
  8075. ".nupkg.metadata",
  8076. ".signature.p7s",
  8077. "ThirdPartyNotices.txt",
  8078. "dotnet_library_license.txt",
  8079. "lib/MonoAndroid10/_._",
  8080. "lib/MonoTouch10/_._",
  8081. "lib/net46/System.Xml.XmlDocument.dll",
  8082. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8083. "lib/xamarinios10/_._",
  8084. "lib/xamarinmac20/_._",
  8085. "lib/xamarintvos10/_._",
  8086. "lib/xamarinwatchos10/_._",
  8087. "ref/MonoAndroid10/_._",
  8088. "ref/MonoTouch10/_._",
  8089. "ref/net46/System.Xml.XmlDocument.dll",
  8090. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8091. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8092. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8093. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8094. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8095. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8096. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8097. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8098. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8099. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8100. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8101. "ref/xamarinios10/_._",
  8102. "ref/xamarinmac20/_._",
  8103. "ref/xamarintvos10/_._",
  8104. "ref/xamarinwatchos10/_._",
  8105. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  8106. "system.xml.xmldocument.nuspec"
  8107. ]
  8108. },
  8109. "System.Xml.XPath/4.0.1": {
  8110. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  8111. "type": "package",
  8112. "path": "system.xml.xpath/4.0.1",
  8113. "files": [
  8114. ".nupkg.metadata",
  8115. ".signature.p7s",
  8116. "ThirdPartyNotices.txt",
  8117. "dotnet_library_license.txt",
  8118. "lib/MonoAndroid10/_._",
  8119. "lib/MonoTouch10/_._",
  8120. "lib/net46/System.Xml.XPath.dll",
  8121. "lib/netstandard1.3/System.Xml.XPath.dll",
  8122. "lib/xamarinios10/_._",
  8123. "lib/xamarinmac20/_._",
  8124. "lib/xamarintvos10/_._",
  8125. "lib/xamarinwatchos10/_._",
  8126. "ref/MonoAndroid10/_._",
  8127. "ref/MonoTouch10/_._",
  8128. "ref/net46/System.Xml.XPath.dll",
  8129. "ref/netstandard1.3/System.Xml.XPath.dll",
  8130. "ref/netstandard1.3/System.Xml.XPath.xml",
  8131. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  8132. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  8133. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  8134. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  8135. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  8136. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  8137. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  8138. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  8139. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  8140. "ref/xamarinios10/_._",
  8141. "ref/xamarinmac20/_._",
  8142. "ref/xamarintvos10/_._",
  8143. "ref/xamarinwatchos10/_._",
  8144. "system.xml.xpath.4.0.1.nupkg.sha512",
  8145. "system.xml.xpath.nuspec"
  8146. ]
  8147. },
  8148. "System.Xml.XPath.XmlDocument/4.0.1": {
  8149. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  8150. "type": "package",
  8151. "path": "system.xml.xpath.xmldocument/4.0.1",
  8152. "files": [
  8153. ".nupkg.metadata",
  8154. ".signature.p7s",
  8155. "ThirdPartyNotices.txt",
  8156. "dotnet_library_license.txt",
  8157. "lib/MonoAndroid10/_._",
  8158. "lib/MonoTouch10/_._",
  8159. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8160. "lib/xamarinios10/_._",
  8161. "lib/xamarinmac20/_._",
  8162. "lib/xamarintvos10/_._",
  8163. "lib/xamarinwatchos10/_._",
  8164. "ref/MonoAndroid10/_._",
  8165. "ref/MonoTouch10/_._",
  8166. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8167. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  8168. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  8169. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  8170. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  8171. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  8172. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  8173. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  8174. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  8175. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  8176. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  8177. "ref/xamarinios10/_._",
  8178. "ref/xamarinmac20/_._",
  8179. "ref/xamarintvos10/_._",
  8180. "ref/xamarinwatchos10/_._",
  8181. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  8182. "system.xml.xpath.xmldocument.nuspec"
  8183. ]
  8184. },
  8185. "ZKWeb.System.Drawing/4.0.1": {
  8186. "sha512": "r8OLPZ2cb9SSwjm8GNkMbqOgo58N8d8RwxJN1yF01atv+MQdNOqa5Xx117tIjWUbB6pBnVe6u+pXkYVORaCeWw==",
  8187. "type": "package",
  8188. "path": "zkweb.system.drawing/4.0.1",
  8189. "files": [
  8190. ".nupkg.metadata",
  8191. ".signature.p7s",
  8192. "lib/net45/ZKWeb.System.Drawing.dll",
  8193. "lib/netstandard2.0/ZKWeb.System.Drawing.dll",
  8194. "zkweb.system.drawing.4.0.1.nupkg.sha512",
  8195. "zkweb.system.drawing.nuspec"
  8196. ]
  8197. }
  8198. },
  8199. "projectFileDependencyGroups": {
  8200. ".NETCoreApp,Version=v3.0": [
  8201. "CSRedisCore >= 3.6.5",
  8202. "GraphQL >= 2.4.0",
  8203. "Microsoft.AspNetCore.Authentication.JwtBearer >= 3.0.0",
  8204. "Microsoft.EntityFrameworkCore >= 3.1.0",
  8205. "Microsoft.EntityFrameworkCore.Tools >= 3.1.0",
  8206. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 3.1.0",
  8207. "MySql.Data >= 8.0.18",
  8208. "Pomelo.EntityFrameworkCore.MySql >= 3.0.1",
  8209. "RabbitMQ.Client >= 6.2.2",
  8210. "System.Drawing.Common >= 4.7.0",
  8211. "System.ServiceModel.Duplex >= 4.4.*",
  8212. "System.ServiceModel.Http >= 4.4.*",
  8213. "System.ServiceModel.NetTcp >= 4.4.*",
  8214. "System.ServiceModel.Security >= 4.4.*",
  8215. "ZKWeb.System.Drawing >= 4.0.1"
  8216. ]
  8217. },
  8218. "packageFolders": {
  8219. "/Users/lichunlei/.nuget/packages/": {}
  8220. },
  8221. "project": {
  8222. "version": "1.0.0",
  8223. "restore": {
  8224. "projectUniqueName": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/MySystem.csproj",
  8225. "projectName": "MySystem",
  8226. "projectPath": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/MySystem.csproj",
  8227. "packagesPath": "/Users/lichunlei/.nuget/packages/",
  8228. "outputPath": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/obj/",
  8229. "projectStyle": "PackageReference",
  8230. "configFilePaths": [
  8231. "/Users/lichunlei/.nuget/NuGet/NuGet.Config"
  8232. ],
  8233. "originalTargetFrameworks": [
  8234. "netcoreapp3.0"
  8235. ],
  8236. "sources": {
  8237. "https://api.nuget.org/v3/index.json": {}
  8238. },
  8239. "frameworks": {
  8240. "netcoreapp3.0": {
  8241. "projectReferences": {}
  8242. }
  8243. },
  8244. "warningProperties": {
  8245. "warnAsError": [
  8246. "NU1605"
  8247. ]
  8248. }
  8249. },
  8250. "frameworks": {
  8251. "netcoreapp3.0": {
  8252. "dependencies": {
  8253. "CSRedisCore": {
  8254. "target": "Package",
  8255. "version": "[3.6.5, )"
  8256. },
  8257. "GraphQL": {
  8258. "target": "Package",
  8259. "version": "[2.4.0, )"
  8260. },
  8261. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  8262. "target": "Package",
  8263. "version": "[3.0.0, )"
  8264. },
  8265. "Microsoft.EntityFrameworkCore": {
  8266. "target": "Package",
  8267. "version": "[3.1.0, )"
  8268. },
  8269. "Microsoft.EntityFrameworkCore.Tools": {
  8270. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8271. "suppressParent": "All",
  8272. "target": "Package",
  8273. "version": "[3.1.0, )"
  8274. },
  8275. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  8276. "target": "Package",
  8277. "version": "[3.1.0, )"
  8278. },
  8279. "MySql.Data": {
  8280. "target": "Package",
  8281. "version": "[8.0.18, )"
  8282. },
  8283. "Pomelo.EntityFrameworkCore.MySql": {
  8284. "target": "Package",
  8285. "version": "[3.0.1, )"
  8286. },
  8287. "RabbitMQ.Client": {
  8288. "target": "Package",
  8289. "version": "[6.2.2, )"
  8290. },
  8291. "System.Drawing.Common": {
  8292. "target": "Package",
  8293. "version": "[4.7.0, )"
  8294. },
  8295. "System.ServiceModel.Duplex": {
  8296. "target": "Package",
  8297. "version": "[4.4.*, )"
  8298. },
  8299. "System.ServiceModel.Http": {
  8300. "target": "Package",
  8301. "version": "[4.4.*, )"
  8302. },
  8303. "System.ServiceModel.NetTcp": {
  8304. "target": "Package",
  8305. "version": "[4.4.*, )"
  8306. },
  8307. "System.ServiceModel.Security": {
  8308. "target": "Package",
  8309. "version": "[4.4.*, )"
  8310. },
  8311. "ZKWeb.System.Drawing": {
  8312. "target": "Package",
  8313. "version": "[4.0.1, )"
  8314. }
  8315. },
  8316. "imports": [
  8317. "net461",
  8318. "net462",
  8319. "net47",
  8320. "net471",
  8321. "net472",
  8322. "net48"
  8323. ],
  8324. "assetTargetFallback": true,
  8325. "warn": true,
  8326. "frameworkReferences": {
  8327. "Microsoft.AspNetCore.App": {
  8328. "privateAssets": "none"
  8329. },
  8330. "Microsoft.NETCore.App": {
  8331. "privateAssets": "all"
  8332. }
  8333. },
  8334. "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/3.0.101/RuntimeIdentifierGraph.json"
  8335. }
  8336. }
  8337. },
  8338. "logs": [
  8339. {
  8340. "code": "NU1701",
  8341. "level": "Warning",
  8342. "warningLevel": 1,
  8343. "message": "Package 'Microsoft.VisualStudio.Web.CodeGeneration.Design 3.1.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.0'. This package may not be fully compatible with your project.",
  8344. "libraryId": "Microsoft.VisualStudio.Web.CodeGeneration.Design",
  8345. "targetGraphs": [
  8346. ".NETCoreApp,Version=v3.0"
  8347. ]
  8348. }
  8349. ]
  8350. }