No Description

project.assets.json 292KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  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. "EntityFramework/6.1.0": {
  20. "type": "package",
  21. "compile": {
  22. "lib/net45/EntityFramework.SqlServer.dll": {},
  23. "lib/net45/EntityFramework.dll": {}
  24. },
  25. "runtime": {
  26. "lib/net45/EntityFramework.SqlServer.dll": {},
  27. "lib/net45/EntityFramework.dll": {}
  28. }
  29. },
  30. "Google.Protobuf/3.11.4": {
  31. "type": "package",
  32. "dependencies": {
  33. "System.Memory": "4.5.2"
  34. },
  35. "compile": {
  36. "lib/netstandard2.0/Google.Protobuf.dll": {}
  37. },
  38. "runtime": {
  39. "lib/netstandard2.0/Google.Protobuf.dll": {}
  40. }
  41. },
  42. "K4os.Compression.LZ4/1.1.11": {
  43. "type": "package",
  44. "dependencies": {
  45. "System.Memory": "4.5.3"
  46. },
  47. "compile": {
  48. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  49. },
  50. "runtime": {
  51. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  52. }
  53. },
  54. "K4os.Compression.LZ4.Streams/1.1.11": {
  55. "type": "package",
  56. "dependencies": {
  57. "K4os.Compression.LZ4": "1.1.11",
  58. "K4os.Hash.xxHash": "1.0.6"
  59. },
  60. "compile": {
  61. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  62. },
  63. "runtime": {
  64. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  65. }
  66. },
  67. "K4os.Hash.xxHash/1.0.6": {
  68. "type": "package",
  69. "dependencies": {
  70. "System.Memory": "4.5.3"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  77. }
  78. },
  79. "Microsoft.AspNet.Identity.Core/2.2.3": {
  80. "type": "package",
  81. "compile": {
  82. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  83. },
  84. "runtime": {
  85. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  86. }
  87. },
  88. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  89. "type": "package",
  90. "dependencies": {
  91. "EntityFramework": "6.1.0",
  92. "Microsoft.AspNet.Identity.Core": "2.2.3"
  93. },
  94. "compile": {
  95. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  96. },
  97. "runtime": {
  98. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  99. }
  100. },
  101. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  102. "type": "package",
  103. "compile": {
  104. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  108. }
  109. },
  110. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  111. "type": "package",
  112. "dependencies": {
  113. "Microsoft.AspNetCore.Cryptography.Internal": "5.0.10"
  114. },
  115. "compile": {
  116. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  117. },
  118. "runtime": {
  119. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  120. }
  121. },
  122. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  123. "type": "package",
  124. "dependencies": {
  125. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  126. "System.Text.Encodings.Web": "4.5.0"
  127. },
  128. "compile": {
  129. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  130. },
  131. "runtime": {
  132. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  133. }
  134. },
  135. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  136. "type": "package",
  137. "dependencies": {
  138. "Microsoft.Extensions.Primitives": "2.2.0"
  139. },
  140. "compile": {
  141. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  142. },
  143. "runtime": {
  144. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  145. }
  146. },
  147. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  148. "type": "package",
  149. "dependencies": {
  150. "Microsoft.EntityFrameworkCore.Relational": "5.0.10",
  151. "Microsoft.Extensions.Identity.Stores": "5.0.10"
  152. },
  153. "compile": {
  154. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  155. },
  156. "runtime": {
  157. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  158. }
  159. },
  160. "Microsoft.CSharp/4.0.1": {
  161. "type": "package",
  162. "dependencies": {
  163. "System.Collections": "4.0.11",
  164. "System.Diagnostics.Debug": "4.0.11",
  165. "System.Dynamic.Runtime": "4.0.11",
  166. "System.Globalization": "4.0.11",
  167. "System.Linq": "4.1.0",
  168. "System.Linq.Expressions": "4.1.0",
  169. "System.ObjectModel": "4.0.12",
  170. "System.Reflection": "4.1.0",
  171. "System.Reflection.Extensions": "4.0.1",
  172. "System.Reflection.Primitives": "4.0.1",
  173. "System.Reflection.TypeExtensions": "4.1.0",
  174. "System.Resources.ResourceManager": "4.0.1",
  175. "System.Runtime": "4.1.0",
  176. "System.Runtime.Extensions": "4.1.0",
  177. "System.Runtime.InteropServices": "4.1.0",
  178. "System.Threading": "4.0.11"
  179. },
  180. "compile": {
  181. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  182. },
  183. "runtime": {
  184. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  185. }
  186. },
  187. "Microsoft.EntityFrameworkCore/5.0.10": {
  188. "type": "package",
  189. "dependencies": {
  190. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.10",
  191. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.10",
  192. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  193. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  194. "Microsoft.Extensions.Logging": "5.0.0",
  195. "System.Collections.Immutable": "5.0.0",
  196. "System.ComponentModel.Annotations": "5.0.0",
  197. "System.Diagnostics.DiagnosticSource": "5.0.1"
  198. },
  199. "compile": {
  200. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  201. },
  202. "runtime": {
  203. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  204. }
  205. },
  206. "Microsoft.EntityFrameworkCore.Abstractions/5.0.10": {
  207. "type": "package",
  208. "compile": {
  209. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  210. },
  211. "runtime": {
  212. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  213. }
  214. },
  215. "Microsoft.EntityFrameworkCore.Analyzers/5.0.10": {
  216. "type": "package",
  217. "compile": {
  218. "lib/netstandard2.0/_._": {}
  219. },
  220. "runtime": {
  221. "lib/netstandard2.0/_._": {}
  222. }
  223. },
  224. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  225. "type": "package",
  226. "dependencies": {
  227. "Microsoft.EntityFrameworkCore": "5.0.10",
  228. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  229. },
  230. "compile": {
  231. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  232. },
  233. "runtime": {
  234. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  235. }
  236. },
  237. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  238. "type": "package",
  239. "dependencies": {
  240. "Microsoft.Extensions.Primitives": "5.0.0"
  241. },
  242. "compile": {
  243. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  244. },
  245. "runtime": {
  246. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  247. }
  248. },
  249. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  250. "type": "package",
  251. "dependencies": {
  252. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  253. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  254. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  255. "Microsoft.Extensions.Options": "5.0.0",
  256. "Microsoft.Extensions.Primitives": "5.0.0"
  257. },
  258. "compile": {
  259. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  260. },
  261. "runtime": {
  262. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  263. }
  264. },
  265. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  266. "type": "package",
  267. "dependencies": {
  268. "Microsoft.Extensions.Primitives": "6.0.0"
  269. },
  270. "compile": {
  271. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  272. },
  273. "runtime": {
  274. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  275. }
  276. },
  277. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  278. "type": "package",
  279. "dependencies": {
  280. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  281. },
  282. "compile": {
  283. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  284. },
  285. "runtime": {
  286. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  287. }
  288. },
  289. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  290. "type": "package",
  291. "compile": {
  292. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  293. },
  294. "runtime": {
  295. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  296. }
  297. },
  298. "Microsoft.Extensions.Identity.Core/5.0.10": {
  299. "type": "package",
  300. "dependencies": {
  301. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.10",
  302. "Microsoft.Extensions.Logging": "5.0.0",
  303. "Microsoft.Extensions.Options": "5.0.0",
  304. "System.ComponentModel.Annotations": "5.0.0"
  305. },
  306. "compile": {
  307. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  308. },
  309. "runtime": {
  310. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  311. }
  312. },
  313. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  314. "type": "package",
  315. "dependencies": {
  316. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  317. "Microsoft.Extensions.Identity.Core": "5.0.10",
  318. "Microsoft.Extensions.Logging": "5.0.0"
  319. },
  320. "compile": {
  321. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  322. },
  323. "runtime": {
  324. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  325. }
  326. },
  327. "Microsoft.Extensions.Logging/5.0.0": {
  328. "type": "package",
  329. "dependencies": {
  330. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  331. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  332. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  333. "Microsoft.Extensions.Options": "5.0.0",
  334. "System.Diagnostics.DiagnosticSource": "5.0.0"
  335. },
  336. "compile": {
  337. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  338. },
  339. "runtime": {
  340. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  341. }
  342. },
  343. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  344. "type": "package",
  345. "compile": {
  346. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  347. },
  348. "runtime": {
  349. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  350. }
  351. },
  352. "Microsoft.Extensions.Options/5.0.0": {
  353. "type": "package",
  354. "dependencies": {
  355. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  356. "Microsoft.Extensions.Primitives": "5.0.0"
  357. },
  358. "compile": {
  359. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  360. },
  361. "runtime": {
  362. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  363. }
  364. },
  365. "Microsoft.Extensions.Primitives/6.0.0": {
  366. "type": "package",
  367. "dependencies": {
  368. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  369. },
  370. "compile": {
  371. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  372. },
  373. "runtime": {
  374. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  375. },
  376. "build": {
  377. "buildTransitive/netcoreapp3.1/_._": {}
  378. }
  379. },
  380. "Microsoft.NETCore.Platforms/3.1.0": {
  381. "type": "package",
  382. "compile": {
  383. "lib/netstandard1.0/_._": {}
  384. },
  385. "runtime": {
  386. "lib/netstandard1.0/_._": {}
  387. }
  388. },
  389. "Microsoft.NETCore.Targets/1.1.0": {
  390. "type": "package",
  391. "compile": {
  392. "lib/netstandard1.0/_._": {}
  393. },
  394. "runtime": {
  395. "lib/netstandard1.0/_._": {}
  396. }
  397. },
  398. "Microsoft.Win32.Primitives/4.0.1": {
  399. "type": "package",
  400. "dependencies": {
  401. "Microsoft.NETCore.Platforms": "1.0.1",
  402. "Microsoft.NETCore.Targets": "1.0.1",
  403. "System.Runtime": "4.1.0"
  404. },
  405. "compile": {
  406. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  407. }
  408. },
  409. "Microsoft.Win32.Registry/4.7.0": {
  410. "type": "package",
  411. "dependencies": {
  412. "System.Security.AccessControl": "4.7.0",
  413. "System.Security.Principal.Windows": "4.7.0"
  414. },
  415. "compile": {
  416. "ref/netstandard2.0/_._": {}
  417. },
  418. "runtime": {
  419. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  420. },
  421. "runtimeTargets": {
  422. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  423. "assetType": "runtime",
  424. "rid": "unix"
  425. },
  426. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  427. "assetType": "runtime",
  428. "rid": "win"
  429. }
  430. }
  431. },
  432. "Microsoft.Win32.SystemEvents/4.7.0": {
  433. "type": "package",
  434. "dependencies": {
  435. "Microsoft.NETCore.Platforms": "3.1.0"
  436. },
  437. "compile": {
  438. "ref/netstandard2.0/_._": {}
  439. },
  440. "runtime": {
  441. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  442. },
  443. "runtimeTargets": {
  444. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  445. "assetType": "runtime",
  446. "rid": "win"
  447. }
  448. }
  449. },
  450. "MySql.Data/8.0.22": {
  451. "type": "package",
  452. "dependencies": {
  453. "BouncyCastle.NetCore": "1.8.3",
  454. "Google.Protobuf": "3.11.4",
  455. "K4os.Compression.LZ4": "1.1.11",
  456. "K4os.Compression.LZ4.Streams": "1.1.11",
  457. "K4os.Hash.xxHash": "1.0.6",
  458. "SSH.NET": "2016.1.0",
  459. "System.Buffers": "4.5.1",
  460. "System.Configuration.ConfigurationManager": "4.4.1",
  461. "System.Security.Permissions": "4.7.0",
  462. "System.Text.Encoding.CodePages": "4.4.0"
  463. },
  464. "compile": {
  465. "lib/netstandard2.1/MySql.Data.dll": {},
  466. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  467. "lib/netstandard2.1/Zstandard.Net.dll": {}
  468. },
  469. "runtime": {
  470. "lib/netstandard2.1/MySql.Data.dll": {},
  471. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  472. "lib/netstandard2.1/Zstandard.Net.dll": {}
  473. }
  474. },
  475. "MySql.Data.EntityFrameworkCore/8.0.22": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  479. "MySql.Data": "8.0.22"
  480. },
  481. "compile": {
  482. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  486. }
  487. },
  488. "MySqlConnector/1.1.0": {
  489. "type": "package",
  490. "compile": {
  491. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  492. },
  493. "runtime": {
  494. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  495. }
  496. },
  497. "NETStandard.Library/1.6.0": {
  498. "type": "package",
  499. "dependencies": {
  500. "Microsoft.NETCore.Platforms": "1.0.1",
  501. "Microsoft.Win32.Primitives": "4.0.1",
  502. "System.AppContext": "4.1.0",
  503. "System.Collections": "4.0.11",
  504. "System.Collections.Concurrent": "4.0.12",
  505. "System.Console": "4.0.0",
  506. "System.Diagnostics.Debug": "4.0.11",
  507. "System.Diagnostics.Tools": "4.0.1",
  508. "System.Diagnostics.Tracing": "4.1.0",
  509. "System.Globalization": "4.0.11",
  510. "System.Globalization.Calendars": "4.0.1",
  511. "System.IO": "4.1.0",
  512. "System.IO.Compression": "4.1.0",
  513. "System.IO.Compression.ZipFile": "4.0.1",
  514. "System.IO.FileSystem": "4.0.1",
  515. "System.IO.FileSystem.Primitives": "4.0.1",
  516. "System.Linq": "4.1.0",
  517. "System.Linq.Expressions": "4.1.0",
  518. "System.Net.Http": "4.1.0",
  519. "System.Net.Primitives": "4.0.11",
  520. "System.Net.Sockets": "4.1.0",
  521. "System.ObjectModel": "4.0.12",
  522. "System.Reflection": "4.1.0",
  523. "System.Reflection.Extensions": "4.0.1",
  524. "System.Reflection.Primitives": "4.0.1",
  525. "System.Resources.ResourceManager": "4.0.1",
  526. "System.Runtime": "4.1.0",
  527. "System.Runtime.Extensions": "4.1.0",
  528. "System.Runtime.Handles": "4.0.1",
  529. "System.Runtime.InteropServices": "4.1.0",
  530. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  531. "System.Runtime.Numerics": "4.0.1",
  532. "System.Security.Cryptography.Algorithms": "4.2.0",
  533. "System.Security.Cryptography.Encoding": "4.0.0",
  534. "System.Security.Cryptography.Primitives": "4.0.0",
  535. "System.Security.Cryptography.X509Certificates": "4.1.0",
  536. "System.Text.Encoding": "4.0.11",
  537. "System.Text.Encoding.Extensions": "4.0.11",
  538. "System.Text.RegularExpressions": "4.1.0",
  539. "System.Threading": "4.0.11",
  540. "System.Threading.Tasks": "4.0.11",
  541. "System.Threading.Timer": "4.0.1",
  542. "System.Xml.ReaderWriter": "4.0.11",
  543. "System.Xml.XDocument": "4.0.11"
  544. }
  545. },
  546. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  547. "type": "package",
  548. "dependencies": {
  549. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  550. "MySqlConnector": "1.1.0"
  551. },
  552. "compile": {
  553. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  554. },
  555. "runtime": {
  556. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  557. }
  558. },
  559. "runtime.native.System/4.0.0": {
  560. "type": "package",
  561. "dependencies": {
  562. "Microsoft.NETCore.Platforms": "1.0.1",
  563. "Microsoft.NETCore.Targets": "1.0.1"
  564. },
  565. "compile": {
  566. "lib/netstandard1.0/_._": {}
  567. },
  568. "runtime": {
  569. "lib/netstandard1.0/_._": {}
  570. }
  571. },
  572. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  573. "type": "package",
  574. "dependencies": {
  575. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  576. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  577. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  578. }
  579. },
  580. "runtime.native.System.IO.Compression/4.1.0": {
  581. "type": "package",
  582. "dependencies": {
  583. "Microsoft.NETCore.Platforms": "1.0.1",
  584. "Microsoft.NETCore.Targets": "1.0.1"
  585. },
  586. "compile": {
  587. "lib/netstandard1.0/_._": {}
  588. },
  589. "runtime": {
  590. "lib/netstandard1.0/_._": {}
  591. }
  592. },
  593. "runtime.native.System.Net.Http/4.0.1": {
  594. "type": "package",
  595. "dependencies": {
  596. "Microsoft.NETCore.Platforms": "1.0.1",
  597. "Microsoft.NETCore.Targets": "1.0.1"
  598. },
  599. "compile": {
  600. "lib/netstandard1.0/_._": {}
  601. },
  602. "runtime": {
  603. "lib/netstandard1.0/_._": {}
  604. }
  605. },
  606. "runtime.native.System.Security.Cryptography/4.0.0": {
  607. "type": "package",
  608. "dependencies": {
  609. "Microsoft.NETCore.Platforms": "1.0.1",
  610. "Microsoft.NETCore.Targets": "1.0.1"
  611. },
  612. "compile": {
  613. "lib/netstandard1.0/_._": {}
  614. },
  615. "runtime": {
  616. "lib/netstandard1.0/_._": {}
  617. }
  618. },
  619. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  620. "type": "package",
  621. "runtimeTargets": {
  622. "runtimes/win-arm64/native/sni.dll": {
  623. "assetType": "native",
  624. "rid": "win-arm64"
  625. }
  626. }
  627. },
  628. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  629. "type": "package",
  630. "runtimeTargets": {
  631. "runtimes/win-x64/native/sni.dll": {
  632. "assetType": "native",
  633. "rid": "win-x64"
  634. }
  635. }
  636. },
  637. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  638. "type": "package",
  639. "runtimeTargets": {
  640. "runtimes/win-x86/native/sni.dll": {
  641. "assetType": "native",
  642. "rid": "win-x86"
  643. }
  644. }
  645. },
  646. "SSH.NET/2016.1.0": {
  647. "type": "package",
  648. "dependencies": {
  649. "Microsoft.CSharp": "4.0.1",
  650. "SshNet.Security.Cryptography": "[1.2.0]",
  651. "System.Diagnostics.Debug": "4.0.11",
  652. "System.Diagnostics.Tools": "4.0.1",
  653. "System.Diagnostics.TraceSource": "4.0.0",
  654. "System.Globalization": "4.0.11",
  655. "System.IO": "4.1.0",
  656. "System.IO.FileSystem": "4.0.1",
  657. "System.IO.FileSystem.Primitives": "4.0.1",
  658. "System.Linq": "4.1.0",
  659. "System.Net.NameResolution": "4.0.0",
  660. "System.Net.Sockets": "4.1.0",
  661. "System.Reflection.Extensions": "4.0.1",
  662. "System.Runtime.Extensions": "4.1.0",
  663. "System.Security.Cryptography.Algorithms": "4.2.0",
  664. "System.Text.RegularExpressions": "4.1.0",
  665. "System.Threading": "4.0.11",
  666. "System.Threading.Thread": "4.0.0",
  667. "System.Threading.ThreadPool": "4.0.10",
  668. "System.Threading.Timer": "4.0.1",
  669. "System.Xml.XPath.XmlDocument": "4.0.1",
  670. "System.Xml.XmlDocument": "4.0.1"
  671. },
  672. "compile": {
  673. "lib/netstandard1.3/Renci.SshNet.dll": {}
  674. },
  675. "runtime": {
  676. "lib/netstandard1.3/Renci.SshNet.dll": {}
  677. }
  678. },
  679. "SshNet.Security.Cryptography/1.2.0": {
  680. "type": "package",
  681. "dependencies": {
  682. "System.IO": "4.1.0",
  683. "System.Security.Cryptography.Primitives": "4.0.0"
  684. },
  685. "compile": {
  686. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  687. },
  688. "runtime": {
  689. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  690. }
  691. },
  692. "System.AppContext/4.1.0": {
  693. "type": "package",
  694. "dependencies": {
  695. "System.Runtime": "4.1.0"
  696. },
  697. "compile": {
  698. "ref/netstandard1.6/System.AppContext.dll": {}
  699. },
  700. "runtime": {
  701. "lib/netstandard1.6/System.AppContext.dll": {}
  702. }
  703. },
  704. "System.Buffers/4.5.1": {
  705. "type": "package",
  706. "compile": {
  707. "ref/netcoreapp2.0/_._": {}
  708. },
  709. "runtime": {
  710. "lib/netcoreapp2.0/_._": {}
  711. }
  712. },
  713. "System.Collections/4.0.11": {
  714. "type": "package",
  715. "dependencies": {
  716. "Microsoft.NETCore.Platforms": "1.0.1",
  717. "Microsoft.NETCore.Targets": "1.0.1",
  718. "System.Runtime": "4.1.0"
  719. },
  720. "compile": {
  721. "ref/netstandard1.3/System.Collections.dll": {}
  722. }
  723. },
  724. "System.Collections.Concurrent/4.0.12": {
  725. "type": "package",
  726. "dependencies": {
  727. "System.Collections": "4.0.11",
  728. "System.Diagnostics.Debug": "4.0.11",
  729. "System.Diagnostics.Tracing": "4.1.0",
  730. "System.Globalization": "4.0.11",
  731. "System.Reflection": "4.1.0",
  732. "System.Resources.ResourceManager": "4.0.1",
  733. "System.Runtime": "4.1.0",
  734. "System.Runtime.Extensions": "4.1.0",
  735. "System.Threading": "4.0.11",
  736. "System.Threading.Tasks": "4.0.11"
  737. },
  738. "compile": {
  739. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  740. },
  741. "runtime": {
  742. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  743. }
  744. },
  745. "System.Collections.Immutable/5.0.0": {
  746. "type": "package",
  747. "compile": {
  748. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  749. },
  750. "runtime": {
  751. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  752. }
  753. },
  754. "System.ComponentModel.Annotations/5.0.0": {
  755. "type": "package",
  756. "compile": {
  757. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  758. },
  759. "runtime": {
  760. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  761. }
  762. },
  763. "System.Configuration.ConfigurationManager/4.4.1": {
  764. "type": "package",
  765. "dependencies": {
  766. "System.Security.Cryptography.ProtectedData": "4.4.0"
  767. },
  768. "compile": {
  769. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  770. },
  771. "runtime": {
  772. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  773. }
  774. },
  775. "System.Console/4.0.0": {
  776. "type": "package",
  777. "dependencies": {
  778. "Microsoft.NETCore.Platforms": "1.0.1",
  779. "Microsoft.NETCore.Targets": "1.0.1",
  780. "System.IO": "4.1.0",
  781. "System.Runtime": "4.1.0",
  782. "System.Text.Encoding": "4.0.11"
  783. },
  784. "compile": {
  785. "ref/netstandard1.3/System.Console.dll": {}
  786. }
  787. },
  788. "System.Data.SqlClient/4.8.3": {
  789. "type": "package",
  790. "dependencies": {
  791. "Microsoft.Win32.Registry": "4.7.0",
  792. "System.Security.Principal.Windows": "4.7.0",
  793. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  794. },
  795. "compile": {
  796. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
  797. },
  798. "runtime": {
  799. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
  800. },
  801. "runtimeTargets": {
  802. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  803. "assetType": "runtime",
  804. "rid": "unix"
  805. },
  806. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  807. "assetType": "runtime",
  808. "rid": "win"
  809. }
  810. }
  811. },
  812. "System.Diagnostics.Debug/4.0.11": {
  813. "type": "package",
  814. "dependencies": {
  815. "Microsoft.NETCore.Platforms": "1.0.1",
  816. "Microsoft.NETCore.Targets": "1.0.1",
  817. "System.Runtime": "4.1.0"
  818. },
  819. "compile": {
  820. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  821. }
  822. },
  823. "System.Diagnostics.DiagnosticSource/5.0.1": {
  824. "type": "package",
  825. "compile": {
  826. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  827. },
  828. "runtime": {
  829. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  830. }
  831. },
  832. "System.Diagnostics.Tools/4.0.1": {
  833. "type": "package",
  834. "dependencies": {
  835. "Microsoft.NETCore.Platforms": "1.0.1",
  836. "Microsoft.NETCore.Targets": "1.0.1",
  837. "System.Runtime": "4.1.0"
  838. },
  839. "compile": {
  840. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  841. }
  842. },
  843. "System.Diagnostics.TraceSource/4.0.0": {
  844. "type": "package",
  845. "dependencies": {
  846. "Microsoft.NETCore.Platforms": "1.0.1",
  847. "System.Collections": "4.0.11",
  848. "System.Diagnostics.Debug": "4.0.11",
  849. "System.Globalization": "4.0.11",
  850. "System.Resources.ResourceManager": "4.0.1",
  851. "System.Runtime": "4.1.0",
  852. "System.Runtime.Extensions": "4.1.0",
  853. "System.Threading": "4.0.11",
  854. "runtime.native.System": "4.0.0"
  855. },
  856. "compile": {
  857. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  858. },
  859. "runtimeTargets": {
  860. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  861. "assetType": "runtime",
  862. "rid": "unix"
  863. },
  864. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  865. "assetType": "runtime",
  866. "rid": "win"
  867. }
  868. }
  869. },
  870. "System.Diagnostics.Tracing/4.1.0": {
  871. "type": "package",
  872. "dependencies": {
  873. "Microsoft.NETCore.Platforms": "1.0.1",
  874. "Microsoft.NETCore.Targets": "1.0.1",
  875. "System.Runtime": "4.1.0"
  876. },
  877. "compile": {
  878. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  879. }
  880. },
  881. "System.Drawing.Common/4.7.0": {
  882. "type": "package",
  883. "dependencies": {
  884. "Microsoft.NETCore.Platforms": "3.1.0",
  885. "Microsoft.Win32.SystemEvents": "4.7.0"
  886. },
  887. "compile": {
  888. "ref/netcoreapp3.0/_._": {}
  889. },
  890. "runtime": {
  891. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  892. },
  893. "runtimeTargets": {
  894. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  895. "assetType": "runtime",
  896. "rid": "unix"
  897. },
  898. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  899. "assetType": "runtime",
  900. "rid": "win"
  901. }
  902. }
  903. },
  904. "System.Dynamic.Runtime/4.0.11": {
  905. "type": "package",
  906. "dependencies": {
  907. "System.Collections": "4.0.11",
  908. "System.Diagnostics.Debug": "4.0.11",
  909. "System.Globalization": "4.0.11",
  910. "System.Linq": "4.1.0",
  911. "System.Linq.Expressions": "4.1.0",
  912. "System.ObjectModel": "4.0.12",
  913. "System.Reflection": "4.1.0",
  914. "System.Reflection.Emit": "4.0.1",
  915. "System.Reflection.Emit.ILGeneration": "4.0.1",
  916. "System.Reflection.Primitives": "4.0.1",
  917. "System.Reflection.TypeExtensions": "4.1.0",
  918. "System.Resources.ResourceManager": "4.0.1",
  919. "System.Runtime": "4.1.0",
  920. "System.Runtime.Extensions": "4.1.0",
  921. "System.Threading": "4.0.11"
  922. },
  923. "compile": {
  924. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  925. },
  926. "runtime": {
  927. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  928. }
  929. },
  930. "System.Globalization/4.0.11": {
  931. "type": "package",
  932. "dependencies": {
  933. "Microsoft.NETCore.Platforms": "1.0.1",
  934. "Microsoft.NETCore.Targets": "1.0.1",
  935. "System.Runtime": "4.1.0"
  936. },
  937. "compile": {
  938. "ref/netstandard1.3/System.Globalization.dll": {}
  939. }
  940. },
  941. "System.Globalization.Calendars/4.0.1": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.NETCore.Platforms": "1.0.1",
  945. "Microsoft.NETCore.Targets": "1.0.1",
  946. "System.Globalization": "4.0.11",
  947. "System.Runtime": "4.1.0"
  948. },
  949. "compile": {
  950. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  951. }
  952. },
  953. "System.Globalization.Extensions/4.0.1": {
  954. "type": "package",
  955. "dependencies": {
  956. "Microsoft.NETCore.Platforms": "1.0.1",
  957. "System.Globalization": "4.0.11",
  958. "System.Resources.ResourceManager": "4.0.1",
  959. "System.Runtime": "4.1.0",
  960. "System.Runtime.Extensions": "4.1.0",
  961. "System.Runtime.InteropServices": "4.1.0"
  962. },
  963. "compile": {
  964. "ref/netstandard1.3/_._": {}
  965. },
  966. "runtimeTargets": {
  967. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  968. "assetType": "runtime",
  969. "rid": "unix"
  970. },
  971. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  972. "assetType": "runtime",
  973. "rid": "win"
  974. }
  975. }
  976. },
  977. "System.IO/4.3.0": {
  978. "type": "package",
  979. "dependencies": {
  980. "Microsoft.NETCore.Platforms": "1.1.0",
  981. "Microsoft.NETCore.Targets": "1.1.0",
  982. "System.Runtime": "4.3.0",
  983. "System.Text.Encoding": "4.3.0",
  984. "System.Threading.Tasks": "4.3.0"
  985. },
  986. "compile": {
  987. "ref/netstandard1.5/System.IO.dll": {}
  988. }
  989. },
  990. "System.IO.Compression/4.1.0": {
  991. "type": "package",
  992. "dependencies": {
  993. "Microsoft.NETCore.Platforms": "1.0.1",
  994. "System.Collections": "4.0.11",
  995. "System.Diagnostics.Debug": "4.0.11",
  996. "System.IO": "4.1.0",
  997. "System.Resources.ResourceManager": "4.0.1",
  998. "System.Runtime": "4.1.0",
  999. "System.Runtime.Extensions": "4.1.0",
  1000. "System.Runtime.Handles": "4.0.1",
  1001. "System.Runtime.InteropServices": "4.1.0",
  1002. "System.Text.Encoding": "4.0.11",
  1003. "System.Threading": "4.0.11",
  1004. "System.Threading.Tasks": "4.0.11",
  1005. "runtime.native.System": "4.0.0",
  1006. "runtime.native.System.IO.Compression": "4.1.0"
  1007. },
  1008. "compile": {
  1009. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1010. },
  1011. "runtimeTargets": {
  1012. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1013. "assetType": "runtime",
  1014. "rid": "unix"
  1015. },
  1016. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1017. "assetType": "runtime",
  1018. "rid": "win"
  1019. }
  1020. }
  1021. },
  1022. "System.IO.Compression.ZipFile/4.0.1": {
  1023. "type": "package",
  1024. "dependencies": {
  1025. "System.Buffers": "4.0.0",
  1026. "System.IO": "4.1.0",
  1027. "System.IO.Compression": "4.1.0",
  1028. "System.IO.FileSystem": "4.0.1",
  1029. "System.IO.FileSystem.Primitives": "4.0.1",
  1030. "System.Resources.ResourceManager": "4.0.1",
  1031. "System.Runtime": "4.1.0",
  1032. "System.Runtime.Extensions": "4.1.0",
  1033. "System.Text.Encoding": "4.0.11"
  1034. },
  1035. "compile": {
  1036. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1037. },
  1038. "runtime": {
  1039. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1040. }
  1041. },
  1042. "System.IO.FileSystem/4.0.1": {
  1043. "type": "package",
  1044. "dependencies": {
  1045. "Microsoft.NETCore.Platforms": "1.0.1",
  1046. "Microsoft.NETCore.Targets": "1.0.1",
  1047. "System.IO": "4.1.0",
  1048. "System.IO.FileSystem.Primitives": "4.0.1",
  1049. "System.Runtime": "4.1.0",
  1050. "System.Runtime.Handles": "4.0.1",
  1051. "System.Text.Encoding": "4.0.11",
  1052. "System.Threading.Tasks": "4.0.11"
  1053. },
  1054. "compile": {
  1055. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1056. }
  1057. },
  1058. "System.IO.FileSystem.Primitives/4.0.1": {
  1059. "type": "package",
  1060. "dependencies": {
  1061. "System.Runtime": "4.1.0"
  1062. },
  1063. "compile": {
  1064. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1065. },
  1066. "runtime": {
  1067. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1068. }
  1069. },
  1070. "System.Linq/4.1.0": {
  1071. "type": "package",
  1072. "dependencies": {
  1073. "System.Collections": "4.0.11",
  1074. "System.Diagnostics.Debug": "4.0.11",
  1075. "System.Resources.ResourceManager": "4.0.1",
  1076. "System.Runtime": "4.1.0",
  1077. "System.Runtime.Extensions": "4.1.0"
  1078. },
  1079. "compile": {
  1080. "ref/netstandard1.6/System.Linq.dll": {}
  1081. },
  1082. "runtime": {
  1083. "lib/netstandard1.6/System.Linq.dll": {}
  1084. }
  1085. },
  1086. "System.Linq.Expressions/4.1.0": {
  1087. "type": "package",
  1088. "dependencies": {
  1089. "System.Collections": "4.0.11",
  1090. "System.Diagnostics.Debug": "4.0.11",
  1091. "System.Globalization": "4.0.11",
  1092. "System.IO": "4.1.0",
  1093. "System.Linq": "4.1.0",
  1094. "System.ObjectModel": "4.0.12",
  1095. "System.Reflection": "4.1.0",
  1096. "System.Reflection.Emit": "4.0.1",
  1097. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1098. "System.Reflection.Emit.Lightweight": "4.0.1",
  1099. "System.Reflection.Extensions": "4.0.1",
  1100. "System.Reflection.Primitives": "4.0.1",
  1101. "System.Reflection.TypeExtensions": "4.1.0",
  1102. "System.Resources.ResourceManager": "4.0.1",
  1103. "System.Runtime": "4.1.0",
  1104. "System.Runtime.Extensions": "4.1.0",
  1105. "System.Threading": "4.0.11"
  1106. },
  1107. "compile": {
  1108. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1109. },
  1110. "runtime": {
  1111. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1112. }
  1113. },
  1114. "System.Memory/4.5.3": {
  1115. "type": "package",
  1116. "compile": {
  1117. "ref/netcoreapp2.1/_._": {}
  1118. },
  1119. "runtime": {
  1120. "lib/netcoreapp2.1/_._": {}
  1121. }
  1122. },
  1123. "System.Net.Http/4.1.0": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "Microsoft.NETCore.Platforms": "1.0.1",
  1127. "System.Collections": "4.0.11",
  1128. "System.Diagnostics.Debug": "4.0.11",
  1129. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1130. "System.Diagnostics.Tracing": "4.1.0",
  1131. "System.Globalization": "4.0.11",
  1132. "System.Globalization.Extensions": "4.0.1",
  1133. "System.IO": "4.1.0",
  1134. "System.IO.FileSystem": "4.0.1",
  1135. "System.Net.Primitives": "4.0.11",
  1136. "System.Resources.ResourceManager": "4.0.1",
  1137. "System.Runtime": "4.1.0",
  1138. "System.Runtime.Extensions": "4.1.0",
  1139. "System.Runtime.Handles": "4.0.1",
  1140. "System.Runtime.InteropServices": "4.1.0",
  1141. "System.Security.Cryptography.Algorithms": "4.2.0",
  1142. "System.Security.Cryptography.Encoding": "4.0.0",
  1143. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1144. "System.Security.Cryptography.Primitives": "4.0.0",
  1145. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1146. "System.Text.Encoding": "4.0.11",
  1147. "System.Threading": "4.0.11",
  1148. "System.Threading.Tasks": "4.0.11",
  1149. "runtime.native.System": "4.0.0",
  1150. "runtime.native.System.Net.Http": "4.0.1",
  1151. "runtime.native.System.Security.Cryptography": "4.0.0"
  1152. },
  1153. "compile": {
  1154. "ref/netstandard1.3/System.Net.Http.dll": {}
  1155. },
  1156. "runtimeTargets": {
  1157. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1158. "assetType": "runtime",
  1159. "rid": "unix"
  1160. },
  1161. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1162. "assetType": "runtime",
  1163. "rid": "win"
  1164. }
  1165. }
  1166. },
  1167. "System.Net.NameResolution/4.0.0": {
  1168. "type": "package",
  1169. "dependencies": {
  1170. "Microsoft.NETCore.Platforms": "1.0.1",
  1171. "System.Collections": "4.0.11",
  1172. "System.Diagnostics.Tracing": "4.1.0",
  1173. "System.Globalization": "4.0.11",
  1174. "System.Net.Primitives": "4.0.11",
  1175. "System.Resources.ResourceManager": "4.0.1",
  1176. "System.Runtime": "4.1.0",
  1177. "System.Runtime.Extensions": "4.1.0",
  1178. "System.Runtime.Handles": "4.0.1",
  1179. "System.Runtime.InteropServices": "4.1.0",
  1180. "System.Security.Principal.Windows": "4.0.0",
  1181. "System.Threading": "4.0.11",
  1182. "System.Threading.Tasks": "4.0.11",
  1183. "runtime.native.System": "4.0.0"
  1184. },
  1185. "compile": {
  1186. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1187. },
  1188. "runtimeTargets": {
  1189. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1190. "assetType": "runtime",
  1191. "rid": "unix"
  1192. },
  1193. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1194. "assetType": "runtime",
  1195. "rid": "win"
  1196. }
  1197. }
  1198. },
  1199. "System.Net.Primitives/4.0.11": {
  1200. "type": "package",
  1201. "dependencies": {
  1202. "Microsoft.NETCore.Platforms": "1.0.1",
  1203. "Microsoft.NETCore.Targets": "1.0.1",
  1204. "System.Runtime": "4.1.0",
  1205. "System.Runtime.Handles": "4.0.1"
  1206. },
  1207. "compile": {
  1208. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1209. }
  1210. },
  1211. "System.Net.Sockets/4.1.0": {
  1212. "type": "package",
  1213. "dependencies": {
  1214. "Microsoft.NETCore.Platforms": "1.0.1",
  1215. "Microsoft.NETCore.Targets": "1.0.1",
  1216. "System.IO": "4.1.0",
  1217. "System.Net.Primitives": "4.0.11",
  1218. "System.Runtime": "4.1.0",
  1219. "System.Threading.Tasks": "4.0.11"
  1220. },
  1221. "compile": {
  1222. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1223. }
  1224. },
  1225. "System.ObjectModel/4.0.12": {
  1226. "type": "package",
  1227. "dependencies": {
  1228. "System.Collections": "4.0.11",
  1229. "System.Diagnostics.Debug": "4.0.11",
  1230. "System.Resources.ResourceManager": "4.0.1",
  1231. "System.Runtime": "4.1.0",
  1232. "System.Threading": "4.0.11"
  1233. },
  1234. "compile": {
  1235. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1236. },
  1237. "runtime": {
  1238. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1239. }
  1240. },
  1241. "System.Reflection/4.3.0": {
  1242. "type": "package",
  1243. "dependencies": {
  1244. "Microsoft.NETCore.Platforms": "1.1.0",
  1245. "Microsoft.NETCore.Targets": "1.1.0",
  1246. "System.IO": "4.3.0",
  1247. "System.Reflection.Primitives": "4.3.0",
  1248. "System.Runtime": "4.3.0"
  1249. },
  1250. "compile": {
  1251. "ref/netstandard1.5/System.Reflection.dll": {}
  1252. }
  1253. },
  1254. "System.Reflection.Emit/4.0.1": {
  1255. "type": "package",
  1256. "dependencies": {
  1257. "System.IO": "4.1.0",
  1258. "System.Reflection": "4.1.0",
  1259. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1260. "System.Reflection.Primitives": "4.0.1",
  1261. "System.Runtime": "4.1.0"
  1262. },
  1263. "compile": {
  1264. "ref/netstandard1.1/_._": {}
  1265. },
  1266. "runtime": {
  1267. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1268. }
  1269. },
  1270. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1271. "type": "package",
  1272. "dependencies": {
  1273. "System.Reflection": "4.1.0",
  1274. "System.Reflection.Primitives": "4.0.1",
  1275. "System.Runtime": "4.1.0"
  1276. },
  1277. "compile": {
  1278. "ref/netstandard1.0/_._": {}
  1279. },
  1280. "runtime": {
  1281. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1282. }
  1283. },
  1284. "System.Reflection.Emit.Lightweight/4.0.1": {
  1285. "type": "package",
  1286. "dependencies": {
  1287. "System.Reflection": "4.1.0",
  1288. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1289. "System.Reflection.Primitives": "4.0.1",
  1290. "System.Runtime": "4.1.0"
  1291. },
  1292. "compile": {
  1293. "ref/netstandard1.0/_._": {}
  1294. },
  1295. "runtime": {
  1296. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1297. }
  1298. },
  1299. "System.Reflection.Extensions/4.0.1": {
  1300. "type": "package",
  1301. "dependencies": {
  1302. "Microsoft.NETCore.Platforms": "1.0.1",
  1303. "Microsoft.NETCore.Targets": "1.0.1",
  1304. "System.Reflection": "4.1.0",
  1305. "System.Runtime": "4.1.0"
  1306. },
  1307. "compile": {
  1308. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1309. }
  1310. },
  1311. "System.Reflection.Primitives/4.3.0": {
  1312. "type": "package",
  1313. "dependencies": {
  1314. "Microsoft.NETCore.Platforms": "1.1.0",
  1315. "Microsoft.NETCore.Targets": "1.1.0",
  1316. "System.Runtime": "4.3.0"
  1317. },
  1318. "compile": {
  1319. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1320. }
  1321. },
  1322. "System.Reflection.TypeExtensions/4.1.0": {
  1323. "type": "package",
  1324. "dependencies": {
  1325. "System.Reflection": "4.1.0",
  1326. "System.Runtime": "4.1.0"
  1327. },
  1328. "compile": {
  1329. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1330. },
  1331. "runtime": {
  1332. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1333. }
  1334. },
  1335. "System.Resources.ResourceManager/4.0.1": {
  1336. "type": "package",
  1337. "dependencies": {
  1338. "Microsoft.NETCore.Platforms": "1.0.1",
  1339. "Microsoft.NETCore.Targets": "1.0.1",
  1340. "System.Globalization": "4.0.11",
  1341. "System.Reflection": "4.1.0",
  1342. "System.Runtime": "4.1.0"
  1343. },
  1344. "compile": {
  1345. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1346. }
  1347. },
  1348. "System.Runtime/4.3.0": {
  1349. "type": "package",
  1350. "dependencies": {
  1351. "Microsoft.NETCore.Platforms": "1.1.0",
  1352. "Microsoft.NETCore.Targets": "1.1.0"
  1353. },
  1354. "compile": {
  1355. "ref/netstandard1.5/System.Runtime.dll": {}
  1356. }
  1357. },
  1358. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1359. "type": "package",
  1360. "compile": {
  1361. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1362. },
  1363. "runtime": {
  1364. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1365. },
  1366. "build": {
  1367. "buildTransitive/netcoreapp3.1/_._": {}
  1368. }
  1369. },
  1370. "System.Runtime.Extensions/4.1.0": {
  1371. "type": "package",
  1372. "dependencies": {
  1373. "Microsoft.NETCore.Platforms": "1.0.1",
  1374. "Microsoft.NETCore.Targets": "1.0.1",
  1375. "System.Runtime": "4.1.0"
  1376. },
  1377. "compile": {
  1378. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1379. }
  1380. },
  1381. "System.Runtime.Handles/4.0.1": {
  1382. "type": "package",
  1383. "dependencies": {
  1384. "Microsoft.NETCore.Platforms": "1.0.1",
  1385. "Microsoft.NETCore.Targets": "1.0.1",
  1386. "System.Runtime": "4.1.0"
  1387. },
  1388. "compile": {
  1389. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1390. }
  1391. },
  1392. "System.Runtime.InteropServices/4.1.0": {
  1393. "type": "package",
  1394. "dependencies": {
  1395. "Microsoft.NETCore.Platforms": "1.0.1",
  1396. "Microsoft.NETCore.Targets": "1.0.1",
  1397. "System.Reflection": "4.1.0",
  1398. "System.Reflection.Primitives": "4.0.1",
  1399. "System.Runtime": "4.1.0",
  1400. "System.Runtime.Handles": "4.0.1"
  1401. },
  1402. "compile": {
  1403. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1404. }
  1405. },
  1406. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1407. "type": "package",
  1408. "dependencies": {
  1409. "Microsoft.NETCore.Platforms": "1.0.1",
  1410. "System.Reflection": "4.1.0",
  1411. "System.Resources.ResourceManager": "4.0.1",
  1412. "System.Runtime": "4.1.0",
  1413. "System.Runtime.InteropServices": "4.1.0",
  1414. "System.Threading": "4.0.11",
  1415. "runtime.native.System": "4.0.0"
  1416. },
  1417. "compile": {
  1418. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1419. },
  1420. "runtimeTargets": {
  1421. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1422. "assetType": "runtime",
  1423. "rid": "unix"
  1424. },
  1425. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1426. "assetType": "runtime",
  1427. "rid": "win"
  1428. }
  1429. }
  1430. },
  1431. "System.Runtime.Numerics/4.0.1": {
  1432. "type": "package",
  1433. "dependencies": {
  1434. "System.Globalization": "4.0.11",
  1435. "System.Resources.ResourceManager": "4.0.1",
  1436. "System.Runtime": "4.1.0",
  1437. "System.Runtime.Extensions": "4.1.0"
  1438. },
  1439. "compile": {
  1440. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1441. },
  1442. "runtime": {
  1443. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1444. }
  1445. },
  1446. "System.Security.AccessControl/4.7.0": {
  1447. "type": "package",
  1448. "dependencies": {
  1449. "Microsoft.NETCore.Platforms": "3.1.0",
  1450. "System.Security.Principal.Windows": "4.7.0"
  1451. },
  1452. "compile": {
  1453. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1454. },
  1455. "runtime": {
  1456. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1457. },
  1458. "runtimeTargets": {
  1459. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1460. "assetType": "runtime",
  1461. "rid": "win"
  1462. }
  1463. }
  1464. },
  1465. "System.Security.Cryptography.Algorithms/4.2.0": {
  1466. "type": "package",
  1467. "dependencies": {
  1468. "Microsoft.NETCore.Platforms": "1.0.1",
  1469. "System.Collections": "4.0.11",
  1470. "System.IO": "4.1.0",
  1471. "System.Resources.ResourceManager": "4.0.1",
  1472. "System.Runtime": "4.1.0",
  1473. "System.Runtime.Extensions": "4.1.0",
  1474. "System.Runtime.Handles": "4.0.1",
  1475. "System.Runtime.InteropServices": "4.1.0",
  1476. "System.Runtime.Numerics": "4.0.1",
  1477. "System.Security.Cryptography.Encoding": "4.0.0",
  1478. "System.Security.Cryptography.Primitives": "4.0.0",
  1479. "System.Text.Encoding": "4.0.11",
  1480. "runtime.native.System.Security.Cryptography": "4.0.0"
  1481. },
  1482. "compile": {
  1483. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1484. },
  1485. "runtimeTargets": {
  1486. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1487. "assetType": "runtime",
  1488. "rid": "unix"
  1489. },
  1490. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1491. "assetType": "runtime",
  1492. "rid": "win"
  1493. }
  1494. }
  1495. },
  1496. "System.Security.Cryptography.Cng/4.2.0": {
  1497. "type": "package",
  1498. "dependencies": {
  1499. "Microsoft.NETCore.Platforms": "1.0.1",
  1500. "System.IO": "4.1.0",
  1501. "System.Resources.ResourceManager": "4.0.1",
  1502. "System.Runtime": "4.1.0",
  1503. "System.Runtime.Extensions": "4.1.0",
  1504. "System.Runtime.Handles": "4.0.1",
  1505. "System.Runtime.InteropServices": "4.1.0",
  1506. "System.Security.Cryptography.Algorithms": "4.2.0",
  1507. "System.Security.Cryptography.Encoding": "4.0.0",
  1508. "System.Security.Cryptography.Primitives": "4.0.0",
  1509. "System.Text.Encoding": "4.0.11"
  1510. },
  1511. "compile": {
  1512. "ref/netstandard1.6/_._": {}
  1513. },
  1514. "runtimeTargets": {
  1515. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1516. "assetType": "runtime",
  1517. "rid": "unix"
  1518. },
  1519. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1520. "assetType": "runtime",
  1521. "rid": "win"
  1522. }
  1523. }
  1524. },
  1525. "System.Security.Cryptography.Csp/4.0.0": {
  1526. "type": "package",
  1527. "dependencies": {
  1528. "Microsoft.NETCore.Platforms": "1.0.1",
  1529. "System.IO": "4.1.0",
  1530. "System.Reflection": "4.1.0",
  1531. "System.Resources.ResourceManager": "4.0.1",
  1532. "System.Runtime": "4.1.0",
  1533. "System.Runtime.Extensions": "4.1.0",
  1534. "System.Runtime.Handles": "4.0.1",
  1535. "System.Runtime.InteropServices": "4.1.0",
  1536. "System.Security.Cryptography.Algorithms": "4.2.0",
  1537. "System.Security.Cryptography.Encoding": "4.0.0",
  1538. "System.Security.Cryptography.Primitives": "4.0.0",
  1539. "System.Text.Encoding": "4.0.11",
  1540. "System.Threading": "4.0.11"
  1541. },
  1542. "compile": {
  1543. "ref/netstandard1.3/_._": {}
  1544. },
  1545. "runtimeTargets": {
  1546. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1547. "assetType": "runtime",
  1548. "rid": "unix"
  1549. },
  1550. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1551. "assetType": "runtime",
  1552. "rid": "win"
  1553. }
  1554. }
  1555. },
  1556. "System.Security.Cryptography.Encoding/4.0.0": {
  1557. "type": "package",
  1558. "dependencies": {
  1559. "Microsoft.NETCore.Platforms": "1.0.1",
  1560. "System.Collections": "4.0.11",
  1561. "System.Collections.Concurrent": "4.0.12",
  1562. "System.Linq": "4.1.0",
  1563. "System.Resources.ResourceManager": "4.0.1",
  1564. "System.Runtime": "4.1.0",
  1565. "System.Runtime.Extensions": "4.1.0",
  1566. "System.Runtime.Handles": "4.0.1",
  1567. "System.Runtime.InteropServices": "4.1.0",
  1568. "System.Security.Cryptography.Primitives": "4.0.0",
  1569. "System.Text.Encoding": "4.0.11",
  1570. "runtime.native.System.Security.Cryptography": "4.0.0"
  1571. },
  1572. "compile": {
  1573. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1574. },
  1575. "runtimeTargets": {
  1576. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1577. "assetType": "runtime",
  1578. "rid": "unix"
  1579. },
  1580. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1581. "assetType": "runtime",
  1582. "rid": "win"
  1583. }
  1584. }
  1585. },
  1586. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1587. "type": "package",
  1588. "dependencies": {
  1589. "System.Collections": "4.0.11",
  1590. "System.IO": "4.1.0",
  1591. "System.Resources.ResourceManager": "4.0.1",
  1592. "System.Runtime": "4.1.0",
  1593. "System.Runtime.Extensions": "4.1.0",
  1594. "System.Runtime.Handles": "4.0.1",
  1595. "System.Runtime.InteropServices": "4.1.0",
  1596. "System.Runtime.Numerics": "4.0.1",
  1597. "System.Security.Cryptography.Algorithms": "4.2.0",
  1598. "System.Security.Cryptography.Encoding": "4.0.0",
  1599. "System.Security.Cryptography.Primitives": "4.0.0",
  1600. "System.Text.Encoding": "4.0.11",
  1601. "runtime.native.System.Security.Cryptography": "4.0.0"
  1602. },
  1603. "compile": {
  1604. "ref/netstandard1.6/_._": {}
  1605. },
  1606. "runtime": {
  1607. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1608. },
  1609. "runtimeTargets": {
  1610. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1611. "assetType": "runtime",
  1612. "rid": "unix"
  1613. }
  1614. }
  1615. },
  1616. "System.Security.Cryptography.Primitives/4.0.0": {
  1617. "type": "package",
  1618. "dependencies": {
  1619. "System.Diagnostics.Debug": "4.0.11",
  1620. "System.Globalization": "4.0.11",
  1621. "System.IO": "4.1.0",
  1622. "System.Resources.ResourceManager": "4.0.1",
  1623. "System.Runtime": "4.1.0",
  1624. "System.Threading": "4.0.11",
  1625. "System.Threading.Tasks": "4.0.11"
  1626. },
  1627. "compile": {
  1628. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1629. },
  1630. "runtime": {
  1631. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1632. }
  1633. },
  1634. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1635. "type": "package",
  1636. "compile": {
  1637. "ref/netstandard2.0/_._": {}
  1638. },
  1639. "runtime": {
  1640. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  1641. },
  1642. "runtimeTargets": {
  1643. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1644. "assetType": "runtime",
  1645. "rid": "win"
  1646. }
  1647. }
  1648. },
  1649. "System.Security.Cryptography.X509Certificates/4.1.0": {
  1650. "type": "package",
  1651. "dependencies": {
  1652. "Microsoft.NETCore.Platforms": "1.0.1",
  1653. "System.Collections": "4.0.11",
  1654. "System.Diagnostics.Debug": "4.0.11",
  1655. "System.Globalization": "4.0.11",
  1656. "System.Globalization.Calendars": "4.0.1",
  1657. "System.IO": "4.1.0",
  1658. "System.IO.FileSystem": "4.0.1",
  1659. "System.IO.FileSystem.Primitives": "4.0.1",
  1660. "System.Resources.ResourceManager": "4.0.1",
  1661. "System.Runtime": "4.1.0",
  1662. "System.Runtime.Extensions": "4.1.0",
  1663. "System.Runtime.Handles": "4.0.1",
  1664. "System.Runtime.InteropServices": "4.1.0",
  1665. "System.Runtime.Numerics": "4.0.1",
  1666. "System.Security.Cryptography.Algorithms": "4.2.0",
  1667. "System.Security.Cryptography.Cng": "4.2.0",
  1668. "System.Security.Cryptography.Csp": "4.0.0",
  1669. "System.Security.Cryptography.Encoding": "4.0.0",
  1670. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1671. "System.Security.Cryptography.Primitives": "4.0.0",
  1672. "System.Text.Encoding": "4.0.11",
  1673. "System.Threading": "4.0.11",
  1674. "runtime.native.System": "4.0.0",
  1675. "runtime.native.System.Net.Http": "4.0.1",
  1676. "runtime.native.System.Security.Cryptography": "4.0.0"
  1677. },
  1678. "compile": {
  1679. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  1680. },
  1681. "runtimeTargets": {
  1682. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1683. "assetType": "runtime",
  1684. "rid": "unix"
  1685. },
  1686. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1687. "assetType": "runtime",
  1688. "rid": "win"
  1689. }
  1690. }
  1691. },
  1692. "System.Security.Permissions/4.7.0": {
  1693. "type": "package",
  1694. "dependencies": {
  1695. "System.Security.AccessControl": "4.7.0",
  1696. "System.Windows.Extensions": "4.7.0"
  1697. },
  1698. "compile": {
  1699. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  1700. },
  1701. "runtime": {
  1702. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  1703. }
  1704. },
  1705. "System.Security.Principal.Windows/4.7.0": {
  1706. "type": "package",
  1707. "compile": {
  1708. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  1709. },
  1710. "runtime": {
  1711. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  1712. },
  1713. "runtimeTargets": {
  1714. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1715. "assetType": "runtime",
  1716. "rid": "unix"
  1717. },
  1718. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1719. "assetType": "runtime",
  1720. "rid": "win"
  1721. }
  1722. }
  1723. },
  1724. "System.Text.Encoding/4.3.0": {
  1725. "type": "package",
  1726. "dependencies": {
  1727. "Microsoft.NETCore.Platforms": "1.1.0",
  1728. "Microsoft.NETCore.Targets": "1.1.0",
  1729. "System.Runtime": "4.3.0"
  1730. },
  1731. "compile": {
  1732. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  1733. }
  1734. },
  1735. "System.Text.Encoding.CodePages/4.4.0": {
  1736. "type": "package",
  1737. "dependencies": {
  1738. "Microsoft.NETCore.Platforms": "2.0.0"
  1739. },
  1740. "compile": {
  1741. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1742. },
  1743. "runtime": {
  1744. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1745. },
  1746. "runtimeTargets": {
  1747. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1748. "assetType": "runtime",
  1749. "rid": "win"
  1750. }
  1751. }
  1752. },
  1753. "System.Text.Encoding.Extensions/4.0.11": {
  1754. "type": "package",
  1755. "dependencies": {
  1756. "Microsoft.NETCore.Platforms": "1.0.1",
  1757. "Microsoft.NETCore.Targets": "1.0.1",
  1758. "System.Runtime": "4.1.0",
  1759. "System.Text.Encoding": "4.0.11"
  1760. },
  1761. "compile": {
  1762. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  1763. }
  1764. },
  1765. "System.Text.Encodings.Web/4.5.0": {
  1766. "type": "package",
  1767. "compile": {
  1768. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1769. },
  1770. "runtime": {
  1771. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1772. }
  1773. },
  1774. "System.Text.RegularExpressions/4.1.0": {
  1775. "type": "package",
  1776. "dependencies": {
  1777. "System.Collections": "4.0.11",
  1778. "System.Globalization": "4.0.11",
  1779. "System.Resources.ResourceManager": "4.0.1",
  1780. "System.Runtime": "4.1.0",
  1781. "System.Runtime.Extensions": "4.1.0",
  1782. "System.Threading": "4.0.11"
  1783. },
  1784. "compile": {
  1785. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1786. },
  1787. "runtime": {
  1788. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1789. }
  1790. },
  1791. "System.Threading/4.0.11": {
  1792. "type": "package",
  1793. "dependencies": {
  1794. "System.Runtime": "4.1.0",
  1795. "System.Threading.Tasks": "4.0.11"
  1796. },
  1797. "compile": {
  1798. "ref/netstandard1.3/System.Threading.dll": {}
  1799. },
  1800. "runtime": {
  1801. "lib/netstandard1.3/System.Threading.dll": {}
  1802. }
  1803. },
  1804. "System.Threading.Tasks/4.3.0": {
  1805. "type": "package",
  1806. "dependencies": {
  1807. "Microsoft.NETCore.Platforms": "1.1.0",
  1808. "Microsoft.NETCore.Targets": "1.1.0",
  1809. "System.Runtime": "4.3.0"
  1810. },
  1811. "compile": {
  1812. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  1813. }
  1814. },
  1815. "System.Threading.Tasks.Extensions/4.0.0": {
  1816. "type": "package",
  1817. "dependencies": {
  1818. "System.Collections": "4.0.11",
  1819. "System.Runtime": "4.1.0",
  1820. "System.Threading.Tasks": "4.0.11"
  1821. },
  1822. "compile": {
  1823. "lib/netstandard1.0/_._": {}
  1824. },
  1825. "runtime": {
  1826. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  1827. }
  1828. },
  1829. "System.Threading.Thread/4.0.0": {
  1830. "type": "package",
  1831. "dependencies": {
  1832. "System.Runtime": "4.1.0"
  1833. },
  1834. "compile": {
  1835. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  1836. },
  1837. "runtime": {
  1838. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  1839. }
  1840. },
  1841. "System.Threading.ThreadPool/4.0.10": {
  1842. "type": "package",
  1843. "dependencies": {
  1844. "System.Runtime": "4.1.0",
  1845. "System.Runtime.Handles": "4.0.1"
  1846. },
  1847. "compile": {
  1848. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  1849. },
  1850. "runtime": {
  1851. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  1852. }
  1853. },
  1854. "System.Threading.Timer/4.0.1": {
  1855. "type": "package",
  1856. "dependencies": {
  1857. "Microsoft.NETCore.Platforms": "1.0.1",
  1858. "Microsoft.NETCore.Targets": "1.0.1",
  1859. "System.Runtime": "4.1.0"
  1860. },
  1861. "compile": {
  1862. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  1863. }
  1864. },
  1865. "System.Windows.Extensions/4.7.0": {
  1866. "type": "package",
  1867. "dependencies": {
  1868. "System.Drawing.Common": "4.7.0"
  1869. },
  1870. "compile": {
  1871. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  1872. },
  1873. "runtime": {
  1874. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  1875. },
  1876. "runtimeTargets": {
  1877. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1878. "assetType": "runtime",
  1879. "rid": "win"
  1880. }
  1881. }
  1882. },
  1883. "System.Xml.ReaderWriter/4.0.11": {
  1884. "type": "package",
  1885. "dependencies": {
  1886. "System.Collections": "4.0.11",
  1887. "System.Diagnostics.Debug": "4.0.11",
  1888. "System.Globalization": "4.0.11",
  1889. "System.IO": "4.1.0",
  1890. "System.IO.FileSystem": "4.0.1",
  1891. "System.IO.FileSystem.Primitives": "4.0.1",
  1892. "System.Resources.ResourceManager": "4.0.1",
  1893. "System.Runtime": "4.1.0",
  1894. "System.Runtime.Extensions": "4.1.0",
  1895. "System.Runtime.InteropServices": "4.1.0",
  1896. "System.Text.Encoding": "4.0.11",
  1897. "System.Text.Encoding.Extensions": "4.0.11",
  1898. "System.Text.RegularExpressions": "4.1.0",
  1899. "System.Threading.Tasks": "4.0.11",
  1900. "System.Threading.Tasks.Extensions": "4.0.0"
  1901. },
  1902. "compile": {
  1903. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1904. },
  1905. "runtime": {
  1906. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1907. }
  1908. },
  1909. "System.Xml.XDocument/4.0.11": {
  1910. "type": "package",
  1911. "dependencies": {
  1912. "System.Collections": "4.0.11",
  1913. "System.Diagnostics.Debug": "4.0.11",
  1914. "System.Diagnostics.Tools": "4.0.1",
  1915. "System.Globalization": "4.0.11",
  1916. "System.IO": "4.1.0",
  1917. "System.Reflection": "4.1.0",
  1918. "System.Resources.ResourceManager": "4.0.1",
  1919. "System.Runtime": "4.1.0",
  1920. "System.Runtime.Extensions": "4.1.0",
  1921. "System.Text.Encoding": "4.0.11",
  1922. "System.Threading": "4.0.11",
  1923. "System.Xml.ReaderWriter": "4.0.11"
  1924. },
  1925. "compile": {
  1926. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  1927. },
  1928. "runtime": {
  1929. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  1930. }
  1931. },
  1932. "System.Xml.XmlDocument/4.0.1": {
  1933. "type": "package",
  1934. "dependencies": {
  1935. "System.Collections": "4.0.11",
  1936. "System.Diagnostics.Debug": "4.0.11",
  1937. "System.Globalization": "4.0.11",
  1938. "System.IO": "4.1.0",
  1939. "System.Resources.ResourceManager": "4.0.1",
  1940. "System.Runtime": "4.1.0",
  1941. "System.Runtime.Extensions": "4.1.0",
  1942. "System.Text.Encoding": "4.0.11",
  1943. "System.Threading": "4.0.11",
  1944. "System.Xml.ReaderWriter": "4.0.11"
  1945. },
  1946. "compile": {
  1947. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1948. },
  1949. "runtime": {
  1950. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1951. }
  1952. },
  1953. "System.Xml.XPath/4.0.1": {
  1954. "type": "package",
  1955. "dependencies": {
  1956. "System.Collections": "4.0.11",
  1957. "System.Diagnostics.Debug": "4.0.11",
  1958. "System.Globalization": "4.0.11",
  1959. "System.IO": "4.1.0",
  1960. "System.Resources.ResourceManager": "4.0.1",
  1961. "System.Runtime": "4.1.0",
  1962. "System.Runtime.Extensions": "4.1.0",
  1963. "System.Threading": "4.0.11",
  1964. "System.Xml.ReaderWriter": "4.0.11"
  1965. },
  1966. "compile": {
  1967. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  1968. },
  1969. "runtime": {
  1970. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  1971. }
  1972. },
  1973. "System.Xml.XPath.XmlDocument/4.0.1": {
  1974. "type": "package",
  1975. "dependencies": {
  1976. "System.Collections": "4.0.11",
  1977. "System.Globalization": "4.0.11",
  1978. "System.IO": "4.1.0",
  1979. "System.Resources.ResourceManager": "4.0.1",
  1980. "System.Runtime": "4.1.0",
  1981. "System.Runtime.Extensions": "4.1.0",
  1982. "System.Threading": "4.0.11",
  1983. "System.Xml.ReaderWriter": "4.0.11",
  1984. "System.Xml.XPath": "4.0.1",
  1985. "System.Xml.XmlDocument": "4.0.1"
  1986. },
  1987. "compile": {
  1988. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  1989. },
  1990. "runtime": {
  1991. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  1992. }
  1993. }
  1994. }
  1995. },
  1996. "libraries": {
  1997. "BouncyCastle.NetCore/1.8.3": {
  1998. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  1999. "type": "package",
  2000. "path": "bouncycastle.netcore/1.8.3",
  2001. "files": [
  2002. ".nupkg.metadata",
  2003. ".signature.p7s",
  2004. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2005. "bouncycastle.netcore.nuspec",
  2006. "lib/Mono/BouncyCastle.Crypto.dll",
  2007. "lib/Mono/BouncyCastle.Crypto.xml",
  2008. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2009. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2010. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2011. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2012. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2013. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2014. "lib/net20/BouncyCastle.Crypto.dll",
  2015. "lib/net20/BouncyCastle.Crypto.xml",
  2016. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2017. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2018. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2019. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2020. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2021. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2022. ]
  2023. },
  2024. "EntityFramework/6.1.0": {
  2025. "sha512": "u/M0OEfqxTUsL5BwzD66eBGm278/ozqdLK3JvMO6QwUxxc+z7ZUkTYm4suDhWRqzkc6mOhvXDQY5dZUwbldxyQ==",
  2026. "type": "package",
  2027. "path": "entityframework/6.1.0",
  2028. "hasTools": true,
  2029. "files": [
  2030. ".nupkg.metadata",
  2031. ".signature.p7s",
  2032. "content/App.config.transform",
  2033. "content/Web.config.transform",
  2034. "entityframework.6.1.0.nupkg.sha512",
  2035. "entityframework.nuspec",
  2036. "lib/net40/EntityFramework.SqlServer.dll",
  2037. "lib/net40/EntityFramework.SqlServer.xml",
  2038. "lib/net40/EntityFramework.dll",
  2039. "lib/net40/EntityFramework.xml",
  2040. "lib/net45/EntityFramework.SqlServer.dll",
  2041. "lib/net45/EntityFramework.SqlServer.xml",
  2042. "lib/net45/EntityFramework.dll",
  2043. "lib/net45/EntityFramework.xml",
  2044. "tools/EntityFramework.PowerShell.Utility.dll",
  2045. "tools/EntityFramework.PowerShell.dll",
  2046. "tools/EntityFramework.psd1",
  2047. "tools/EntityFramework.psm1",
  2048. "tools/about_EntityFramework.help.txt",
  2049. "tools/init.ps1",
  2050. "tools/install.ps1",
  2051. "tools/migrate.exe"
  2052. ]
  2053. },
  2054. "Google.Protobuf/3.11.4": {
  2055. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  2056. "type": "package",
  2057. "path": "google.protobuf/3.11.4",
  2058. "files": [
  2059. ".nupkg.metadata",
  2060. ".signature.p7s",
  2061. "google.protobuf.3.11.4.nupkg.sha512",
  2062. "google.protobuf.nuspec",
  2063. "lib/net45/Google.Protobuf.dll",
  2064. "lib/net45/Google.Protobuf.pdb",
  2065. "lib/net45/Google.Protobuf.xml",
  2066. "lib/netstandard1.0/Google.Protobuf.dll",
  2067. "lib/netstandard1.0/Google.Protobuf.pdb",
  2068. "lib/netstandard1.0/Google.Protobuf.xml",
  2069. "lib/netstandard2.0/Google.Protobuf.dll",
  2070. "lib/netstandard2.0/Google.Protobuf.pdb",
  2071. "lib/netstandard2.0/Google.Protobuf.xml"
  2072. ]
  2073. },
  2074. "K4os.Compression.LZ4/1.1.11": {
  2075. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  2076. "type": "package",
  2077. "path": "k4os.compression.lz4/1.1.11",
  2078. "files": [
  2079. ".nupkg.metadata",
  2080. ".signature.p7s",
  2081. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  2082. "k4os.compression.lz4.nuspec",
  2083. "lib/net45/K4os.Compression.LZ4.dll",
  2084. "lib/net45/K4os.Compression.LZ4.xml",
  2085. "lib/net46/K4os.Compression.LZ4.dll",
  2086. "lib/net46/K4os.Compression.LZ4.xml",
  2087. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2088. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2089. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2090. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2091. ]
  2092. },
  2093. "K4os.Compression.LZ4.Streams/1.1.11": {
  2094. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  2095. "type": "package",
  2096. "path": "k4os.compression.lz4.streams/1.1.11",
  2097. "files": [
  2098. ".nupkg.metadata",
  2099. ".signature.p7s",
  2100. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  2101. "k4os.compression.lz4.streams.nuspec",
  2102. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2103. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2104. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2105. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2106. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2107. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2108. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2109. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  2110. ]
  2111. },
  2112. "K4os.Hash.xxHash/1.0.6": {
  2113. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2114. "type": "package",
  2115. "path": "k4os.hash.xxhash/1.0.6",
  2116. "files": [
  2117. ".nupkg.metadata",
  2118. ".signature.p7s",
  2119. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2120. "k4os.hash.xxhash.nuspec",
  2121. "lib/net45/K4os.Hash.xxHash.dll",
  2122. "lib/net45/K4os.Hash.xxHash.xml",
  2123. "lib/net46/K4os.Hash.xxHash.dll",
  2124. "lib/net46/K4os.Hash.xxHash.xml",
  2125. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2126. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2127. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2128. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2129. ]
  2130. },
  2131. "Microsoft.AspNet.Identity.Core/2.2.3": {
  2132. "sha512": "Mv5FpoaxspE8hlWLE4r1IdZtovg/OyFgVRhxQbx47J4sqdLImN1hnM1lnwCj+/wLmqtqFk/RYMoZ5GAcwm/00g==",
  2133. "type": "package",
  2134. "path": "microsoft.aspnet.identity.core/2.2.3",
  2135. "files": [
  2136. ".nupkg.metadata",
  2137. ".signature.p7s",
  2138. "lib/net45/Microsoft.AspNet.Identity.Core.dll",
  2139. "lib/net45/Microsoft.AspNet.Identity.Core.xml",
  2140. "microsoft.aspnet.identity.core.2.2.3.nupkg.sha512",
  2141. "microsoft.aspnet.identity.core.nuspec"
  2142. ]
  2143. },
  2144. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  2145. "sha512": "dt4XZChjw3a6jE66Yd6LkF9omspxi0A9lJpwBZz8Wl1sabOS6dlLP1OOTVuUjtPaoAshjoIzvS6DFRQdPyq55g==",
  2146. "type": "package",
  2147. "path": "microsoft.aspnet.identity.entityframework/2.2.3",
  2148. "files": [
  2149. ".nupkg.metadata",
  2150. ".signature.p7s",
  2151. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll",
  2152. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml",
  2153. "microsoft.aspnet.identity.entityframework.2.2.3.nupkg.sha512",
  2154. "microsoft.aspnet.identity.entityframework.nuspec"
  2155. ]
  2156. },
  2157. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  2158. "sha512": "xqdkq+lsWeVBxGq0bwgQeT1inqdFErG/McEBNqFVw0hnNQKxWaGPuBDFc8JBQC82Qn6+V1utI3lWvFmUMGEc8Q==",
  2159. "type": "package",
  2160. "path": "microsoft.aspnetcore.cryptography.internal/5.0.10",
  2161. "files": [
  2162. ".nupkg.metadata",
  2163. ".signature.p7s",
  2164. "Icon.png",
  2165. "THIRD-PARTY-NOTICES.TXT",
  2166. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2167. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2168. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2169. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2170. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2171. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2172. "microsoft.aspnetcore.cryptography.internal.5.0.10.nupkg.sha512",
  2173. "microsoft.aspnetcore.cryptography.internal.nuspec"
  2174. ]
  2175. },
  2176. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  2177. "sha512": "iXsPFNrM6cVGx/zCkz88nDP/pUKn/ni13B6JQhLwOoqI+tsA1x6fVfPp0MKnQtx5AZngGzuNMx+AYR1ED9ZVeg==",
  2178. "type": "package",
  2179. "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.10",
  2180. "files": [
  2181. ".nupkg.metadata",
  2182. ".signature.p7s",
  2183. "Icon.png",
  2184. "THIRD-PARTY-NOTICES.TXT",
  2185. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2186. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2187. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2188. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2189. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2190. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2191. "microsoft.aspnetcore.cryptography.keyderivation.5.0.10.nupkg.sha512",
  2192. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  2193. ]
  2194. },
  2195. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  2196. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2197. "type": "package",
  2198. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2199. "files": [
  2200. ".nupkg.metadata",
  2201. ".signature.p7s",
  2202. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  2203. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  2204. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  2205. "microsoft.aspnetcore.http.abstractions.nuspec"
  2206. ]
  2207. },
  2208. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2209. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2210. "type": "package",
  2211. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2212. "files": [
  2213. ".nupkg.metadata",
  2214. ".signature.p7s",
  2215. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  2216. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  2217. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  2218. "microsoft.aspnetcore.http.features.nuspec"
  2219. ]
  2220. },
  2221. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  2222. "sha512": "L9Tavjj82A9Ybo6Uedxu5CDie7DXXjx5tXLy3P0Ade2LXcrQwC4bJcdj8+QvBHqMnsd9ZsGZfO/T6tqxTYpAJg==",
  2223. "type": "package",
  2224. "path": "microsoft.aspnetcore.identity.entityframeworkcore/5.0.10",
  2225. "files": [
  2226. ".nupkg.metadata",
  2227. ".signature.p7s",
  2228. "Icon.png",
  2229. "THIRD-PARTY-NOTICES.TXT",
  2230. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2231. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2232. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2233. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2234. "microsoft.aspnetcore.identity.entityframeworkcore.5.0.10.nupkg.sha512",
  2235. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  2236. ]
  2237. },
  2238. "Microsoft.CSharp/4.0.1": {
  2239. "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  2240. "type": "package",
  2241. "path": "microsoft.csharp/4.0.1",
  2242. "files": [
  2243. ".nupkg.metadata",
  2244. ".signature.p7s",
  2245. "ThirdPartyNotices.txt",
  2246. "dotnet_library_license.txt",
  2247. "lib/MonoAndroid10/_._",
  2248. "lib/MonoTouch10/_._",
  2249. "lib/net45/_._",
  2250. "lib/netcore50/Microsoft.CSharp.dll",
  2251. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2252. "lib/portable-net45+win8+wp8+wpa81/_._",
  2253. "lib/win8/_._",
  2254. "lib/wp80/_._",
  2255. "lib/wpa81/_._",
  2256. "lib/xamarinios10/_._",
  2257. "lib/xamarinmac20/_._",
  2258. "lib/xamarintvos10/_._",
  2259. "lib/xamarinwatchos10/_._",
  2260. "microsoft.csharp.4.0.1.nupkg.sha512",
  2261. "microsoft.csharp.nuspec",
  2262. "ref/MonoAndroid10/_._",
  2263. "ref/MonoTouch10/_._",
  2264. "ref/net45/_._",
  2265. "ref/netcore50/Microsoft.CSharp.dll",
  2266. "ref/netcore50/Microsoft.CSharp.xml",
  2267. "ref/netcore50/de/Microsoft.CSharp.xml",
  2268. "ref/netcore50/es/Microsoft.CSharp.xml",
  2269. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2270. "ref/netcore50/it/Microsoft.CSharp.xml",
  2271. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2272. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2273. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2274. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2275. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2276. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2277. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2278. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2279. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2280. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2281. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2282. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2283. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2284. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2285. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2286. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2287. "ref/portable-net45+win8+wp8+wpa81/_._",
  2288. "ref/win8/_._",
  2289. "ref/wp80/_._",
  2290. "ref/wpa81/_._",
  2291. "ref/xamarinios10/_._",
  2292. "ref/xamarinmac20/_._",
  2293. "ref/xamarintvos10/_._",
  2294. "ref/xamarinwatchos10/_._"
  2295. ]
  2296. },
  2297. "Microsoft.EntityFrameworkCore/5.0.10": {
  2298. "sha512": "w5+5oewaQWDj4ChxxjLhdxIi98dK+kq7wvqnTco9PodkqHIDMfKk+5fQCQGLQrbhTdNaqyfYE1ApFP66mLXv6Q==",
  2299. "type": "package",
  2300. "path": "microsoft.entityframeworkcore/5.0.10",
  2301. "files": [
  2302. ".nupkg.metadata",
  2303. ".signature.p7s",
  2304. "Icon.png",
  2305. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  2306. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  2307. "microsoft.entityframeworkcore.5.0.10.nupkg.sha512",
  2308. "microsoft.entityframeworkcore.nuspec"
  2309. ]
  2310. },
  2311. "Microsoft.EntityFrameworkCore.Abstractions/5.0.10": {
  2312. "sha512": "Ib85lZI/jxvsKcCS0GHVeqBv/JGzEvKa6HkoyxNu0EDmzDoh4OFl+dDKSx4Vr6I5YWT7nQj3sz6I4I0wHSN0xg==",
  2313. "type": "package",
  2314. "path": "microsoft.entityframeworkcore.abstractions/5.0.10",
  2315. "files": [
  2316. ".nupkg.metadata",
  2317. ".signature.p7s",
  2318. "Icon.png",
  2319. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2320. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2321. "microsoft.entityframeworkcore.abstractions.5.0.10.nupkg.sha512",
  2322. "microsoft.entityframeworkcore.abstractions.nuspec"
  2323. ]
  2324. },
  2325. "Microsoft.EntityFrameworkCore.Analyzers/5.0.10": {
  2326. "sha512": "MBnG+g6jrmK72y4rU+4y2btHrl72i2q3zrXG3pj2zZGXXrG9Q4SlwL5ul0ASmQXYjhJ4VpDfd4o1/gdRPsa2jA==",
  2327. "type": "package",
  2328. "path": "microsoft.entityframeworkcore.analyzers/5.0.10",
  2329. "files": [
  2330. ".nupkg.metadata",
  2331. ".signature.p7s",
  2332. "Icon.png",
  2333. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2334. "lib/netstandard2.0/_._",
  2335. "microsoft.entityframeworkcore.analyzers.5.0.10.nupkg.sha512",
  2336. "microsoft.entityframeworkcore.analyzers.nuspec"
  2337. ]
  2338. },
  2339. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  2340. "sha512": "3l7GA+0y5E3kDOl85KRHhC0zXYA/CyQBQqDXvFGkqYzdPMRyWQkaQz2+yN4CN/SC+TVa48FPIAc2Wim8aWAliQ==",
  2341. "type": "package",
  2342. "path": "microsoft.entityframeworkcore.relational/5.0.10",
  2343. "files": [
  2344. ".nupkg.metadata",
  2345. ".signature.p7s",
  2346. "Icon.png",
  2347. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  2348. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  2349. "microsoft.entityframeworkcore.relational.5.0.10.nupkg.sha512",
  2350. "microsoft.entityframeworkcore.relational.nuspec"
  2351. ]
  2352. },
  2353. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  2354. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  2355. "type": "package",
  2356. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  2357. "files": [
  2358. ".nupkg.metadata",
  2359. ".signature.p7s",
  2360. "Icon.png",
  2361. "LICENSE.TXT",
  2362. "THIRD-PARTY-NOTICES.TXT",
  2363. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  2364. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  2365. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2366. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2367. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  2368. "microsoft.extensions.caching.abstractions.nuspec",
  2369. "useSharedDesignerContext.txt",
  2370. "version.txt"
  2371. ]
  2372. },
  2373. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  2374. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  2375. "type": "package",
  2376. "path": "microsoft.extensions.caching.memory/5.0.0",
  2377. "files": [
  2378. ".nupkg.metadata",
  2379. ".signature.p7s",
  2380. "Icon.png",
  2381. "LICENSE.TXT",
  2382. "THIRD-PARTY-NOTICES.TXT",
  2383. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  2384. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  2385. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2386. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2387. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  2388. "microsoft.extensions.caching.memory.nuspec",
  2389. "useSharedDesignerContext.txt",
  2390. "version.txt"
  2391. ]
  2392. },
  2393. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  2394. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  2395. "type": "package",
  2396. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  2397. "files": [
  2398. ".nupkg.metadata",
  2399. ".signature.p7s",
  2400. "Icon.png",
  2401. "LICENSE.TXT",
  2402. "THIRD-PARTY-NOTICES.TXT",
  2403. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  2404. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  2405. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2406. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2407. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  2408. "microsoft.extensions.configuration.abstractions.nuspec",
  2409. "useSharedDesignerContext.txt"
  2410. ]
  2411. },
  2412. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  2413. "sha512": "xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==",
  2414. "type": "package",
  2415. "path": "microsoft.extensions.dependencyinjection/5.0.2",
  2416. "files": [
  2417. ".nupkg.metadata",
  2418. ".signature.p7s",
  2419. "Icon.png",
  2420. "LICENSE.TXT",
  2421. "THIRD-PARTY-NOTICES.TXT",
  2422. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2423. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2424. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  2425. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  2426. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2427. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2428. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2429. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2430. "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512",
  2431. "microsoft.extensions.dependencyinjection.nuspec",
  2432. "useSharedDesignerContext.txt",
  2433. "version.txt"
  2434. ]
  2435. },
  2436. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  2437. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  2438. "type": "package",
  2439. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  2440. "files": [
  2441. ".nupkg.metadata",
  2442. ".signature.p7s",
  2443. "Icon.png",
  2444. "LICENSE.TXT",
  2445. "THIRD-PARTY-NOTICES.TXT",
  2446. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2447. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2448. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2449. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2450. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  2451. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2452. "useSharedDesignerContext.txt",
  2453. "version.txt"
  2454. ]
  2455. },
  2456. "Microsoft.Extensions.Identity.Core/5.0.10": {
  2457. "sha512": "WKl22APvpTy+wIqvUd1Gvp8FOs7nTHCZDMeMNNC6fDVfzVKWQF55vOJXbkw7dU70sC6GewE/zsqmwyJAHXgDJw==",
  2458. "type": "package",
  2459. "path": "microsoft.extensions.identity.core/5.0.10",
  2460. "files": [
  2461. ".nupkg.metadata",
  2462. ".signature.p7s",
  2463. "Icon.png",
  2464. "THIRD-PARTY-NOTICES.TXT",
  2465. "lib/net461/Microsoft.Extensions.Identity.Core.dll",
  2466. "lib/net461/Microsoft.Extensions.Identity.Core.xml",
  2467. "lib/net5.0/Microsoft.Extensions.Identity.Core.dll",
  2468. "lib/net5.0/Microsoft.Extensions.Identity.Core.xml",
  2469. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  2470. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  2471. "microsoft.extensions.identity.core.5.0.10.nupkg.sha512",
  2472. "microsoft.extensions.identity.core.nuspec"
  2473. ]
  2474. },
  2475. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  2476. "sha512": "fZDlK8G+jzV9ld0jiO2eQ5JQbOmpiND92gX7bP6rcTZ7YJHzIxCw7Hx8+yf4Ex9f6q7v2LJymkmsUz1k7o5nPg==",
  2477. "type": "package",
  2478. "path": "microsoft.extensions.identity.stores/5.0.10",
  2479. "files": [
  2480. ".nupkg.metadata",
  2481. ".signature.p7s",
  2482. "Icon.png",
  2483. "THIRD-PARTY-NOTICES.TXT",
  2484. "lib/net461/Microsoft.Extensions.Identity.Stores.dll",
  2485. "lib/net461/Microsoft.Extensions.Identity.Stores.xml",
  2486. "lib/net5.0/Microsoft.Extensions.Identity.Stores.dll",
  2487. "lib/net5.0/Microsoft.Extensions.Identity.Stores.xml",
  2488. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  2489. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  2490. "microsoft.extensions.identity.stores.5.0.10.nupkg.sha512",
  2491. "microsoft.extensions.identity.stores.nuspec"
  2492. ]
  2493. },
  2494. "Microsoft.Extensions.Logging/5.0.0": {
  2495. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  2496. "type": "package",
  2497. "path": "microsoft.extensions.logging/5.0.0",
  2498. "files": [
  2499. ".nupkg.metadata",
  2500. ".signature.p7s",
  2501. "Icon.png",
  2502. "LICENSE.TXT",
  2503. "THIRD-PARTY-NOTICES.TXT",
  2504. "lib/net461/Microsoft.Extensions.Logging.dll",
  2505. "lib/net461/Microsoft.Extensions.Logging.xml",
  2506. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2507. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2508. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2509. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2510. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  2511. "microsoft.extensions.logging.nuspec",
  2512. "useSharedDesignerContext.txt",
  2513. "version.txt"
  2514. ]
  2515. },
  2516. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  2517. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  2518. "type": "package",
  2519. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  2520. "files": [
  2521. ".nupkg.metadata",
  2522. ".signature.p7s",
  2523. "Icon.png",
  2524. "LICENSE.TXT",
  2525. "THIRD-PARTY-NOTICES.TXT",
  2526. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  2527. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  2528. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2529. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2530. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  2531. "microsoft.extensions.logging.abstractions.nuspec",
  2532. "useSharedDesignerContext.txt",
  2533. "version.txt"
  2534. ]
  2535. },
  2536. "Microsoft.Extensions.Options/5.0.0": {
  2537. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  2538. "type": "package",
  2539. "path": "microsoft.extensions.options/5.0.0",
  2540. "files": [
  2541. ".nupkg.metadata",
  2542. ".signature.p7s",
  2543. "Icon.png",
  2544. "LICENSE.TXT",
  2545. "THIRD-PARTY-NOTICES.TXT",
  2546. "lib/net461/Microsoft.Extensions.Options.dll",
  2547. "lib/net461/Microsoft.Extensions.Options.xml",
  2548. "lib/net5.0/Microsoft.Extensions.Options.dll",
  2549. "lib/net5.0/Microsoft.Extensions.Options.xml",
  2550. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2551. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2552. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  2553. "microsoft.extensions.options.nuspec",
  2554. "useSharedDesignerContext.txt",
  2555. "version.txt"
  2556. ]
  2557. },
  2558. "Microsoft.Extensions.Primitives/6.0.0": {
  2559. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2560. "type": "package",
  2561. "path": "microsoft.extensions.primitives/6.0.0",
  2562. "files": [
  2563. ".nupkg.metadata",
  2564. ".signature.p7s",
  2565. "Icon.png",
  2566. "LICENSE.TXT",
  2567. "THIRD-PARTY-NOTICES.TXT",
  2568. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2569. "buildTransitive/netcoreapp3.1/_._",
  2570. "lib/net461/Microsoft.Extensions.Primitives.dll",
  2571. "lib/net461/Microsoft.Extensions.Primitives.xml",
  2572. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2573. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2574. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2575. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2576. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2577. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2578. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  2579. "microsoft.extensions.primitives.nuspec",
  2580. "useSharedDesignerContext.txt"
  2581. ]
  2582. },
  2583. "Microsoft.NETCore.Platforms/3.1.0": {
  2584. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  2585. "type": "package",
  2586. "path": "microsoft.netcore.platforms/3.1.0",
  2587. "files": [
  2588. ".nupkg.metadata",
  2589. ".signature.p7s",
  2590. "LICENSE.TXT",
  2591. "THIRD-PARTY-NOTICES.TXT",
  2592. "lib/netstandard1.0/_._",
  2593. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  2594. "microsoft.netcore.platforms.nuspec",
  2595. "runtime.json",
  2596. "useSharedDesignerContext.txt",
  2597. "version.txt"
  2598. ]
  2599. },
  2600. "Microsoft.NETCore.Targets/1.1.0": {
  2601. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2602. "type": "package",
  2603. "path": "microsoft.netcore.targets/1.1.0",
  2604. "files": [
  2605. ".nupkg.metadata",
  2606. ".signature.p7s",
  2607. "ThirdPartyNotices.txt",
  2608. "dotnet_library_license.txt",
  2609. "lib/netstandard1.0/_._",
  2610. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2611. "microsoft.netcore.targets.nuspec",
  2612. "runtime.json"
  2613. ]
  2614. },
  2615. "Microsoft.Win32.Primitives/4.0.1": {
  2616. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  2617. "type": "package",
  2618. "path": "microsoft.win32.primitives/4.0.1",
  2619. "files": [
  2620. ".nupkg.metadata",
  2621. "ThirdPartyNotices.txt",
  2622. "dotnet_library_license.txt",
  2623. "lib/MonoAndroid10/_._",
  2624. "lib/MonoTouch10/_._",
  2625. "lib/net46/Microsoft.Win32.Primitives.dll",
  2626. "lib/xamarinios10/_._",
  2627. "lib/xamarinmac20/_._",
  2628. "lib/xamarintvos10/_._",
  2629. "lib/xamarinwatchos10/_._",
  2630. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  2631. "microsoft.win32.primitives.nuspec",
  2632. "ref/MonoAndroid10/_._",
  2633. "ref/MonoTouch10/_._",
  2634. "ref/net46/Microsoft.Win32.Primitives.dll",
  2635. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  2636. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  2637. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  2638. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  2639. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  2640. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  2641. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  2642. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  2643. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  2644. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  2645. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  2646. "ref/xamarinios10/_._",
  2647. "ref/xamarinmac20/_._",
  2648. "ref/xamarintvos10/_._",
  2649. "ref/xamarinwatchos10/_._"
  2650. ]
  2651. },
  2652. "Microsoft.Win32.Registry/4.7.0": {
  2653. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  2654. "type": "package",
  2655. "path": "microsoft.win32.registry/4.7.0",
  2656. "files": [
  2657. ".nupkg.metadata",
  2658. ".signature.p7s",
  2659. "LICENSE.TXT",
  2660. "THIRD-PARTY-NOTICES.TXT",
  2661. "lib/net46/Microsoft.Win32.Registry.dll",
  2662. "lib/net461/Microsoft.Win32.Registry.dll",
  2663. "lib/net461/Microsoft.Win32.Registry.xml",
  2664. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  2665. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  2666. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  2667. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  2668. "microsoft.win32.registry.nuspec",
  2669. "ref/net46/Microsoft.Win32.Registry.dll",
  2670. "ref/net461/Microsoft.Win32.Registry.dll",
  2671. "ref/net461/Microsoft.Win32.Registry.xml",
  2672. "ref/net472/Microsoft.Win32.Registry.dll",
  2673. "ref/net472/Microsoft.Win32.Registry.xml",
  2674. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  2675. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  2676. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  2677. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  2678. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  2679. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  2680. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  2681. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  2682. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  2683. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  2684. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  2685. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  2686. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  2687. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  2688. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  2689. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  2690. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  2691. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  2692. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  2693. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  2694. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  2695. "useSharedDesignerContext.txt",
  2696. "version.txt"
  2697. ]
  2698. },
  2699. "Microsoft.Win32.SystemEvents/4.7.0": {
  2700. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  2701. "type": "package",
  2702. "path": "microsoft.win32.systemevents/4.7.0",
  2703. "files": [
  2704. ".nupkg.metadata",
  2705. ".signature.p7s",
  2706. "LICENSE.TXT",
  2707. "THIRD-PARTY-NOTICES.TXT",
  2708. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  2709. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  2710. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  2711. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  2712. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  2713. "microsoft.win32.systemevents.nuspec",
  2714. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  2715. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  2716. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  2717. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  2718. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  2719. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  2720. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  2721. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  2722. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  2723. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  2724. "useSharedDesignerContext.txt",
  2725. "version.txt"
  2726. ]
  2727. },
  2728. "MySql.Data/8.0.22": {
  2729. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  2730. "type": "package",
  2731. "path": "mysql.data/8.0.22",
  2732. "files": [
  2733. ".nupkg.metadata",
  2734. ".signature.p7s",
  2735. "lib/net452/MySql.Data.dll",
  2736. "lib/net452/MySql.Data.xml",
  2737. "lib/net452/Ubiety.Dns.Core.dll",
  2738. "lib/net452/Zstandard.Net.dll",
  2739. "lib/net48/MySql.Data.dll",
  2740. "lib/net48/MySql.Data.xml",
  2741. "lib/net48/Ubiety.Dns.Core.dll",
  2742. "lib/net48/Zstandard.Net.dll",
  2743. "lib/net5.0/MySql.Data.dll",
  2744. "lib/net5.0/MySql.Data.xml",
  2745. "lib/net5.0/Ubiety.Dns.Core.dll",
  2746. "lib/net5.0/Zstandard.Net.dll",
  2747. "lib/netstandard2.0/MySql.Data.dll",
  2748. "lib/netstandard2.0/MySql.Data.xml",
  2749. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  2750. "lib/netstandard2.0/Zstandard.Net.dll",
  2751. "lib/netstandard2.1/MySql.Data.dll",
  2752. "lib/netstandard2.1/MySql.Data.xml",
  2753. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  2754. "lib/netstandard2.1/Zstandard.Net.dll",
  2755. "mysql.data.8.0.22.nupkg.sha512",
  2756. "mysql.data.nuspec"
  2757. ]
  2758. },
  2759. "MySql.Data.EntityFrameworkCore/8.0.22": {
  2760. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  2761. "type": "package",
  2762. "path": "mysql.data.entityframeworkcore/8.0.22",
  2763. "files": [
  2764. ".nupkg.metadata",
  2765. ".signature.p7s",
  2766. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  2767. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  2768. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  2769. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  2770. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  2771. "mysql.data.entityframeworkcore.nuspec"
  2772. ]
  2773. },
  2774. "MySqlConnector/1.1.0": {
  2775. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  2776. "type": "package",
  2777. "path": "mysqlconnector/1.1.0",
  2778. "files": [
  2779. ".nupkg.metadata",
  2780. ".signature.p7s",
  2781. "lib/net45/MySqlConnector.dll",
  2782. "lib/net45/MySqlConnector.xml",
  2783. "lib/net461/MySqlConnector.dll",
  2784. "lib/net461/MySqlConnector.xml",
  2785. "lib/net471/MySqlConnector.dll",
  2786. "lib/net471/MySqlConnector.xml",
  2787. "lib/net5.0/MySqlConnector.dll",
  2788. "lib/net5.0/MySqlConnector.xml",
  2789. "lib/netcoreapp2.1/MySqlConnector.dll",
  2790. "lib/netcoreapp2.1/MySqlConnector.xml",
  2791. "lib/netcoreapp3.1/MySqlConnector.dll",
  2792. "lib/netcoreapp3.1/MySqlConnector.xml",
  2793. "lib/netstandard1.3/MySqlConnector.dll",
  2794. "lib/netstandard1.3/MySqlConnector.xml",
  2795. "lib/netstandard2.0/MySqlConnector.dll",
  2796. "lib/netstandard2.0/MySqlConnector.xml",
  2797. "lib/netstandard2.1/MySqlConnector.dll",
  2798. "lib/netstandard2.1/MySqlConnector.xml",
  2799. "logo.png",
  2800. "mysqlconnector.1.1.0.nupkg.sha512",
  2801. "mysqlconnector.nuspec"
  2802. ]
  2803. },
  2804. "NETStandard.Library/1.6.0": {
  2805. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  2806. "type": "package",
  2807. "path": "netstandard.library/1.6.0",
  2808. "files": [
  2809. ".nupkg.metadata",
  2810. "ThirdPartyNotices.txt",
  2811. "dotnet_library_license.txt",
  2812. "netstandard.library.1.6.0.nupkg.sha512",
  2813. "netstandard.library.nuspec"
  2814. ]
  2815. },
  2816. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  2817. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  2818. "type": "package",
  2819. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  2820. "files": [
  2821. ".nupkg.metadata",
  2822. ".signature.p7s",
  2823. "icon.png",
  2824. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  2825. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  2826. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  2827. "pomelo.entityframeworkcore.mysql.nuspec"
  2828. ]
  2829. },
  2830. "runtime.native.System/4.0.0": {
  2831. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  2832. "type": "package",
  2833. "path": "runtime.native.system/4.0.0",
  2834. "files": [
  2835. ".nupkg.metadata",
  2836. "ThirdPartyNotices.txt",
  2837. "dotnet_library_license.txt",
  2838. "lib/netstandard1.0/_._",
  2839. "runtime.native.system.4.0.0.nupkg.sha512",
  2840. "runtime.native.system.nuspec"
  2841. ]
  2842. },
  2843. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  2844. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  2845. "type": "package",
  2846. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  2847. "files": [
  2848. ".nupkg.metadata",
  2849. ".signature.p7s",
  2850. "LICENSE.TXT",
  2851. "THIRD-PARTY-NOTICES.TXT",
  2852. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  2853. "runtime.native.system.data.sqlclient.sni.nuspec",
  2854. "useSharedDesignerContext.txt",
  2855. "version.txt"
  2856. ]
  2857. },
  2858. "runtime.native.System.IO.Compression/4.1.0": {
  2859. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  2860. "type": "package",
  2861. "path": "runtime.native.system.io.compression/4.1.0",
  2862. "files": [
  2863. ".nupkg.metadata",
  2864. "ThirdPartyNotices.txt",
  2865. "dotnet_library_license.txt",
  2866. "lib/netstandard1.0/_._",
  2867. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  2868. "runtime.native.system.io.compression.nuspec"
  2869. ]
  2870. },
  2871. "runtime.native.System.Net.Http/4.0.1": {
  2872. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  2873. "type": "package",
  2874. "path": "runtime.native.system.net.http/4.0.1",
  2875. "files": [
  2876. ".nupkg.metadata",
  2877. "ThirdPartyNotices.txt",
  2878. "dotnet_library_license.txt",
  2879. "lib/netstandard1.0/_._",
  2880. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  2881. "runtime.native.system.net.http.nuspec"
  2882. ]
  2883. },
  2884. "runtime.native.System.Security.Cryptography/4.0.0": {
  2885. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  2886. "type": "package",
  2887. "path": "runtime.native.system.security.cryptography/4.0.0",
  2888. "files": [
  2889. ".nupkg.metadata",
  2890. "ThirdPartyNotices.txt",
  2891. "dotnet_library_license.txt",
  2892. "lib/netstandard1.0/_._",
  2893. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  2894. "runtime.native.system.security.cryptography.nuspec"
  2895. ]
  2896. },
  2897. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2898. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  2899. "type": "package",
  2900. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2901. "files": [
  2902. ".nupkg.metadata",
  2903. ".signature.p7s",
  2904. "ThirdPartyNotices.txt",
  2905. "dotnet_library_license.txt",
  2906. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  2907. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  2908. "runtimes/win-arm64/native/sni.dll",
  2909. "useSharedDesignerContext.txt",
  2910. "version.txt"
  2911. ]
  2912. },
  2913. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2914. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  2915. "type": "package",
  2916. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2917. "files": [
  2918. ".nupkg.metadata",
  2919. ".signature.p7s",
  2920. "ThirdPartyNotices.txt",
  2921. "dotnet_library_license.txt",
  2922. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  2923. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  2924. "runtimes/win-x64/native/sni.dll",
  2925. "useSharedDesignerContext.txt",
  2926. "version.txt"
  2927. ]
  2928. },
  2929. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2930. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  2931. "type": "package",
  2932. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  2933. "files": [
  2934. ".nupkg.metadata",
  2935. ".signature.p7s",
  2936. "ThirdPartyNotices.txt",
  2937. "dotnet_library_license.txt",
  2938. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  2939. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  2940. "runtimes/win-x86/native/sni.dll",
  2941. "useSharedDesignerContext.txt",
  2942. "version.txt"
  2943. ]
  2944. },
  2945. "SSH.NET/2016.1.0": {
  2946. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  2947. "type": "package",
  2948. "path": "ssh.net/2016.1.0",
  2949. "files": [
  2950. ".nupkg.metadata",
  2951. ".signature.p7s",
  2952. "lib/net35/Renci.SshNet.dll",
  2953. "lib/net35/Renci.SshNet.xml",
  2954. "lib/net40/Renci.SshNet.dll",
  2955. "lib/net40/Renci.SshNet.xml",
  2956. "lib/netstandard1.3/Renci.SshNet.dll",
  2957. "lib/netstandard1.3/Renci.SshNet.xml",
  2958. "lib/sl4/Renci.SshNet.dll",
  2959. "lib/sl4/Renci.SshNet.xml",
  2960. "lib/sl5/Renci.SshNet.dll",
  2961. "lib/sl5/Renci.SshNet.xml",
  2962. "lib/uap10/Renci.SshNet.dll",
  2963. "lib/uap10/Renci.SshNet.xml",
  2964. "lib/wp71/Renci.SshNet.dll",
  2965. "lib/wp71/Renci.SshNet.xml",
  2966. "lib/wp8/Renci.SshNet.dll",
  2967. "lib/wp8/Renci.SshNet.xml",
  2968. "ssh.net.2016.1.0.nupkg.sha512",
  2969. "ssh.net.nuspec"
  2970. ]
  2971. },
  2972. "SshNet.Security.Cryptography/1.2.0": {
  2973. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  2974. "type": "package",
  2975. "path": "sshnet.security.cryptography/1.2.0",
  2976. "files": [
  2977. ".nupkg.metadata",
  2978. ".signature.p7s",
  2979. "lib/net20/SshNet.Security.Cryptography.dll",
  2980. "lib/net20/SshNet.Security.Cryptography.xml",
  2981. "lib/net40/SshNet.Security.Cryptography.dll",
  2982. "lib/net40/SshNet.Security.Cryptography.xml",
  2983. "lib/net45/SshNet.Security.Cryptography.dll",
  2984. "lib/net45/SshNet.Security.Cryptography.xml",
  2985. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  2986. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  2987. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  2988. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  2989. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  2990. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  2991. "lib/sl4/SshNet.Security.Cryptography.dll",
  2992. "lib/sl4/SshNet.Security.Cryptography.xml",
  2993. "lib/sl5/SshNet.Security.Cryptography.dll",
  2994. "lib/sl5/SshNet.Security.Cryptography.xml",
  2995. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  2996. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  2997. "lib/wp71/SshNet.Security.Cryptography.dll",
  2998. "lib/wp71/SshNet.Security.Cryptography.xml",
  2999. "lib/wp8/SshNet.Security.Cryptography.dll",
  3000. "lib/wp8/SshNet.Security.Cryptography.xml",
  3001. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3002. "sshnet.security.cryptography.nuspec"
  3003. ]
  3004. },
  3005. "System.AppContext/4.1.0": {
  3006. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  3007. "type": "package",
  3008. "path": "system.appcontext/4.1.0",
  3009. "files": [
  3010. ".nupkg.metadata",
  3011. "ThirdPartyNotices.txt",
  3012. "dotnet_library_license.txt",
  3013. "lib/MonoAndroid10/_._",
  3014. "lib/MonoTouch10/_._",
  3015. "lib/net46/System.AppContext.dll",
  3016. "lib/net463/System.AppContext.dll",
  3017. "lib/netcore50/System.AppContext.dll",
  3018. "lib/netstandard1.6/System.AppContext.dll",
  3019. "lib/xamarinios10/_._",
  3020. "lib/xamarinmac20/_._",
  3021. "lib/xamarintvos10/_._",
  3022. "lib/xamarinwatchos10/_._",
  3023. "ref/MonoAndroid10/_._",
  3024. "ref/MonoTouch10/_._",
  3025. "ref/net46/System.AppContext.dll",
  3026. "ref/net463/System.AppContext.dll",
  3027. "ref/netstandard/_._",
  3028. "ref/netstandard1.3/System.AppContext.dll",
  3029. "ref/netstandard1.3/System.AppContext.xml",
  3030. "ref/netstandard1.3/de/System.AppContext.xml",
  3031. "ref/netstandard1.3/es/System.AppContext.xml",
  3032. "ref/netstandard1.3/fr/System.AppContext.xml",
  3033. "ref/netstandard1.3/it/System.AppContext.xml",
  3034. "ref/netstandard1.3/ja/System.AppContext.xml",
  3035. "ref/netstandard1.3/ko/System.AppContext.xml",
  3036. "ref/netstandard1.3/ru/System.AppContext.xml",
  3037. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3038. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3039. "ref/netstandard1.6/System.AppContext.dll",
  3040. "ref/netstandard1.6/System.AppContext.xml",
  3041. "ref/netstandard1.6/de/System.AppContext.xml",
  3042. "ref/netstandard1.6/es/System.AppContext.xml",
  3043. "ref/netstandard1.6/fr/System.AppContext.xml",
  3044. "ref/netstandard1.6/it/System.AppContext.xml",
  3045. "ref/netstandard1.6/ja/System.AppContext.xml",
  3046. "ref/netstandard1.6/ko/System.AppContext.xml",
  3047. "ref/netstandard1.6/ru/System.AppContext.xml",
  3048. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3049. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3050. "ref/xamarinios10/_._",
  3051. "ref/xamarinmac20/_._",
  3052. "ref/xamarintvos10/_._",
  3053. "ref/xamarinwatchos10/_._",
  3054. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3055. "system.appcontext.4.1.0.nupkg.sha512",
  3056. "system.appcontext.nuspec"
  3057. ]
  3058. },
  3059. "System.Buffers/4.5.1": {
  3060. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  3061. "type": "package",
  3062. "path": "system.buffers/4.5.1",
  3063. "files": [
  3064. ".nupkg.metadata",
  3065. ".signature.p7s",
  3066. "LICENSE.TXT",
  3067. "THIRD-PARTY-NOTICES.TXT",
  3068. "lib/net461/System.Buffers.dll",
  3069. "lib/net461/System.Buffers.xml",
  3070. "lib/netcoreapp2.0/_._",
  3071. "lib/netstandard1.1/System.Buffers.dll",
  3072. "lib/netstandard1.1/System.Buffers.xml",
  3073. "lib/netstandard2.0/System.Buffers.dll",
  3074. "lib/netstandard2.0/System.Buffers.xml",
  3075. "lib/uap10.0.16299/_._",
  3076. "ref/net45/System.Buffers.dll",
  3077. "ref/net45/System.Buffers.xml",
  3078. "ref/netcoreapp2.0/_._",
  3079. "ref/netstandard1.1/System.Buffers.dll",
  3080. "ref/netstandard1.1/System.Buffers.xml",
  3081. "ref/netstandard2.0/System.Buffers.dll",
  3082. "ref/netstandard2.0/System.Buffers.xml",
  3083. "ref/uap10.0.16299/_._",
  3084. "system.buffers.4.5.1.nupkg.sha512",
  3085. "system.buffers.nuspec",
  3086. "useSharedDesignerContext.txt",
  3087. "version.txt"
  3088. ]
  3089. },
  3090. "System.Collections/4.0.11": {
  3091. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  3092. "type": "package",
  3093. "path": "system.collections/4.0.11",
  3094. "files": [
  3095. ".nupkg.metadata",
  3096. "ThirdPartyNotices.txt",
  3097. "dotnet_library_license.txt",
  3098. "lib/MonoAndroid10/_._",
  3099. "lib/MonoTouch10/_._",
  3100. "lib/net45/_._",
  3101. "lib/portable-net45+win8+wp8+wpa81/_._",
  3102. "lib/win8/_._",
  3103. "lib/wp80/_._",
  3104. "lib/wpa81/_._",
  3105. "lib/xamarinios10/_._",
  3106. "lib/xamarinmac20/_._",
  3107. "lib/xamarintvos10/_._",
  3108. "lib/xamarinwatchos10/_._",
  3109. "ref/MonoAndroid10/_._",
  3110. "ref/MonoTouch10/_._",
  3111. "ref/net45/_._",
  3112. "ref/netcore50/System.Collections.dll",
  3113. "ref/netcore50/System.Collections.xml",
  3114. "ref/netcore50/de/System.Collections.xml",
  3115. "ref/netcore50/es/System.Collections.xml",
  3116. "ref/netcore50/fr/System.Collections.xml",
  3117. "ref/netcore50/it/System.Collections.xml",
  3118. "ref/netcore50/ja/System.Collections.xml",
  3119. "ref/netcore50/ko/System.Collections.xml",
  3120. "ref/netcore50/ru/System.Collections.xml",
  3121. "ref/netcore50/zh-hans/System.Collections.xml",
  3122. "ref/netcore50/zh-hant/System.Collections.xml",
  3123. "ref/netstandard1.0/System.Collections.dll",
  3124. "ref/netstandard1.0/System.Collections.xml",
  3125. "ref/netstandard1.0/de/System.Collections.xml",
  3126. "ref/netstandard1.0/es/System.Collections.xml",
  3127. "ref/netstandard1.0/fr/System.Collections.xml",
  3128. "ref/netstandard1.0/it/System.Collections.xml",
  3129. "ref/netstandard1.0/ja/System.Collections.xml",
  3130. "ref/netstandard1.0/ko/System.Collections.xml",
  3131. "ref/netstandard1.0/ru/System.Collections.xml",
  3132. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3133. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3134. "ref/netstandard1.3/System.Collections.dll",
  3135. "ref/netstandard1.3/System.Collections.xml",
  3136. "ref/netstandard1.3/de/System.Collections.xml",
  3137. "ref/netstandard1.3/es/System.Collections.xml",
  3138. "ref/netstandard1.3/fr/System.Collections.xml",
  3139. "ref/netstandard1.3/it/System.Collections.xml",
  3140. "ref/netstandard1.3/ja/System.Collections.xml",
  3141. "ref/netstandard1.3/ko/System.Collections.xml",
  3142. "ref/netstandard1.3/ru/System.Collections.xml",
  3143. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3144. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3145. "ref/portable-net45+win8+wp8+wpa81/_._",
  3146. "ref/win8/_._",
  3147. "ref/wp80/_._",
  3148. "ref/wpa81/_._",
  3149. "ref/xamarinios10/_._",
  3150. "ref/xamarinmac20/_._",
  3151. "ref/xamarintvos10/_._",
  3152. "ref/xamarinwatchos10/_._",
  3153. "system.collections.4.0.11.nupkg.sha512",
  3154. "system.collections.nuspec"
  3155. ]
  3156. },
  3157. "System.Collections.Concurrent/4.0.12": {
  3158. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  3159. "type": "package",
  3160. "path": "system.collections.concurrent/4.0.12",
  3161. "files": [
  3162. ".nupkg.metadata",
  3163. "ThirdPartyNotices.txt",
  3164. "dotnet_library_license.txt",
  3165. "lib/MonoAndroid10/_._",
  3166. "lib/MonoTouch10/_._",
  3167. "lib/net45/_._",
  3168. "lib/netcore50/System.Collections.Concurrent.dll",
  3169. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3170. "lib/portable-net45+win8+wpa81/_._",
  3171. "lib/win8/_._",
  3172. "lib/wpa81/_._",
  3173. "lib/xamarinios10/_._",
  3174. "lib/xamarinmac20/_._",
  3175. "lib/xamarintvos10/_._",
  3176. "lib/xamarinwatchos10/_._",
  3177. "ref/MonoAndroid10/_._",
  3178. "ref/MonoTouch10/_._",
  3179. "ref/net45/_._",
  3180. "ref/netcore50/System.Collections.Concurrent.dll",
  3181. "ref/netcore50/System.Collections.Concurrent.xml",
  3182. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3183. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3184. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3185. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3186. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3187. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3188. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3189. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3190. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3191. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3192. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3193. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3194. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3195. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3196. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3197. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3198. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3199. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3200. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3201. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3202. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3203. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3204. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3205. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3206. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3207. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3208. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3209. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3210. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3211. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3212. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3213. "ref/portable-net45+win8+wpa81/_._",
  3214. "ref/win8/_._",
  3215. "ref/wpa81/_._",
  3216. "ref/xamarinios10/_._",
  3217. "ref/xamarinmac20/_._",
  3218. "ref/xamarintvos10/_._",
  3219. "ref/xamarinwatchos10/_._",
  3220. "system.collections.concurrent.4.0.12.nupkg.sha512",
  3221. "system.collections.concurrent.nuspec"
  3222. ]
  3223. },
  3224. "System.Collections.Immutable/5.0.0": {
  3225. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  3226. "type": "package",
  3227. "path": "system.collections.immutable/5.0.0",
  3228. "files": [
  3229. ".nupkg.metadata",
  3230. ".signature.p7s",
  3231. "Icon.png",
  3232. "LICENSE.TXT",
  3233. "THIRD-PARTY-NOTICES.TXT",
  3234. "lib/net461/System.Collections.Immutable.dll",
  3235. "lib/net461/System.Collections.Immutable.xml",
  3236. "lib/netstandard1.0/System.Collections.Immutable.dll",
  3237. "lib/netstandard1.0/System.Collections.Immutable.xml",
  3238. "lib/netstandard1.3/System.Collections.Immutable.dll",
  3239. "lib/netstandard1.3/System.Collections.Immutable.xml",
  3240. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3241. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3242. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  3243. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  3244. "system.collections.immutable.5.0.0.nupkg.sha512",
  3245. "system.collections.immutable.nuspec",
  3246. "useSharedDesignerContext.txt",
  3247. "version.txt"
  3248. ]
  3249. },
  3250. "System.ComponentModel.Annotations/5.0.0": {
  3251. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  3252. "type": "package",
  3253. "path": "system.componentmodel.annotations/5.0.0",
  3254. "files": [
  3255. ".nupkg.metadata",
  3256. ".signature.p7s",
  3257. "Icon.png",
  3258. "LICENSE.TXT",
  3259. "THIRD-PARTY-NOTICES.TXT",
  3260. "lib/MonoAndroid10/_._",
  3261. "lib/MonoTouch10/_._",
  3262. "lib/net45/_._",
  3263. "lib/net461/System.ComponentModel.Annotations.dll",
  3264. "lib/netcore50/System.ComponentModel.Annotations.dll",
  3265. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  3266. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  3267. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  3268. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  3269. "lib/portable-net45+win8/_._",
  3270. "lib/win8/_._",
  3271. "lib/xamarinios10/_._",
  3272. "lib/xamarinmac20/_._",
  3273. "lib/xamarintvos10/_._",
  3274. "lib/xamarinwatchos10/_._",
  3275. "ref/MonoAndroid10/_._",
  3276. "ref/MonoTouch10/_._",
  3277. "ref/net45/_._",
  3278. "ref/net461/System.ComponentModel.Annotations.dll",
  3279. "ref/net461/System.ComponentModel.Annotations.xml",
  3280. "ref/netcore50/System.ComponentModel.Annotations.dll",
  3281. "ref/netcore50/System.ComponentModel.Annotations.xml",
  3282. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  3283. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  3284. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  3285. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  3286. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  3287. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  3288. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  3289. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  3290. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  3291. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  3292. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  3293. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  3294. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  3295. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  3296. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  3297. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  3298. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  3299. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  3300. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  3301. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  3302. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  3303. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  3304. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  3305. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  3306. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  3307. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  3308. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  3309. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  3310. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  3311. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  3312. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  3313. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  3314. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  3315. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  3316. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  3317. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  3318. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  3319. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  3320. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  3321. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  3322. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  3323. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  3324. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  3325. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  3326. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  3327. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  3328. "ref/portable-net45+win8/_._",
  3329. "ref/win8/_._",
  3330. "ref/xamarinios10/_._",
  3331. "ref/xamarinmac20/_._",
  3332. "ref/xamarintvos10/_._",
  3333. "ref/xamarinwatchos10/_._",
  3334. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  3335. "system.componentmodel.annotations.nuspec",
  3336. "useSharedDesignerContext.txt",
  3337. "version.txt"
  3338. ]
  3339. },
  3340. "System.Configuration.ConfigurationManager/4.4.1": {
  3341. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  3342. "type": "package",
  3343. "path": "system.configuration.configurationmanager/4.4.1",
  3344. "files": [
  3345. ".nupkg.metadata",
  3346. ".signature.p7s",
  3347. "LICENSE.TXT",
  3348. "THIRD-PARTY-NOTICES.TXT",
  3349. "lib/net461/System.Configuration.ConfigurationManager.dll",
  3350. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3351. "ref/net461/System.Configuration.ConfigurationManager.dll",
  3352. "ref/net461/System.Configuration.ConfigurationManager.xml",
  3353. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3354. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  3355. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  3356. "system.configuration.configurationmanager.nuspec",
  3357. "useSharedDesignerContext.txt",
  3358. "version.txt"
  3359. ]
  3360. },
  3361. "System.Console/4.0.0": {
  3362. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  3363. "type": "package",
  3364. "path": "system.console/4.0.0",
  3365. "files": [
  3366. ".nupkg.metadata",
  3367. "ThirdPartyNotices.txt",
  3368. "dotnet_library_license.txt",
  3369. "lib/MonoAndroid10/_._",
  3370. "lib/MonoTouch10/_._",
  3371. "lib/net46/System.Console.dll",
  3372. "lib/xamarinios10/_._",
  3373. "lib/xamarinmac20/_._",
  3374. "lib/xamarintvos10/_._",
  3375. "lib/xamarinwatchos10/_._",
  3376. "ref/MonoAndroid10/_._",
  3377. "ref/MonoTouch10/_._",
  3378. "ref/net46/System.Console.dll",
  3379. "ref/netstandard1.3/System.Console.dll",
  3380. "ref/netstandard1.3/System.Console.xml",
  3381. "ref/netstandard1.3/de/System.Console.xml",
  3382. "ref/netstandard1.3/es/System.Console.xml",
  3383. "ref/netstandard1.3/fr/System.Console.xml",
  3384. "ref/netstandard1.3/it/System.Console.xml",
  3385. "ref/netstandard1.3/ja/System.Console.xml",
  3386. "ref/netstandard1.3/ko/System.Console.xml",
  3387. "ref/netstandard1.3/ru/System.Console.xml",
  3388. "ref/netstandard1.3/zh-hans/System.Console.xml",
  3389. "ref/netstandard1.3/zh-hant/System.Console.xml",
  3390. "ref/xamarinios10/_._",
  3391. "ref/xamarinmac20/_._",
  3392. "ref/xamarintvos10/_._",
  3393. "ref/xamarinwatchos10/_._",
  3394. "system.console.4.0.0.nupkg.sha512",
  3395. "system.console.nuspec"
  3396. ]
  3397. },
  3398. "System.Data.SqlClient/4.8.3": {
  3399. "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
  3400. "type": "package",
  3401. "path": "system.data.sqlclient/4.8.3",
  3402. "files": [
  3403. ".nupkg.metadata",
  3404. ".signature.p7s",
  3405. "Icon.png",
  3406. "LICENSE.TXT",
  3407. "THIRD-PARTY-NOTICES.TXT",
  3408. "lib/MonoAndroid10/_._",
  3409. "lib/MonoTouch10/_._",
  3410. "lib/net451/System.Data.SqlClient.dll",
  3411. "lib/net46/System.Data.SqlClient.dll",
  3412. "lib/net461/System.Data.SqlClient.dll",
  3413. "lib/net461/System.Data.SqlClient.xml",
  3414. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3415. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3416. "lib/netstandard1.2/System.Data.SqlClient.dll",
  3417. "lib/netstandard1.2/System.Data.SqlClient.xml",
  3418. "lib/netstandard1.3/System.Data.SqlClient.dll",
  3419. "lib/netstandard1.3/System.Data.SqlClient.xml",
  3420. "lib/netstandard2.0/System.Data.SqlClient.dll",
  3421. "lib/netstandard2.0/System.Data.SqlClient.xml",
  3422. "lib/xamarinios10/_._",
  3423. "lib/xamarinmac20/_._",
  3424. "lib/xamarintvos10/_._",
  3425. "lib/xamarinwatchos10/_._",
  3426. "ref/MonoAndroid10/_._",
  3427. "ref/MonoTouch10/_._",
  3428. "ref/net451/System.Data.SqlClient.dll",
  3429. "ref/net46/System.Data.SqlClient.dll",
  3430. "ref/net461/System.Data.SqlClient.dll",
  3431. "ref/net461/System.Data.SqlClient.xml",
  3432. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  3433. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  3434. "ref/netstandard1.2/System.Data.SqlClient.dll",
  3435. "ref/netstandard1.2/System.Data.SqlClient.xml",
  3436. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  3437. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  3438. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  3439. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  3440. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  3441. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  3442. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  3443. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  3444. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  3445. "ref/netstandard1.3/System.Data.SqlClient.dll",
  3446. "ref/netstandard1.3/System.Data.SqlClient.xml",
  3447. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  3448. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  3449. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  3450. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  3451. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  3452. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  3453. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  3454. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  3455. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  3456. "ref/netstandard2.0/System.Data.SqlClient.dll",
  3457. "ref/netstandard2.0/System.Data.SqlClient.xml",
  3458. "ref/xamarinios10/_._",
  3459. "ref/xamarinmac20/_._",
  3460. "ref/xamarintvos10/_._",
  3461. "ref/xamarinwatchos10/_._",
  3462. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3463. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3464. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  3465. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  3466. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  3467. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  3468. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  3469. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  3470. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  3471. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3472. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3473. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  3474. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  3475. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  3476. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  3477. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  3478. "system.data.sqlclient.4.8.3.nupkg.sha512",
  3479. "system.data.sqlclient.nuspec",
  3480. "useSharedDesignerContext.txt",
  3481. "version.txt"
  3482. ]
  3483. },
  3484. "System.Diagnostics.Debug/4.0.11": {
  3485. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  3486. "type": "package",
  3487. "path": "system.diagnostics.debug/4.0.11",
  3488. "files": [
  3489. ".nupkg.metadata",
  3490. "ThirdPartyNotices.txt",
  3491. "dotnet_library_license.txt",
  3492. "lib/MonoAndroid10/_._",
  3493. "lib/MonoTouch10/_._",
  3494. "lib/net45/_._",
  3495. "lib/portable-net45+win8+wp8+wpa81/_._",
  3496. "lib/win8/_._",
  3497. "lib/wp80/_._",
  3498. "lib/wpa81/_._",
  3499. "lib/xamarinios10/_._",
  3500. "lib/xamarinmac20/_._",
  3501. "lib/xamarintvos10/_._",
  3502. "lib/xamarinwatchos10/_._",
  3503. "ref/MonoAndroid10/_._",
  3504. "ref/MonoTouch10/_._",
  3505. "ref/net45/_._",
  3506. "ref/netcore50/System.Diagnostics.Debug.dll",
  3507. "ref/netcore50/System.Diagnostics.Debug.xml",
  3508. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  3509. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  3510. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  3511. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  3512. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  3513. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  3514. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  3515. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  3516. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  3517. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  3518. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  3519. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  3520. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  3521. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  3522. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  3523. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  3524. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  3525. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  3526. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  3527. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  3528. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  3529. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  3530. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  3531. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  3532. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  3533. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  3534. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  3535. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  3536. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  3537. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  3538. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  3539. "ref/portable-net45+win8+wp8+wpa81/_._",
  3540. "ref/win8/_._",
  3541. "ref/wp80/_._",
  3542. "ref/wpa81/_._",
  3543. "ref/xamarinios10/_._",
  3544. "ref/xamarinmac20/_._",
  3545. "ref/xamarintvos10/_._",
  3546. "ref/xamarinwatchos10/_._",
  3547. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  3548. "system.diagnostics.debug.nuspec"
  3549. ]
  3550. },
  3551. "System.Diagnostics.DiagnosticSource/5.0.1": {
  3552. "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  3553. "type": "package",
  3554. "path": "system.diagnostics.diagnosticsource/5.0.1",
  3555. "files": [
  3556. ".nupkg.metadata",
  3557. ".signature.p7s",
  3558. "Icon.png",
  3559. "LICENSE.TXT",
  3560. "THIRD-PARTY-NOTICES.TXT",
  3561. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  3562. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  3563. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  3564. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  3565. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  3566. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  3567. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  3568. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  3569. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  3570. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  3571. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  3572. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  3573. "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
  3574. "system.diagnostics.diagnosticsource.nuspec",
  3575. "useSharedDesignerContext.txt",
  3576. "version.txt"
  3577. ]
  3578. },
  3579. "System.Diagnostics.Tools/4.0.1": {
  3580. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  3581. "type": "package",
  3582. "path": "system.diagnostics.tools/4.0.1",
  3583. "files": [
  3584. ".nupkg.metadata",
  3585. "ThirdPartyNotices.txt",
  3586. "dotnet_library_license.txt",
  3587. "lib/MonoAndroid10/_._",
  3588. "lib/MonoTouch10/_._",
  3589. "lib/net45/_._",
  3590. "lib/portable-net45+win8+wp8+wpa81/_._",
  3591. "lib/win8/_._",
  3592. "lib/wp80/_._",
  3593. "lib/wpa81/_._",
  3594. "lib/xamarinios10/_._",
  3595. "lib/xamarinmac20/_._",
  3596. "lib/xamarintvos10/_._",
  3597. "lib/xamarinwatchos10/_._",
  3598. "ref/MonoAndroid10/_._",
  3599. "ref/MonoTouch10/_._",
  3600. "ref/net45/_._",
  3601. "ref/netcore50/System.Diagnostics.Tools.dll",
  3602. "ref/netcore50/System.Diagnostics.Tools.xml",
  3603. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  3604. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  3605. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  3606. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  3607. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  3608. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  3609. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  3610. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  3611. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  3612. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  3613. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  3614. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  3615. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  3616. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  3617. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  3618. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  3619. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  3620. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  3621. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  3622. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  3623. "ref/portable-net45+win8+wp8+wpa81/_._",
  3624. "ref/win8/_._",
  3625. "ref/wp80/_._",
  3626. "ref/wpa81/_._",
  3627. "ref/xamarinios10/_._",
  3628. "ref/xamarinmac20/_._",
  3629. "ref/xamarintvos10/_._",
  3630. "ref/xamarinwatchos10/_._",
  3631. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  3632. "system.diagnostics.tools.nuspec"
  3633. ]
  3634. },
  3635. "System.Diagnostics.TraceSource/4.0.0": {
  3636. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  3637. "type": "package",
  3638. "path": "system.diagnostics.tracesource/4.0.0",
  3639. "files": [
  3640. ".nupkg.metadata",
  3641. ".signature.p7s",
  3642. "ThirdPartyNotices.txt",
  3643. "dotnet_library_license.txt",
  3644. "lib/MonoAndroid10/_._",
  3645. "lib/MonoTouch10/_._",
  3646. "lib/net46/System.Diagnostics.TraceSource.dll",
  3647. "lib/xamarinios10/_._",
  3648. "lib/xamarinmac20/_._",
  3649. "lib/xamarintvos10/_._",
  3650. "lib/xamarinwatchos10/_._",
  3651. "ref/MonoAndroid10/_._",
  3652. "ref/MonoTouch10/_._",
  3653. "ref/net46/System.Diagnostics.TraceSource.dll",
  3654. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3655. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  3656. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  3657. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  3658. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  3659. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  3660. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  3661. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  3662. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  3663. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  3664. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  3665. "ref/xamarinios10/_._",
  3666. "ref/xamarinmac20/_._",
  3667. "ref/xamarintvos10/_._",
  3668. "ref/xamarinwatchos10/_._",
  3669. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3670. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  3671. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3672. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  3673. "system.diagnostics.tracesource.nuspec"
  3674. ]
  3675. },
  3676. "System.Diagnostics.Tracing/4.1.0": {
  3677. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  3678. "type": "package",
  3679. "path": "system.diagnostics.tracing/4.1.0",
  3680. "files": [
  3681. ".nupkg.metadata",
  3682. "ThirdPartyNotices.txt",
  3683. "dotnet_library_license.txt",
  3684. "lib/MonoAndroid10/_._",
  3685. "lib/MonoTouch10/_._",
  3686. "lib/net45/_._",
  3687. "lib/net462/System.Diagnostics.Tracing.dll",
  3688. "lib/portable-net45+win8+wpa81/_._",
  3689. "lib/win8/_._",
  3690. "lib/wpa81/_._",
  3691. "lib/xamarinios10/_._",
  3692. "lib/xamarinmac20/_._",
  3693. "lib/xamarintvos10/_._",
  3694. "lib/xamarinwatchos10/_._",
  3695. "ref/MonoAndroid10/_._",
  3696. "ref/MonoTouch10/_._",
  3697. "ref/net45/_._",
  3698. "ref/net462/System.Diagnostics.Tracing.dll",
  3699. "ref/netcore50/System.Diagnostics.Tracing.dll",
  3700. "ref/netcore50/System.Diagnostics.Tracing.xml",
  3701. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  3702. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  3703. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  3704. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  3705. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  3706. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  3707. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  3708. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  3709. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  3710. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  3711. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  3712. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  3713. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  3714. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  3715. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  3716. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  3717. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  3718. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  3719. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  3720. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  3721. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  3722. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  3723. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  3724. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  3725. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  3726. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  3727. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  3728. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  3729. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  3730. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  3731. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  3732. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  3733. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  3734. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  3735. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  3736. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  3737. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  3738. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  3739. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  3740. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  3741. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  3742. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  3743. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  3744. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  3745. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  3746. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  3747. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  3748. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  3749. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  3750. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  3751. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  3752. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  3753. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  3754. "ref/portable-net45+win8+wpa81/_._",
  3755. "ref/win8/_._",
  3756. "ref/wpa81/_._",
  3757. "ref/xamarinios10/_._",
  3758. "ref/xamarinmac20/_._",
  3759. "ref/xamarintvos10/_._",
  3760. "ref/xamarinwatchos10/_._",
  3761. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  3762. "system.diagnostics.tracing.nuspec"
  3763. ]
  3764. },
  3765. "System.Drawing.Common/4.7.0": {
  3766. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  3767. "type": "package",
  3768. "path": "system.drawing.common/4.7.0",
  3769. "files": [
  3770. ".nupkg.metadata",
  3771. ".signature.p7s",
  3772. "LICENSE.TXT",
  3773. "THIRD-PARTY-NOTICES.TXT",
  3774. "lib/MonoAndroid10/_._",
  3775. "lib/MonoTouch10/_._",
  3776. "lib/net461/System.Drawing.Common.dll",
  3777. "lib/netstandard2.0/System.Drawing.Common.dll",
  3778. "lib/xamarinios10/_._",
  3779. "lib/xamarinmac20/_._",
  3780. "lib/xamarintvos10/_._",
  3781. "lib/xamarinwatchos10/_._",
  3782. "ref/MonoAndroid10/_._",
  3783. "ref/MonoTouch10/_._",
  3784. "ref/net461/System.Drawing.Common.dll",
  3785. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  3786. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  3787. "ref/netstandard2.0/System.Drawing.Common.dll",
  3788. "ref/xamarinios10/_._",
  3789. "ref/xamarinmac20/_._",
  3790. "ref/xamarintvos10/_._",
  3791. "ref/xamarinwatchos10/_._",
  3792. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  3793. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  3794. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  3795. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  3796. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  3797. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  3798. "system.drawing.common.4.7.0.nupkg.sha512",
  3799. "system.drawing.common.nuspec",
  3800. "useSharedDesignerContext.txt",
  3801. "version.txt"
  3802. ]
  3803. },
  3804. "System.Dynamic.Runtime/4.0.11": {
  3805. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  3806. "type": "package",
  3807. "path": "system.dynamic.runtime/4.0.11",
  3808. "files": [
  3809. ".nupkg.metadata",
  3810. ".signature.p7s",
  3811. "ThirdPartyNotices.txt",
  3812. "dotnet_library_license.txt",
  3813. "lib/MonoAndroid10/_._",
  3814. "lib/MonoTouch10/_._",
  3815. "lib/net45/_._",
  3816. "lib/netcore50/System.Dynamic.Runtime.dll",
  3817. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  3818. "lib/portable-net45+win8+wp8+wpa81/_._",
  3819. "lib/win8/_._",
  3820. "lib/wp80/_._",
  3821. "lib/wpa81/_._",
  3822. "lib/xamarinios10/_._",
  3823. "lib/xamarinmac20/_._",
  3824. "lib/xamarintvos10/_._",
  3825. "lib/xamarinwatchos10/_._",
  3826. "ref/MonoAndroid10/_._",
  3827. "ref/MonoTouch10/_._",
  3828. "ref/net45/_._",
  3829. "ref/netcore50/System.Dynamic.Runtime.dll",
  3830. "ref/netcore50/System.Dynamic.Runtime.xml",
  3831. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  3832. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  3833. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  3834. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  3835. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  3836. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  3837. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  3838. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  3839. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  3840. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  3841. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  3842. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  3843. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  3844. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  3845. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  3846. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  3847. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  3848. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  3849. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  3850. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  3851. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  3852. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  3853. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  3854. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  3855. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  3856. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  3857. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  3858. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  3859. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  3860. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  3861. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  3862. "ref/portable-net45+win8+wp8+wpa81/_._",
  3863. "ref/win8/_._",
  3864. "ref/wp80/_._",
  3865. "ref/wpa81/_._",
  3866. "ref/xamarinios10/_._",
  3867. "ref/xamarinmac20/_._",
  3868. "ref/xamarintvos10/_._",
  3869. "ref/xamarinwatchos10/_._",
  3870. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  3871. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  3872. "system.dynamic.runtime.nuspec"
  3873. ]
  3874. },
  3875. "System.Globalization/4.0.11": {
  3876. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  3877. "type": "package",
  3878. "path": "system.globalization/4.0.11",
  3879. "files": [
  3880. ".nupkg.metadata",
  3881. "ThirdPartyNotices.txt",
  3882. "dotnet_library_license.txt",
  3883. "lib/MonoAndroid10/_._",
  3884. "lib/MonoTouch10/_._",
  3885. "lib/net45/_._",
  3886. "lib/portable-net45+win8+wp8+wpa81/_._",
  3887. "lib/win8/_._",
  3888. "lib/wp80/_._",
  3889. "lib/wpa81/_._",
  3890. "lib/xamarinios10/_._",
  3891. "lib/xamarinmac20/_._",
  3892. "lib/xamarintvos10/_._",
  3893. "lib/xamarinwatchos10/_._",
  3894. "ref/MonoAndroid10/_._",
  3895. "ref/MonoTouch10/_._",
  3896. "ref/net45/_._",
  3897. "ref/netcore50/System.Globalization.dll",
  3898. "ref/netcore50/System.Globalization.xml",
  3899. "ref/netcore50/de/System.Globalization.xml",
  3900. "ref/netcore50/es/System.Globalization.xml",
  3901. "ref/netcore50/fr/System.Globalization.xml",
  3902. "ref/netcore50/it/System.Globalization.xml",
  3903. "ref/netcore50/ja/System.Globalization.xml",
  3904. "ref/netcore50/ko/System.Globalization.xml",
  3905. "ref/netcore50/ru/System.Globalization.xml",
  3906. "ref/netcore50/zh-hans/System.Globalization.xml",
  3907. "ref/netcore50/zh-hant/System.Globalization.xml",
  3908. "ref/netstandard1.0/System.Globalization.dll",
  3909. "ref/netstandard1.0/System.Globalization.xml",
  3910. "ref/netstandard1.0/de/System.Globalization.xml",
  3911. "ref/netstandard1.0/es/System.Globalization.xml",
  3912. "ref/netstandard1.0/fr/System.Globalization.xml",
  3913. "ref/netstandard1.0/it/System.Globalization.xml",
  3914. "ref/netstandard1.0/ja/System.Globalization.xml",
  3915. "ref/netstandard1.0/ko/System.Globalization.xml",
  3916. "ref/netstandard1.0/ru/System.Globalization.xml",
  3917. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  3918. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  3919. "ref/netstandard1.3/System.Globalization.dll",
  3920. "ref/netstandard1.3/System.Globalization.xml",
  3921. "ref/netstandard1.3/de/System.Globalization.xml",
  3922. "ref/netstandard1.3/es/System.Globalization.xml",
  3923. "ref/netstandard1.3/fr/System.Globalization.xml",
  3924. "ref/netstandard1.3/it/System.Globalization.xml",
  3925. "ref/netstandard1.3/ja/System.Globalization.xml",
  3926. "ref/netstandard1.3/ko/System.Globalization.xml",
  3927. "ref/netstandard1.3/ru/System.Globalization.xml",
  3928. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  3929. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  3930. "ref/portable-net45+win8+wp8+wpa81/_._",
  3931. "ref/win8/_._",
  3932. "ref/wp80/_._",
  3933. "ref/wpa81/_._",
  3934. "ref/xamarinios10/_._",
  3935. "ref/xamarinmac20/_._",
  3936. "ref/xamarintvos10/_._",
  3937. "ref/xamarinwatchos10/_._",
  3938. "system.globalization.4.0.11.nupkg.sha512",
  3939. "system.globalization.nuspec"
  3940. ]
  3941. },
  3942. "System.Globalization.Calendars/4.0.1": {
  3943. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  3944. "type": "package",
  3945. "path": "system.globalization.calendars/4.0.1",
  3946. "files": [
  3947. ".nupkg.metadata",
  3948. "ThirdPartyNotices.txt",
  3949. "dotnet_library_license.txt",
  3950. "lib/MonoAndroid10/_._",
  3951. "lib/MonoTouch10/_._",
  3952. "lib/net46/System.Globalization.Calendars.dll",
  3953. "lib/xamarinios10/_._",
  3954. "lib/xamarinmac20/_._",
  3955. "lib/xamarintvos10/_._",
  3956. "lib/xamarinwatchos10/_._",
  3957. "ref/MonoAndroid10/_._",
  3958. "ref/MonoTouch10/_._",
  3959. "ref/net46/System.Globalization.Calendars.dll",
  3960. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  3961. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  3962. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  3963. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  3964. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  3965. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  3966. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  3967. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  3968. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  3969. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  3970. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  3971. "ref/xamarinios10/_._",
  3972. "ref/xamarinmac20/_._",
  3973. "ref/xamarintvos10/_._",
  3974. "ref/xamarinwatchos10/_._",
  3975. "system.globalization.calendars.4.0.1.nupkg.sha512",
  3976. "system.globalization.calendars.nuspec"
  3977. ]
  3978. },
  3979. "System.Globalization.Extensions/4.0.1": {
  3980. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  3981. "type": "package",
  3982. "path": "system.globalization.extensions/4.0.1",
  3983. "files": [
  3984. ".nupkg.metadata",
  3985. "ThirdPartyNotices.txt",
  3986. "dotnet_library_license.txt",
  3987. "lib/MonoAndroid10/_._",
  3988. "lib/MonoTouch10/_._",
  3989. "lib/net46/System.Globalization.Extensions.dll",
  3990. "lib/xamarinios10/_._",
  3991. "lib/xamarinmac20/_._",
  3992. "lib/xamarintvos10/_._",
  3993. "lib/xamarinwatchos10/_._",
  3994. "ref/MonoAndroid10/_._",
  3995. "ref/MonoTouch10/_._",
  3996. "ref/net46/System.Globalization.Extensions.dll",
  3997. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  3998. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  3999. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4000. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4001. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4002. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4003. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4004. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4005. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4006. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4007. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4008. "ref/xamarinios10/_._",
  4009. "ref/xamarinmac20/_._",
  4010. "ref/xamarintvos10/_._",
  4011. "ref/xamarinwatchos10/_._",
  4012. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4013. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4014. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4015. "system.globalization.extensions.4.0.1.nupkg.sha512",
  4016. "system.globalization.extensions.nuspec"
  4017. ]
  4018. },
  4019. "System.IO/4.3.0": {
  4020. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4021. "type": "package",
  4022. "path": "system.io/4.3.0",
  4023. "files": [
  4024. ".nupkg.metadata",
  4025. ".signature.p7s",
  4026. "ThirdPartyNotices.txt",
  4027. "dotnet_library_license.txt",
  4028. "lib/MonoAndroid10/_._",
  4029. "lib/MonoTouch10/_._",
  4030. "lib/net45/_._",
  4031. "lib/net462/System.IO.dll",
  4032. "lib/portable-net45+win8+wp8+wpa81/_._",
  4033. "lib/win8/_._",
  4034. "lib/wp80/_._",
  4035. "lib/wpa81/_._",
  4036. "lib/xamarinios10/_._",
  4037. "lib/xamarinmac20/_._",
  4038. "lib/xamarintvos10/_._",
  4039. "lib/xamarinwatchos10/_._",
  4040. "ref/MonoAndroid10/_._",
  4041. "ref/MonoTouch10/_._",
  4042. "ref/net45/_._",
  4043. "ref/net462/System.IO.dll",
  4044. "ref/netcore50/System.IO.dll",
  4045. "ref/netcore50/System.IO.xml",
  4046. "ref/netcore50/de/System.IO.xml",
  4047. "ref/netcore50/es/System.IO.xml",
  4048. "ref/netcore50/fr/System.IO.xml",
  4049. "ref/netcore50/it/System.IO.xml",
  4050. "ref/netcore50/ja/System.IO.xml",
  4051. "ref/netcore50/ko/System.IO.xml",
  4052. "ref/netcore50/ru/System.IO.xml",
  4053. "ref/netcore50/zh-hans/System.IO.xml",
  4054. "ref/netcore50/zh-hant/System.IO.xml",
  4055. "ref/netstandard1.0/System.IO.dll",
  4056. "ref/netstandard1.0/System.IO.xml",
  4057. "ref/netstandard1.0/de/System.IO.xml",
  4058. "ref/netstandard1.0/es/System.IO.xml",
  4059. "ref/netstandard1.0/fr/System.IO.xml",
  4060. "ref/netstandard1.0/it/System.IO.xml",
  4061. "ref/netstandard1.0/ja/System.IO.xml",
  4062. "ref/netstandard1.0/ko/System.IO.xml",
  4063. "ref/netstandard1.0/ru/System.IO.xml",
  4064. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4065. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4066. "ref/netstandard1.3/System.IO.dll",
  4067. "ref/netstandard1.3/System.IO.xml",
  4068. "ref/netstandard1.3/de/System.IO.xml",
  4069. "ref/netstandard1.3/es/System.IO.xml",
  4070. "ref/netstandard1.3/fr/System.IO.xml",
  4071. "ref/netstandard1.3/it/System.IO.xml",
  4072. "ref/netstandard1.3/ja/System.IO.xml",
  4073. "ref/netstandard1.3/ko/System.IO.xml",
  4074. "ref/netstandard1.3/ru/System.IO.xml",
  4075. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4076. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4077. "ref/netstandard1.5/System.IO.dll",
  4078. "ref/netstandard1.5/System.IO.xml",
  4079. "ref/netstandard1.5/de/System.IO.xml",
  4080. "ref/netstandard1.5/es/System.IO.xml",
  4081. "ref/netstandard1.5/fr/System.IO.xml",
  4082. "ref/netstandard1.5/it/System.IO.xml",
  4083. "ref/netstandard1.5/ja/System.IO.xml",
  4084. "ref/netstandard1.5/ko/System.IO.xml",
  4085. "ref/netstandard1.5/ru/System.IO.xml",
  4086. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4087. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4088. "ref/portable-net45+win8+wp8+wpa81/_._",
  4089. "ref/win8/_._",
  4090. "ref/wp80/_._",
  4091. "ref/wpa81/_._",
  4092. "ref/xamarinios10/_._",
  4093. "ref/xamarinmac20/_._",
  4094. "ref/xamarintvos10/_._",
  4095. "ref/xamarinwatchos10/_._",
  4096. "system.io.4.3.0.nupkg.sha512",
  4097. "system.io.nuspec"
  4098. ]
  4099. },
  4100. "System.IO.Compression/4.1.0": {
  4101. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  4102. "type": "package",
  4103. "path": "system.io.compression/4.1.0",
  4104. "files": [
  4105. ".nupkg.metadata",
  4106. "ThirdPartyNotices.txt",
  4107. "dotnet_library_license.txt",
  4108. "lib/MonoAndroid10/_._",
  4109. "lib/MonoTouch10/_._",
  4110. "lib/net45/_._",
  4111. "lib/net46/System.IO.Compression.dll",
  4112. "lib/portable-net45+win8+wpa81/_._",
  4113. "lib/win8/_._",
  4114. "lib/wpa81/_._",
  4115. "lib/xamarinios10/_._",
  4116. "lib/xamarinmac20/_._",
  4117. "lib/xamarintvos10/_._",
  4118. "lib/xamarinwatchos10/_._",
  4119. "ref/MonoAndroid10/_._",
  4120. "ref/MonoTouch10/_._",
  4121. "ref/net45/_._",
  4122. "ref/net46/System.IO.Compression.dll",
  4123. "ref/netcore50/System.IO.Compression.dll",
  4124. "ref/netcore50/System.IO.Compression.xml",
  4125. "ref/netcore50/de/System.IO.Compression.xml",
  4126. "ref/netcore50/es/System.IO.Compression.xml",
  4127. "ref/netcore50/fr/System.IO.Compression.xml",
  4128. "ref/netcore50/it/System.IO.Compression.xml",
  4129. "ref/netcore50/ja/System.IO.Compression.xml",
  4130. "ref/netcore50/ko/System.IO.Compression.xml",
  4131. "ref/netcore50/ru/System.IO.Compression.xml",
  4132. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  4133. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  4134. "ref/netstandard1.1/System.IO.Compression.dll",
  4135. "ref/netstandard1.1/System.IO.Compression.xml",
  4136. "ref/netstandard1.1/de/System.IO.Compression.xml",
  4137. "ref/netstandard1.1/es/System.IO.Compression.xml",
  4138. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  4139. "ref/netstandard1.1/it/System.IO.Compression.xml",
  4140. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  4141. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  4142. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  4143. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  4144. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  4145. "ref/netstandard1.3/System.IO.Compression.dll",
  4146. "ref/netstandard1.3/System.IO.Compression.xml",
  4147. "ref/netstandard1.3/de/System.IO.Compression.xml",
  4148. "ref/netstandard1.3/es/System.IO.Compression.xml",
  4149. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  4150. "ref/netstandard1.3/it/System.IO.Compression.xml",
  4151. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  4152. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  4153. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  4154. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  4155. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  4156. "ref/portable-net45+win8+wpa81/_._",
  4157. "ref/win8/_._",
  4158. "ref/wpa81/_._",
  4159. "ref/xamarinios10/_._",
  4160. "ref/xamarinmac20/_._",
  4161. "ref/xamarintvos10/_._",
  4162. "ref/xamarinwatchos10/_._",
  4163. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  4164. "runtimes/win/lib/net46/System.IO.Compression.dll",
  4165. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  4166. "system.io.compression.4.1.0.nupkg.sha512",
  4167. "system.io.compression.nuspec"
  4168. ]
  4169. },
  4170. "System.IO.Compression.ZipFile/4.0.1": {
  4171. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  4172. "type": "package",
  4173. "path": "system.io.compression.zipfile/4.0.1",
  4174. "files": [
  4175. ".nupkg.metadata",
  4176. "ThirdPartyNotices.txt",
  4177. "dotnet_library_license.txt",
  4178. "lib/MonoAndroid10/_._",
  4179. "lib/MonoTouch10/_._",
  4180. "lib/net46/System.IO.Compression.ZipFile.dll",
  4181. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4182. "lib/xamarinios10/_._",
  4183. "lib/xamarinmac20/_._",
  4184. "lib/xamarintvos10/_._",
  4185. "lib/xamarinwatchos10/_._",
  4186. "ref/MonoAndroid10/_._",
  4187. "ref/MonoTouch10/_._",
  4188. "ref/net46/System.IO.Compression.ZipFile.dll",
  4189. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4190. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  4191. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  4192. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  4193. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  4194. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  4195. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  4196. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  4197. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  4198. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  4199. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  4200. "ref/xamarinios10/_._",
  4201. "ref/xamarinmac20/_._",
  4202. "ref/xamarintvos10/_._",
  4203. "ref/xamarinwatchos10/_._",
  4204. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  4205. "system.io.compression.zipfile.nuspec"
  4206. ]
  4207. },
  4208. "System.IO.FileSystem/4.0.1": {
  4209. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  4210. "type": "package",
  4211. "path": "system.io.filesystem/4.0.1",
  4212. "files": [
  4213. ".nupkg.metadata",
  4214. "ThirdPartyNotices.txt",
  4215. "dotnet_library_license.txt",
  4216. "lib/MonoAndroid10/_._",
  4217. "lib/MonoTouch10/_._",
  4218. "lib/net46/System.IO.FileSystem.dll",
  4219. "lib/xamarinios10/_._",
  4220. "lib/xamarinmac20/_._",
  4221. "lib/xamarintvos10/_._",
  4222. "lib/xamarinwatchos10/_._",
  4223. "ref/MonoAndroid10/_._",
  4224. "ref/MonoTouch10/_._",
  4225. "ref/net46/System.IO.FileSystem.dll",
  4226. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4227. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4228. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4229. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4230. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4231. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4232. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4233. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4234. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4235. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4236. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4237. "ref/xamarinios10/_._",
  4238. "ref/xamarinmac20/_._",
  4239. "ref/xamarintvos10/_._",
  4240. "ref/xamarinwatchos10/_._",
  4241. "system.io.filesystem.4.0.1.nupkg.sha512",
  4242. "system.io.filesystem.nuspec"
  4243. ]
  4244. },
  4245. "System.IO.FileSystem.Primitives/4.0.1": {
  4246. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  4247. "type": "package",
  4248. "path": "system.io.filesystem.primitives/4.0.1",
  4249. "files": [
  4250. ".nupkg.metadata",
  4251. "ThirdPartyNotices.txt",
  4252. "dotnet_library_license.txt",
  4253. "lib/MonoAndroid10/_._",
  4254. "lib/MonoTouch10/_._",
  4255. "lib/net46/System.IO.FileSystem.Primitives.dll",
  4256. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4257. "lib/xamarinios10/_._",
  4258. "lib/xamarinmac20/_._",
  4259. "lib/xamarintvos10/_._",
  4260. "lib/xamarinwatchos10/_._",
  4261. "ref/MonoAndroid10/_._",
  4262. "ref/MonoTouch10/_._",
  4263. "ref/net46/System.IO.FileSystem.Primitives.dll",
  4264. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4265. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  4266. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  4267. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  4268. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  4269. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  4270. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  4271. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  4272. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  4273. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  4274. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  4275. "ref/xamarinios10/_._",
  4276. "ref/xamarinmac20/_._",
  4277. "ref/xamarintvos10/_._",
  4278. "ref/xamarinwatchos10/_._",
  4279. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  4280. "system.io.filesystem.primitives.nuspec"
  4281. ]
  4282. },
  4283. "System.Linq/4.1.0": {
  4284. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  4285. "type": "package",
  4286. "path": "system.linq/4.1.0",
  4287. "files": [
  4288. ".nupkg.metadata",
  4289. "ThirdPartyNotices.txt",
  4290. "dotnet_library_license.txt",
  4291. "lib/MonoAndroid10/_._",
  4292. "lib/MonoTouch10/_._",
  4293. "lib/net45/_._",
  4294. "lib/net463/System.Linq.dll",
  4295. "lib/netcore50/System.Linq.dll",
  4296. "lib/netstandard1.6/System.Linq.dll",
  4297. "lib/portable-net45+win8+wp8+wpa81/_._",
  4298. "lib/win8/_._",
  4299. "lib/wp80/_._",
  4300. "lib/wpa81/_._",
  4301. "lib/xamarinios10/_._",
  4302. "lib/xamarinmac20/_._",
  4303. "lib/xamarintvos10/_._",
  4304. "lib/xamarinwatchos10/_._",
  4305. "ref/MonoAndroid10/_._",
  4306. "ref/MonoTouch10/_._",
  4307. "ref/net45/_._",
  4308. "ref/net463/System.Linq.dll",
  4309. "ref/netcore50/System.Linq.dll",
  4310. "ref/netcore50/System.Linq.xml",
  4311. "ref/netcore50/de/System.Linq.xml",
  4312. "ref/netcore50/es/System.Linq.xml",
  4313. "ref/netcore50/fr/System.Linq.xml",
  4314. "ref/netcore50/it/System.Linq.xml",
  4315. "ref/netcore50/ja/System.Linq.xml",
  4316. "ref/netcore50/ko/System.Linq.xml",
  4317. "ref/netcore50/ru/System.Linq.xml",
  4318. "ref/netcore50/zh-hans/System.Linq.xml",
  4319. "ref/netcore50/zh-hant/System.Linq.xml",
  4320. "ref/netstandard1.0/System.Linq.dll",
  4321. "ref/netstandard1.0/System.Linq.xml",
  4322. "ref/netstandard1.0/de/System.Linq.xml",
  4323. "ref/netstandard1.0/es/System.Linq.xml",
  4324. "ref/netstandard1.0/fr/System.Linq.xml",
  4325. "ref/netstandard1.0/it/System.Linq.xml",
  4326. "ref/netstandard1.0/ja/System.Linq.xml",
  4327. "ref/netstandard1.0/ko/System.Linq.xml",
  4328. "ref/netstandard1.0/ru/System.Linq.xml",
  4329. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  4330. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  4331. "ref/netstandard1.6/System.Linq.dll",
  4332. "ref/netstandard1.6/System.Linq.xml",
  4333. "ref/netstandard1.6/de/System.Linq.xml",
  4334. "ref/netstandard1.6/es/System.Linq.xml",
  4335. "ref/netstandard1.6/fr/System.Linq.xml",
  4336. "ref/netstandard1.6/it/System.Linq.xml",
  4337. "ref/netstandard1.6/ja/System.Linq.xml",
  4338. "ref/netstandard1.6/ko/System.Linq.xml",
  4339. "ref/netstandard1.6/ru/System.Linq.xml",
  4340. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  4341. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  4342. "ref/portable-net45+win8+wp8+wpa81/_._",
  4343. "ref/win8/_._",
  4344. "ref/wp80/_._",
  4345. "ref/wpa81/_._",
  4346. "ref/xamarinios10/_._",
  4347. "ref/xamarinmac20/_._",
  4348. "ref/xamarintvos10/_._",
  4349. "ref/xamarinwatchos10/_._",
  4350. "system.linq.4.1.0.nupkg.sha512",
  4351. "system.linq.nuspec"
  4352. ]
  4353. },
  4354. "System.Linq.Expressions/4.1.0": {
  4355. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  4356. "type": "package",
  4357. "path": "system.linq.expressions/4.1.0",
  4358. "files": [
  4359. ".nupkg.metadata",
  4360. "ThirdPartyNotices.txt",
  4361. "dotnet_library_license.txt",
  4362. "lib/MonoAndroid10/_._",
  4363. "lib/MonoTouch10/_._",
  4364. "lib/net45/_._",
  4365. "lib/net463/System.Linq.Expressions.dll",
  4366. "lib/netcore50/System.Linq.Expressions.dll",
  4367. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4368. "lib/portable-net45+win8+wp8+wpa81/_._",
  4369. "lib/win8/_._",
  4370. "lib/wp80/_._",
  4371. "lib/wpa81/_._",
  4372. "lib/xamarinios10/_._",
  4373. "lib/xamarinmac20/_._",
  4374. "lib/xamarintvos10/_._",
  4375. "lib/xamarinwatchos10/_._",
  4376. "ref/MonoAndroid10/_._",
  4377. "ref/MonoTouch10/_._",
  4378. "ref/net45/_._",
  4379. "ref/net463/System.Linq.Expressions.dll",
  4380. "ref/netcore50/System.Linq.Expressions.dll",
  4381. "ref/netcore50/System.Linq.Expressions.xml",
  4382. "ref/netcore50/de/System.Linq.Expressions.xml",
  4383. "ref/netcore50/es/System.Linq.Expressions.xml",
  4384. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4385. "ref/netcore50/it/System.Linq.Expressions.xml",
  4386. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4387. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4388. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4389. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4390. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4391. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4392. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4393. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4394. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4395. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4396. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4397. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4398. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4399. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4400. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4401. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4402. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4403. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4404. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4405. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4406. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4407. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4408. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4409. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4410. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4411. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4412. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4413. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4414. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4415. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4416. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4417. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4418. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4419. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4420. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4421. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4422. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4423. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4424. "ref/portable-net45+win8+wp8+wpa81/_._",
  4425. "ref/win8/_._",
  4426. "ref/wp80/_._",
  4427. "ref/wpa81/_._",
  4428. "ref/xamarinios10/_._",
  4429. "ref/xamarinmac20/_._",
  4430. "ref/xamarintvos10/_._",
  4431. "ref/xamarinwatchos10/_._",
  4432. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4433. "system.linq.expressions.4.1.0.nupkg.sha512",
  4434. "system.linq.expressions.nuspec"
  4435. ]
  4436. },
  4437. "System.Memory/4.5.3": {
  4438. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  4439. "type": "package",
  4440. "path": "system.memory/4.5.3",
  4441. "files": [
  4442. ".nupkg.metadata",
  4443. ".signature.p7s",
  4444. "LICENSE.TXT",
  4445. "THIRD-PARTY-NOTICES.TXT",
  4446. "lib/netcoreapp2.1/_._",
  4447. "lib/netstandard1.1/System.Memory.dll",
  4448. "lib/netstandard1.1/System.Memory.xml",
  4449. "lib/netstandard2.0/System.Memory.dll",
  4450. "lib/netstandard2.0/System.Memory.xml",
  4451. "ref/netcoreapp2.1/_._",
  4452. "system.memory.4.5.3.nupkg.sha512",
  4453. "system.memory.nuspec",
  4454. "useSharedDesignerContext.txt",
  4455. "version.txt"
  4456. ]
  4457. },
  4458. "System.Net.Http/4.1.0": {
  4459. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  4460. "type": "package",
  4461. "path": "system.net.http/4.1.0",
  4462. "files": [
  4463. ".nupkg.metadata",
  4464. "ThirdPartyNotices.txt",
  4465. "dotnet_library_license.txt",
  4466. "lib/Xamarinmac20/_._",
  4467. "lib/monoandroid10/_._",
  4468. "lib/monotouch10/_._",
  4469. "lib/net45/_._",
  4470. "lib/net46/System.Net.Http.dll",
  4471. "lib/portable-net45+win8+wpa81/_._",
  4472. "lib/win8/_._",
  4473. "lib/wpa81/_._",
  4474. "lib/xamarinios10/_._",
  4475. "lib/xamarintvos10/_._",
  4476. "lib/xamarinwatchos10/_._",
  4477. "ref/Xamarinmac20/_._",
  4478. "ref/monoandroid10/_._",
  4479. "ref/monotouch10/_._",
  4480. "ref/net45/_._",
  4481. "ref/net46/System.Net.Http.dll",
  4482. "ref/net46/System.Net.Http.xml",
  4483. "ref/net46/de/System.Net.Http.xml",
  4484. "ref/net46/es/System.Net.Http.xml",
  4485. "ref/net46/fr/System.Net.Http.xml",
  4486. "ref/net46/it/System.Net.Http.xml",
  4487. "ref/net46/ja/System.Net.Http.xml",
  4488. "ref/net46/ko/System.Net.Http.xml",
  4489. "ref/net46/ru/System.Net.Http.xml",
  4490. "ref/net46/zh-hans/System.Net.Http.xml",
  4491. "ref/net46/zh-hant/System.Net.Http.xml",
  4492. "ref/netcore50/System.Net.Http.dll",
  4493. "ref/netcore50/System.Net.Http.xml",
  4494. "ref/netcore50/de/System.Net.Http.xml",
  4495. "ref/netcore50/es/System.Net.Http.xml",
  4496. "ref/netcore50/fr/System.Net.Http.xml",
  4497. "ref/netcore50/it/System.Net.Http.xml",
  4498. "ref/netcore50/ja/System.Net.Http.xml",
  4499. "ref/netcore50/ko/System.Net.Http.xml",
  4500. "ref/netcore50/ru/System.Net.Http.xml",
  4501. "ref/netcore50/zh-hans/System.Net.Http.xml",
  4502. "ref/netcore50/zh-hant/System.Net.Http.xml",
  4503. "ref/netstandard1.1/System.Net.Http.dll",
  4504. "ref/netstandard1.1/System.Net.Http.xml",
  4505. "ref/netstandard1.1/de/System.Net.Http.xml",
  4506. "ref/netstandard1.1/es/System.Net.Http.xml",
  4507. "ref/netstandard1.1/fr/System.Net.Http.xml",
  4508. "ref/netstandard1.1/it/System.Net.Http.xml",
  4509. "ref/netstandard1.1/ja/System.Net.Http.xml",
  4510. "ref/netstandard1.1/ko/System.Net.Http.xml",
  4511. "ref/netstandard1.1/ru/System.Net.Http.xml",
  4512. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  4513. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  4514. "ref/netstandard1.3/System.Net.Http.dll",
  4515. "ref/netstandard1.3/System.Net.Http.xml",
  4516. "ref/netstandard1.3/de/System.Net.Http.xml",
  4517. "ref/netstandard1.3/es/System.Net.Http.xml",
  4518. "ref/netstandard1.3/fr/System.Net.Http.xml",
  4519. "ref/netstandard1.3/it/System.Net.Http.xml",
  4520. "ref/netstandard1.3/ja/System.Net.Http.xml",
  4521. "ref/netstandard1.3/ko/System.Net.Http.xml",
  4522. "ref/netstandard1.3/ru/System.Net.Http.xml",
  4523. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  4524. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  4525. "ref/portable-net45+win8+wpa81/_._",
  4526. "ref/win8/_._",
  4527. "ref/wpa81/_._",
  4528. "ref/xamarinios10/_._",
  4529. "ref/xamarintvos10/_._",
  4530. "ref/xamarinwatchos10/_._",
  4531. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  4532. "runtimes/win/lib/net46/System.Net.Http.dll",
  4533. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  4534. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  4535. "system.net.http.4.1.0.nupkg.sha512",
  4536. "system.net.http.nuspec"
  4537. ]
  4538. },
  4539. "System.Net.NameResolution/4.0.0": {
  4540. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  4541. "type": "package",
  4542. "path": "system.net.nameresolution/4.0.0",
  4543. "files": [
  4544. ".nupkg.metadata",
  4545. ".signature.p7s",
  4546. "ThirdPartyNotices.txt",
  4547. "dotnet_library_license.txt",
  4548. "lib/MonoAndroid10/_._",
  4549. "lib/MonoTouch10/_._",
  4550. "lib/net46/System.Net.NameResolution.dll",
  4551. "lib/xamarinios10/_._",
  4552. "lib/xamarinmac20/_._",
  4553. "lib/xamarintvos10/_._",
  4554. "lib/xamarinwatchos10/_._",
  4555. "ref/MonoAndroid10/_._",
  4556. "ref/MonoTouch10/_._",
  4557. "ref/net46/System.Net.NameResolution.dll",
  4558. "ref/netstandard1.3/System.Net.NameResolution.dll",
  4559. "ref/netstandard1.3/System.Net.NameResolution.xml",
  4560. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  4561. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  4562. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  4563. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  4564. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  4565. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  4566. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  4567. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  4568. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  4569. "ref/xamarinios10/_._",
  4570. "ref/xamarinmac20/_._",
  4571. "ref/xamarintvos10/_._",
  4572. "ref/xamarinwatchos10/_._",
  4573. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  4574. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  4575. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  4576. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  4577. "system.net.nameresolution.4.0.0.nupkg.sha512",
  4578. "system.net.nameresolution.nuspec"
  4579. ]
  4580. },
  4581. "System.Net.Primitives/4.0.11": {
  4582. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  4583. "type": "package",
  4584. "path": "system.net.primitives/4.0.11",
  4585. "files": [
  4586. ".nupkg.metadata",
  4587. "ThirdPartyNotices.txt",
  4588. "dotnet_library_license.txt",
  4589. "lib/MonoAndroid10/_._",
  4590. "lib/MonoTouch10/_._",
  4591. "lib/net45/_._",
  4592. "lib/portable-net45+win8+wp8+wpa81/_._",
  4593. "lib/win8/_._",
  4594. "lib/wp80/_._",
  4595. "lib/wpa81/_._",
  4596. "lib/xamarinios10/_._",
  4597. "lib/xamarinmac20/_._",
  4598. "lib/xamarintvos10/_._",
  4599. "lib/xamarinwatchos10/_._",
  4600. "ref/MonoAndroid10/_._",
  4601. "ref/MonoTouch10/_._",
  4602. "ref/net45/_._",
  4603. "ref/netcore50/System.Net.Primitives.dll",
  4604. "ref/netcore50/System.Net.Primitives.xml",
  4605. "ref/netcore50/de/System.Net.Primitives.xml",
  4606. "ref/netcore50/es/System.Net.Primitives.xml",
  4607. "ref/netcore50/fr/System.Net.Primitives.xml",
  4608. "ref/netcore50/it/System.Net.Primitives.xml",
  4609. "ref/netcore50/ja/System.Net.Primitives.xml",
  4610. "ref/netcore50/ko/System.Net.Primitives.xml",
  4611. "ref/netcore50/ru/System.Net.Primitives.xml",
  4612. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  4613. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  4614. "ref/netstandard1.0/System.Net.Primitives.dll",
  4615. "ref/netstandard1.0/System.Net.Primitives.xml",
  4616. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  4617. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  4618. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  4619. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  4620. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  4621. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  4622. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  4623. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  4624. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  4625. "ref/netstandard1.1/System.Net.Primitives.dll",
  4626. "ref/netstandard1.1/System.Net.Primitives.xml",
  4627. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  4628. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  4629. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  4630. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  4631. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  4632. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  4633. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  4634. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  4635. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  4636. "ref/netstandard1.3/System.Net.Primitives.dll",
  4637. "ref/netstandard1.3/System.Net.Primitives.xml",
  4638. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  4639. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  4640. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  4641. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  4642. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  4643. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  4644. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  4645. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  4646. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  4647. "ref/portable-net45+win8+wp8+wpa81/_._",
  4648. "ref/win8/_._",
  4649. "ref/wp80/_._",
  4650. "ref/wpa81/_._",
  4651. "ref/xamarinios10/_._",
  4652. "ref/xamarinmac20/_._",
  4653. "ref/xamarintvos10/_._",
  4654. "ref/xamarinwatchos10/_._",
  4655. "system.net.primitives.4.0.11.nupkg.sha512",
  4656. "system.net.primitives.nuspec"
  4657. ]
  4658. },
  4659. "System.Net.Sockets/4.1.0": {
  4660. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  4661. "type": "package",
  4662. "path": "system.net.sockets/4.1.0",
  4663. "files": [
  4664. ".nupkg.metadata",
  4665. "ThirdPartyNotices.txt",
  4666. "dotnet_library_license.txt",
  4667. "lib/MonoAndroid10/_._",
  4668. "lib/MonoTouch10/_._",
  4669. "lib/net46/System.Net.Sockets.dll",
  4670. "lib/xamarinios10/_._",
  4671. "lib/xamarinmac20/_._",
  4672. "lib/xamarintvos10/_._",
  4673. "lib/xamarinwatchos10/_._",
  4674. "ref/MonoAndroid10/_._",
  4675. "ref/MonoTouch10/_._",
  4676. "ref/net46/System.Net.Sockets.dll",
  4677. "ref/netstandard1.3/System.Net.Sockets.dll",
  4678. "ref/netstandard1.3/System.Net.Sockets.xml",
  4679. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  4680. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  4681. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  4682. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  4683. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  4684. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  4685. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  4686. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  4687. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  4688. "ref/xamarinios10/_._",
  4689. "ref/xamarinmac20/_._",
  4690. "ref/xamarintvos10/_._",
  4691. "ref/xamarinwatchos10/_._",
  4692. "system.net.sockets.4.1.0.nupkg.sha512",
  4693. "system.net.sockets.nuspec"
  4694. ]
  4695. },
  4696. "System.ObjectModel/4.0.12": {
  4697. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  4698. "type": "package",
  4699. "path": "system.objectmodel/4.0.12",
  4700. "files": [
  4701. ".nupkg.metadata",
  4702. "ThirdPartyNotices.txt",
  4703. "dotnet_library_license.txt",
  4704. "lib/MonoAndroid10/_._",
  4705. "lib/MonoTouch10/_._",
  4706. "lib/net45/_._",
  4707. "lib/netcore50/System.ObjectModel.dll",
  4708. "lib/netstandard1.3/System.ObjectModel.dll",
  4709. "lib/portable-net45+win8+wp8+wpa81/_._",
  4710. "lib/win8/_._",
  4711. "lib/wp80/_._",
  4712. "lib/wpa81/_._",
  4713. "lib/xamarinios10/_._",
  4714. "lib/xamarinmac20/_._",
  4715. "lib/xamarintvos10/_._",
  4716. "lib/xamarinwatchos10/_._",
  4717. "ref/MonoAndroid10/_._",
  4718. "ref/MonoTouch10/_._",
  4719. "ref/net45/_._",
  4720. "ref/netcore50/System.ObjectModel.dll",
  4721. "ref/netcore50/System.ObjectModel.xml",
  4722. "ref/netcore50/de/System.ObjectModel.xml",
  4723. "ref/netcore50/es/System.ObjectModel.xml",
  4724. "ref/netcore50/fr/System.ObjectModel.xml",
  4725. "ref/netcore50/it/System.ObjectModel.xml",
  4726. "ref/netcore50/ja/System.ObjectModel.xml",
  4727. "ref/netcore50/ko/System.ObjectModel.xml",
  4728. "ref/netcore50/ru/System.ObjectModel.xml",
  4729. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4730. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4731. "ref/netstandard1.0/System.ObjectModel.dll",
  4732. "ref/netstandard1.0/System.ObjectModel.xml",
  4733. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4734. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4735. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4736. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4737. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4738. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4739. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4740. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4741. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  4742. "ref/netstandard1.3/System.ObjectModel.dll",
  4743. "ref/netstandard1.3/System.ObjectModel.xml",
  4744. "ref/netstandard1.3/de/System.ObjectModel.xml",
  4745. "ref/netstandard1.3/es/System.ObjectModel.xml",
  4746. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  4747. "ref/netstandard1.3/it/System.ObjectModel.xml",
  4748. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  4749. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  4750. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  4751. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  4752. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  4753. "ref/portable-net45+win8+wp8+wpa81/_._",
  4754. "ref/win8/_._",
  4755. "ref/wp80/_._",
  4756. "ref/wpa81/_._",
  4757. "ref/xamarinios10/_._",
  4758. "ref/xamarinmac20/_._",
  4759. "ref/xamarintvos10/_._",
  4760. "ref/xamarinwatchos10/_._",
  4761. "system.objectmodel.4.0.12.nupkg.sha512",
  4762. "system.objectmodel.nuspec"
  4763. ]
  4764. },
  4765. "System.Reflection/4.3.0": {
  4766. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4767. "type": "package",
  4768. "path": "system.reflection/4.3.0",
  4769. "files": [
  4770. ".nupkg.metadata",
  4771. ".signature.p7s",
  4772. "ThirdPartyNotices.txt",
  4773. "dotnet_library_license.txt",
  4774. "lib/MonoAndroid10/_._",
  4775. "lib/MonoTouch10/_._",
  4776. "lib/net45/_._",
  4777. "lib/net462/System.Reflection.dll",
  4778. "lib/portable-net45+win8+wp8+wpa81/_._",
  4779. "lib/win8/_._",
  4780. "lib/wp80/_._",
  4781. "lib/wpa81/_._",
  4782. "lib/xamarinios10/_._",
  4783. "lib/xamarinmac20/_._",
  4784. "lib/xamarintvos10/_._",
  4785. "lib/xamarinwatchos10/_._",
  4786. "ref/MonoAndroid10/_._",
  4787. "ref/MonoTouch10/_._",
  4788. "ref/net45/_._",
  4789. "ref/net462/System.Reflection.dll",
  4790. "ref/netcore50/System.Reflection.dll",
  4791. "ref/netcore50/System.Reflection.xml",
  4792. "ref/netcore50/de/System.Reflection.xml",
  4793. "ref/netcore50/es/System.Reflection.xml",
  4794. "ref/netcore50/fr/System.Reflection.xml",
  4795. "ref/netcore50/it/System.Reflection.xml",
  4796. "ref/netcore50/ja/System.Reflection.xml",
  4797. "ref/netcore50/ko/System.Reflection.xml",
  4798. "ref/netcore50/ru/System.Reflection.xml",
  4799. "ref/netcore50/zh-hans/System.Reflection.xml",
  4800. "ref/netcore50/zh-hant/System.Reflection.xml",
  4801. "ref/netstandard1.0/System.Reflection.dll",
  4802. "ref/netstandard1.0/System.Reflection.xml",
  4803. "ref/netstandard1.0/de/System.Reflection.xml",
  4804. "ref/netstandard1.0/es/System.Reflection.xml",
  4805. "ref/netstandard1.0/fr/System.Reflection.xml",
  4806. "ref/netstandard1.0/it/System.Reflection.xml",
  4807. "ref/netstandard1.0/ja/System.Reflection.xml",
  4808. "ref/netstandard1.0/ko/System.Reflection.xml",
  4809. "ref/netstandard1.0/ru/System.Reflection.xml",
  4810. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  4811. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  4812. "ref/netstandard1.3/System.Reflection.dll",
  4813. "ref/netstandard1.3/System.Reflection.xml",
  4814. "ref/netstandard1.3/de/System.Reflection.xml",
  4815. "ref/netstandard1.3/es/System.Reflection.xml",
  4816. "ref/netstandard1.3/fr/System.Reflection.xml",
  4817. "ref/netstandard1.3/it/System.Reflection.xml",
  4818. "ref/netstandard1.3/ja/System.Reflection.xml",
  4819. "ref/netstandard1.3/ko/System.Reflection.xml",
  4820. "ref/netstandard1.3/ru/System.Reflection.xml",
  4821. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  4822. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  4823. "ref/netstandard1.5/System.Reflection.dll",
  4824. "ref/netstandard1.5/System.Reflection.xml",
  4825. "ref/netstandard1.5/de/System.Reflection.xml",
  4826. "ref/netstandard1.5/es/System.Reflection.xml",
  4827. "ref/netstandard1.5/fr/System.Reflection.xml",
  4828. "ref/netstandard1.5/it/System.Reflection.xml",
  4829. "ref/netstandard1.5/ja/System.Reflection.xml",
  4830. "ref/netstandard1.5/ko/System.Reflection.xml",
  4831. "ref/netstandard1.5/ru/System.Reflection.xml",
  4832. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  4833. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  4834. "ref/portable-net45+win8+wp8+wpa81/_._",
  4835. "ref/win8/_._",
  4836. "ref/wp80/_._",
  4837. "ref/wpa81/_._",
  4838. "ref/xamarinios10/_._",
  4839. "ref/xamarinmac20/_._",
  4840. "ref/xamarintvos10/_._",
  4841. "ref/xamarinwatchos10/_._",
  4842. "system.reflection.4.3.0.nupkg.sha512",
  4843. "system.reflection.nuspec"
  4844. ]
  4845. },
  4846. "System.Reflection.Emit/4.0.1": {
  4847. "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  4848. "type": "package",
  4849. "path": "system.reflection.emit/4.0.1",
  4850. "files": [
  4851. ".nupkg.metadata",
  4852. "ThirdPartyNotices.txt",
  4853. "dotnet_library_license.txt",
  4854. "lib/MonoAndroid10/_._",
  4855. "lib/net45/_._",
  4856. "lib/netcore50/System.Reflection.Emit.dll",
  4857. "lib/netstandard1.3/System.Reflection.Emit.dll",
  4858. "lib/xamarinmac20/_._",
  4859. "ref/MonoAndroid10/_._",
  4860. "ref/net45/_._",
  4861. "ref/netstandard1.1/System.Reflection.Emit.dll",
  4862. "ref/netstandard1.1/System.Reflection.Emit.xml",
  4863. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  4864. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  4865. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  4866. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  4867. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  4868. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  4869. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  4870. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  4871. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  4872. "ref/xamarinmac20/_._",
  4873. "system.reflection.emit.4.0.1.nupkg.sha512",
  4874. "system.reflection.emit.nuspec"
  4875. ]
  4876. },
  4877. "System.Reflection.Emit.ILGeneration/4.0.1": {
  4878. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  4879. "type": "package",
  4880. "path": "system.reflection.emit.ilgeneration/4.0.1",
  4881. "files": [
  4882. ".nupkg.metadata",
  4883. "ThirdPartyNotices.txt",
  4884. "dotnet_library_license.txt",
  4885. "lib/net45/_._",
  4886. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  4887. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  4888. "lib/portable-net45+wp8/_._",
  4889. "lib/wp80/_._",
  4890. "ref/net45/_._",
  4891. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  4892. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  4893. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  4894. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  4895. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  4896. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  4897. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  4898. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  4899. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  4900. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  4901. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  4902. "ref/portable-net45+wp8/_._",
  4903. "ref/wp80/_._",
  4904. "runtimes/aot/lib/netcore50/_._",
  4905. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  4906. "system.reflection.emit.ilgeneration.nuspec"
  4907. ]
  4908. },
  4909. "System.Reflection.Emit.Lightweight/4.0.1": {
  4910. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  4911. "type": "package",
  4912. "path": "system.reflection.emit.lightweight/4.0.1",
  4913. "files": [
  4914. ".nupkg.metadata",
  4915. "ThirdPartyNotices.txt",
  4916. "dotnet_library_license.txt",
  4917. "lib/net45/_._",
  4918. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  4919. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  4920. "lib/portable-net45+wp8/_._",
  4921. "lib/wp80/_._",
  4922. "ref/net45/_._",
  4923. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  4924. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  4925. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  4926. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  4927. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  4928. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  4929. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  4930. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  4931. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  4932. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  4933. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  4934. "ref/portable-net45+wp8/_._",
  4935. "ref/wp80/_._",
  4936. "runtimes/aot/lib/netcore50/_._",
  4937. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  4938. "system.reflection.emit.lightweight.nuspec"
  4939. ]
  4940. },
  4941. "System.Reflection.Extensions/4.0.1": {
  4942. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  4943. "type": "package",
  4944. "path": "system.reflection.extensions/4.0.1",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. "ThirdPartyNotices.txt",
  4948. "dotnet_library_license.txt",
  4949. "lib/MonoAndroid10/_._",
  4950. "lib/MonoTouch10/_._",
  4951. "lib/net45/_._",
  4952. "lib/portable-net45+win8+wp8+wpa81/_._",
  4953. "lib/win8/_._",
  4954. "lib/wp80/_._",
  4955. "lib/wpa81/_._",
  4956. "lib/xamarinios10/_._",
  4957. "lib/xamarinmac20/_._",
  4958. "lib/xamarintvos10/_._",
  4959. "lib/xamarinwatchos10/_._",
  4960. "ref/MonoAndroid10/_._",
  4961. "ref/MonoTouch10/_._",
  4962. "ref/net45/_._",
  4963. "ref/netcore50/System.Reflection.Extensions.dll",
  4964. "ref/netcore50/System.Reflection.Extensions.xml",
  4965. "ref/netcore50/de/System.Reflection.Extensions.xml",
  4966. "ref/netcore50/es/System.Reflection.Extensions.xml",
  4967. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  4968. "ref/netcore50/it/System.Reflection.Extensions.xml",
  4969. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  4970. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  4971. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  4972. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  4973. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  4974. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  4975. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  4976. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  4977. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  4978. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  4979. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  4980. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  4981. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  4982. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  4983. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  4984. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  4985. "ref/portable-net45+win8+wp8+wpa81/_._",
  4986. "ref/win8/_._",
  4987. "ref/wp80/_._",
  4988. "ref/wpa81/_._",
  4989. "ref/xamarinios10/_._",
  4990. "ref/xamarinmac20/_._",
  4991. "ref/xamarintvos10/_._",
  4992. "ref/xamarinwatchos10/_._",
  4993. "system.reflection.extensions.4.0.1.nupkg.sha512",
  4994. "system.reflection.extensions.nuspec"
  4995. ]
  4996. },
  4997. "System.Reflection.Primitives/4.3.0": {
  4998. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  4999. "type": "package",
  5000. "path": "system.reflection.primitives/4.3.0",
  5001. "files": [
  5002. ".nupkg.metadata",
  5003. ".signature.p7s",
  5004. "ThirdPartyNotices.txt",
  5005. "dotnet_library_license.txt",
  5006. "lib/MonoAndroid10/_._",
  5007. "lib/MonoTouch10/_._",
  5008. "lib/net45/_._",
  5009. "lib/portable-net45+win8+wp8+wpa81/_._",
  5010. "lib/win8/_._",
  5011. "lib/wp80/_._",
  5012. "lib/wpa81/_._",
  5013. "lib/xamarinios10/_._",
  5014. "lib/xamarinmac20/_._",
  5015. "lib/xamarintvos10/_._",
  5016. "lib/xamarinwatchos10/_._",
  5017. "ref/MonoAndroid10/_._",
  5018. "ref/MonoTouch10/_._",
  5019. "ref/net45/_._",
  5020. "ref/netcore50/System.Reflection.Primitives.dll",
  5021. "ref/netcore50/System.Reflection.Primitives.xml",
  5022. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5023. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5024. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5025. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5026. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5027. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5028. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5029. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5030. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5031. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5032. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5033. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5034. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5035. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5036. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5037. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5038. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5039. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5040. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5041. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5042. "ref/portable-net45+win8+wp8+wpa81/_._",
  5043. "ref/win8/_._",
  5044. "ref/wp80/_._",
  5045. "ref/wpa81/_._",
  5046. "ref/xamarinios10/_._",
  5047. "ref/xamarinmac20/_._",
  5048. "ref/xamarintvos10/_._",
  5049. "ref/xamarinwatchos10/_._",
  5050. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5051. "system.reflection.primitives.nuspec"
  5052. ]
  5053. },
  5054. "System.Reflection.TypeExtensions/4.1.0": {
  5055. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  5056. "type": "package",
  5057. "path": "system.reflection.typeextensions/4.1.0",
  5058. "files": [
  5059. ".nupkg.metadata",
  5060. "ThirdPartyNotices.txt",
  5061. "dotnet_library_license.txt",
  5062. "lib/MonoAndroid10/_._",
  5063. "lib/MonoTouch10/_._",
  5064. "lib/net46/System.Reflection.TypeExtensions.dll",
  5065. "lib/net462/System.Reflection.TypeExtensions.dll",
  5066. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5067. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5068. "lib/xamarinios10/_._",
  5069. "lib/xamarinmac20/_._",
  5070. "lib/xamarintvos10/_._",
  5071. "lib/xamarinwatchos10/_._",
  5072. "ref/MonoAndroid10/_._",
  5073. "ref/MonoTouch10/_._",
  5074. "ref/net46/System.Reflection.TypeExtensions.dll",
  5075. "ref/net462/System.Reflection.TypeExtensions.dll",
  5076. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5077. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5078. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5079. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5080. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5081. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5082. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5083. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5084. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5085. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5086. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5087. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5088. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5089. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5090. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5091. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5092. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5093. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5094. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5095. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5096. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5097. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5098. "ref/xamarinios10/_._",
  5099. "ref/xamarinmac20/_._",
  5100. "ref/xamarintvos10/_._",
  5101. "ref/xamarinwatchos10/_._",
  5102. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5103. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  5104. "system.reflection.typeextensions.nuspec"
  5105. ]
  5106. },
  5107. "System.Resources.ResourceManager/4.0.1": {
  5108. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  5109. "type": "package",
  5110. "path": "system.resources.resourcemanager/4.0.1",
  5111. "files": [
  5112. ".nupkg.metadata",
  5113. "ThirdPartyNotices.txt",
  5114. "dotnet_library_license.txt",
  5115. "lib/MonoAndroid10/_._",
  5116. "lib/MonoTouch10/_._",
  5117. "lib/net45/_._",
  5118. "lib/portable-net45+win8+wp8+wpa81/_._",
  5119. "lib/win8/_._",
  5120. "lib/wp80/_._",
  5121. "lib/wpa81/_._",
  5122. "lib/xamarinios10/_._",
  5123. "lib/xamarinmac20/_._",
  5124. "lib/xamarintvos10/_._",
  5125. "lib/xamarinwatchos10/_._",
  5126. "ref/MonoAndroid10/_._",
  5127. "ref/MonoTouch10/_._",
  5128. "ref/net45/_._",
  5129. "ref/netcore50/System.Resources.ResourceManager.dll",
  5130. "ref/netcore50/System.Resources.ResourceManager.xml",
  5131. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5132. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5133. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5134. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5135. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5136. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5137. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5138. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5139. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5140. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5141. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5142. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5143. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5144. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5145. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5146. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5147. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5148. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5149. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5150. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5151. "ref/portable-net45+win8+wp8+wpa81/_._",
  5152. "ref/win8/_._",
  5153. "ref/wp80/_._",
  5154. "ref/wpa81/_._",
  5155. "ref/xamarinios10/_._",
  5156. "ref/xamarinmac20/_._",
  5157. "ref/xamarintvos10/_._",
  5158. "ref/xamarinwatchos10/_._",
  5159. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  5160. "system.resources.resourcemanager.nuspec"
  5161. ]
  5162. },
  5163. "System.Runtime/4.3.0": {
  5164. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5165. "type": "package",
  5166. "path": "system.runtime/4.3.0",
  5167. "files": [
  5168. ".nupkg.metadata",
  5169. ".signature.p7s",
  5170. "ThirdPartyNotices.txt",
  5171. "dotnet_library_license.txt",
  5172. "lib/MonoAndroid10/_._",
  5173. "lib/MonoTouch10/_._",
  5174. "lib/net45/_._",
  5175. "lib/net462/System.Runtime.dll",
  5176. "lib/portable-net45+win8+wp80+wpa81/_._",
  5177. "lib/win8/_._",
  5178. "lib/wp80/_._",
  5179. "lib/wpa81/_._",
  5180. "lib/xamarinios10/_._",
  5181. "lib/xamarinmac20/_._",
  5182. "lib/xamarintvos10/_._",
  5183. "lib/xamarinwatchos10/_._",
  5184. "ref/MonoAndroid10/_._",
  5185. "ref/MonoTouch10/_._",
  5186. "ref/net45/_._",
  5187. "ref/net462/System.Runtime.dll",
  5188. "ref/netcore50/System.Runtime.dll",
  5189. "ref/netcore50/System.Runtime.xml",
  5190. "ref/netcore50/de/System.Runtime.xml",
  5191. "ref/netcore50/es/System.Runtime.xml",
  5192. "ref/netcore50/fr/System.Runtime.xml",
  5193. "ref/netcore50/it/System.Runtime.xml",
  5194. "ref/netcore50/ja/System.Runtime.xml",
  5195. "ref/netcore50/ko/System.Runtime.xml",
  5196. "ref/netcore50/ru/System.Runtime.xml",
  5197. "ref/netcore50/zh-hans/System.Runtime.xml",
  5198. "ref/netcore50/zh-hant/System.Runtime.xml",
  5199. "ref/netstandard1.0/System.Runtime.dll",
  5200. "ref/netstandard1.0/System.Runtime.xml",
  5201. "ref/netstandard1.0/de/System.Runtime.xml",
  5202. "ref/netstandard1.0/es/System.Runtime.xml",
  5203. "ref/netstandard1.0/fr/System.Runtime.xml",
  5204. "ref/netstandard1.0/it/System.Runtime.xml",
  5205. "ref/netstandard1.0/ja/System.Runtime.xml",
  5206. "ref/netstandard1.0/ko/System.Runtime.xml",
  5207. "ref/netstandard1.0/ru/System.Runtime.xml",
  5208. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5209. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5210. "ref/netstandard1.2/System.Runtime.dll",
  5211. "ref/netstandard1.2/System.Runtime.xml",
  5212. "ref/netstandard1.2/de/System.Runtime.xml",
  5213. "ref/netstandard1.2/es/System.Runtime.xml",
  5214. "ref/netstandard1.2/fr/System.Runtime.xml",
  5215. "ref/netstandard1.2/it/System.Runtime.xml",
  5216. "ref/netstandard1.2/ja/System.Runtime.xml",
  5217. "ref/netstandard1.2/ko/System.Runtime.xml",
  5218. "ref/netstandard1.2/ru/System.Runtime.xml",
  5219. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  5220. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  5221. "ref/netstandard1.3/System.Runtime.dll",
  5222. "ref/netstandard1.3/System.Runtime.xml",
  5223. "ref/netstandard1.3/de/System.Runtime.xml",
  5224. "ref/netstandard1.3/es/System.Runtime.xml",
  5225. "ref/netstandard1.3/fr/System.Runtime.xml",
  5226. "ref/netstandard1.3/it/System.Runtime.xml",
  5227. "ref/netstandard1.3/ja/System.Runtime.xml",
  5228. "ref/netstandard1.3/ko/System.Runtime.xml",
  5229. "ref/netstandard1.3/ru/System.Runtime.xml",
  5230. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  5231. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  5232. "ref/netstandard1.5/System.Runtime.dll",
  5233. "ref/netstandard1.5/System.Runtime.xml",
  5234. "ref/netstandard1.5/de/System.Runtime.xml",
  5235. "ref/netstandard1.5/es/System.Runtime.xml",
  5236. "ref/netstandard1.5/fr/System.Runtime.xml",
  5237. "ref/netstandard1.5/it/System.Runtime.xml",
  5238. "ref/netstandard1.5/ja/System.Runtime.xml",
  5239. "ref/netstandard1.5/ko/System.Runtime.xml",
  5240. "ref/netstandard1.5/ru/System.Runtime.xml",
  5241. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  5242. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  5243. "ref/portable-net45+win8+wp80+wpa81/_._",
  5244. "ref/win8/_._",
  5245. "ref/wp80/_._",
  5246. "ref/wpa81/_._",
  5247. "ref/xamarinios10/_._",
  5248. "ref/xamarinmac20/_._",
  5249. "ref/xamarintvos10/_._",
  5250. "ref/xamarinwatchos10/_._",
  5251. "system.runtime.4.3.0.nupkg.sha512",
  5252. "system.runtime.nuspec"
  5253. ]
  5254. },
  5255. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5256. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  5257. "type": "package",
  5258. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  5259. "files": [
  5260. ".nupkg.metadata",
  5261. ".signature.p7s",
  5262. "Icon.png",
  5263. "LICENSE.TXT",
  5264. "THIRD-PARTY-NOTICES.TXT",
  5265. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  5266. "buildTransitive/netcoreapp3.1/_._",
  5267. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5268. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5269. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  5270. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  5271. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  5272. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  5273. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5274. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5275. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  5276. "system.runtime.compilerservices.unsafe.nuspec",
  5277. "useSharedDesignerContext.txt"
  5278. ]
  5279. },
  5280. "System.Runtime.Extensions/4.1.0": {
  5281. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  5282. "type": "package",
  5283. "path": "system.runtime.extensions/4.1.0",
  5284. "files": [
  5285. ".nupkg.metadata",
  5286. "ThirdPartyNotices.txt",
  5287. "dotnet_library_license.txt",
  5288. "lib/MonoAndroid10/_._",
  5289. "lib/MonoTouch10/_._",
  5290. "lib/net45/_._",
  5291. "lib/net462/System.Runtime.Extensions.dll",
  5292. "lib/portable-net45+win8+wp8+wpa81/_._",
  5293. "lib/win8/_._",
  5294. "lib/wp80/_._",
  5295. "lib/wpa81/_._",
  5296. "lib/xamarinios10/_._",
  5297. "lib/xamarinmac20/_._",
  5298. "lib/xamarintvos10/_._",
  5299. "lib/xamarinwatchos10/_._",
  5300. "ref/MonoAndroid10/_._",
  5301. "ref/MonoTouch10/_._",
  5302. "ref/net45/_._",
  5303. "ref/net462/System.Runtime.Extensions.dll",
  5304. "ref/netcore50/System.Runtime.Extensions.dll",
  5305. "ref/netcore50/System.Runtime.Extensions.xml",
  5306. "ref/netcore50/de/System.Runtime.Extensions.xml",
  5307. "ref/netcore50/es/System.Runtime.Extensions.xml",
  5308. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  5309. "ref/netcore50/it/System.Runtime.Extensions.xml",
  5310. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  5311. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  5312. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  5313. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  5314. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  5315. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  5316. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  5317. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  5318. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  5319. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  5320. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  5321. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  5322. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  5323. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  5324. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  5325. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  5326. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  5327. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  5328. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  5329. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  5330. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  5331. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  5332. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  5333. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  5334. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  5335. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  5336. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  5337. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  5338. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  5339. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  5340. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  5341. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  5342. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  5343. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  5344. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  5345. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  5346. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  5347. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  5348. "ref/portable-net45+win8+wp8+wpa81/_._",
  5349. "ref/win8/_._",
  5350. "ref/wp80/_._",
  5351. "ref/wpa81/_._",
  5352. "ref/xamarinios10/_._",
  5353. "ref/xamarinmac20/_._",
  5354. "ref/xamarintvos10/_._",
  5355. "ref/xamarinwatchos10/_._",
  5356. "system.runtime.extensions.4.1.0.nupkg.sha512",
  5357. "system.runtime.extensions.nuspec"
  5358. ]
  5359. },
  5360. "System.Runtime.Handles/4.0.1": {
  5361. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  5362. "type": "package",
  5363. "path": "system.runtime.handles/4.0.1",
  5364. "files": [
  5365. ".nupkg.metadata",
  5366. "ThirdPartyNotices.txt",
  5367. "dotnet_library_license.txt",
  5368. "lib/MonoAndroid10/_._",
  5369. "lib/MonoTouch10/_._",
  5370. "lib/net46/_._",
  5371. "lib/xamarinios10/_._",
  5372. "lib/xamarinmac20/_._",
  5373. "lib/xamarintvos10/_._",
  5374. "lib/xamarinwatchos10/_._",
  5375. "ref/MonoAndroid10/_._",
  5376. "ref/MonoTouch10/_._",
  5377. "ref/net46/_._",
  5378. "ref/netstandard1.3/System.Runtime.Handles.dll",
  5379. "ref/netstandard1.3/System.Runtime.Handles.xml",
  5380. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  5381. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  5382. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  5383. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  5384. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  5385. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  5386. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  5387. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  5388. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  5389. "ref/xamarinios10/_._",
  5390. "ref/xamarinmac20/_._",
  5391. "ref/xamarintvos10/_._",
  5392. "ref/xamarinwatchos10/_._",
  5393. "system.runtime.handles.4.0.1.nupkg.sha512",
  5394. "system.runtime.handles.nuspec"
  5395. ]
  5396. },
  5397. "System.Runtime.InteropServices/4.1.0": {
  5398. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  5399. "type": "package",
  5400. "path": "system.runtime.interopservices/4.1.0",
  5401. "files": [
  5402. ".nupkg.metadata",
  5403. "ThirdPartyNotices.txt",
  5404. "dotnet_library_license.txt",
  5405. "lib/MonoAndroid10/_._",
  5406. "lib/MonoTouch10/_._",
  5407. "lib/net45/_._",
  5408. "lib/net462/System.Runtime.InteropServices.dll",
  5409. "lib/portable-net45+win8+wpa81/_._",
  5410. "lib/win8/_._",
  5411. "lib/wpa81/_._",
  5412. "lib/xamarinios10/_._",
  5413. "lib/xamarinmac20/_._",
  5414. "lib/xamarintvos10/_._",
  5415. "lib/xamarinwatchos10/_._",
  5416. "ref/MonoAndroid10/_._",
  5417. "ref/MonoTouch10/_._",
  5418. "ref/net45/_._",
  5419. "ref/net462/System.Runtime.InteropServices.dll",
  5420. "ref/netcore50/System.Runtime.InteropServices.dll",
  5421. "ref/netcore50/System.Runtime.InteropServices.xml",
  5422. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  5423. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  5424. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  5425. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  5426. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  5427. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  5428. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  5429. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  5430. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  5431. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  5432. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  5433. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  5434. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  5435. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  5436. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  5437. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  5438. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  5439. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  5440. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  5441. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  5442. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  5443. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  5444. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  5445. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  5446. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  5447. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  5448. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  5449. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  5450. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  5451. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  5452. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  5453. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  5454. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  5455. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  5456. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  5457. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  5458. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  5459. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  5460. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  5461. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  5462. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  5463. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  5464. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  5465. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  5466. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  5467. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  5468. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  5469. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  5470. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  5471. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  5472. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  5473. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  5474. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  5475. "ref/portable-net45+win8+wpa81/_._",
  5476. "ref/win8/_._",
  5477. "ref/wpa81/_._",
  5478. "ref/xamarinios10/_._",
  5479. "ref/xamarinmac20/_._",
  5480. "ref/xamarintvos10/_._",
  5481. "ref/xamarinwatchos10/_._",
  5482. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  5483. "system.runtime.interopservices.nuspec"
  5484. ]
  5485. },
  5486. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  5487. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  5488. "type": "package",
  5489. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  5490. "files": [
  5491. ".nupkg.metadata",
  5492. "ThirdPartyNotices.txt",
  5493. "dotnet_library_license.txt",
  5494. "lib/MonoAndroid10/_._",
  5495. "lib/MonoTouch10/_._",
  5496. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5497. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  5498. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  5499. "lib/xamarinios10/_._",
  5500. "lib/xamarinmac20/_._",
  5501. "lib/xamarintvos10/_._",
  5502. "lib/xamarinwatchos10/_._",
  5503. "ref/MonoAndroid10/_._",
  5504. "ref/MonoTouch10/_._",
  5505. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5506. "ref/xamarinios10/_._",
  5507. "ref/xamarinmac20/_._",
  5508. "ref/xamarintvos10/_._",
  5509. "ref/xamarinwatchos10/_._",
  5510. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5511. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5512. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5513. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5514. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5515. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  5516. "system.runtime.interopservices.runtimeinformation.nuspec"
  5517. ]
  5518. },
  5519. "System.Runtime.Numerics/4.0.1": {
  5520. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  5521. "type": "package",
  5522. "path": "system.runtime.numerics/4.0.1",
  5523. "files": [
  5524. ".nupkg.metadata",
  5525. "ThirdPartyNotices.txt",
  5526. "dotnet_library_license.txt",
  5527. "lib/MonoAndroid10/_._",
  5528. "lib/MonoTouch10/_._",
  5529. "lib/net45/_._",
  5530. "lib/netcore50/System.Runtime.Numerics.dll",
  5531. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  5532. "lib/portable-net45+win8+wpa81/_._",
  5533. "lib/win8/_._",
  5534. "lib/wpa81/_._",
  5535. "lib/xamarinios10/_._",
  5536. "lib/xamarinmac20/_._",
  5537. "lib/xamarintvos10/_._",
  5538. "lib/xamarinwatchos10/_._",
  5539. "ref/MonoAndroid10/_._",
  5540. "ref/MonoTouch10/_._",
  5541. "ref/net45/_._",
  5542. "ref/netcore50/System.Runtime.Numerics.dll",
  5543. "ref/netcore50/System.Runtime.Numerics.xml",
  5544. "ref/netcore50/de/System.Runtime.Numerics.xml",
  5545. "ref/netcore50/es/System.Runtime.Numerics.xml",
  5546. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  5547. "ref/netcore50/it/System.Runtime.Numerics.xml",
  5548. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  5549. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  5550. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  5551. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  5552. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  5553. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  5554. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  5555. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  5556. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  5557. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  5558. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  5559. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  5560. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  5561. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  5562. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  5563. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  5564. "ref/portable-net45+win8+wpa81/_._",
  5565. "ref/win8/_._",
  5566. "ref/wpa81/_._",
  5567. "ref/xamarinios10/_._",
  5568. "ref/xamarinmac20/_._",
  5569. "ref/xamarintvos10/_._",
  5570. "ref/xamarinwatchos10/_._",
  5571. "system.runtime.numerics.4.0.1.nupkg.sha512",
  5572. "system.runtime.numerics.nuspec"
  5573. ]
  5574. },
  5575. "System.Security.AccessControl/4.7.0": {
  5576. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  5577. "type": "package",
  5578. "path": "system.security.accesscontrol/4.7.0",
  5579. "files": [
  5580. ".nupkg.metadata",
  5581. ".signature.p7s",
  5582. "LICENSE.TXT",
  5583. "THIRD-PARTY-NOTICES.TXT",
  5584. "lib/net46/System.Security.AccessControl.dll",
  5585. "lib/net461/System.Security.AccessControl.dll",
  5586. "lib/net461/System.Security.AccessControl.xml",
  5587. "lib/netstandard1.3/System.Security.AccessControl.dll",
  5588. "lib/netstandard2.0/System.Security.AccessControl.dll",
  5589. "lib/netstandard2.0/System.Security.AccessControl.xml",
  5590. "lib/uap10.0.16299/_._",
  5591. "ref/net46/System.Security.AccessControl.dll",
  5592. "ref/net461/System.Security.AccessControl.dll",
  5593. "ref/net461/System.Security.AccessControl.xml",
  5594. "ref/netstandard1.3/System.Security.AccessControl.dll",
  5595. "ref/netstandard1.3/System.Security.AccessControl.xml",
  5596. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  5597. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  5598. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  5599. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  5600. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  5601. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  5602. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  5603. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  5604. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  5605. "ref/netstandard2.0/System.Security.AccessControl.dll",
  5606. "ref/netstandard2.0/System.Security.AccessControl.xml",
  5607. "ref/uap10.0.16299/_._",
  5608. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  5609. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  5610. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  5611. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  5612. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  5613. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  5614. "runtimes/win/lib/uap10.0.16299/_._",
  5615. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  5616. "system.security.accesscontrol.nuspec",
  5617. "useSharedDesignerContext.txt",
  5618. "version.txt"
  5619. ]
  5620. },
  5621. "System.Security.Cryptography.Algorithms/4.2.0": {
  5622. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  5623. "type": "package",
  5624. "path": "system.security.cryptography.algorithms/4.2.0",
  5625. "files": [
  5626. ".nupkg.metadata",
  5627. "ThirdPartyNotices.txt",
  5628. "dotnet_library_license.txt",
  5629. "lib/MonoAndroid10/_._",
  5630. "lib/MonoTouch10/_._",
  5631. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  5632. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  5633. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  5634. "lib/xamarinios10/_._",
  5635. "lib/xamarinmac20/_._",
  5636. "lib/xamarintvos10/_._",
  5637. "lib/xamarinwatchos10/_._",
  5638. "ref/MonoAndroid10/_._",
  5639. "ref/MonoTouch10/_._",
  5640. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  5641. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  5642. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  5643. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  5644. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  5645. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5646. "ref/xamarinios10/_._",
  5647. "ref/xamarinmac20/_._",
  5648. "ref/xamarintvos10/_._",
  5649. "ref/xamarinwatchos10/_._",
  5650. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5651. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  5652. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  5653. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  5654. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  5655. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5656. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  5657. "system.security.cryptography.algorithms.nuspec"
  5658. ]
  5659. },
  5660. "System.Security.Cryptography.Cng/4.2.0": {
  5661. "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
  5662. "type": "package",
  5663. "path": "system.security.cryptography.cng/4.2.0",
  5664. "files": [
  5665. ".nupkg.metadata",
  5666. "ThirdPartyNotices.txt",
  5667. "dotnet_library_license.txt",
  5668. "lib/net46/System.Security.Cryptography.Cng.dll",
  5669. "lib/net461/System.Security.Cryptography.Cng.dll",
  5670. "lib/net463/System.Security.Cryptography.Cng.dll",
  5671. "ref/net46/System.Security.Cryptography.Cng.dll",
  5672. "ref/net461/System.Security.Cryptography.Cng.dll",
  5673. "ref/net463/System.Security.Cryptography.Cng.dll",
  5674. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5675. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5676. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5677. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5678. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5679. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5680. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  5681. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5682. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5683. "system.security.cryptography.cng.4.2.0.nupkg.sha512",
  5684. "system.security.cryptography.cng.nuspec"
  5685. ]
  5686. },
  5687. "System.Security.Cryptography.Csp/4.0.0": {
  5688. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  5689. "type": "package",
  5690. "path": "system.security.cryptography.csp/4.0.0",
  5691. "files": [
  5692. ".nupkg.metadata",
  5693. "ThirdPartyNotices.txt",
  5694. "dotnet_library_license.txt",
  5695. "lib/MonoAndroid10/_._",
  5696. "lib/MonoTouch10/_._",
  5697. "lib/net46/System.Security.Cryptography.Csp.dll",
  5698. "lib/xamarinios10/_._",
  5699. "lib/xamarinmac20/_._",
  5700. "lib/xamarintvos10/_._",
  5701. "lib/xamarinwatchos10/_._",
  5702. "ref/MonoAndroid10/_._",
  5703. "ref/MonoTouch10/_._",
  5704. "ref/net46/System.Security.Cryptography.Csp.dll",
  5705. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5706. "ref/xamarinios10/_._",
  5707. "ref/xamarinmac20/_._",
  5708. "ref/xamarintvos10/_._",
  5709. "ref/xamarinwatchos10/_._",
  5710. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5711. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  5712. "runtimes/win/lib/netcore50/_._",
  5713. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5714. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  5715. "system.security.cryptography.csp.nuspec"
  5716. ]
  5717. },
  5718. "System.Security.Cryptography.Encoding/4.0.0": {
  5719. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  5720. "type": "package",
  5721. "path": "system.security.cryptography.encoding/4.0.0",
  5722. "files": [
  5723. ".nupkg.metadata",
  5724. "ThirdPartyNotices.txt",
  5725. "dotnet_library_license.txt",
  5726. "lib/MonoAndroid10/_._",
  5727. "lib/MonoTouch10/_._",
  5728. "lib/net46/System.Security.Cryptography.Encoding.dll",
  5729. "lib/xamarinios10/_._",
  5730. "lib/xamarinmac20/_._",
  5731. "lib/xamarintvos10/_._",
  5732. "lib/xamarinwatchos10/_._",
  5733. "ref/MonoAndroid10/_._",
  5734. "ref/MonoTouch10/_._",
  5735. "ref/net46/System.Security.Cryptography.Encoding.dll",
  5736. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5737. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  5738. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  5739. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  5740. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  5741. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  5742. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  5743. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  5744. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  5745. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  5746. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  5747. "ref/xamarinios10/_._",
  5748. "ref/xamarinmac20/_._",
  5749. "ref/xamarintvos10/_._",
  5750. "ref/xamarinwatchos10/_._",
  5751. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5752. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  5753. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5754. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  5755. "system.security.cryptography.encoding.nuspec"
  5756. ]
  5757. },
  5758. "System.Security.Cryptography.OpenSsl/4.0.0": {
  5759. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  5760. "type": "package",
  5761. "path": "system.security.cryptography.openssl/4.0.0",
  5762. "files": [
  5763. ".nupkg.metadata",
  5764. "ThirdPartyNotices.txt",
  5765. "dotnet_library_license.txt",
  5766. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5767. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5768. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5769. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  5770. "system.security.cryptography.openssl.nuspec"
  5771. ]
  5772. },
  5773. "System.Security.Cryptography.Primitives/4.0.0": {
  5774. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  5775. "type": "package",
  5776. "path": "system.security.cryptography.primitives/4.0.0",
  5777. "files": [
  5778. ".nupkg.metadata",
  5779. "ThirdPartyNotices.txt",
  5780. "dotnet_library_license.txt",
  5781. "lib/MonoAndroid10/_._",
  5782. "lib/MonoTouch10/_._",
  5783. "lib/net46/System.Security.Cryptography.Primitives.dll",
  5784. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5785. "lib/xamarinios10/_._",
  5786. "lib/xamarinmac20/_._",
  5787. "lib/xamarintvos10/_._",
  5788. "lib/xamarinwatchos10/_._",
  5789. "ref/MonoAndroid10/_._",
  5790. "ref/MonoTouch10/_._",
  5791. "ref/net46/System.Security.Cryptography.Primitives.dll",
  5792. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5793. "ref/xamarinios10/_._",
  5794. "ref/xamarinmac20/_._",
  5795. "ref/xamarintvos10/_._",
  5796. "ref/xamarinwatchos10/_._",
  5797. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  5798. "system.security.cryptography.primitives.nuspec"
  5799. ]
  5800. },
  5801. "System.Security.Cryptography.ProtectedData/4.4.0": {
  5802. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  5803. "type": "package",
  5804. "path": "system.security.cryptography.protecteddata/4.4.0",
  5805. "files": [
  5806. ".nupkg.metadata",
  5807. ".signature.p7s",
  5808. "LICENSE.TXT",
  5809. "THIRD-PARTY-NOTICES.TXT",
  5810. "lib/MonoAndroid10/_._",
  5811. "lib/MonoTouch10/_._",
  5812. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5813. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5814. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5815. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5816. "lib/xamarinios10/_._",
  5817. "lib/xamarinmac20/_._",
  5818. "lib/xamarintvos10/_._",
  5819. "lib/xamarinwatchos10/_._",
  5820. "ref/MonoAndroid10/_._",
  5821. "ref/MonoTouch10/_._",
  5822. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  5823. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  5824. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  5825. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5826. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5827. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5828. "ref/xamarinios10/_._",
  5829. "ref/xamarinmac20/_._",
  5830. "ref/xamarintvos10/_._",
  5831. "ref/xamarinwatchos10/_._",
  5832. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5833. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5834. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5835. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5836. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  5837. "system.security.cryptography.protecteddata.nuspec",
  5838. "useSharedDesignerContext.txt",
  5839. "version.txt"
  5840. ]
  5841. },
  5842. "System.Security.Cryptography.X509Certificates/4.1.0": {
  5843. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  5844. "type": "package",
  5845. "path": "system.security.cryptography.x509certificates/4.1.0",
  5846. "files": [
  5847. ".nupkg.metadata",
  5848. "ThirdPartyNotices.txt",
  5849. "dotnet_library_license.txt",
  5850. "lib/MonoAndroid10/_._",
  5851. "lib/MonoTouch10/_._",
  5852. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5853. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5854. "lib/xamarinios10/_._",
  5855. "lib/xamarinmac20/_._",
  5856. "lib/xamarintvos10/_._",
  5857. "lib/xamarinwatchos10/_._",
  5858. "ref/MonoAndroid10/_._",
  5859. "ref/MonoTouch10/_._",
  5860. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  5861. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  5862. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  5863. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  5864. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  5865. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  5866. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  5867. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  5868. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  5869. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  5870. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  5871. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5872. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5873. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  5874. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  5875. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  5876. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  5877. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  5878. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  5879. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  5880. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  5881. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  5882. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5883. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5884. "ref/xamarinios10/_._",
  5885. "ref/xamarinmac20/_._",
  5886. "ref/xamarintvos10/_._",
  5887. "ref/xamarinwatchos10/_._",
  5888. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5889. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5890. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5891. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  5892. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5893. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  5894. "system.security.cryptography.x509certificates.nuspec"
  5895. ]
  5896. },
  5897. "System.Security.Permissions/4.7.0": {
  5898. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  5899. "type": "package",
  5900. "path": "system.security.permissions/4.7.0",
  5901. "files": [
  5902. ".nupkg.metadata",
  5903. ".signature.p7s",
  5904. "LICENSE.TXT",
  5905. "THIRD-PARTY-NOTICES.TXT",
  5906. "lib/net461/System.Security.Permissions.dll",
  5907. "lib/net461/System.Security.Permissions.xml",
  5908. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  5909. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  5910. "lib/netstandard2.0/System.Security.Permissions.dll",
  5911. "lib/netstandard2.0/System.Security.Permissions.xml",
  5912. "ref/net461/System.Security.Permissions.dll",
  5913. "ref/net461/System.Security.Permissions.xml",
  5914. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  5915. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  5916. "ref/netstandard2.0/System.Security.Permissions.dll",
  5917. "ref/netstandard2.0/System.Security.Permissions.xml",
  5918. "system.security.permissions.4.7.0.nupkg.sha512",
  5919. "system.security.permissions.nuspec",
  5920. "useSharedDesignerContext.txt",
  5921. "version.txt"
  5922. ]
  5923. },
  5924. "System.Security.Principal.Windows/4.7.0": {
  5925. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  5926. "type": "package",
  5927. "path": "system.security.principal.windows/4.7.0",
  5928. "files": [
  5929. ".nupkg.metadata",
  5930. ".signature.p7s",
  5931. "LICENSE.TXT",
  5932. "THIRD-PARTY-NOTICES.TXT",
  5933. "lib/net46/System.Security.Principal.Windows.dll",
  5934. "lib/net461/System.Security.Principal.Windows.dll",
  5935. "lib/net461/System.Security.Principal.Windows.xml",
  5936. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  5937. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  5938. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  5939. "lib/uap10.0.16299/_._",
  5940. "ref/net46/System.Security.Principal.Windows.dll",
  5941. "ref/net461/System.Security.Principal.Windows.dll",
  5942. "ref/net461/System.Security.Principal.Windows.xml",
  5943. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  5944. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  5945. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  5946. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  5947. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  5948. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  5949. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  5950. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  5951. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  5952. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  5953. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  5954. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  5955. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  5956. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  5957. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  5958. "ref/uap10.0.16299/_._",
  5959. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  5960. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  5961. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  5962. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  5963. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  5964. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  5965. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  5966. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  5967. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  5968. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  5969. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  5970. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  5971. "runtimes/win/lib/uap10.0.16299/_._",
  5972. "system.security.principal.windows.4.7.0.nupkg.sha512",
  5973. "system.security.principal.windows.nuspec",
  5974. "useSharedDesignerContext.txt",
  5975. "version.txt"
  5976. ]
  5977. },
  5978. "System.Text.Encoding/4.3.0": {
  5979. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  5980. "type": "package",
  5981. "path": "system.text.encoding/4.3.0",
  5982. "files": [
  5983. ".nupkg.metadata",
  5984. ".signature.p7s",
  5985. "ThirdPartyNotices.txt",
  5986. "dotnet_library_license.txt",
  5987. "lib/MonoAndroid10/_._",
  5988. "lib/MonoTouch10/_._",
  5989. "lib/net45/_._",
  5990. "lib/portable-net45+win8+wp8+wpa81/_._",
  5991. "lib/win8/_._",
  5992. "lib/wp80/_._",
  5993. "lib/wpa81/_._",
  5994. "lib/xamarinios10/_._",
  5995. "lib/xamarinmac20/_._",
  5996. "lib/xamarintvos10/_._",
  5997. "lib/xamarinwatchos10/_._",
  5998. "ref/MonoAndroid10/_._",
  5999. "ref/MonoTouch10/_._",
  6000. "ref/net45/_._",
  6001. "ref/netcore50/System.Text.Encoding.dll",
  6002. "ref/netcore50/System.Text.Encoding.xml",
  6003. "ref/netcore50/de/System.Text.Encoding.xml",
  6004. "ref/netcore50/es/System.Text.Encoding.xml",
  6005. "ref/netcore50/fr/System.Text.Encoding.xml",
  6006. "ref/netcore50/it/System.Text.Encoding.xml",
  6007. "ref/netcore50/ja/System.Text.Encoding.xml",
  6008. "ref/netcore50/ko/System.Text.Encoding.xml",
  6009. "ref/netcore50/ru/System.Text.Encoding.xml",
  6010. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  6011. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  6012. "ref/netstandard1.0/System.Text.Encoding.dll",
  6013. "ref/netstandard1.0/System.Text.Encoding.xml",
  6014. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  6015. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  6016. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  6017. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  6018. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  6019. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  6020. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  6021. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  6022. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  6023. "ref/netstandard1.3/System.Text.Encoding.dll",
  6024. "ref/netstandard1.3/System.Text.Encoding.xml",
  6025. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  6026. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  6027. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  6028. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  6029. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  6030. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  6031. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  6032. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  6033. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  6034. "ref/portable-net45+win8+wp8+wpa81/_._",
  6035. "ref/win8/_._",
  6036. "ref/wp80/_._",
  6037. "ref/wpa81/_._",
  6038. "ref/xamarinios10/_._",
  6039. "ref/xamarinmac20/_._",
  6040. "ref/xamarintvos10/_._",
  6041. "ref/xamarinwatchos10/_._",
  6042. "system.text.encoding.4.3.0.nupkg.sha512",
  6043. "system.text.encoding.nuspec"
  6044. ]
  6045. },
  6046. "System.Text.Encoding.CodePages/4.4.0": {
  6047. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  6048. "type": "package",
  6049. "path": "system.text.encoding.codepages/4.4.0",
  6050. "files": [
  6051. ".nupkg.metadata",
  6052. ".signature.p7s",
  6053. "LICENSE.TXT",
  6054. "THIRD-PARTY-NOTICES.TXT",
  6055. "lib/MonoAndroid10/_._",
  6056. "lib/MonoTouch10/_._",
  6057. "lib/net46/System.Text.Encoding.CodePages.dll",
  6058. "lib/net461/System.Text.Encoding.CodePages.dll",
  6059. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6060. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6061. "lib/xamarinios10/_._",
  6062. "lib/xamarinmac20/_._",
  6063. "lib/xamarintvos10/_._",
  6064. "lib/xamarinwatchos10/_._",
  6065. "ref/MonoAndroid10/_._",
  6066. "ref/MonoTouch10/_._",
  6067. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6068. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  6069. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  6070. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  6071. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  6072. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  6073. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  6074. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  6075. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  6076. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  6077. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  6078. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6079. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6080. "ref/xamarinios10/_._",
  6081. "ref/xamarinmac20/_._",
  6082. "ref/xamarintvos10/_._",
  6083. "ref/xamarinwatchos10/_._",
  6084. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  6085. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  6086. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6087. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6088. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  6089. "system.text.encoding.codepages.nuspec",
  6090. "useSharedDesignerContext.txt",
  6091. "version.txt"
  6092. ]
  6093. },
  6094. "System.Text.Encoding.Extensions/4.0.11": {
  6095. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  6096. "type": "package",
  6097. "path": "system.text.encoding.extensions/4.0.11",
  6098. "files": [
  6099. ".nupkg.metadata",
  6100. "ThirdPartyNotices.txt",
  6101. "dotnet_library_license.txt",
  6102. "lib/MonoAndroid10/_._",
  6103. "lib/MonoTouch10/_._",
  6104. "lib/net45/_._",
  6105. "lib/portable-net45+win8+wp8+wpa81/_._",
  6106. "lib/win8/_._",
  6107. "lib/wp80/_._",
  6108. "lib/wpa81/_._",
  6109. "lib/xamarinios10/_._",
  6110. "lib/xamarinmac20/_._",
  6111. "lib/xamarintvos10/_._",
  6112. "lib/xamarinwatchos10/_._",
  6113. "ref/MonoAndroid10/_._",
  6114. "ref/MonoTouch10/_._",
  6115. "ref/net45/_._",
  6116. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  6117. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  6118. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  6119. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  6120. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  6121. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  6122. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  6123. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  6124. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  6125. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  6126. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  6127. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  6128. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  6129. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  6130. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  6131. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  6132. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  6133. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  6134. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  6135. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  6136. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  6137. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  6138. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  6139. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  6140. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  6141. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  6142. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  6143. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  6144. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  6145. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  6146. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  6147. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  6148. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  6149. "ref/portable-net45+win8+wp8+wpa81/_._",
  6150. "ref/win8/_._",
  6151. "ref/wp80/_._",
  6152. "ref/wpa81/_._",
  6153. "ref/xamarinios10/_._",
  6154. "ref/xamarinmac20/_._",
  6155. "ref/xamarintvos10/_._",
  6156. "ref/xamarinwatchos10/_._",
  6157. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  6158. "system.text.encoding.extensions.nuspec"
  6159. ]
  6160. },
  6161. "System.Text.Encodings.Web/4.5.0": {
  6162. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  6163. "type": "package",
  6164. "path": "system.text.encodings.web/4.5.0",
  6165. "files": [
  6166. ".nupkg.metadata",
  6167. ".signature.p7s",
  6168. "LICENSE.TXT",
  6169. "THIRD-PARTY-NOTICES.TXT",
  6170. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  6171. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  6172. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  6173. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  6174. "system.text.encodings.web.4.5.0.nupkg.sha512",
  6175. "system.text.encodings.web.nuspec",
  6176. "useSharedDesignerContext.txt",
  6177. "version.txt"
  6178. ]
  6179. },
  6180. "System.Text.RegularExpressions/4.1.0": {
  6181. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  6182. "type": "package",
  6183. "path": "system.text.regularexpressions/4.1.0",
  6184. "files": [
  6185. ".nupkg.metadata",
  6186. "ThirdPartyNotices.txt",
  6187. "dotnet_library_license.txt",
  6188. "lib/MonoAndroid10/_._",
  6189. "lib/MonoTouch10/_._",
  6190. "lib/net45/_._",
  6191. "lib/net463/System.Text.RegularExpressions.dll",
  6192. "lib/netcore50/System.Text.RegularExpressions.dll",
  6193. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  6194. "lib/portable-net45+win8+wp8+wpa81/_._",
  6195. "lib/win8/_._",
  6196. "lib/wp80/_._",
  6197. "lib/wpa81/_._",
  6198. "lib/xamarinios10/_._",
  6199. "lib/xamarinmac20/_._",
  6200. "lib/xamarintvos10/_._",
  6201. "lib/xamarinwatchos10/_._",
  6202. "ref/MonoAndroid10/_._",
  6203. "ref/MonoTouch10/_._",
  6204. "ref/net45/_._",
  6205. "ref/net463/System.Text.RegularExpressions.dll",
  6206. "ref/netcore50/System.Text.RegularExpressions.dll",
  6207. "ref/netcore50/System.Text.RegularExpressions.xml",
  6208. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  6209. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  6210. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  6211. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  6212. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  6213. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  6214. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  6215. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  6216. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  6217. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  6218. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  6219. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  6220. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  6221. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  6222. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  6223. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  6224. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  6225. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  6226. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  6227. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  6228. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  6229. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  6230. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  6231. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  6232. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  6233. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  6234. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  6235. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  6236. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  6237. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  6238. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  6239. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  6240. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  6241. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  6242. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  6243. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  6244. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  6245. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  6246. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  6247. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  6248. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  6249. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  6250. "ref/portable-net45+win8+wp8+wpa81/_._",
  6251. "ref/win8/_._",
  6252. "ref/wp80/_._",
  6253. "ref/wpa81/_._",
  6254. "ref/xamarinios10/_._",
  6255. "ref/xamarinmac20/_._",
  6256. "ref/xamarintvos10/_._",
  6257. "ref/xamarinwatchos10/_._",
  6258. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  6259. "system.text.regularexpressions.nuspec"
  6260. ]
  6261. },
  6262. "System.Threading/4.0.11": {
  6263. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  6264. "type": "package",
  6265. "path": "system.threading/4.0.11",
  6266. "files": [
  6267. ".nupkg.metadata",
  6268. "ThirdPartyNotices.txt",
  6269. "dotnet_library_license.txt",
  6270. "lib/MonoAndroid10/_._",
  6271. "lib/MonoTouch10/_._",
  6272. "lib/net45/_._",
  6273. "lib/netcore50/System.Threading.dll",
  6274. "lib/netstandard1.3/System.Threading.dll",
  6275. "lib/portable-net45+win8+wp8+wpa81/_._",
  6276. "lib/win8/_._",
  6277. "lib/wp80/_._",
  6278. "lib/wpa81/_._",
  6279. "lib/xamarinios10/_._",
  6280. "lib/xamarinmac20/_._",
  6281. "lib/xamarintvos10/_._",
  6282. "lib/xamarinwatchos10/_._",
  6283. "ref/MonoAndroid10/_._",
  6284. "ref/MonoTouch10/_._",
  6285. "ref/net45/_._",
  6286. "ref/netcore50/System.Threading.dll",
  6287. "ref/netcore50/System.Threading.xml",
  6288. "ref/netcore50/de/System.Threading.xml",
  6289. "ref/netcore50/es/System.Threading.xml",
  6290. "ref/netcore50/fr/System.Threading.xml",
  6291. "ref/netcore50/it/System.Threading.xml",
  6292. "ref/netcore50/ja/System.Threading.xml",
  6293. "ref/netcore50/ko/System.Threading.xml",
  6294. "ref/netcore50/ru/System.Threading.xml",
  6295. "ref/netcore50/zh-hans/System.Threading.xml",
  6296. "ref/netcore50/zh-hant/System.Threading.xml",
  6297. "ref/netstandard1.0/System.Threading.dll",
  6298. "ref/netstandard1.0/System.Threading.xml",
  6299. "ref/netstandard1.0/de/System.Threading.xml",
  6300. "ref/netstandard1.0/es/System.Threading.xml",
  6301. "ref/netstandard1.0/fr/System.Threading.xml",
  6302. "ref/netstandard1.0/it/System.Threading.xml",
  6303. "ref/netstandard1.0/ja/System.Threading.xml",
  6304. "ref/netstandard1.0/ko/System.Threading.xml",
  6305. "ref/netstandard1.0/ru/System.Threading.xml",
  6306. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  6307. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  6308. "ref/netstandard1.3/System.Threading.dll",
  6309. "ref/netstandard1.3/System.Threading.xml",
  6310. "ref/netstandard1.3/de/System.Threading.xml",
  6311. "ref/netstandard1.3/es/System.Threading.xml",
  6312. "ref/netstandard1.3/fr/System.Threading.xml",
  6313. "ref/netstandard1.3/it/System.Threading.xml",
  6314. "ref/netstandard1.3/ja/System.Threading.xml",
  6315. "ref/netstandard1.3/ko/System.Threading.xml",
  6316. "ref/netstandard1.3/ru/System.Threading.xml",
  6317. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  6318. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  6319. "ref/portable-net45+win8+wp8+wpa81/_._",
  6320. "ref/win8/_._",
  6321. "ref/wp80/_._",
  6322. "ref/wpa81/_._",
  6323. "ref/xamarinios10/_._",
  6324. "ref/xamarinmac20/_._",
  6325. "ref/xamarintvos10/_._",
  6326. "ref/xamarinwatchos10/_._",
  6327. "runtimes/aot/lib/netcore50/System.Threading.dll",
  6328. "system.threading.4.0.11.nupkg.sha512",
  6329. "system.threading.nuspec"
  6330. ]
  6331. },
  6332. "System.Threading.Tasks/4.3.0": {
  6333. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  6334. "type": "package",
  6335. "path": "system.threading.tasks/4.3.0",
  6336. "files": [
  6337. ".nupkg.metadata",
  6338. ".signature.p7s",
  6339. "ThirdPartyNotices.txt",
  6340. "dotnet_library_license.txt",
  6341. "lib/MonoAndroid10/_._",
  6342. "lib/MonoTouch10/_._",
  6343. "lib/net45/_._",
  6344. "lib/portable-net45+win8+wp8+wpa81/_._",
  6345. "lib/win8/_._",
  6346. "lib/wp80/_._",
  6347. "lib/wpa81/_._",
  6348. "lib/xamarinios10/_._",
  6349. "lib/xamarinmac20/_._",
  6350. "lib/xamarintvos10/_._",
  6351. "lib/xamarinwatchos10/_._",
  6352. "ref/MonoAndroid10/_._",
  6353. "ref/MonoTouch10/_._",
  6354. "ref/net45/_._",
  6355. "ref/netcore50/System.Threading.Tasks.dll",
  6356. "ref/netcore50/System.Threading.Tasks.xml",
  6357. "ref/netcore50/de/System.Threading.Tasks.xml",
  6358. "ref/netcore50/es/System.Threading.Tasks.xml",
  6359. "ref/netcore50/fr/System.Threading.Tasks.xml",
  6360. "ref/netcore50/it/System.Threading.Tasks.xml",
  6361. "ref/netcore50/ja/System.Threading.Tasks.xml",
  6362. "ref/netcore50/ko/System.Threading.Tasks.xml",
  6363. "ref/netcore50/ru/System.Threading.Tasks.xml",
  6364. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  6365. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  6366. "ref/netstandard1.0/System.Threading.Tasks.dll",
  6367. "ref/netstandard1.0/System.Threading.Tasks.xml",
  6368. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  6369. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  6370. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  6371. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  6372. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  6373. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  6374. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  6375. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  6376. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  6377. "ref/netstandard1.3/System.Threading.Tasks.dll",
  6378. "ref/netstandard1.3/System.Threading.Tasks.xml",
  6379. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  6380. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  6381. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  6382. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  6383. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  6384. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  6385. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  6386. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  6387. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  6388. "ref/portable-net45+win8+wp8+wpa81/_._",
  6389. "ref/win8/_._",
  6390. "ref/wp80/_._",
  6391. "ref/wpa81/_._",
  6392. "ref/xamarinios10/_._",
  6393. "ref/xamarinmac20/_._",
  6394. "ref/xamarintvos10/_._",
  6395. "ref/xamarinwatchos10/_._",
  6396. "system.threading.tasks.4.3.0.nupkg.sha512",
  6397. "system.threading.tasks.nuspec"
  6398. ]
  6399. },
  6400. "System.Threading.Tasks.Extensions/4.0.0": {
  6401. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  6402. "type": "package",
  6403. "path": "system.threading.tasks.extensions/4.0.0",
  6404. "files": [
  6405. ".nupkg.metadata",
  6406. "ThirdPartyNotices.txt",
  6407. "dotnet_library_license.txt",
  6408. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  6409. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  6410. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  6411. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  6412. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  6413. "system.threading.tasks.extensions.nuspec"
  6414. ]
  6415. },
  6416. "System.Threading.Thread/4.0.0": {
  6417. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  6418. "type": "package",
  6419. "path": "system.threading.thread/4.0.0",
  6420. "files": [
  6421. ".nupkg.metadata",
  6422. ".signature.p7s",
  6423. "ThirdPartyNotices.txt",
  6424. "dotnet_library_license.txt",
  6425. "lib/MonoAndroid10/_._",
  6426. "lib/MonoTouch10/_._",
  6427. "lib/net46/System.Threading.Thread.dll",
  6428. "lib/netcore50/_._",
  6429. "lib/netstandard1.3/System.Threading.Thread.dll",
  6430. "lib/xamarinios10/_._",
  6431. "lib/xamarinmac20/_._",
  6432. "lib/xamarintvos10/_._",
  6433. "lib/xamarinwatchos10/_._",
  6434. "ref/MonoAndroid10/_._",
  6435. "ref/MonoTouch10/_._",
  6436. "ref/net46/System.Threading.Thread.dll",
  6437. "ref/netstandard1.3/System.Threading.Thread.dll",
  6438. "ref/netstandard1.3/System.Threading.Thread.xml",
  6439. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  6440. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  6441. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  6442. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  6443. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  6444. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  6445. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  6446. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  6447. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  6448. "ref/xamarinios10/_._",
  6449. "ref/xamarinmac20/_._",
  6450. "ref/xamarintvos10/_._",
  6451. "ref/xamarinwatchos10/_._",
  6452. "system.threading.thread.4.0.0.nupkg.sha512",
  6453. "system.threading.thread.nuspec"
  6454. ]
  6455. },
  6456. "System.Threading.ThreadPool/4.0.10": {
  6457. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  6458. "type": "package",
  6459. "path": "system.threading.threadpool/4.0.10",
  6460. "files": [
  6461. ".nupkg.metadata",
  6462. ".signature.p7s",
  6463. "ThirdPartyNotices.txt",
  6464. "dotnet_library_license.txt",
  6465. "lib/MonoAndroid10/_._",
  6466. "lib/MonoTouch10/_._",
  6467. "lib/net46/System.Threading.ThreadPool.dll",
  6468. "lib/netcore50/_._",
  6469. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  6470. "lib/xamarinios10/_._",
  6471. "lib/xamarinmac20/_._",
  6472. "lib/xamarintvos10/_._",
  6473. "lib/xamarinwatchos10/_._",
  6474. "ref/MonoAndroid10/_._",
  6475. "ref/MonoTouch10/_._",
  6476. "ref/net46/System.Threading.ThreadPool.dll",
  6477. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  6478. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  6479. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  6480. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  6481. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  6482. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  6483. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  6484. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  6485. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  6486. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  6487. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  6488. "ref/xamarinios10/_._",
  6489. "ref/xamarinmac20/_._",
  6490. "ref/xamarintvos10/_._",
  6491. "ref/xamarinwatchos10/_._",
  6492. "system.threading.threadpool.4.0.10.nupkg.sha512",
  6493. "system.threading.threadpool.nuspec"
  6494. ]
  6495. },
  6496. "System.Threading.Timer/4.0.1": {
  6497. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  6498. "type": "package",
  6499. "path": "system.threading.timer/4.0.1",
  6500. "files": [
  6501. ".nupkg.metadata",
  6502. "ThirdPartyNotices.txt",
  6503. "dotnet_library_license.txt",
  6504. "lib/MonoAndroid10/_._",
  6505. "lib/MonoTouch10/_._",
  6506. "lib/net451/_._",
  6507. "lib/portable-net451+win81+wpa81/_._",
  6508. "lib/win81/_._",
  6509. "lib/wpa81/_._",
  6510. "lib/xamarinios10/_._",
  6511. "lib/xamarinmac20/_._",
  6512. "lib/xamarintvos10/_._",
  6513. "lib/xamarinwatchos10/_._",
  6514. "ref/MonoAndroid10/_._",
  6515. "ref/MonoTouch10/_._",
  6516. "ref/net451/_._",
  6517. "ref/netcore50/System.Threading.Timer.dll",
  6518. "ref/netcore50/System.Threading.Timer.xml",
  6519. "ref/netcore50/de/System.Threading.Timer.xml",
  6520. "ref/netcore50/es/System.Threading.Timer.xml",
  6521. "ref/netcore50/fr/System.Threading.Timer.xml",
  6522. "ref/netcore50/it/System.Threading.Timer.xml",
  6523. "ref/netcore50/ja/System.Threading.Timer.xml",
  6524. "ref/netcore50/ko/System.Threading.Timer.xml",
  6525. "ref/netcore50/ru/System.Threading.Timer.xml",
  6526. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  6527. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  6528. "ref/netstandard1.2/System.Threading.Timer.dll",
  6529. "ref/netstandard1.2/System.Threading.Timer.xml",
  6530. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  6531. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  6532. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  6533. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  6534. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  6535. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  6536. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  6537. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  6538. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  6539. "ref/portable-net451+win81+wpa81/_._",
  6540. "ref/win81/_._",
  6541. "ref/wpa81/_._",
  6542. "ref/xamarinios10/_._",
  6543. "ref/xamarinmac20/_._",
  6544. "ref/xamarintvos10/_._",
  6545. "ref/xamarinwatchos10/_._",
  6546. "system.threading.timer.4.0.1.nupkg.sha512",
  6547. "system.threading.timer.nuspec"
  6548. ]
  6549. },
  6550. "System.Windows.Extensions/4.7.0": {
  6551. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  6552. "type": "package",
  6553. "path": "system.windows.extensions/4.7.0",
  6554. "files": [
  6555. ".nupkg.metadata",
  6556. ".signature.p7s",
  6557. "LICENSE.TXT",
  6558. "THIRD-PARTY-NOTICES.TXT",
  6559. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6560. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6561. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  6562. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  6563. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6564. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6565. "system.windows.extensions.4.7.0.nupkg.sha512",
  6566. "system.windows.extensions.nuspec",
  6567. "useSharedDesignerContext.txt",
  6568. "version.txt"
  6569. ]
  6570. },
  6571. "System.Xml.ReaderWriter/4.0.11": {
  6572. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  6573. "type": "package",
  6574. "path": "system.xml.readerwriter/4.0.11",
  6575. "files": [
  6576. ".nupkg.metadata",
  6577. "ThirdPartyNotices.txt",
  6578. "dotnet_library_license.txt",
  6579. "lib/MonoAndroid10/_._",
  6580. "lib/MonoTouch10/_._",
  6581. "lib/net45/_._",
  6582. "lib/netcore50/System.Xml.ReaderWriter.dll",
  6583. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  6584. "lib/portable-net45+win8+wp8+wpa81/_._",
  6585. "lib/win8/_._",
  6586. "lib/wp80/_._",
  6587. "lib/wpa81/_._",
  6588. "lib/xamarinios10/_._",
  6589. "lib/xamarinmac20/_._",
  6590. "lib/xamarintvos10/_._",
  6591. "lib/xamarinwatchos10/_._",
  6592. "ref/MonoAndroid10/_._",
  6593. "ref/MonoTouch10/_._",
  6594. "ref/net45/_._",
  6595. "ref/netcore50/System.Xml.ReaderWriter.dll",
  6596. "ref/netcore50/System.Xml.ReaderWriter.xml",
  6597. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  6598. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  6599. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  6600. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  6601. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  6602. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  6603. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  6604. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  6605. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  6606. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  6607. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  6608. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  6609. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  6610. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  6611. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  6612. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  6613. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  6614. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  6615. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  6616. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  6617. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  6618. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  6619. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  6620. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  6621. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  6622. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  6623. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  6624. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  6625. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  6626. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  6627. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  6628. "ref/portable-net45+win8+wp8+wpa81/_._",
  6629. "ref/win8/_._",
  6630. "ref/wp80/_._",
  6631. "ref/wpa81/_._",
  6632. "ref/xamarinios10/_._",
  6633. "ref/xamarinmac20/_._",
  6634. "ref/xamarintvos10/_._",
  6635. "ref/xamarinwatchos10/_._",
  6636. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  6637. "system.xml.readerwriter.nuspec"
  6638. ]
  6639. },
  6640. "System.Xml.XDocument/4.0.11": {
  6641. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  6642. "type": "package",
  6643. "path": "system.xml.xdocument/4.0.11",
  6644. "files": [
  6645. ".nupkg.metadata",
  6646. "ThirdPartyNotices.txt",
  6647. "dotnet_library_license.txt",
  6648. "lib/MonoAndroid10/_._",
  6649. "lib/MonoTouch10/_._",
  6650. "lib/net45/_._",
  6651. "lib/netcore50/System.Xml.XDocument.dll",
  6652. "lib/netstandard1.3/System.Xml.XDocument.dll",
  6653. "lib/portable-net45+win8+wp8+wpa81/_._",
  6654. "lib/win8/_._",
  6655. "lib/wp80/_._",
  6656. "lib/wpa81/_._",
  6657. "lib/xamarinios10/_._",
  6658. "lib/xamarinmac20/_._",
  6659. "lib/xamarintvos10/_._",
  6660. "lib/xamarinwatchos10/_._",
  6661. "ref/MonoAndroid10/_._",
  6662. "ref/MonoTouch10/_._",
  6663. "ref/net45/_._",
  6664. "ref/netcore50/System.Xml.XDocument.dll",
  6665. "ref/netcore50/System.Xml.XDocument.xml",
  6666. "ref/netcore50/de/System.Xml.XDocument.xml",
  6667. "ref/netcore50/es/System.Xml.XDocument.xml",
  6668. "ref/netcore50/fr/System.Xml.XDocument.xml",
  6669. "ref/netcore50/it/System.Xml.XDocument.xml",
  6670. "ref/netcore50/ja/System.Xml.XDocument.xml",
  6671. "ref/netcore50/ko/System.Xml.XDocument.xml",
  6672. "ref/netcore50/ru/System.Xml.XDocument.xml",
  6673. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  6674. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  6675. "ref/netstandard1.0/System.Xml.XDocument.dll",
  6676. "ref/netstandard1.0/System.Xml.XDocument.xml",
  6677. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  6678. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  6679. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  6680. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  6681. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  6682. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  6683. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  6684. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  6685. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  6686. "ref/netstandard1.3/System.Xml.XDocument.dll",
  6687. "ref/netstandard1.3/System.Xml.XDocument.xml",
  6688. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  6689. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  6690. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  6691. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  6692. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  6693. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  6694. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  6695. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  6696. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  6697. "ref/portable-net45+win8+wp8+wpa81/_._",
  6698. "ref/win8/_._",
  6699. "ref/wp80/_._",
  6700. "ref/wpa81/_._",
  6701. "ref/xamarinios10/_._",
  6702. "ref/xamarinmac20/_._",
  6703. "ref/xamarintvos10/_._",
  6704. "ref/xamarinwatchos10/_._",
  6705. "system.xml.xdocument.4.0.11.nupkg.sha512",
  6706. "system.xml.xdocument.nuspec"
  6707. ]
  6708. },
  6709. "System.Xml.XmlDocument/4.0.1": {
  6710. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  6711. "type": "package",
  6712. "path": "system.xml.xmldocument/4.0.1",
  6713. "files": [
  6714. ".nupkg.metadata",
  6715. ".signature.p7s",
  6716. "ThirdPartyNotices.txt",
  6717. "dotnet_library_license.txt",
  6718. "lib/MonoAndroid10/_._",
  6719. "lib/MonoTouch10/_._",
  6720. "lib/net46/System.Xml.XmlDocument.dll",
  6721. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  6722. "lib/xamarinios10/_._",
  6723. "lib/xamarinmac20/_._",
  6724. "lib/xamarintvos10/_._",
  6725. "lib/xamarinwatchos10/_._",
  6726. "ref/MonoAndroid10/_._",
  6727. "ref/MonoTouch10/_._",
  6728. "ref/net46/System.Xml.XmlDocument.dll",
  6729. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  6730. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  6731. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  6732. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  6733. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  6734. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  6735. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  6736. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  6737. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  6738. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  6739. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  6740. "ref/xamarinios10/_._",
  6741. "ref/xamarinmac20/_._",
  6742. "ref/xamarintvos10/_._",
  6743. "ref/xamarinwatchos10/_._",
  6744. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  6745. "system.xml.xmldocument.nuspec"
  6746. ]
  6747. },
  6748. "System.Xml.XPath/4.0.1": {
  6749. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  6750. "type": "package",
  6751. "path": "system.xml.xpath/4.0.1",
  6752. "files": [
  6753. ".nupkg.metadata",
  6754. ".signature.p7s",
  6755. "ThirdPartyNotices.txt",
  6756. "dotnet_library_license.txt",
  6757. "lib/MonoAndroid10/_._",
  6758. "lib/MonoTouch10/_._",
  6759. "lib/net46/System.Xml.XPath.dll",
  6760. "lib/netstandard1.3/System.Xml.XPath.dll",
  6761. "lib/xamarinios10/_._",
  6762. "lib/xamarinmac20/_._",
  6763. "lib/xamarintvos10/_._",
  6764. "lib/xamarinwatchos10/_._",
  6765. "ref/MonoAndroid10/_._",
  6766. "ref/MonoTouch10/_._",
  6767. "ref/net46/System.Xml.XPath.dll",
  6768. "ref/netstandard1.3/System.Xml.XPath.dll",
  6769. "ref/netstandard1.3/System.Xml.XPath.xml",
  6770. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  6771. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  6772. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  6773. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  6774. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  6775. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  6776. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  6777. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  6778. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  6779. "ref/xamarinios10/_._",
  6780. "ref/xamarinmac20/_._",
  6781. "ref/xamarintvos10/_._",
  6782. "ref/xamarinwatchos10/_._",
  6783. "system.xml.xpath.4.0.1.nupkg.sha512",
  6784. "system.xml.xpath.nuspec"
  6785. ]
  6786. },
  6787. "System.Xml.XPath.XmlDocument/4.0.1": {
  6788. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  6789. "type": "package",
  6790. "path": "system.xml.xpath.xmldocument/4.0.1",
  6791. "files": [
  6792. ".nupkg.metadata",
  6793. ".signature.p7s",
  6794. "ThirdPartyNotices.txt",
  6795. "dotnet_library_license.txt",
  6796. "lib/MonoAndroid10/_._",
  6797. "lib/MonoTouch10/_._",
  6798. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  6799. "lib/xamarinios10/_._",
  6800. "lib/xamarinmac20/_._",
  6801. "lib/xamarintvos10/_._",
  6802. "lib/xamarinwatchos10/_._",
  6803. "ref/MonoAndroid10/_._",
  6804. "ref/MonoTouch10/_._",
  6805. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  6806. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  6807. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  6808. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  6809. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  6810. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  6811. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  6812. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  6813. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  6814. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  6815. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  6816. "ref/xamarinios10/_._",
  6817. "ref/xamarinmac20/_._",
  6818. "ref/xamarintvos10/_._",
  6819. "ref/xamarinwatchos10/_._",
  6820. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  6821. "system.xml.xpath.xmldocument.nuspec"
  6822. ]
  6823. }
  6824. },
  6825. "projectFileDependencyGroups": {
  6826. ".NETCoreApp,Version=v3.1": [
  6827. "Microsoft.AspNet.Identity.EntityFramework >= 2.2.3",
  6828. "Microsoft.AspNetCore.Http.Abstractions >= 2.2.0",
  6829. "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 5.0.10",
  6830. "Microsoft.EntityFrameworkCore >= 5.0.10",
  6831. "Microsoft.Extensions.Configuration.Abstractions >= 6.0.0",
  6832. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  6833. "Pomelo.EntityFrameworkCore.MySql >= 5.0.0-alpha.2",
  6834. "System.Data.SqlClient >= 4.8.3"
  6835. ]
  6836. },
  6837. "packageFolders": {
  6838. "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\": {}
  6839. },
  6840. "project": {
  6841. "version": "1.0.0",
  6842. "restore": {
  6843. "projectUniqueName": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Data\\Backend.Data.csproj",
  6844. "projectName": "Backend.Data",
  6845. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Data\\Backend.Data.csproj",
  6846. "packagesPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\",
  6847. "outputPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Data\\obj\\",
  6848. "projectStyle": "PackageReference",
  6849. "configFilePaths": [
  6850. "C:\\Users\\Alex ONDOA BALEGNAMA\\AppData\\Roaming\\NuGet\\NuGet.Config",
  6851. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  6852. ],
  6853. "originalTargetFrameworks": [
  6854. "netcoreapp3.1"
  6855. ],
  6856. "sources": {
  6857. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  6858. "https://api.nuget.org/v3/index.json": {},
  6859. "https://packagesource": {}
  6860. },
  6861. "frameworks": {
  6862. "netcoreapp3.1": {
  6863. "targetAlias": "netcoreapp3.1",
  6864. "projectReferences": {}
  6865. }
  6866. },
  6867. "warningProperties": {
  6868. "warnAsError": [
  6869. "NU1605"
  6870. ]
  6871. }
  6872. },
  6873. "frameworks": {
  6874. "netcoreapp3.1": {
  6875. "targetAlias": "netcoreapp3.1",
  6876. "dependencies": {
  6877. "Microsoft.AspNet.Identity.EntityFramework": {
  6878. "target": "Package",
  6879. "version": "[2.2.3, )"
  6880. },
  6881. "Microsoft.AspNetCore.Http.Abstractions": {
  6882. "target": "Package",
  6883. "version": "[2.2.0, )"
  6884. },
  6885. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
  6886. "target": "Package",
  6887. "version": "[5.0.10, )"
  6888. },
  6889. "Microsoft.EntityFrameworkCore": {
  6890. "target": "Package",
  6891. "version": "[5.0.10, )"
  6892. },
  6893. "Microsoft.Extensions.Configuration.Abstractions": {
  6894. "target": "Package",
  6895. "version": "[6.0.0, )"
  6896. },
  6897. "MySql.Data.EntityFrameworkCore": {
  6898. "target": "Package",
  6899. "version": "[8.0.22, )"
  6900. },
  6901. "Pomelo.EntityFrameworkCore.MySql": {
  6902. "target": "Package",
  6903. "version": "[5.0.0-alpha.2, )"
  6904. },
  6905. "System.Data.SqlClient": {
  6906. "target": "Package",
  6907. "version": "[4.8.3, )"
  6908. }
  6909. },
  6910. "imports": [
  6911. "net461",
  6912. "net462",
  6913. "net47",
  6914. "net471",
  6915. "net472",
  6916. "net48"
  6917. ],
  6918. "assetTargetFallback": true,
  6919. "warn": true,
  6920. "frameworkReferences": {
  6921. "Microsoft.NETCore.App": {
  6922. "privateAssets": "all"
  6923. }
  6924. },
  6925. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json"
  6926. }
  6927. }
  6928. },
  6929. "logs": [
  6930. {
  6931. "code": "NU1701",
  6932. "level": "Warning",
  6933. "warningLevel": 1,
  6934. "message": "Le package 'EntityFramework 6.1.0' a été restauré en utilisant '.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' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  6935. "libraryId": "EntityFramework",
  6936. "targetGraphs": [
  6937. ".NETCoreApp,Version=v3.1"
  6938. ]
  6939. },
  6940. {
  6941. "code": "NU1701",
  6942. "level": "Warning",
  6943. "warningLevel": 1,
  6944. "message": "Le package 'Microsoft.AspNet.Identity.Core 2.2.3' a été restauré en utilisant '.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' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  6945. "libraryId": "Microsoft.AspNet.Identity.Core",
  6946. "targetGraphs": [
  6947. ".NETCoreApp,Version=v3.1"
  6948. ]
  6949. },
  6950. {
  6951. "code": "NU1701",
  6952. "level": "Warning",
  6953. "warningLevel": 1,
  6954. "message": "Le package 'Microsoft.AspNet.Identity.EntityFramework 2.2.3' a été restauré en utilisant '.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' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  6955. "libraryId": "Microsoft.AspNet.Identity.EntityFramework",
  6956. "targetGraphs": [
  6957. ".NETCoreApp,Version=v3.1"
  6958. ]
  6959. }
  6960. ]
  6961. }

Powered by TurnKey Linux.