You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.assets.json 275KB

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