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 266KB

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