project.assets.json 353 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497
  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. "DotNetCore.NPOI/1.2.3": {
  33. "type": "package",
  34. "dependencies": {
  35. "DotNetCore.NPOI.Core": "1.2.3",
  36. "DotNetCore.NPOI.OpenXml4Net": "1.2.3",
  37. "DotNetCore.NPOI.OpenXmlFormats": "1.2.3"
  38. },
  39. "compile": {
  40. "lib/netstandard2.0/NPOI.OOXML.dll": {}
  41. },
  42. "runtime": {
  43. "lib/netstandard2.0/NPOI.OOXML.dll": {}
  44. },
  45. "contentFiles": {
  46. "contentFiles/any/netstandard2.0/NOTICE.TXT": {
  47. "buildAction": "Content",
  48. "codeLanguage": "any",
  49. "copyToOutput": true,
  50. "outputPath": "NOTICE.TXT"
  51. }
  52. }
  53. },
  54. "DotNetCore.NPOI.Core/1.2.3": {
  55. "type": "package",
  56. "dependencies": {
  57. "SharpZipLib": "1.2.0",
  58. "System.Drawing.Common": "4.5.0",
  59. "System.Text.Encoding.CodePages": "4.5.0"
  60. },
  61. "compile": {
  62. "lib/netstandard2.0/NPOI.dll": {}
  63. },
  64. "runtime": {
  65. "lib/netstandard2.0/NPOI.dll": {}
  66. }
  67. },
  68. "DotNetCore.NPOI.OpenXml4Net/1.2.3": {
  69. "type": "package",
  70. "dependencies": {
  71. "DotNetCore.NPOI.Core": "1.2.3"
  72. },
  73. "compile": {
  74. "lib/netstandard2.0/NPOI.OpenXml4Net.dll": {}
  75. },
  76. "runtime": {
  77. "lib/netstandard2.0/NPOI.OpenXml4Net.dll": {}
  78. }
  79. },
  80. "DotNetCore.NPOI.OpenXmlFormats/1.2.3": {
  81. "type": "package",
  82. "dependencies": {
  83. "DotNetCore.NPOI.OpenXml4Net": "1.2.3"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll": {}
  87. },
  88. "runtime": {
  89. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll": {}
  90. }
  91. },
  92. "Google.Protobuf/3.6.1": {
  93. "type": "package",
  94. "dependencies": {
  95. "NETStandard.Library": "1.6.1"
  96. },
  97. "compile": {
  98. "lib/netstandard1.0/Google.Protobuf.dll": {}
  99. },
  100. "runtime": {
  101. "lib/netstandard1.0/Google.Protobuf.dll": {}
  102. }
  103. },
  104. "GraphQL/2.4.0": {
  105. "type": "package",
  106. "dependencies": {
  107. "GraphQL-Parser": "3.0.0",
  108. "Newtonsoft.Json": "10.0.3",
  109. "System.Buffers": "4.5.0",
  110. "System.Reactive.Core": "3.1.1",
  111. "System.Reactive.Linq": "3.1.1"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/GraphQL.dll": {}
  115. },
  116. "runtime": {
  117. "lib/netstandard2.0/GraphQL.dll": {}
  118. }
  119. },
  120. "GraphQL-Parser/3.0.0": {
  121. "type": "package",
  122. "dependencies": {
  123. "NETStandard.Library": "1.6.0"
  124. },
  125. "compile": {
  126. "lib/netstandard1.1/GraphQL-Parser.dll": {}
  127. },
  128. "runtime": {
  129. "lib/netstandard1.1/GraphQL-Parser.dll": {}
  130. }
  131. },
  132. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  133. "type": "package",
  134. "dependencies": {
  135. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.5.0"
  136. },
  137. "compile": {
  138. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  139. },
  140. "runtime": {
  141. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  142. },
  143. "frameworkReferences": [
  144. "Microsoft.AspNetCore.App"
  145. ]
  146. },
  147. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  148. "type": "package",
  149. "compile": {
  150. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  151. },
  152. "runtime": {
  153. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  154. }
  155. },
  156. "Microsoft.Bcl.HashCode/1.1.0": {
  157. "type": "package",
  158. "compile": {
  159. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  160. },
  161. "runtime": {
  162. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  163. }
  164. },
  165. "Microsoft.CSharp/4.7.0": {
  166. "type": "package",
  167. "compile": {
  168. "ref/netcoreapp2.0/_._": {}
  169. },
  170. "runtime": {
  171. "lib/netcoreapp2.0/_._": {}
  172. }
  173. },
  174. "Microsoft.EntityFrameworkCore/3.1.0": {
  175. "type": "package",
  176. "dependencies": {
  177. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  178. "Microsoft.Bcl.HashCode": "1.1.0",
  179. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.0",
  180. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.0",
  181. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  182. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  183. "Microsoft.Extensions.Logging": "3.1.0",
  184. "System.Collections.Immutable": "1.7.0",
  185. "System.ComponentModel.Annotations": "4.7.0",
  186. "System.Diagnostics.DiagnosticSource": "4.7.0"
  187. },
  188. "compile": {
  189. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  190. },
  191. "runtime": {
  192. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  193. }
  194. },
  195. "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": {
  196. "type": "package",
  197. "compile": {
  198. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  199. },
  200. "runtime": {
  201. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  202. }
  203. },
  204. "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": {
  205. "type": "package",
  206. "compile": {
  207. "lib/netstandard2.0/_._": {}
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/_._": {}
  211. }
  212. },
  213. "Microsoft.EntityFrameworkCore.Design/3.1.0": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.CSharp": "4.7.0",
  217. "Microsoft.EntityFrameworkCore.Relational": "3.1.0"
  218. },
  219. "compile": {
  220. "lib/netstandard2.0/_._": {}
  221. },
  222. "runtime": {
  223. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  224. },
  225. "build": {
  226. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props": {}
  227. }
  228. },
  229. "Microsoft.EntityFrameworkCore.Relational/3.1.0": {
  230. "type": "package",
  231. "dependencies": {
  232. "Microsoft.EntityFrameworkCore": "3.1.0"
  233. },
  234. "compile": {
  235. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  236. },
  237. "runtime": {
  238. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  239. }
  240. },
  241. "Microsoft.EntityFrameworkCore.Tools/3.1.0": {
  242. "type": "package",
  243. "dependencies": {
  244. "Microsoft.EntityFrameworkCore.Design": "3.1.0"
  245. },
  246. "compile": {
  247. "lib/netstandard2.0/_._": {}
  248. },
  249. "runtime": {
  250. "lib/netstandard2.0/_._": {}
  251. }
  252. },
  253. "Microsoft.Extensions.Caching.Abstractions/3.1.0": {
  254. "type": "package",
  255. "dependencies": {
  256. "Microsoft.Extensions.Primitives": "3.1.0"
  257. },
  258. "compile": {
  259. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  260. },
  261. "runtime": {
  262. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  263. }
  264. },
  265. "Microsoft.Extensions.Caching.Memory/3.1.0": {
  266. "type": "package",
  267. "dependencies": {
  268. "Microsoft.Extensions.Caching.Abstractions": "3.1.0",
  269. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  270. "Microsoft.Extensions.Logging.Abstractions": "3.1.0",
  271. "Microsoft.Extensions.Options": "3.1.0"
  272. },
  273. "compile": {
  274. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  275. },
  276. "runtime": {
  277. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  278. }
  279. },
  280. "Microsoft.Extensions.Configuration/3.1.0": {
  281. "type": "package",
  282. "dependencies": {
  283. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0"
  284. },
  285. "compile": {
  286. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  287. },
  288. "runtime": {
  289. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  290. }
  291. },
  292. "Microsoft.Extensions.Configuration.Abstractions/3.1.0": {
  293. "type": "package",
  294. "dependencies": {
  295. "Microsoft.Extensions.Primitives": "3.1.0"
  296. },
  297. "compile": {
  298. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  299. },
  300. "runtime": {
  301. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  302. }
  303. },
  304. "Microsoft.Extensions.Configuration.Binder/3.1.0": {
  305. "type": "package",
  306. "dependencies": {
  307. "Microsoft.Extensions.Configuration": "3.1.0"
  308. },
  309. "compile": {
  310. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  311. },
  312. "runtime": {
  313. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  314. }
  315. },
  316. "Microsoft.Extensions.DependencyInjection/3.1.0": {
  317. "type": "package",
  318. "dependencies": {
  319. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0"
  320. },
  321. "compile": {
  322. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  323. },
  324. "runtime": {
  325. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  326. }
  327. },
  328. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": {
  329. "type": "package",
  330. "compile": {
  331. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  332. },
  333. "runtime": {
  334. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  335. }
  336. },
  337. "Microsoft.Extensions.Logging/3.1.0": {
  338. "type": "package",
  339. "dependencies": {
  340. "Microsoft.Extensions.Configuration.Binder": "3.1.0",
  341. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  342. "Microsoft.Extensions.Logging.Abstractions": "3.1.0",
  343. "Microsoft.Extensions.Options": "3.1.0"
  344. },
  345. "compile": {
  346. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  347. },
  348. "runtime": {
  349. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  350. }
  351. },
  352. "Microsoft.Extensions.Logging.Abstractions/3.1.0": {
  353. "type": "package",
  354. "compile": {
  355. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  356. },
  357. "runtime": {
  358. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  359. }
  360. },
  361. "Microsoft.Extensions.Options/3.1.0": {
  362. "type": "package",
  363. "dependencies": {
  364. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  365. "Microsoft.Extensions.Primitives": "3.1.0",
  366. "System.ComponentModel.Annotations": "4.7.0"
  367. },
  368. "compile": {
  369. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  370. },
  371. "runtime": {
  372. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  373. }
  374. },
  375. "Microsoft.Extensions.Primitives/3.1.0": {
  376. "type": "package",
  377. "dependencies": {
  378. "System.Memory": "4.5.2",
  379. "System.Runtime.CompilerServices.Unsafe": "4.7.0"
  380. },
  381. "compile": {
  382. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  383. },
  384. "runtime": {
  385. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  386. }
  387. },
  388. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.IdentityModel.Tokens": "5.5.0",
  392. "Newtonsoft.Json": "10.0.1"
  393. },
  394. "compile": {
  395. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  396. },
  397. "runtime": {
  398. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  399. }
  400. },
  401. "Microsoft.IdentityModel.Logging/5.5.0": {
  402. "type": "package",
  403. "compile": {
  404. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  405. },
  406. "runtime": {
  407. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  408. }
  409. },
  410. "Microsoft.IdentityModel.Protocols/5.5.0": {
  411. "type": "package",
  412. "dependencies": {
  413. "Microsoft.IdentityModel.Logging": "5.5.0",
  414. "Microsoft.IdentityModel.Tokens": "5.5.0"
  415. },
  416. "compile": {
  417. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  418. },
  419. "runtime": {
  420. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  421. }
  422. },
  423. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.IdentityModel.Protocols": "5.5.0",
  427. "Newtonsoft.Json": "10.0.1",
  428. "System.IdentityModel.Tokens.Jwt": "5.5.0"
  429. },
  430. "compile": {
  431. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  432. },
  433. "runtime": {
  434. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  435. }
  436. },
  437. "Microsoft.IdentityModel.Tokens/5.5.0": {
  438. "type": "package",
  439. "dependencies": {
  440. "Microsoft.IdentityModel.Logging": "5.5.0",
  441. "Newtonsoft.Json": "10.0.1",
  442. "System.Security.Cryptography.Cng": "4.5.0"
  443. },
  444. "compile": {
  445. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  446. },
  447. "runtime": {
  448. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  449. }
  450. },
  451. "Microsoft.NETCore.Platforms/3.1.0": {
  452. "type": "package",
  453. "compile": {
  454. "lib/netstandard1.0/_._": {}
  455. },
  456. "runtime": {
  457. "lib/netstandard1.0/_._": {}
  458. }
  459. },
  460. "Microsoft.NETCore.Targets/1.1.0": {
  461. "type": "package",
  462. "compile": {
  463. "lib/netstandard1.0/_._": {}
  464. },
  465. "runtime": {
  466. "lib/netstandard1.0/_._": {}
  467. }
  468. },
  469. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.0": {
  470. "type": "package",
  471. "compile": {
  472. "lib/net461/dotnet-aspnet-codegenerator-design.exe": {}
  473. },
  474. "runtime": {
  475. "lib/net461/dotnet-aspnet-codegenerator-design.exe": {}
  476. }
  477. },
  478. "Microsoft.Win32.Primitives/4.3.0": {
  479. "type": "package",
  480. "dependencies": {
  481. "Microsoft.NETCore.Platforms": "1.1.0",
  482. "Microsoft.NETCore.Targets": "1.1.0",
  483. "System.Runtime": "4.3.0"
  484. },
  485. "compile": {
  486. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  487. }
  488. },
  489. "Microsoft.Win32.SystemEvents/4.7.0": {
  490. "type": "package",
  491. "dependencies": {
  492. "Microsoft.NETCore.Platforms": "3.1.0"
  493. },
  494. "compile": {
  495. "ref/netstandard2.0/_._": {}
  496. },
  497. "runtime": {
  498. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  499. },
  500. "runtimeTargets": {
  501. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  502. "assetType": "runtime",
  503. "rid": "win"
  504. }
  505. }
  506. },
  507. "MySql.Data/8.0.18": {
  508. "type": "package",
  509. "dependencies": {
  510. "BouncyCastle.NetCore": "1.8.3",
  511. "Google.Protobuf": "3.6.1",
  512. "SSH.NET": "2016.1.0",
  513. "System.Configuration.ConfigurationManager": "4.4.1",
  514. "System.Resources.Extensions": "4.6.0-preview8.19405.3",
  515. "System.Security.Permissions": "4.4.1",
  516. "System.Text.Encoding.CodePages": "4.4.0"
  517. },
  518. "compile": {
  519. "lib/netstandard2.1/MySql.Data.dll": {}
  520. },
  521. "runtime": {
  522. "lib/netstandard2.1/MySql.Data.dll": {}
  523. }
  524. },
  525. "MySqlConnector/0.61.0": {
  526. "type": "package",
  527. "compile": {
  528. "lib/netcoreapp3.0/MySqlConnector.dll": {}
  529. },
  530. "runtime": {
  531. "lib/netcoreapp3.0/MySqlConnector.dll": {}
  532. }
  533. },
  534. "NETStandard.Library/1.6.1": {
  535. "type": "package",
  536. "dependencies": {
  537. "Microsoft.NETCore.Platforms": "1.1.0",
  538. "Microsoft.Win32.Primitives": "4.3.0",
  539. "System.AppContext": "4.3.0",
  540. "System.Collections": "4.3.0",
  541. "System.Collections.Concurrent": "4.3.0",
  542. "System.Console": "4.3.0",
  543. "System.Diagnostics.Debug": "4.3.0",
  544. "System.Diagnostics.Tools": "4.3.0",
  545. "System.Diagnostics.Tracing": "4.3.0",
  546. "System.Globalization": "4.3.0",
  547. "System.Globalization.Calendars": "4.3.0",
  548. "System.IO": "4.3.0",
  549. "System.IO.Compression": "4.3.0",
  550. "System.IO.Compression.ZipFile": "4.3.0",
  551. "System.IO.FileSystem": "4.3.0",
  552. "System.IO.FileSystem.Primitives": "4.3.0",
  553. "System.Linq": "4.3.0",
  554. "System.Linq.Expressions": "4.3.0",
  555. "System.Net.Http": "4.3.0",
  556. "System.Net.Primitives": "4.3.0",
  557. "System.Net.Sockets": "4.3.0",
  558. "System.ObjectModel": "4.3.0",
  559. "System.Reflection": "4.3.0",
  560. "System.Reflection.Extensions": "4.3.0",
  561. "System.Reflection.Primitives": "4.3.0",
  562. "System.Resources.ResourceManager": "4.3.0",
  563. "System.Runtime": "4.3.0",
  564. "System.Runtime.Extensions": "4.3.0",
  565. "System.Runtime.Handles": "4.3.0",
  566. "System.Runtime.InteropServices": "4.3.0",
  567. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  568. "System.Runtime.Numerics": "4.3.0",
  569. "System.Security.Cryptography.Algorithms": "4.3.0",
  570. "System.Security.Cryptography.Encoding": "4.3.0",
  571. "System.Security.Cryptography.Primitives": "4.3.0",
  572. "System.Security.Cryptography.X509Certificates": "4.3.0",
  573. "System.Text.Encoding": "4.3.0",
  574. "System.Text.Encoding.Extensions": "4.3.0",
  575. "System.Text.RegularExpressions": "4.3.0",
  576. "System.Threading": "4.3.0",
  577. "System.Threading.Tasks": "4.3.0",
  578. "System.Threading.Timer": "4.3.0",
  579. "System.Xml.ReaderWriter": "4.3.0",
  580. "System.Xml.XDocument": "4.3.0"
  581. }
  582. },
  583. "Newtonsoft.Json/12.0.3": {
  584. "type": "package",
  585. "compile": {
  586. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  587. },
  588. "runtime": {
  589. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  590. }
  591. },
  592. "Pomelo.EntityFrameworkCore.MySql/3.0.1": {
  593. "type": "package",
  594. "dependencies": {
  595. "Microsoft.EntityFrameworkCore.Relational": "3.0.1",
  596. "MySqlConnector": "0.61.0",
  597. "Pomelo.JsonObject": "2.2.1"
  598. },
  599. "compile": {
  600. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  601. },
  602. "runtime": {
  603. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  604. }
  605. },
  606. "Pomelo.JsonObject/2.2.1": {
  607. "type": "package",
  608. "dependencies": {
  609. "Microsoft.CSharp": "4.5.0",
  610. "Newtonsoft.Json": "11.0.2"
  611. },
  612. "compile": {
  613. "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
  614. },
  615. "runtime": {
  616. "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
  617. }
  618. },
  619. "RabbitMQ.Client/6.2.2": {
  620. "type": "package",
  621. "dependencies": {
  622. "System.Memory": "4.5.4",
  623. "System.Threading.Channels": "4.7.1"
  624. },
  625. "compile": {
  626. "lib/netstandard2.0/RabbitMQ.Client.dll": {}
  627. },
  628. "runtime": {
  629. "lib/netstandard2.0/RabbitMQ.Client.dll": {}
  630. }
  631. },
  632. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  633. "type": "package",
  634. "runtimeTargets": {
  635. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  636. "assetType": "native",
  637. "rid": "debian.8-x64"
  638. }
  639. }
  640. },
  641. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  642. "type": "package",
  643. "runtimeTargets": {
  644. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  645. "assetType": "native",
  646. "rid": "fedora.23-x64"
  647. }
  648. }
  649. },
  650. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  651. "type": "package",
  652. "runtimeTargets": {
  653. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  654. "assetType": "native",
  655. "rid": "fedora.24-x64"
  656. }
  657. }
  658. },
  659. "runtime.native.System/4.3.0": {
  660. "type": "package",
  661. "dependencies": {
  662. "Microsoft.NETCore.Platforms": "1.1.0",
  663. "Microsoft.NETCore.Targets": "1.1.0"
  664. },
  665. "compile": {
  666. "lib/netstandard1.0/_._": {}
  667. },
  668. "runtime": {
  669. "lib/netstandard1.0/_._": {}
  670. }
  671. },
  672. "runtime.native.System.IO.Compression/4.3.0": {
  673. "type": "package",
  674. "dependencies": {
  675. "Microsoft.NETCore.Platforms": "1.1.0",
  676. "Microsoft.NETCore.Targets": "1.1.0"
  677. },
  678. "compile": {
  679. "lib/netstandard1.0/_._": {}
  680. },
  681. "runtime": {
  682. "lib/netstandard1.0/_._": {}
  683. }
  684. },
  685. "runtime.native.System.Net.Http/4.3.0": {
  686. "type": "package",
  687. "dependencies": {
  688. "Microsoft.NETCore.Platforms": "1.1.0",
  689. "Microsoft.NETCore.Targets": "1.1.0"
  690. },
  691. "compile": {
  692. "lib/netstandard1.0/_._": {}
  693. },
  694. "runtime": {
  695. "lib/netstandard1.0/_._": {}
  696. }
  697. },
  698. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  699. "type": "package",
  700. "dependencies": {
  701. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  702. },
  703. "compile": {
  704. "lib/netstandard1.0/_._": {}
  705. },
  706. "runtime": {
  707. "lib/netstandard1.0/_._": {}
  708. }
  709. },
  710. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  711. "type": "package",
  712. "dependencies": {
  713. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  714. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  715. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  716. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  717. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  718. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  719. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  720. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  721. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  722. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  723. },
  724. "compile": {
  725. "lib/netstandard1.0/_._": {}
  726. },
  727. "runtime": {
  728. "lib/netstandard1.0/_._": {}
  729. }
  730. },
  731. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  732. "type": "package",
  733. "runtimeTargets": {
  734. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  735. "assetType": "native",
  736. "rid": "opensuse.13.2-x64"
  737. }
  738. }
  739. },
  740. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  741. "type": "package",
  742. "runtimeTargets": {
  743. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  744. "assetType": "native",
  745. "rid": "opensuse.42.1-x64"
  746. }
  747. }
  748. },
  749. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  750. "type": "package",
  751. "runtimeTargets": {
  752. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  753. "assetType": "native",
  754. "rid": "osx.10.10-x64"
  755. }
  756. }
  757. },
  758. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  759. "type": "package",
  760. "runtimeTargets": {
  761. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  762. "assetType": "native",
  763. "rid": "osx.10.10-x64"
  764. }
  765. }
  766. },
  767. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  768. "type": "package",
  769. "runtimeTargets": {
  770. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  771. "assetType": "native",
  772. "rid": "rhel.7-x64"
  773. }
  774. }
  775. },
  776. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  777. "type": "package",
  778. "runtimeTargets": {
  779. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  780. "assetType": "native",
  781. "rid": "ubuntu.14.04-x64"
  782. }
  783. }
  784. },
  785. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  786. "type": "package",
  787. "runtimeTargets": {
  788. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  789. "assetType": "native",
  790. "rid": "ubuntu.16.04-x64"
  791. }
  792. }
  793. },
  794. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  795. "type": "package",
  796. "runtimeTargets": {
  797. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  798. "assetType": "native",
  799. "rid": "ubuntu.16.10-x64"
  800. }
  801. }
  802. },
  803. "SharpZipLib/1.2.0": {
  804. "type": "package",
  805. "compile": {
  806. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
  807. },
  808. "runtime": {
  809. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
  810. }
  811. },
  812. "SSH.NET/2016.1.0": {
  813. "type": "package",
  814. "dependencies": {
  815. "Microsoft.CSharp": "4.0.1",
  816. "SshNet.Security.Cryptography": "[1.2.0]",
  817. "System.Diagnostics.Debug": "4.0.11",
  818. "System.Diagnostics.Tools": "4.0.1",
  819. "System.Diagnostics.TraceSource": "4.0.0",
  820. "System.Globalization": "4.0.11",
  821. "System.IO": "4.1.0",
  822. "System.IO.FileSystem": "4.0.1",
  823. "System.IO.FileSystem.Primitives": "4.0.1",
  824. "System.Linq": "4.1.0",
  825. "System.Net.NameResolution": "4.0.0",
  826. "System.Net.Sockets": "4.1.0",
  827. "System.Reflection.Extensions": "4.0.1",
  828. "System.Runtime.Extensions": "4.1.0",
  829. "System.Security.Cryptography.Algorithms": "4.2.0",
  830. "System.Text.RegularExpressions": "4.1.0",
  831. "System.Threading": "4.0.11",
  832. "System.Threading.Thread": "4.0.0",
  833. "System.Threading.ThreadPool": "4.0.10",
  834. "System.Threading.Timer": "4.0.1",
  835. "System.Xml.XPath.XmlDocument": "4.0.1",
  836. "System.Xml.XmlDocument": "4.0.1"
  837. },
  838. "compile": {
  839. "lib/netstandard1.3/Renci.SshNet.dll": {}
  840. },
  841. "runtime": {
  842. "lib/netstandard1.3/Renci.SshNet.dll": {}
  843. }
  844. },
  845. "SshNet.Security.Cryptography/1.2.0": {
  846. "type": "package",
  847. "dependencies": {
  848. "System.IO": "4.1.0",
  849. "System.Security.Cryptography.Primitives": "4.0.0"
  850. },
  851. "compile": {
  852. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  853. },
  854. "runtime": {
  855. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  856. }
  857. },
  858. "System.AppContext/4.3.0": {
  859. "type": "package",
  860. "dependencies": {
  861. "System.Runtime": "4.3.0"
  862. },
  863. "compile": {
  864. "ref/netstandard1.6/System.AppContext.dll": {}
  865. },
  866. "runtime": {
  867. "lib/netstandard1.6/System.AppContext.dll": {}
  868. }
  869. },
  870. "System.Buffers/4.5.0": {
  871. "type": "package",
  872. "compile": {
  873. "ref/netcoreapp2.0/_._": {}
  874. },
  875. "runtime": {
  876. "lib/netcoreapp2.0/_._": {}
  877. }
  878. },
  879. "System.Collections/4.3.0": {
  880. "type": "package",
  881. "dependencies": {
  882. "Microsoft.NETCore.Platforms": "1.1.0",
  883. "Microsoft.NETCore.Targets": "1.1.0",
  884. "System.Runtime": "4.3.0"
  885. },
  886. "compile": {
  887. "ref/netstandard1.3/System.Collections.dll": {}
  888. }
  889. },
  890. "System.Collections.Concurrent/4.3.0": {
  891. "type": "package",
  892. "dependencies": {
  893. "System.Collections": "4.3.0",
  894. "System.Diagnostics.Debug": "4.3.0",
  895. "System.Diagnostics.Tracing": "4.3.0",
  896. "System.Globalization": "4.3.0",
  897. "System.Reflection": "4.3.0",
  898. "System.Resources.ResourceManager": "4.3.0",
  899. "System.Runtime": "4.3.0",
  900. "System.Runtime.Extensions": "4.3.0",
  901. "System.Threading": "4.3.0",
  902. "System.Threading.Tasks": "4.3.0"
  903. },
  904. "compile": {
  905. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  906. },
  907. "runtime": {
  908. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  909. }
  910. },
  911. "System.Collections.Immutable/1.7.0": {
  912. "type": "package",
  913. "compile": {
  914. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  915. },
  916. "runtime": {
  917. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  918. }
  919. },
  920. "System.Collections.NonGeneric/4.3.0": {
  921. "type": "package",
  922. "dependencies": {
  923. "System.Diagnostics.Debug": "4.3.0",
  924. "System.Globalization": "4.3.0",
  925. "System.Resources.ResourceManager": "4.3.0",
  926. "System.Runtime": "4.3.0",
  927. "System.Runtime.Extensions": "4.3.0",
  928. "System.Threading": "4.3.0"
  929. },
  930. "compile": {
  931. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  932. },
  933. "runtime": {
  934. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  935. }
  936. },
  937. "System.Collections.Specialized/4.3.0": {
  938. "type": "package",
  939. "dependencies": {
  940. "System.Collections.NonGeneric": "4.3.0",
  941. "System.Globalization": "4.3.0",
  942. "System.Globalization.Extensions": "4.3.0",
  943. "System.Resources.ResourceManager": "4.3.0",
  944. "System.Runtime": "4.3.0",
  945. "System.Runtime.Extensions": "4.3.0",
  946. "System.Threading": "4.3.0"
  947. },
  948. "compile": {
  949. "ref/netstandard1.3/System.Collections.Specialized.dll": {}
  950. },
  951. "runtime": {
  952. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  953. }
  954. },
  955. "System.ComponentModel/4.3.0": {
  956. "type": "package",
  957. "dependencies": {
  958. "System.Runtime": "4.3.0"
  959. },
  960. "compile": {
  961. "ref/netstandard1.0/System.ComponentModel.dll": {}
  962. },
  963. "runtime": {
  964. "lib/netstandard1.3/System.ComponentModel.dll": {}
  965. }
  966. },
  967. "System.ComponentModel.Annotations/4.7.0": {
  968. "type": "package",
  969. "compile": {
  970. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  971. },
  972. "runtime": {
  973. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  974. }
  975. },
  976. "System.ComponentModel.Primitives/4.3.0": {
  977. "type": "package",
  978. "dependencies": {
  979. "System.ComponentModel": "4.3.0",
  980. "System.Resources.ResourceManager": "4.3.0",
  981. "System.Runtime": "4.3.0"
  982. },
  983. "compile": {
  984. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  985. },
  986. "runtime": {
  987. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  988. }
  989. },
  990. "System.ComponentModel.TypeConverter/4.3.0": {
  991. "type": "package",
  992. "dependencies": {
  993. "System.Collections": "4.3.0",
  994. "System.Collections.NonGeneric": "4.3.0",
  995. "System.Collections.Specialized": "4.3.0",
  996. "System.ComponentModel": "4.3.0",
  997. "System.ComponentModel.Primitives": "4.3.0",
  998. "System.Globalization": "4.3.0",
  999. "System.Linq": "4.3.0",
  1000. "System.Reflection": "4.3.0",
  1001. "System.Reflection.Extensions": "4.3.0",
  1002. "System.Reflection.Primitives": "4.3.0",
  1003. "System.Reflection.TypeExtensions": "4.3.0",
  1004. "System.Resources.ResourceManager": "4.3.0",
  1005. "System.Runtime": "4.3.0",
  1006. "System.Runtime.Extensions": "4.3.0",
  1007. "System.Threading": "4.3.0"
  1008. },
  1009. "compile": {
  1010. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1011. },
  1012. "runtime": {
  1013. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1014. }
  1015. },
  1016. "System.Configuration.ConfigurationManager/4.4.1": {
  1017. "type": "package",
  1018. "dependencies": {
  1019. "System.Security.Cryptography.ProtectedData": "4.4.0"
  1020. },
  1021. "compile": {
  1022. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1023. },
  1024. "runtime": {
  1025. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1026. }
  1027. },
  1028. "System.Console/4.3.0": {
  1029. "type": "package",
  1030. "dependencies": {
  1031. "Microsoft.NETCore.Platforms": "1.1.0",
  1032. "Microsoft.NETCore.Targets": "1.1.0",
  1033. "System.IO": "4.3.0",
  1034. "System.Runtime": "4.3.0",
  1035. "System.Text.Encoding": "4.3.0"
  1036. },
  1037. "compile": {
  1038. "ref/netstandard1.3/System.Console.dll": {}
  1039. }
  1040. },
  1041. "System.Diagnostics.Contracts/4.0.1": {
  1042. "type": "package",
  1043. "dependencies": {
  1044. "System.Runtime": "4.1.0"
  1045. },
  1046. "compile": {
  1047. "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1048. },
  1049. "runtime": {
  1050. "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1051. }
  1052. },
  1053. "System.Diagnostics.Debug/4.3.0": {
  1054. "type": "package",
  1055. "dependencies": {
  1056. "Microsoft.NETCore.Platforms": "1.1.0",
  1057. "Microsoft.NETCore.Targets": "1.1.0",
  1058. "System.Runtime": "4.3.0"
  1059. },
  1060. "compile": {
  1061. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1062. }
  1063. },
  1064. "System.Diagnostics.DiagnosticSource/4.7.0": {
  1065. "type": "package",
  1066. "compile": {
  1067. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1068. },
  1069. "runtime": {
  1070. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1071. }
  1072. },
  1073. "System.Diagnostics.Tools/4.3.0": {
  1074. "type": "package",
  1075. "dependencies": {
  1076. "Microsoft.NETCore.Platforms": "1.1.0",
  1077. "Microsoft.NETCore.Targets": "1.1.0",
  1078. "System.Runtime": "4.3.0"
  1079. },
  1080. "compile": {
  1081. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1082. }
  1083. },
  1084. "System.Diagnostics.TraceSource/4.0.0": {
  1085. "type": "package",
  1086. "dependencies": {
  1087. "Microsoft.NETCore.Platforms": "1.0.1",
  1088. "System.Collections": "4.0.11",
  1089. "System.Diagnostics.Debug": "4.0.11",
  1090. "System.Globalization": "4.0.11",
  1091. "System.Resources.ResourceManager": "4.0.1",
  1092. "System.Runtime": "4.1.0",
  1093. "System.Runtime.Extensions": "4.1.0",
  1094. "System.Threading": "4.0.11",
  1095. "runtime.native.System": "4.0.0"
  1096. },
  1097. "compile": {
  1098. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1099. },
  1100. "runtimeTargets": {
  1101. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1102. "assetType": "runtime",
  1103. "rid": "unix"
  1104. },
  1105. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1106. "assetType": "runtime",
  1107. "rid": "win"
  1108. }
  1109. }
  1110. },
  1111. "System.Diagnostics.Tracing/4.3.0": {
  1112. "type": "package",
  1113. "dependencies": {
  1114. "Microsoft.NETCore.Platforms": "1.1.0",
  1115. "Microsoft.NETCore.Targets": "1.1.0",
  1116. "System.Runtime": "4.3.0"
  1117. },
  1118. "compile": {
  1119. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1120. }
  1121. },
  1122. "System.Drawing.Common/4.7.0": {
  1123. "type": "package",
  1124. "dependencies": {
  1125. "Microsoft.NETCore.Platforms": "3.1.0",
  1126. "Microsoft.Win32.SystemEvents": "4.7.0"
  1127. },
  1128. "compile": {
  1129. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1130. },
  1131. "runtime": {
  1132. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1133. },
  1134. "runtimeTargets": {
  1135. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1136. "assetType": "runtime",
  1137. "rid": "unix"
  1138. },
  1139. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1140. "assetType": "runtime",
  1141. "rid": "win"
  1142. }
  1143. }
  1144. },
  1145. "System.Dynamic.Runtime/4.0.11": {
  1146. "type": "package",
  1147. "dependencies": {
  1148. "System.Collections": "4.0.11",
  1149. "System.Diagnostics.Debug": "4.0.11",
  1150. "System.Globalization": "4.0.11",
  1151. "System.Linq": "4.1.0",
  1152. "System.Linq.Expressions": "4.1.0",
  1153. "System.ObjectModel": "4.0.12",
  1154. "System.Reflection": "4.1.0",
  1155. "System.Reflection.Emit": "4.0.1",
  1156. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1157. "System.Reflection.Primitives": "4.0.1",
  1158. "System.Reflection.TypeExtensions": "4.1.0",
  1159. "System.Resources.ResourceManager": "4.0.1",
  1160. "System.Runtime": "4.1.0",
  1161. "System.Runtime.Extensions": "4.1.0",
  1162. "System.Threading": "4.0.11"
  1163. },
  1164. "compile": {
  1165. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1166. },
  1167. "runtime": {
  1168. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1169. }
  1170. },
  1171. "System.Globalization/4.3.0": {
  1172. "type": "package",
  1173. "dependencies": {
  1174. "Microsoft.NETCore.Platforms": "1.1.0",
  1175. "Microsoft.NETCore.Targets": "1.1.0",
  1176. "System.Runtime": "4.3.0"
  1177. },
  1178. "compile": {
  1179. "ref/netstandard1.3/System.Globalization.dll": {}
  1180. }
  1181. },
  1182. "System.Globalization.Calendars/4.3.0": {
  1183. "type": "package",
  1184. "dependencies": {
  1185. "Microsoft.NETCore.Platforms": "1.1.0",
  1186. "Microsoft.NETCore.Targets": "1.1.0",
  1187. "System.Globalization": "4.3.0",
  1188. "System.Runtime": "4.3.0"
  1189. },
  1190. "compile": {
  1191. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1192. }
  1193. },
  1194. "System.Globalization.Extensions/4.3.0": {
  1195. "type": "package",
  1196. "dependencies": {
  1197. "Microsoft.NETCore.Platforms": "1.1.0",
  1198. "System.Globalization": "4.3.0",
  1199. "System.Resources.ResourceManager": "4.3.0",
  1200. "System.Runtime": "4.3.0",
  1201. "System.Runtime.Extensions": "4.3.0",
  1202. "System.Runtime.InteropServices": "4.3.0"
  1203. },
  1204. "compile": {
  1205. "ref/netstandard1.3/_._": {}
  1206. },
  1207. "runtimeTargets": {
  1208. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1209. "assetType": "runtime",
  1210. "rid": "unix"
  1211. },
  1212. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1213. "assetType": "runtime",
  1214. "rid": "win"
  1215. }
  1216. }
  1217. },
  1218. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  1219. "type": "package",
  1220. "dependencies": {
  1221. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  1222. "Microsoft.IdentityModel.Tokens": "5.5.0",
  1223. "Newtonsoft.Json": "10.0.1"
  1224. },
  1225. "compile": {
  1226. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1227. },
  1228. "runtime": {
  1229. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1230. }
  1231. },
  1232. "System.IO/4.3.0": {
  1233. "type": "package",
  1234. "dependencies": {
  1235. "Microsoft.NETCore.Platforms": "1.1.0",
  1236. "Microsoft.NETCore.Targets": "1.1.0",
  1237. "System.Runtime": "4.3.0",
  1238. "System.Text.Encoding": "4.3.0",
  1239. "System.Threading.Tasks": "4.3.0"
  1240. },
  1241. "compile": {
  1242. "ref/netstandard1.5/System.IO.dll": {}
  1243. }
  1244. },
  1245. "System.IO.Compression/4.3.0": {
  1246. "type": "package",
  1247. "dependencies": {
  1248. "Microsoft.NETCore.Platforms": "1.1.0",
  1249. "System.Buffers": "4.3.0",
  1250. "System.Collections": "4.3.0",
  1251. "System.Diagnostics.Debug": "4.3.0",
  1252. "System.IO": "4.3.0",
  1253. "System.Resources.ResourceManager": "4.3.0",
  1254. "System.Runtime": "4.3.0",
  1255. "System.Runtime.Extensions": "4.3.0",
  1256. "System.Runtime.Handles": "4.3.0",
  1257. "System.Runtime.InteropServices": "4.3.0",
  1258. "System.Text.Encoding": "4.3.0",
  1259. "System.Threading": "4.3.0",
  1260. "System.Threading.Tasks": "4.3.0",
  1261. "runtime.native.System": "4.3.0",
  1262. "runtime.native.System.IO.Compression": "4.3.0"
  1263. },
  1264. "compile": {
  1265. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1266. },
  1267. "runtimeTargets": {
  1268. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1269. "assetType": "runtime",
  1270. "rid": "unix"
  1271. },
  1272. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1273. "assetType": "runtime",
  1274. "rid": "win"
  1275. }
  1276. }
  1277. },
  1278. "System.IO.Compression.ZipFile/4.3.0": {
  1279. "type": "package",
  1280. "dependencies": {
  1281. "System.Buffers": "4.3.0",
  1282. "System.IO": "4.3.0",
  1283. "System.IO.Compression": "4.3.0",
  1284. "System.IO.FileSystem": "4.3.0",
  1285. "System.IO.FileSystem.Primitives": "4.3.0",
  1286. "System.Resources.ResourceManager": "4.3.0",
  1287. "System.Runtime": "4.3.0",
  1288. "System.Runtime.Extensions": "4.3.0",
  1289. "System.Text.Encoding": "4.3.0"
  1290. },
  1291. "compile": {
  1292. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1296. }
  1297. },
  1298. "System.IO.FileSystem/4.3.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.NETCore.Platforms": "1.1.0",
  1302. "Microsoft.NETCore.Targets": "1.1.0",
  1303. "System.IO": "4.3.0",
  1304. "System.IO.FileSystem.Primitives": "4.3.0",
  1305. "System.Runtime": "4.3.0",
  1306. "System.Runtime.Handles": "4.3.0",
  1307. "System.Text.Encoding": "4.3.0",
  1308. "System.Threading.Tasks": "4.3.0"
  1309. },
  1310. "compile": {
  1311. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1312. }
  1313. },
  1314. "System.IO.FileSystem.Primitives/4.3.0": {
  1315. "type": "package",
  1316. "dependencies": {
  1317. "System.Runtime": "4.3.0"
  1318. },
  1319. "compile": {
  1320. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1321. },
  1322. "runtime": {
  1323. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1324. }
  1325. },
  1326. "System.Linq/4.3.0": {
  1327. "type": "package",
  1328. "dependencies": {
  1329. "System.Collections": "4.3.0",
  1330. "System.Diagnostics.Debug": "4.3.0",
  1331. "System.Resources.ResourceManager": "4.3.0",
  1332. "System.Runtime": "4.3.0",
  1333. "System.Runtime.Extensions": "4.3.0"
  1334. },
  1335. "compile": {
  1336. "ref/netstandard1.6/System.Linq.dll": {}
  1337. },
  1338. "runtime": {
  1339. "lib/netstandard1.6/System.Linq.dll": {}
  1340. }
  1341. },
  1342. "System.Linq.Expressions/4.3.0": {
  1343. "type": "package",
  1344. "dependencies": {
  1345. "System.Collections": "4.3.0",
  1346. "System.Diagnostics.Debug": "4.3.0",
  1347. "System.Globalization": "4.3.0",
  1348. "System.IO": "4.3.0",
  1349. "System.Linq": "4.3.0",
  1350. "System.ObjectModel": "4.3.0",
  1351. "System.Reflection": "4.3.0",
  1352. "System.Reflection.Emit": "4.3.0",
  1353. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1354. "System.Reflection.Emit.Lightweight": "4.3.0",
  1355. "System.Reflection.Extensions": "4.3.0",
  1356. "System.Reflection.Primitives": "4.3.0",
  1357. "System.Reflection.TypeExtensions": "4.3.0",
  1358. "System.Resources.ResourceManager": "4.3.0",
  1359. "System.Runtime": "4.3.0",
  1360. "System.Runtime.Extensions": "4.3.0",
  1361. "System.Threading": "4.3.0"
  1362. },
  1363. "compile": {
  1364. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1365. },
  1366. "runtime": {
  1367. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1368. }
  1369. },
  1370. "System.Memory/4.5.4": {
  1371. "type": "package",
  1372. "compile": {
  1373. "ref/netcoreapp2.1/_._": {}
  1374. },
  1375. "runtime": {
  1376. "lib/netcoreapp2.1/_._": {}
  1377. }
  1378. },
  1379. "System.Net.Http/4.3.0": {
  1380. "type": "package",
  1381. "dependencies": {
  1382. "Microsoft.NETCore.Platforms": "1.1.0",
  1383. "System.Collections": "4.3.0",
  1384. "System.Diagnostics.Debug": "4.3.0",
  1385. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1386. "System.Diagnostics.Tracing": "4.3.0",
  1387. "System.Globalization": "4.3.0",
  1388. "System.Globalization.Extensions": "4.3.0",
  1389. "System.IO": "4.3.0",
  1390. "System.IO.FileSystem": "4.3.0",
  1391. "System.Net.Primitives": "4.3.0",
  1392. "System.Resources.ResourceManager": "4.3.0",
  1393. "System.Runtime": "4.3.0",
  1394. "System.Runtime.Extensions": "4.3.0",
  1395. "System.Runtime.Handles": "4.3.0",
  1396. "System.Runtime.InteropServices": "4.3.0",
  1397. "System.Security.Cryptography.Algorithms": "4.3.0",
  1398. "System.Security.Cryptography.Encoding": "4.3.0",
  1399. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1400. "System.Security.Cryptography.Primitives": "4.3.0",
  1401. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1402. "System.Text.Encoding": "4.3.0",
  1403. "System.Threading": "4.3.0",
  1404. "System.Threading.Tasks": "4.3.0",
  1405. "runtime.native.System": "4.3.0",
  1406. "runtime.native.System.Net.Http": "4.3.0",
  1407. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1408. },
  1409. "compile": {
  1410. "ref/netstandard1.3/System.Net.Http.dll": {}
  1411. },
  1412. "runtimeTargets": {
  1413. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1414. "assetType": "runtime",
  1415. "rid": "unix"
  1416. },
  1417. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1418. "assetType": "runtime",
  1419. "rid": "win"
  1420. }
  1421. }
  1422. },
  1423. "System.Net.Http.WinHttpHandler/4.4.0": {
  1424. "type": "package",
  1425. "compile": {
  1426. "ref/netstandard2.0/_._": {}
  1427. },
  1428. "runtime": {
  1429. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  1430. },
  1431. "runtimeTargets": {
  1432. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  1433. "assetType": "runtime",
  1434. "rid": "win"
  1435. }
  1436. }
  1437. },
  1438. "System.Net.NameResolution/4.0.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "Microsoft.NETCore.Platforms": "1.0.1",
  1442. "System.Collections": "4.0.11",
  1443. "System.Diagnostics.Tracing": "4.1.0",
  1444. "System.Globalization": "4.0.11",
  1445. "System.Net.Primitives": "4.0.11",
  1446. "System.Resources.ResourceManager": "4.0.1",
  1447. "System.Runtime": "4.1.0",
  1448. "System.Runtime.Extensions": "4.1.0",
  1449. "System.Runtime.Handles": "4.0.1",
  1450. "System.Runtime.InteropServices": "4.1.0",
  1451. "System.Security.Principal.Windows": "4.0.0",
  1452. "System.Threading": "4.0.11",
  1453. "System.Threading.Tasks": "4.0.11",
  1454. "runtime.native.System": "4.0.0"
  1455. },
  1456. "compile": {
  1457. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1458. },
  1459. "runtimeTargets": {
  1460. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1461. "assetType": "runtime",
  1462. "rid": "unix"
  1463. },
  1464. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1465. "assetType": "runtime",
  1466. "rid": "win"
  1467. }
  1468. }
  1469. },
  1470. "System.Net.Primitives/4.3.0": {
  1471. "type": "package",
  1472. "dependencies": {
  1473. "Microsoft.NETCore.Platforms": "1.1.0",
  1474. "Microsoft.NETCore.Targets": "1.1.0",
  1475. "System.Runtime": "4.3.0",
  1476. "System.Runtime.Handles": "4.3.0"
  1477. },
  1478. "compile": {
  1479. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1480. }
  1481. },
  1482. "System.Net.Sockets/4.3.0": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "Microsoft.NETCore.Platforms": "1.1.0",
  1486. "Microsoft.NETCore.Targets": "1.1.0",
  1487. "System.IO": "4.3.0",
  1488. "System.Net.Primitives": "4.3.0",
  1489. "System.Runtime": "4.3.0",
  1490. "System.Threading.Tasks": "4.3.0"
  1491. },
  1492. "compile": {
  1493. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1494. }
  1495. },
  1496. "System.ObjectModel/4.3.0": {
  1497. "type": "package",
  1498. "dependencies": {
  1499. "System.Collections": "4.3.0",
  1500. "System.Diagnostics.Debug": "4.3.0",
  1501. "System.Resources.ResourceManager": "4.3.0",
  1502. "System.Runtime": "4.3.0",
  1503. "System.Threading": "4.3.0"
  1504. },
  1505. "compile": {
  1506. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1507. },
  1508. "runtime": {
  1509. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1510. }
  1511. },
  1512. "System.Private.ServiceModel/4.4.4": {
  1513. "type": "package",
  1514. "dependencies": {
  1515. "Microsoft.NETCore.Platforms": "2.0.0",
  1516. "System.Net.Http.WinHttpHandler": "4.4.0",
  1517. "System.Reflection.DispatchProxy": "4.4.0",
  1518. "System.Security.Principal.Windows": "4.4.0"
  1519. },
  1520. "compile": {
  1521. "ref/netstandard/_._": {}
  1522. },
  1523. "runtimeTargets": {
  1524. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  1525. "assetType": "runtime",
  1526. "rid": "unix"
  1527. },
  1528. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  1529. "assetType": "runtime",
  1530. "rid": "win7"
  1531. }
  1532. }
  1533. },
  1534. "System.Reactive.Core/3.1.1": {
  1535. "type": "package",
  1536. "dependencies": {
  1537. "System.ComponentModel": "4.0.1",
  1538. "System.Diagnostics.Contracts": "4.0.1",
  1539. "System.Dynamic.Runtime": "4.0.11",
  1540. "System.Reactive.Interfaces": "3.1.1",
  1541. "System.Threading.Thread": "4.0.0",
  1542. "System.Threading.ThreadPool": "4.0.10"
  1543. },
  1544. "compile": {
  1545. "lib/netcoreapp1.0/System.Reactive.Core.dll": {}
  1546. },
  1547. "runtime": {
  1548. "lib/netcoreapp1.0/System.Reactive.Core.dll": {}
  1549. }
  1550. },
  1551. "System.Reactive.Interfaces/3.1.1": {
  1552. "type": "package",
  1553. "dependencies": {
  1554. "NETStandard.Library": "1.6.0"
  1555. },
  1556. "compile": {
  1557. "lib/netstandard1.0/System.Reactive.Interfaces.dll": {}
  1558. },
  1559. "runtime": {
  1560. "lib/netstandard1.0/System.Reactive.Interfaces.dll": {}
  1561. }
  1562. },
  1563. "System.Reactive.Linq/3.1.1": {
  1564. "type": "package",
  1565. "dependencies": {
  1566. "System.Reactive.Core": "3.1.1",
  1567. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1"
  1568. },
  1569. "compile": {
  1570. "lib/netstandard1.3/System.Reactive.Linq.dll": {}
  1571. },
  1572. "runtime": {
  1573. "lib/netstandard1.3/System.Reactive.Linq.dll": {}
  1574. }
  1575. },
  1576. "System.Reflection/4.3.0": {
  1577. "type": "package",
  1578. "dependencies": {
  1579. "Microsoft.NETCore.Platforms": "1.1.0",
  1580. "Microsoft.NETCore.Targets": "1.1.0",
  1581. "System.IO": "4.3.0",
  1582. "System.Reflection.Primitives": "4.3.0",
  1583. "System.Runtime": "4.3.0"
  1584. },
  1585. "compile": {
  1586. "ref/netstandard1.5/System.Reflection.dll": {}
  1587. }
  1588. },
  1589. "System.Reflection.DispatchProxy/4.4.0": {
  1590. "type": "package",
  1591. "compile": {
  1592. "ref/netcoreapp2.0/_._": {}
  1593. },
  1594. "runtime": {
  1595. "lib/netcoreapp2.0/_._": {}
  1596. }
  1597. },
  1598. "System.Reflection.Emit/4.3.0": {
  1599. "type": "package",
  1600. "dependencies": {
  1601. "System.IO": "4.3.0",
  1602. "System.Reflection": "4.3.0",
  1603. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1604. "System.Reflection.Primitives": "4.3.0",
  1605. "System.Runtime": "4.3.0"
  1606. },
  1607. "compile": {
  1608. "ref/netstandard1.1/_._": {}
  1609. },
  1610. "runtime": {
  1611. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1612. }
  1613. },
  1614. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1615. "type": "package",
  1616. "dependencies": {
  1617. "System.Reflection": "4.3.0",
  1618. "System.Reflection.Primitives": "4.3.0",
  1619. "System.Runtime": "4.3.0"
  1620. },
  1621. "compile": {
  1622. "ref/netstandard1.0/_._": {}
  1623. },
  1624. "runtime": {
  1625. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1626. }
  1627. },
  1628. "System.Reflection.Emit.Lightweight/4.3.0": {
  1629. "type": "package",
  1630. "dependencies": {
  1631. "System.Reflection": "4.3.0",
  1632. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1633. "System.Reflection.Primitives": "4.3.0",
  1634. "System.Runtime": "4.3.0"
  1635. },
  1636. "compile": {
  1637. "ref/netstandard1.0/_._": {}
  1638. },
  1639. "runtime": {
  1640. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1641. }
  1642. },
  1643. "System.Reflection.Extensions/4.3.0": {
  1644. "type": "package",
  1645. "dependencies": {
  1646. "Microsoft.NETCore.Platforms": "1.1.0",
  1647. "Microsoft.NETCore.Targets": "1.1.0",
  1648. "System.Reflection": "4.3.0",
  1649. "System.Runtime": "4.3.0"
  1650. },
  1651. "compile": {
  1652. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1653. }
  1654. },
  1655. "System.Reflection.Primitives/4.3.0": {
  1656. "type": "package",
  1657. "dependencies": {
  1658. "Microsoft.NETCore.Platforms": "1.1.0",
  1659. "Microsoft.NETCore.Targets": "1.1.0",
  1660. "System.Runtime": "4.3.0"
  1661. },
  1662. "compile": {
  1663. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1664. }
  1665. },
  1666. "System.Reflection.TypeExtensions/4.3.0": {
  1667. "type": "package",
  1668. "dependencies": {
  1669. "System.Reflection": "4.3.0",
  1670. "System.Runtime": "4.3.0"
  1671. },
  1672. "compile": {
  1673. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1674. },
  1675. "runtime": {
  1676. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1677. }
  1678. },
  1679. "System.Resources.Extensions/4.6.0-preview8.19405.3": {
  1680. "type": "package",
  1681. "compile": {
  1682. "ref/netstandard2.0/System.Resources.Extensions.dll": {}
  1683. },
  1684. "runtime": {
  1685. "lib/netstandard2.0/System.Resources.Extensions.dll": {}
  1686. }
  1687. },
  1688. "System.Resources.ResourceManager/4.3.0": {
  1689. "type": "package",
  1690. "dependencies": {
  1691. "Microsoft.NETCore.Platforms": "1.1.0",
  1692. "Microsoft.NETCore.Targets": "1.1.0",
  1693. "System.Globalization": "4.3.0",
  1694. "System.Reflection": "4.3.0",
  1695. "System.Runtime": "4.3.0"
  1696. },
  1697. "compile": {
  1698. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1699. }
  1700. },
  1701. "System.Runtime/4.3.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.NETCore.Platforms": "1.1.0",
  1705. "Microsoft.NETCore.Targets": "1.1.0"
  1706. },
  1707. "compile": {
  1708. "ref/netstandard1.5/System.Runtime.dll": {}
  1709. }
  1710. },
  1711. "System.Runtime.CompilerServices.Unsafe/4.7.0": {
  1712. "type": "package",
  1713. "compile": {
  1714. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1715. },
  1716. "runtime": {
  1717. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1718. }
  1719. },
  1720. "System.Runtime.Extensions/4.3.0": {
  1721. "type": "package",
  1722. "dependencies": {
  1723. "Microsoft.NETCore.Platforms": "1.1.0",
  1724. "Microsoft.NETCore.Targets": "1.1.0",
  1725. "System.Runtime": "4.3.0"
  1726. },
  1727. "compile": {
  1728. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1729. }
  1730. },
  1731. "System.Runtime.Handles/4.3.0": {
  1732. "type": "package",
  1733. "dependencies": {
  1734. "Microsoft.NETCore.Platforms": "1.1.0",
  1735. "Microsoft.NETCore.Targets": "1.1.0",
  1736. "System.Runtime": "4.3.0"
  1737. },
  1738. "compile": {
  1739. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1740. }
  1741. },
  1742. "System.Runtime.InteropServices/4.3.0": {
  1743. "type": "package",
  1744. "dependencies": {
  1745. "Microsoft.NETCore.Platforms": "1.1.0",
  1746. "Microsoft.NETCore.Targets": "1.1.0",
  1747. "System.Reflection": "4.3.0",
  1748. "System.Reflection.Primitives": "4.3.0",
  1749. "System.Runtime": "4.3.0",
  1750. "System.Runtime.Handles": "4.3.0"
  1751. },
  1752. "compile": {
  1753. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  1754. }
  1755. },
  1756. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1757. "type": "package",
  1758. "dependencies": {
  1759. "System.Reflection": "4.3.0",
  1760. "System.Reflection.Extensions": "4.3.0",
  1761. "System.Resources.ResourceManager": "4.3.0",
  1762. "System.Runtime": "4.3.0",
  1763. "System.Runtime.InteropServices": "4.3.0",
  1764. "System.Threading": "4.3.0",
  1765. "runtime.native.System": "4.3.0"
  1766. },
  1767. "compile": {
  1768. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1769. },
  1770. "runtime": {
  1771. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1772. },
  1773. "runtimeTargets": {
  1774. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1775. "assetType": "runtime",
  1776. "rid": "unix"
  1777. },
  1778. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1779. "assetType": "runtime",
  1780. "rid": "win"
  1781. }
  1782. }
  1783. },
  1784. "System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
  1785. "type": "package",
  1786. "dependencies": {
  1787. "System.Runtime": "4.1.0"
  1788. },
  1789. "compile": {
  1790. "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  1791. },
  1792. "runtime": {
  1793. "lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll": {}
  1794. }
  1795. },
  1796. "System.Runtime.Numerics/4.3.0": {
  1797. "type": "package",
  1798. "dependencies": {
  1799. "System.Globalization": "4.3.0",
  1800. "System.Resources.ResourceManager": "4.3.0",
  1801. "System.Runtime": "4.3.0",
  1802. "System.Runtime.Extensions": "4.3.0"
  1803. },
  1804. "compile": {
  1805. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1806. },
  1807. "runtime": {
  1808. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1809. }
  1810. },
  1811. "System.Runtime.Serialization.Primitives/4.3.0": {
  1812. "type": "package",
  1813. "dependencies": {
  1814. "System.Resources.ResourceManager": "4.3.0",
  1815. "System.Runtime": "4.3.0"
  1816. },
  1817. "compile": {
  1818. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1819. },
  1820. "runtime": {
  1821. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1822. }
  1823. },
  1824. "System.Security.AccessControl/4.4.0": {
  1825. "type": "package",
  1826. "dependencies": {
  1827. "Microsoft.NETCore.Platforms": "2.0.0",
  1828. "System.Security.Principal.Windows": "4.4.0"
  1829. },
  1830. "compile": {
  1831. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1832. },
  1833. "runtime": {
  1834. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1835. },
  1836. "runtimeTargets": {
  1837. "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1838. "assetType": "runtime",
  1839. "rid": "unix"
  1840. },
  1841. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1842. "assetType": "runtime",
  1843. "rid": "win"
  1844. }
  1845. }
  1846. },
  1847. "System.Security.Cryptography.Algorithms/4.3.0": {
  1848. "type": "package",
  1849. "dependencies": {
  1850. "Microsoft.NETCore.Platforms": "1.1.0",
  1851. "System.Collections": "4.3.0",
  1852. "System.IO": "4.3.0",
  1853. "System.Resources.ResourceManager": "4.3.0",
  1854. "System.Runtime": "4.3.0",
  1855. "System.Runtime.Extensions": "4.3.0",
  1856. "System.Runtime.Handles": "4.3.0",
  1857. "System.Runtime.InteropServices": "4.3.0",
  1858. "System.Runtime.Numerics": "4.3.0",
  1859. "System.Security.Cryptography.Encoding": "4.3.0",
  1860. "System.Security.Cryptography.Primitives": "4.3.0",
  1861. "System.Text.Encoding": "4.3.0",
  1862. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1863. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1864. },
  1865. "compile": {
  1866. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1867. },
  1868. "runtimeTargets": {
  1869. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1870. "assetType": "runtime",
  1871. "rid": "osx"
  1872. },
  1873. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1874. "assetType": "runtime",
  1875. "rid": "unix"
  1876. },
  1877. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1878. "assetType": "runtime",
  1879. "rid": "win"
  1880. }
  1881. }
  1882. },
  1883. "System.Security.Cryptography.Cng/4.5.0": {
  1884. "type": "package",
  1885. "compile": {
  1886. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1887. },
  1888. "runtime": {
  1889. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1890. },
  1891. "runtimeTargets": {
  1892. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1893. "assetType": "runtime",
  1894. "rid": "win"
  1895. }
  1896. }
  1897. },
  1898. "System.Security.Cryptography.Csp/4.3.0": {
  1899. "type": "package",
  1900. "dependencies": {
  1901. "Microsoft.NETCore.Platforms": "1.1.0",
  1902. "System.IO": "4.3.0",
  1903. "System.Reflection": "4.3.0",
  1904. "System.Resources.ResourceManager": "4.3.0",
  1905. "System.Runtime": "4.3.0",
  1906. "System.Runtime.Extensions": "4.3.0",
  1907. "System.Runtime.Handles": "4.3.0",
  1908. "System.Runtime.InteropServices": "4.3.0",
  1909. "System.Security.Cryptography.Algorithms": "4.3.0",
  1910. "System.Security.Cryptography.Encoding": "4.3.0",
  1911. "System.Security.Cryptography.Primitives": "4.3.0",
  1912. "System.Text.Encoding": "4.3.0",
  1913. "System.Threading": "4.3.0"
  1914. },
  1915. "compile": {
  1916. "ref/netstandard1.3/_._": {}
  1917. },
  1918. "runtimeTargets": {
  1919. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1920. "assetType": "runtime",
  1921. "rid": "unix"
  1922. },
  1923. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1924. "assetType": "runtime",
  1925. "rid": "win"
  1926. }
  1927. }
  1928. },
  1929. "System.Security.Cryptography.Encoding/4.3.0": {
  1930. "type": "package",
  1931. "dependencies": {
  1932. "Microsoft.NETCore.Platforms": "1.1.0",
  1933. "System.Collections": "4.3.0",
  1934. "System.Collections.Concurrent": "4.3.0",
  1935. "System.Linq": "4.3.0",
  1936. "System.Resources.ResourceManager": "4.3.0",
  1937. "System.Runtime": "4.3.0",
  1938. "System.Runtime.Extensions": "4.3.0",
  1939. "System.Runtime.Handles": "4.3.0",
  1940. "System.Runtime.InteropServices": "4.3.0",
  1941. "System.Security.Cryptography.Primitives": "4.3.0",
  1942. "System.Text.Encoding": "4.3.0",
  1943. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1944. },
  1945. "compile": {
  1946. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1947. },
  1948. "runtimeTargets": {
  1949. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1950. "assetType": "runtime",
  1951. "rid": "unix"
  1952. },
  1953. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1954. "assetType": "runtime",
  1955. "rid": "win"
  1956. }
  1957. }
  1958. },
  1959. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1960. "type": "package",
  1961. "dependencies": {
  1962. "System.Collections": "4.3.0",
  1963. "System.IO": "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.Encoding": "4.3.0",
  1972. "System.Security.Cryptography.Primitives": "4.3.0",
  1973. "System.Text.Encoding": "4.3.0",
  1974. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1975. },
  1976. "compile": {
  1977. "ref/netstandard1.6/_._": {}
  1978. },
  1979. "runtime": {
  1980. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1981. },
  1982. "runtimeTargets": {
  1983. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1984. "assetType": "runtime",
  1985. "rid": "unix"
  1986. }
  1987. }
  1988. },
  1989. "System.Security.Cryptography.Primitives/4.3.0": {
  1990. "type": "package",
  1991. "dependencies": {
  1992. "System.Diagnostics.Debug": "4.3.0",
  1993. "System.Globalization": "4.3.0",
  1994. "System.IO": "4.3.0",
  1995. "System.Resources.ResourceManager": "4.3.0",
  1996. "System.Runtime": "4.3.0",
  1997. "System.Threading": "4.3.0",
  1998. "System.Threading.Tasks": "4.3.0"
  1999. },
  2000. "compile": {
  2001. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2002. },
  2003. "runtime": {
  2004. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2005. }
  2006. },
  2007. "System.Security.Cryptography.ProtectedData/4.4.0": {
  2008. "type": "package",
  2009. "compile": {
  2010. "ref/netstandard2.0/_._": {}
  2011. },
  2012. "runtime": {
  2013. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2014. },
  2015. "runtimeTargets": {
  2016. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2017. "assetType": "runtime",
  2018. "rid": "win"
  2019. }
  2020. }
  2021. },
  2022. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2023. "type": "package",
  2024. "dependencies": {
  2025. "Microsoft.NETCore.Platforms": "1.1.0",
  2026. "System.Collections": "4.3.0",
  2027. "System.Diagnostics.Debug": "4.3.0",
  2028. "System.Globalization": "4.3.0",
  2029. "System.Globalization.Calendars": "4.3.0",
  2030. "System.IO": "4.3.0",
  2031. "System.IO.FileSystem": "4.3.0",
  2032. "System.IO.FileSystem.Primitives": "4.3.0",
  2033. "System.Resources.ResourceManager": "4.3.0",
  2034. "System.Runtime": "4.3.0",
  2035. "System.Runtime.Extensions": "4.3.0",
  2036. "System.Runtime.Handles": "4.3.0",
  2037. "System.Runtime.InteropServices": "4.3.0",
  2038. "System.Runtime.Numerics": "4.3.0",
  2039. "System.Security.Cryptography.Algorithms": "4.3.0",
  2040. "System.Security.Cryptography.Cng": "4.3.0",
  2041. "System.Security.Cryptography.Csp": "4.3.0",
  2042. "System.Security.Cryptography.Encoding": "4.3.0",
  2043. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2044. "System.Security.Cryptography.Primitives": "4.3.0",
  2045. "System.Text.Encoding": "4.3.0",
  2046. "System.Threading": "4.3.0",
  2047. "runtime.native.System": "4.3.0",
  2048. "runtime.native.System.Net.Http": "4.3.0",
  2049. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2053. },
  2054. "runtimeTargets": {
  2055. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2056. "assetType": "runtime",
  2057. "rid": "unix"
  2058. },
  2059. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2060. "assetType": "runtime",
  2061. "rid": "win"
  2062. }
  2063. }
  2064. },
  2065. "System.Security.Permissions/4.4.1": {
  2066. "type": "package",
  2067. "dependencies": {
  2068. "System.Security.AccessControl": "4.4.0"
  2069. },
  2070. "compile": {
  2071. "ref/netstandard2.0/System.Security.Permissions.dll": {}
  2072. },
  2073. "runtime": {
  2074. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  2075. }
  2076. },
  2077. "System.Security.Principal.Windows/4.4.0": {
  2078. "type": "package",
  2079. "dependencies": {
  2080. "Microsoft.NETCore.Platforms": "2.0.0"
  2081. },
  2082. "compile": {
  2083. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2084. },
  2085. "runtime": {
  2086. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2087. },
  2088. "runtimeTargets": {
  2089. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2090. "assetType": "runtime",
  2091. "rid": "unix"
  2092. },
  2093. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2094. "assetType": "runtime",
  2095. "rid": "win"
  2096. }
  2097. }
  2098. },
  2099. "System.ServiceModel.Duplex/4.4.4": {
  2100. "type": "package",
  2101. "dependencies": {
  2102. "System.Private.ServiceModel": "4.4.4",
  2103. "System.ServiceModel.Primitives": "4.4.4"
  2104. },
  2105. "compile": {
  2106. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2107. },
  2108. "runtime": {
  2109. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2110. }
  2111. },
  2112. "System.ServiceModel.Http/4.4.4": {
  2113. "type": "package",
  2114. "dependencies": {
  2115. "System.Private.ServiceModel": "4.4.4",
  2116. "System.ServiceModel.Primitives": "4.4.4"
  2117. },
  2118. "compile": {
  2119. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  2120. },
  2121. "runtime": {
  2122. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  2123. }
  2124. },
  2125. "System.ServiceModel.NetTcp/4.4.4": {
  2126. "type": "package",
  2127. "dependencies": {
  2128. "System.Private.ServiceModel": "4.4.4",
  2129. "System.ServiceModel.Primitives": "4.4.4"
  2130. },
  2131. "compile": {
  2132. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2133. },
  2134. "runtime": {
  2135. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2136. }
  2137. },
  2138. "System.ServiceModel.Primitives/4.4.4": {
  2139. "type": "package",
  2140. "dependencies": {
  2141. "System.Private.ServiceModel": "4.4.4"
  2142. },
  2143. "compile": {
  2144. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2145. "ref/netstandard2.0/System.ServiceModel.dll": {}
  2146. },
  2147. "runtime": {
  2148. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2149. "lib/netstandard2.0/System.ServiceModel.dll": {}
  2150. }
  2151. },
  2152. "System.ServiceModel.Security/4.4.4": {
  2153. "type": "package",
  2154. "dependencies": {
  2155. "System.Private.ServiceModel": "4.4.4",
  2156. "System.ServiceModel.Primitives": "4.4.4"
  2157. },
  2158. "compile": {
  2159. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  2160. },
  2161. "runtime": {
  2162. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  2163. }
  2164. },
  2165. "System.Text.Encoding/4.3.0": {
  2166. "type": "package",
  2167. "dependencies": {
  2168. "Microsoft.NETCore.Platforms": "1.1.0",
  2169. "Microsoft.NETCore.Targets": "1.1.0",
  2170. "System.Runtime": "4.3.0"
  2171. },
  2172. "compile": {
  2173. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2174. }
  2175. },
  2176. "System.Text.Encoding.CodePages/4.5.0": {
  2177. "type": "package",
  2178. "dependencies": {
  2179. "Microsoft.NETCore.Platforms": "2.0.0",
  2180. "System.Runtime.CompilerServices.Unsafe": "4.5.0"
  2181. },
  2182. "compile": {
  2183. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2184. },
  2185. "runtime": {
  2186. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2187. },
  2188. "runtimeTargets": {
  2189. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2190. "assetType": "runtime",
  2191. "rid": "win"
  2192. }
  2193. }
  2194. },
  2195. "System.Text.Encoding.Extensions/4.3.0": {
  2196. "type": "package",
  2197. "dependencies": {
  2198. "Microsoft.NETCore.Platforms": "1.1.0",
  2199. "Microsoft.NETCore.Targets": "1.1.0",
  2200. "System.Runtime": "4.3.0",
  2201. "System.Text.Encoding": "4.3.0"
  2202. },
  2203. "compile": {
  2204. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2205. }
  2206. },
  2207. "System.Text.RegularExpressions/4.3.0": {
  2208. "type": "package",
  2209. "dependencies": {
  2210. "System.Runtime": "4.3.0"
  2211. },
  2212. "compile": {
  2213. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2214. },
  2215. "runtime": {
  2216. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2217. }
  2218. },
  2219. "System.Threading/4.3.0": {
  2220. "type": "package",
  2221. "dependencies": {
  2222. "System.Runtime": "4.3.0",
  2223. "System.Threading.Tasks": "4.3.0"
  2224. },
  2225. "compile": {
  2226. "ref/netstandard1.3/System.Threading.dll": {}
  2227. },
  2228. "runtime": {
  2229. "lib/netstandard1.3/System.Threading.dll": {}
  2230. }
  2231. },
  2232. "System.Threading.Channels/4.7.1": {
  2233. "type": "package",
  2234. "compile": {
  2235. "lib/netcoreapp3.0/System.Threading.Channels.dll": {}
  2236. },
  2237. "runtime": {
  2238. "lib/netcoreapp3.0/System.Threading.Channels.dll": {}
  2239. }
  2240. },
  2241. "System.Threading.Tasks/4.3.0": {
  2242. "type": "package",
  2243. "dependencies": {
  2244. "Microsoft.NETCore.Platforms": "1.1.0",
  2245. "Microsoft.NETCore.Targets": "1.1.0",
  2246. "System.Runtime": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2250. }
  2251. },
  2252. "System.Threading.Tasks.Extensions/4.3.0": {
  2253. "type": "package",
  2254. "dependencies": {
  2255. "System.Collections": "4.3.0",
  2256. "System.Runtime": "4.3.0",
  2257. "System.Threading.Tasks": "4.3.0"
  2258. },
  2259. "compile": {
  2260. "lib/netstandard1.0/_._": {}
  2261. },
  2262. "runtime": {
  2263. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2264. }
  2265. },
  2266. "System.Threading.Thread/4.3.0": {
  2267. "type": "package",
  2268. "dependencies": {
  2269. "System.Runtime": "4.3.0"
  2270. },
  2271. "compile": {
  2272. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2273. },
  2274. "runtime": {
  2275. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2276. }
  2277. },
  2278. "System.Threading.ThreadPool/4.0.10": {
  2279. "type": "package",
  2280. "dependencies": {
  2281. "System.Runtime": "4.1.0",
  2282. "System.Runtime.Handles": "4.0.1"
  2283. },
  2284. "compile": {
  2285. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2286. },
  2287. "runtime": {
  2288. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2289. }
  2290. },
  2291. "System.Threading.Timer/4.3.0": {
  2292. "type": "package",
  2293. "dependencies": {
  2294. "Microsoft.NETCore.Platforms": "1.1.0",
  2295. "Microsoft.NETCore.Targets": "1.1.0",
  2296. "System.Runtime": "4.3.0"
  2297. },
  2298. "compile": {
  2299. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2300. }
  2301. },
  2302. "System.ValueTuple/4.5.0": {
  2303. "type": "package",
  2304. "compile": {
  2305. "ref/netcoreapp2.0/_._": {}
  2306. },
  2307. "runtime": {
  2308. "lib/netcoreapp2.0/_._": {}
  2309. }
  2310. },
  2311. "System.Xml.ReaderWriter/4.3.0": {
  2312. "type": "package",
  2313. "dependencies": {
  2314. "System.Collections": "4.3.0",
  2315. "System.Diagnostics.Debug": "4.3.0",
  2316. "System.Globalization": "4.3.0",
  2317. "System.IO": "4.3.0",
  2318. "System.IO.FileSystem": "4.3.0",
  2319. "System.IO.FileSystem.Primitives": "4.3.0",
  2320. "System.Resources.ResourceManager": "4.3.0",
  2321. "System.Runtime": "4.3.0",
  2322. "System.Runtime.Extensions": "4.3.0",
  2323. "System.Runtime.InteropServices": "4.3.0",
  2324. "System.Text.Encoding": "4.3.0",
  2325. "System.Text.Encoding.Extensions": "4.3.0",
  2326. "System.Text.RegularExpressions": "4.3.0",
  2327. "System.Threading.Tasks": "4.3.0",
  2328. "System.Threading.Tasks.Extensions": "4.3.0"
  2329. },
  2330. "compile": {
  2331. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2332. },
  2333. "runtime": {
  2334. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2335. }
  2336. },
  2337. "System.Xml.XDocument/4.3.0": {
  2338. "type": "package",
  2339. "dependencies": {
  2340. "System.Collections": "4.3.0",
  2341. "System.Diagnostics.Debug": "4.3.0",
  2342. "System.Diagnostics.Tools": "4.3.0",
  2343. "System.Globalization": "4.3.0",
  2344. "System.IO": "4.3.0",
  2345. "System.Reflection": "4.3.0",
  2346. "System.Resources.ResourceManager": "4.3.0",
  2347. "System.Runtime": "4.3.0",
  2348. "System.Runtime.Extensions": "4.3.0",
  2349. "System.Text.Encoding": "4.3.0",
  2350. "System.Threading": "4.3.0",
  2351. "System.Xml.ReaderWriter": "4.3.0"
  2352. },
  2353. "compile": {
  2354. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2355. },
  2356. "runtime": {
  2357. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2358. }
  2359. },
  2360. "System.Xml.XmlDocument/4.0.1": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "System.Collections": "4.0.11",
  2364. "System.Diagnostics.Debug": "4.0.11",
  2365. "System.Globalization": "4.0.11",
  2366. "System.IO": "4.1.0",
  2367. "System.Resources.ResourceManager": "4.0.1",
  2368. "System.Runtime": "4.1.0",
  2369. "System.Runtime.Extensions": "4.1.0",
  2370. "System.Text.Encoding": "4.0.11",
  2371. "System.Threading": "4.0.11",
  2372. "System.Xml.ReaderWriter": "4.0.11"
  2373. },
  2374. "compile": {
  2375. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2376. },
  2377. "runtime": {
  2378. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2379. }
  2380. },
  2381. "System.Xml.XPath/4.0.1": {
  2382. "type": "package",
  2383. "dependencies": {
  2384. "System.Collections": "4.0.11",
  2385. "System.Diagnostics.Debug": "4.0.11",
  2386. "System.Globalization": "4.0.11",
  2387. "System.IO": "4.1.0",
  2388. "System.Resources.ResourceManager": "4.0.1",
  2389. "System.Runtime": "4.1.0",
  2390. "System.Runtime.Extensions": "4.1.0",
  2391. "System.Threading": "4.0.11",
  2392. "System.Xml.ReaderWriter": "4.0.11"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2396. },
  2397. "runtime": {
  2398. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2399. }
  2400. },
  2401. "System.Xml.XPath.XmlDocument/4.0.1": {
  2402. "type": "package",
  2403. "dependencies": {
  2404. "System.Collections": "4.0.11",
  2405. "System.Globalization": "4.0.11",
  2406. "System.IO": "4.1.0",
  2407. "System.Resources.ResourceManager": "4.0.1",
  2408. "System.Runtime": "4.1.0",
  2409. "System.Runtime.Extensions": "4.1.0",
  2410. "System.Threading": "4.0.11",
  2411. "System.Xml.ReaderWriter": "4.0.11",
  2412. "System.Xml.XPath": "4.0.1",
  2413. "System.Xml.XmlDocument": "4.0.1"
  2414. },
  2415. "compile": {
  2416. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2417. },
  2418. "runtime": {
  2419. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2420. }
  2421. },
  2422. "ZKWeb.System.Drawing/4.0.1": {
  2423. "type": "package",
  2424. "dependencies": {
  2425. "System.Collections.NonGeneric": "4.3.0",
  2426. "System.Collections.Specialized": "4.3.0",
  2427. "System.ComponentModel.TypeConverter": "4.3.0",
  2428. "System.Runtime.InteropServices": "4.3.0",
  2429. "System.Runtime.Serialization.Primitives": "4.3.0",
  2430. "System.Threading.Thread": "4.3.0"
  2431. },
  2432. "compile": {
  2433. "lib/netstandard2.0/ZKWeb.System.Drawing.dll": {}
  2434. },
  2435. "runtime": {
  2436. "lib/netstandard2.0/ZKWeb.System.Drawing.dll": {}
  2437. }
  2438. }
  2439. }
  2440. },
  2441. "libraries": {
  2442. "BouncyCastle.NetCore/1.8.3": {
  2443. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2444. "type": "package",
  2445. "path": "bouncycastle.netcore/1.8.3",
  2446. "files": [
  2447. ".nupkg.metadata",
  2448. ".signature.p7s",
  2449. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2450. "bouncycastle.netcore.nuspec",
  2451. "lib/Mono/BouncyCastle.Crypto.dll",
  2452. "lib/Mono/BouncyCastle.Crypto.xml",
  2453. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2454. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2455. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2456. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2457. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2458. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2459. "lib/net20/BouncyCastle.Crypto.dll",
  2460. "lib/net20/BouncyCastle.Crypto.xml",
  2461. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2462. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2463. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2464. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2465. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2466. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2467. ]
  2468. },
  2469. "CSRedisCore/3.6.5": {
  2470. "sha512": "leAH+nG/WalDKiQFy1aCbUzNimvguRUvOnC8TwwcgoxeAonF7oWv0ilUpJ1ntqtRmLZhRWSO+we8yf0xm4Q/7A==",
  2471. "type": "package",
  2472. "path": "csrediscore/3.6.5",
  2473. "files": [
  2474. ".nupkg.metadata",
  2475. ".signature.p7s",
  2476. "csrediscore.3.6.5.nupkg.sha512",
  2477. "csrediscore.nuspec",
  2478. "lib/net40/CSRedisCore.dll",
  2479. "lib/net40/CSRedisCore.xml",
  2480. "lib/net45/CSRedisCore.dll",
  2481. "lib/net45/CSRedisCore.xml",
  2482. "lib/netstandard2.0/CSRedisCore.dll",
  2483. "lib/netstandard2.0/CSRedisCore.xml"
  2484. ]
  2485. },
  2486. "DotNetCore.NPOI/1.2.3": {
  2487. "sha512": "agXbYDkOvovMYBNqTcRAr6jrTtUXGYzVNdS9Yxy4PDZa8tBQiIeAD+54/Jdsc+3/Mln1L1Yj+SciO1TYwljcdQ==",
  2488. "type": "package",
  2489. "path": "dotnetcore.npoi/1.2.3",
  2490. "files": [
  2491. ".nupkg.metadata",
  2492. ".signature.p7s",
  2493. "content/NOTICE.TXT",
  2494. "contentFiles/any/net461/NOTICE.TXT",
  2495. "contentFiles/any/netstandard2.0/NOTICE.TXT",
  2496. "dotnetcore.npoi.1.2.3.nupkg.sha512",
  2497. "dotnetcore.npoi.nuspec",
  2498. "lib/net461/NPOI.OOXML.dll",
  2499. "lib/netstandard2.0/NPOI.OOXML.dll"
  2500. ]
  2501. },
  2502. "DotNetCore.NPOI.Core/1.2.3": {
  2503. "sha512": "2OgRNy4OpVOIwnkU8KPJs6itTE2xFpIFkFmci/iAnea/ZPTzQJrmuNPVKlfdn1csOI8ecFWES8Tk2ZmRSJjl5w==",
  2504. "type": "package",
  2505. "path": "dotnetcore.npoi.core/1.2.3",
  2506. "files": [
  2507. ".nupkg.metadata",
  2508. ".signature.p7s",
  2509. "dotnetcore.npoi.core.1.2.3.nupkg.sha512",
  2510. "dotnetcore.npoi.core.nuspec",
  2511. "lib/net461/NPOI.dll",
  2512. "lib/netstandard2.0/NPOI.dll"
  2513. ]
  2514. },
  2515. "DotNetCore.NPOI.OpenXml4Net/1.2.3": {
  2516. "sha512": "gELhZln7TuLn2he3r0mx1qnuPLjEgTW5z8RTFnEexSQ+r1smDqSSryXNEhwUvj1beBUxTjKq2RrwkrWwLgtScA==",
  2517. "type": "package",
  2518. "path": "dotnetcore.npoi.openxml4net/1.2.3",
  2519. "files": [
  2520. ".nupkg.metadata",
  2521. ".signature.p7s",
  2522. "dotnetcore.npoi.openxml4net.1.2.3.nupkg.sha512",
  2523. "dotnetcore.npoi.openxml4net.nuspec",
  2524. "lib/net461/NPOI.OpenXml4Net.dll",
  2525. "lib/netstandard2.0/NPOI.OpenXml4Net.dll"
  2526. ]
  2527. },
  2528. "DotNetCore.NPOI.OpenXmlFormats/1.2.3": {
  2529. "sha512": "3v0cJA+4rclcoW+hVuU4oYu1wNYv/jEIqQghLDMHqlviyOVxnuruAUDvsgENjiZM0iWFhkK0N/ZsXvH+qGvObw==",
  2530. "type": "package",
  2531. "path": "dotnetcore.npoi.openxmlformats/1.2.3",
  2532. "files": [
  2533. ".nupkg.metadata",
  2534. ".signature.p7s",
  2535. "dotnetcore.npoi.openxmlformats.1.2.3.nupkg.sha512",
  2536. "dotnetcore.npoi.openxmlformats.nuspec",
  2537. "lib/net461/NPOI.OpenXmlFormats.dll",
  2538. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll"
  2539. ]
  2540. },
  2541. "Google.Protobuf/3.6.1": {
  2542. "sha512": "741fGeDQjixBJaU2j+0CbrmZXsNJkTn/hWbOh4fLVXndHsCclJmWznCPWrJmPoZKvajBvAz3e8ECJOUvRtwjNQ==",
  2543. "type": "package",
  2544. "path": "google.protobuf/3.6.1",
  2545. "files": [
  2546. ".nupkg.metadata",
  2547. ".signature.p7s",
  2548. "google.protobuf.3.6.1.nupkg.sha512",
  2549. "google.protobuf.nuspec",
  2550. "lib/net45/Google.Protobuf.dll",
  2551. "lib/net45/Google.Protobuf.xml",
  2552. "lib/netstandard1.0/Google.Protobuf.dll",
  2553. "lib/netstandard1.0/Google.Protobuf.xml"
  2554. ]
  2555. },
  2556. "GraphQL/2.4.0": {
  2557. "sha512": "TMCyq9hB4rEyjZrI61BCtFIRUYfV+c3WrydeWefg4mOn4kVNRPDHTb2KtZrWbIlDriY6u5Dze0FkpXs4RlYVzQ==",
  2558. "type": "package",
  2559. "path": "graphql/2.4.0",
  2560. "files": [
  2561. ".nupkg.metadata",
  2562. ".signature.p7s",
  2563. "graphql.2.4.0.nupkg.sha512",
  2564. "graphql.nuspec",
  2565. "lib/net45/GraphQL.dll",
  2566. "lib/netstandard1.3/GraphQL.dll",
  2567. "lib/netstandard2.0/GraphQL.dll"
  2568. ]
  2569. },
  2570. "GraphQL-Parser/3.0.0": {
  2571. "sha512": "6vPhia+kfo44leH7GNAo4g/BRVxvprtu+96N4T218dTM/0KYhRCA8diqZFIib777TgKZpQfaaL014McoCuHTJA==",
  2572. "type": "package",
  2573. "path": "graphql-parser/3.0.0",
  2574. "files": [
  2575. ".nupkg.metadata",
  2576. ".signature.p7s",
  2577. "graphql-parser.3.0.0.nupkg.sha512",
  2578. "graphql-parser.nuspec",
  2579. "lib/net45/GraphQL-Parser.dll",
  2580. "lib/netstandard1.1/GraphQL-Parser.dll"
  2581. ]
  2582. },
  2583. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  2584. "sha512": "FrlxgBG6+FKlYr1IVxXNXSK7jpxiIYf036VNR1UgopKSIUNjaK2zvkhfVgFZVavagitQ/+UZ8Snnm6axyAVRNg==",
  2585. "type": "package",
  2586. "path": "microsoft.aspnetcore.authentication.jwtbearer/3.0.0",
  2587. "files": [
  2588. ".nupkg.metadata",
  2589. ".signature.p7s",
  2590. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  2591. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  2592. "microsoft.aspnetcore.authentication.jwtbearer.3.0.0.nupkg.sha512",
  2593. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  2594. ]
  2595. },
  2596. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2597. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  2598. "type": "package",
  2599. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  2600. "files": [
  2601. ".nupkg.metadata",
  2602. ".signature.p7s",
  2603. "LICENSE.TXT",
  2604. "THIRD-PARTY-NOTICES.TXT",
  2605. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2606. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2607. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2608. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2609. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2610. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2611. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  2612. "microsoft.bcl.asyncinterfaces.nuspec",
  2613. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2614. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2615. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2616. "useSharedDesignerContext.txt",
  2617. "version.txt"
  2618. ]
  2619. },
  2620. "Microsoft.Bcl.HashCode/1.1.0": {
  2621. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  2622. "type": "package",
  2623. "path": "microsoft.bcl.hashcode/1.1.0",
  2624. "files": [
  2625. ".nupkg.metadata",
  2626. ".signature.p7s",
  2627. "LICENSE.TXT",
  2628. "THIRD-PARTY-NOTICES.TXT",
  2629. "lib/net461/Microsoft.Bcl.HashCode.dll",
  2630. "lib/net461/Microsoft.Bcl.HashCode.xml",
  2631. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2632. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  2633. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2634. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  2635. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2636. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  2637. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  2638. "microsoft.bcl.hashcode.nuspec",
  2639. "ref/net461/Microsoft.Bcl.HashCode.dll",
  2640. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2641. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2642. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2643. "useSharedDesignerContext.txt",
  2644. "version.txt"
  2645. ]
  2646. },
  2647. "Microsoft.CSharp/4.7.0": {
  2648. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2649. "type": "package",
  2650. "path": "microsoft.csharp/4.7.0",
  2651. "files": [
  2652. ".nupkg.metadata",
  2653. ".signature.p7s",
  2654. "LICENSE.TXT",
  2655. "THIRD-PARTY-NOTICES.TXT",
  2656. "lib/MonoAndroid10/_._",
  2657. "lib/MonoTouch10/_._",
  2658. "lib/net45/_._",
  2659. "lib/netcore50/Microsoft.CSharp.dll",
  2660. "lib/netcoreapp2.0/_._",
  2661. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2662. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2663. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2664. "lib/portable-net45+win8+wp8+wpa81/_._",
  2665. "lib/uap10.0.16299/_._",
  2666. "lib/win8/_._",
  2667. "lib/wp80/_._",
  2668. "lib/wpa81/_._",
  2669. "lib/xamarinios10/_._",
  2670. "lib/xamarinmac20/_._",
  2671. "lib/xamarintvos10/_._",
  2672. "lib/xamarinwatchos10/_._",
  2673. "microsoft.csharp.4.7.0.nupkg.sha512",
  2674. "microsoft.csharp.nuspec",
  2675. "ref/MonoAndroid10/_._",
  2676. "ref/MonoTouch10/_._",
  2677. "ref/net45/_._",
  2678. "ref/netcore50/Microsoft.CSharp.dll",
  2679. "ref/netcore50/Microsoft.CSharp.xml",
  2680. "ref/netcore50/de/Microsoft.CSharp.xml",
  2681. "ref/netcore50/es/Microsoft.CSharp.xml",
  2682. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2683. "ref/netcore50/it/Microsoft.CSharp.xml",
  2684. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2685. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2686. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2687. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2688. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2689. "ref/netcoreapp2.0/_._",
  2690. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2691. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2692. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2693. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2694. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2695. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2696. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2697. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2698. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2699. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2700. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2701. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2702. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2703. "ref/portable-net45+win8+wp8+wpa81/_._",
  2704. "ref/uap10.0.16299/_._",
  2705. "ref/win8/_._",
  2706. "ref/wp80/_._",
  2707. "ref/wpa81/_._",
  2708. "ref/xamarinios10/_._",
  2709. "ref/xamarinmac20/_._",
  2710. "ref/xamarintvos10/_._",
  2711. "ref/xamarinwatchos10/_._",
  2712. "useSharedDesignerContext.txt",
  2713. "version.txt"
  2714. ]
  2715. },
  2716. "Microsoft.EntityFrameworkCore/3.1.0": {
  2717. "sha512": "BG+K/TBDlmkFUviU8lPvmQ3/nDf9e5MKh1il31gLEToV2kgxgkg+JulhtM0xOph6OU1Iyd5A+3c5FyBpI2xh3A==",
  2718. "type": "package",
  2719. "path": "microsoft.entityframeworkcore/3.1.0",
  2720. "files": [
  2721. ".nupkg.metadata",
  2722. ".signature.p7s",
  2723. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  2724. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  2725. "microsoft.entityframeworkcore.3.1.0.nupkg.sha512",
  2726. "microsoft.entityframeworkcore.nuspec",
  2727. "packageIcon.png"
  2728. ]
  2729. },
  2730. "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": {
  2731. "sha512": "6Wn8vQUq04aeXKVf7pu6/hQxqQliSyM5TocAJUBRQpDNAZGuu3nWMx1biEtZqhGXa4UTLTIJCOb8YANToC8ooA==",
  2732. "type": "package",
  2733. "path": "microsoft.entityframeworkcore.abstractions/3.1.0",
  2734. "files": [
  2735. ".nupkg.metadata",
  2736. ".signature.p7s",
  2737. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2738. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2739. "microsoft.entityframeworkcore.abstractions.3.1.0.nupkg.sha512",
  2740. "microsoft.entityframeworkcore.abstractions.nuspec",
  2741. "packageIcon.png"
  2742. ]
  2743. },
  2744. "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": {
  2745. "sha512": "Shqqf6MFaIkcuR6dMEBzvG0LMJMoKKMx+k14nUax98vv33i3AUUGxKF9VfJt7VsjOA3xu+KOdzCW8YJ2KLoRIA==",
  2746. "type": "package",
  2747. "path": "microsoft.entityframeworkcore.analyzers/3.1.0",
  2748. "files": [
  2749. ".nupkg.metadata",
  2750. ".signature.p7s",
  2751. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2752. "lib/netstandard2.0/_._",
  2753. "microsoft.entityframeworkcore.analyzers.3.1.0.nupkg.sha512",
  2754. "microsoft.entityframeworkcore.analyzers.nuspec",
  2755. "packageIcon.png"
  2756. ]
  2757. },
  2758. "Microsoft.EntityFrameworkCore.Design/3.1.0": {
  2759. "sha512": "zxyus0fUcAhst5Essf2g+GFgKN7BCITJ004DR4uAkLkn8lLS5MoxNDCBNjCF5lGrNx7a6wBaqQE7tgt7Ss2Hog==",
  2760. "type": "package",
  2761. "path": "microsoft.entityframeworkcore.design/3.1.0",
  2762. "files": [
  2763. ".nupkg.metadata",
  2764. ".signature.p7s",
  2765. "build/net461/Microsoft.EntityFrameworkCore.Design.props",
  2766. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props",
  2767. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll",
  2768. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml",
  2769. "microsoft.entityframeworkcore.design.3.1.0.nupkg.sha512",
  2770. "microsoft.entityframeworkcore.design.nuspec",
  2771. "packageIcon.png"
  2772. ]
  2773. },
  2774. "Microsoft.EntityFrameworkCore.Relational/3.1.0": {
  2775. "sha512": "eeiqVqzXVuwQsUbqXMyXSEUn/EHB9zmDsr5f/+v6uEt0ir7pgItuIi3I7QV4xvM/s0KbFsqGUOrAFPeRHE3plg==",
  2776. "type": "package",
  2777. "path": "microsoft.entityframeworkcore.relational/3.1.0",
  2778. "files": [
  2779. ".nupkg.metadata",
  2780. ".signature.p7s",
  2781. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2782. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2783. "microsoft.entityframeworkcore.relational.3.1.0.nupkg.sha512",
  2784. "microsoft.entityframeworkcore.relational.nuspec",
  2785. "packageIcon.png"
  2786. ]
  2787. },
  2788. "Microsoft.EntityFrameworkCore.Tools/3.1.0": {
  2789. "sha512": "b209nM8vHZXKG6hqZH2cYLpSVEmty9aDZf2gcYyJhpaEhf94AGdRfh8mlZCclJudjk07B37ebRysT1G//0IRzQ==",
  2790. "type": "package",
  2791. "path": "microsoft.entityframeworkcore.tools/3.1.0",
  2792. "hasTools": true,
  2793. "files": [
  2794. ".nupkg.metadata",
  2795. ".signature.p7s",
  2796. "lib/netstandard2.0/_._",
  2797. "microsoft.entityframeworkcore.tools.3.1.0.nupkg.sha512",
  2798. "microsoft.entityframeworkcore.tools.nuspec",
  2799. "packageIcon.png",
  2800. "tools/EntityFrameworkCore.PS2.psd1",
  2801. "tools/EntityFrameworkCore.PS2.psm1",
  2802. "tools/EntityFrameworkCore.psd1",
  2803. "tools/EntityFrameworkCore.psm1",
  2804. "tools/about_EntityFrameworkCore.help.txt",
  2805. "tools/init.ps1",
  2806. "tools/net461/any/ef.exe",
  2807. "tools/net461/win-x86/ef.exe",
  2808. "tools/netcoreapp2.0/any/ef.dll",
  2809. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  2810. ]
  2811. },
  2812. "Microsoft.Extensions.Caching.Abstractions/3.1.0": {
  2813. "sha512": "+R7REEI+Pks1/ITjDdvey+QJzIG3tIYOtrv4RT40UVVe2Y1Sa8pIjJy3MzPZbyXVgOFN3JHFz1UZH8kz04aa5A==",
  2814. "type": "package",
  2815. "path": "microsoft.extensions.caching.abstractions/3.1.0",
  2816. "files": [
  2817. ".nupkg.metadata",
  2818. ".signature.p7s",
  2819. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  2820. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  2821. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2822. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2823. "microsoft.extensions.caching.abstractions.3.1.0.nupkg.sha512",
  2824. "microsoft.extensions.caching.abstractions.nuspec",
  2825. "packageIcon.png"
  2826. ]
  2827. },
  2828. "Microsoft.Extensions.Caching.Memory/3.1.0": {
  2829. "sha512": "SWVYYFN8K4bUEZAwVbcdxjApYE7JtbjPXIqsQt/vKE243u0qeDuS7bA5hKVr+k5lo2R+BpITe6Mvqmkus2xDRQ==",
  2830. "type": "package",
  2831. "path": "microsoft.extensions.caching.memory/3.1.0",
  2832. "files": [
  2833. ".nupkg.metadata",
  2834. ".signature.p7s",
  2835. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  2836. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  2837. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2838. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2839. "microsoft.extensions.caching.memory.3.1.0.nupkg.sha512",
  2840. "microsoft.extensions.caching.memory.nuspec",
  2841. "packageIcon.png"
  2842. ]
  2843. },
  2844. "Microsoft.Extensions.Configuration/3.1.0": {
  2845. "sha512": "Lu41BWNmwhKr6LgyQvcYBOge0pPvmiaK8R5UHXX4//wBhonJyWcT2OK1mqYfEM5G7pTf31fPrpIHOT6sN7EGOA==",
  2846. "type": "package",
  2847. "path": "microsoft.extensions.configuration/3.1.0",
  2848. "files": [
  2849. ".nupkg.metadata",
  2850. ".signature.p7s",
  2851. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  2852. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  2853. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  2854. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  2855. "microsoft.extensions.configuration.3.1.0.nupkg.sha512",
  2856. "microsoft.extensions.configuration.nuspec",
  2857. "packageIcon.png"
  2858. ]
  2859. },
  2860. "Microsoft.Extensions.Configuration.Abstractions/3.1.0": {
  2861. "sha512": "ESz6bVoDQX7sgWdKHF6G9Pq672T8k+19AFb/txDXwdz7MoqaNQj2/in3agm/3qae9V+WvQZH86LLTNVo0it8vQ==",
  2862. "type": "package",
  2863. "path": "microsoft.extensions.configuration.abstractions/3.1.0",
  2864. "files": [
  2865. ".nupkg.metadata",
  2866. ".signature.p7s",
  2867. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  2868. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  2869. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2870. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2871. "microsoft.extensions.configuration.abstractions.3.1.0.nupkg.sha512",
  2872. "microsoft.extensions.configuration.abstractions.nuspec",
  2873. "packageIcon.png"
  2874. ]
  2875. },
  2876. "Microsoft.Extensions.Configuration.Binder/3.1.0": {
  2877. "sha512": "o9eELDBfNkR7sUtYysFZ1Q7BQ1mYt27DMkups/3vu7xgPyOpMD+iAfrBZFzUXT2iw0fmFb8s1gfNBZS+IgjKdQ==",
  2878. "type": "package",
  2879. "path": "microsoft.extensions.configuration.binder/3.1.0",
  2880. "files": [
  2881. ".nupkg.metadata",
  2882. ".signature.p7s",
  2883. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  2884. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  2885. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  2886. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  2887. "microsoft.extensions.configuration.binder.3.1.0.nupkg.sha512",
  2888. "microsoft.extensions.configuration.binder.nuspec",
  2889. "packageIcon.png"
  2890. ]
  2891. },
  2892. "Microsoft.Extensions.DependencyInjection/3.1.0": {
  2893. "sha512": "KVkv3aF2MQpmGFRh4xRx2CNbc2sjDFk+lH4ySrjWSOS+XoY1Xc+sJphw3N0iYOpoeCCq8976ceVYDH8sdx2qIQ==",
  2894. "type": "package",
  2895. "path": "microsoft.extensions.dependencyinjection/3.1.0",
  2896. "files": [
  2897. ".nupkg.metadata",
  2898. ".signature.p7s",
  2899. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2900. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2901. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  2902. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  2903. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2904. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2905. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2906. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2907. "microsoft.extensions.dependencyinjection.3.1.0.nupkg.sha512",
  2908. "microsoft.extensions.dependencyinjection.nuspec",
  2909. "packageIcon.png"
  2910. ]
  2911. },
  2912. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": {
  2913. "sha512": "44rDtOf1JXXAFpNT2EXMExaDm/4OJ2RXOL9i9lE4bK427nzC7Exphv+beB6IgluyE2GIoo8zezTStMXI7MQ8WA==",
  2914. "type": "package",
  2915. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.0",
  2916. "files": [
  2917. ".nupkg.metadata",
  2918. ".signature.p7s",
  2919. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2920. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2921. "microsoft.extensions.dependencyinjection.abstractions.3.1.0.nupkg.sha512",
  2922. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2923. "packageIcon.png"
  2924. ]
  2925. },
  2926. "Microsoft.Extensions.Logging/3.1.0": {
  2927. "sha512": "P+8sKQ8L4ooL79sxxqwFPxGGC3aBrUDLB/dZqhs4J0XjTyrkeeyJQ4D4nzJB6OnAhy78HIIgQ/RbD6upOXLynw==",
  2928. "type": "package",
  2929. "path": "microsoft.extensions.logging/3.1.0",
  2930. "files": [
  2931. ".nupkg.metadata",
  2932. ".signature.p7s",
  2933. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  2934. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  2935. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2936. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2937. "microsoft.extensions.logging.3.1.0.nupkg.sha512",
  2938. "microsoft.extensions.logging.nuspec",
  2939. "packageIcon.png"
  2940. ]
  2941. },
  2942. "Microsoft.Extensions.Logging.Abstractions/3.1.0": {
  2943. "sha512": "jjo4YXRx6MIpv6DiRxJjSpl+sPP0+5VW0clMEdLyIAz44PPwrDTFrd5PZckIxIXl1kKZ2KK6IL2nkt0+ug2MQg==",
  2944. "type": "package",
  2945. "path": "microsoft.extensions.logging.abstractions/3.1.0",
  2946. "files": [
  2947. ".nupkg.metadata",
  2948. ".signature.p7s",
  2949. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2950. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2951. "microsoft.extensions.logging.abstractions.3.1.0.nupkg.sha512",
  2952. "microsoft.extensions.logging.abstractions.nuspec",
  2953. "packageIcon.png"
  2954. ]
  2955. },
  2956. "Microsoft.Extensions.Options/3.1.0": {
  2957. "sha512": "9b6JHY7TAXrSfZ6EEGf+j8XnqKIiMPErfmaNXhJYSCb+BUW2H4RtzkNJvwLJzwgzqBP0wtTjyA6Uw4BPPdmkMw==",
  2958. "type": "package",
  2959. "path": "microsoft.extensions.options/3.1.0",
  2960. "files": [
  2961. ".nupkg.metadata",
  2962. ".signature.p7s",
  2963. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  2964. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  2965. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2966. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2967. "microsoft.extensions.options.3.1.0.nupkg.sha512",
  2968. "microsoft.extensions.options.nuspec",
  2969. "packageIcon.png"
  2970. ]
  2971. },
  2972. "Microsoft.Extensions.Primitives/3.1.0": {
  2973. "sha512": "LEKAnX7lhUhSoIc2XraCTK3M4IU/LdVUzCe464Sa4+7F4ZJuXHHRzZli2mDbiT4xzAZhgqXbvfnb5+CNDcQFfg==",
  2974. "type": "package",
  2975. "path": "microsoft.extensions.primitives/3.1.0",
  2976. "files": [
  2977. ".nupkg.metadata",
  2978. ".signature.p7s",
  2979. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2980. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2981. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2982. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2983. "microsoft.extensions.primitives.3.1.0.nupkg.sha512",
  2984. "microsoft.extensions.primitives.nuspec",
  2985. "packageIcon.png"
  2986. ]
  2987. },
  2988. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  2989. "sha512": "cT9SCW/dN+ulrvAtbh37c36DR6aArENH3S4UtFmvXRx+VGC0ArDgzRaEbEh+ChS4koxdl2oS691250iZhgKvwg==",
  2990. "type": "package",
  2991. "path": "microsoft.identitymodel.jsonwebtokens/5.5.0",
  2992. "files": [
  2993. ".nupkg.metadata",
  2994. ".signature.p7s",
  2995. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2996. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2997. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  2998. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  2999. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3000. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3001. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3002. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3003. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3004. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3005. "microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512",
  3006. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3007. ]
  3008. },
  3009. "Microsoft.IdentityModel.Logging/5.5.0": {
  3010. "sha512": "1w/Hz/7+al+ugQn+6y0tAPmpN8U0u1aBtl1QXYCVkiJfbCC4tgyroFOuhdztOq48rgeM+3JW9bGqOtkfVurW8w==",
  3011. "type": "package",
  3012. "path": "microsoft.identitymodel.logging/5.5.0",
  3013. "files": [
  3014. ".nupkg.metadata",
  3015. ".signature.p7s",
  3016. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3017. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3018. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3019. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3020. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3021. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3022. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3023. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3024. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3025. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3026. "microsoft.identitymodel.logging.5.5.0.nupkg.sha512",
  3027. "microsoft.identitymodel.logging.nuspec"
  3028. ]
  3029. },
  3030. "Microsoft.IdentityModel.Protocols/5.5.0": {
  3031. "sha512": "m1gwAQwZjUxzRBC+4H40vYSo9Cms9yUbMdW492rQoXHU77G/ItiKxpk2+W9bWYcdsKUDKudye7im3T3MlVxEkg==",
  3032. "type": "package",
  3033. "path": "microsoft.identitymodel.protocols/5.5.0",
  3034. "files": [
  3035. ".nupkg.metadata",
  3036. ".signature.p7s",
  3037. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3038. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3039. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  3040. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  3041. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3042. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3043. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  3044. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  3045. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3046. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3047. "microsoft.identitymodel.protocols.5.5.0.nupkg.sha512",
  3048. "microsoft.identitymodel.protocols.nuspec"
  3049. ]
  3050. },
  3051. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  3052. "sha512": "21F4QlbaD5CXNs2urNRCO6vljbbrhv3gmGT8P18SKGKZ9IYBCn29extoJriHiPfhABd5b8S7RcdKU50XhERkYg==",
  3053. "type": "package",
  3054. "path": "microsoft.identitymodel.protocols.openidconnect/5.5.0",
  3055. "files": [
  3056. ".nupkg.metadata",
  3057. ".signature.p7s",
  3058. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3059. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3060. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3061. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3062. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3063. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3064. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3065. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3066. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3067. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3068. "microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512",
  3069. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3070. ]
  3071. },
  3072. "Microsoft.IdentityModel.Tokens/5.5.0": {
  3073. "sha512": "cu1klZiuCwVYbXHs0QdnseuoRGG1/85VX9d1Sk0vbJlKp+HJUN/4pAS/fe2m9bTOYyIPdeCHeksMiVHgo1EfAA==",
  3074. "type": "package",
  3075. "path": "microsoft.identitymodel.tokens/5.5.0",
  3076. "files": [
  3077. ".nupkg.metadata",
  3078. ".signature.p7s",
  3079. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3080. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3081. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3082. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3083. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3084. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3085. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3086. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3087. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3088. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3089. "microsoft.identitymodel.tokens.5.5.0.nupkg.sha512",
  3090. "microsoft.identitymodel.tokens.nuspec"
  3091. ]
  3092. },
  3093. "Microsoft.NETCore.Platforms/3.1.0": {
  3094. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3095. "type": "package",
  3096. "path": "microsoft.netcore.platforms/3.1.0",
  3097. "files": [
  3098. ".nupkg.metadata",
  3099. ".signature.p7s",
  3100. "LICENSE.TXT",
  3101. "THIRD-PARTY-NOTICES.TXT",
  3102. "lib/netstandard1.0/_._",
  3103. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3104. "microsoft.netcore.platforms.nuspec",
  3105. "runtime.json",
  3106. "useSharedDesignerContext.txt",
  3107. "version.txt"
  3108. ]
  3109. },
  3110. "Microsoft.NETCore.Targets/1.1.0": {
  3111. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3112. "type": "package",
  3113. "path": "microsoft.netcore.targets/1.1.0",
  3114. "files": [
  3115. ".nupkg.metadata",
  3116. ".signature.p7s",
  3117. "ThirdPartyNotices.txt",
  3118. "dotnet_library_license.txt",
  3119. "lib/netstandard1.0/_._",
  3120. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3121. "microsoft.netcore.targets.nuspec",
  3122. "runtime.json"
  3123. ]
  3124. },
  3125. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.0": {
  3126. "sha512": "ZHXVe8nDkHXmPlBNGOl3SIxoUKfah2OJOKKmq769gBMqHJMaOrFKhPYsHdTORjKUtwc3AlO1CMLgnljFyyxA/Q==",
  3127. "type": "package",
  3128. "path": "microsoft.visualstudio.web.codegeneration.design/3.1.0",
  3129. "files": [
  3130. ".nupkg.metadata",
  3131. ".signature.p7s",
  3132. "lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3133. "lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3134. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll",
  3135. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.xml",
  3136. "microsoft.visualstudio.web.codegeneration.design.3.1.0.nupkg.sha512",
  3137. "microsoft.visualstudio.web.codegeneration.design.nuspec",
  3138. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3139. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3140. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3141. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3142. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3143. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3144. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3145. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml"
  3146. ]
  3147. },
  3148. "Microsoft.Win32.Primitives/4.3.0": {
  3149. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3150. "type": "package",
  3151. "path": "microsoft.win32.primitives/4.3.0",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "ThirdPartyNotices.txt",
  3156. "dotnet_library_license.txt",
  3157. "lib/MonoAndroid10/_._",
  3158. "lib/MonoTouch10/_._",
  3159. "lib/net46/Microsoft.Win32.Primitives.dll",
  3160. "lib/xamarinios10/_._",
  3161. "lib/xamarinmac20/_._",
  3162. "lib/xamarintvos10/_._",
  3163. "lib/xamarinwatchos10/_._",
  3164. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3165. "microsoft.win32.primitives.nuspec",
  3166. "ref/MonoAndroid10/_._",
  3167. "ref/MonoTouch10/_._",
  3168. "ref/net46/Microsoft.Win32.Primitives.dll",
  3169. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3170. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3171. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3172. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3173. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3174. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3175. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3176. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3177. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3178. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3179. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3180. "ref/xamarinios10/_._",
  3181. "ref/xamarinmac20/_._",
  3182. "ref/xamarintvos10/_._",
  3183. "ref/xamarinwatchos10/_._"
  3184. ]
  3185. },
  3186. "Microsoft.Win32.SystemEvents/4.7.0": {
  3187. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3188. "type": "package",
  3189. "path": "microsoft.win32.systemevents/4.7.0",
  3190. "files": [
  3191. ".nupkg.metadata",
  3192. ".signature.p7s",
  3193. "LICENSE.TXT",
  3194. "THIRD-PARTY-NOTICES.TXT",
  3195. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3196. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3197. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3198. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3199. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3200. "microsoft.win32.systemevents.nuspec",
  3201. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3202. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3203. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3204. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3205. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3206. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3207. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3208. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3209. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3210. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3211. "useSharedDesignerContext.txt",
  3212. "version.txt"
  3213. ]
  3214. },
  3215. "MySql.Data/8.0.18": {
  3216. "sha512": "BgzDO6yitNn0np6kUbNpgRsXj7o1Km0lZoSdDi3++HuWQdFxbaERuxcYbmkDZEqEtvySxf5ww+dqSE0uf9F5+A==",
  3217. "type": "package",
  3218. "path": "mysql.data/8.0.18",
  3219. "files": [
  3220. ".nupkg.metadata",
  3221. ".signature.p7s",
  3222. "lib/net452/MySql.Data.dll",
  3223. "lib/net452/MySql.Data.xml",
  3224. "lib/netstandard2.0/MySql.Data.dll",
  3225. "lib/netstandard2.0/MySql.Data.xml",
  3226. "lib/netstandard2.1/MySql.Data.dll",
  3227. "lib/netstandard2.1/MySql.Data.xml",
  3228. "mysql.data.8.0.18.nupkg.sha512",
  3229. "mysql.data.nuspec"
  3230. ]
  3231. },
  3232. "MySqlConnector/0.61.0": {
  3233. "sha512": "E01yibVzCkVOmhNsUb+B4amjQKfKFlGiR1huNd6Q8aTCqBrACo0I3JMKvJBMpZfYhAsR8bqB9496PwcGpr+LuQ==",
  3234. "type": "package",
  3235. "path": "mysqlconnector/0.61.0",
  3236. "files": [
  3237. ".nupkg.metadata",
  3238. ".signature.p7s",
  3239. "lib/net45/MySqlConnector.dll",
  3240. "lib/net45/MySqlConnector.xml",
  3241. "lib/net461/MySqlConnector.dll",
  3242. "lib/net461/MySqlConnector.xml",
  3243. "lib/net471/MySqlConnector.dll",
  3244. "lib/net471/MySqlConnector.xml",
  3245. "lib/netcoreapp2.1/MySqlConnector.dll",
  3246. "lib/netcoreapp2.1/MySqlConnector.xml",
  3247. "lib/netcoreapp3.0/MySqlConnector.dll",
  3248. "lib/netcoreapp3.0/MySqlConnector.xml",
  3249. "lib/netstandard1.3/MySqlConnector.dll",
  3250. "lib/netstandard1.3/MySqlConnector.xml",
  3251. "lib/netstandard2.0/MySqlConnector.dll",
  3252. "lib/netstandard2.0/MySqlConnector.xml",
  3253. "lib/netstandard2.1/MySqlConnector.dll",
  3254. "lib/netstandard2.1/MySqlConnector.xml",
  3255. "logo.png",
  3256. "mysqlconnector.0.61.0.nupkg.sha512",
  3257. "mysqlconnector.nuspec"
  3258. ]
  3259. },
  3260. "NETStandard.Library/1.6.1": {
  3261. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  3262. "type": "package",
  3263. "path": "netstandard.library/1.6.1",
  3264. "files": [
  3265. ".nupkg.metadata",
  3266. ".signature.p7s",
  3267. "ThirdPartyNotices.txt",
  3268. "dotnet_library_license.txt",
  3269. "netstandard.library.1.6.1.nupkg.sha512",
  3270. "netstandard.library.nuspec"
  3271. ]
  3272. },
  3273. "Newtonsoft.Json/12.0.3": {
  3274. "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
  3275. "type": "package",
  3276. "path": "newtonsoft.json/12.0.3",
  3277. "files": [
  3278. ".nupkg.metadata",
  3279. ".signature.p7s",
  3280. "LICENSE.md",
  3281. "lib/net20/Newtonsoft.Json.dll",
  3282. "lib/net20/Newtonsoft.Json.xml",
  3283. "lib/net35/Newtonsoft.Json.dll",
  3284. "lib/net35/Newtonsoft.Json.xml",
  3285. "lib/net40/Newtonsoft.Json.dll",
  3286. "lib/net40/Newtonsoft.Json.xml",
  3287. "lib/net45/Newtonsoft.Json.dll",
  3288. "lib/net45/Newtonsoft.Json.xml",
  3289. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3290. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3291. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3292. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3293. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3294. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3295. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3296. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3297. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3298. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3299. "newtonsoft.json.12.0.3.nupkg.sha512",
  3300. "newtonsoft.json.nuspec",
  3301. "packageIcon.png"
  3302. ]
  3303. },
  3304. "Pomelo.EntityFrameworkCore.MySql/3.0.1": {
  3305. "sha512": "5yNEvaya2JrGsXiXO8E/EWuPTnkvNWJw2cGcWm5uuW+yfWrqaSHF5lYLRrIdsk4W8SujnSC1m+OIsuENTQ6WGQ==",
  3306. "type": "package",
  3307. "path": "pomelo.entityframeworkcore.mysql/3.0.1",
  3308. "files": [
  3309. ".nupkg.metadata",
  3310. ".signature.p7s",
  3311. "icon.png",
  3312. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  3313. "pomelo.entityframeworkcore.mysql.3.0.1.nupkg.sha512",
  3314. "pomelo.entityframeworkcore.mysql.nuspec"
  3315. ]
  3316. },
  3317. "Pomelo.JsonObject/2.2.1": {
  3318. "sha512": "VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
  3319. "type": "package",
  3320. "path": "pomelo.jsonobject/2.2.1",
  3321. "files": [
  3322. ".nupkg.metadata",
  3323. ".signature.p7s",
  3324. "lib/netstandard2.0/Pomelo.JsonObject.dll",
  3325. "pomelo.jsonobject.2.2.1.nupkg.sha512",
  3326. "pomelo.jsonobject.nuspec"
  3327. ]
  3328. },
  3329. "RabbitMQ.Client/6.2.2": {
  3330. "sha512": "+tJSgE+rQXgLvOxWvOxdZ0+No1EMa86+puZuNlCb4cNryHw2PY2Xiw/y2dz/WWdeJQp74Y2UnNXPkuLiYpvn+A==",
  3331. "type": "package",
  3332. "path": "rabbitmq.client/6.2.2",
  3333. "files": [
  3334. ".nupkg.metadata",
  3335. ".signature.p7s",
  3336. "LICENSE",
  3337. "icon.png",
  3338. "lib/net461/RabbitMQ.Client.dll",
  3339. "lib/net461/RabbitMQ.Client.pdb",
  3340. "lib/net461/RabbitMQ.Client.xml",
  3341. "lib/netstandard2.0/RabbitMQ.Client.dll",
  3342. "lib/netstandard2.0/RabbitMQ.Client.pdb",
  3343. "lib/netstandard2.0/RabbitMQ.Client.xml",
  3344. "rabbitmq.client.6.2.2.nupkg.sha512",
  3345. "rabbitmq.client.nuspec"
  3346. ]
  3347. },
  3348. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3349. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  3350. "type": "package",
  3351. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3352. "files": [
  3353. ".nupkg.metadata",
  3354. ".signature.p7s",
  3355. "ThirdPartyNotices.txt",
  3356. "dotnet_library_license.txt",
  3357. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3358. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3359. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3360. ]
  3361. },
  3362. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3363. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  3364. "type": "package",
  3365. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3366. "files": [
  3367. ".nupkg.metadata",
  3368. ".signature.p7s",
  3369. "ThirdPartyNotices.txt",
  3370. "dotnet_library_license.txt",
  3371. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3372. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3373. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3374. ]
  3375. },
  3376. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3377. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  3378. "type": "package",
  3379. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3380. "files": [
  3381. ".nupkg.metadata",
  3382. ".signature.p7s",
  3383. "ThirdPartyNotices.txt",
  3384. "dotnet_library_license.txt",
  3385. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3386. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3387. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3388. ]
  3389. },
  3390. "runtime.native.System/4.3.0": {
  3391. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3392. "type": "package",
  3393. "path": "runtime.native.system/4.3.0",
  3394. "files": [
  3395. ".nupkg.metadata",
  3396. ".signature.p7s",
  3397. "ThirdPartyNotices.txt",
  3398. "dotnet_library_license.txt",
  3399. "lib/netstandard1.0/_._",
  3400. "runtime.native.system.4.3.0.nupkg.sha512",
  3401. "runtime.native.system.nuspec"
  3402. ]
  3403. },
  3404. "runtime.native.System.IO.Compression/4.3.0": {
  3405. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  3406. "type": "package",
  3407. "path": "runtime.native.system.io.compression/4.3.0",
  3408. "files": [
  3409. ".nupkg.metadata",
  3410. ".signature.p7s",
  3411. "ThirdPartyNotices.txt",
  3412. "dotnet_library_license.txt",
  3413. "lib/netstandard1.0/_._",
  3414. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  3415. "runtime.native.system.io.compression.nuspec"
  3416. ]
  3417. },
  3418. "runtime.native.System.Net.Http/4.3.0": {
  3419. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3420. "type": "package",
  3421. "path": "runtime.native.system.net.http/4.3.0",
  3422. "files": [
  3423. ".nupkg.metadata",
  3424. ".signature.p7s",
  3425. "ThirdPartyNotices.txt",
  3426. "dotnet_library_license.txt",
  3427. "lib/netstandard1.0/_._",
  3428. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3429. "runtime.native.system.net.http.nuspec"
  3430. ]
  3431. },
  3432. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3433. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3434. "type": "package",
  3435. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3436. "files": [
  3437. ".nupkg.metadata",
  3438. ".signature.p7s",
  3439. "ThirdPartyNotices.txt",
  3440. "dotnet_library_license.txt",
  3441. "lib/netstandard1.0/_._",
  3442. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3443. "runtime.native.system.security.cryptography.apple.nuspec"
  3444. ]
  3445. },
  3446. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3447. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  3448. "type": "package",
  3449. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  3450. "files": [
  3451. ".nupkg.metadata",
  3452. ".signature.p7s",
  3453. "ThirdPartyNotices.txt",
  3454. "dotnet_library_license.txt",
  3455. "lib/netstandard1.0/_._",
  3456. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3457. "runtime.native.system.security.cryptography.openssl.nuspec"
  3458. ]
  3459. },
  3460. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3461. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  3462. "type": "package",
  3463. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3464. "files": [
  3465. ".nupkg.metadata",
  3466. ".signature.p7s",
  3467. "ThirdPartyNotices.txt",
  3468. "dotnet_library_license.txt",
  3469. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3470. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3471. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3472. ]
  3473. },
  3474. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3475. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  3476. "type": "package",
  3477. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3478. "files": [
  3479. ".nupkg.metadata",
  3480. ".signature.p7s",
  3481. "ThirdPartyNotices.txt",
  3482. "dotnet_library_license.txt",
  3483. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3484. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3485. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3486. ]
  3487. },
  3488. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3489. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  3490. "type": "package",
  3491. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  3492. "files": [
  3493. ".nupkg.metadata",
  3494. ".signature.p7s",
  3495. "ThirdPartyNotices.txt",
  3496. "dotnet_library_license.txt",
  3497. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3498. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  3499. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  3500. ]
  3501. },
  3502. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3503. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  3504. "type": "package",
  3505. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3506. "files": [
  3507. ".nupkg.metadata",
  3508. ".signature.p7s",
  3509. "ThirdPartyNotices.txt",
  3510. "dotnet_library_license.txt",
  3511. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3512. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3513. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  3514. ]
  3515. },
  3516. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3517. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  3518. "type": "package",
  3519. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3520. "files": [
  3521. ".nupkg.metadata",
  3522. ".signature.p7s",
  3523. "ThirdPartyNotices.txt",
  3524. "dotnet_library_license.txt",
  3525. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3526. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3527. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3528. ]
  3529. },
  3530. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3531. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  3532. "type": "package",
  3533. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3534. "files": [
  3535. ".nupkg.metadata",
  3536. ".signature.p7s",
  3537. "ThirdPartyNotices.txt",
  3538. "dotnet_library_license.txt",
  3539. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3540. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3541. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3542. ]
  3543. },
  3544. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3545. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  3546. "type": "package",
  3547. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3548. "files": [
  3549. ".nupkg.metadata",
  3550. ".signature.p7s",
  3551. "ThirdPartyNotices.txt",
  3552. "dotnet_library_license.txt",
  3553. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3554. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3555. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3556. ]
  3557. },
  3558. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3559. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  3560. "type": "package",
  3561. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3562. "files": [
  3563. ".nupkg.metadata",
  3564. ".signature.p7s",
  3565. "ThirdPartyNotices.txt",
  3566. "dotnet_library_license.txt",
  3567. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3568. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3569. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3570. ]
  3571. },
  3572. "SharpZipLib/1.2.0": {
  3573. "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
  3574. "type": "package",
  3575. "path": "sharpziplib/1.2.0",
  3576. "files": [
  3577. ".nupkg.metadata",
  3578. ".signature.p7s",
  3579. "lib/net45/ICSharpCode.SharpZipLib.dll",
  3580. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  3581. "lib/net45/ICSharpCode.SharpZipLib.xml",
  3582. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  3583. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  3584. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  3585. "sharpziplib.1.2.0.nupkg.sha512",
  3586. "sharpziplib.nuspec"
  3587. ]
  3588. },
  3589. "SSH.NET/2016.1.0": {
  3590. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  3591. "type": "package",
  3592. "path": "ssh.net/2016.1.0",
  3593. "files": [
  3594. ".nupkg.metadata",
  3595. ".signature.p7s",
  3596. "lib/net35/Renci.SshNet.dll",
  3597. "lib/net35/Renci.SshNet.xml",
  3598. "lib/net40/Renci.SshNet.dll",
  3599. "lib/net40/Renci.SshNet.xml",
  3600. "lib/netstandard1.3/Renci.SshNet.dll",
  3601. "lib/netstandard1.3/Renci.SshNet.xml",
  3602. "lib/sl4/Renci.SshNet.dll",
  3603. "lib/sl4/Renci.SshNet.xml",
  3604. "lib/sl5/Renci.SshNet.dll",
  3605. "lib/sl5/Renci.SshNet.xml",
  3606. "lib/uap10/Renci.SshNet.dll",
  3607. "lib/uap10/Renci.SshNet.xml",
  3608. "lib/wp71/Renci.SshNet.dll",
  3609. "lib/wp71/Renci.SshNet.xml",
  3610. "lib/wp8/Renci.SshNet.dll",
  3611. "lib/wp8/Renci.SshNet.xml",
  3612. "ssh.net.2016.1.0.nupkg.sha512",
  3613. "ssh.net.nuspec"
  3614. ]
  3615. },
  3616. "SshNet.Security.Cryptography/1.2.0": {
  3617. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  3618. "type": "package",
  3619. "path": "sshnet.security.cryptography/1.2.0",
  3620. "files": [
  3621. ".nupkg.metadata",
  3622. ".signature.p7s",
  3623. "lib/net20/SshNet.Security.Cryptography.dll",
  3624. "lib/net20/SshNet.Security.Cryptography.xml",
  3625. "lib/net40/SshNet.Security.Cryptography.dll",
  3626. "lib/net40/SshNet.Security.Cryptography.xml",
  3627. "lib/net45/SshNet.Security.Cryptography.dll",
  3628. "lib/net45/SshNet.Security.Cryptography.xml",
  3629. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  3630. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  3631. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  3632. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  3633. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  3634. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  3635. "lib/sl4/SshNet.Security.Cryptography.dll",
  3636. "lib/sl4/SshNet.Security.Cryptography.xml",
  3637. "lib/sl5/SshNet.Security.Cryptography.dll",
  3638. "lib/sl5/SshNet.Security.Cryptography.xml",
  3639. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  3640. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  3641. "lib/wp71/SshNet.Security.Cryptography.dll",
  3642. "lib/wp71/SshNet.Security.Cryptography.xml",
  3643. "lib/wp8/SshNet.Security.Cryptography.dll",
  3644. "lib/wp8/SshNet.Security.Cryptography.xml",
  3645. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3646. "sshnet.security.cryptography.nuspec"
  3647. ]
  3648. },
  3649. "System.AppContext/4.3.0": {
  3650. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  3651. "type": "package",
  3652. "path": "system.appcontext/4.3.0",
  3653. "files": [
  3654. ".nupkg.metadata",
  3655. ".signature.p7s",
  3656. "ThirdPartyNotices.txt",
  3657. "dotnet_library_license.txt",
  3658. "lib/MonoAndroid10/_._",
  3659. "lib/MonoTouch10/_._",
  3660. "lib/net46/System.AppContext.dll",
  3661. "lib/net463/System.AppContext.dll",
  3662. "lib/netcore50/System.AppContext.dll",
  3663. "lib/netstandard1.6/System.AppContext.dll",
  3664. "lib/xamarinios10/_._",
  3665. "lib/xamarinmac20/_._",
  3666. "lib/xamarintvos10/_._",
  3667. "lib/xamarinwatchos10/_._",
  3668. "ref/MonoAndroid10/_._",
  3669. "ref/MonoTouch10/_._",
  3670. "ref/net46/System.AppContext.dll",
  3671. "ref/net463/System.AppContext.dll",
  3672. "ref/netstandard/_._",
  3673. "ref/netstandard1.3/System.AppContext.dll",
  3674. "ref/netstandard1.3/System.AppContext.xml",
  3675. "ref/netstandard1.3/de/System.AppContext.xml",
  3676. "ref/netstandard1.3/es/System.AppContext.xml",
  3677. "ref/netstandard1.3/fr/System.AppContext.xml",
  3678. "ref/netstandard1.3/it/System.AppContext.xml",
  3679. "ref/netstandard1.3/ja/System.AppContext.xml",
  3680. "ref/netstandard1.3/ko/System.AppContext.xml",
  3681. "ref/netstandard1.3/ru/System.AppContext.xml",
  3682. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3683. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3684. "ref/netstandard1.6/System.AppContext.dll",
  3685. "ref/netstandard1.6/System.AppContext.xml",
  3686. "ref/netstandard1.6/de/System.AppContext.xml",
  3687. "ref/netstandard1.6/es/System.AppContext.xml",
  3688. "ref/netstandard1.6/fr/System.AppContext.xml",
  3689. "ref/netstandard1.6/it/System.AppContext.xml",
  3690. "ref/netstandard1.6/ja/System.AppContext.xml",
  3691. "ref/netstandard1.6/ko/System.AppContext.xml",
  3692. "ref/netstandard1.6/ru/System.AppContext.xml",
  3693. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3694. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3695. "ref/xamarinios10/_._",
  3696. "ref/xamarinmac20/_._",
  3697. "ref/xamarintvos10/_._",
  3698. "ref/xamarinwatchos10/_._",
  3699. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3700. "system.appcontext.4.3.0.nupkg.sha512",
  3701. "system.appcontext.nuspec"
  3702. ]
  3703. },
  3704. "System.Buffers/4.5.0": {
  3705. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  3706. "type": "package",
  3707. "path": "system.buffers/4.5.0",
  3708. "files": [
  3709. ".nupkg.metadata",
  3710. ".signature.p7s",
  3711. "LICENSE.TXT",
  3712. "THIRD-PARTY-NOTICES.TXT",
  3713. "lib/netcoreapp2.0/_._",
  3714. "lib/netstandard1.1/System.Buffers.dll",
  3715. "lib/netstandard1.1/System.Buffers.xml",
  3716. "lib/netstandard2.0/System.Buffers.dll",
  3717. "lib/netstandard2.0/System.Buffers.xml",
  3718. "lib/uap10.0.16299/_._",
  3719. "ref/net45/System.Buffers.dll",
  3720. "ref/net45/System.Buffers.xml",
  3721. "ref/netcoreapp2.0/_._",
  3722. "ref/netstandard1.1/System.Buffers.dll",
  3723. "ref/netstandard1.1/System.Buffers.xml",
  3724. "ref/netstandard2.0/System.Buffers.dll",
  3725. "ref/netstandard2.0/System.Buffers.xml",
  3726. "ref/uap10.0.16299/_._",
  3727. "system.buffers.4.5.0.nupkg.sha512",
  3728. "system.buffers.nuspec",
  3729. "useSharedDesignerContext.txt",
  3730. "version.txt"
  3731. ]
  3732. },
  3733. "System.Collections/4.3.0": {
  3734. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3735. "type": "package",
  3736. "path": "system.collections/4.3.0",
  3737. "files": [
  3738. ".nupkg.metadata",
  3739. ".signature.p7s",
  3740. "ThirdPartyNotices.txt",
  3741. "dotnet_library_license.txt",
  3742. "lib/MonoAndroid10/_._",
  3743. "lib/MonoTouch10/_._",
  3744. "lib/net45/_._",
  3745. "lib/portable-net45+win8+wp8+wpa81/_._",
  3746. "lib/win8/_._",
  3747. "lib/wp80/_._",
  3748. "lib/wpa81/_._",
  3749. "lib/xamarinios10/_._",
  3750. "lib/xamarinmac20/_._",
  3751. "lib/xamarintvos10/_._",
  3752. "lib/xamarinwatchos10/_._",
  3753. "ref/MonoAndroid10/_._",
  3754. "ref/MonoTouch10/_._",
  3755. "ref/net45/_._",
  3756. "ref/netcore50/System.Collections.dll",
  3757. "ref/netcore50/System.Collections.xml",
  3758. "ref/netcore50/de/System.Collections.xml",
  3759. "ref/netcore50/es/System.Collections.xml",
  3760. "ref/netcore50/fr/System.Collections.xml",
  3761. "ref/netcore50/it/System.Collections.xml",
  3762. "ref/netcore50/ja/System.Collections.xml",
  3763. "ref/netcore50/ko/System.Collections.xml",
  3764. "ref/netcore50/ru/System.Collections.xml",
  3765. "ref/netcore50/zh-hans/System.Collections.xml",
  3766. "ref/netcore50/zh-hant/System.Collections.xml",
  3767. "ref/netstandard1.0/System.Collections.dll",
  3768. "ref/netstandard1.0/System.Collections.xml",
  3769. "ref/netstandard1.0/de/System.Collections.xml",
  3770. "ref/netstandard1.0/es/System.Collections.xml",
  3771. "ref/netstandard1.0/fr/System.Collections.xml",
  3772. "ref/netstandard1.0/it/System.Collections.xml",
  3773. "ref/netstandard1.0/ja/System.Collections.xml",
  3774. "ref/netstandard1.0/ko/System.Collections.xml",
  3775. "ref/netstandard1.0/ru/System.Collections.xml",
  3776. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3777. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3778. "ref/netstandard1.3/System.Collections.dll",
  3779. "ref/netstandard1.3/System.Collections.xml",
  3780. "ref/netstandard1.3/de/System.Collections.xml",
  3781. "ref/netstandard1.3/es/System.Collections.xml",
  3782. "ref/netstandard1.3/fr/System.Collections.xml",
  3783. "ref/netstandard1.3/it/System.Collections.xml",
  3784. "ref/netstandard1.3/ja/System.Collections.xml",
  3785. "ref/netstandard1.3/ko/System.Collections.xml",
  3786. "ref/netstandard1.3/ru/System.Collections.xml",
  3787. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3788. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3789. "ref/portable-net45+win8+wp8+wpa81/_._",
  3790. "ref/win8/_._",
  3791. "ref/wp80/_._",
  3792. "ref/wpa81/_._",
  3793. "ref/xamarinios10/_._",
  3794. "ref/xamarinmac20/_._",
  3795. "ref/xamarintvos10/_._",
  3796. "ref/xamarinwatchos10/_._",
  3797. "system.collections.4.3.0.nupkg.sha512",
  3798. "system.collections.nuspec"
  3799. ]
  3800. },
  3801. "System.Collections.Concurrent/4.3.0": {
  3802. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3803. "type": "package",
  3804. "path": "system.collections.concurrent/4.3.0",
  3805. "files": [
  3806. ".nupkg.metadata",
  3807. ".signature.p7s",
  3808. "ThirdPartyNotices.txt",
  3809. "dotnet_library_license.txt",
  3810. "lib/MonoAndroid10/_._",
  3811. "lib/MonoTouch10/_._",
  3812. "lib/net45/_._",
  3813. "lib/netcore50/System.Collections.Concurrent.dll",
  3814. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3815. "lib/portable-net45+win8+wpa81/_._",
  3816. "lib/win8/_._",
  3817. "lib/wpa81/_._",
  3818. "lib/xamarinios10/_._",
  3819. "lib/xamarinmac20/_._",
  3820. "lib/xamarintvos10/_._",
  3821. "lib/xamarinwatchos10/_._",
  3822. "ref/MonoAndroid10/_._",
  3823. "ref/MonoTouch10/_._",
  3824. "ref/net45/_._",
  3825. "ref/netcore50/System.Collections.Concurrent.dll",
  3826. "ref/netcore50/System.Collections.Concurrent.xml",
  3827. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3828. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3829. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3830. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3831. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3832. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3833. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3834. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3835. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3836. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3837. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3838. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3839. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3840. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3841. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3842. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3843. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3844. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3845. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3846. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3847. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3848. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3849. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3850. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3851. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3852. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3853. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3854. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3855. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3856. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3857. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3858. "ref/portable-net45+win8+wpa81/_._",
  3859. "ref/win8/_._",
  3860. "ref/wpa81/_._",
  3861. "ref/xamarinios10/_._",
  3862. "ref/xamarinmac20/_._",
  3863. "ref/xamarintvos10/_._",
  3864. "ref/xamarinwatchos10/_._",
  3865. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3866. "system.collections.concurrent.nuspec"
  3867. ]
  3868. },
  3869. "System.Collections.Immutable/1.7.0": {
  3870. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  3871. "type": "package",
  3872. "path": "system.collections.immutable/1.7.0",
  3873. "files": [
  3874. ".nupkg.metadata",
  3875. ".signature.p7s",
  3876. "LICENSE.TXT",
  3877. "THIRD-PARTY-NOTICES.TXT",
  3878. "lib/netstandard1.0/System.Collections.Immutable.dll",
  3879. "lib/netstandard1.0/System.Collections.Immutable.xml",
  3880. "lib/netstandard1.3/System.Collections.Immutable.dll",
  3881. "lib/netstandard1.3/System.Collections.Immutable.xml",
  3882. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3883. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3884. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  3885. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  3886. "system.collections.immutable.1.7.0.nupkg.sha512",
  3887. "system.collections.immutable.nuspec",
  3888. "useSharedDesignerContext.txt",
  3889. "version.txt"
  3890. ]
  3891. },
  3892. "System.Collections.NonGeneric/4.3.0": {
  3893. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  3894. "type": "package",
  3895. "path": "system.collections.nongeneric/4.3.0",
  3896. "files": [
  3897. ".nupkg.metadata",
  3898. ".signature.p7s",
  3899. "ThirdPartyNotices.txt",
  3900. "dotnet_library_license.txt",
  3901. "lib/MonoAndroid10/_._",
  3902. "lib/MonoTouch10/_._",
  3903. "lib/net46/System.Collections.NonGeneric.dll",
  3904. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  3905. "lib/xamarinios10/_._",
  3906. "lib/xamarinmac20/_._",
  3907. "lib/xamarintvos10/_._",
  3908. "lib/xamarinwatchos10/_._",
  3909. "ref/MonoAndroid10/_._",
  3910. "ref/MonoTouch10/_._",
  3911. "ref/net46/System.Collections.NonGeneric.dll",
  3912. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  3913. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  3914. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  3915. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  3916. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  3917. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  3918. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  3919. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  3920. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  3921. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  3922. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  3923. "ref/xamarinios10/_._",
  3924. "ref/xamarinmac20/_._",
  3925. "ref/xamarintvos10/_._",
  3926. "ref/xamarinwatchos10/_._",
  3927. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  3928. "system.collections.nongeneric.nuspec"
  3929. ]
  3930. },
  3931. "System.Collections.Specialized/4.3.0": {
  3932. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  3933. "type": "package",
  3934. "path": "system.collections.specialized/4.3.0",
  3935. "files": [
  3936. ".nupkg.metadata",
  3937. ".signature.p7s",
  3938. "ThirdPartyNotices.txt",
  3939. "dotnet_library_license.txt",
  3940. "lib/MonoAndroid10/_._",
  3941. "lib/MonoTouch10/_._",
  3942. "lib/net46/System.Collections.Specialized.dll",
  3943. "lib/netstandard1.3/System.Collections.Specialized.dll",
  3944. "lib/xamarinios10/_._",
  3945. "lib/xamarinmac20/_._",
  3946. "lib/xamarintvos10/_._",
  3947. "lib/xamarinwatchos10/_._",
  3948. "ref/MonoAndroid10/_._",
  3949. "ref/MonoTouch10/_._",
  3950. "ref/net46/System.Collections.Specialized.dll",
  3951. "ref/netstandard1.3/System.Collections.Specialized.dll",
  3952. "ref/netstandard1.3/System.Collections.Specialized.xml",
  3953. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  3954. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  3955. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  3956. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  3957. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  3958. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  3959. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  3960. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  3961. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  3962. "ref/xamarinios10/_._",
  3963. "ref/xamarinmac20/_._",
  3964. "ref/xamarintvos10/_._",
  3965. "ref/xamarinwatchos10/_._",
  3966. "system.collections.specialized.4.3.0.nupkg.sha512",
  3967. "system.collections.specialized.nuspec"
  3968. ]
  3969. },
  3970. "System.ComponentModel/4.3.0": {
  3971. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  3972. "type": "package",
  3973. "path": "system.componentmodel/4.3.0",
  3974. "files": [
  3975. ".nupkg.metadata",
  3976. ".signature.p7s",
  3977. "ThirdPartyNotices.txt",
  3978. "dotnet_library_license.txt",
  3979. "lib/MonoAndroid10/_._",
  3980. "lib/MonoTouch10/_._",
  3981. "lib/net45/_._",
  3982. "lib/netcore50/System.ComponentModel.dll",
  3983. "lib/netstandard1.3/System.ComponentModel.dll",
  3984. "lib/portable-net45+win8+wp8+wpa81/_._",
  3985. "lib/win8/_._",
  3986. "lib/wp80/_._",
  3987. "lib/wpa81/_._",
  3988. "lib/xamarinios10/_._",
  3989. "lib/xamarinmac20/_._",
  3990. "lib/xamarintvos10/_._",
  3991. "lib/xamarinwatchos10/_._",
  3992. "ref/MonoAndroid10/_._",
  3993. "ref/MonoTouch10/_._",
  3994. "ref/net45/_._",
  3995. "ref/netcore50/System.ComponentModel.dll",
  3996. "ref/netcore50/System.ComponentModel.xml",
  3997. "ref/netcore50/de/System.ComponentModel.xml",
  3998. "ref/netcore50/es/System.ComponentModel.xml",
  3999. "ref/netcore50/fr/System.ComponentModel.xml",
  4000. "ref/netcore50/it/System.ComponentModel.xml",
  4001. "ref/netcore50/ja/System.ComponentModel.xml",
  4002. "ref/netcore50/ko/System.ComponentModel.xml",
  4003. "ref/netcore50/ru/System.ComponentModel.xml",
  4004. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4005. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4006. "ref/netstandard1.0/System.ComponentModel.dll",
  4007. "ref/netstandard1.0/System.ComponentModel.xml",
  4008. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4009. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4010. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4011. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4012. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4013. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4014. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4015. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4016. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4017. "ref/portable-net45+win8+wp8+wpa81/_._",
  4018. "ref/win8/_._",
  4019. "ref/wp80/_._",
  4020. "ref/wpa81/_._",
  4021. "ref/xamarinios10/_._",
  4022. "ref/xamarinmac20/_._",
  4023. "ref/xamarintvos10/_._",
  4024. "ref/xamarinwatchos10/_._",
  4025. "system.componentmodel.4.3.0.nupkg.sha512",
  4026. "system.componentmodel.nuspec"
  4027. ]
  4028. },
  4029. "System.ComponentModel.Annotations/4.7.0": {
  4030. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  4031. "type": "package",
  4032. "path": "system.componentmodel.annotations/4.7.0",
  4033. "files": [
  4034. ".nupkg.metadata",
  4035. ".signature.p7s",
  4036. "LICENSE.TXT",
  4037. "THIRD-PARTY-NOTICES.TXT",
  4038. "lib/MonoAndroid10/_._",
  4039. "lib/MonoTouch10/_._",
  4040. "lib/net45/_._",
  4041. "lib/net461/System.ComponentModel.Annotations.dll",
  4042. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4043. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4044. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4045. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4046. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4047. "lib/portable-net45+win8/_._",
  4048. "lib/win8/_._",
  4049. "lib/xamarinios10/_._",
  4050. "lib/xamarinmac20/_._",
  4051. "lib/xamarintvos10/_._",
  4052. "lib/xamarinwatchos10/_._",
  4053. "ref/MonoAndroid10/_._",
  4054. "ref/MonoTouch10/_._",
  4055. "ref/net45/_._",
  4056. "ref/net461/System.ComponentModel.Annotations.dll",
  4057. "ref/net461/System.ComponentModel.Annotations.xml",
  4058. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4059. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4060. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4061. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4062. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4063. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4064. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4065. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4066. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4067. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4068. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4069. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4070. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4071. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4072. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4073. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4074. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4075. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4076. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4077. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4078. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4079. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4080. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4081. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4082. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4083. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4084. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4085. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4086. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4087. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4088. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4089. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4090. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4091. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4092. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4093. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4094. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4095. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4096. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4097. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4098. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4099. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4100. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4101. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4102. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4103. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4104. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4105. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4106. "ref/portable-net45+win8/_._",
  4107. "ref/win8/_._",
  4108. "ref/xamarinios10/_._",
  4109. "ref/xamarinmac20/_._",
  4110. "ref/xamarintvos10/_._",
  4111. "ref/xamarinwatchos10/_._",
  4112. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  4113. "system.componentmodel.annotations.nuspec",
  4114. "useSharedDesignerContext.txt",
  4115. "version.txt"
  4116. ]
  4117. },
  4118. "System.ComponentModel.Primitives/4.3.0": {
  4119. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4120. "type": "package",
  4121. "path": "system.componentmodel.primitives/4.3.0",
  4122. "files": [
  4123. ".nupkg.metadata",
  4124. ".signature.p7s",
  4125. "ThirdPartyNotices.txt",
  4126. "dotnet_library_license.txt",
  4127. "lib/MonoAndroid10/_._",
  4128. "lib/MonoTouch10/_._",
  4129. "lib/net45/System.ComponentModel.Primitives.dll",
  4130. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4131. "lib/xamarinios10/_._",
  4132. "lib/xamarinmac20/_._",
  4133. "lib/xamarintvos10/_._",
  4134. "lib/xamarinwatchos10/_._",
  4135. "ref/MonoAndroid10/_._",
  4136. "ref/MonoTouch10/_._",
  4137. "ref/net45/System.ComponentModel.Primitives.dll",
  4138. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4139. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4140. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4141. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4142. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4143. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4144. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4145. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4146. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4147. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4148. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4149. "ref/xamarinios10/_._",
  4150. "ref/xamarinmac20/_._",
  4151. "ref/xamarintvos10/_._",
  4152. "ref/xamarinwatchos10/_._",
  4153. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4154. "system.componentmodel.primitives.nuspec"
  4155. ]
  4156. },
  4157. "System.ComponentModel.TypeConverter/4.3.0": {
  4158. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4159. "type": "package",
  4160. "path": "system.componentmodel.typeconverter/4.3.0",
  4161. "files": [
  4162. ".nupkg.metadata",
  4163. ".signature.p7s",
  4164. "ThirdPartyNotices.txt",
  4165. "dotnet_library_license.txt",
  4166. "lib/MonoAndroid10/_._",
  4167. "lib/MonoTouch10/_._",
  4168. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4169. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4170. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4171. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4172. "lib/xamarinios10/_._",
  4173. "lib/xamarinmac20/_._",
  4174. "lib/xamarintvos10/_._",
  4175. "lib/xamarinwatchos10/_._",
  4176. "ref/MonoAndroid10/_._",
  4177. "ref/MonoTouch10/_._",
  4178. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4179. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4180. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4181. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4182. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4183. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4184. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4185. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4186. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4187. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4188. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4189. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4190. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4191. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4192. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4193. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4194. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4195. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4196. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4197. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4198. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4199. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4200. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4201. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4202. "ref/xamarinios10/_._",
  4203. "ref/xamarinmac20/_._",
  4204. "ref/xamarintvos10/_._",
  4205. "ref/xamarinwatchos10/_._",
  4206. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4207. "system.componentmodel.typeconverter.nuspec"
  4208. ]
  4209. },
  4210. "System.Configuration.ConfigurationManager/4.4.1": {
  4211. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  4212. "type": "package",
  4213. "path": "system.configuration.configurationmanager/4.4.1",
  4214. "files": [
  4215. ".nupkg.metadata",
  4216. ".signature.p7s",
  4217. "LICENSE.TXT",
  4218. "THIRD-PARTY-NOTICES.TXT",
  4219. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4220. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4221. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4222. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4223. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4224. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4225. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  4226. "system.configuration.configurationmanager.nuspec",
  4227. "useSharedDesignerContext.txt",
  4228. "version.txt"
  4229. ]
  4230. },
  4231. "System.Console/4.3.0": {
  4232. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4233. "type": "package",
  4234. "path": "system.console/4.3.0",
  4235. "files": [
  4236. ".nupkg.metadata",
  4237. ".signature.p7s",
  4238. "ThirdPartyNotices.txt",
  4239. "dotnet_library_license.txt",
  4240. "lib/MonoAndroid10/_._",
  4241. "lib/MonoTouch10/_._",
  4242. "lib/net46/System.Console.dll",
  4243. "lib/xamarinios10/_._",
  4244. "lib/xamarinmac20/_._",
  4245. "lib/xamarintvos10/_._",
  4246. "lib/xamarinwatchos10/_._",
  4247. "ref/MonoAndroid10/_._",
  4248. "ref/MonoTouch10/_._",
  4249. "ref/net46/System.Console.dll",
  4250. "ref/netstandard1.3/System.Console.dll",
  4251. "ref/netstandard1.3/System.Console.xml",
  4252. "ref/netstandard1.3/de/System.Console.xml",
  4253. "ref/netstandard1.3/es/System.Console.xml",
  4254. "ref/netstandard1.3/fr/System.Console.xml",
  4255. "ref/netstandard1.3/it/System.Console.xml",
  4256. "ref/netstandard1.3/ja/System.Console.xml",
  4257. "ref/netstandard1.3/ko/System.Console.xml",
  4258. "ref/netstandard1.3/ru/System.Console.xml",
  4259. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4260. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4261. "ref/xamarinios10/_._",
  4262. "ref/xamarinmac20/_._",
  4263. "ref/xamarintvos10/_._",
  4264. "ref/xamarinwatchos10/_._",
  4265. "system.console.4.3.0.nupkg.sha512",
  4266. "system.console.nuspec"
  4267. ]
  4268. },
  4269. "System.Diagnostics.Contracts/4.0.1": {
  4270. "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
  4271. "type": "package",
  4272. "path": "system.diagnostics.contracts/4.0.1",
  4273. "files": [
  4274. ".nupkg.metadata",
  4275. ".signature.p7s",
  4276. "ThirdPartyNotices.txt",
  4277. "dotnet_library_license.txt",
  4278. "lib/MonoAndroid10/_._",
  4279. "lib/MonoTouch10/_._",
  4280. "lib/net45/_._",
  4281. "lib/netcore50/System.Diagnostics.Contracts.dll",
  4282. "lib/netstandard1.0/System.Diagnostics.Contracts.dll",
  4283. "lib/portable-net45+win8+wp8+wpa81/_._",
  4284. "lib/win8/_._",
  4285. "lib/wp80/_._",
  4286. "lib/wpa81/_._",
  4287. "lib/xamarinios10/_._",
  4288. "lib/xamarinmac20/_._",
  4289. "lib/xamarintvos10/_._",
  4290. "lib/xamarinwatchos10/_._",
  4291. "ref/MonoAndroid10/_._",
  4292. "ref/MonoTouch10/_._",
  4293. "ref/net45/_._",
  4294. "ref/netcore50/System.Diagnostics.Contracts.dll",
  4295. "ref/netcore50/System.Diagnostics.Contracts.xml",
  4296. "ref/netcore50/de/System.Diagnostics.Contracts.xml",
  4297. "ref/netcore50/es/System.Diagnostics.Contracts.xml",
  4298. "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
  4299. "ref/netcore50/it/System.Diagnostics.Contracts.xml",
  4300. "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
  4301. "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
  4302. "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
  4303. "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
  4304. "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
  4305. "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
  4306. "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
  4307. "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
  4308. "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
  4309. "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
  4310. "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
  4311. "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
  4312. "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
  4313. "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
  4314. "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
  4315. "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
  4316. "ref/portable-net45+win8+wp8+wpa81/_._",
  4317. "ref/win8/_._",
  4318. "ref/wp80/_._",
  4319. "ref/wpa81/_._",
  4320. "ref/xamarinios10/_._",
  4321. "ref/xamarinmac20/_._",
  4322. "ref/xamarintvos10/_._",
  4323. "ref/xamarinwatchos10/_._",
  4324. "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll",
  4325. "system.diagnostics.contracts.4.0.1.nupkg.sha512",
  4326. "system.diagnostics.contracts.nuspec"
  4327. ]
  4328. },
  4329. "System.Diagnostics.Debug/4.3.0": {
  4330. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4331. "type": "package",
  4332. "path": "system.diagnostics.debug/4.3.0",
  4333. "files": [
  4334. ".nupkg.metadata",
  4335. ".signature.p7s",
  4336. "ThirdPartyNotices.txt",
  4337. "dotnet_library_license.txt",
  4338. "lib/MonoAndroid10/_._",
  4339. "lib/MonoTouch10/_._",
  4340. "lib/net45/_._",
  4341. "lib/portable-net45+win8+wp8+wpa81/_._",
  4342. "lib/win8/_._",
  4343. "lib/wp80/_._",
  4344. "lib/wpa81/_._",
  4345. "lib/xamarinios10/_._",
  4346. "lib/xamarinmac20/_._",
  4347. "lib/xamarintvos10/_._",
  4348. "lib/xamarinwatchos10/_._",
  4349. "ref/MonoAndroid10/_._",
  4350. "ref/MonoTouch10/_._",
  4351. "ref/net45/_._",
  4352. "ref/netcore50/System.Diagnostics.Debug.dll",
  4353. "ref/netcore50/System.Diagnostics.Debug.xml",
  4354. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4355. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4356. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4357. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4358. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4359. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4360. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4361. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4362. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4363. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4364. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4365. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4366. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4367. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4368. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4369. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4370. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4371. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4372. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4373. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4374. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4375. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4376. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4377. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4378. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4379. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4380. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4381. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4382. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4383. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4384. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4385. "ref/portable-net45+win8+wp8+wpa81/_._",
  4386. "ref/win8/_._",
  4387. "ref/wp80/_._",
  4388. "ref/wpa81/_._",
  4389. "ref/xamarinios10/_._",
  4390. "ref/xamarinmac20/_._",
  4391. "ref/xamarintvos10/_._",
  4392. "ref/xamarinwatchos10/_._",
  4393. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4394. "system.diagnostics.debug.nuspec"
  4395. ]
  4396. },
  4397. "System.Diagnostics.DiagnosticSource/4.7.0": {
  4398. "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
  4399. "type": "package",
  4400. "path": "system.diagnostics.diagnosticsource/4.7.0",
  4401. "files": [
  4402. ".nupkg.metadata",
  4403. ".signature.p7s",
  4404. "LICENSE.TXT",
  4405. "THIRD-PARTY-NOTICES.TXT",
  4406. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4407. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4408. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4409. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4410. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4411. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4412. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4413. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4414. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4415. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4416. "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
  4417. "system.diagnostics.diagnosticsource.nuspec",
  4418. "useSharedDesignerContext.txt",
  4419. "version.txt"
  4420. ]
  4421. },
  4422. "System.Diagnostics.Tools/4.3.0": {
  4423. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4424. "type": "package",
  4425. "path": "system.diagnostics.tools/4.3.0",
  4426. "files": [
  4427. ".nupkg.metadata",
  4428. ".signature.p7s",
  4429. "ThirdPartyNotices.txt",
  4430. "dotnet_library_license.txt",
  4431. "lib/MonoAndroid10/_._",
  4432. "lib/MonoTouch10/_._",
  4433. "lib/net45/_._",
  4434. "lib/portable-net45+win8+wp8+wpa81/_._",
  4435. "lib/win8/_._",
  4436. "lib/wp80/_._",
  4437. "lib/wpa81/_._",
  4438. "lib/xamarinios10/_._",
  4439. "lib/xamarinmac20/_._",
  4440. "lib/xamarintvos10/_._",
  4441. "lib/xamarinwatchos10/_._",
  4442. "ref/MonoAndroid10/_._",
  4443. "ref/MonoTouch10/_._",
  4444. "ref/net45/_._",
  4445. "ref/netcore50/System.Diagnostics.Tools.dll",
  4446. "ref/netcore50/System.Diagnostics.Tools.xml",
  4447. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4448. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4449. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4450. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4451. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4452. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4453. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4454. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4455. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4456. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4457. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4458. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4459. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4460. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4461. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4462. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4463. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4464. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4465. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4466. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4467. "ref/portable-net45+win8+wp8+wpa81/_._",
  4468. "ref/win8/_._",
  4469. "ref/wp80/_._",
  4470. "ref/wpa81/_._",
  4471. "ref/xamarinios10/_._",
  4472. "ref/xamarinmac20/_._",
  4473. "ref/xamarintvos10/_._",
  4474. "ref/xamarinwatchos10/_._",
  4475. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  4476. "system.diagnostics.tools.nuspec"
  4477. ]
  4478. },
  4479. "System.Diagnostics.TraceSource/4.0.0": {
  4480. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  4481. "type": "package",
  4482. "path": "system.diagnostics.tracesource/4.0.0",
  4483. "files": [
  4484. ".nupkg.metadata",
  4485. ".signature.p7s",
  4486. "ThirdPartyNotices.txt",
  4487. "dotnet_library_license.txt",
  4488. "lib/MonoAndroid10/_._",
  4489. "lib/MonoTouch10/_._",
  4490. "lib/net46/System.Diagnostics.TraceSource.dll",
  4491. "lib/xamarinios10/_._",
  4492. "lib/xamarinmac20/_._",
  4493. "lib/xamarintvos10/_._",
  4494. "lib/xamarinwatchos10/_._",
  4495. "ref/MonoAndroid10/_._",
  4496. "ref/MonoTouch10/_._",
  4497. "ref/net46/System.Diagnostics.TraceSource.dll",
  4498. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4499. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  4500. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  4501. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  4502. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  4503. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  4504. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  4505. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  4506. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  4507. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  4508. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  4509. "ref/xamarinios10/_._",
  4510. "ref/xamarinmac20/_._",
  4511. "ref/xamarintvos10/_._",
  4512. "ref/xamarinwatchos10/_._",
  4513. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4514. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  4515. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4516. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  4517. "system.diagnostics.tracesource.nuspec"
  4518. ]
  4519. },
  4520. "System.Diagnostics.Tracing/4.3.0": {
  4521. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4522. "type": "package",
  4523. "path": "system.diagnostics.tracing/4.3.0",
  4524. "files": [
  4525. ".nupkg.metadata",
  4526. ".signature.p7s",
  4527. "ThirdPartyNotices.txt",
  4528. "dotnet_library_license.txt",
  4529. "lib/MonoAndroid10/_._",
  4530. "lib/MonoTouch10/_._",
  4531. "lib/net45/_._",
  4532. "lib/net462/System.Diagnostics.Tracing.dll",
  4533. "lib/portable-net45+win8+wpa81/_._",
  4534. "lib/win8/_._",
  4535. "lib/wpa81/_._",
  4536. "lib/xamarinios10/_._",
  4537. "lib/xamarinmac20/_._",
  4538. "lib/xamarintvos10/_._",
  4539. "lib/xamarinwatchos10/_._",
  4540. "ref/MonoAndroid10/_._",
  4541. "ref/MonoTouch10/_._",
  4542. "ref/net45/_._",
  4543. "ref/net462/System.Diagnostics.Tracing.dll",
  4544. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4545. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4546. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4547. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4548. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4549. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4550. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4551. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4552. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4553. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4554. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4555. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4556. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4557. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4558. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4559. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4560. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4561. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4562. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4563. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4564. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4565. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4566. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4567. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4568. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4569. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4570. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4571. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4572. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4573. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4574. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4575. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4576. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4577. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4578. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4579. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4580. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4581. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4582. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4583. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4584. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4585. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4586. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4587. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4588. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4589. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4590. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4591. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4592. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4593. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4594. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4595. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4596. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4597. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4598. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4599. "ref/portable-net45+win8+wpa81/_._",
  4600. "ref/win8/_._",
  4601. "ref/wpa81/_._",
  4602. "ref/xamarinios10/_._",
  4603. "ref/xamarinmac20/_._",
  4604. "ref/xamarintvos10/_._",
  4605. "ref/xamarinwatchos10/_._",
  4606. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4607. "system.diagnostics.tracing.nuspec"
  4608. ]
  4609. },
  4610. "System.Drawing.Common/4.7.0": {
  4611. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4612. "type": "package",
  4613. "path": "system.drawing.common/4.7.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "LICENSE.TXT",
  4618. "THIRD-PARTY-NOTICES.TXT",
  4619. "lib/MonoAndroid10/_._",
  4620. "lib/MonoTouch10/_._",
  4621. "lib/net461/System.Drawing.Common.dll",
  4622. "lib/netstandard2.0/System.Drawing.Common.dll",
  4623. "lib/xamarinios10/_._",
  4624. "lib/xamarinmac20/_._",
  4625. "lib/xamarintvos10/_._",
  4626. "lib/xamarinwatchos10/_._",
  4627. "ref/MonoAndroid10/_._",
  4628. "ref/MonoTouch10/_._",
  4629. "ref/net461/System.Drawing.Common.dll",
  4630. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4631. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4632. "ref/netstandard2.0/System.Drawing.Common.dll",
  4633. "ref/xamarinios10/_._",
  4634. "ref/xamarinmac20/_._",
  4635. "ref/xamarintvos10/_._",
  4636. "ref/xamarinwatchos10/_._",
  4637. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4638. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4639. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4640. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4641. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4642. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4643. "system.drawing.common.4.7.0.nupkg.sha512",
  4644. "system.drawing.common.nuspec",
  4645. "useSharedDesignerContext.txt",
  4646. "version.txt"
  4647. ]
  4648. },
  4649. "System.Dynamic.Runtime/4.0.11": {
  4650. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  4651. "type": "package",
  4652. "path": "system.dynamic.runtime/4.0.11",
  4653. "files": [
  4654. ".nupkg.metadata",
  4655. ".signature.p7s",
  4656. "ThirdPartyNotices.txt",
  4657. "dotnet_library_license.txt",
  4658. "lib/MonoAndroid10/_._",
  4659. "lib/MonoTouch10/_._",
  4660. "lib/net45/_._",
  4661. "lib/netcore50/System.Dynamic.Runtime.dll",
  4662. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  4663. "lib/portable-net45+win8+wp8+wpa81/_._",
  4664. "lib/win8/_._",
  4665. "lib/wp80/_._",
  4666. "lib/wpa81/_._",
  4667. "lib/xamarinios10/_._",
  4668. "lib/xamarinmac20/_._",
  4669. "lib/xamarintvos10/_._",
  4670. "lib/xamarinwatchos10/_._",
  4671. "ref/MonoAndroid10/_._",
  4672. "ref/MonoTouch10/_._",
  4673. "ref/net45/_._",
  4674. "ref/netcore50/System.Dynamic.Runtime.dll",
  4675. "ref/netcore50/System.Dynamic.Runtime.xml",
  4676. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  4677. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  4678. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  4679. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  4680. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  4681. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  4682. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  4683. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  4684. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  4685. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  4686. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  4687. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  4688. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  4689. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  4690. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  4691. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  4692. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  4693. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  4694. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  4695. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  4696. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  4697. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  4698. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  4699. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  4700. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  4701. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  4702. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  4703. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  4704. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  4705. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  4706. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  4707. "ref/portable-net45+win8+wp8+wpa81/_._",
  4708. "ref/win8/_._",
  4709. "ref/wp80/_._",
  4710. "ref/wpa81/_._",
  4711. "ref/xamarinios10/_._",
  4712. "ref/xamarinmac20/_._",
  4713. "ref/xamarintvos10/_._",
  4714. "ref/xamarinwatchos10/_._",
  4715. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  4716. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  4717. "system.dynamic.runtime.nuspec"
  4718. ]
  4719. },
  4720. "System.Globalization/4.3.0": {
  4721. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4722. "type": "package",
  4723. "path": "system.globalization/4.3.0",
  4724. "files": [
  4725. ".nupkg.metadata",
  4726. ".signature.p7s",
  4727. "ThirdPartyNotices.txt",
  4728. "dotnet_library_license.txt",
  4729. "lib/MonoAndroid10/_._",
  4730. "lib/MonoTouch10/_._",
  4731. "lib/net45/_._",
  4732. "lib/portable-net45+win8+wp8+wpa81/_._",
  4733. "lib/win8/_._",
  4734. "lib/wp80/_._",
  4735. "lib/wpa81/_._",
  4736. "lib/xamarinios10/_._",
  4737. "lib/xamarinmac20/_._",
  4738. "lib/xamarintvos10/_._",
  4739. "lib/xamarinwatchos10/_._",
  4740. "ref/MonoAndroid10/_._",
  4741. "ref/MonoTouch10/_._",
  4742. "ref/net45/_._",
  4743. "ref/netcore50/System.Globalization.dll",
  4744. "ref/netcore50/System.Globalization.xml",
  4745. "ref/netcore50/de/System.Globalization.xml",
  4746. "ref/netcore50/es/System.Globalization.xml",
  4747. "ref/netcore50/fr/System.Globalization.xml",
  4748. "ref/netcore50/it/System.Globalization.xml",
  4749. "ref/netcore50/ja/System.Globalization.xml",
  4750. "ref/netcore50/ko/System.Globalization.xml",
  4751. "ref/netcore50/ru/System.Globalization.xml",
  4752. "ref/netcore50/zh-hans/System.Globalization.xml",
  4753. "ref/netcore50/zh-hant/System.Globalization.xml",
  4754. "ref/netstandard1.0/System.Globalization.dll",
  4755. "ref/netstandard1.0/System.Globalization.xml",
  4756. "ref/netstandard1.0/de/System.Globalization.xml",
  4757. "ref/netstandard1.0/es/System.Globalization.xml",
  4758. "ref/netstandard1.0/fr/System.Globalization.xml",
  4759. "ref/netstandard1.0/it/System.Globalization.xml",
  4760. "ref/netstandard1.0/ja/System.Globalization.xml",
  4761. "ref/netstandard1.0/ko/System.Globalization.xml",
  4762. "ref/netstandard1.0/ru/System.Globalization.xml",
  4763. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4764. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4765. "ref/netstandard1.3/System.Globalization.dll",
  4766. "ref/netstandard1.3/System.Globalization.xml",
  4767. "ref/netstandard1.3/de/System.Globalization.xml",
  4768. "ref/netstandard1.3/es/System.Globalization.xml",
  4769. "ref/netstandard1.3/fr/System.Globalization.xml",
  4770. "ref/netstandard1.3/it/System.Globalization.xml",
  4771. "ref/netstandard1.3/ja/System.Globalization.xml",
  4772. "ref/netstandard1.3/ko/System.Globalization.xml",
  4773. "ref/netstandard1.3/ru/System.Globalization.xml",
  4774. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4775. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4776. "ref/portable-net45+win8+wp8+wpa81/_._",
  4777. "ref/win8/_._",
  4778. "ref/wp80/_._",
  4779. "ref/wpa81/_._",
  4780. "ref/xamarinios10/_._",
  4781. "ref/xamarinmac20/_._",
  4782. "ref/xamarintvos10/_._",
  4783. "ref/xamarinwatchos10/_._",
  4784. "system.globalization.4.3.0.nupkg.sha512",
  4785. "system.globalization.nuspec"
  4786. ]
  4787. },
  4788. "System.Globalization.Calendars/4.3.0": {
  4789. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4790. "type": "package",
  4791. "path": "system.globalization.calendars/4.3.0",
  4792. "files": [
  4793. ".nupkg.metadata",
  4794. ".signature.p7s",
  4795. "ThirdPartyNotices.txt",
  4796. "dotnet_library_license.txt",
  4797. "lib/MonoAndroid10/_._",
  4798. "lib/MonoTouch10/_._",
  4799. "lib/net46/System.Globalization.Calendars.dll",
  4800. "lib/xamarinios10/_._",
  4801. "lib/xamarinmac20/_._",
  4802. "lib/xamarintvos10/_._",
  4803. "lib/xamarinwatchos10/_._",
  4804. "ref/MonoAndroid10/_._",
  4805. "ref/MonoTouch10/_._",
  4806. "ref/net46/System.Globalization.Calendars.dll",
  4807. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4808. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4809. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4810. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4811. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4812. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4813. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4814. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4815. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4816. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4817. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4818. "ref/xamarinios10/_._",
  4819. "ref/xamarinmac20/_._",
  4820. "ref/xamarintvos10/_._",
  4821. "ref/xamarinwatchos10/_._",
  4822. "system.globalization.calendars.4.3.0.nupkg.sha512",
  4823. "system.globalization.calendars.nuspec"
  4824. ]
  4825. },
  4826. "System.Globalization.Extensions/4.3.0": {
  4827. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4828. "type": "package",
  4829. "path": "system.globalization.extensions/4.3.0",
  4830. "files": [
  4831. ".nupkg.metadata",
  4832. ".signature.p7s",
  4833. "ThirdPartyNotices.txt",
  4834. "dotnet_library_license.txt",
  4835. "lib/MonoAndroid10/_._",
  4836. "lib/MonoTouch10/_._",
  4837. "lib/net46/System.Globalization.Extensions.dll",
  4838. "lib/xamarinios10/_._",
  4839. "lib/xamarinmac20/_._",
  4840. "lib/xamarintvos10/_._",
  4841. "lib/xamarinwatchos10/_._",
  4842. "ref/MonoAndroid10/_._",
  4843. "ref/MonoTouch10/_._",
  4844. "ref/net46/System.Globalization.Extensions.dll",
  4845. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4846. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4847. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4848. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4849. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4850. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4851. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4852. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4853. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4854. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4855. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4856. "ref/xamarinios10/_._",
  4857. "ref/xamarinmac20/_._",
  4858. "ref/xamarintvos10/_._",
  4859. "ref/xamarinwatchos10/_._",
  4860. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4861. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4862. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4863. "system.globalization.extensions.4.3.0.nupkg.sha512",
  4864. "system.globalization.extensions.nuspec"
  4865. ]
  4866. },
  4867. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  4868. "sha512": "xa8kptJ+uf9hzj366f3pLcs5HFZ6dQMDKzEGq/yZNF0s3mVfyIhuQwgDcTJlAU4AROne/6Z5+vITwrW3gVNKIA==",
  4869. "type": "package",
  4870. "path": "system.identitymodel.tokens.jwt/5.5.0",
  4871. "files": [
  4872. ".nupkg.metadata",
  4873. ".signature.p7s",
  4874. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4875. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4876. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  4877. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  4878. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4879. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4880. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  4881. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  4882. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4883. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4884. "system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512",
  4885. "system.identitymodel.tokens.jwt.nuspec"
  4886. ]
  4887. },
  4888. "System.IO/4.3.0": {
  4889. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4890. "type": "package",
  4891. "path": "system.io/4.3.0",
  4892. "files": [
  4893. ".nupkg.metadata",
  4894. ".signature.p7s",
  4895. "ThirdPartyNotices.txt",
  4896. "dotnet_library_license.txt",
  4897. "lib/MonoAndroid10/_._",
  4898. "lib/MonoTouch10/_._",
  4899. "lib/net45/_._",
  4900. "lib/net462/System.IO.dll",
  4901. "lib/portable-net45+win8+wp8+wpa81/_._",
  4902. "lib/win8/_._",
  4903. "lib/wp80/_._",
  4904. "lib/wpa81/_._",
  4905. "lib/xamarinios10/_._",
  4906. "lib/xamarinmac20/_._",
  4907. "lib/xamarintvos10/_._",
  4908. "lib/xamarinwatchos10/_._",
  4909. "ref/MonoAndroid10/_._",
  4910. "ref/MonoTouch10/_._",
  4911. "ref/net45/_._",
  4912. "ref/net462/System.IO.dll",
  4913. "ref/netcore50/System.IO.dll",
  4914. "ref/netcore50/System.IO.xml",
  4915. "ref/netcore50/de/System.IO.xml",
  4916. "ref/netcore50/es/System.IO.xml",
  4917. "ref/netcore50/fr/System.IO.xml",
  4918. "ref/netcore50/it/System.IO.xml",
  4919. "ref/netcore50/ja/System.IO.xml",
  4920. "ref/netcore50/ko/System.IO.xml",
  4921. "ref/netcore50/ru/System.IO.xml",
  4922. "ref/netcore50/zh-hans/System.IO.xml",
  4923. "ref/netcore50/zh-hant/System.IO.xml",
  4924. "ref/netstandard1.0/System.IO.dll",
  4925. "ref/netstandard1.0/System.IO.xml",
  4926. "ref/netstandard1.0/de/System.IO.xml",
  4927. "ref/netstandard1.0/es/System.IO.xml",
  4928. "ref/netstandard1.0/fr/System.IO.xml",
  4929. "ref/netstandard1.0/it/System.IO.xml",
  4930. "ref/netstandard1.0/ja/System.IO.xml",
  4931. "ref/netstandard1.0/ko/System.IO.xml",
  4932. "ref/netstandard1.0/ru/System.IO.xml",
  4933. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4934. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4935. "ref/netstandard1.3/System.IO.dll",
  4936. "ref/netstandard1.3/System.IO.xml",
  4937. "ref/netstandard1.3/de/System.IO.xml",
  4938. "ref/netstandard1.3/es/System.IO.xml",
  4939. "ref/netstandard1.3/fr/System.IO.xml",
  4940. "ref/netstandard1.3/it/System.IO.xml",
  4941. "ref/netstandard1.3/ja/System.IO.xml",
  4942. "ref/netstandard1.3/ko/System.IO.xml",
  4943. "ref/netstandard1.3/ru/System.IO.xml",
  4944. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4945. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4946. "ref/netstandard1.5/System.IO.dll",
  4947. "ref/netstandard1.5/System.IO.xml",
  4948. "ref/netstandard1.5/de/System.IO.xml",
  4949. "ref/netstandard1.5/es/System.IO.xml",
  4950. "ref/netstandard1.5/fr/System.IO.xml",
  4951. "ref/netstandard1.5/it/System.IO.xml",
  4952. "ref/netstandard1.5/ja/System.IO.xml",
  4953. "ref/netstandard1.5/ko/System.IO.xml",
  4954. "ref/netstandard1.5/ru/System.IO.xml",
  4955. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4956. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4957. "ref/portable-net45+win8+wp8+wpa81/_._",
  4958. "ref/win8/_._",
  4959. "ref/wp80/_._",
  4960. "ref/wpa81/_._",
  4961. "ref/xamarinios10/_._",
  4962. "ref/xamarinmac20/_._",
  4963. "ref/xamarintvos10/_._",
  4964. "ref/xamarinwatchos10/_._",
  4965. "system.io.4.3.0.nupkg.sha512",
  4966. "system.io.nuspec"
  4967. ]
  4968. },
  4969. "System.IO.Compression/4.3.0": {
  4970. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  4971. "type": "package",
  4972. "path": "system.io.compression/4.3.0",
  4973. "files": [
  4974. ".nupkg.metadata",
  4975. ".signature.p7s",
  4976. "ThirdPartyNotices.txt",
  4977. "dotnet_library_license.txt",
  4978. "lib/MonoAndroid10/_._",
  4979. "lib/MonoTouch10/_._",
  4980. "lib/net45/_._",
  4981. "lib/net46/System.IO.Compression.dll",
  4982. "lib/portable-net45+win8+wpa81/_._",
  4983. "lib/win8/_._",
  4984. "lib/wpa81/_._",
  4985. "lib/xamarinios10/_._",
  4986. "lib/xamarinmac20/_._",
  4987. "lib/xamarintvos10/_._",
  4988. "lib/xamarinwatchos10/_._",
  4989. "ref/MonoAndroid10/_._",
  4990. "ref/MonoTouch10/_._",
  4991. "ref/net45/_._",
  4992. "ref/net46/System.IO.Compression.dll",
  4993. "ref/netcore50/System.IO.Compression.dll",
  4994. "ref/netcore50/System.IO.Compression.xml",
  4995. "ref/netcore50/de/System.IO.Compression.xml",
  4996. "ref/netcore50/es/System.IO.Compression.xml",
  4997. "ref/netcore50/fr/System.IO.Compression.xml",
  4998. "ref/netcore50/it/System.IO.Compression.xml",
  4999. "ref/netcore50/ja/System.IO.Compression.xml",
  5000. "ref/netcore50/ko/System.IO.Compression.xml",
  5001. "ref/netcore50/ru/System.IO.Compression.xml",
  5002. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5003. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5004. "ref/netstandard1.1/System.IO.Compression.dll",
  5005. "ref/netstandard1.1/System.IO.Compression.xml",
  5006. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5007. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5008. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5009. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5010. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5011. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5012. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5013. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5014. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5015. "ref/netstandard1.3/System.IO.Compression.dll",
  5016. "ref/netstandard1.3/System.IO.Compression.xml",
  5017. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5018. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5019. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5020. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5021. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5022. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5023. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5024. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5025. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5026. "ref/portable-net45+win8+wpa81/_._",
  5027. "ref/win8/_._",
  5028. "ref/wpa81/_._",
  5029. "ref/xamarinios10/_._",
  5030. "ref/xamarinmac20/_._",
  5031. "ref/xamarintvos10/_._",
  5032. "ref/xamarinwatchos10/_._",
  5033. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5034. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5035. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5036. "system.io.compression.4.3.0.nupkg.sha512",
  5037. "system.io.compression.nuspec"
  5038. ]
  5039. },
  5040. "System.IO.Compression.ZipFile/4.3.0": {
  5041. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5042. "type": "package",
  5043. "path": "system.io.compression.zipfile/4.3.0",
  5044. "files": [
  5045. ".nupkg.metadata",
  5046. ".signature.p7s",
  5047. "ThirdPartyNotices.txt",
  5048. "dotnet_library_license.txt",
  5049. "lib/MonoAndroid10/_._",
  5050. "lib/MonoTouch10/_._",
  5051. "lib/net46/System.IO.Compression.ZipFile.dll",
  5052. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5053. "lib/xamarinios10/_._",
  5054. "lib/xamarinmac20/_._",
  5055. "lib/xamarintvos10/_._",
  5056. "lib/xamarinwatchos10/_._",
  5057. "ref/MonoAndroid10/_._",
  5058. "ref/MonoTouch10/_._",
  5059. "ref/net46/System.IO.Compression.ZipFile.dll",
  5060. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5061. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5062. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5063. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5064. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5065. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5066. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5067. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5068. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5069. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5070. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5071. "ref/xamarinios10/_._",
  5072. "ref/xamarinmac20/_._",
  5073. "ref/xamarintvos10/_._",
  5074. "ref/xamarinwatchos10/_._",
  5075. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5076. "system.io.compression.zipfile.nuspec"
  5077. ]
  5078. },
  5079. "System.IO.FileSystem/4.3.0": {
  5080. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5081. "type": "package",
  5082. "path": "system.io.filesystem/4.3.0",
  5083. "files": [
  5084. ".nupkg.metadata",
  5085. ".signature.p7s",
  5086. "ThirdPartyNotices.txt",
  5087. "dotnet_library_license.txt",
  5088. "lib/MonoAndroid10/_._",
  5089. "lib/MonoTouch10/_._",
  5090. "lib/net46/System.IO.FileSystem.dll",
  5091. "lib/xamarinios10/_._",
  5092. "lib/xamarinmac20/_._",
  5093. "lib/xamarintvos10/_._",
  5094. "lib/xamarinwatchos10/_._",
  5095. "ref/MonoAndroid10/_._",
  5096. "ref/MonoTouch10/_._",
  5097. "ref/net46/System.IO.FileSystem.dll",
  5098. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5099. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5100. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5101. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5102. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5103. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5104. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5105. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5106. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5107. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5108. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5109. "ref/xamarinios10/_._",
  5110. "ref/xamarinmac20/_._",
  5111. "ref/xamarintvos10/_._",
  5112. "ref/xamarinwatchos10/_._",
  5113. "system.io.filesystem.4.3.0.nupkg.sha512",
  5114. "system.io.filesystem.nuspec"
  5115. ]
  5116. },
  5117. "System.IO.FileSystem.Primitives/4.3.0": {
  5118. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5119. "type": "package",
  5120. "path": "system.io.filesystem.primitives/4.3.0",
  5121. "files": [
  5122. ".nupkg.metadata",
  5123. ".signature.p7s",
  5124. "ThirdPartyNotices.txt",
  5125. "dotnet_library_license.txt",
  5126. "lib/MonoAndroid10/_._",
  5127. "lib/MonoTouch10/_._",
  5128. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5129. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5130. "lib/xamarinios10/_._",
  5131. "lib/xamarinmac20/_._",
  5132. "lib/xamarintvos10/_._",
  5133. "lib/xamarinwatchos10/_._",
  5134. "ref/MonoAndroid10/_._",
  5135. "ref/MonoTouch10/_._",
  5136. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5137. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5138. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5139. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5140. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5141. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5142. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5143. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5144. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5145. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5146. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5147. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5148. "ref/xamarinios10/_._",
  5149. "ref/xamarinmac20/_._",
  5150. "ref/xamarintvos10/_._",
  5151. "ref/xamarinwatchos10/_._",
  5152. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5153. "system.io.filesystem.primitives.nuspec"
  5154. ]
  5155. },
  5156. "System.Linq/4.3.0": {
  5157. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5158. "type": "package",
  5159. "path": "system.linq/4.3.0",
  5160. "files": [
  5161. ".nupkg.metadata",
  5162. ".signature.p7s",
  5163. "ThirdPartyNotices.txt",
  5164. "dotnet_library_license.txt",
  5165. "lib/MonoAndroid10/_._",
  5166. "lib/MonoTouch10/_._",
  5167. "lib/net45/_._",
  5168. "lib/net463/System.Linq.dll",
  5169. "lib/netcore50/System.Linq.dll",
  5170. "lib/netstandard1.6/System.Linq.dll",
  5171. "lib/portable-net45+win8+wp8+wpa81/_._",
  5172. "lib/win8/_._",
  5173. "lib/wp80/_._",
  5174. "lib/wpa81/_._",
  5175. "lib/xamarinios10/_._",
  5176. "lib/xamarinmac20/_._",
  5177. "lib/xamarintvos10/_._",
  5178. "lib/xamarinwatchos10/_._",
  5179. "ref/MonoAndroid10/_._",
  5180. "ref/MonoTouch10/_._",
  5181. "ref/net45/_._",
  5182. "ref/net463/System.Linq.dll",
  5183. "ref/netcore50/System.Linq.dll",
  5184. "ref/netcore50/System.Linq.xml",
  5185. "ref/netcore50/de/System.Linq.xml",
  5186. "ref/netcore50/es/System.Linq.xml",
  5187. "ref/netcore50/fr/System.Linq.xml",
  5188. "ref/netcore50/it/System.Linq.xml",
  5189. "ref/netcore50/ja/System.Linq.xml",
  5190. "ref/netcore50/ko/System.Linq.xml",
  5191. "ref/netcore50/ru/System.Linq.xml",
  5192. "ref/netcore50/zh-hans/System.Linq.xml",
  5193. "ref/netcore50/zh-hant/System.Linq.xml",
  5194. "ref/netstandard1.0/System.Linq.dll",
  5195. "ref/netstandard1.0/System.Linq.xml",
  5196. "ref/netstandard1.0/de/System.Linq.xml",
  5197. "ref/netstandard1.0/es/System.Linq.xml",
  5198. "ref/netstandard1.0/fr/System.Linq.xml",
  5199. "ref/netstandard1.0/it/System.Linq.xml",
  5200. "ref/netstandard1.0/ja/System.Linq.xml",
  5201. "ref/netstandard1.0/ko/System.Linq.xml",
  5202. "ref/netstandard1.0/ru/System.Linq.xml",
  5203. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5204. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5205. "ref/netstandard1.6/System.Linq.dll",
  5206. "ref/netstandard1.6/System.Linq.xml",
  5207. "ref/netstandard1.6/de/System.Linq.xml",
  5208. "ref/netstandard1.6/es/System.Linq.xml",
  5209. "ref/netstandard1.6/fr/System.Linq.xml",
  5210. "ref/netstandard1.6/it/System.Linq.xml",
  5211. "ref/netstandard1.6/ja/System.Linq.xml",
  5212. "ref/netstandard1.6/ko/System.Linq.xml",
  5213. "ref/netstandard1.6/ru/System.Linq.xml",
  5214. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5215. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5216. "ref/portable-net45+win8+wp8+wpa81/_._",
  5217. "ref/win8/_._",
  5218. "ref/wp80/_._",
  5219. "ref/wpa81/_._",
  5220. "ref/xamarinios10/_._",
  5221. "ref/xamarinmac20/_._",
  5222. "ref/xamarintvos10/_._",
  5223. "ref/xamarinwatchos10/_._",
  5224. "system.linq.4.3.0.nupkg.sha512",
  5225. "system.linq.nuspec"
  5226. ]
  5227. },
  5228. "System.Linq.Expressions/4.3.0": {
  5229. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5230. "type": "package",
  5231. "path": "system.linq.expressions/4.3.0",
  5232. "files": [
  5233. ".nupkg.metadata",
  5234. ".signature.p7s",
  5235. "ThirdPartyNotices.txt",
  5236. "dotnet_library_license.txt",
  5237. "lib/MonoAndroid10/_._",
  5238. "lib/MonoTouch10/_._",
  5239. "lib/net45/_._",
  5240. "lib/net463/System.Linq.Expressions.dll",
  5241. "lib/netcore50/System.Linq.Expressions.dll",
  5242. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5243. "lib/portable-net45+win8+wp8+wpa81/_._",
  5244. "lib/win8/_._",
  5245. "lib/wp80/_._",
  5246. "lib/wpa81/_._",
  5247. "lib/xamarinios10/_._",
  5248. "lib/xamarinmac20/_._",
  5249. "lib/xamarintvos10/_._",
  5250. "lib/xamarinwatchos10/_._",
  5251. "ref/MonoAndroid10/_._",
  5252. "ref/MonoTouch10/_._",
  5253. "ref/net45/_._",
  5254. "ref/net463/System.Linq.Expressions.dll",
  5255. "ref/netcore50/System.Linq.Expressions.dll",
  5256. "ref/netcore50/System.Linq.Expressions.xml",
  5257. "ref/netcore50/de/System.Linq.Expressions.xml",
  5258. "ref/netcore50/es/System.Linq.Expressions.xml",
  5259. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5260. "ref/netcore50/it/System.Linq.Expressions.xml",
  5261. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5262. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5263. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5264. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5265. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5266. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5267. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5268. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5269. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5270. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5271. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5272. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5273. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5274. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5275. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5276. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5277. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5278. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5279. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5280. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5281. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5282. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5283. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5284. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5285. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5286. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5287. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5288. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5289. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5290. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5291. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5292. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5293. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5294. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5295. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5296. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5297. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5298. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5299. "ref/portable-net45+win8+wp8+wpa81/_._",
  5300. "ref/win8/_._",
  5301. "ref/wp80/_._",
  5302. "ref/wpa81/_._",
  5303. "ref/xamarinios10/_._",
  5304. "ref/xamarinmac20/_._",
  5305. "ref/xamarintvos10/_._",
  5306. "ref/xamarinwatchos10/_._",
  5307. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5308. "system.linq.expressions.4.3.0.nupkg.sha512",
  5309. "system.linq.expressions.nuspec"
  5310. ]
  5311. },
  5312. "System.Memory/4.5.4": {
  5313. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  5314. "type": "package",
  5315. "path": "system.memory/4.5.4",
  5316. "files": [
  5317. ".nupkg.metadata",
  5318. ".signature.p7s",
  5319. "LICENSE.TXT",
  5320. "THIRD-PARTY-NOTICES.TXT",
  5321. "lib/net461/System.Memory.dll",
  5322. "lib/net461/System.Memory.xml",
  5323. "lib/netcoreapp2.1/_._",
  5324. "lib/netstandard1.1/System.Memory.dll",
  5325. "lib/netstandard1.1/System.Memory.xml",
  5326. "lib/netstandard2.0/System.Memory.dll",
  5327. "lib/netstandard2.0/System.Memory.xml",
  5328. "ref/netcoreapp2.1/_._",
  5329. "system.memory.4.5.4.nupkg.sha512",
  5330. "system.memory.nuspec",
  5331. "useSharedDesignerContext.txt",
  5332. "version.txt"
  5333. ]
  5334. },
  5335. "System.Net.Http/4.3.0": {
  5336. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5337. "type": "package",
  5338. "path": "system.net.http/4.3.0",
  5339. "files": [
  5340. ".nupkg.metadata",
  5341. ".signature.p7s",
  5342. "ThirdPartyNotices.txt",
  5343. "dotnet_library_license.txt",
  5344. "lib/Xamarinmac20/_._",
  5345. "lib/monoandroid10/_._",
  5346. "lib/monotouch10/_._",
  5347. "lib/net45/_._",
  5348. "lib/net46/System.Net.Http.dll",
  5349. "lib/portable-net45+win8+wpa81/_._",
  5350. "lib/win8/_._",
  5351. "lib/wpa81/_._",
  5352. "lib/xamarinios10/_._",
  5353. "lib/xamarintvos10/_._",
  5354. "lib/xamarinwatchos10/_._",
  5355. "ref/Xamarinmac20/_._",
  5356. "ref/monoandroid10/_._",
  5357. "ref/monotouch10/_._",
  5358. "ref/net45/_._",
  5359. "ref/net46/System.Net.Http.dll",
  5360. "ref/net46/System.Net.Http.xml",
  5361. "ref/net46/de/System.Net.Http.xml",
  5362. "ref/net46/es/System.Net.Http.xml",
  5363. "ref/net46/fr/System.Net.Http.xml",
  5364. "ref/net46/it/System.Net.Http.xml",
  5365. "ref/net46/ja/System.Net.Http.xml",
  5366. "ref/net46/ko/System.Net.Http.xml",
  5367. "ref/net46/ru/System.Net.Http.xml",
  5368. "ref/net46/zh-hans/System.Net.Http.xml",
  5369. "ref/net46/zh-hant/System.Net.Http.xml",
  5370. "ref/netcore50/System.Net.Http.dll",
  5371. "ref/netcore50/System.Net.Http.xml",
  5372. "ref/netcore50/de/System.Net.Http.xml",
  5373. "ref/netcore50/es/System.Net.Http.xml",
  5374. "ref/netcore50/fr/System.Net.Http.xml",
  5375. "ref/netcore50/it/System.Net.Http.xml",
  5376. "ref/netcore50/ja/System.Net.Http.xml",
  5377. "ref/netcore50/ko/System.Net.Http.xml",
  5378. "ref/netcore50/ru/System.Net.Http.xml",
  5379. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5380. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5381. "ref/netstandard1.1/System.Net.Http.dll",
  5382. "ref/netstandard1.1/System.Net.Http.xml",
  5383. "ref/netstandard1.1/de/System.Net.Http.xml",
  5384. "ref/netstandard1.1/es/System.Net.Http.xml",
  5385. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5386. "ref/netstandard1.1/it/System.Net.Http.xml",
  5387. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5388. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5389. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5390. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5391. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5392. "ref/netstandard1.3/System.Net.Http.dll",
  5393. "ref/netstandard1.3/System.Net.Http.xml",
  5394. "ref/netstandard1.3/de/System.Net.Http.xml",
  5395. "ref/netstandard1.3/es/System.Net.Http.xml",
  5396. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5397. "ref/netstandard1.3/it/System.Net.Http.xml",
  5398. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5399. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5400. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5401. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5402. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5403. "ref/portable-net45+win8+wpa81/_._",
  5404. "ref/win8/_._",
  5405. "ref/wpa81/_._",
  5406. "ref/xamarinios10/_._",
  5407. "ref/xamarintvos10/_._",
  5408. "ref/xamarinwatchos10/_._",
  5409. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5410. "runtimes/win/lib/net46/System.Net.Http.dll",
  5411. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5412. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5413. "system.net.http.4.3.0.nupkg.sha512",
  5414. "system.net.http.nuspec"
  5415. ]
  5416. },
  5417. "System.Net.Http.WinHttpHandler/4.4.0": {
  5418. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  5419. "type": "package",
  5420. "path": "system.net.http.winhttphandler/4.4.0",
  5421. "files": [
  5422. ".nupkg.metadata",
  5423. ".signature.p7s",
  5424. "LICENSE.TXT",
  5425. "THIRD-PARTY-NOTICES.TXT",
  5426. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  5427. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  5428. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  5429. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  5430. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  5431. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  5432. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  5433. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  5434. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  5435. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  5436. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  5437. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  5438. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  5439. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  5440. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  5441. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  5442. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  5443. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  5444. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  5445. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  5446. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  5447. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  5448. "system.net.http.winhttphandler.nuspec",
  5449. "useSharedDesignerContext.txt",
  5450. "version.txt"
  5451. ]
  5452. },
  5453. "System.Net.NameResolution/4.0.0": {
  5454. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  5455. "type": "package",
  5456. "path": "system.net.nameresolution/4.0.0",
  5457. "files": [
  5458. ".nupkg.metadata",
  5459. ".signature.p7s",
  5460. "ThirdPartyNotices.txt",
  5461. "dotnet_library_license.txt",
  5462. "lib/MonoAndroid10/_._",
  5463. "lib/MonoTouch10/_._",
  5464. "lib/net46/System.Net.NameResolution.dll",
  5465. "lib/xamarinios10/_._",
  5466. "lib/xamarinmac20/_._",
  5467. "lib/xamarintvos10/_._",
  5468. "lib/xamarinwatchos10/_._",
  5469. "ref/MonoAndroid10/_._",
  5470. "ref/MonoTouch10/_._",
  5471. "ref/net46/System.Net.NameResolution.dll",
  5472. "ref/netstandard1.3/System.Net.NameResolution.dll",
  5473. "ref/netstandard1.3/System.Net.NameResolution.xml",
  5474. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  5475. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  5476. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  5477. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  5478. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  5479. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  5480. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  5481. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  5482. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  5483. "ref/xamarinios10/_._",
  5484. "ref/xamarinmac20/_._",
  5485. "ref/xamarintvos10/_._",
  5486. "ref/xamarinwatchos10/_._",
  5487. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  5488. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  5489. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  5490. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  5491. "system.net.nameresolution.4.0.0.nupkg.sha512",
  5492. "system.net.nameresolution.nuspec"
  5493. ]
  5494. },
  5495. "System.Net.Primitives/4.3.0": {
  5496. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5497. "type": "package",
  5498. "path": "system.net.primitives/4.3.0",
  5499. "files": [
  5500. ".nupkg.metadata",
  5501. ".signature.p7s",
  5502. "ThirdPartyNotices.txt",
  5503. "dotnet_library_license.txt",
  5504. "lib/MonoAndroid10/_._",
  5505. "lib/MonoTouch10/_._",
  5506. "lib/net45/_._",
  5507. "lib/portable-net45+win8+wp8+wpa81/_._",
  5508. "lib/win8/_._",
  5509. "lib/wp80/_._",
  5510. "lib/wpa81/_._",
  5511. "lib/xamarinios10/_._",
  5512. "lib/xamarinmac20/_._",
  5513. "lib/xamarintvos10/_._",
  5514. "lib/xamarinwatchos10/_._",
  5515. "ref/MonoAndroid10/_._",
  5516. "ref/MonoTouch10/_._",
  5517. "ref/net45/_._",
  5518. "ref/netcore50/System.Net.Primitives.dll",
  5519. "ref/netcore50/System.Net.Primitives.xml",
  5520. "ref/netcore50/de/System.Net.Primitives.xml",
  5521. "ref/netcore50/es/System.Net.Primitives.xml",
  5522. "ref/netcore50/fr/System.Net.Primitives.xml",
  5523. "ref/netcore50/it/System.Net.Primitives.xml",
  5524. "ref/netcore50/ja/System.Net.Primitives.xml",
  5525. "ref/netcore50/ko/System.Net.Primitives.xml",
  5526. "ref/netcore50/ru/System.Net.Primitives.xml",
  5527. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5528. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5529. "ref/netstandard1.0/System.Net.Primitives.dll",
  5530. "ref/netstandard1.0/System.Net.Primitives.xml",
  5531. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5532. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5533. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5534. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5535. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5536. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5537. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5538. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5539. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5540. "ref/netstandard1.1/System.Net.Primitives.dll",
  5541. "ref/netstandard1.1/System.Net.Primitives.xml",
  5542. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5543. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5544. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5545. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5546. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5547. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5548. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5549. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5550. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5551. "ref/netstandard1.3/System.Net.Primitives.dll",
  5552. "ref/netstandard1.3/System.Net.Primitives.xml",
  5553. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5554. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5555. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5556. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5557. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5558. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5559. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5560. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5561. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5562. "ref/portable-net45+win8+wp8+wpa81/_._",
  5563. "ref/win8/_._",
  5564. "ref/wp80/_._",
  5565. "ref/wpa81/_._",
  5566. "ref/xamarinios10/_._",
  5567. "ref/xamarinmac20/_._",
  5568. "ref/xamarintvos10/_._",
  5569. "ref/xamarinwatchos10/_._",
  5570. "system.net.primitives.4.3.0.nupkg.sha512",
  5571. "system.net.primitives.nuspec"
  5572. ]
  5573. },
  5574. "System.Net.Sockets/4.3.0": {
  5575. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  5576. "type": "package",
  5577. "path": "system.net.sockets/4.3.0",
  5578. "files": [
  5579. ".nupkg.metadata",
  5580. ".signature.p7s",
  5581. "ThirdPartyNotices.txt",
  5582. "dotnet_library_license.txt",
  5583. "lib/MonoAndroid10/_._",
  5584. "lib/MonoTouch10/_._",
  5585. "lib/net46/System.Net.Sockets.dll",
  5586. "lib/xamarinios10/_._",
  5587. "lib/xamarinmac20/_._",
  5588. "lib/xamarintvos10/_._",
  5589. "lib/xamarinwatchos10/_._",
  5590. "ref/MonoAndroid10/_._",
  5591. "ref/MonoTouch10/_._",
  5592. "ref/net46/System.Net.Sockets.dll",
  5593. "ref/netstandard1.3/System.Net.Sockets.dll",
  5594. "ref/netstandard1.3/System.Net.Sockets.xml",
  5595. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5596. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5597. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5598. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5599. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5600. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5601. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5602. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5603. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5604. "ref/xamarinios10/_._",
  5605. "ref/xamarinmac20/_._",
  5606. "ref/xamarintvos10/_._",
  5607. "ref/xamarinwatchos10/_._",
  5608. "system.net.sockets.4.3.0.nupkg.sha512",
  5609. "system.net.sockets.nuspec"
  5610. ]
  5611. },
  5612. "System.ObjectModel/4.3.0": {
  5613. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  5614. "type": "package",
  5615. "path": "system.objectmodel/4.3.0",
  5616. "files": [
  5617. ".nupkg.metadata",
  5618. ".signature.p7s",
  5619. "ThirdPartyNotices.txt",
  5620. "dotnet_library_license.txt",
  5621. "lib/MonoAndroid10/_._",
  5622. "lib/MonoTouch10/_._",
  5623. "lib/net45/_._",
  5624. "lib/netcore50/System.ObjectModel.dll",
  5625. "lib/netstandard1.3/System.ObjectModel.dll",
  5626. "lib/portable-net45+win8+wp8+wpa81/_._",
  5627. "lib/win8/_._",
  5628. "lib/wp80/_._",
  5629. "lib/wpa81/_._",
  5630. "lib/xamarinios10/_._",
  5631. "lib/xamarinmac20/_._",
  5632. "lib/xamarintvos10/_._",
  5633. "lib/xamarinwatchos10/_._",
  5634. "ref/MonoAndroid10/_._",
  5635. "ref/MonoTouch10/_._",
  5636. "ref/net45/_._",
  5637. "ref/netcore50/System.ObjectModel.dll",
  5638. "ref/netcore50/System.ObjectModel.xml",
  5639. "ref/netcore50/de/System.ObjectModel.xml",
  5640. "ref/netcore50/es/System.ObjectModel.xml",
  5641. "ref/netcore50/fr/System.ObjectModel.xml",
  5642. "ref/netcore50/it/System.ObjectModel.xml",
  5643. "ref/netcore50/ja/System.ObjectModel.xml",
  5644. "ref/netcore50/ko/System.ObjectModel.xml",
  5645. "ref/netcore50/ru/System.ObjectModel.xml",
  5646. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5647. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5648. "ref/netstandard1.0/System.ObjectModel.dll",
  5649. "ref/netstandard1.0/System.ObjectModel.xml",
  5650. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5651. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5652. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5653. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5654. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5655. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5656. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5657. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5658. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5659. "ref/netstandard1.3/System.ObjectModel.dll",
  5660. "ref/netstandard1.3/System.ObjectModel.xml",
  5661. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5662. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5663. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5664. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5665. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5666. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5667. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5668. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5669. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5670. "ref/portable-net45+win8+wp8+wpa81/_._",
  5671. "ref/win8/_._",
  5672. "ref/wp80/_._",
  5673. "ref/wpa81/_._",
  5674. "ref/xamarinios10/_._",
  5675. "ref/xamarinmac20/_._",
  5676. "ref/xamarintvos10/_._",
  5677. "ref/xamarinwatchos10/_._",
  5678. "system.objectmodel.4.3.0.nupkg.sha512",
  5679. "system.objectmodel.nuspec"
  5680. ]
  5681. },
  5682. "System.Private.ServiceModel/4.4.4": {
  5683. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  5684. "type": "package",
  5685. "path": "system.private.servicemodel/4.4.4",
  5686. "files": [
  5687. ".nupkg.metadata",
  5688. ".signature.p7s",
  5689. "LICENSE.TXT",
  5690. "THIRD-PARTY-NOTICES.TXT",
  5691. "ref/netstandard/_._",
  5692. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  5693. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  5694. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  5695. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  5696. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  5697. "system.private.servicemodel.4.4.4.nupkg.sha512",
  5698. "system.private.servicemodel.nuspec",
  5699. "version.txt"
  5700. ]
  5701. },
  5702. "System.Reactive.Core/3.1.1": {
  5703. "sha512": "CKWC+UP1aM75taNX+sTBn2P97uHIUjKxq+z45iy7P91QGFqNFleR2tsqIC76HMVvYl7o8oWyMiycdsc9rC1Z/g==",
  5704. "type": "package",
  5705. "path": "system.reactive.core/3.1.1",
  5706. "files": [
  5707. ".nupkg.metadata",
  5708. ".signature.p7s",
  5709. "lib/net45/System.Reactive.Core.dll",
  5710. "lib/net45/System.Reactive.Core.xml",
  5711. "lib/net46/System.Reactive.Core.dll",
  5712. "lib/net46/System.Reactive.Core.xml",
  5713. "lib/netcore451/System.Reactive.Core.dll",
  5714. "lib/netcore451/System.Reactive.Core.xml",
  5715. "lib/netcoreapp1.0/System.Reactive.Core.dll",
  5716. "lib/netcoreapp1.0/System.Reactive.Core.xml",
  5717. "lib/netstandard1.0/System.Reactive.Core.dll",
  5718. "lib/netstandard1.0/System.Reactive.Core.xml",
  5719. "lib/netstandard1.1/System.Reactive.Core.dll",
  5720. "lib/netstandard1.1/System.Reactive.Core.xml",
  5721. "lib/netstandard1.3/System.Reactive.Core.dll",
  5722. "lib/netstandard1.3/System.Reactive.Core.xml",
  5723. "lib/uap10.0/System.Reactive.Core.dll",
  5724. "lib/uap10.0/System.Reactive.Core.xml",
  5725. "lib/wpa81/System.Reactive.Core.dll",
  5726. "lib/wpa81/System.Reactive.Core.xml",
  5727. "system.reactive.core.3.1.1.nupkg.sha512",
  5728. "system.reactive.core.nuspec"
  5729. ]
  5730. },
  5731. "System.Reactive.Interfaces/3.1.1": {
  5732. "sha512": "aNVY3QoRznGFeQ+w+bMqhD8ElNWoyYq+7XTQIoxKKjBOyTOjUqIMEf1wvSdtwC4y92zg2W9q38b4Sr6cYNHVLg==",
  5733. "type": "package",
  5734. "path": "system.reactive.interfaces/3.1.1",
  5735. "files": [
  5736. ".nupkg.metadata",
  5737. ".signature.p7s",
  5738. "lib/net45/System.Reactive.Interfaces.dll",
  5739. "lib/net45/System.Reactive.Interfaces.xml",
  5740. "lib/netstandard1.0/System.Reactive.Interfaces.dll",
  5741. "lib/netstandard1.0/System.Reactive.Interfaces.xml",
  5742. "system.reactive.interfaces.3.1.1.nupkg.sha512",
  5743. "system.reactive.interfaces.nuspec"
  5744. ]
  5745. },
  5746. "System.Reactive.Linq/3.1.1": {
  5747. "sha512": "HwsZsoYRg51cLGBOEa0uoZ5+d4CMcHEg/KrbqePhLxoz/SLA+ULISphBtn3woABPATOQ6j5YgGZWh4jxnJ3KYQ==",
  5748. "type": "package",
  5749. "path": "system.reactive.linq/3.1.1",
  5750. "files": [
  5751. ".nupkg.metadata",
  5752. ".signature.p7s",
  5753. "lib/net45/System.Reactive.Linq.dll",
  5754. "lib/net45/System.Reactive.Linq.xml",
  5755. "lib/net46/System.Reactive.Linq.dll",
  5756. "lib/net46/System.Reactive.Linq.xml",
  5757. "lib/netstandard1.0/System.Reactive.Linq.dll",
  5758. "lib/netstandard1.0/System.Reactive.Linq.xml",
  5759. "lib/netstandard1.1/System.Reactive.Linq.dll",
  5760. "lib/netstandard1.1/System.Reactive.Linq.xml",
  5761. "lib/netstandard1.3/System.Reactive.Linq.dll",
  5762. "lib/netstandard1.3/System.Reactive.Linq.xml",
  5763. "system.reactive.linq.3.1.1.nupkg.sha512",
  5764. "system.reactive.linq.nuspec"
  5765. ]
  5766. },
  5767. "System.Reflection/4.3.0": {
  5768. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5769. "type": "package",
  5770. "path": "system.reflection/4.3.0",
  5771. "files": [
  5772. ".nupkg.metadata",
  5773. ".signature.p7s",
  5774. "ThirdPartyNotices.txt",
  5775. "dotnet_library_license.txt",
  5776. "lib/MonoAndroid10/_._",
  5777. "lib/MonoTouch10/_._",
  5778. "lib/net45/_._",
  5779. "lib/net462/System.Reflection.dll",
  5780. "lib/portable-net45+win8+wp8+wpa81/_._",
  5781. "lib/win8/_._",
  5782. "lib/wp80/_._",
  5783. "lib/wpa81/_._",
  5784. "lib/xamarinios10/_._",
  5785. "lib/xamarinmac20/_._",
  5786. "lib/xamarintvos10/_._",
  5787. "lib/xamarinwatchos10/_._",
  5788. "ref/MonoAndroid10/_._",
  5789. "ref/MonoTouch10/_._",
  5790. "ref/net45/_._",
  5791. "ref/net462/System.Reflection.dll",
  5792. "ref/netcore50/System.Reflection.dll",
  5793. "ref/netcore50/System.Reflection.xml",
  5794. "ref/netcore50/de/System.Reflection.xml",
  5795. "ref/netcore50/es/System.Reflection.xml",
  5796. "ref/netcore50/fr/System.Reflection.xml",
  5797. "ref/netcore50/it/System.Reflection.xml",
  5798. "ref/netcore50/ja/System.Reflection.xml",
  5799. "ref/netcore50/ko/System.Reflection.xml",
  5800. "ref/netcore50/ru/System.Reflection.xml",
  5801. "ref/netcore50/zh-hans/System.Reflection.xml",
  5802. "ref/netcore50/zh-hant/System.Reflection.xml",
  5803. "ref/netstandard1.0/System.Reflection.dll",
  5804. "ref/netstandard1.0/System.Reflection.xml",
  5805. "ref/netstandard1.0/de/System.Reflection.xml",
  5806. "ref/netstandard1.0/es/System.Reflection.xml",
  5807. "ref/netstandard1.0/fr/System.Reflection.xml",
  5808. "ref/netstandard1.0/it/System.Reflection.xml",
  5809. "ref/netstandard1.0/ja/System.Reflection.xml",
  5810. "ref/netstandard1.0/ko/System.Reflection.xml",
  5811. "ref/netstandard1.0/ru/System.Reflection.xml",
  5812. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5813. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5814. "ref/netstandard1.3/System.Reflection.dll",
  5815. "ref/netstandard1.3/System.Reflection.xml",
  5816. "ref/netstandard1.3/de/System.Reflection.xml",
  5817. "ref/netstandard1.3/es/System.Reflection.xml",
  5818. "ref/netstandard1.3/fr/System.Reflection.xml",
  5819. "ref/netstandard1.3/it/System.Reflection.xml",
  5820. "ref/netstandard1.3/ja/System.Reflection.xml",
  5821. "ref/netstandard1.3/ko/System.Reflection.xml",
  5822. "ref/netstandard1.3/ru/System.Reflection.xml",
  5823. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5824. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5825. "ref/netstandard1.5/System.Reflection.dll",
  5826. "ref/netstandard1.5/System.Reflection.xml",
  5827. "ref/netstandard1.5/de/System.Reflection.xml",
  5828. "ref/netstandard1.5/es/System.Reflection.xml",
  5829. "ref/netstandard1.5/fr/System.Reflection.xml",
  5830. "ref/netstandard1.5/it/System.Reflection.xml",
  5831. "ref/netstandard1.5/ja/System.Reflection.xml",
  5832. "ref/netstandard1.5/ko/System.Reflection.xml",
  5833. "ref/netstandard1.5/ru/System.Reflection.xml",
  5834. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5835. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5836. "ref/portable-net45+win8+wp8+wpa81/_._",
  5837. "ref/win8/_._",
  5838. "ref/wp80/_._",
  5839. "ref/wpa81/_._",
  5840. "ref/xamarinios10/_._",
  5841. "ref/xamarinmac20/_._",
  5842. "ref/xamarintvos10/_._",
  5843. "ref/xamarinwatchos10/_._",
  5844. "system.reflection.4.3.0.nupkg.sha512",
  5845. "system.reflection.nuspec"
  5846. ]
  5847. },
  5848. "System.Reflection.DispatchProxy/4.4.0": {
  5849. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  5850. "type": "package",
  5851. "path": "system.reflection.dispatchproxy/4.4.0",
  5852. "files": [
  5853. ".nupkg.metadata",
  5854. ".signature.p7s",
  5855. "LICENSE.TXT",
  5856. "THIRD-PARTY-NOTICES.TXT",
  5857. "lib/MonoAndroid10/_._",
  5858. "lib/MonoTouch10/_._",
  5859. "lib/net461/System.Reflection.DispatchProxy.dll",
  5860. "lib/netcoreapp2.0/_._",
  5861. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  5862. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  5863. "lib/xamarinios10/_._",
  5864. "lib/xamarinmac20/_._",
  5865. "lib/xamarintvos10/_._",
  5866. "lib/xamarinwatchos10/_._",
  5867. "ref/MonoAndroid10/_._",
  5868. "ref/MonoTouch10/_._",
  5869. "ref/netcoreapp2.0/_._",
  5870. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  5871. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  5872. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  5873. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  5874. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  5875. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  5876. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  5877. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  5878. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  5879. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  5880. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  5881. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  5882. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  5883. "ref/xamarinios10/_._",
  5884. "ref/xamarinmac20/_._",
  5885. "ref/xamarintvos10/_._",
  5886. "ref/xamarinwatchos10/_._",
  5887. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  5888. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  5889. "system.reflection.dispatchproxy.nuspec",
  5890. "useSharedDesignerContext.txt",
  5891. "version.txt"
  5892. ]
  5893. },
  5894. "System.Reflection.Emit/4.3.0": {
  5895. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5896. "type": "package",
  5897. "path": "system.reflection.emit/4.3.0",
  5898. "files": [
  5899. ".nupkg.metadata",
  5900. ".signature.p7s",
  5901. "ThirdPartyNotices.txt",
  5902. "dotnet_library_license.txt",
  5903. "lib/MonoAndroid10/_._",
  5904. "lib/monotouch10/_._",
  5905. "lib/net45/_._",
  5906. "lib/netcore50/System.Reflection.Emit.dll",
  5907. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5908. "lib/xamarinios10/_._",
  5909. "lib/xamarinmac20/_._",
  5910. "lib/xamarintvos10/_._",
  5911. "lib/xamarinwatchos10/_._",
  5912. "ref/MonoAndroid10/_._",
  5913. "ref/net45/_._",
  5914. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5915. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5916. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5917. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5918. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5919. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5920. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5921. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5922. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5923. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5924. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5925. "ref/xamarinmac20/_._",
  5926. "system.reflection.emit.4.3.0.nupkg.sha512",
  5927. "system.reflection.emit.nuspec"
  5928. ]
  5929. },
  5930. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5931. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5932. "type": "package",
  5933. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5934. "files": [
  5935. ".nupkg.metadata",
  5936. ".signature.p7s",
  5937. "ThirdPartyNotices.txt",
  5938. "dotnet_library_license.txt",
  5939. "lib/MonoAndroid10/_._",
  5940. "lib/MonoTouch10/_._",
  5941. "lib/net45/_._",
  5942. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5943. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5944. "lib/portable-net45+wp8/_._",
  5945. "lib/wp80/_._",
  5946. "lib/xamarinios10/_._",
  5947. "lib/xamarinmac20/_._",
  5948. "lib/xamarintvos10/_._",
  5949. "lib/xamarinwatchos10/_._",
  5950. "ref/MonoAndroid10/_._",
  5951. "ref/MonoTouch10/_._",
  5952. "ref/net45/_._",
  5953. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5954. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5955. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5956. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5957. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5958. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5959. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5960. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5961. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5962. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5963. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5964. "ref/portable-net45+wp8/_._",
  5965. "ref/wp80/_._",
  5966. "ref/xamarinios10/_._",
  5967. "ref/xamarinmac20/_._",
  5968. "ref/xamarintvos10/_._",
  5969. "ref/xamarinwatchos10/_._",
  5970. "runtimes/aot/lib/netcore50/_._",
  5971. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5972. "system.reflection.emit.ilgeneration.nuspec"
  5973. ]
  5974. },
  5975. "System.Reflection.Emit.Lightweight/4.3.0": {
  5976. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5977. "type": "package",
  5978. "path": "system.reflection.emit.lightweight/4.3.0",
  5979. "files": [
  5980. ".nupkg.metadata",
  5981. ".signature.p7s",
  5982. "ThirdPartyNotices.txt",
  5983. "dotnet_library_license.txt",
  5984. "lib/MonoAndroid10/_._",
  5985. "lib/MonoTouch10/_._",
  5986. "lib/net45/_._",
  5987. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5988. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5989. "lib/portable-net45+wp8/_._",
  5990. "lib/wp80/_._",
  5991. "lib/xamarinios10/_._",
  5992. "lib/xamarinmac20/_._",
  5993. "lib/xamarintvos10/_._",
  5994. "lib/xamarinwatchos10/_._",
  5995. "ref/MonoAndroid10/_._",
  5996. "ref/MonoTouch10/_._",
  5997. "ref/net45/_._",
  5998. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5999. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6000. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6001. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6002. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6003. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6004. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6005. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6006. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6007. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6008. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6009. "ref/portable-net45+wp8/_._",
  6010. "ref/wp80/_._",
  6011. "ref/xamarinios10/_._",
  6012. "ref/xamarinmac20/_._",
  6013. "ref/xamarintvos10/_._",
  6014. "ref/xamarinwatchos10/_._",
  6015. "runtimes/aot/lib/netcore50/_._",
  6016. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6017. "system.reflection.emit.lightweight.nuspec"
  6018. ]
  6019. },
  6020. "System.Reflection.Extensions/4.3.0": {
  6021. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6022. "type": "package",
  6023. "path": "system.reflection.extensions/4.3.0",
  6024. "files": [
  6025. ".nupkg.metadata",
  6026. ".signature.p7s",
  6027. "ThirdPartyNotices.txt",
  6028. "dotnet_library_license.txt",
  6029. "lib/MonoAndroid10/_._",
  6030. "lib/MonoTouch10/_._",
  6031. "lib/net45/_._",
  6032. "lib/portable-net45+win8+wp8+wpa81/_._",
  6033. "lib/win8/_._",
  6034. "lib/wp80/_._",
  6035. "lib/wpa81/_._",
  6036. "lib/xamarinios10/_._",
  6037. "lib/xamarinmac20/_._",
  6038. "lib/xamarintvos10/_._",
  6039. "lib/xamarinwatchos10/_._",
  6040. "ref/MonoAndroid10/_._",
  6041. "ref/MonoTouch10/_._",
  6042. "ref/net45/_._",
  6043. "ref/netcore50/System.Reflection.Extensions.dll",
  6044. "ref/netcore50/System.Reflection.Extensions.xml",
  6045. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6046. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6047. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6048. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6049. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6050. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6051. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6052. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6053. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6054. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6055. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6056. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6057. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6058. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6059. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6060. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6061. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6062. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6063. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6064. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6065. "ref/portable-net45+win8+wp8+wpa81/_._",
  6066. "ref/win8/_._",
  6067. "ref/wp80/_._",
  6068. "ref/wpa81/_._",
  6069. "ref/xamarinios10/_._",
  6070. "ref/xamarinmac20/_._",
  6071. "ref/xamarintvos10/_._",
  6072. "ref/xamarinwatchos10/_._",
  6073. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6074. "system.reflection.extensions.nuspec"
  6075. ]
  6076. },
  6077. "System.Reflection.Primitives/4.3.0": {
  6078. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6079. "type": "package",
  6080. "path": "system.reflection.primitives/4.3.0",
  6081. "files": [
  6082. ".nupkg.metadata",
  6083. ".signature.p7s",
  6084. "ThirdPartyNotices.txt",
  6085. "dotnet_library_license.txt",
  6086. "lib/MonoAndroid10/_._",
  6087. "lib/MonoTouch10/_._",
  6088. "lib/net45/_._",
  6089. "lib/portable-net45+win8+wp8+wpa81/_._",
  6090. "lib/win8/_._",
  6091. "lib/wp80/_._",
  6092. "lib/wpa81/_._",
  6093. "lib/xamarinios10/_._",
  6094. "lib/xamarinmac20/_._",
  6095. "lib/xamarintvos10/_._",
  6096. "lib/xamarinwatchos10/_._",
  6097. "ref/MonoAndroid10/_._",
  6098. "ref/MonoTouch10/_._",
  6099. "ref/net45/_._",
  6100. "ref/netcore50/System.Reflection.Primitives.dll",
  6101. "ref/netcore50/System.Reflection.Primitives.xml",
  6102. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6103. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6104. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6105. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6106. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6107. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6108. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6109. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6110. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6111. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6112. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6113. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6114. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6115. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6116. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6117. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6118. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6119. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6120. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6121. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6122. "ref/portable-net45+win8+wp8+wpa81/_._",
  6123. "ref/win8/_._",
  6124. "ref/wp80/_._",
  6125. "ref/wpa81/_._",
  6126. "ref/xamarinios10/_._",
  6127. "ref/xamarinmac20/_._",
  6128. "ref/xamarintvos10/_._",
  6129. "ref/xamarinwatchos10/_._",
  6130. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6131. "system.reflection.primitives.nuspec"
  6132. ]
  6133. },
  6134. "System.Reflection.TypeExtensions/4.3.0": {
  6135. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6136. "type": "package",
  6137. "path": "system.reflection.typeextensions/4.3.0",
  6138. "files": [
  6139. ".nupkg.metadata",
  6140. ".signature.p7s",
  6141. "ThirdPartyNotices.txt",
  6142. "dotnet_library_license.txt",
  6143. "lib/MonoAndroid10/_._",
  6144. "lib/MonoTouch10/_._",
  6145. "lib/net46/System.Reflection.TypeExtensions.dll",
  6146. "lib/net462/System.Reflection.TypeExtensions.dll",
  6147. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6148. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6149. "lib/xamarinios10/_._",
  6150. "lib/xamarinmac20/_._",
  6151. "lib/xamarintvos10/_._",
  6152. "lib/xamarinwatchos10/_._",
  6153. "ref/MonoAndroid10/_._",
  6154. "ref/MonoTouch10/_._",
  6155. "ref/net46/System.Reflection.TypeExtensions.dll",
  6156. "ref/net462/System.Reflection.TypeExtensions.dll",
  6157. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6158. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6159. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6160. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6161. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6162. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6163. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6164. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6165. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6166. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6167. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6168. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6169. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6170. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6171. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6172. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6173. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6174. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6175. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6176. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6177. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6178. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6179. "ref/xamarinios10/_._",
  6180. "ref/xamarinmac20/_._",
  6181. "ref/xamarintvos10/_._",
  6182. "ref/xamarinwatchos10/_._",
  6183. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6184. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6185. "system.reflection.typeextensions.nuspec"
  6186. ]
  6187. },
  6188. "System.Resources.Extensions/4.6.0-preview8.19405.3": {
  6189. "sha512": "6GWlVqlVxY8bHHD2SSoWmI8o86BJXZT8LSadE8BIbUa5UzHYi95WFnYU6Xaif58D6fduDN/Dv0ZOindx4L7YYA==",
  6190. "type": "package",
  6191. "path": "system.resources.extensions/4.6.0-preview8.19405.3",
  6192. "files": [
  6193. ".nupkg.metadata",
  6194. ".signature.p7s",
  6195. "LICENSE.TXT",
  6196. "THIRD-PARTY-NOTICES.TXT",
  6197. "lib/netstandard2.0/System.Resources.Extensions.dll",
  6198. "lib/netstandard2.0/System.Resources.Extensions.xml",
  6199. "ref/netstandard2.0/System.Resources.Extensions.dll",
  6200. "system.resources.extensions.4.6.0-preview8.19405.3.nupkg.sha512",
  6201. "system.resources.extensions.nuspec",
  6202. "useSharedDesignerContext.txt",
  6203. "version.txt"
  6204. ]
  6205. },
  6206. "System.Resources.ResourceManager/4.3.0": {
  6207. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6208. "type": "package",
  6209. "path": "system.resources.resourcemanager/4.3.0",
  6210. "files": [
  6211. ".nupkg.metadata",
  6212. ".signature.p7s",
  6213. "ThirdPartyNotices.txt",
  6214. "dotnet_library_license.txt",
  6215. "lib/MonoAndroid10/_._",
  6216. "lib/MonoTouch10/_._",
  6217. "lib/net45/_._",
  6218. "lib/portable-net45+win8+wp8+wpa81/_._",
  6219. "lib/win8/_._",
  6220. "lib/wp80/_._",
  6221. "lib/wpa81/_._",
  6222. "lib/xamarinios10/_._",
  6223. "lib/xamarinmac20/_._",
  6224. "lib/xamarintvos10/_._",
  6225. "lib/xamarinwatchos10/_._",
  6226. "ref/MonoAndroid10/_._",
  6227. "ref/MonoTouch10/_._",
  6228. "ref/net45/_._",
  6229. "ref/netcore50/System.Resources.ResourceManager.dll",
  6230. "ref/netcore50/System.Resources.ResourceManager.xml",
  6231. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6232. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6233. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6234. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6235. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6236. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6237. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6238. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6239. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6240. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6241. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6242. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6243. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6244. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6245. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6246. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6247. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6248. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6249. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6250. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6251. "ref/portable-net45+win8+wp8+wpa81/_._",
  6252. "ref/win8/_._",
  6253. "ref/wp80/_._",
  6254. "ref/wpa81/_._",
  6255. "ref/xamarinios10/_._",
  6256. "ref/xamarinmac20/_._",
  6257. "ref/xamarintvos10/_._",
  6258. "ref/xamarinwatchos10/_._",
  6259. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6260. "system.resources.resourcemanager.nuspec"
  6261. ]
  6262. },
  6263. "System.Runtime/4.3.0": {
  6264. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6265. "type": "package",
  6266. "path": "system.runtime/4.3.0",
  6267. "files": [
  6268. ".nupkg.metadata",
  6269. ".signature.p7s",
  6270. "ThirdPartyNotices.txt",
  6271. "dotnet_library_license.txt",
  6272. "lib/MonoAndroid10/_._",
  6273. "lib/MonoTouch10/_._",
  6274. "lib/net45/_._",
  6275. "lib/net462/System.Runtime.dll",
  6276. "lib/portable-net45+win8+wp80+wpa81/_._",
  6277. "lib/win8/_._",
  6278. "lib/wp80/_._",
  6279. "lib/wpa81/_._",
  6280. "lib/xamarinios10/_._",
  6281. "lib/xamarinmac20/_._",
  6282. "lib/xamarintvos10/_._",
  6283. "lib/xamarinwatchos10/_._",
  6284. "ref/MonoAndroid10/_._",
  6285. "ref/MonoTouch10/_._",
  6286. "ref/net45/_._",
  6287. "ref/net462/System.Runtime.dll",
  6288. "ref/netcore50/System.Runtime.dll",
  6289. "ref/netcore50/System.Runtime.xml",
  6290. "ref/netcore50/de/System.Runtime.xml",
  6291. "ref/netcore50/es/System.Runtime.xml",
  6292. "ref/netcore50/fr/System.Runtime.xml",
  6293. "ref/netcore50/it/System.Runtime.xml",
  6294. "ref/netcore50/ja/System.Runtime.xml",
  6295. "ref/netcore50/ko/System.Runtime.xml",
  6296. "ref/netcore50/ru/System.Runtime.xml",
  6297. "ref/netcore50/zh-hans/System.Runtime.xml",
  6298. "ref/netcore50/zh-hant/System.Runtime.xml",
  6299. "ref/netstandard1.0/System.Runtime.dll",
  6300. "ref/netstandard1.0/System.Runtime.xml",
  6301. "ref/netstandard1.0/de/System.Runtime.xml",
  6302. "ref/netstandard1.0/es/System.Runtime.xml",
  6303. "ref/netstandard1.0/fr/System.Runtime.xml",
  6304. "ref/netstandard1.0/it/System.Runtime.xml",
  6305. "ref/netstandard1.0/ja/System.Runtime.xml",
  6306. "ref/netstandard1.0/ko/System.Runtime.xml",
  6307. "ref/netstandard1.0/ru/System.Runtime.xml",
  6308. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6309. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6310. "ref/netstandard1.2/System.Runtime.dll",
  6311. "ref/netstandard1.2/System.Runtime.xml",
  6312. "ref/netstandard1.2/de/System.Runtime.xml",
  6313. "ref/netstandard1.2/es/System.Runtime.xml",
  6314. "ref/netstandard1.2/fr/System.Runtime.xml",
  6315. "ref/netstandard1.2/it/System.Runtime.xml",
  6316. "ref/netstandard1.2/ja/System.Runtime.xml",
  6317. "ref/netstandard1.2/ko/System.Runtime.xml",
  6318. "ref/netstandard1.2/ru/System.Runtime.xml",
  6319. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6320. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6321. "ref/netstandard1.3/System.Runtime.dll",
  6322. "ref/netstandard1.3/System.Runtime.xml",
  6323. "ref/netstandard1.3/de/System.Runtime.xml",
  6324. "ref/netstandard1.3/es/System.Runtime.xml",
  6325. "ref/netstandard1.3/fr/System.Runtime.xml",
  6326. "ref/netstandard1.3/it/System.Runtime.xml",
  6327. "ref/netstandard1.3/ja/System.Runtime.xml",
  6328. "ref/netstandard1.3/ko/System.Runtime.xml",
  6329. "ref/netstandard1.3/ru/System.Runtime.xml",
  6330. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6331. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6332. "ref/netstandard1.5/System.Runtime.dll",
  6333. "ref/netstandard1.5/System.Runtime.xml",
  6334. "ref/netstandard1.5/de/System.Runtime.xml",
  6335. "ref/netstandard1.5/es/System.Runtime.xml",
  6336. "ref/netstandard1.5/fr/System.Runtime.xml",
  6337. "ref/netstandard1.5/it/System.Runtime.xml",
  6338. "ref/netstandard1.5/ja/System.Runtime.xml",
  6339. "ref/netstandard1.5/ko/System.Runtime.xml",
  6340. "ref/netstandard1.5/ru/System.Runtime.xml",
  6341. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6342. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6343. "ref/portable-net45+win8+wp80+wpa81/_._",
  6344. "ref/win8/_._",
  6345. "ref/wp80/_._",
  6346. "ref/wpa81/_._",
  6347. "ref/xamarinios10/_._",
  6348. "ref/xamarinmac20/_._",
  6349. "ref/xamarintvos10/_._",
  6350. "ref/xamarinwatchos10/_._",
  6351. "system.runtime.4.3.0.nupkg.sha512",
  6352. "system.runtime.nuspec"
  6353. ]
  6354. },
  6355. "System.Runtime.CompilerServices.Unsafe/4.7.0": {
  6356. "sha512": "IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
  6357. "type": "package",
  6358. "path": "system.runtime.compilerservices.unsafe/4.7.0",
  6359. "files": [
  6360. ".nupkg.metadata",
  6361. ".signature.p7s",
  6362. "LICENSE.TXT",
  6363. "THIRD-PARTY-NOTICES.TXT",
  6364. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6365. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6366. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6367. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6368. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6369. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6370. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6371. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6372. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6373. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6374. "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
  6375. "system.runtime.compilerservices.unsafe.nuspec",
  6376. "useSharedDesignerContext.txt",
  6377. "version.txt"
  6378. ]
  6379. },
  6380. "System.Runtime.Extensions/4.3.0": {
  6381. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6382. "type": "package",
  6383. "path": "system.runtime.extensions/4.3.0",
  6384. "files": [
  6385. ".nupkg.metadata",
  6386. ".signature.p7s",
  6387. "ThirdPartyNotices.txt",
  6388. "dotnet_library_license.txt",
  6389. "lib/MonoAndroid10/_._",
  6390. "lib/MonoTouch10/_._",
  6391. "lib/net45/_._",
  6392. "lib/net462/System.Runtime.Extensions.dll",
  6393. "lib/portable-net45+win8+wp8+wpa81/_._",
  6394. "lib/win8/_._",
  6395. "lib/wp80/_._",
  6396. "lib/wpa81/_._",
  6397. "lib/xamarinios10/_._",
  6398. "lib/xamarinmac20/_._",
  6399. "lib/xamarintvos10/_._",
  6400. "lib/xamarinwatchos10/_._",
  6401. "ref/MonoAndroid10/_._",
  6402. "ref/MonoTouch10/_._",
  6403. "ref/net45/_._",
  6404. "ref/net462/System.Runtime.Extensions.dll",
  6405. "ref/netcore50/System.Runtime.Extensions.dll",
  6406. "ref/netcore50/System.Runtime.Extensions.xml",
  6407. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6408. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6409. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6410. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6411. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6412. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6413. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6414. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6415. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6416. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6417. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6418. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6419. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6420. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6421. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6422. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6423. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6424. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6425. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6426. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6427. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6428. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6429. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6430. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6431. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6432. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6433. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6434. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6435. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6436. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6437. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6438. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6439. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6440. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6441. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6442. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6443. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6444. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6445. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6446. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6447. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6448. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6449. "ref/portable-net45+win8+wp8+wpa81/_._",
  6450. "ref/win8/_._",
  6451. "ref/wp80/_._",
  6452. "ref/wpa81/_._",
  6453. "ref/xamarinios10/_._",
  6454. "ref/xamarinmac20/_._",
  6455. "ref/xamarintvos10/_._",
  6456. "ref/xamarinwatchos10/_._",
  6457. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6458. "system.runtime.extensions.nuspec"
  6459. ]
  6460. },
  6461. "System.Runtime.Handles/4.3.0": {
  6462. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6463. "type": "package",
  6464. "path": "system.runtime.handles/4.3.0",
  6465. "files": [
  6466. ".nupkg.metadata",
  6467. ".signature.p7s",
  6468. "ThirdPartyNotices.txt",
  6469. "dotnet_library_license.txt",
  6470. "lib/MonoAndroid10/_._",
  6471. "lib/MonoTouch10/_._",
  6472. "lib/net46/_._",
  6473. "lib/xamarinios10/_._",
  6474. "lib/xamarinmac20/_._",
  6475. "lib/xamarintvos10/_._",
  6476. "lib/xamarinwatchos10/_._",
  6477. "ref/MonoAndroid10/_._",
  6478. "ref/MonoTouch10/_._",
  6479. "ref/net46/_._",
  6480. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6481. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6482. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6483. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6484. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6485. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6486. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6487. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6488. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6489. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6490. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6491. "ref/xamarinios10/_._",
  6492. "ref/xamarinmac20/_._",
  6493. "ref/xamarintvos10/_._",
  6494. "ref/xamarinwatchos10/_._",
  6495. "system.runtime.handles.4.3.0.nupkg.sha512",
  6496. "system.runtime.handles.nuspec"
  6497. ]
  6498. },
  6499. "System.Runtime.InteropServices/4.3.0": {
  6500. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6501. "type": "package",
  6502. "path": "system.runtime.interopservices/4.3.0",
  6503. "files": [
  6504. ".nupkg.metadata",
  6505. ".signature.p7s",
  6506. "ThirdPartyNotices.txt",
  6507. "dotnet_library_license.txt",
  6508. "lib/MonoAndroid10/_._",
  6509. "lib/MonoTouch10/_._",
  6510. "lib/net45/_._",
  6511. "lib/net462/System.Runtime.InteropServices.dll",
  6512. "lib/net463/System.Runtime.InteropServices.dll",
  6513. "lib/portable-net45+win8+wpa81/_._",
  6514. "lib/win8/_._",
  6515. "lib/wpa81/_._",
  6516. "lib/xamarinios10/_._",
  6517. "lib/xamarinmac20/_._",
  6518. "lib/xamarintvos10/_._",
  6519. "lib/xamarinwatchos10/_._",
  6520. "ref/MonoAndroid10/_._",
  6521. "ref/MonoTouch10/_._",
  6522. "ref/net45/_._",
  6523. "ref/net462/System.Runtime.InteropServices.dll",
  6524. "ref/net463/System.Runtime.InteropServices.dll",
  6525. "ref/netcore50/System.Runtime.InteropServices.dll",
  6526. "ref/netcore50/System.Runtime.InteropServices.xml",
  6527. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6528. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6529. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6530. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6531. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6532. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6533. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6534. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6535. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6536. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6537. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6538. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6539. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6540. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6541. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6542. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6543. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6544. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6545. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6546. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6547. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6548. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6549. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6550. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6551. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6552. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6553. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6554. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6555. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6556. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6557. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6558. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6559. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6560. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6561. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6562. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6563. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6564. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6565. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6566. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6567. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6568. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6569. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6570. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6571. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6572. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6573. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6574. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6575. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6576. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6577. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6578. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6579. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6580. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6581. "ref/portable-net45+win8+wpa81/_._",
  6582. "ref/win8/_._",
  6583. "ref/wpa81/_._",
  6584. "ref/xamarinios10/_._",
  6585. "ref/xamarinmac20/_._",
  6586. "ref/xamarintvos10/_._",
  6587. "ref/xamarinwatchos10/_._",
  6588. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6589. "system.runtime.interopservices.nuspec"
  6590. ]
  6591. },
  6592. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6593. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6594. "type": "package",
  6595. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6596. "files": [
  6597. ".nupkg.metadata",
  6598. ".signature.p7s",
  6599. "ThirdPartyNotices.txt",
  6600. "dotnet_library_license.txt",
  6601. "lib/MonoAndroid10/_._",
  6602. "lib/MonoTouch10/_._",
  6603. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6604. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6605. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6606. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6607. "lib/xamarinios10/_._",
  6608. "lib/xamarinmac20/_._",
  6609. "lib/xamarintvos10/_._",
  6610. "lib/xamarinwatchos10/_._",
  6611. "ref/MonoAndroid10/_._",
  6612. "ref/MonoTouch10/_._",
  6613. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6614. "ref/xamarinios10/_._",
  6615. "ref/xamarinmac20/_._",
  6616. "ref/xamarintvos10/_._",
  6617. "ref/xamarinwatchos10/_._",
  6618. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6619. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6620. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6621. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6622. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6623. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6624. "system.runtime.interopservices.runtimeinformation.nuspec"
  6625. ]
  6626. },
  6627. "System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
  6628. "sha512": "oIIXM4w2y3MiEZEXA+RTtfPV+SZ1ymbFdWppHlUciNdNIL0/Uo3HW9q9iN2O7T7KUmRdvjA7C2Gv4exAyW4zEQ==",
  6629. "type": "package",
  6630. "path": "system.runtime.interopservices.windowsruntime/4.0.1",
  6631. "files": [
  6632. ".nupkg.metadata",
  6633. ".signature.p7s",
  6634. "ThirdPartyNotices.txt",
  6635. "dotnet_library_license.txt",
  6636. "lib/net45/_._",
  6637. "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  6638. "lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll",
  6639. "lib/portable-net45+win8+wp8+wpa81/_._",
  6640. "lib/win8/_._",
  6641. "lib/wp80/_._",
  6642. "lib/wpa81/_._",
  6643. "lib/xamarinios1/_._",
  6644. "ref/net45/_._",
  6645. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  6646. "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
  6647. "ref/netcore50/de/System.Runtime.InteropServices.WindowsRuntime.xml",
  6648. "ref/netcore50/es/System.Runtime.InteropServices.WindowsRuntime.xml",
  6649. "ref/netcore50/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
  6650. "ref/netcore50/it/System.Runtime.InteropServices.WindowsRuntime.xml",
  6651. "ref/netcore50/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
  6652. "ref/netcore50/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
  6653. "ref/netcore50/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
  6654. "ref/netcore50/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
  6655. "ref/netcore50/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
  6656. "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll",
  6657. "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.xml",
  6658. "ref/netstandard1.0/de/System.Runtime.InteropServices.WindowsRuntime.xml",
  6659. "ref/netstandard1.0/es/System.Runtime.InteropServices.WindowsRuntime.xml",
  6660. "ref/netstandard1.0/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
  6661. "ref/netstandard1.0/it/System.Runtime.InteropServices.WindowsRuntime.xml",
  6662. "ref/netstandard1.0/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
  6663. "ref/netstandard1.0/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
  6664. "ref/netstandard1.0/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
  6665. "ref/netstandard1.0/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
  6666. "ref/netstandard1.0/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
  6667. "ref/portable-net45+win8+wp8+wpa81/_._",
  6668. "ref/win8/_._",
  6669. "ref/wp80/_._",
  6670. "ref/wpa81/_._",
  6671. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
  6672. "system.runtime.interopservices.windowsruntime.4.0.1.nupkg.sha512",
  6673. "system.runtime.interopservices.windowsruntime.nuspec"
  6674. ]
  6675. },
  6676. "System.Runtime.Numerics/4.3.0": {
  6677. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6678. "type": "package",
  6679. "path": "system.runtime.numerics/4.3.0",
  6680. "files": [
  6681. ".nupkg.metadata",
  6682. ".signature.p7s",
  6683. "ThirdPartyNotices.txt",
  6684. "dotnet_library_license.txt",
  6685. "lib/MonoAndroid10/_._",
  6686. "lib/MonoTouch10/_._",
  6687. "lib/net45/_._",
  6688. "lib/netcore50/System.Runtime.Numerics.dll",
  6689. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6690. "lib/portable-net45+win8+wpa81/_._",
  6691. "lib/win8/_._",
  6692. "lib/wpa81/_._",
  6693. "lib/xamarinios10/_._",
  6694. "lib/xamarinmac20/_._",
  6695. "lib/xamarintvos10/_._",
  6696. "lib/xamarinwatchos10/_._",
  6697. "ref/MonoAndroid10/_._",
  6698. "ref/MonoTouch10/_._",
  6699. "ref/net45/_._",
  6700. "ref/netcore50/System.Runtime.Numerics.dll",
  6701. "ref/netcore50/System.Runtime.Numerics.xml",
  6702. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6703. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6704. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6705. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6706. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6707. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6708. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6709. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6710. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6711. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6712. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6713. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6714. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6715. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6716. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6717. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6718. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6719. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6720. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6721. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6722. "ref/portable-net45+win8+wpa81/_._",
  6723. "ref/win8/_._",
  6724. "ref/wpa81/_._",
  6725. "ref/xamarinios10/_._",
  6726. "ref/xamarinmac20/_._",
  6727. "ref/xamarintvos10/_._",
  6728. "ref/xamarinwatchos10/_._",
  6729. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6730. "system.runtime.numerics.nuspec"
  6731. ]
  6732. },
  6733. "System.Runtime.Serialization.Primitives/4.3.0": {
  6734. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  6735. "type": "package",
  6736. "path": "system.runtime.serialization.primitives/4.3.0",
  6737. "files": [
  6738. ".nupkg.metadata",
  6739. ".signature.p7s",
  6740. "ThirdPartyNotices.txt",
  6741. "dotnet_library_license.txt",
  6742. "lib/MonoAndroid10/_._",
  6743. "lib/MonoTouch10/_._",
  6744. "lib/net45/_._",
  6745. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  6746. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6747. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6748. "lib/portable-net45+win8+wp8+wpa81/_._",
  6749. "lib/win8/_._",
  6750. "lib/wp80/_._",
  6751. "lib/wpa81/_._",
  6752. "lib/xamarinios10/_._",
  6753. "lib/xamarinmac20/_._",
  6754. "lib/xamarintvos10/_._",
  6755. "lib/xamarinwatchos10/_._",
  6756. "ref/MonoAndroid10/_._",
  6757. "ref/MonoTouch10/_._",
  6758. "ref/net45/_._",
  6759. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  6760. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  6761. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  6762. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  6763. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  6764. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  6765. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  6766. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  6767. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  6768. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  6769. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6770. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6771. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  6772. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  6773. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  6774. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  6775. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  6776. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  6777. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  6778. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  6779. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  6780. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6781. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6782. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6783. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  6784. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  6785. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  6786. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  6787. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  6788. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  6789. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  6790. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  6791. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6792. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6793. "ref/portable-net45+win8+wp8+wpa81/_._",
  6794. "ref/win8/_._",
  6795. "ref/wp80/_._",
  6796. "ref/wpa81/_._",
  6797. "ref/xamarinios10/_._",
  6798. "ref/xamarinmac20/_._",
  6799. "ref/xamarintvos10/_._",
  6800. "ref/xamarinwatchos10/_._",
  6801. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6802. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  6803. "system.runtime.serialization.primitives.nuspec"
  6804. ]
  6805. },
  6806. "System.Security.AccessControl/4.4.0": {
  6807. "sha512": "2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
  6808. "type": "package",
  6809. "path": "system.security.accesscontrol/4.4.0",
  6810. "files": [
  6811. ".nupkg.metadata",
  6812. ".signature.p7s",
  6813. "LICENSE.TXT",
  6814. "THIRD-PARTY-NOTICES.TXT",
  6815. "lib/net46/System.Security.AccessControl.dll",
  6816. "lib/net461/System.Security.AccessControl.dll",
  6817. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6818. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6819. "ref/net46/System.Security.AccessControl.dll",
  6820. "ref/net461/System.Security.AccessControl.dll",
  6821. "ref/net461/System.Security.AccessControl.xml",
  6822. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6823. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6824. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6825. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6826. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6827. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6828. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6829. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6830. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6831. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6832. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6833. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6834. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6835. "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6836. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6837. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6838. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6839. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6840. "system.security.accesscontrol.4.4.0.nupkg.sha512",
  6841. "system.security.accesscontrol.nuspec",
  6842. "useSharedDesignerContext.txt",
  6843. "version.txt"
  6844. ]
  6845. },
  6846. "System.Security.Cryptography.Algorithms/4.3.0": {
  6847. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6848. "type": "package",
  6849. "path": "system.security.cryptography.algorithms/4.3.0",
  6850. "files": [
  6851. ".nupkg.metadata",
  6852. ".signature.p7s",
  6853. "ThirdPartyNotices.txt",
  6854. "dotnet_library_license.txt",
  6855. "lib/MonoAndroid10/_._",
  6856. "lib/MonoTouch10/_._",
  6857. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6858. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6859. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6860. "lib/xamarinios10/_._",
  6861. "lib/xamarinmac20/_._",
  6862. "lib/xamarintvos10/_._",
  6863. "lib/xamarinwatchos10/_._",
  6864. "ref/MonoAndroid10/_._",
  6865. "ref/MonoTouch10/_._",
  6866. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6867. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6868. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6869. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6870. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6871. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6872. "ref/xamarinios10/_._",
  6873. "ref/xamarinmac20/_._",
  6874. "ref/xamarintvos10/_._",
  6875. "ref/xamarinwatchos10/_._",
  6876. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6877. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6878. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6879. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6880. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6881. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6882. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6883. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6884. "system.security.cryptography.algorithms.nuspec"
  6885. ]
  6886. },
  6887. "System.Security.Cryptography.Cng/4.5.0": {
  6888. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6889. "type": "package",
  6890. "path": "system.security.cryptography.cng/4.5.0",
  6891. "files": [
  6892. ".nupkg.metadata",
  6893. ".signature.p7s",
  6894. "LICENSE.TXT",
  6895. "THIRD-PARTY-NOTICES.TXT",
  6896. "lib/MonoAndroid10/_._",
  6897. "lib/MonoTouch10/_._",
  6898. "lib/net46/System.Security.Cryptography.Cng.dll",
  6899. "lib/net461/System.Security.Cryptography.Cng.dll",
  6900. "lib/net462/System.Security.Cryptography.Cng.dll",
  6901. "lib/net47/System.Security.Cryptography.Cng.dll",
  6902. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6903. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6904. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6905. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6906. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6907. "lib/uap10.0.16299/_._",
  6908. "lib/xamarinios10/_._",
  6909. "lib/xamarinmac20/_._",
  6910. "lib/xamarintvos10/_._",
  6911. "lib/xamarinwatchos10/_._",
  6912. "ref/MonoAndroid10/_._",
  6913. "ref/MonoTouch10/_._",
  6914. "ref/net46/System.Security.Cryptography.Cng.dll",
  6915. "ref/net461/System.Security.Cryptography.Cng.dll",
  6916. "ref/net461/System.Security.Cryptography.Cng.xml",
  6917. "ref/net462/System.Security.Cryptography.Cng.dll",
  6918. "ref/net462/System.Security.Cryptography.Cng.xml",
  6919. "ref/net47/System.Security.Cryptography.Cng.dll",
  6920. "ref/net47/System.Security.Cryptography.Cng.xml",
  6921. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6922. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6923. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6924. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6925. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6926. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6927. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6928. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6929. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6930. "ref/uap10.0.16299/_._",
  6931. "ref/xamarinios10/_._",
  6932. "ref/xamarinmac20/_._",
  6933. "ref/xamarintvos10/_._",
  6934. "ref/xamarinwatchos10/_._",
  6935. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6936. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6937. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6938. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6939. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6940. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6941. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6942. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6943. "runtimes/win/lib/uap10.0.16299/_._",
  6944. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6945. "system.security.cryptography.cng.nuspec",
  6946. "useSharedDesignerContext.txt",
  6947. "version.txt"
  6948. ]
  6949. },
  6950. "System.Security.Cryptography.Csp/4.3.0": {
  6951. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  6952. "type": "package",
  6953. "path": "system.security.cryptography.csp/4.3.0",
  6954. "files": [
  6955. ".nupkg.metadata",
  6956. ".signature.p7s",
  6957. "ThirdPartyNotices.txt",
  6958. "dotnet_library_license.txt",
  6959. "lib/MonoAndroid10/_._",
  6960. "lib/MonoTouch10/_._",
  6961. "lib/net46/System.Security.Cryptography.Csp.dll",
  6962. "lib/xamarinios10/_._",
  6963. "lib/xamarinmac20/_._",
  6964. "lib/xamarintvos10/_._",
  6965. "lib/xamarinwatchos10/_._",
  6966. "ref/MonoAndroid10/_._",
  6967. "ref/MonoTouch10/_._",
  6968. "ref/net46/System.Security.Cryptography.Csp.dll",
  6969. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6970. "ref/xamarinios10/_._",
  6971. "ref/xamarinmac20/_._",
  6972. "ref/xamarintvos10/_._",
  6973. "ref/xamarinwatchos10/_._",
  6974. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6975. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6976. "runtimes/win/lib/netcore50/_._",
  6977. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6978. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  6979. "system.security.cryptography.csp.nuspec"
  6980. ]
  6981. },
  6982. "System.Security.Cryptography.Encoding/4.3.0": {
  6983. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  6984. "type": "package",
  6985. "path": "system.security.cryptography.encoding/4.3.0",
  6986. "files": [
  6987. ".nupkg.metadata",
  6988. ".signature.p7s",
  6989. "ThirdPartyNotices.txt",
  6990. "dotnet_library_license.txt",
  6991. "lib/MonoAndroid10/_._",
  6992. "lib/MonoTouch10/_._",
  6993. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6994. "lib/xamarinios10/_._",
  6995. "lib/xamarinmac20/_._",
  6996. "lib/xamarintvos10/_._",
  6997. "lib/xamarinwatchos10/_._",
  6998. "ref/MonoAndroid10/_._",
  6999. "ref/MonoTouch10/_._",
  7000. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7001. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7002. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7003. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7004. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7005. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7006. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7007. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7008. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7009. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7010. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7011. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7012. "ref/xamarinios10/_._",
  7013. "ref/xamarinmac20/_._",
  7014. "ref/xamarintvos10/_._",
  7015. "ref/xamarinwatchos10/_._",
  7016. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7017. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7018. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7019. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7020. "system.security.cryptography.encoding.nuspec"
  7021. ]
  7022. },
  7023. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7024. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7025. "type": "package",
  7026. "path": "system.security.cryptography.openssl/4.3.0",
  7027. "files": [
  7028. ".nupkg.metadata",
  7029. ".signature.p7s",
  7030. "ThirdPartyNotices.txt",
  7031. "dotnet_library_license.txt",
  7032. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7033. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7034. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7035. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7036. "system.security.cryptography.openssl.nuspec"
  7037. ]
  7038. },
  7039. "System.Security.Cryptography.Primitives/4.3.0": {
  7040. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7041. "type": "package",
  7042. "path": "system.security.cryptography.primitives/4.3.0",
  7043. "files": [
  7044. ".nupkg.metadata",
  7045. ".signature.p7s",
  7046. "ThirdPartyNotices.txt",
  7047. "dotnet_library_license.txt",
  7048. "lib/MonoAndroid10/_._",
  7049. "lib/MonoTouch10/_._",
  7050. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7051. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7052. "lib/xamarinios10/_._",
  7053. "lib/xamarinmac20/_._",
  7054. "lib/xamarintvos10/_._",
  7055. "lib/xamarinwatchos10/_._",
  7056. "ref/MonoAndroid10/_._",
  7057. "ref/MonoTouch10/_._",
  7058. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7059. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7060. "ref/xamarinios10/_._",
  7061. "ref/xamarinmac20/_._",
  7062. "ref/xamarintvos10/_._",
  7063. "ref/xamarinwatchos10/_._",
  7064. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7065. "system.security.cryptography.primitives.nuspec"
  7066. ]
  7067. },
  7068. "System.Security.Cryptography.ProtectedData/4.4.0": {
  7069. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  7070. "type": "package",
  7071. "path": "system.security.cryptography.protecteddata/4.4.0",
  7072. "files": [
  7073. ".nupkg.metadata",
  7074. ".signature.p7s",
  7075. "LICENSE.TXT",
  7076. "THIRD-PARTY-NOTICES.TXT",
  7077. "lib/MonoAndroid10/_._",
  7078. "lib/MonoTouch10/_._",
  7079. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7080. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7081. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7082. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7083. "lib/xamarinios10/_._",
  7084. "lib/xamarinmac20/_._",
  7085. "lib/xamarintvos10/_._",
  7086. "lib/xamarinwatchos10/_._",
  7087. "ref/MonoAndroid10/_._",
  7088. "ref/MonoTouch10/_._",
  7089. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7090. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7091. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7092. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7093. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7094. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7095. "ref/xamarinios10/_._",
  7096. "ref/xamarinmac20/_._",
  7097. "ref/xamarintvos10/_._",
  7098. "ref/xamarinwatchos10/_._",
  7099. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7100. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7101. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7102. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7103. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  7104. "system.security.cryptography.protecteddata.nuspec",
  7105. "useSharedDesignerContext.txt",
  7106. "version.txt"
  7107. ]
  7108. },
  7109. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7110. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7111. "type": "package",
  7112. "path": "system.security.cryptography.x509certificates/4.3.0",
  7113. "files": [
  7114. ".nupkg.metadata",
  7115. ".signature.p7s",
  7116. "ThirdPartyNotices.txt",
  7117. "dotnet_library_license.txt",
  7118. "lib/MonoAndroid10/_._",
  7119. "lib/MonoTouch10/_._",
  7120. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7121. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7122. "lib/xamarinios10/_._",
  7123. "lib/xamarinmac20/_._",
  7124. "lib/xamarintvos10/_._",
  7125. "lib/xamarinwatchos10/_._",
  7126. "ref/MonoAndroid10/_._",
  7127. "ref/MonoTouch10/_._",
  7128. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7129. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7130. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7131. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7132. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7133. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7134. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7135. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7136. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7137. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7138. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7139. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7140. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7141. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7142. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7143. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7144. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7145. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7146. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7147. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7148. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7149. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7150. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7151. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7152. "ref/xamarinios10/_._",
  7153. "ref/xamarinmac20/_._",
  7154. "ref/xamarintvos10/_._",
  7155. "ref/xamarinwatchos10/_._",
  7156. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7157. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7158. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7159. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7160. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7161. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7162. "system.security.cryptography.x509certificates.nuspec"
  7163. ]
  7164. },
  7165. "System.Security.Permissions/4.4.1": {
  7166. "sha512": "l8IxQ9mEAkKv85uoEcjcYhrh+yTLZtLgNqb2T7QChTdKXh45EUnmKd+Ckdt1D+VYW2dk2Pb5MT+0zwQ74Jd2Xg==",
  7167. "type": "package",
  7168. "path": "system.security.permissions/4.4.1",
  7169. "files": [
  7170. ".nupkg.metadata",
  7171. ".signature.p7s",
  7172. "LICENSE.TXT",
  7173. "THIRD-PARTY-NOTICES.TXT",
  7174. "lib/net461/System.Security.Permissions.dll",
  7175. "lib/netstandard2.0/System.Security.Permissions.dll",
  7176. "ref/net461/System.Security.Permissions.dll",
  7177. "ref/netstandard2.0/System.Security.Permissions.dll",
  7178. "ref/netstandard2.0/System.Security.Permissions.xml",
  7179. "system.security.permissions.4.4.1.nupkg.sha512",
  7180. "system.security.permissions.nuspec",
  7181. "useSharedDesignerContext.txt",
  7182. "version.txt"
  7183. ]
  7184. },
  7185. "System.Security.Principal.Windows/4.4.0": {
  7186. "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
  7187. "type": "package",
  7188. "path": "system.security.principal.windows/4.4.0",
  7189. "files": [
  7190. ".nupkg.metadata",
  7191. ".signature.p7s",
  7192. "LICENSE.TXT",
  7193. "THIRD-PARTY-NOTICES.TXT",
  7194. "lib/net46/System.Security.Principal.Windows.dll",
  7195. "lib/net461/System.Security.Principal.Windows.dll",
  7196. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7197. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7198. "ref/net46/System.Security.Principal.Windows.dll",
  7199. "ref/net461/System.Security.Principal.Windows.dll",
  7200. "ref/net461/System.Security.Principal.Windows.xml",
  7201. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7202. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7203. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7204. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7205. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7206. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7207. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7208. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7209. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7210. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7211. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7212. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7213. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7214. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7215. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7216. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7217. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7218. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7219. "system.security.principal.windows.4.4.0.nupkg.sha512",
  7220. "system.security.principal.windows.nuspec",
  7221. "useSharedDesignerContext.txt",
  7222. "version.txt"
  7223. ]
  7224. },
  7225. "System.ServiceModel.Duplex/4.4.4": {
  7226. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  7227. "type": "package",
  7228. "path": "system.servicemodel.duplex/4.4.4",
  7229. "files": [
  7230. ".nupkg.metadata",
  7231. ".signature.p7s",
  7232. "LICENSE.TXT",
  7233. "THIRD-PARTY-NOTICES.TXT",
  7234. "lib/MonoAndroid10/_._",
  7235. "lib/MonoTouch10/_._",
  7236. "lib/net45/_._",
  7237. "lib/net461/System.ServiceModel.Duplex.dll",
  7238. "lib/netcore50/System.ServiceModel.Duplex.dll",
  7239. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  7240. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  7241. "lib/portable-net45+win8/_._",
  7242. "lib/win8/_._",
  7243. "lib/xamarinios10/_._",
  7244. "lib/xamarinmac20/_._",
  7245. "lib/xamarintvos10/_._",
  7246. "lib/xamarinwatchos10/_._",
  7247. "ref/MonoAndroid10/_._",
  7248. "ref/MonoTouch10/_._",
  7249. "ref/net45/_._",
  7250. "ref/net461/System.ServiceModel.Duplex.dll",
  7251. "ref/netcore50/System.ServiceModel.Duplex.dll",
  7252. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  7253. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  7254. "ref/portable-net45+win8/_._",
  7255. "ref/win8/_._",
  7256. "ref/xamarinios10/_._",
  7257. "ref/xamarinmac20/_._",
  7258. "ref/xamarintvos10/_._",
  7259. "ref/xamarinwatchos10/_._",
  7260. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  7261. "system.servicemodel.duplex.nuspec",
  7262. "version.txt"
  7263. ]
  7264. },
  7265. "System.ServiceModel.Http/4.4.4": {
  7266. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  7267. "type": "package",
  7268. "path": "system.servicemodel.http/4.4.4",
  7269. "files": [
  7270. ".nupkg.metadata",
  7271. ".signature.p7s",
  7272. "LICENSE.TXT",
  7273. "THIRD-PARTY-NOTICES.TXT",
  7274. "lib/MonoAndroid10/_._",
  7275. "lib/MonoTouch10/_._",
  7276. "lib/net45/_._",
  7277. "lib/net46/System.ServiceModel.Http.dll",
  7278. "lib/net461/System.ServiceModel.Http.dll",
  7279. "lib/netcore50/System.ServiceModel.Http.dll",
  7280. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  7281. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  7282. "lib/portable-net45+win8+wp8/_._",
  7283. "lib/win8/_._",
  7284. "lib/wp8/_._",
  7285. "lib/xamarinios10/_._",
  7286. "lib/xamarinmac20/_._",
  7287. "lib/xamarintvos10/_._",
  7288. "lib/xamarinwatchos10/_._",
  7289. "ref/MonoAndroid10/_._",
  7290. "ref/MonoTouch10/_._",
  7291. "ref/net45/_._",
  7292. "ref/net46/System.ServiceModel.Http.dll",
  7293. "ref/net461/System.ServiceModel.Http.dll",
  7294. "ref/netcore50/System.ServiceModel.Http.dll",
  7295. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  7296. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  7297. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  7298. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  7299. "ref/portable-net45+win8+wp8/_._",
  7300. "ref/win8/_._",
  7301. "ref/wp8/_._",
  7302. "ref/xamarinios10/_._",
  7303. "ref/xamarinmac20/_._",
  7304. "ref/xamarintvos10/_._",
  7305. "ref/xamarinwatchos10/_._",
  7306. "system.servicemodel.http.4.4.4.nupkg.sha512",
  7307. "system.servicemodel.http.nuspec",
  7308. "version.txt"
  7309. ]
  7310. },
  7311. "System.ServiceModel.NetTcp/4.4.4": {
  7312. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  7313. "type": "package",
  7314. "path": "system.servicemodel.nettcp/4.4.4",
  7315. "files": [
  7316. ".nupkg.metadata",
  7317. ".signature.p7s",
  7318. "LICENSE.TXT",
  7319. "THIRD-PARTY-NOTICES.TXT",
  7320. "lib/MonoAndroid10/_._",
  7321. "lib/MonoTouch10/_._",
  7322. "lib/net45/_._",
  7323. "lib/net46/System.ServiceModel.NetTcp.dll",
  7324. "lib/net461/System.ServiceModel.NetTcp.dll",
  7325. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  7326. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  7327. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  7328. "lib/portable-net45+win8/_._",
  7329. "lib/win8/_._",
  7330. "lib/xamarinios10/_._",
  7331. "lib/xamarinmac20/_._",
  7332. "lib/xamarintvos10/_._",
  7333. "lib/xamarinwatchos10/_._",
  7334. "ref/MonoAndroid10/_._",
  7335. "ref/MonoTouch10/_._",
  7336. "ref/net45/_._",
  7337. "ref/net46/System.ServiceModel.NetTcp.dll",
  7338. "ref/net461/System.ServiceModel.NetTcp.dll",
  7339. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  7340. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  7341. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  7342. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  7343. "ref/portable-net45+win8/_._",
  7344. "ref/win8/_._",
  7345. "ref/xamarinios10/_._",
  7346. "ref/xamarinmac20/_._",
  7347. "ref/xamarintvos10/_._",
  7348. "ref/xamarinwatchos10/_._",
  7349. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  7350. "system.servicemodel.nettcp.nuspec",
  7351. "version.txt"
  7352. ]
  7353. },
  7354. "System.ServiceModel.Primitives/4.4.4": {
  7355. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  7356. "type": "package",
  7357. "path": "system.servicemodel.primitives/4.4.4",
  7358. "files": [
  7359. ".nupkg.metadata",
  7360. ".signature.p7s",
  7361. "LICENSE.TXT",
  7362. "THIRD-PARTY-NOTICES.TXT",
  7363. "lib/MonoAndroid10/_._",
  7364. "lib/MonoTouch10/_._",
  7365. "lib/net45/_._",
  7366. "lib/net46/System.ServiceModel.Primitives.dll",
  7367. "lib/net461/System.ServiceModel.Primitives.dll",
  7368. "lib/netcore50/System.ServiceModel.Primitives.dll",
  7369. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  7370. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  7371. "lib/netstandard2.0/System.ServiceModel.dll",
  7372. "lib/portable-net45+win8+wp8/_._",
  7373. "lib/win8/_._",
  7374. "lib/wp8/_._",
  7375. "lib/xamarinios10/_._",
  7376. "lib/xamarinmac20/_._",
  7377. "lib/xamarintvos10/_._",
  7378. "lib/xamarinwatchos10/_._",
  7379. "ref/MonoAndroid10/_._",
  7380. "ref/MonoTouch10/_._",
  7381. "ref/net45/_._",
  7382. "ref/net46/System.ServiceModel.Primitives.dll",
  7383. "ref/net461/System.ServiceModel.Primitives.dll",
  7384. "ref/netcore50/System.ServiceModel.Primitives.dll",
  7385. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  7386. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  7387. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  7388. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  7389. "ref/netstandard2.0/System.ServiceModel.dll",
  7390. "ref/portable-net45+win8+wp8/_._",
  7391. "ref/win8/_._",
  7392. "ref/wp8/_._",
  7393. "ref/xamarinios10/_._",
  7394. "ref/xamarinmac20/_._",
  7395. "ref/xamarintvos10/_._",
  7396. "ref/xamarinwatchos10/_._",
  7397. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  7398. "system.servicemodel.primitives.nuspec",
  7399. "version.txt"
  7400. ]
  7401. },
  7402. "System.ServiceModel.Security/4.4.4": {
  7403. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  7404. "type": "package",
  7405. "path": "system.servicemodel.security/4.4.4",
  7406. "files": [
  7407. ".nupkg.metadata",
  7408. ".signature.p7s",
  7409. "LICENSE.TXT",
  7410. "THIRD-PARTY-NOTICES.TXT",
  7411. "lib/MonoAndroid10/_._",
  7412. "lib/MonoTouch10/_._",
  7413. "lib/net45/_._",
  7414. "lib/netcore50/System.ServiceModel.Security.dll",
  7415. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  7416. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  7417. "lib/portable-net45+win8+wp8/_._",
  7418. "lib/win8/_._",
  7419. "lib/wp8/_._",
  7420. "lib/xamarinios10/_._",
  7421. "lib/xamarinmac20/_._",
  7422. "lib/xamarintvos10/_._",
  7423. "lib/xamarinwatchos10/_._",
  7424. "ref/MonoAndroid10/_._",
  7425. "ref/MonoTouch10/_._",
  7426. "ref/net45/_._",
  7427. "ref/netcore50/System.ServiceModel.Security.dll",
  7428. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  7429. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  7430. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  7431. "ref/portable-net45+win8+wp8/_._",
  7432. "ref/win8/_._",
  7433. "ref/wp8/_._",
  7434. "ref/xamarinios10/_._",
  7435. "ref/xamarinmac20/_._",
  7436. "ref/xamarintvos10/_._",
  7437. "ref/xamarinwatchos10/_._",
  7438. "system.servicemodel.security.4.4.4.nupkg.sha512",
  7439. "system.servicemodel.security.nuspec",
  7440. "version.txt"
  7441. ]
  7442. },
  7443. "System.Text.Encoding/4.3.0": {
  7444. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7445. "type": "package",
  7446. "path": "system.text.encoding/4.3.0",
  7447. "files": [
  7448. ".nupkg.metadata",
  7449. ".signature.p7s",
  7450. "ThirdPartyNotices.txt",
  7451. "dotnet_library_license.txt",
  7452. "lib/MonoAndroid10/_._",
  7453. "lib/MonoTouch10/_._",
  7454. "lib/net45/_._",
  7455. "lib/portable-net45+win8+wp8+wpa81/_._",
  7456. "lib/win8/_._",
  7457. "lib/wp80/_._",
  7458. "lib/wpa81/_._",
  7459. "lib/xamarinios10/_._",
  7460. "lib/xamarinmac20/_._",
  7461. "lib/xamarintvos10/_._",
  7462. "lib/xamarinwatchos10/_._",
  7463. "ref/MonoAndroid10/_._",
  7464. "ref/MonoTouch10/_._",
  7465. "ref/net45/_._",
  7466. "ref/netcore50/System.Text.Encoding.dll",
  7467. "ref/netcore50/System.Text.Encoding.xml",
  7468. "ref/netcore50/de/System.Text.Encoding.xml",
  7469. "ref/netcore50/es/System.Text.Encoding.xml",
  7470. "ref/netcore50/fr/System.Text.Encoding.xml",
  7471. "ref/netcore50/it/System.Text.Encoding.xml",
  7472. "ref/netcore50/ja/System.Text.Encoding.xml",
  7473. "ref/netcore50/ko/System.Text.Encoding.xml",
  7474. "ref/netcore50/ru/System.Text.Encoding.xml",
  7475. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7476. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7477. "ref/netstandard1.0/System.Text.Encoding.dll",
  7478. "ref/netstandard1.0/System.Text.Encoding.xml",
  7479. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7480. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7481. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7482. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7483. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7484. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7485. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7486. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7487. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7488. "ref/netstandard1.3/System.Text.Encoding.dll",
  7489. "ref/netstandard1.3/System.Text.Encoding.xml",
  7490. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7491. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7492. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7493. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7494. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7495. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7496. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7497. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7498. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7499. "ref/portable-net45+win8+wp8+wpa81/_._",
  7500. "ref/win8/_._",
  7501. "ref/wp80/_._",
  7502. "ref/wpa81/_._",
  7503. "ref/xamarinios10/_._",
  7504. "ref/xamarinmac20/_._",
  7505. "ref/xamarintvos10/_._",
  7506. "ref/xamarinwatchos10/_._",
  7507. "system.text.encoding.4.3.0.nupkg.sha512",
  7508. "system.text.encoding.nuspec"
  7509. ]
  7510. },
  7511. "System.Text.Encoding.CodePages/4.5.0": {
  7512. "sha512": "S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==",
  7513. "type": "package",
  7514. "path": "system.text.encoding.codepages/4.5.0",
  7515. "files": [
  7516. ".nupkg.metadata",
  7517. ".signature.p7s",
  7518. "LICENSE.TXT",
  7519. "THIRD-PARTY-NOTICES.TXT",
  7520. "lib/MonoAndroid10/_._",
  7521. "lib/MonoTouch10/_._",
  7522. "lib/net46/System.Text.Encoding.CodePages.dll",
  7523. "lib/net461/System.Text.Encoding.CodePages.dll",
  7524. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7525. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7526. "lib/xamarinios10/_._",
  7527. "lib/xamarinmac20/_._",
  7528. "lib/xamarintvos10/_._",
  7529. "lib/xamarinwatchos10/_._",
  7530. "ref/MonoAndroid10/_._",
  7531. "ref/MonoTouch10/_._",
  7532. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7533. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  7534. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  7535. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  7536. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  7537. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  7538. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  7539. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  7540. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  7541. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  7542. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  7543. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7544. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7545. "ref/xamarinios10/_._",
  7546. "ref/xamarinmac20/_._",
  7547. "ref/xamarintvos10/_._",
  7548. "ref/xamarinwatchos10/_._",
  7549. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7550. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7551. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7552. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7553. "system.text.encoding.codepages.4.5.0.nupkg.sha512",
  7554. "system.text.encoding.codepages.nuspec",
  7555. "useSharedDesignerContext.txt",
  7556. "version.txt"
  7557. ]
  7558. },
  7559. "System.Text.Encoding.Extensions/4.3.0": {
  7560. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7561. "type": "package",
  7562. "path": "system.text.encoding.extensions/4.3.0",
  7563. "files": [
  7564. ".nupkg.metadata",
  7565. ".signature.p7s",
  7566. "ThirdPartyNotices.txt",
  7567. "dotnet_library_license.txt",
  7568. "lib/MonoAndroid10/_._",
  7569. "lib/MonoTouch10/_._",
  7570. "lib/net45/_._",
  7571. "lib/portable-net45+win8+wp8+wpa81/_._",
  7572. "lib/win8/_._",
  7573. "lib/wp80/_._",
  7574. "lib/wpa81/_._",
  7575. "lib/xamarinios10/_._",
  7576. "lib/xamarinmac20/_._",
  7577. "lib/xamarintvos10/_._",
  7578. "lib/xamarinwatchos10/_._",
  7579. "ref/MonoAndroid10/_._",
  7580. "ref/MonoTouch10/_._",
  7581. "ref/net45/_._",
  7582. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7583. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7584. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7585. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7586. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7587. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7588. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7589. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7590. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7591. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7592. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7593. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7594. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7595. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7596. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7597. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7598. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7599. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7600. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7601. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7602. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7603. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7604. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7605. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7606. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7607. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7608. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7609. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7610. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7611. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7612. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7613. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7614. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7615. "ref/portable-net45+win8+wp8+wpa81/_._",
  7616. "ref/win8/_._",
  7617. "ref/wp80/_._",
  7618. "ref/wpa81/_._",
  7619. "ref/xamarinios10/_._",
  7620. "ref/xamarinmac20/_._",
  7621. "ref/xamarintvos10/_._",
  7622. "ref/xamarinwatchos10/_._",
  7623. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7624. "system.text.encoding.extensions.nuspec"
  7625. ]
  7626. },
  7627. "System.Text.RegularExpressions/4.3.0": {
  7628. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7629. "type": "package",
  7630. "path": "system.text.regularexpressions/4.3.0",
  7631. "files": [
  7632. ".nupkg.metadata",
  7633. ".signature.p7s",
  7634. "ThirdPartyNotices.txt",
  7635. "dotnet_library_license.txt",
  7636. "lib/MonoAndroid10/_._",
  7637. "lib/MonoTouch10/_._",
  7638. "lib/net45/_._",
  7639. "lib/net463/System.Text.RegularExpressions.dll",
  7640. "lib/netcore50/System.Text.RegularExpressions.dll",
  7641. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7642. "lib/portable-net45+win8+wp8+wpa81/_._",
  7643. "lib/win8/_._",
  7644. "lib/wp80/_._",
  7645. "lib/wpa81/_._",
  7646. "lib/xamarinios10/_._",
  7647. "lib/xamarinmac20/_._",
  7648. "lib/xamarintvos10/_._",
  7649. "lib/xamarinwatchos10/_._",
  7650. "ref/MonoAndroid10/_._",
  7651. "ref/MonoTouch10/_._",
  7652. "ref/net45/_._",
  7653. "ref/net463/System.Text.RegularExpressions.dll",
  7654. "ref/netcore50/System.Text.RegularExpressions.dll",
  7655. "ref/netcore50/System.Text.RegularExpressions.xml",
  7656. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7657. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7658. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7659. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7660. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7661. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7662. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7663. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7664. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7665. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7666. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7667. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7668. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7669. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7670. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7671. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7672. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7673. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7674. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7675. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7676. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7677. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7678. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7679. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7680. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7681. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7682. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7683. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7684. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7685. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7686. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7687. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7688. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7689. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7690. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7691. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7692. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7693. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7694. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7695. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7696. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7697. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7698. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7699. "ref/portable-net45+win8+wp8+wpa81/_._",
  7700. "ref/win8/_._",
  7701. "ref/wp80/_._",
  7702. "ref/wpa81/_._",
  7703. "ref/xamarinios10/_._",
  7704. "ref/xamarinmac20/_._",
  7705. "ref/xamarintvos10/_._",
  7706. "ref/xamarinwatchos10/_._",
  7707. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7708. "system.text.regularexpressions.nuspec"
  7709. ]
  7710. },
  7711. "System.Threading/4.3.0": {
  7712. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7713. "type": "package",
  7714. "path": "system.threading/4.3.0",
  7715. "files": [
  7716. ".nupkg.metadata",
  7717. ".signature.p7s",
  7718. "ThirdPartyNotices.txt",
  7719. "dotnet_library_license.txt",
  7720. "lib/MonoAndroid10/_._",
  7721. "lib/MonoTouch10/_._",
  7722. "lib/net45/_._",
  7723. "lib/netcore50/System.Threading.dll",
  7724. "lib/netstandard1.3/System.Threading.dll",
  7725. "lib/portable-net45+win8+wp8+wpa81/_._",
  7726. "lib/win8/_._",
  7727. "lib/wp80/_._",
  7728. "lib/wpa81/_._",
  7729. "lib/xamarinios10/_._",
  7730. "lib/xamarinmac20/_._",
  7731. "lib/xamarintvos10/_._",
  7732. "lib/xamarinwatchos10/_._",
  7733. "ref/MonoAndroid10/_._",
  7734. "ref/MonoTouch10/_._",
  7735. "ref/net45/_._",
  7736. "ref/netcore50/System.Threading.dll",
  7737. "ref/netcore50/System.Threading.xml",
  7738. "ref/netcore50/de/System.Threading.xml",
  7739. "ref/netcore50/es/System.Threading.xml",
  7740. "ref/netcore50/fr/System.Threading.xml",
  7741. "ref/netcore50/it/System.Threading.xml",
  7742. "ref/netcore50/ja/System.Threading.xml",
  7743. "ref/netcore50/ko/System.Threading.xml",
  7744. "ref/netcore50/ru/System.Threading.xml",
  7745. "ref/netcore50/zh-hans/System.Threading.xml",
  7746. "ref/netcore50/zh-hant/System.Threading.xml",
  7747. "ref/netstandard1.0/System.Threading.dll",
  7748. "ref/netstandard1.0/System.Threading.xml",
  7749. "ref/netstandard1.0/de/System.Threading.xml",
  7750. "ref/netstandard1.0/es/System.Threading.xml",
  7751. "ref/netstandard1.0/fr/System.Threading.xml",
  7752. "ref/netstandard1.0/it/System.Threading.xml",
  7753. "ref/netstandard1.0/ja/System.Threading.xml",
  7754. "ref/netstandard1.0/ko/System.Threading.xml",
  7755. "ref/netstandard1.0/ru/System.Threading.xml",
  7756. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7757. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7758. "ref/netstandard1.3/System.Threading.dll",
  7759. "ref/netstandard1.3/System.Threading.xml",
  7760. "ref/netstandard1.3/de/System.Threading.xml",
  7761. "ref/netstandard1.3/es/System.Threading.xml",
  7762. "ref/netstandard1.3/fr/System.Threading.xml",
  7763. "ref/netstandard1.3/it/System.Threading.xml",
  7764. "ref/netstandard1.3/ja/System.Threading.xml",
  7765. "ref/netstandard1.3/ko/System.Threading.xml",
  7766. "ref/netstandard1.3/ru/System.Threading.xml",
  7767. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7768. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7769. "ref/portable-net45+win8+wp8+wpa81/_._",
  7770. "ref/win8/_._",
  7771. "ref/wp80/_._",
  7772. "ref/wpa81/_._",
  7773. "ref/xamarinios10/_._",
  7774. "ref/xamarinmac20/_._",
  7775. "ref/xamarintvos10/_._",
  7776. "ref/xamarinwatchos10/_._",
  7777. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7778. "system.threading.4.3.0.nupkg.sha512",
  7779. "system.threading.nuspec"
  7780. ]
  7781. },
  7782. "System.Threading.Channels/4.7.1": {
  7783. "sha512": "6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==",
  7784. "type": "package",
  7785. "path": "system.threading.channels/4.7.1",
  7786. "files": [
  7787. ".nupkg.metadata",
  7788. ".signature.p7s",
  7789. "Icon.png",
  7790. "LICENSE.TXT",
  7791. "THIRD-PARTY-NOTICES.TXT",
  7792. "lib/net461/System.Threading.Channels.dll",
  7793. "lib/net461/System.Threading.Channels.xml",
  7794. "lib/netcoreapp3.0/System.Threading.Channels.dll",
  7795. "lib/netcoreapp3.0/System.Threading.Channels.xml",
  7796. "lib/netstandard1.3/System.Threading.Channels.dll",
  7797. "lib/netstandard1.3/System.Threading.Channels.xml",
  7798. "lib/netstandard2.0/System.Threading.Channels.dll",
  7799. "lib/netstandard2.0/System.Threading.Channels.xml",
  7800. "system.threading.channels.4.7.1.nupkg.sha512",
  7801. "system.threading.channels.nuspec",
  7802. "useSharedDesignerContext.txt",
  7803. "version.txt"
  7804. ]
  7805. },
  7806. "System.Threading.Tasks/4.3.0": {
  7807. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7808. "type": "package",
  7809. "path": "system.threading.tasks/4.3.0",
  7810. "files": [
  7811. ".nupkg.metadata",
  7812. ".signature.p7s",
  7813. "ThirdPartyNotices.txt",
  7814. "dotnet_library_license.txt",
  7815. "lib/MonoAndroid10/_._",
  7816. "lib/MonoTouch10/_._",
  7817. "lib/net45/_._",
  7818. "lib/portable-net45+win8+wp8+wpa81/_._",
  7819. "lib/win8/_._",
  7820. "lib/wp80/_._",
  7821. "lib/wpa81/_._",
  7822. "lib/xamarinios10/_._",
  7823. "lib/xamarinmac20/_._",
  7824. "lib/xamarintvos10/_._",
  7825. "lib/xamarinwatchos10/_._",
  7826. "ref/MonoAndroid10/_._",
  7827. "ref/MonoTouch10/_._",
  7828. "ref/net45/_._",
  7829. "ref/netcore50/System.Threading.Tasks.dll",
  7830. "ref/netcore50/System.Threading.Tasks.xml",
  7831. "ref/netcore50/de/System.Threading.Tasks.xml",
  7832. "ref/netcore50/es/System.Threading.Tasks.xml",
  7833. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7834. "ref/netcore50/it/System.Threading.Tasks.xml",
  7835. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7836. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7837. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7838. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7839. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7840. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7841. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7842. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7843. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7844. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7845. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7846. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7847. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7848. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7849. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7850. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7851. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7852. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7853. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7854. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7855. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7856. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7857. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7858. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7859. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7860. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7861. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7862. "ref/portable-net45+win8+wp8+wpa81/_._",
  7863. "ref/win8/_._",
  7864. "ref/wp80/_._",
  7865. "ref/wpa81/_._",
  7866. "ref/xamarinios10/_._",
  7867. "ref/xamarinmac20/_._",
  7868. "ref/xamarintvos10/_._",
  7869. "ref/xamarinwatchos10/_._",
  7870. "system.threading.tasks.4.3.0.nupkg.sha512",
  7871. "system.threading.tasks.nuspec"
  7872. ]
  7873. },
  7874. "System.Threading.Tasks.Extensions/4.3.0": {
  7875. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  7876. "type": "package",
  7877. "path": "system.threading.tasks.extensions/4.3.0",
  7878. "files": [
  7879. ".nupkg.metadata",
  7880. ".signature.p7s",
  7881. "ThirdPartyNotices.txt",
  7882. "dotnet_library_license.txt",
  7883. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7884. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7885. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7886. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7887. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  7888. "system.threading.tasks.extensions.nuspec"
  7889. ]
  7890. },
  7891. "System.Threading.Thread/4.3.0": {
  7892. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  7893. "type": "package",
  7894. "path": "system.threading.thread/4.3.0",
  7895. "files": [
  7896. ".nupkg.metadata",
  7897. ".signature.p7s",
  7898. "ThirdPartyNotices.txt",
  7899. "dotnet_library_license.txt",
  7900. "lib/MonoAndroid10/_._",
  7901. "lib/MonoTouch10/_._",
  7902. "lib/net46/System.Threading.Thread.dll",
  7903. "lib/netcore50/_._",
  7904. "lib/netstandard1.3/System.Threading.Thread.dll",
  7905. "lib/xamarinios10/_._",
  7906. "lib/xamarinmac20/_._",
  7907. "lib/xamarintvos10/_._",
  7908. "lib/xamarinwatchos10/_._",
  7909. "ref/MonoAndroid10/_._",
  7910. "ref/MonoTouch10/_._",
  7911. "ref/net46/System.Threading.Thread.dll",
  7912. "ref/netstandard1.3/System.Threading.Thread.dll",
  7913. "ref/netstandard1.3/System.Threading.Thread.xml",
  7914. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  7915. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  7916. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  7917. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  7918. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  7919. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  7920. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  7921. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  7922. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  7923. "ref/xamarinios10/_._",
  7924. "ref/xamarinmac20/_._",
  7925. "ref/xamarintvos10/_._",
  7926. "ref/xamarinwatchos10/_._",
  7927. "system.threading.thread.4.3.0.nupkg.sha512",
  7928. "system.threading.thread.nuspec"
  7929. ]
  7930. },
  7931. "System.Threading.ThreadPool/4.0.10": {
  7932. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  7933. "type": "package",
  7934. "path": "system.threading.threadpool/4.0.10",
  7935. "files": [
  7936. ".nupkg.metadata",
  7937. ".signature.p7s",
  7938. "ThirdPartyNotices.txt",
  7939. "dotnet_library_license.txt",
  7940. "lib/MonoAndroid10/_._",
  7941. "lib/MonoTouch10/_._",
  7942. "lib/net46/System.Threading.ThreadPool.dll",
  7943. "lib/netcore50/_._",
  7944. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  7945. "lib/xamarinios10/_._",
  7946. "lib/xamarinmac20/_._",
  7947. "lib/xamarintvos10/_._",
  7948. "lib/xamarinwatchos10/_._",
  7949. "ref/MonoAndroid10/_._",
  7950. "ref/MonoTouch10/_._",
  7951. "ref/net46/System.Threading.ThreadPool.dll",
  7952. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  7953. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  7954. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  7955. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  7956. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  7957. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  7958. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  7959. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  7960. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  7961. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  7962. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  7963. "ref/xamarinios10/_._",
  7964. "ref/xamarinmac20/_._",
  7965. "ref/xamarintvos10/_._",
  7966. "ref/xamarinwatchos10/_._",
  7967. "system.threading.threadpool.4.0.10.nupkg.sha512",
  7968. "system.threading.threadpool.nuspec"
  7969. ]
  7970. },
  7971. "System.Threading.Timer/4.3.0": {
  7972. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  7973. "type": "package",
  7974. "path": "system.threading.timer/4.3.0",
  7975. "files": [
  7976. ".nupkg.metadata",
  7977. ".signature.p7s",
  7978. "ThirdPartyNotices.txt",
  7979. "dotnet_library_license.txt",
  7980. "lib/MonoAndroid10/_._",
  7981. "lib/MonoTouch10/_._",
  7982. "lib/net451/_._",
  7983. "lib/portable-net451+win81+wpa81/_._",
  7984. "lib/win81/_._",
  7985. "lib/wpa81/_._",
  7986. "lib/xamarinios10/_._",
  7987. "lib/xamarinmac20/_._",
  7988. "lib/xamarintvos10/_._",
  7989. "lib/xamarinwatchos10/_._",
  7990. "ref/MonoAndroid10/_._",
  7991. "ref/MonoTouch10/_._",
  7992. "ref/net451/_._",
  7993. "ref/netcore50/System.Threading.Timer.dll",
  7994. "ref/netcore50/System.Threading.Timer.xml",
  7995. "ref/netcore50/de/System.Threading.Timer.xml",
  7996. "ref/netcore50/es/System.Threading.Timer.xml",
  7997. "ref/netcore50/fr/System.Threading.Timer.xml",
  7998. "ref/netcore50/it/System.Threading.Timer.xml",
  7999. "ref/netcore50/ja/System.Threading.Timer.xml",
  8000. "ref/netcore50/ko/System.Threading.Timer.xml",
  8001. "ref/netcore50/ru/System.Threading.Timer.xml",
  8002. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8003. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8004. "ref/netstandard1.2/System.Threading.Timer.dll",
  8005. "ref/netstandard1.2/System.Threading.Timer.xml",
  8006. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8007. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8008. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8009. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8010. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8011. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8012. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8013. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8014. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8015. "ref/portable-net451+win81+wpa81/_._",
  8016. "ref/win81/_._",
  8017. "ref/wpa81/_._",
  8018. "ref/xamarinios10/_._",
  8019. "ref/xamarinmac20/_._",
  8020. "ref/xamarintvos10/_._",
  8021. "ref/xamarinwatchos10/_._",
  8022. "system.threading.timer.4.3.0.nupkg.sha512",
  8023. "system.threading.timer.nuspec"
  8024. ]
  8025. },
  8026. "System.ValueTuple/4.5.0": {
  8027. "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
  8028. "type": "package",
  8029. "path": "system.valuetuple/4.5.0",
  8030. "files": [
  8031. ".nupkg.metadata",
  8032. ".signature.p7s",
  8033. "LICENSE.TXT",
  8034. "THIRD-PARTY-NOTICES.TXT",
  8035. "lib/MonoAndroid10/_._",
  8036. "lib/MonoTouch10/_._",
  8037. "lib/net461/System.ValueTuple.dll",
  8038. "lib/net461/System.ValueTuple.xml",
  8039. "lib/net47/System.ValueTuple.dll",
  8040. "lib/net47/System.ValueTuple.xml",
  8041. "lib/netcoreapp2.0/_._",
  8042. "lib/netstandard1.0/System.ValueTuple.dll",
  8043. "lib/netstandard1.0/System.ValueTuple.xml",
  8044. "lib/netstandard2.0/_._",
  8045. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  8046. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
  8047. "lib/uap10.0.16299/_._",
  8048. "lib/xamarinios10/_._",
  8049. "lib/xamarinmac20/_._",
  8050. "lib/xamarintvos10/_._",
  8051. "lib/xamarinwatchos10/_._",
  8052. "ref/MonoAndroid10/_._",
  8053. "ref/MonoTouch10/_._",
  8054. "ref/net461/System.ValueTuple.dll",
  8055. "ref/net47/System.ValueTuple.dll",
  8056. "ref/netcoreapp2.0/_._",
  8057. "ref/netstandard2.0/_._",
  8058. "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  8059. "ref/uap10.0.16299/_._",
  8060. "ref/xamarinios10/_._",
  8061. "ref/xamarinmac20/_._",
  8062. "ref/xamarintvos10/_._",
  8063. "ref/xamarinwatchos10/_._",
  8064. "system.valuetuple.4.5.0.nupkg.sha512",
  8065. "system.valuetuple.nuspec",
  8066. "useSharedDesignerContext.txt",
  8067. "version.txt"
  8068. ]
  8069. },
  8070. "System.Xml.ReaderWriter/4.3.0": {
  8071. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8072. "type": "package",
  8073. "path": "system.xml.readerwriter/4.3.0",
  8074. "files": [
  8075. ".nupkg.metadata",
  8076. ".signature.p7s",
  8077. "ThirdPartyNotices.txt",
  8078. "dotnet_library_license.txt",
  8079. "lib/MonoAndroid10/_._",
  8080. "lib/MonoTouch10/_._",
  8081. "lib/net45/_._",
  8082. "lib/net46/System.Xml.ReaderWriter.dll",
  8083. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8084. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8085. "lib/portable-net45+win8+wp8+wpa81/_._",
  8086. "lib/win8/_._",
  8087. "lib/wp80/_._",
  8088. "lib/wpa81/_._",
  8089. "lib/xamarinios10/_._",
  8090. "lib/xamarinmac20/_._",
  8091. "lib/xamarintvos10/_._",
  8092. "lib/xamarinwatchos10/_._",
  8093. "ref/MonoAndroid10/_._",
  8094. "ref/MonoTouch10/_._",
  8095. "ref/net45/_._",
  8096. "ref/net46/System.Xml.ReaderWriter.dll",
  8097. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8098. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8099. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8100. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8101. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8102. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8103. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8104. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8105. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8106. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8107. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8108. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8109. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8110. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8111. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8112. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8113. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8114. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8115. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8116. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8117. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8118. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8119. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8120. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8121. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8122. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8123. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8124. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8125. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8126. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8127. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8128. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8129. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8130. "ref/portable-net45+win8+wp8+wpa81/_._",
  8131. "ref/win8/_._",
  8132. "ref/wp80/_._",
  8133. "ref/wpa81/_._",
  8134. "ref/xamarinios10/_._",
  8135. "ref/xamarinmac20/_._",
  8136. "ref/xamarintvos10/_._",
  8137. "ref/xamarinwatchos10/_._",
  8138. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8139. "system.xml.readerwriter.nuspec"
  8140. ]
  8141. },
  8142. "System.Xml.XDocument/4.3.0": {
  8143. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8144. "type": "package",
  8145. "path": "system.xml.xdocument/4.3.0",
  8146. "files": [
  8147. ".nupkg.metadata",
  8148. ".signature.p7s",
  8149. "ThirdPartyNotices.txt",
  8150. "dotnet_library_license.txt",
  8151. "lib/MonoAndroid10/_._",
  8152. "lib/MonoTouch10/_._",
  8153. "lib/net45/_._",
  8154. "lib/netcore50/System.Xml.XDocument.dll",
  8155. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8156. "lib/portable-net45+win8+wp8+wpa81/_._",
  8157. "lib/win8/_._",
  8158. "lib/wp80/_._",
  8159. "lib/wpa81/_._",
  8160. "lib/xamarinios10/_._",
  8161. "lib/xamarinmac20/_._",
  8162. "lib/xamarintvos10/_._",
  8163. "lib/xamarinwatchos10/_._",
  8164. "ref/MonoAndroid10/_._",
  8165. "ref/MonoTouch10/_._",
  8166. "ref/net45/_._",
  8167. "ref/netcore50/System.Xml.XDocument.dll",
  8168. "ref/netcore50/System.Xml.XDocument.xml",
  8169. "ref/netcore50/de/System.Xml.XDocument.xml",
  8170. "ref/netcore50/es/System.Xml.XDocument.xml",
  8171. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8172. "ref/netcore50/it/System.Xml.XDocument.xml",
  8173. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8174. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8175. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8176. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8177. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8178. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8179. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8180. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8181. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8182. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8183. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8184. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8185. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8186. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8187. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8188. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8189. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8190. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8191. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8192. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8193. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8194. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8195. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8196. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8197. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8198. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8199. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8200. "ref/portable-net45+win8+wp8+wpa81/_._",
  8201. "ref/win8/_._",
  8202. "ref/wp80/_._",
  8203. "ref/wpa81/_._",
  8204. "ref/xamarinios10/_._",
  8205. "ref/xamarinmac20/_._",
  8206. "ref/xamarintvos10/_._",
  8207. "ref/xamarinwatchos10/_._",
  8208. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8209. "system.xml.xdocument.nuspec"
  8210. ]
  8211. },
  8212. "System.Xml.XmlDocument/4.0.1": {
  8213. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  8214. "type": "package",
  8215. "path": "system.xml.xmldocument/4.0.1",
  8216. "files": [
  8217. ".nupkg.metadata",
  8218. ".signature.p7s",
  8219. "ThirdPartyNotices.txt",
  8220. "dotnet_library_license.txt",
  8221. "lib/MonoAndroid10/_._",
  8222. "lib/MonoTouch10/_._",
  8223. "lib/net46/System.Xml.XmlDocument.dll",
  8224. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8225. "lib/xamarinios10/_._",
  8226. "lib/xamarinmac20/_._",
  8227. "lib/xamarintvos10/_._",
  8228. "lib/xamarinwatchos10/_._",
  8229. "ref/MonoAndroid10/_._",
  8230. "ref/MonoTouch10/_._",
  8231. "ref/net46/System.Xml.XmlDocument.dll",
  8232. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8233. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8234. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8235. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8236. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8237. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8238. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8239. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8240. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8241. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8242. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8243. "ref/xamarinios10/_._",
  8244. "ref/xamarinmac20/_._",
  8245. "ref/xamarintvos10/_._",
  8246. "ref/xamarinwatchos10/_._",
  8247. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  8248. "system.xml.xmldocument.nuspec"
  8249. ]
  8250. },
  8251. "System.Xml.XPath/4.0.1": {
  8252. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  8253. "type": "package",
  8254. "path": "system.xml.xpath/4.0.1",
  8255. "files": [
  8256. ".nupkg.metadata",
  8257. ".signature.p7s",
  8258. "ThirdPartyNotices.txt",
  8259. "dotnet_library_license.txt",
  8260. "lib/MonoAndroid10/_._",
  8261. "lib/MonoTouch10/_._",
  8262. "lib/net46/System.Xml.XPath.dll",
  8263. "lib/netstandard1.3/System.Xml.XPath.dll",
  8264. "lib/xamarinios10/_._",
  8265. "lib/xamarinmac20/_._",
  8266. "lib/xamarintvos10/_._",
  8267. "lib/xamarinwatchos10/_._",
  8268. "ref/MonoAndroid10/_._",
  8269. "ref/MonoTouch10/_._",
  8270. "ref/net46/System.Xml.XPath.dll",
  8271. "ref/netstandard1.3/System.Xml.XPath.dll",
  8272. "ref/netstandard1.3/System.Xml.XPath.xml",
  8273. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  8274. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  8275. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  8276. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  8277. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  8278. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  8279. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  8280. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  8281. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  8282. "ref/xamarinios10/_._",
  8283. "ref/xamarinmac20/_._",
  8284. "ref/xamarintvos10/_._",
  8285. "ref/xamarinwatchos10/_._",
  8286. "system.xml.xpath.4.0.1.nupkg.sha512",
  8287. "system.xml.xpath.nuspec"
  8288. ]
  8289. },
  8290. "System.Xml.XPath.XmlDocument/4.0.1": {
  8291. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  8292. "type": "package",
  8293. "path": "system.xml.xpath.xmldocument/4.0.1",
  8294. "files": [
  8295. ".nupkg.metadata",
  8296. ".signature.p7s",
  8297. "ThirdPartyNotices.txt",
  8298. "dotnet_library_license.txt",
  8299. "lib/MonoAndroid10/_._",
  8300. "lib/MonoTouch10/_._",
  8301. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8302. "lib/xamarinios10/_._",
  8303. "lib/xamarinmac20/_._",
  8304. "lib/xamarintvos10/_._",
  8305. "lib/xamarinwatchos10/_._",
  8306. "ref/MonoAndroid10/_._",
  8307. "ref/MonoTouch10/_._",
  8308. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8309. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  8310. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  8311. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  8312. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  8313. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  8314. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  8315. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  8316. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  8317. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  8318. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  8319. "ref/xamarinios10/_._",
  8320. "ref/xamarinmac20/_._",
  8321. "ref/xamarintvos10/_._",
  8322. "ref/xamarinwatchos10/_._",
  8323. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  8324. "system.xml.xpath.xmldocument.nuspec"
  8325. ]
  8326. },
  8327. "ZKWeb.System.Drawing/4.0.1": {
  8328. "sha512": "r8OLPZ2cb9SSwjm8GNkMbqOgo58N8d8RwxJN1yF01atv+MQdNOqa5Xx117tIjWUbB6pBnVe6u+pXkYVORaCeWw==",
  8329. "type": "package",
  8330. "path": "zkweb.system.drawing/4.0.1",
  8331. "files": [
  8332. ".nupkg.metadata",
  8333. ".signature.p7s",
  8334. "lib/net45/ZKWeb.System.Drawing.dll",
  8335. "lib/netstandard2.0/ZKWeb.System.Drawing.dll",
  8336. "zkweb.system.drawing.4.0.1.nupkg.sha512",
  8337. "zkweb.system.drawing.nuspec"
  8338. ]
  8339. }
  8340. },
  8341. "projectFileDependencyGroups": {
  8342. ".NETCoreApp,Version=v3.0": [
  8343. "CSRedisCore >= 3.6.5",
  8344. "DotNetCore.NPOI >= 1.2.3",
  8345. "GraphQL >= 2.4.0",
  8346. "Microsoft.AspNetCore.Authentication.JwtBearer >= 3.0.0",
  8347. "Microsoft.EntityFrameworkCore >= 3.1.0",
  8348. "Microsoft.EntityFrameworkCore.Tools >= 3.1.0",
  8349. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 3.1.0",
  8350. "MySql.Data >= 8.0.18",
  8351. "Pomelo.EntityFrameworkCore.MySql >= 3.0.1",
  8352. "RabbitMQ.Client >= 6.2.2",
  8353. "System.Drawing.Common >= 4.7.0",
  8354. "System.ServiceModel.Duplex >= 4.4.*",
  8355. "System.ServiceModel.Http >= 4.4.*",
  8356. "System.ServiceModel.NetTcp >= 4.4.*",
  8357. "System.ServiceModel.Security >= 4.4.*",
  8358. "ZKWeb.System.Drawing >= 4.0.1"
  8359. ]
  8360. },
  8361. "packageFolders": {
  8362. "/Users/lichunlei/.nuget/packages/": {}
  8363. },
  8364. "project": {
  8365. "version": "1.0.0",
  8366. "restore": {
  8367. "projectUniqueName": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/BsServerSub/MySystem.csproj",
  8368. "projectName": "MySystem",
  8369. "projectPath": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/BsServerSub/MySystem.csproj",
  8370. "packagesPath": "/Users/lichunlei/.nuget/packages/",
  8371. "outputPath": "/Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/BsServerSub/obj/",
  8372. "projectStyle": "PackageReference",
  8373. "configFilePaths": [
  8374. "/Users/lichunlei/.nuget/NuGet/NuGet.Config"
  8375. ],
  8376. "originalTargetFrameworks": [
  8377. "netcoreapp3.0"
  8378. ],
  8379. "sources": {
  8380. "https://api.nuget.org/v3/index.json": {}
  8381. },
  8382. "frameworks": {
  8383. "netcoreapp3.0": {
  8384. "projectReferences": {}
  8385. }
  8386. },
  8387. "warningProperties": {
  8388. "warnAsError": [
  8389. "NU1605"
  8390. ]
  8391. }
  8392. },
  8393. "frameworks": {
  8394. "netcoreapp3.0": {
  8395. "dependencies": {
  8396. "CSRedisCore": {
  8397. "target": "Package",
  8398. "version": "[3.6.5, )"
  8399. },
  8400. "DotNetCore.NPOI": {
  8401. "target": "Package",
  8402. "version": "[1.2.3, )"
  8403. },
  8404. "GraphQL": {
  8405. "target": "Package",
  8406. "version": "[2.4.0, )"
  8407. },
  8408. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  8409. "target": "Package",
  8410. "version": "[3.0.0, )"
  8411. },
  8412. "Microsoft.EntityFrameworkCore": {
  8413. "target": "Package",
  8414. "version": "[3.1.0, )"
  8415. },
  8416. "Microsoft.EntityFrameworkCore.Tools": {
  8417. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8418. "suppressParent": "All",
  8419. "target": "Package",
  8420. "version": "[3.1.0, )"
  8421. },
  8422. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  8423. "target": "Package",
  8424. "version": "[3.1.0, )"
  8425. },
  8426. "MySql.Data": {
  8427. "target": "Package",
  8428. "version": "[8.0.18, )"
  8429. },
  8430. "Pomelo.EntityFrameworkCore.MySql": {
  8431. "target": "Package",
  8432. "version": "[3.0.1, )"
  8433. },
  8434. "RabbitMQ.Client": {
  8435. "target": "Package",
  8436. "version": "[6.2.2, )"
  8437. },
  8438. "System.Drawing.Common": {
  8439. "target": "Package",
  8440. "version": "[4.7.0, )"
  8441. },
  8442. "System.ServiceModel.Duplex": {
  8443. "target": "Package",
  8444. "version": "[4.4.*, )"
  8445. },
  8446. "System.ServiceModel.Http": {
  8447. "target": "Package",
  8448. "version": "[4.4.*, )"
  8449. },
  8450. "System.ServiceModel.NetTcp": {
  8451. "target": "Package",
  8452. "version": "[4.4.*, )"
  8453. },
  8454. "System.ServiceModel.Security": {
  8455. "target": "Package",
  8456. "version": "[4.4.*, )"
  8457. },
  8458. "ZKWeb.System.Drawing": {
  8459. "target": "Package",
  8460. "version": "[4.0.1, )"
  8461. }
  8462. },
  8463. "imports": [
  8464. "net461",
  8465. "net462",
  8466. "net47",
  8467. "net471",
  8468. "net472",
  8469. "net48"
  8470. ],
  8471. "assetTargetFallback": true,
  8472. "warn": true,
  8473. "frameworkReferences": {
  8474. "Microsoft.AspNetCore.App": {
  8475. "privateAssets": "none"
  8476. },
  8477. "Microsoft.NETCore.App": {
  8478. "privateAssets": "all"
  8479. }
  8480. },
  8481. "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/3.0.101/RuntimeIdentifierGraph.json"
  8482. }
  8483. }
  8484. },
  8485. "logs": [
  8486. {
  8487. "code": "NU1701",
  8488. "level": "Warning",
  8489. "warningLevel": 1,
  8490. "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.",
  8491. "libraryId": "Microsoft.VisualStudio.Web.CodeGeneration.Design",
  8492. "targetGraphs": [
  8493. ".NETCoreApp,Version=v3.0"
  8494. ]
  8495. }
  8496. ]
  8497. }