No Description

project.assets.json 290KB

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

Powered by TurnKey Linux.