project.assets.json 390 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/12.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. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  18. "type": "package",
  19. "dependencies": {
  20. "AutoMapper": "[12.0.1]",
  21. "Microsoft.Extensions.Options": "6.0.0"
  22. },
  23. "compile": {
  24. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  25. },
  26. "runtime": {
  27. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  28. }
  29. },
  30. "BouncyCastle.NetCore/1.8.3": {
  31. "type": "package",
  32. "dependencies": {
  33. "NETStandard.Library": "1.6.0",
  34. "System.Reflection": "4.3.0",
  35. "System.Reflection.TypeExtensions": "4.1.0"
  36. },
  37. "compile": {
  38. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  39. },
  40. "runtime": {
  41. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  42. }
  43. },
  44. "Flurl/4.0.0": {
  45. "type": "package",
  46. "compile": {
  47. "lib/netstandard2.0/Flurl.dll": {}
  48. },
  49. "runtime": {
  50. "lib/netstandard2.0/Flurl.dll": {}
  51. }
  52. },
  53. "Flurl.Http/4.0.2": {
  54. "type": "package",
  55. "dependencies": {
  56. "Flurl": "4.0.0",
  57. "System.Text.Encoding.CodePages": "4.5.1",
  58. "System.Text.Json": "6.0.4"
  59. },
  60. "compile": {
  61. "lib/netstandard2.0/Flurl.Http.dll": {}
  62. },
  63. "runtime": {
  64. "lib/netstandard2.0/Flurl.Http.dll": {}
  65. }
  66. },
  67. "Google.Protobuf/3.11.4": {
  68. "type": "package",
  69. "dependencies": {
  70. "System.Memory": "4.5.2"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Google.Protobuf.dll": {}
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/Google.Protobuf.dll": {}
  77. }
  78. },
  79. "K4os.Compression.LZ4/1.1.11": {
  80. "type": "package",
  81. "dependencies": {
  82. "System.Memory": "4.5.3"
  83. },
  84. "compile": {
  85. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  86. },
  87. "runtime": {
  88. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  89. }
  90. },
  91. "K4os.Compression.LZ4.Streams/1.1.11": {
  92. "type": "package",
  93. "dependencies": {
  94. "K4os.Compression.LZ4": "1.1.11",
  95. "K4os.Hash.xxHash": "1.0.6"
  96. },
  97. "compile": {
  98. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  99. },
  100. "runtime": {
  101. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  102. }
  103. },
  104. "K4os.Hash.xxHash/1.0.6": {
  105. "type": "package",
  106. "dependencies": {
  107. "System.Memory": "4.5.3"
  108. },
  109. "compile": {
  110. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  111. },
  112. "runtime": {
  113. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  114. }
  115. },
  116. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  117. "type": "package",
  118. "compile": {
  119. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  120. },
  121. "runtime": {
  122. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  123. }
  124. },
  125. "Microsoft.Bcl.HashCode/1.1.0": {
  126. "type": "package",
  127. "compile": {
  128. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  129. },
  130. "runtime": {
  131. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  132. }
  133. },
  134. "Microsoft.CSharp/4.7.0": {
  135. "type": "package",
  136. "compile": {
  137. "ref/netcoreapp2.0/_._": {}
  138. },
  139. "runtime": {
  140. "lib/netcoreapp2.0/_._": {}
  141. }
  142. },
  143. "Microsoft.EntityFrameworkCore/3.1.1": {
  144. "type": "package",
  145. "dependencies": {
  146. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  147. "Microsoft.Bcl.HashCode": "1.1.0",
  148. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  149. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  150. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  151. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  152. "Microsoft.Extensions.Logging": "3.1.1",
  153. "System.Collections.Immutable": "1.7.0",
  154. "System.ComponentModel.Annotations": "4.7.0",
  155. "System.Diagnostics.DiagnosticSource": "4.7.0"
  156. },
  157. "compile": {
  158. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  159. },
  160. "runtime": {
  161. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  162. }
  163. },
  164. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  165. "type": "package",
  166. "compile": {
  167. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  168. },
  169. "runtime": {
  170. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  171. }
  172. },
  173. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  174. "type": "package",
  175. "compile": {
  176. "lib/netstandard2.0/_._": {}
  177. },
  178. "runtime": {
  179. "lib/netstandard2.0/_._": {}
  180. }
  181. },
  182. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  183. "type": "package",
  184. "dependencies": {
  185. "Microsoft.EntityFrameworkCore": "3.1.1"
  186. },
  187. "compile": {
  188. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  189. },
  190. "runtime": {
  191. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  192. }
  193. },
  194. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  195. "type": "package",
  196. "build": {
  197. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  198. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  199. },
  200. "buildMultiTargeting": {
  201. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  202. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  203. }
  204. },
  205. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  206. "type": "package",
  207. "dependencies": {
  208. "Microsoft.Extensions.Primitives": "3.1.1"
  209. },
  210. "compile": {
  211. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  212. },
  213. "runtime": {
  214. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  215. }
  216. },
  217. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  218. "type": "package",
  219. "dependencies": {
  220. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  221. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  222. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  223. "Microsoft.Extensions.Options": "3.1.1"
  224. },
  225. "compile": {
  226. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  227. },
  228. "runtime": {
  229. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  230. }
  231. },
  232. "Microsoft.Extensions.Configuration/8.0.0": {
  233. "type": "package",
  234. "dependencies": {
  235. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  236. "Microsoft.Extensions.Primitives": "8.0.0"
  237. },
  238. "compile": {
  239. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  240. },
  241. "runtime": {
  242. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  243. },
  244. "build": {
  245. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets": {}
  246. }
  247. },
  248. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  249. "type": "package",
  250. "dependencies": {
  251. "Microsoft.Extensions.Primitives": "8.0.0"
  252. },
  253. "compile": {
  254. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  255. },
  256. "runtime": {
  257. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  258. },
  259. "build": {
  260. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets": {}
  261. }
  262. },
  263. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  264. "type": "package",
  265. "dependencies": {
  266. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  267. },
  268. "compile": {
  269. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  270. },
  271. "runtime": {
  272. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  273. },
  274. "build": {
  275. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
  276. }
  277. },
  278. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  279. "type": "package",
  280. "dependencies": {
  281. "Microsoft.Extensions.Configuration": "8.0.0",
  282. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  283. },
  284. "compile": {
  285. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  286. },
  287. "runtime": {
  288. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  289. },
  290. "build": {
  291. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets": {}
  292. }
  293. },
  294. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  295. "type": "package",
  296. "dependencies": {
  297. "Microsoft.Extensions.Configuration": "8.0.0",
  298. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  299. },
  300. "compile": {
  301. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  302. },
  303. "runtime": {
  304. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  305. },
  306. "build": {
  307. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets": {}
  308. }
  309. },
  310. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  311. "type": "package",
  312. "dependencies": {
  313. "Microsoft.Extensions.Configuration": "8.0.0",
  314. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  315. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  316. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  317. "Microsoft.Extensions.Primitives": "8.0.0"
  318. },
  319. "compile": {
  320. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  321. },
  322. "runtime": {
  323. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  324. },
  325. "build": {
  326. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets": {}
  327. }
  328. },
  329. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.Extensions.Configuration": "8.0.0",
  333. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  334. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  335. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  336. "System.Text.Json": "8.0.0"
  337. },
  338. "compile": {
  339. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  340. },
  341. "runtime": {
  342. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  343. },
  344. "build": {
  345. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets": {}
  346. }
  347. },
  348. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  349. "type": "package",
  350. "dependencies": {
  351. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  352. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  353. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  354. "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
  355. },
  356. "compile": {
  357. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  358. },
  359. "runtime": {
  360. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  361. },
  362. "build": {
  363. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  364. }
  365. },
  366. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  367. "type": "package",
  368. "dependencies": {
  369. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  370. },
  371. "compile": {
  372. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  373. },
  374. "runtime": {
  375. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  376. },
  377. "build": {
  378. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  379. }
  380. },
  381. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  382. "type": "package",
  383. "compile": {
  384. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  385. },
  386. "runtime": {
  387. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  388. },
  389. "build": {
  390. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  391. }
  392. },
  393. "Microsoft.Extensions.DependencyModel/3.1.6": {
  394. "type": "package",
  395. "dependencies": {
  396. "System.Text.Json": "4.7.2"
  397. },
  398. "compile": {
  399. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  400. },
  401. "runtime": {
  402. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  403. }
  404. },
  405. "Microsoft.Extensions.Diagnostics/8.0.0": {
  406. "type": "package",
  407. "dependencies": {
  408. "Microsoft.Extensions.Configuration": "8.0.0",
  409. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  410. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  411. },
  412. "compile": {
  413. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {}
  414. },
  415. "runtime": {
  416. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {}
  417. },
  418. "build": {
  419. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets": {}
  420. }
  421. },
  422. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  423. "type": "package",
  424. "dependencies": {
  425. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  426. "Microsoft.Extensions.Options": "8.0.0",
  427. "System.Buffers": "4.5.1",
  428. "System.Diagnostics.DiagnosticSource": "8.0.0",
  429. "System.Memory": "4.5.5"
  430. },
  431. "compile": {
  432. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {}
  433. },
  434. "runtime": {
  435. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {}
  436. },
  437. "build": {
  438. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets": {}
  439. }
  440. },
  441. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  442. "type": "package",
  443. "dependencies": {
  444. "Microsoft.Extensions.Primitives": "8.0.0"
  445. },
  446. "compile": {
  447. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  448. },
  449. "runtime": {
  450. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  451. },
  452. "build": {
  453. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets": {}
  454. }
  455. },
  456. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  460. "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
  461. "Microsoft.Extensions.Primitives": "8.0.0"
  462. },
  463. "compile": {
  464. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  465. },
  466. "runtime": {
  467. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  468. },
  469. "build": {
  470. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets": {}
  471. }
  472. },
  473. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  474. "type": "package",
  475. "compile": {
  476. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  477. },
  478. "runtime": {
  479. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  480. },
  481. "build": {
  482. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets": {}
  483. }
  484. },
  485. "Microsoft.Extensions.Hosting/8.0.0": {
  486. "type": "package",
  487. "dependencies": {
  488. "Microsoft.Extensions.Configuration": "8.0.0",
  489. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  490. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  491. "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
  492. "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
  493. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  494. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  495. "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
  496. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  497. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  498. "Microsoft.Extensions.Diagnostics": "8.0.0",
  499. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  500. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  501. "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
  502. "Microsoft.Extensions.Logging": "8.0.0",
  503. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  504. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  505. "Microsoft.Extensions.Logging.Console": "8.0.0",
  506. "Microsoft.Extensions.Logging.Debug": "8.0.0",
  507. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  508. "Microsoft.Extensions.Logging.EventSource": "8.0.0",
  509. "Microsoft.Extensions.Options": "8.0.0"
  510. },
  511. "compile": {
  512. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  513. },
  514. "runtime": {
  515. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  516. },
  517. "build": {
  518. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets": {}
  519. }
  520. },
  521. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  522. "type": "package",
  523. "dependencies": {
  524. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  525. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  526. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  527. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  528. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  529. },
  530. "compile": {
  531. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  532. },
  533. "runtime": {
  534. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  535. },
  536. "build": {
  537. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets": {}
  538. }
  539. },
  540. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  541. "type": "package",
  542. "dependencies": {
  543. "Microsoft.Extensions.Hosting": "8.0.0",
  544. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  545. "System.ServiceProcess.ServiceController": "8.0.0"
  546. },
  547. "compile": {
  548. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  549. },
  550. "runtime": {
  551. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  552. },
  553. "build": {
  554. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets": {}
  555. }
  556. },
  557. "Microsoft.Extensions.Logging/8.0.0": {
  558. "type": "package",
  559. "dependencies": {
  560. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  561. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  562. "Microsoft.Extensions.Options": "8.0.0",
  563. "System.Diagnostics.DiagnosticSource": "8.0.0"
  564. },
  565. "compile": {
  566. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  567. },
  568. "runtime": {
  569. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  570. },
  571. "build": {
  572. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  573. }
  574. },
  575. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  576. "type": "package",
  577. "dependencies": {
  578. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  579. "System.Buffers": "4.5.1",
  580. "System.Memory": "4.5.5"
  581. },
  582. "compile": {
  583. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  584. },
  585. "runtime": {
  586. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  587. },
  588. "build": {
  589. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  590. }
  591. },
  592. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  593. "type": "package",
  594. "dependencies": {
  595. "Microsoft.Extensions.Configuration": "8.0.0",
  596. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  597. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  598. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  599. "Microsoft.Extensions.Logging": "8.0.0",
  600. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  601. "Microsoft.Extensions.Options": "8.0.0",
  602. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  603. },
  604. "compile": {
  605. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  606. },
  607. "runtime": {
  608. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  609. },
  610. "build": {
  611. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets": {}
  612. }
  613. },
  614. "Microsoft.Extensions.Logging.Console/8.0.0": {
  615. "type": "package",
  616. "dependencies": {
  617. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  618. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  619. "Microsoft.Extensions.Logging": "8.0.0",
  620. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  621. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  622. "Microsoft.Extensions.Options": "8.0.0",
  623. "System.Buffers": "4.5.1",
  624. "System.Text.Json": "8.0.0"
  625. },
  626. "compile": {
  627. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {}
  628. },
  629. "runtime": {
  630. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {}
  631. },
  632. "build": {
  633. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets": {}
  634. }
  635. },
  636. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  637. "type": "package",
  638. "dependencies": {
  639. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  640. "Microsoft.Extensions.Logging": "8.0.0",
  641. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  642. },
  643. "compile": {
  644. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  645. },
  646. "runtime": {
  647. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  648. },
  649. "build": {
  650. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets": {}
  651. }
  652. },
  653. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  654. "type": "package",
  655. "dependencies": {
  656. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  657. "Microsoft.Extensions.Logging": "8.0.0",
  658. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  659. "Microsoft.Extensions.Options": "8.0.0",
  660. "System.Diagnostics.EventLog": "8.0.0"
  661. },
  662. "compile": {
  663. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  664. },
  665. "runtime": {
  666. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  667. },
  668. "build": {
  669. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets": {}
  670. }
  671. },
  672. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  673. "type": "package",
  674. "dependencies": {
  675. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  676. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  677. "Microsoft.Extensions.Logging": "8.0.0",
  678. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  679. "Microsoft.Extensions.Options": "8.0.0",
  680. "Microsoft.Extensions.Primitives": "8.0.0",
  681. "System.Memory": "4.5.5",
  682. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  683. "System.Text.Json": "8.0.0"
  684. },
  685. "compile": {
  686. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  687. },
  688. "runtime": {
  689. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  690. },
  691. "build": {
  692. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets": {}
  693. }
  694. },
  695. "Microsoft.Extensions.Options/8.0.0": {
  696. "type": "package",
  697. "dependencies": {
  698. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  699. "Microsoft.Extensions.Primitives": "8.0.0",
  700. "System.ComponentModel.Annotations": "5.0.0"
  701. },
  702. "compile": {
  703. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
  704. },
  705. "runtime": {
  706. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
  707. },
  708. "build": {
  709. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  710. }
  711. },
  712. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  713. "type": "package",
  714. "dependencies": {
  715. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  716. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  717. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  718. "Microsoft.Extensions.Options": "8.0.0",
  719. "Microsoft.Extensions.Primitives": "8.0.0"
  720. },
  721. "compile": {
  722. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  723. },
  724. "runtime": {
  725. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  726. },
  727. "build": {
  728. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets": {}
  729. }
  730. },
  731. "Microsoft.Extensions.Primitives/8.0.0": {
  732. "type": "package",
  733. "dependencies": {
  734. "System.Memory": "4.5.5",
  735. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  736. },
  737. "compile": {
  738. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  739. },
  740. "runtime": {
  741. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  742. },
  743. "build": {
  744. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  745. }
  746. },
  747. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  748. "type": "package",
  749. "compile": {
  750. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {}
  751. },
  752. "runtime": {
  753. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {}
  754. }
  755. },
  756. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  757. "type": "package",
  758. "dependencies": {
  759. "Microsoft.IdentityModel.Tokens": "7.4.1",
  760. "System.Text.Encodings.Web": "4.7.2",
  761. "System.Text.Json": "4.7.2"
  762. },
  763. "compile": {
  764. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  765. },
  766. "runtime": {
  767. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  768. }
  769. },
  770. "Microsoft.IdentityModel.Logging/7.4.1": {
  771. "type": "package",
  772. "dependencies": {
  773. "Microsoft.IdentityModel.Abstractions": "7.4.1"
  774. },
  775. "compile": {
  776. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  777. },
  778. "runtime": {
  779. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  780. }
  781. },
  782. "Microsoft.IdentityModel.Tokens/7.4.1": {
  783. "type": "package",
  784. "dependencies": {
  785. "Microsoft.CSharp": "4.5.0",
  786. "Microsoft.IdentityModel.Logging": "7.4.1",
  787. "System.Security.Cryptography.Cng": "4.5.0",
  788. "System.Text.Encodings.Web": "4.7.2",
  789. "System.Text.Json": "4.7.2"
  790. },
  791. "compile": {
  792. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  793. },
  794. "runtime": {
  795. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  796. }
  797. },
  798. "Microsoft.NETCore.Platforms/2.1.2": {
  799. "type": "package",
  800. "compile": {
  801. "lib/netstandard1.0/_._": {}
  802. },
  803. "runtime": {
  804. "lib/netstandard1.0/_._": {}
  805. }
  806. },
  807. "Microsoft.NETCore.Targets/3.0.0": {
  808. "type": "package",
  809. "compile": {
  810. "lib/netstandard1.0/_._": {}
  811. },
  812. "runtime": {
  813. "lib/netstandard1.0/_._": {}
  814. }
  815. },
  816. "Microsoft.OpenApi/1.3.1": {
  817. "type": "package",
  818. "compile": {
  819. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  820. },
  821. "runtime": {
  822. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  823. }
  824. },
  825. "Microsoft.Win32.Primitives/4.0.1": {
  826. "type": "package",
  827. "dependencies": {
  828. "Microsoft.NETCore.Platforms": "1.0.1",
  829. "Microsoft.NETCore.Targets": "1.0.1",
  830. "System.Runtime": "4.1.0"
  831. },
  832. "compile": {
  833. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  834. }
  835. },
  836. "Microsoft.Win32.SystemEvents/6.0.0": {
  837. "type": "package",
  838. "compile": {
  839. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {}
  840. },
  841. "runtime": {
  842. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {}
  843. },
  844. "build": {
  845. "buildTransitive/netcoreapp3.1/_._": {}
  846. },
  847. "runtimeTargets": {
  848. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  849. "assetType": "runtime",
  850. "rid": "win"
  851. }
  852. }
  853. },
  854. "MySql.Data/8.0.22": {
  855. "type": "package",
  856. "dependencies": {
  857. "BouncyCastle.NetCore": "1.8.3",
  858. "Google.Protobuf": "3.11.4",
  859. "K4os.Compression.LZ4": "1.1.11",
  860. "K4os.Compression.LZ4.Streams": "1.1.11",
  861. "K4os.Hash.xxHash": "1.0.6",
  862. "SSH.NET": "2016.1.0",
  863. "System.Buffers": "4.5.1",
  864. "System.Configuration.ConfigurationManager": "4.4.1",
  865. "System.Security.Permissions": "4.7.0",
  866. "System.Text.Encoding.CodePages": "4.4.0"
  867. },
  868. "compile": {
  869. "lib/netstandard2.1/MySql.Data.dll": {},
  870. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  871. "lib/netstandard2.1/Zstandard.Net.dll": {}
  872. },
  873. "runtime": {
  874. "lib/netstandard2.1/MySql.Data.dll": {},
  875. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  876. "lib/netstandard2.1/Zstandard.Net.dll": {}
  877. }
  878. },
  879. "MySql.Data.EntityFrameworkCore/8.0.22": {
  880. "type": "package",
  881. "dependencies": {
  882. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  883. "MySql.Data": "8.0.22"
  884. },
  885. "compile": {
  886. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  887. },
  888. "runtime": {
  889. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  890. }
  891. },
  892. "NETStandard.Library/1.6.0": {
  893. "type": "package",
  894. "dependencies": {
  895. "Microsoft.NETCore.Platforms": "1.0.1",
  896. "Microsoft.Win32.Primitives": "4.0.1",
  897. "System.AppContext": "4.1.0",
  898. "System.Collections": "4.0.11",
  899. "System.Collections.Concurrent": "4.0.12",
  900. "System.Console": "4.0.0",
  901. "System.Diagnostics.Debug": "4.0.11",
  902. "System.Diagnostics.Tools": "4.0.1",
  903. "System.Diagnostics.Tracing": "4.1.0",
  904. "System.Globalization": "4.0.11",
  905. "System.Globalization.Calendars": "4.0.1",
  906. "System.IO": "4.1.0",
  907. "System.IO.Compression": "4.1.0",
  908. "System.IO.Compression.ZipFile": "4.0.1",
  909. "System.IO.FileSystem": "4.0.1",
  910. "System.IO.FileSystem.Primitives": "4.0.1",
  911. "System.Linq": "4.1.0",
  912. "System.Linq.Expressions": "4.1.0",
  913. "System.Net.Http": "4.1.0",
  914. "System.Net.Primitives": "4.0.11",
  915. "System.Net.Sockets": "4.1.0",
  916. "System.ObjectModel": "4.0.12",
  917. "System.Reflection": "4.1.0",
  918. "System.Reflection.Extensions": "4.0.1",
  919. "System.Reflection.Primitives": "4.0.1",
  920. "System.Resources.ResourceManager": "4.0.1",
  921. "System.Runtime": "4.1.0",
  922. "System.Runtime.Extensions": "4.1.0",
  923. "System.Runtime.Handles": "4.0.1",
  924. "System.Runtime.InteropServices": "4.1.0",
  925. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  926. "System.Runtime.Numerics": "4.0.1",
  927. "System.Security.Cryptography.Algorithms": "4.2.0",
  928. "System.Security.Cryptography.Encoding": "4.0.0",
  929. "System.Security.Cryptography.Primitives": "4.0.0",
  930. "System.Security.Cryptography.X509Certificates": "4.1.0",
  931. "System.Text.Encoding": "4.0.11",
  932. "System.Text.Encoding.Extensions": "4.0.11",
  933. "System.Text.RegularExpressions": "4.1.0",
  934. "System.Threading": "4.0.11",
  935. "System.Threading.Tasks": "4.0.11",
  936. "System.Threading.Timer": "4.0.1",
  937. "System.Xml.ReaderWriter": "4.0.11",
  938. "System.Xml.XDocument": "4.0.11"
  939. }
  940. },
  941. "Newtonsoft.Json/13.0.3": {
  942. "type": "package",
  943. "compile": {
  944. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  945. },
  946. "runtime": {
  947. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  948. }
  949. },
  950. "NLog/5.2.8": {
  951. "type": "package",
  952. "compile": {
  953. "lib/netstandard2.0/NLog.dll": {}
  954. },
  955. "runtime": {
  956. "lib/netstandard2.0/NLog.dll": {}
  957. }
  958. },
  959. "NLog.Extensions.Logging/5.3.8": {
  960. "type": "package",
  961. "dependencies": {
  962. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  963. "Microsoft.Extensions.Logging": "3.1.0",
  964. "NLog": "5.2.8"
  965. },
  966. "compile": {
  967. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {}
  968. },
  969. "runtime": {
  970. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {}
  971. }
  972. },
  973. "NLog.Web.AspNetCore/5.3.8": {
  974. "type": "package",
  975. "dependencies": {
  976. "NLog.Extensions.Logging": "5.3.8"
  977. },
  978. "compile": {
  979. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {}
  980. },
  981. "runtime": {
  982. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {}
  983. },
  984. "frameworkReferences": [
  985. "Microsoft.AspNetCore.App"
  986. ]
  987. },
  988. "Pipelines.Sockets.Unofficial/2.2.8": {
  989. "type": "package",
  990. "dependencies": {
  991. "System.IO.Pipelines": "5.0.1"
  992. },
  993. "compile": {
  994. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  995. },
  996. "runtime": {
  997. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  998. }
  999. },
  1000. "Quartz/3.8.1": {
  1001. "type": "package",
  1002. "dependencies": {
  1003. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1004. "System.Configuration.ConfigurationManager": "6.0.1",
  1005. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1006. },
  1007. "compile": {
  1008. "lib/netstandard2.0/Quartz.dll": {}
  1009. },
  1010. "runtime": {
  1011. "lib/netstandard2.0/Quartz.dll": {}
  1012. }
  1013. },
  1014. "runtime.native.System/4.0.0": {
  1015. "type": "package",
  1016. "dependencies": {
  1017. "Microsoft.NETCore.Platforms": "1.0.1",
  1018. "Microsoft.NETCore.Targets": "1.0.1"
  1019. },
  1020. "compile": {
  1021. "lib/netstandard1.0/_._": {}
  1022. },
  1023. "runtime": {
  1024. "lib/netstandard1.0/_._": {}
  1025. }
  1026. },
  1027. "runtime.native.System.IO.Compression/4.1.0": {
  1028. "type": "package",
  1029. "dependencies": {
  1030. "Microsoft.NETCore.Platforms": "1.0.1",
  1031. "Microsoft.NETCore.Targets": "1.0.1"
  1032. },
  1033. "compile": {
  1034. "lib/netstandard1.0/_._": {}
  1035. },
  1036. "runtime": {
  1037. "lib/netstandard1.0/_._": {}
  1038. }
  1039. },
  1040. "runtime.native.System.Net.Http/4.0.1": {
  1041. "type": "package",
  1042. "dependencies": {
  1043. "Microsoft.NETCore.Platforms": "1.0.1",
  1044. "Microsoft.NETCore.Targets": "1.0.1"
  1045. },
  1046. "compile": {
  1047. "lib/netstandard1.0/_._": {}
  1048. },
  1049. "runtime": {
  1050. "lib/netstandard1.0/_._": {}
  1051. }
  1052. },
  1053. "runtime.native.System.Security.Cryptography/4.0.0": {
  1054. "type": "package",
  1055. "dependencies": {
  1056. "Microsoft.NETCore.Platforms": "1.0.1",
  1057. "Microsoft.NETCore.Targets": "1.0.1"
  1058. },
  1059. "compile": {
  1060. "lib/netstandard1.0/_._": {}
  1061. },
  1062. "runtime": {
  1063. "lib/netstandard1.0/_._": {}
  1064. }
  1065. },
  1066. "Scrutor/3.3.0": {
  1067. "type": "package",
  1068. "dependencies": {
  1069. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  1070. "Microsoft.Extensions.DependencyModel": "3.1.6"
  1071. },
  1072. "compile": {
  1073. "lib/netcoreapp3.1/Scrutor.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/netcoreapp3.1/Scrutor.dll": {}
  1077. }
  1078. },
  1079. "SSH.NET/2016.1.0": {
  1080. "type": "package",
  1081. "dependencies": {
  1082. "Microsoft.CSharp": "4.0.1",
  1083. "SshNet.Security.Cryptography": "[1.2.0]",
  1084. "System.Diagnostics.Debug": "4.0.11",
  1085. "System.Diagnostics.Tools": "4.0.1",
  1086. "System.Diagnostics.TraceSource": "4.0.0",
  1087. "System.Globalization": "4.0.11",
  1088. "System.IO": "4.1.0",
  1089. "System.IO.FileSystem": "4.0.1",
  1090. "System.IO.FileSystem.Primitives": "4.0.1",
  1091. "System.Linq": "4.1.0",
  1092. "System.Net.NameResolution": "4.0.0",
  1093. "System.Net.Sockets": "4.1.0",
  1094. "System.Reflection.Extensions": "4.0.1",
  1095. "System.Runtime.Extensions": "4.1.0",
  1096. "System.Security.Cryptography.Algorithms": "4.2.0",
  1097. "System.Text.RegularExpressions": "4.1.0",
  1098. "System.Threading": "4.0.11",
  1099. "System.Threading.Thread": "4.0.0",
  1100. "System.Threading.ThreadPool": "4.0.10",
  1101. "System.Threading.Timer": "4.0.1",
  1102. "System.Xml.XPath.XmlDocument": "4.0.1",
  1103. "System.Xml.XmlDocument": "4.0.1"
  1104. },
  1105. "compile": {
  1106. "lib/netstandard1.3/Renci.SshNet.dll": {}
  1107. },
  1108. "runtime": {
  1109. "lib/netstandard1.3/Renci.SshNet.dll": {}
  1110. }
  1111. },
  1112. "SshNet.Security.Cryptography/1.2.0": {
  1113. "type": "package",
  1114. "dependencies": {
  1115. "System.IO": "4.1.0",
  1116. "System.Security.Cryptography.Primitives": "4.0.0"
  1117. },
  1118. "compile": {
  1119. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  1123. }
  1124. },
  1125. "StackExchange.Redis/2.7.33": {
  1126. "type": "package",
  1127. "dependencies": {
  1128. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1129. "Pipelines.Sockets.Unofficial": "2.2.8"
  1130. },
  1131. "compile": {
  1132. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1133. },
  1134. "runtime": {
  1135. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1136. }
  1137. },
  1138. "Swashbuckle.AspNetCore/6.5.0": {
  1139. "type": "package",
  1140. "dependencies": {
  1141. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1142. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  1143. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  1144. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  1145. },
  1146. "build": {
  1147. "build/Swashbuckle.AspNetCore.props": {}
  1148. }
  1149. },
  1150. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  1151. "type": "package",
  1152. "dependencies": {
  1153. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1154. "Microsoft.OpenApi": "1.3.1",
  1155. "Scrutor": "3.3.0",
  1156. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.1",
  1157. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1158. },
  1159. "compile": {
  1160. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1161. },
  1162. "runtime": {
  1163. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1164. }
  1165. },
  1166. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  1167. "type": "package",
  1168. "compile": {
  1169. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1170. },
  1171. "runtime": {
  1172. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1173. }
  1174. },
  1175. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.OpenApi": "1.2.3"
  1179. },
  1180. "compile": {
  1181. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1182. },
  1183. "runtime": {
  1184. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1185. },
  1186. "frameworkReferences": [
  1187. "Microsoft.AspNetCore.App"
  1188. ]
  1189. },
  1190. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  1191. "type": "package",
  1192. "dependencies": {
  1193. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  1194. },
  1195. "compile": {
  1196. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1197. },
  1198. "runtime": {
  1199. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1200. }
  1201. },
  1202. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  1203. "type": "package",
  1204. "compile": {
  1205. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1206. },
  1207. "runtime": {
  1208. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1209. },
  1210. "frameworkReferences": [
  1211. "Microsoft.AspNetCore.App"
  1212. ]
  1213. },
  1214. "System.AppContext/4.1.0": {
  1215. "type": "package",
  1216. "dependencies": {
  1217. "System.Runtime": "4.1.0"
  1218. },
  1219. "compile": {
  1220. "ref/netstandard1.6/System.AppContext.dll": {}
  1221. },
  1222. "runtime": {
  1223. "lib/netstandard1.6/System.AppContext.dll": {}
  1224. }
  1225. },
  1226. "System.Buffers/4.5.1": {
  1227. "type": "package",
  1228. "compile": {
  1229. "ref/netcoreapp2.0/_._": {}
  1230. },
  1231. "runtime": {
  1232. "lib/netcoreapp2.0/_._": {}
  1233. }
  1234. },
  1235. "System.Collections/4.0.11": {
  1236. "type": "package",
  1237. "dependencies": {
  1238. "Microsoft.NETCore.Platforms": "1.0.1",
  1239. "Microsoft.NETCore.Targets": "1.0.1",
  1240. "System.Runtime": "4.1.0"
  1241. },
  1242. "compile": {
  1243. "ref/netstandard1.3/System.Collections.dll": {}
  1244. }
  1245. },
  1246. "System.Collections.Concurrent/4.0.12": {
  1247. "type": "package",
  1248. "dependencies": {
  1249. "System.Collections": "4.0.11",
  1250. "System.Diagnostics.Debug": "4.0.11",
  1251. "System.Diagnostics.Tracing": "4.1.0",
  1252. "System.Globalization": "4.0.11",
  1253. "System.Reflection": "4.1.0",
  1254. "System.Resources.ResourceManager": "4.0.1",
  1255. "System.Runtime": "4.1.0",
  1256. "System.Runtime.Extensions": "4.1.0",
  1257. "System.Threading": "4.0.11",
  1258. "System.Threading.Tasks": "4.0.11"
  1259. },
  1260. "compile": {
  1261. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1262. },
  1263. "runtime": {
  1264. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1265. }
  1266. },
  1267. "System.Collections.Immutable/1.7.0": {
  1268. "type": "package",
  1269. "compile": {
  1270. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1271. },
  1272. "runtime": {
  1273. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1274. }
  1275. },
  1276. "System.ComponentModel.Annotations/5.0.0": {
  1277. "type": "package",
  1278. "compile": {
  1279. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1280. },
  1281. "runtime": {
  1282. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1283. }
  1284. },
  1285. "System.Configuration.ConfigurationManager/6.0.1": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1289. "System.Security.Permissions": "6.0.0"
  1290. },
  1291. "compile": {
  1292. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1296. },
  1297. "build": {
  1298. "buildTransitive/netcoreapp3.1/_._": {}
  1299. }
  1300. },
  1301. "System.Console/4.0.0": {
  1302. "type": "package",
  1303. "dependencies": {
  1304. "Microsoft.NETCore.Platforms": "1.0.1",
  1305. "Microsoft.NETCore.Targets": "1.0.1",
  1306. "System.IO": "4.1.0",
  1307. "System.Runtime": "4.1.0",
  1308. "System.Text.Encoding": "4.0.11"
  1309. },
  1310. "compile": {
  1311. "ref/netstandard1.3/System.Console.dll": {}
  1312. }
  1313. },
  1314. "System.Diagnostics.Debug/4.0.11": {
  1315. "type": "package",
  1316. "dependencies": {
  1317. "Microsoft.NETCore.Platforms": "1.0.1",
  1318. "Microsoft.NETCore.Targets": "1.0.1",
  1319. "System.Runtime": "4.1.0"
  1320. },
  1321. "compile": {
  1322. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1323. }
  1324. },
  1325. "System.Diagnostics.DiagnosticSource/8.0.0": {
  1326. "type": "package",
  1327. "dependencies": {
  1328. "System.Memory": "4.5.5",
  1329. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1330. },
  1331. "compile": {
  1332. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
  1333. },
  1334. "runtime": {
  1335. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
  1336. },
  1337. "build": {
  1338. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  1339. }
  1340. },
  1341. "System.Diagnostics.EventLog/8.0.0": {
  1342. "type": "package",
  1343. "dependencies": {
  1344. "System.Security.Principal.Windows": "5.0.0"
  1345. },
  1346. "compile": {
  1347. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1348. },
  1349. "runtime": {
  1350. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1351. },
  1352. "build": {
  1353. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets": {}
  1354. }
  1355. },
  1356. "System.Diagnostics.Tools/4.0.1": {
  1357. "type": "package",
  1358. "dependencies": {
  1359. "Microsoft.NETCore.Platforms": "1.0.1",
  1360. "Microsoft.NETCore.Targets": "1.0.1",
  1361. "System.Runtime": "4.1.0"
  1362. },
  1363. "compile": {
  1364. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1365. }
  1366. },
  1367. "System.Diagnostics.TraceSource/4.0.0": {
  1368. "type": "package",
  1369. "dependencies": {
  1370. "Microsoft.NETCore.Platforms": "1.0.1",
  1371. "System.Collections": "4.0.11",
  1372. "System.Diagnostics.Debug": "4.0.11",
  1373. "System.Globalization": "4.0.11",
  1374. "System.Resources.ResourceManager": "4.0.1",
  1375. "System.Runtime": "4.1.0",
  1376. "System.Runtime.Extensions": "4.1.0",
  1377. "System.Threading": "4.0.11",
  1378. "runtime.native.System": "4.0.0"
  1379. },
  1380. "compile": {
  1381. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1382. },
  1383. "runtimeTargets": {
  1384. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1385. "assetType": "runtime",
  1386. "rid": "unix"
  1387. },
  1388. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1389. "assetType": "runtime",
  1390. "rid": "win"
  1391. }
  1392. }
  1393. },
  1394. "System.Diagnostics.Tracing/4.1.0": {
  1395. "type": "package",
  1396. "dependencies": {
  1397. "Microsoft.NETCore.Platforms": "1.0.1",
  1398. "Microsoft.NETCore.Targets": "1.0.1",
  1399. "System.Runtime": "4.1.0"
  1400. },
  1401. "compile": {
  1402. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1403. }
  1404. },
  1405. "System.Drawing.Common/6.0.0": {
  1406. "type": "package",
  1407. "dependencies": {
  1408. "Microsoft.Win32.SystemEvents": "6.0.0"
  1409. },
  1410. "compile": {
  1411. "lib/netcoreapp3.1/System.Drawing.Common.dll": {}
  1412. },
  1413. "runtime": {
  1414. "lib/netcoreapp3.1/System.Drawing.Common.dll": {}
  1415. },
  1416. "build": {
  1417. "buildTransitive/netcoreapp3.1/_._": {}
  1418. },
  1419. "runtimeTargets": {
  1420. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1421. "assetType": "runtime",
  1422. "rid": "unix"
  1423. },
  1424. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1425. "assetType": "runtime",
  1426. "rid": "win"
  1427. }
  1428. }
  1429. },
  1430. "System.Globalization/4.0.11": {
  1431. "type": "package",
  1432. "dependencies": {
  1433. "Microsoft.NETCore.Platforms": "1.0.1",
  1434. "Microsoft.NETCore.Targets": "1.0.1",
  1435. "System.Runtime": "4.1.0"
  1436. },
  1437. "compile": {
  1438. "ref/netstandard1.3/System.Globalization.dll": {}
  1439. }
  1440. },
  1441. "System.Globalization.Calendars/4.0.1": {
  1442. "type": "package",
  1443. "dependencies": {
  1444. "Microsoft.NETCore.Platforms": "1.0.1",
  1445. "Microsoft.NETCore.Targets": "1.0.1",
  1446. "System.Globalization": "4.0.11",
  1447. "System.Runtime": "4.1.0"
  1448. },
  1449. "compile": {
  1450. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1451. }
  1452. },
  1453. "System.Globalization.Extensions/4.0.1": {
  1454. "type": "package",
  1455. "dependencies": {
  1456. "Microsoft.NETCore.Platforms": "1.0.1",
  1457. "System.Globalization": "4.0.11",
  1458. "System.Resources.ResourceManager": "4.0.1",
  1459. "System.Runtime": "4.1.0",
  1460. "System.Runtime.Extensions": "4.1.0",
  1461. "System.Runtime.InteropServices": "4.1.0"
  1462. },
  1463. "compile": {
  1464. "ref/netstandard1.3/_._": {}
  1465. },
  1466. "runtimeTargets": {
  1467. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1468. "assetType": "runtime",
  1469. "rid": "unix"
  1470. },
  1471. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1472. "assetType": "runtime",
  1473. "rid": "win"
  1474. }
  1475. }
  1476. },
  1477. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  1478. "type": "package",
  1479. "dependencies": {
  1480. "Microsoft.IdentityModel.JsonWebTokens": "7.4.1",
  1481. "Microsoft.IdentityModel.Tokens": "7.4.1"
  1482. },
  1483. "compile": {
  1484. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1485. },
  1486. "runtime": {
  1487. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1488. }
  1489. },
  1490. "System.IO/4.3.0": {
  1491. "type": "package",
  1492. "dependencies": {
  1493. "Microsoft.NETCore.Platforms": "1.1.0",
  1494. "Microsoft.NETCore.Targets": "1.1.0",
  1495. "System.Runtime": "4.3.0",
  1496. "System.Text.Encoding": "4.3.0",
  1497. "System.Threading.Tasks": "4.3.0"
  1498. },
  1499. "compile": {
  1500. "ref/netstandard1.5/System.IO.dll": {}
  1501. }
  1502. },
  1503. "System.IO.Compression/4.1.0": {
  1504. "type": "package",
  1505. "dependencies": {
  1506. "Microsoft.NETCore.Platforms": "1.0.1",
  1507. "System.Collections": "4.0.11",
  1508. "System.Diagnostics.Debug": "4.0.11",
  1509. "System.IO": "4.1.0",
  1510. "System.Resources.ResourceManager": "4.0.1",
  1511. "System.Runtime": "4.1.0",
  1512. "System.Runtime.Extensions": "4.1.0",
  1513. "System.Runtime.Handles": "4.0.1",
  1514. "System.Runtime.InteropServices": "4.1.0",
  1515. "System.Text.Encoding": "4.0.11",
  1516. "System.Threading": "4.0.11",
  1517. "System.Threading.Tasks": "4.0.11",
  1518. "runtime.native.System": "4.0.0",
  1519. "runtime.native.System.IO.Compression": "4.1.0"
  1520. },
  1521. "compile": {
  1522. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1523. },
  1524. "runtimeTargets": {
  1525. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1526. "assetType": "runtime",
  1527. "rid": "unix"
  1528. },
  1529. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1530. "assetType": "runtime",
  1531. "rid": "win"
  1532. }
  1533. }
  1534. },
  1535. "System.IO.Compression.ZipFile/4.0.1": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "System.Buffers": "4.0.0",
  1539. "System.IO": "4.1.0",
  1540. "System.IO.Compression": "4.1.0",
  1541. "System.IO.FileSystem": "4.0.1",
  1542. "System.IO.FileSystem.Primitives": "4.0.1",
  1543. "System.Resources.ResourceManager": "4.0.1",
  1544. "System.Runtime": "4.1.0",
  1545. "System.Runtime.Extensions": "4.1.0",
  1546. "System.Text.Encoding": "4.0.11"
  1547. },
  1548. "compile": {
  1549. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1550. },
  1551. "runtime": {
  1552. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1553. }
  1554. },
  1555. "System.IO.FileSystem/4.0.1": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "Microsoft.NETCore.Platforms": "1.0.1",
  1559. "Microsoft.NETCore.Targets": "1.0.1",
  1560. "System.IO": "4.1.0",
  1561. "System.IO.FileSystem.Primitives": "4.0.1",
  1562. "System.Runtime": "4.1.0",
  1563. "System.Runtime.Handles": "4.0.1",
  1564. "System.Text.Encoding": "4.0.11",
  1565. "System.Threading.Tasks": "4.0.11"
  1566. },
  1567. "compile": {
  1568. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1569. }
  1570. },
  1571. "System.IO.FileSystem.Primitives/4.0.1": {
  1572. "type": "package",
  1573. "dependencies": {
  1574. "System.Runtime": "4.1.0"
  1575. },
  1576. "compile": {
  1577. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1578. },
  1579. "runtime": {
  1580. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1581. }
  1582. },
  1583. "System.IO.Pipelines/5.0.1": {
  1584. "type": "package",
  1585. "compile": {
  1586. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {}
  1587. },
  1588. "runtime": {
  1589. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {}
  1590. }
  1591. },
  1592. "System.Linq/4.1.0": {
  1593. "type": "package",
  1594. "dependencies": {
  1595. "System.Collections": "4.0.11",
  1596. "System.Diagnostics.Debug": "4.0.11",
  1597. "System.Resources.ResourceManager": "4.0.1",
  1598. "System.Runtime": "4.1.0",
  1599. "System.Runtime.Extensions": "4.1.0"
  1600. },
  1601. "compile": {
  1602. "ref/netstandard1.6/System.Linq.dll": {}
  1603. },
  1604. "runtime": {
  1605. "lib/netstandard1.6/System.Linq.dll": {}
  1606. }
  1607. },
  1608. "System.Linq.Expressions/4.1.0": {
  1609. "type": "package",
  1610. "dependencies": {
  1611. "System.Collections": "4.0.11",
  1612. "System.Diagnostics.Debug": "4.0.11",
  1613. "System.Globalization": "4.0.11",
  1614. "System.IO": "4.1.0",
  1615. "System.Linq": "4.1.0",
  1616. "System.ObjectModel": "4.0.12",
  1617. "System.Reflection": "4.1.0",
  1618. "System.Reflection.Emit": "4.0.1",
  1619. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1620. "System.Reflection.Emit.Lightweight": "4.0.1",
  1621. "System.Reflection.Extensions": "4.0.1",
  1622. "System.Reflection.Primitives": "4.0.1",
  1623. "System.Reflection.TypeExtensions": "4.1.0",
  1624. "System.Resources.ResourceManager": "4.0.1",
  1625. "System.Runtime": "4.1.0",
  1626. "System.Runtime.Extensions": "4.1.0",
  1627. "System.Threading": "4.0.11"
  1628. },
  1629. "compile": {
  1630. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1631. },
  1632. "runtime": {
  1633. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1634. }
  1635. },
  1636. "System.Memory/4.5.5": {
  1637. "type": "package",
  1638. "compile": {
  1639. "ref/netcoreapp2.1/_._": {}
  1640. },
  1641. "runtime": {
  1642. "lib/netcoreapp2.1/_._": {}
  1643. }
  1644. },
  1645. "System.Net.Http/4.1.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "Microsoft.NETCore.Platforms": "1.0.1",
  1649. "System.Collections": "4.0.11",
  1650. "System.Diagnostics.Debug": "4.0.11",
  1651. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1652. "System.Diagnostics.Tracing": "4.1.0",
  1653. "System.Globalization": "4.0.11",
  1654. "System.Globalization.Extensions": "4.0.1",
  1655. "System.IO": "4.1.0",
  1656. "System.IO.FileSystem": "4.0.1",
  1657. "System.Net.Primitives": "4.0.11",
  1658. "System.Resources.ResourceManager": "4.0.1",
  1659. "System.Runtime": "4.1.0",
  1660. "System.Runtime.Extensions": "4.1.0",
  1661. "System.Runtime.Handles": "4.0.1",
  1662. "System.Runtime.InteropServices": "4.1.0",
  1663. "System.Security.Cryptography.Algorithms": "4.2.0",
  1664. "System.Security.Cryptography.Encoding": "4.0.0",
  1665. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1666. "System.Security.Cryptography.Primitives": "4.0.0",
  1667. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1668. "System.Text.Encoding": "4.0.11",
  1669. "System.Threading": "4.0.11",
  1670. "System.Threading.Tasks": "4.0.11",
  1671. "runtime.native.System": "4.0.0",
  1672. "runtime.native.System.Net.Http": "4.0.1",
  1673. "runtime.native.System.Security.Cryptography": "4.0.0"
  1674. },
  1675. "compile": {
  1676. "ref/netstandard1.3/System.Net.Http.dll": {}
  1677. },
  1678. "runtimeTargets": {
  1679. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1680. "assetType": "runtime",
  1681. "rid": "unix"
  1682. },
  1683. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1684. "assetType": "runtime",
  1685. "rid": "win"
  1686. }
  1687. }
  1688. },
  1689. "System.Net.NameResolution/4.0.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "Microsoft.NETCore.Platforms": "1.0.1",
  1693. "System.Collections": "4.0.11",
  1694. "System.Diagnostics.Tracing": "4.1.0",
  1695. "System.Globalization": "4.0.11",
  1696. "System.Net.Primitives": "4.0.11",
  1697. "System.Resources.ResourceManager": "4.0.1",
  1698. "System.Runtime": "4.1.0",
  1699. "System.Runtime.Extensions": "4.1.0",
  1700. "System.Runtime.Handles": "4.0.1",
  1701. "System.Runtime.InteropServices": "4.1.0",
  1702. "System.Security.Principal.Windows": "4.0.0",
  1703. "System.Threading": "4.0.11",
  1704. "System.Threading.Tasks": "4.0.11",
  1705. "runtime.native.System": "4.0.0"
  1706. },
  1707. "compile": {
  1708. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1709. },
  1710. "runtimeTargets": {
  1711. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1712. "assetType": "runtime",
  1713. "rid": "unix"
  1714. },
  1715. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1716. "assetType": "runtime",
  1717. "rid": "win"
  1718. }
  1719. }
  1720. },
  1721. "System.Net.Primitives/4.0.11": {
  1722. "type": "package",
  1723. "dependencies": {
  1724. "Microsoft.NETCore.Platforms": "1.0.1",
  1725. "Microsoft.NETCore.Targets": "1.0.1",
  1726. "System.Runtime": "4.1.0",
  1727. "System.Runtime.Handles": "4.0.1"
  1728. },
  1729. "compile": {
  1730. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1731. }
  1732. },
  1733. "System.Net.Sockets/4.1.0": {
  1734. "type": "package",
  1735. "dependencies": {
  1736. "Microsoft.NETCore.Platforms": "1.0.1",
  1737. "Microsoft.NETCore.Targets": "1.0.1",
  1738. "System.IO": "4.1.0",
  1739. "System.Net.Primitives": "4.0.11",
  1740. "System.Runtime": "4.1.0",
  1741. "System.Threading.Tasks": "4.0.11"
  1742. },
  1743. "compile": {
  1744. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1745. }
  1746. },
  1747. "System.ObjectModel/4.0.12": {
  1748. "type": "package",
  1749. "dependencies": {
  1750. "System.Collections": "4.0.11",
  1751. "System.Diagnostics.Debug": "4.0.11",
  1752. "System.Resources.ResourceManager": "4.0.1",
  1753. "System.Runtime": "4.1.0",
  1754. "System.Threading": "4.0.11"
  1755. },
  1756. "compile": {
  1757. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1758. },
  1759. "runtime": {
  1760. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1761. }
  1762. },
  1763. "System.Reflection/4.3.0": {
  1764. "type": "package",
  1765. "dependencies": {
  1766. "Microsoft.NETCore.Platforms": "1.1.0",
  1767. "Microsoft.NETCore.Targets": "1.1.0",
  1768. "System.IO": "4.3.0",
  1769. "System.Reflection.Primitives": "4.3.0",
  1770. "System.Runtime": "4.3.0"
  1771. },
  1772. "compile": {
  1773. "ref/netstandard1.5/System.Reflection.dll": {}
  1774. }
  1775. },
  1776. "System.Reflection.Emit/4.0.1": {
  1777. "type": "package",
  1778. "dependencies": {
  1779. "System.IO": "4.1.0",
  1780. "System.Reflection": "4.1.0",
  1781. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1782. "System.Reflection.Primitives": "4.0.1",
  1783. "System.Runtime": "4.1.0"
  1784. },
  1785. "compile": {
  1786. "ref/netstandard1.1/_._": {}
  1787. },
  1788. "runtime": {
  1789. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1790. }
  1791. },
  1792. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1793. "type": "package",
  1794. "dependencies": {
  1795. "System.Reflection": "4.1.0",
  1796. "System.Reflection.Primitives": "4.0.1",
  1797. "System.Runtime": "4.1.0"
  1798. },
  1799. "compile": {
  1800. "ref/netstandard1.0/_._": {}
  1801. },
  1802. "runtime": {
  1803. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1804. }
  1805. },
  1806. "System.Reflection.Emit.Lightweight/4.0.1": {
  1807. "type": "package",
  1808. "dependencies": {
  1809. "System.Reflection": "4.1.0",
  1810. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1811. "System.Reflection.Primitives": "4.0.1",
  1812. "System.Runtime": "4.1.0"
  1813. },
  1814. "compile": {
  1815. "ref/netstandard1.0/_._": {}
  1816. },
  1817. "runtime": {
  1818. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1819. }
  1820. },
  1821. "System.Reflection.Extensions/4.0.1": {
  1822. "type": "package",
  1823. "dependencies": {
  1824. "Microsoft.NETCore.Platforms": "1.0.1",
  1825. "Microsoft.NETCore.Targets": "1.0.1",
  1826. "System.Reflection": "4.1.0",
  1827. "System.Runtime": "4.1.0"
  1828. },
  1829. "compile": {
  1830. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1831. }
  1832. },
  1833. "System.Reflection.Primitives/4.3.0": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "Microsoft.NETCore.Platforms": "1.1.0",
  1837. "Microsoft.NETCore.Targets": "1.1.0",
  1838. "System.Runtime": "4.3.0"
  1839. },
  1840. "compile": {
  1841. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1842. }
  1843. },
  1844. "System.Reflection.TypeExtensions/4.1.0": {
  1845. "type": "package",
  1846. "dependencies": {
  1847. "System.Reflection": "4.1.0",
  1848. "System.Runtime": "4.1.0"
  1849. },
  1850. "compile": {
  1851. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1852. },
  1853. "runtime": {
  1854. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1855. }
  1856. },
  1857. "System.Resources.ResourceManager/4.0.1": {
  1858. "type": "package",
  1859. "dependencies": {
  1860. "Microsoft.NETCore.Platforms": "1.0.1",
  1861. "Microsoft.NETCore.Targets": "1.0.1",
  1862. "System.Globalization": "4.0.11",
  1863. "System.Reflection": "4.1.0",
  1864. "System.Runtime": "4.1.0"
  1865. },
  1866. "compile": {
  1867. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1868. }
  1869. },
  1870. "System.Runtime/4.3.0": {
  1871. "type": "package",
  1872. "dependencies": {
  1873. "Microsoft.NETCore.Platforms": "1.1.0",
  1874. "Microsoft.NETCore.Targets": "1.1.0"
  1875. },
  1876. "compile": {
  1877. "ref/netstandard1.5/System.Runtime.dll": {}
  1878. }
  1879. },
  1880. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1881. "type": "package",
  1882. "compile": {
  1883. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1884. },
  1885. "runtime": {
  1886. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1887. },
  1888. "build": {
  1889. "buildTransitive/netcoreapp3.1/_._": {}
  1890. }
  1891. },
  1892. "System.Runtime.Extensions/4.1.0": {
  1893. "type": "package",
  1894. "dependencies": {
  1895. "Microsoft.NETCore.Platforms": "1.0.1",
  1896. "Microsoft.NETCore.Targets": "1.0.1",
  1897. "System.Runtime": "4.1.0"
  1898. },
  1899. "compile": {
  1900. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1901. }
  1902. },
  1903. "System.Runtime.Handles/4.0.1": {
  1904. "type": "package",
  1905. "dependencies": {
  1906. "Microsoft.NETCore.Platforms": "1.0.1",
  1907. "Microsoft.NETCore.Targets": "1.0.1",
  1908. "System.Runtime": "4.1.0"
  1909. },
  1910. "compile": {
  1911. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1912. }
  1913. },
  1914. "System.Runtime.InteropServices/4.1.0": {
  1915. "type": "package",
  1916. "dependencies": {
  1917. "Microsoft.NETCore.Platforms": "1.0.1",
  1918. "Microsoft.NETCore.Targets": "1.0.1",
  1919. "System.Reflection": "4.1.0",
  1920. "System.Reflection.Primitives": "4.0.1",
  1921. "System.Runtime": "4.1.0",
  1922. "System.Runtime.Handles": "4.0.1"
  1923. },
  1924. "compile": {
  1925. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1926. }
  1927. },
  1928. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1929. "type": "package",
  1930. "dependencies": {
  1931. "Microsoft.NETCore.Platforms": "1.0.1",
  1932. "System.Reflection": "4.1.0",
  1933. "System.Resources.ResourceManager": "4.0.1",
  1934. "System.Runtime": "4.1.0",
  1935. "System.Runtime.InteropServices": "4.1.0",
  1936. "System.Threading": "4.0.11",
  1937. "runtime.native.System": "4.0.0"
  1938. },
  1939. "compile": {
  1940. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1941. },
  1942. "runtimeTargets": {
  1943. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1944. "assetType": "runtime",
  1945. "rid": "unix"
  1946. },
  1947. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1948. "assetType": "runtime",
  1949. "rid": "win"
  1950. }
  1951. }
  1952. },
  1953. "System.Runtime.Numerics/4.0.1": {
  1954. "type": "package",
  1955. "dependencies": {
  1956. "System.Globalization": "4.0.11",
  1957. "System.Resources.ResourceManager": "4.0.1",
  1958. "System.Runtime": "4.1.0",
  1959. "System.Runtime.Extensions": "4.1.0"
  1960. },
  1961. "compile": {
  1962. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1963. },
  1964. "runtime": {
  1965. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1966. }
  1967. },
  1968. "System.Security.AccessControl/6.0.0": {
  1969. "type": "package",
  1970. "dependencies": {
  1971. "System.Security.Principal.Windows": "5.0.0"
  1972. },
  1973. "compile": {
  1974. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1975. },
  1976. "runtime": {
  1977. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1978. },
  1979. "build": {
  1980. "buildTransitive/netcoreapp3.1/_._": {}
  1981. },
  1982. "runtimeTargets": {
  1983. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  1984. "assetType": "runtime",
  1985. "rid": "win"
  1986. }
  1987. }
  1988. },
  1989. "System.Security.Cryptography.Algorithms/4.2.0": {
  1990. "type": "package",
  1991. "dependencies": {
  1992. "Microsoft.NETCore.Platforms": "1.0.1",
  1993. "System.Collections": "4.0.11",
  1994. "System.IO": "4.1.0",
  1995. "System.Resources.ResourceManager": "4.0.1",
  1996. "System.Runtime": "4.1.0",
  1997. "System.Runtime.Extensions": "4.1.0",
  1998. "System.Runtime.Handles": "4.0.1",
  1999. "System.Runtime.InteropServices": "4.1.0",
  2000. "System.Runtime.Numerics": "4.0.1",
  2001. "System.Security.Cryptography.Encoding": "4.0.0",
  2002. "System.Security.Cryptography.Primitives": "4.0.0",
  2003. "System.Text.Encoding": "4.0.11",
  2004. "runtime.native.System.Security.Cryptography": "4.0.0"
  2005. },
  2006. "compile": {
  2007. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2008. },
  2009. "runtimeTargets": {
  2010. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2011. "assetType": "runtime",
  2012. "rid": "unix"
  2013. },
  2014. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2015. "assetType": "runtime",
  2016. "rid": "win"
  2017. }
  2018. }
  2019. },
  2020. "System.Security.Cryptography.Cng/4.5.0": {
  2021. "type": "package",
  2022. "compile": {
  2023. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2024. },
  2025. "runtime": {
  2026. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2027. },
  2028. "runtimeTargets": {
  2029. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2030. "assetType": "runtime",
  2031. "rid": "win"
  2032. }
  2033. }
  2034. },
  2035. "System.Security.Cryptography.Csp/4.0.0": {
  2036. "type": "package",
  2037. "dependencies": {
  2038. "Microsoft.NETCore.Platforms": "1.0.1",
  2039. "System.IO": "4.1.0",
  2040. "System.Reflection": "4.1.0",
  2041. "System.Resources.ResourceManager": "4.0.1",
  2042. "System.Runtime": "4.1.0",
  2043. "System.Runtime.Extensions": "4.1.0",
  2044. "System.Runtime.Handles": "4.0.1",
  2045. "System.Runtime.InteropServices": "4.1.0",
  2046. "System.Security.Cryptography.Algorithms": "4.2.0",
  2047. "System.Security.Cryptography.Encoding": "4.0.0",
  2048. "System.Security.Cryptography.Primitives": "4.0.0",
  2049. "System.Text.Encoding": "4.0.11",
  2050. "System.Threading": "4.0.11"
  2051. },
  2052. "compile": {
  2053. "ref/netstandard1.3/_._": {}
  2054. },
  2055. "runtimeTargets": {
  2056. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2057. "assetType": "runtime",
  2058. "rid": "unix"
  2059. },
  2060. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2061. "assetType": "runtime",
  2062. "rid": "win"
  2063. }
  2064. }
  2065. },
  2066. "System.Security.Cryptography.Encoding/4.0.0": {
  2067. "type": "package",
  2068. "dependencies": {
  2069. "Microsoft.NETCore.Platforms": "1.0.1",
  2070. "System.Collections": "4.0.11",
  2071. "System.Collections.Concurrent": "4.0.12",
  2072. "System.Linq": "4.1.0",
  2073. "System.Resources.ResourceManager": "4.0.1",
  2074. "System.Runtime": "4.1.0",
  2075. "System.Runtime.Extensions": "4.1.0",
  2076. "System.Runtime.Handles": "4.0.1",
  2077. "System.Runtime.InteropServices": "4.1.0",
  2078. "System.Security.Cryptography.Primitives": "4.0.0",
  2079. "System.Text.Encoding": "4.0.11",
  2080. "runtime.native.System.Security.Cryptography": "4.0.0"
  2081. },
  2082. "compile": {
  2083. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2084. },
  2085. "runtimeTargets": {
  2086. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2087. "assetType": "runtime",
  2088. "rid": "unix"
  2089. },
  2090. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "win"
  2093. }
  2094. }
  2095. },
  2096. "System.Security.Cryptography.OpenSsl/4.0.0": {
  2097. "type": "package",
  2098. "dependencies": {
  2099. "System.Collections": "4.0.11",
  2100. "System.IO": "4.1.0",
  2101. "System.Resources.ResourceManager": "4.0.1",
  2102. "System.Runtime": "4.1.0",
  2103. "System.Runtime.Extensions": "4.1.0",
  2104. "System.Runtime.Handles": "4.0.1",
  2105. "System.Runtime.InteropServices": "4.1.0",
  2106. "System.Runtime.Numerics": "4.0.1",
  2107. "System.Security.Cryptography.Algorithms": "4.2.0",
  2108. "System.Security.Cryptography.Encoding": "4.0.0",
  2109. "System.Security.Cryptography.Primitives": "4.0.0",
  2110. "System.Text.Encoding": "4.0.11",
  2111. "runtime.native.System.Security.Cryptography": "4.0.0"
  2112. },
  2113. "compile": {
  2114. "ref/netstandard1.6/_._": {}
  2115. },
  2116. "runtime": {
  2117. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2118. },
  2119. "runtimeTargets": {
  2120. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2121. "assetType": "runtime",
  2122. "rid": "unix"
  2123. }
  2124. }
  2125. },
  2126. "System.Security.Cryptography.Primitives/4.0.0": {
  2127. "type": "package",
  2128. "dependencies": {
  2129. "System.Diagnostics.Debug": "4.0.11",
  2130. "System.Globalization": "4.0.11",
  2131. "System.IO": "4.1.0",
  2132. "System.Resources.ResourceManager": "4.0.1",
  2133. "System.Runtime": "4.1.0",
  2134. "System.Threading": "4.0.11",
  2135. "System.Threading.Tasks": "4.0.11"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2139. },
  2140. "runtime": {
  2141. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2142. }
  2143. },
  2144. "System.Security.Cryptography.ProtectedData/6.0.0": {
  2145. "type": "package",
  2146. "dependencies": {
  2147. "System.Memory": "4.5.4"
  2148. },
  2149. "compile": {
  2150. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2151. },
  2152. "runtime": {
  2153. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2154. },
  2155. "build": {
  2156. "buildTransitive/netcoreapp3.1/_._": {}
  2157. },
  2158. "runtimeTargets": {
  2159. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2160. "assetType": "runtime",
  2161. "rid": "win"
  2162. }
  2163. }
  2164. },
  2165. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2166. "type": "package",
  2167. "dependencies": {
  2168. "Microsoft.NETCore.Platforms": "1.0.1",
  2169. "System.Collections": "4.0.11",
  2170. "System.Diagnostics.Debug": "4.0.11",
  2171. "System.Globalization": "4.0.11",
  2172. "System.Globalization.Calendars": "4.0.1",
  2173. "System.IO": "4.1.0",
  2174. "System.IO.FileSystem": "4.0.1",
  2175. "System.IO.FileSystem.Primitives": "4.0.1",
  2176. "System.Resources.ResourceManager": "4.0.1",
  2177. "System.Runtime": "4.1.0",
  2178. "System.Runtime.Extensions": "4.1.0",
  2179. "System.Runtime.Handles": "4.0.1",
  2180. "System.Runtime.InteropServices": "4.1.0",
  2181. "System.Runtime.Numerics": "4.0.1",
  2182. "System.Security.Cryptography.Algorithms": "4.2.0",
  2183. "System.Security.Cryptography.Cng": "4.2.0",
  2184. "System.Security.Cryptography.Csp": "4.0.0",
  2185. "System.Security.Cryptography.Encoding": "4.0.0",
  2186. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2187. "System.Security.Cryptography.Primitives": "4.0.0",
  2188. "System.Text.Encoding": "4.0.11",
  2189. "System.Threading": "4.0.11",
  2190. "runtime.native.System": "4.0.0",
  2191. "runtime.native.System.Net.Http": "4.0.1",
  2192. "runtime.native.System.Security.Cryptography": "4.0.0"
  2193. },
  2194. "compile": {
  2195. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2196. },
  2197. "runtimeTargets": {
  2198. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2199. "assetType": "runtime",
  2200. "rid": "unix"
  2201. },
  2202. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2203. "assetType": "runtime",
  2204. "rid": "win"
  2205. }
  2206. }
  2207. },
  2208. "System.Security.Permissions/6.0.0": {
  2209. "type": "package",
  2210. "dependencies": {
  2211. "System.Security.AccessControl": "6.0.0",
  2212. "System.Windows.Extensions": "6.0.0"
  2213. },
  2214. "compile": {
  2215. "lib/netcoreapp3.1/System.Security.Permissions.dll": {}
  2216. },
  2217. "runtime": {
  2218. "lib/netcoreapp3.1/System.Security.Permissions.dll": {}
  2219. },
  2220. "build": {
  2221. "buildTransitive/netcoreapp3.1/_._": {}
  2222. }
  2223. },
  2224. "System.Security.Principal.Windows/5.0.0": {
  2225. "type": "package",
  2226. "compile": {
  2227. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2228. },
  2229. "runtime": {
  2230. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2231. },
  2232. "runtimeTargets": {
  2233. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2234. "assetType": "runtime",
  2235. "rid": "unix"
  2236. },
  2237. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2238. "assetType": "runtime",
  2239. "rid": "win"
  2240. }
  2241. }
  2242. },
  2243. "System.ServiceProcess.ServiceController/8.0.0": {
  2244. "type": "package",
  2245. "dependencies": {
  2246. "System.Diagnostics.EventLog": "8.0.0"
  2247. },
  2248. "compile": {
  2249. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2250. },
  2251. "runtime": {
  2252. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2253. },
  2254. "build": {
  2255. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets": {}
  2256. }
  2257. },
  2258. "System.Text.Encoding/4.3.0": {
  2259. "type": "package",
  2260. "dependencies": {
  2261. "Microsoft.NETCore.Platforms": "1.1.0",
  2262. "Microsoft.NETCore.Targets": "1.1.0",
  2263. "System.Runtime": "4.3.0"
  2264. },
  2265. "compile": {
  2266. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2267. }
  2268. },
  2269. "System.Text.Encoding.CodePages/4.5.1": {
  2270. "type": "package",
  2271. "dependencies": {
  2272. "Microsoft.NETCore.Platforms": "2.1.2",
  2273. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2274. },
  2275. "compile": {
  2276. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2277. },
  2278. "runtime": {
  2279. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2280. },
  2281. "runtimeTargets": {
  2282. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2283. "assetType": "runtime",
  2284. "rid": "win"
  2285. }
  2286. }
  2287. },
  2288. "System.Text.Encoding.Extensions/4.0.11": {
  2289. "type": "package",
  2290. "dependencies": {
  2291. "Microsoft.NETCore.Platforms": "1.0.1",
  2292. "Microsoft.NETCore.Targets": "1.0.1",
  2293. "System.Runtime": "4.1.0",
  2294. "System.Text.Encoding": "4.0.11"
  2295. },
  2296. "compile": {
  2297. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2298. }
  2299. },
  2300. "System.Text.Encodings.Web/8.0.0": {
  2301. "type": "package",
  2302. "dependencies": {
  2303. "System.Buffers": "4.5.1",
  2304. "System.Memory": "4.5.5",
  2305. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2306. },
  2307. "compile": {
  2308. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2309. },
  2310. "runtime": {
  2311. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2312. },
  2313. "build": {
  2314. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  2315. }
  2316. },
  2317. "System.Text.Json/8.0.0": {
  2318. "type": "package",
  2319. "dependencies": {
  2320. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  2321. "System.Buffers": "4.5.1",
  2322. "System.Memory": "4.5.5",
  2323. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2324. "System.Text.Encodings.Web": "8.0.0",
  2325. "System.Threading.Tasks.Extensions": "4.5.4"
  2326. },
  2327. "compile": {
  2328. "lib/netstandard2.0/System.Text.Json.dll": {}
  2329. },
  2330. "runtime": {
  2331. "lib/netstandard2.0/System.Text.Json.dll": {}
  2332. },
  2333. "build": {
  2334. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  2335. }
  2336. },
  2337. "System.Text.RegularExpressions/4.1.0": {
  2338. "type": "package",
  2339. "dependencies": {
  2340. "System.Collections": "4.0.11",
  2341. "System.Globalization": "4.0.11",
  2342. "System.Resources.ResourceManager": "4.0.1",
  2343. "System.Runtime": "4.1.0",
  2344. "System.Runtime.Extensions": "4.1.0",
  2345. "System.Threading": "4.0.11"
  2346. },
  2347. "compile": {
  2348. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2349. },
  2350. "runtime": {
  2351. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2352. }
  2353. },
  2354. "System.Threading/4.0.11": {
  2355. "type": "package",
  2356. "dependencies": {
  2357. "System.Runtime": "4.1.0",
  2358. "System.Threading.Tasks": "4.0.11"
  2359. },
  2360. "compile": {
  2361. "ref/netstandard1.3/System.Threading.dll": {}
  2362. },
  2363. "runtime": {
  2364. "lib/netstandard1.3/System.Threading.dll": {}
  2365. }
  2366. },
  2367. "System.Threading.Tasks/4.3.0": {
  2368. "type": "package",
  2369. "dependencies": {
  2370. "Microsoft.NETCore.Platforms": "1.1.0",
  2371. "Microsoft.NETCore.Targets": "1.1.0",
  2372. "System.Runtime": "4.3.0"
  2373. },
  2374. "compile": {
  2375. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2376. }
  2377. },
  2378. "System.Threading.Tasks.Extensions/4.5.4": {
  2379. "type": "package",
  2380. "compile": {
  2381. "ref/netcoreapp2.1/_._": {}
  2382. },
  2383. "runtime": {
  2384. "lib/netcoreapp2.1/_._": {}
  2385. }
  2386. },
  2387. "System.Threading.Thread/4.0.0": {
  2388. "type": "package",
  2389. "dependencies": {
  2390. "System.Runtime": "4.1.0"
  2391. },
  2392. "compile": {
  2393. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2394. },
  2395. "runtime": {
  2396. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2397. }
  2398. },
  2399. "System.Threading.ThreadPool/4.0.10": {
  2400. "type": "package",
  2401. "dependencies": {
  2402. "System.Runtime": "4.1.0",
  2403. "System.Runtime.Handles": "4.0.1"
  2404. },
  2405. "compile": {
  2406. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2407. },
  2408. "runtime": {
  2409. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2410. }
  2411. },
  2412. "System.Threading.Timer/4.0.1": {
  2413. "type": "package",
  2414. "dependencies": {
  2415. "Microsoft.NETCore.Platforms": "1.0.1",
  2416. "Microsoft.NETCore.Targets": "1.0.1",
  2417. "System.Runtime": "4.1.0"
  2418. },
  2419. "compile": {
  2420. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2421. }
  2422. },
  2423. "System.Windows.Extensions/6.0.0": {
  2424. "type": "package",
  2425. "dependencies": {
  2426. "System.Drawing.Common": "6.0.0"
  2427. },
  2428. "compile": {
  2429. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {}
  2430. },
  2431. "runtime": {
  2432. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {}
  2433. },
  2434. "runtimeTargets": {
  2435. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2436. "assetType": "runtime",
  2437. "rid": "win"
  2438. }
  2439. }
  2440. },
  2441. "System.Xml.ReaderWriter/4.0.11": {
  2442. "type": "package",
  2443. "dependencies": {
  2444. "System.Collections": "4.0.11",
  2445. "System.Diagnostics.Debug": "4.0.11",
  2446. "System.Globalization": "4.0.11",
  2447. "System.IO": "4.1.0",
  2448. "System.IO.FileSystem": "4.0.1",
  2449. "System.IO.FileSystem.Primitives": "4.0.1",
  2450. "System.Resources.ResourceManager": "4.0.1",
  2451. "System.Runtime": "4.1.0",
  2452. "System.Runtime.Extensions": "4.1.0",
  2453. "System.Runtime.InteropServices": "4.1.0",
  2454. "System.Text.Encoding": "4.0.11",
  2455. "System.Text.Encoding.Extensions": "4.0.11",
  2456. "System.Text.RegularExpressions": "4.1.0",
  2457. "System.Threading.Tasks": "4.0.11",
  2458. "System.Threading.Tasks.Extensions": "4.0.0"
  2459. },
  2460. "compile": {
  2461. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2462. },
  2463. "runtime": {
  2464. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2465. }
  2466. },
  2467. "System.Xml.XDocument/4.0.11": {
  2468. "type": "package",
  2469. "dependencies": {
  2470. "System.Collections": "4.0.11",
  2471. "System.Diagnostics.Debug": "4.0.11",
  2472. "System.Diagnostics.Tools": "4.0.1",
  2473. "System.Globalization": "4.0.11",
  2474. "System.IO": "4.1.0",
  2475. "System.Reflection": "4.1.0",
  2476. "System.Resources.ResourceManager": "4.0.1",
  2477. "System.Runtime": "4.1.0",
  2478. "System.Runtime.Extensions": "4.1.0",
  2479. "System.Text.Encoding": "4.0.11",
  2480. "System.Threading": "4.0.11",
  2481. "System.Xml.ReaderWriter": "4.0.11"
  2482. },
  2483. "compile": {
  2484. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2485. },
  2486. "runtime": {
  2487. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2488. }
  2489. },
  2490. "System.Xml.XmlDocument/4.0.1": {
  2491. "type": "package",
  2492. "dependencies": {
  2493. "System.Collections": "4.0.11",
  2494. "System.Diagnostics.Debug": "4.0.11",
  2495. "System.Globalization": "4.0.11",
  2496. "System.IO": "4.1.0",
  2497. "System.Resources.ResourceManager": "4.0.1",
  2498. "System.Runtime": "4.1.0",
  2499. "System.Runtime.Extensions": "4.1.0",
  2500. "System.Text.Encoding": "4.0.11",
  2501. "System.Threading": "4.0.11",
  2502. "System.Xml.ReaderWriter": "4.0.11"
  2503. },
  2504. "compile": {
  2505. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2506. },
  2507. "runtime": {
  2508. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2509. }
  2510. },
  2511. "System.Xml.XPath/4.0.1": {
  2512. "type": "package",
  2513. "dependencies": {
  2514. "System.Collections": "4.0.11",
  2515. "System.Diagnostics.Debug": "4.0.11",
  2516. "System.Globalization": "4.0.11",
  2517. "System.IO": "4.1.0",
  2518. "System.Resources.ResourceManager": "4.0.1",
  2519. "System.Runtime": "4.1.0",
  2520. "System.Runtime.Extensions": "4.1.0",
  2521. "System.Threading": "4.0.11",
  2522. "System.Xml.ReaderWriter": "4.0.11"
  2523. },
  2524. "compile": {
  2525. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2526. },
  2527. "runtime": {
  2528. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2529. }
  2530. },
  2531. "System.Xml.XPath.XmlDocument/4.0.1": {
  2532. "type": "package",
  2533. "dependencies": {
  2534. "System.Collections": "4.0.11",
  2535. "System.Globalization": "4.0.11",
  2536. "System.IO": "4.1.0",
  2537. "System.Resources.ResourceManager": "4.0.1",
  2538. "System.Runtime": "4.1.0",
  2539. "System.Runtime.Extensions": "4.1.0",
  2540. "System.Threading": "4.0.11",
  2541. "System.Xml.ReaderWriter": "4.0.11",
  2542. "System.Xml.XPath": "4.0.1",
  2543. "System.Xml.XmlDocument": "4.0.1"
  2544. },
  2545. "compile": {
  2546. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2547. },
  2548. "runtime": {
  2549. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2550. }
  2551. }
  2552. }
  2553. },
  2554. "libraries": {
  2555. "AutoMapper/12.0.1": {
  2556. "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==",
  2557. "type": "package",
  2558. "path": "automapper/12.0.1",
  2559. "files": [
  2560. ".nupkg.metadata",
  2561. ".signature.p7s",
  2562. "README.md",
  2563. "automapper.12.0.1.nupkg.sha512",
  2564. "automapper.nuspec",
  2565. "icon.png",
  2566. "lib/netstandard2.1/AutoMapper.dll",
  2567. "lib/netstandard2.1/AutoMapper.xml"
  2568. ]
  2569. },
  2570. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  2571. "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
  2572. "type": "package",
  2573. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
  2574. "files": [
  2575. ".nupkg.metadata",
  2576. ".signature.p7s",
  2577. "README.md",
  2578. "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
  2579. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2580. "icon.png",
  2581. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2582. ]
  2583. },
  2584. "BouncyCastle.NetCore/1.8.3": {
  2585. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2586. "type": "package",
  2587. "path": "bouncycastle.netcore/1.8.3",
  2588. "files": [
  2589. ".nupkg.metadata",
  2590. ".signature.p7s",
  2591. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2592. "bouncycastle.netcore.nuspec",
  2593. "lib/Mono/BouncyCastle.Crypto.dll",
  2594. "lib/Mono/BouncyCastle.Crypto.xml",
  2595. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2596. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2597. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2598. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2599. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2600. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2601. "lib/net20/BouncyCastle.Crypto.dll",
  2602. "lib/net20/BouncyCastle.Crypto.xml",
  2603. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2604. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2605. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2606. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2607. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2608. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2609. ]
  2610. },
  2611. "Flurl/4.0.0": {
  2612. "sha512": "rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==",
  2613. "type": "package",
  2614. "path": "flurl/4.0.0",
  2615. "files": [
  2616. ".nupkg.metadata",
  2617. ".signature.p7s",
  2618. "flurl.4.0.0.nupkg.sha512",
  2619. "flurl.nuspec",
  2620. "icon.png",
  2621. "lib/net461/Flurl.dll",
  2622. "lib/net461/Flurl.xml",
  2623. "lib/net472/Flurl.dll",
  2624. "lib/net472/Flurl.xml",
  2625. "lib/netstandard2.0/Flurl.dll",
  2626. "lib/netstandard2.0/Flurl.xml"
  2627. ]
  2628. },
  2629. "Flurl.Http/4.0.2": {
  2630. "sha512": "9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==",
  2631. "type": "package",
  2632. "path": "flurl.http/4.0.2",
  2633. "files": [
  2634. ".nupkg.metadata",
  2635. ".signature.p7s",
  2636. "README.md",
  2637. "flurl.http.4.0.2.nupkg.sha512",
  2638. "flurl.http.nuspec",
  2639. "icon.png",
  2640. "lib/net461/Flurl.Http.dll",
  2641. "lib/net461/Flurl.Http.xml",
  2642. "lib/net6.0/Flurl.Http.dll",
  2643. "lib/net6.0/Flurl.Http.xml",
  2644. "lib/netstandard2.0/Flurl.Http.dll",
  2645. "lib/netstandard2.0/Flurl.Http.xml"
  2646. ]
  2647. },
  2648. "Google.Protobuf/3.11.4": {
  2649. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  2650. "type": "package",
  2651. "path": "google.protobuf/3.11.4",
  2652. "files": [
  2653. ".nupkg.metadata",
  2654. ".signature.p7s",
  2655. "google.protobuf.3.11.4.nupkg.sha512",
  2656. "google.protobuf.nuspec",
  2657. "lib/net45/Google.Protobuf.dll",
  2658. "lib/net45/Google.Protobuf.pdb",
  2659. "lib/net45/Google.Protobuf.xml",
  2660. "lib/netstandard1.0/Google.Protobuf.dll",
  2661. "lib/netstandard1.0/Google.Protobuf.pdb",
  2662. "lib/netstandard1.0/Google.Protobuf.xml",
  2663. "lib/netstandard2.0/Google.Protobuf.dll",
  2664. "lib/netstandard2.0/Google.Protobuf.pdb",
  2665. "lib/netstandard2.0/Google.Protobuf.xml"
  2666. ]
  2667. },
  2668. "K4os.Compression.LZ4/1.1.11": {
  2669. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  2670. "type": "package",
  2671. "path": "k4os.compression.lz4/1.1.11",
  2672. "files": [
  2673. ".nupkg.metadata",
  2674. ".signature.p7s",
  2675. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  2676. "k4os.compression.lz4.nuspec",
  2677. "lib/net45/K4os.Compression.LZ4.dll",
  2678. "lib/net45/K4os.Compression.LZ4.xml",
  2679. "lib/net46/K4os.Compression.LZ4.dll",
  2680. "lib/net46/K4os.Compression.LZ4.xml",
  2681. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2682. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2683. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2684. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2685. ]
  2686. },
  2687. "K4os.Compression.LZ4.Streams/1.1.11": {
  2688. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  2689. "type": "package",
  2690. "path": "k4os.compression.lz4.streams/1.1.11",
  2691. "files": [
  2692. ".nupkg.metadata",
  2693. ".signature.p7s",
  2694. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  2695. "k4os.compression.lz4.streams.nuspec",
  2696. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2697. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2698. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2699. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2700. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2701. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2702. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2703. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  2704. ]
  2705. },
  2706. "K4os.Hash.xxHash/1.0.6": {
  2707. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2708. "type": "package",
  2709. "path": "k4os.hash.xxhash/1.0.6",
  2710. "files": [
  2711. ".nupkg.metadata",
  2712. ".signature.p7s",
  2713. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2714. "k4os.hash.xxhash.nuspec",
  2715. "lib/net45/K4os.Hash.xxHash.dll",
  2716. "lib/net45/K4os.Hash.xxHash.xml",
  2717. "lib/net46/K4os.Hash.xxHash.dll",
  2718. "lib/net46/K4os.Hash.xxHash.xml",
  2719. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2720. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2721. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2722. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2723. ]
  2724. },
  2725. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  2726. "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
  2727. "type": "package",
  2728. "path": "microsoft.bcl.asyncinterfaces/8.0.0",
  2729. "files": [
  2730. ".nupkg.metadata",
  2731. ".signature.p7s",
  2732. "Icon.png",
  2733. "LICENSE.TXT",
  2734. "PACKAGE.md",
  2735. "THIRD-PARTY-NOTICES.TXT",
  2736. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  2737. "buildTransitive/net462/_._",
  2738. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  2739. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  2740. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2741. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2742. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2743. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2744. "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
  2745. "microsoft.bcl.asyncinterfaces.nuspec",
  2746. "useSharedDesignerContext.txt"
  2747. ]
  2748. },
  2749. "Microsoft.Bcl.HashCode/1.1.0": {
  2750. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  2751. "type": "package",
  2752. "path": "microsoft.bcl.hashcode/1.1.0",
  2753. "files": [
  2754. ".nupkg.metadata",
  2755. ".signature.p7s",
  2756. "LICENSE.TXT",
  2757. "THIRD-PARTY-NOTICES.TXT",
  2758. "lib/net461/Microsoft.Bcl.HashCode.dll",
  2759. "lib/net461/Microsoft.Bcl.HashCode.xml",
  2760. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2761. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  2762. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2763. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  2764. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2765. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  2766. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  2767. "microsoft.bcl.hashcode.nuspec",
  2768. "ref/net461/Microsoft.Bcl.HashCode.dll",
  2769. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2770. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2771. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2772. "useSharedDesignerContext.txt",
  2773. "version.txt"
  2774. ]
  2775. },
  2776. "Microsoft.CSharp/4.7.0": {
  2777. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2778. "type": "package",
  2779. "path": "microsoft.csharp/4.7.0",
  2780. "files": [
  2781. ".nupkg.metadata",
  2782. ".signature.p7s",
  2783. "LICENSE.TXT",
  2784. "THIRD-PARTY-NOTICES.TXT",
  2785. "lib/MonoAndroid10/_._",
  2786. "lib/MonoTouch10/_._",
  2787. "lib/net45/_._",
  2788. "lib/netcore50/Microsoft.CSharp.dll",
  2789. "lib/netcoreapp2.0/_._",
  2790. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2791. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2792. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2793. "lib/portable-net45+win8+wp8+wpa81/_._",
  2794. "lib/uap10.0.16299/_._",
  2795. "lib/win8/_._",
  2796. "lib/wp80/_._",
  2797. "lib/wpa81/_._",
  2798. "lib/xamarinios10/_._",
  2799. "lib/xamarinmac20/_._",
  2800. "lib/xamarintvos10/_._",
  2801. "lib/xamarinwatchos10/_._",
  2802. "microsoft.csharp.4.7.0.nupkg.sha512",
  2803. "microsoft.csharp.nuspec",
  2804. "ref/MonoAndroid10/_._",
  2805. "ref/MonoTouch10/_._",
  2806. "ref/net45/_._",
  2807. "ref/netcore50/Microsoft.CSharp.dll",
  2808. "ref/netcore50/Microsoft.CSharp.xml",
  2809. "ref/netcore50/de/Microsoft.CSharp.xml",
  2810. "ref/netcore50/es/Microsoft.CSharp.xml",
  2811. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2812. "ref/netcore50/it/Microsoft.CSharp.xml",
  2813. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2814. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2815. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2816. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2817. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2818. "ref/netcoreapp2.0/_._",
  2819. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2820. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2821. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2822. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2823. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2824. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2825. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2826. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2827. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2828. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2829. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2830. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2831. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2832. "ref/portable-net45+win8+wp8+wpa81/_._",
  2833. "ref/uap10.0.16299/_._",
  2834. "ref/win8/_._",
  2835. "ref/wp80/_._",
  2836. "ref/wpa81/_._",
  2837. "ref/xamarinios10/_._",
  2838. "ref/xamarinmac20/_._",
  2839. "ref/xamarintvos10/_._",
  2840. "ref/xamarinwatchos10/_._",
  2841. "useSharedDesignerContext.txt",
  2842. "version.txt"
  2843. ]
  2844. },
  2845. "Microsoft.EntityFrameworkCore/3.1.1": {
  2846. "sha512": "RtDC52x7p57sG5ajCisHSRXjqQvtJgR0wUufXWNPDZCjvoqgQcbftWdh2+ogDJ5V58Qf9uhfJQSNXr0qQ597xQ==",
  2847. "type": "package",
  2848. "path": "microsoft.entityframeworkcore/3.1.1",
  2849. "files": [
  2850. ".nupkg.metadata",
  2851. ".signature.p7s",
  2852. "Icon.png",
  2853. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  2854. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  2855. "microsoft.entityframeworkcore.3.1.1.nupkg.sha512",
  2856. "microsoft.entityframeworkcore.nuspec"
  2857. ]
  2858. },
  2859. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  2860. "sha512": "X7aqgBUGmEOhDa/PKiyTGW8NDvuMk/nbxclGsZcWbrNgwanprNq4ZZOSEL4yCNFhUY4pYFnWSwnsZcKZlEttzQ==",
  2861. "type": "package",
  2862. "path": "microsoft.entityframeworkcore.abstractions/3.1.1",
  2863. "files": [
  2864. ".nupkg.metadata",
  2865. ".signature.p7s",
  2866. "Icon.png",
  2867. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2868. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2869. "microsoft.entityframeworkcore.abstractions.3.1.1.nupkg.sha512",
  2870. "microsoft.entityframeworkcore.abstractions.nuspec"
  2871. ]
  2872. },
  2873. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  2874. "sha512": "PrB8QZih5QMRhVjXZnwpFtgm14KU2M0ewilUIQ6W/qS7ugFBSlr1vaug2XnSdd2ODyZioc7Yypp4WNfaBIQg5Q==",
  2875. "type": "package",
  2876. "path": "microsoft.entityframeworkcore.analyzers/3.1.1",
  2877. "files": [
  2878. ".nupkg.metadata",
  2879. ".signature.p7s",
  2880. "Icon.png",
  2881. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2882. "lib/netstandard2.0/_._",
  2883. "microsoft.entityframeworkcore.analyzers.3.1.1.nupkg.sha512",
  2884. "microsoft.entityframeworkcore.analyzers.nuspec"
  2885. ]
  2886. },
  2887. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  2888. "sha512": "iBt59oeV97kqI6ZkdSpnUV1cC+hCGf5xqot331waiF5d5sxksLJZghkUZOLpe4yuPg3mnngXD6bPqMsLa4II5g==",
  2889. "type": "package",
  2890. "path": "microsoft.entityframeworkcore.relational/3.1.1",
  2891. "files": [
  2892. ".nupkg.metadata",
  2893. ".signature.p7s",
  2894. "Icon.png",
  2895. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2896. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2897. "microsoft.entityframeworkcore.relational.3.1.1.nupkg.sha512",
  2898. "microsoft.entityframeworkcore.relational.nuspec"
  2899. ]
  2900. },
  2901. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  2902. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  2903. "type": "package",
  2904. "path": "microsoft.extensions.apidescription.server/6.0.5",
  2905. "hasTools": true,
  2906. "files": [
  2907. ".nupkg.metadata",
  2908. ".signature.p7s",
  2909. "Icon.png",
  2910. "build/Microsoft.Extensions.ApiDescription.Server.props",
  2911. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  2912. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  2913. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  2914. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  2915. "microsoft.extensions.apidescription.server.nuspec",
  2916. "tools/Newtonsoft.Json.dll",
  2917. "tools/dotnet-getdocument.deps.json",
  2918. "tools/dotnet-getdocument.dll",
  2919. "tools/dotnet-getdocument.runtimeconfig.json",
  2920. "tools/net461-x86/GetDocument.Insider.exe",
  2921. "tools/net461-x86/GetDocument.Insider.exe.config",
  2922. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  2923. "tools/net461-x86/System.AppContext.dll",
  2924. "tools/net461-x86/System.Buffers.dll",
  2925. "tools/net461-x86/System.Collections.Concurrent.dll",
  2926. "tools/net461-x86/System.Collections.NonGeneric.dll",
  2927. "tools/net461-x86/System.Collections.Specialized.dll",
  2928. "tools/net461-x86/System.Collections.dll",
  2929. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  2930. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  2931. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  2932. "tools/net461-x86/System.ComponentModel.dll",
  2933. "tools/net461-x86/System.Console.dll",
  2934. "tools/net461-x86/System.Data.Common.dll",
  2935. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  2936. "tools/net461-x86/System.Diagnostics.Debug.dll",
  2937. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  2938. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  2939. "tools/net461-x86/System.Diagnostics.Process.dll",
  2940. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  2941. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  2942. "tools/net461-x86/System.Diagnostics.Tools.dll",
  2943. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  2944. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  2945. "tools/net461-x86/System.Drawing.Primitives.dll",
  2946. "tools/net461-x86/System.Dynamic.Runtime.dll",
  2947. "tools/net461-x86/System.Globalization.Calendars.dll",
  2948. "tools/net461-x86/System.Globalization.Extensions.dll",
  2949. "tools/net461-x86/System.Globalization.dll",
  2950. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  2951. "tools/net461-x86/System.IO.Compression.dll",
  2952. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  2953. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  2954. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  2955. "tools/net461-x86/System.IO.FileSystem.dll",
  2956. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  2957. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  2958. "tools/net461-x86/System.IO.Pipes.dll",
  2959. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  2960. "tools/net461-x86/System.IO.dll",
  2961. "tools/net461-x86/System.Linq.Expressions.dll",
  2962. "tools/net461-x86/System.Linq.Parallel.dll",
  2963. "tools/net461-x86/System.Linq.Queryable.dll",
  2964. "tools/net461-x86/System.Linq.dll",
  2965. "tools/net461-x86/System.Memory.dll",
  2966. "tools/net461-x86/System.Net.Http.dll",
  2967. "tools/net461-x86/System.Net.NameResolution.dll",
  2968. "tools/net461-x86/System.Net.NetworkInformation.dll",
  2969. "tools/net461-x86/System.Net.Ping.dll",
  2970. "tools/net461-x86/System.Net.Primitives.dll",
  2971. "tools/net461-x86/System.Net.Requests.dll",
  2972. "tools/net461-x86/System.Net.Security.dll",
  2973. "tools/net461-x86/System.Net.Sockets.dll",
  2974. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  2975. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  2976. "tools/net461-x86/System.Net.WebSockets.dll",
  2977. "tools/net461-x86/System.Numerics.Vectors.dll",
  2978. "tools/net461-x86/System.ObjectModel.dll",
  2979. "tools/net461-x86/System.Reflection.Extensions.dll",
  2980. "tools/net461-x86/System.Reflection.Primitives.dll",
  2981. "tools/net461-x86/System.Reflection.dll",
  2982. "tools/net461-x86/System.Resources.Reader.dll",
  2983. "tools/net461-x86/System.Resources.ResourceManager.dll",
  2984. "tools/net461-x86/System.Resources.Writer.dll",
  2985. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  2986. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  2987. "tools/net461-x86/System.Runtime.Extensions.dll",
  2988. "tools/net461-x86/System.Runtime.Handles.dll",
  2989. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  2990. "tools/net461-x86/System.Runtime.InteropServices.dll",
  2991. "tools/net461-x86/System.Runtime.Numerics.dll",
  2992. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  2993. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  2994. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  2995. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  2996. "tools/net461-x86/System.Runtime.dll",
  2997. "tools/net461-x86/System.Security.Claims.dll",
  2998. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  2999. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  3000. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  3001. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  3002. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  3003. "tools/net461-x86/System.Security.Principal.dll",
  3004. "tools/net461-x86/System.Security.SecureString.dll",
  3005. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  3006. "tools/net461-x86/System.Text.Encoding.dll",
  3007. "tools/net461-x86/System.Text.RegularExpressions.dll",
  3008. "tools/net461-x86/System.Threading.Overlapped.dll",
  3009. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  3010. "tools/net461-x86/System.Threading.Tasks.dll",
  3011. "tools/net461-x86/System.Threading.Thread.dll",
  3012. "tools/net461-x86/System.Threading.ThreadPool.dll",
  3013. "tools/net461-x86/System.Threading.Timer.dll",
  3014. "tools/net461-x86/System.Threading.dll",
  3015. "tools/net461-x86/System.ValueTuple.dll",
  3016. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  3017. "tools/net461-x86/System.Xml.XDocument.dll",
  3018. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  3019. "tools/net461-x86/System.Xml.XPath.dll",
  3020. "tools/net461-x86/System.Xml.XmlDocument.dll",
  3021. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  3022. "tools/net461-x86/netstandard.dll",
  3023. "tools/net461/GetDocument.Insider.exe",
  3024. "tools/net461/GetDocument.Insider.exe.config",
  3025. "tools/net461/Microsoft.Win32.Primitives.dll",
  3026. "tools/net461/System.AppContext.dll",
  3027. "tools/net461/System.Buffers.dll",
  3028. "tools/net461/System.Collections.Concurrent.dll",
  3029. "tools/net461/System.Collections.NonGeneric.dll",
  3030. "tools/net461/System.Collections.Specialized.dll",
  3031. "tools/net461/System.Collections.dll",
  3032. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  3033. "tools/net461/System.ComponentModel.Primitives.dll",
  3034. "tools/net461/System.ComponentModel.TypeConverter.dll",
  3035. "tools/net461/System.ComponentModel.dll",
  3036. "tools/net461/System.Console.dll",
  3037. "tools/net461/System.Data.Common.dll",
  3038. "tools/net461/System.Diagnostics.Contracts.dll",
  3039. "tools/net461/System.Diagnostics.Debug.dll",
  3040. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  3041. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  3042. "tools/net461/System.Diagnostics.Process.dll",
  3043. "tools/net461/System.Diagnostics.StackTrace.dll",
  3044. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  3045. "tools/net461/System.Diagnostics.Tools.dll",
  3046. "tools/net461/System.Diagnostics.TraceSource.dll",
  3047. "tools/net461/System.Diagnostics.Tracing.dll",
  3048. "tools/net461/System.Drawing.Primitives.dll",
  3049. "tools/net461/System.Dynamic.Runtime.dll",
  3050. "tools/net461/System.Globalization.Calendars.dll",
  3051. "tools/net461/System.Globalization.Extensions.dll",
  3052. "tools/net461/System.Globalization.dll",
  3053. "tools/net461/System.IO.Compression.ZipFile.dll",
  3054. "tools/net461/System.IO.Compression.dll",
  3055. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  3056. "tools/net461/System.IO.FileSystem.Primitives.dll",
  3057. "tools/net461/System.IO.FileSystem.Watcher.dll",
  3058. "tools/net461/System.IO.FileSystem.dll",
  3059. "tools/net461/System.IO.IsolatedStorage.dll",
  3060. "tools/net461/System.IO.MemoryMappedFiles.dll",
  3061. "tools/net461/System.IO.Pipes.dll",
  3062. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  3063. "tools/net461/System.IO.dll",
  3064. "tools/net461/System.Linq.Expressions.dll",
  3065. "tools/net461/System.Linq.Parallel.dll",
  3066. "tools/net461/System.Linq.Queryable.dll",
  3067. "tools/net461/System.Linq.dll",
  3068. "tools/net461/System.Memory.dll",
  3069. "tools/net461/System.Net.Http.dll",
  3070. "tools/net461/System.Net.NameResolution.dll",
  3071. "tools/net461/System.Net.NetworkInformation.dll",
  3072. "tools/net461/System.Net.Ping.dll",
  3073. "tools/net461/System.Net.Primitives.dll",
  3074. "tools/net461/System.Net.Requests.dll",
  3075. "tools/net461/System.Net.Security.dll",
  3076. "tools/net461/System.Net.Sockets.dll",
  3077. "tools/net461/System.Net.WebHeaderCollection.dll",
  3078. "tools/net461/System.Net.WebSockets.Client.dll",
  3079. "tools/net461/System.Net.WebSockets.dll",
  3080. "tools/net461/System.Numerics.Vectors.dll",
  3081. "tools/net461/System.ObjectModel.dll",
  3082. "tools/net461/System.Reflection.Extensions.dll",
  3083. "tools/net461/System.Reflection.Primitives.dll",
  3084. "tools/net461/System.Reflection.dll",
  3085. "tools/net461/System.Resources.Reader.dll",
  3086. "tools/net461/System.Resources.ResourceManager.dll",
  3087. "tools/net461/System.Resources.Writer.dll",
  3088. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3089. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  3090. "tools/net461/System.Runtime.Extensions.dll",
  3091. "tools/net461/System.Runtime.Handles.dll",
  3092. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  3093. "tools/net461/System.Runtime.InteropServices.dll",
  3094. "tools/net461/System.Runtime.Numerics.dll",
  3095. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  3096. "tools/net461/System.Runtime.Serialization.Json.dll",
  3097. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  3098. "tools/net461/System.Runtime.Serialization.Xml.dll",
  3099. "tools/net461/System.Runtime.dll",
  3100. "tools/net461/System.Security.Claims.dll",
  3101. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  3102. "tools/net461/System.Security.Cryptography.Csp.dll",
  3103. "tools/net461/System.Security.Cryptography.Encoding.dll",
  3104. "tools/net461/System.Security.Cryptography.Primitives.dll",
  3105. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  3106. "tools/net461/System.Security.Principal.dll",
  3107. "tools/net461/System.Security.SecureString.dll",
  3108. "tools/net461/System.Text.Encoding.Extensions.dll",
  3109. "tools/net461/System.Text.Encoding.dll",
  3110. "tools/net461/System.Text.RegularExpressions.dll",
  3111. "tools/net461/System.Threading.Overlapped.dll",
  3112. "tools/net461/System.Threading.Tasks.Parallel.dll",
  3113. "tools/net461/System.Threading.Tasks.dll",
  3114. "tools/net461/System.Threading.Thread.dll",
  3115. "tools/net461/System.Threading.ThreadPool.dll",
  3116. "tools/net461/System.Threading.Timer.dll",
  3117. "tools/net461/System.Threading.dll",
  3118. "tools/net461/System.ValueTuple.dll",
  3119. "tools/net461/System.Xml.ReaderWriter.dll",
  3120. "tools/net461/System.Xml.XDocument.dll",
  3121. "tools/net461/System.Xml.XPath.XDocument.dll",
  3122. "tools/net461/System.Xml.XPath.dll",
  3123. "tools/net461/System.Xml.XmlDocument.dll",
  3124. "tools/net461/System.Xml.XmlSerializer.dll",
  3125. "tools/net461/netstandard.dll",
  3126. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3127. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3128. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  3129. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  3130. ]
  3131. },
  3132. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  3133. "sha512": "lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==",
  3134. "type": "package",
  3135. "path": "microsoft.extensions.caching.abstractions/3.1.1",
  3136. "files": [
  3137. ".nupkg.metadata",
  3138. ".signature.p7s",
  3139. "Icon.png",
  3140. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3141. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3142. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3143. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3144. "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512",
  3145. "microsoft.extensions.caching.abstractions.nuspec"
  3146. ]
  3147. },
  3148. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  3149. "sha512": "eXKFU6dmz+0EzhlGkVnIJsG8yUIMgSdWRqSN2zLO5IhATJu4JWgUU5vYuRO/HYMCwq8aodK6lVWN7itQXwonkQ==",
  3150. "type": "package",
  3151. "path": "microsoft.extensions.caching.memory/3.1.1",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "Icon.png",
  3156. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3157. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3158. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3159. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3160. "microsoft.extensions.caching.memory.3.1.1.nupkg.sha512",
  3161. "microsoft.extensions.caching.memory.nuspec"
  3162. ]
  3163. },
  3164. "Microsoft.Extensions.Configuration/8.0.0": {
  3165. "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
  3166. "type": "package",
  3167. "path": "microsoft.extensions.configuration/8.0.0",
  3168. "files": [
  3169. ".nupkg.metadata",
  3170. ".signature.p7s",
  3171. "Icon.png",
  3172. "LICENSE.TXT",
  3173. "PACKAGE.md",
  3174. "THIRD-PARTY-NOTICES.TXT",
  3175. "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
  3176. "buildTransitive/net462/_._",
  3177. "buildTransitive/net6.0/_._",
  3178. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
  3179. "lib/net462/Microsoft.Extensions.Configuration.dll",
  3180. "lib/net462/Microsoft.Extensions.Configuration.xml",
  3181. "lib/net6.0/Microsoft.Extensions.Configuration.dll",
  3182. "lib/net6.0/Microsoft.Extensions.Configuration.xml",
  3183. "lib/net7.0/Microsoft.Extensions.Configuration.dll",
  3184. "lib/net7.0/Microsoft.Extensions.Configuration.xml",
  3185. "lib/net8.0/Microsoft.Extensions.Configuration.dll",
  3186. "lib/net8.0/Microsoft.Extensions.Configuration.xml",
  3187. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3188. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3189. "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
  3190. "microsoft.extensions.configuration.nuspec",
  3191. "useSharedDesignerContext.txt"
  3192. ]
  3193. },
  3194. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  3195. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  3196. "type": "package",
  3197. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  3198. "files": [
  3199. ".nupkg.metadata",
  3200. ".signature.p7s",
  3201. "Icon.png",
  3202. "LICENSE.TXT",
  3203. "PACKAGE.md",
  3204. "THIRD-PARTY-NOTICES.TXT",
  3205. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  3206. "buildTransitive/net462/_._",
  3207. "buildTransitive/net6.0/_._",
  3208. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  3209. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  3210. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  3211. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3212. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3213. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3214. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3215. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3216. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3217. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3218. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3219. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  3220. "microsoft.extensions.configuration.abstractions.nuspec",
  3221. "useSharedDesignerContext.txt"
  3222. ]
  3223. },
  3224. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  3225. "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
  3226. "type": "package",
  3227. "path": "microsoft.extensions.configuration.binder/8.0.0",
  3228. "files": [
  3229. ".nupkg.metadata",
  3230. ".signature.p7s",
  3231. "Icon.png",
  3232. "LICENSE.TXT",
  3233. "PACKAGE.md",
  3234. "THIRD-PARTY-NOTICES.TXT",
  3235. "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
  3236. "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3237. "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3238. "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3239. "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3240. "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3241. "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3242. "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3243. "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3244. "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3245. "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3246. "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3247. "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3248. "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3249. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
  3250. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  3251. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  3252. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  3253. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  3254. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  3255. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  3256. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
  3257. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
  3258. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3259. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3260. "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
  3261. "microsoft.extensions.configuration.binder.nuspec",
  3262. "useSharedDesignerContext.txt"
  3263. ]
  3264. },
  3265. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  3266. "sha512": "NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==",
  3267. "type": "package",
  3268. "path": "microsoft.extensions.configuration.commandline/8.0.0",
  3269. "files": [
  3270. ".nupkg.metadata",
  3271. ".signature.p7s",
  3272. "Icon.png",
  3273. "LICENSE.TXT",
  3274. "PACKAGE.md",
  3275. "THIRD-PARTY-NOTICES.TXT",
  3276. "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets",
  3277. "buildTransitive/net462/_._",
  3278. "buildTransitive/net6.0/_._",
  3279. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets",
  3280. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll",
  3281. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml",
  3282. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3283. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3284. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3285. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3286. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3287. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3288. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3289. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3290. "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512",
  3291. "microsoft.extensions.configuration.commandline.nuspec",
  3292. "useSharedDesignerContext.txt"
  3293. ]
  3294. },
  3295. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  3296. "sha512": "plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==",
  3297. "type": "package",
  3298. "path": "microsoft.extensions.configuration.environmentvariables/8.0.0",
  3299. "files": [
  3300. ".nupkg.metadata",
  3301. ".signature.p7s",
  3302. "Icon.png",
  3303. "LICENSE.TXT",
  3304. "PACKAGE.md",
  3305. "THIRD-PARTY-NOTICES.TXT",
  3306. "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  3307. "buildTransitive/net462/_._",
  3308. "buildTransitive/net6.0/_._",
  3309. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  3310. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3311. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3312. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3313. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3314. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3315. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3316. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3317. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3318. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3319. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3320. "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512",
  3321. "microsoft.extensions.configuration.environmentvariables.nuspec",
  3322. "useSharedDesignerContext.txt"
  3323. ]
  3324. },
  3325. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  3326. "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
  3327. "type": "package",
  3328. "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
  3329. "files": [
  3330. ".nupkg.metadata",
  3331. ".signature.p7s",
  3332. "Icon.png",
  3333. "LICENSE.TXT",
  3334. "PACKAGE.md",
  3335. "THIRD-PARTY-NOTICES.TXT",
  3336. "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
  3337. "buildTransitive/net462/_._",
  3338. "buildTransitive/net6.0/_._",
  3339. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
  3340. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3341. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3342. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3343. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3344. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3345. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3346. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3347. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3348. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3349. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3350. "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
  3351. "microsoft.extensions.configuration.fileextensions.nuspec",
  3352. "useSharedDesignerContext.txt"
  3353. ]
  3354. },
  3355. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  3356. "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
  3357. "type": "package",
  3358. "path": "microsoft.extensions.configuration.json/8.0.0",
  3359. "files": [
  3360. ".nupkg.metadata",
  3361. ".signature.p7s",
  3362. "Icon.png",
  3363. "LICENSE.TXT",
  3364. "PACKAGE.md",
  3365. "THIRD-PARTY-NOTICES.TXT",
  3366. "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
  3367. "buildTransitive/net462/_._",
  3368. "buildTransitive/net6.0/_._",
  3369. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
  3370. "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
  3371. "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
  3372. "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
  3373. "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
  3374. "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
  3375. "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
  3376. "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
  3377. "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
  3378. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3379. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3380. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3381. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3382. "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
  3383. "microsoft.extensions.configuration.json.nuspec",
  3384. "useSharedDesignerContext.txt"
  3385. ]
  3386. },
  3387. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  3388. "sha512": "ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==",
  3389. "type": "package",
  3390. "path": "microsoft.extensions.configuration.usersecrets/8.0.0",
  3391. "files": [
  3392. ".nupkg.metadata",
  3393. ".signature.p7s",
  3394. "Icon.png",
  3395. "LICENSE.TXT",
  3396. "PACKAGE.md",
  3397. "THIRD-PARTY-NOTICES.TXT",
  3398. "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3399. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props",
  3400. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3401. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  3402. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3403. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3404. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  3405. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3406. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3407. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3408. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3409. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3410. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3411. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3412. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3413. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3414. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3415. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3416. "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512",
  3417. "microsoft.extensions.configuration.usersecrets.nuspec",
  3418. "useSharedDesignerContext.txt"
  3419. ]
  3420. },
  3421. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  3422. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  3423. "type": "package",
  3424. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  3425. "files": [
  3426. ".nupkg.metadata",
  3427. ".signature.p7s",
  3428. "Icon.png",
  3429. "LICENSE.TXT",
  3430. "PACKAGE.md",
  3431. "THIRD-PARTY-NOTICES.TXT",
  3432. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  3433. "buildTransitive/net462/_._",
  3434. "buildTransitive/net6.0/_._",
  3435. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3436. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  3437. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  3438. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3439. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3440. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  3441. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  3442. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  3443. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  3444. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3445. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3446. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3447. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3448. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  3449. "microsoft.extensions.dependencyinjection.nuspec",
  3450. "useSharedDesignerContext.txt"
  3451. ]
  3452. },
  3453. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  3454. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  3455. "type": "package",
  3456. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  3457. "files": [
  3458. ".nupkg.metadata",
  3459. ".signature.p7s",
  3460. "Icon.png",
  3461. "LICENSE.TXT",
  3462. "PACKAGE.md",
  3463. "THIRD-PARTY-NOTICES.TXT",
  3464. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3465. "buildTransitive/net462/_._",
  3466. "buildTransitive/net6.0/_._",
  3467. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3468. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3469. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3470. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3471. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3472. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3473. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3474. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3475. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3476. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3477. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3478. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3479. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3480. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  3481. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3482. "useSharedDesignerContext.txt"
  3483. ]
  3484. },
  3485. "Microsoft.Extensions.DependencyModel/3.1.6": {
  3486. "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==",
  3487. "type": "package",
  3488. "path": "microsoft.extensions.dependencymodel/3.1.6",
  3489. "files": [
  3490. ".nupkg.metadata",
  3491. ".signature.p7s",
  3492. "Icon.png",
  3493. "LICENSE.TXT",
  3494. "THIRD-PARTY-NOTICES.TXT",
  3495. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  3496. "lib/net451/Microsoft.Extensions.DependencyModel.xml",
  3497. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  3498. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml",
  3499. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  3500. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml",
  3501. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3502. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3503. "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512",
  3504. "microsoft.extensions.dependencymodel.nuspec"
  3505. ]
  3506. },
  3507. "Microsoft.Extensions.Diagnostics/8.0.0": {
  3508. "sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==",
  3509. "type": "package",
  3510. "path": "microsoft.extensions.diagnostics/8.0.0",
  3511. "files": [
  3512. ".nupkg.metadata",
  3513. ".signature.p7s",
  3514. "Icon.png",
  3515. "LICENSE.TXT",
  3516. "THIRD-PARTY-NOTICES.TXT",
  3517. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets",
  3518. "buildTransitive/net462/_._",
  3519. "buildTransitive/net6.0/_._",
  3520. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets",
  3521. "lib/net462/Microsoft.Extensions.Diagnostics.dll",
  3522. "lib/net462/Microsoft.Extensions.Diagnostics.xml",
  3523. "lib/net6.0/Microsoft.Extensions.Diagnostics.dll",
  3524. "lib/net6.0/Microsoft.Extensions.Diagnostics.xml",
  3525. "lib/net7.0/Microsoft.Extensions.Diagnostics.dll",
  3526. "lib/net7.0/Microsoft.Extensions.Diagnostics.xml",
  3527. "lib/net8.0/Microsoft.Extensions.Diagnostics.dll",
  3528. "lib/net8.0/Microsoft.Extensions.Diagnostics.xml",
  3529. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll",
  3530. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml",
  3531. "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
  3532. "microsoft.extensions.diagnostics.nuspec",
  3533. "useSharedDesignerContext.txt"
  3534. ]
  3535. },
  3536. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  3537. "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
  3538. "type": "package",
  3539. "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
  3540. "files": [
  3541. ".nupkg.metadata",
  3542. ".signature.p7s",
  3543. "Icon.png",
  3544. "LICENSE.TXT",
  3545. "THIRD-PARTY-NOTICES.TXT",
  3546. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  3547. "buildTransitive/net462/_._",
  3548. "buildTransitive/net6.0/_._",
  3549. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  3550. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3551. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3552. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3553. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3554. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3555. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3556. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3557. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3558. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3559. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3560. "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
  3561. "microsoft.extensions.diagnostics.abstractions.nuspec",
  3562. "useSharedDesignerContext.txt"
  3563. ]
  3564. },
  3565. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  3566. "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
  3567. "type": "package",
  3568. "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
  3569. "files": [
  3570. ".nupkg.metadata",
  3571. ".signature.p7s",
  3572. "Icon.png",
  3573. "LICENSE.TXT",
  3574. "PACKAGE.md",
  3575. "THIRD-PARTY-NOTICES.TXT",
  3576. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
  3577. "buildTransitive/net462/_._",
  3578. "buildTransitive/net6.0/_._",
  3579. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  3580. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3581. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3582. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3583. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3584. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3585. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3586. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3587. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3588. "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
  3589. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3590. "useSharedDesignerContext.txt"
  3591. ]
  3592. },
  3593. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  3594. "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
  3595. "type": "package",
  3596. "path": "microsoft.extensions.fileproviders.physical/8.0.0",
  3597. "files": [
  3598. ".nupkg.metadata",
  3599. ".signature.p7s",
  3600. "Icon.png",
  3601. "LICENSE.TXT",
  3602. "PACKAGE.md",
  3603. "THIRD-PARTY-NOTICES.TXT",
  3604. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
  3605. "buildTransitive/net462/_._",
  3606. "buildTransitive/net6.0/_._",
  3607. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  3608. "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
  3609. "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
  3610. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3611. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3612. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3613. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3614. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3615. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3616. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3617. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3618. "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
  3619. "microsoft.extensions.fileproviders.physical.nuspec",
  3620. "useSharedDesignerContext.txt"
  3621. ]
  3622. },
  3623. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  3624. "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
  3625. "type": "package",
  3626. "path": "microsoft.extensions.filesystemglobbing/8.0.0",
  3627. "files": [
  3628. ".nupkg.metadata",
  3629. ".signature.p7s",
  3630. "Icon.png",
  3631. "LICENSE.TXT",
  3632. "PACKAGE.md",
  3633. "THIRD-PARTY-NOTICES.TXT",
  3634. "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
  3635. "buildTransitive/net462/_._",
  3636. "buildTransitive/net6.0/_._",
  3637. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  3638. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
  3639. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
  3640. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3641. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3642. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3643. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3644. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3645. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3646. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3647. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3648. "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
  3649. "microsoft.extensions.filesystemglobbing.nuspec",
  3650. "useSharedDesignerContext.txt"
  3651. ]
  3652. },
  3653. "Microsoft.Extensions.Hosting/8.0.0": {
  3654. "sha512": "ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==",
  3655. "type": "package",
  3656. "path": "microsoft.extensions.hosting/8.0.0",
  3657. "files": [
  3658. ".nupkg.metadata",
  3659. ".signature.p7s",
  3660. "Icon.png",
  3661. "LICENSE.TXT",
  3662. "PACKAGE.md",
  3663. "THIRD-PARTY-NOTICES.TXT",
  3664. "buildTransitive/net461/Microsoft.Extensions.Hosting.targets",
  3665. "buildTransitive/net462/_._",
  3666. "buildTransitive/net6.0/_._",
  3667. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets",
  3668. "lib/net462/Microsoft.Extensions.Hosting.dll",
  3669. "lib/net462/Microsoft.Extensions.Hosting.xml",
  3670. "lib/net6.0/Microsoft.Extensions.Hosting.dll",
  3671. "lib/net6.0/Microsoft.Extensions.Hosting.xml",
  3672. "lib/net7.0/Microsoft.Extensions.Hosting.dll",
  3673. "lib/net7.0/Microsoft.Extensions.Hosting.xml",
  3674. "lib/net8.0/Microsoft.Extensions.Hosting.dll",
  3675. "lib/net8.0/Microsoft.Extensions.Hosting.xml",
  3676. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  3677. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  3678. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  3679. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  3680. "microsoft.extensions.hosting.8.0.0.nupkg.sha512",
  3681. "microsoft.extensions.hosting.nuspec",
  3682. "useSharedDesignerContext.txt"
  3683. ]
  3684. },
  3685. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  3686. "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
  3687. "type": "package",
  3688. "path": "microsoft.extensions.hosting.abstractions/8.0.0",
  3689. "files": [
  3690. ".nupkg.metadata",
  3691. ".signature.p7s",
  3692. "Icon.png",
  3693. "LICENSE.TXT",
  3694. "PACKAGE.md",
  3695. "THIRD-PARTY-NOTICES.TXT",
  3696. "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
  3697. "buildTransitive/net462/_._",
  3698. "buildTransitive/net6.0/_._",
  3699. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
  3700. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
  3701. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
  3702. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3703. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3704. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3705. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3706. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3707. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3708. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3709. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3710. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3711. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3712. "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
  3713. "microsoft.extensions.hosting.abstractions.nuspec",
  3714. "useSharedDesignerContext.txt"
  3715. ]
  3716. },
  3717. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  3718. "sha512": "8JIvU6R9fejZj/p6QATeDaNEPtIvLuwE5Uh7qyPx7tp+Fc9FqYaAe6ylU2dM839IUpmsU4ZVev956slZyrYEhQ==",
  3719. "type": "package",
  3720. "path": "microsoft.extensions.hosting.windowsservices/8.0.0",
  3721. "files": [
  3722. ".nupkg.metadata",
  3723. ".signature.p7s",
  3724. "Icon.png",
  3725. "LICENSE.TXT",
  3726. "PACKAGE.md",
  3727. "THIRD-PARTY-NOTICES.TXT",
  3728. "buildTransitive/net461/Microsoft.Extensions.Hosting.WindowsServices.targets",
  3729. "buildTransitive/net462/_._",
  3730. "buildTransitive/net6.0/_._",
  3731. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets",
  3732. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3733. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3734. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3735. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3736. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3737. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3738. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3739. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3740. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3741. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3742. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3743. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3744. "microsoft.extensions.hosting.windowsservices.8.0.0.nupkg.sha512",
  3745. "microsoft.extensions.hosting.windowsservices.nuspec",
  3746. "useSharedDesignerContext.txt"
  3747. ]
  3748. },
  3749. "Microsoft.Extensions.Logging/8.0.0": {
  3750. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  3751. "type": "package",
  3752. "path": "microsoft.extensions.logging/8.0.0",
  3753. "files": [
  3754. ".nupkg.metadata",
  3755. ".signature.p7s",
  3756. "Icon.png",
  3757. "LICENSE.TXT",
  3758. "PACKAGE.md",
  3759. "THIRD-PARTY-NOTICES.TXT",
  3760. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  3761. "buildTransitive/net462/_._",
  3762. "buildTransitive/net6.0/_._",
  3763. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  3764. "lib/net462/Microsoft.Extensions.Logging.dll",
  3765. "lib/net462/Microsoft.Extensions.Logging.xml",
  3766. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  3767. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  3768. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  3769. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  3770. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  3771. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  3772. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3773. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3774. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3775. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3776. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  3777. "microsoft.extensions.logging.nuspec",
  3778. "useSharedDesignerContext.txt"
  3779. ]
  3780. },
  3781. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  3782. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  3783. "type": "package",
  3784. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  3785. "files": [
  3786. ".nupkg.metadata",
  3787. ".signature.p7s",
  3788. "Icon.png",
  3789. "LICENSE.TXT",
  3790. "PACKAGE.md",
  3791. "THIRD-PARTY-NOTICES.TXT",
  3792. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3793. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3794. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3795. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3796. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3797. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3798. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3799. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3800. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3801. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3802. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3803. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3804. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3805. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3806. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3807. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3808. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3809. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3810. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3811. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3812. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3813. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3814. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3815. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3816. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3817. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3818. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3819. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3820. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  3821. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3822. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3823. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3824. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3825. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3826. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3827. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3828. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3829. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3830. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3831. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3832. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3833. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3834. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  3835. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  3836. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3837. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3838. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3839. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  3840. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  3841. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3842. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3843. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3844. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3845. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3846. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3847. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3848. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3849. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  3850. "microsoft.extensions.logging.abstractions.nuspec",
  3851. "useSharedDesignerContext.txt"
  3852. ]
  3853. },
  3854. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  3855. "sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==",
  3856. "type": "package",
  3857. "path": "microsoft.extensions.logging.configuration/8.0.0",
  3858. "files": [
  3859. ".nupkg.metadata",
  3860. ".signature.p7s",
  3861. "Icon.png",
  3862. "LICENSE.TXT",
  3863. "THIRD-PARTY-NOTICES.TXT",
  3864. "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets",
  3865. "buildTransitive/net462/_._",
  3866. "buildTransitive/net6.0/_._",
  3867. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets",
  3868. "lib/net462/Microsoft.Extensions.Logging.Configuration.dll",
  3869. "lib/net462/Microsoft.Extensions.Logging.Configuration.xml",
  3870. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll",
  3871. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml",
  3872. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll",
  3873. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml",
  3874. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll",
  3875. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml",
  3876. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3877. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3878. "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512",
  3879. "microsoft.extensions.logging.configuration.nuspec",
  3880. "useSharedDesignerContext.txt"
  3881. ]
  3882. },
  3883. "Microsoft.Extensions.Logging.Console/8.0.0": {
  3884. "sha512": "e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==",
  3885. "type": "package",
  3886. "path": "microsoft.extensions.logging.console/8.0.0",
  3887. "files": [
  3888. ".nupkg.metadata",
  3889. ".signature.p7s",
  3890. "Icon.png",
  3891. "LICENSE.TXT",
  3892. "PACKAGE.md",
  3893. "THIRD-PARTY-NOTICES.TXT",
  3894. "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets",
  3895. "buildTransitive/net462/_._",
  3896. "buildTransitive/net6.0/_._",
  3897. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets",
  3898. "lib/net462/Microsoft.Extensions.Logging.Console.dll",
  3899. "lib/net462/Microsoft.Extensions.Logging.Console.xml",
  3900. "lib/net6.0/Microsoft.Extensions.Logging.Console.dll",
  3901. "lib/net6.0/Microsoft.Extensions.Logging.Console.xml",
  3902. "lib/net7.0/Microsoft.Extensions.Logging.Console.dll",
  3903. "lib/net7.0/Microsoft.Extensions.Logging.Console.xml",
  3904. "lib/net8.0/Microsoft.Extensions.Logging.Console.dll",
  3905. "lib/net8.0/Microsoft.Extensions.Logging.Console.xml",
  3906. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3907. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3908. "microsoft.extensions.logging.console.8.0.0.nupkg.sha512",
  3909. "microsoft.extensions.logging.console.nuspec",
  3910. "useSharedDesignerContext.txt"
  3911. ]
  3912. },
  3913. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  3914. "sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
  3915. "type": "package",
  3916. "path": "microsoft.extensions.logging.debug/8.0.0",
  3917. "files": [
  3918. ".nupkg.metadata",
  3919. ".signature.p7s",
  3920. "Icon.png",
  3921. "LICENSE.TXT",
  3922. "PACKAGE.md",
  3923. "THIRD-PARTY-NOTICES.TXT",
  3924. "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets",
  3925. "buildTransitive/net462/_._",
  3926. "buildTransitive/net6.0/_._",
  3927. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets",
  3928. "lib/net462/Microsoft.Extensions.Logging.Debug.dll",
  3929. "lib/net462/Microsoft.Extensions.Logging.Debug.xml",
  3930. "lib/net6.0/Microsoft.Extensions.Logging.Debug.dll",
  3931. "lib/net6.0/Microsoft.Extensions.Logging.Debug.xml",
  3932. "lib/net7.0/Microsoft.Extensions.Logging.Debug.dll",
  3933. "lib/net7.0/Microsoft.Extensions.Logging.Debug.xml",
  3934. "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll",
  3935. "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml",
  3936. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  3937. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  3938. "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512",
  3939. "microsoft.extensions.logging.debug.nuspec",
  3940. "useSharedDesignerContext.txt"
  3941. ]
  3942. },
  3943. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  3944. "sha512": "3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==",
  3945. "type": "package",
  3946. "path": "microsoft.extensions.logging.eventlog/8.0.0",
  3947. "files": [
  3948. ".nupkg.metadata",
  3949. ".signature.p7s",
  3950. "Icon.png",
  3951. "LICENSE.TXT",
  3952. "THIRD-PARTY-NOTICES.TXT",
  3953. "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets",
  3954. "buildTransitive/net462/_._",
  3955. "buildTransitive/net6.0/_._",
  3956. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets",
  3957. "lib/net462/Microsoft.Extensions.Logging.EventLog.dll",
  3958. "lib/net462/Microsoft.Extensions.Logging.EventLog.xml",
  3959. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.dll",
  3960. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.xml",
  3961. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.dll",
  3962. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.xml",
  3963. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll",
  3964. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml",
  3965. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  3966. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  3967. "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512",
  3968. "microsoft.extensions.logging.eventlog.nuspec",
  3969. "useSharedDesignerContext.txt"
  3970. ]
  3971. },
  3972. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  3973. "sha512": "oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==",
  3974. "type": "package",
  3975. "path": "microsoft.extensions.logging.eventsource/8.0.0",
  3976. "files": [
  3977. ".nupkg.metadata",
  3978. ".signature.p7s",
  3979. "Icon.png",
  3980. "LICENSE.TXT",
  3981. "THIRD-PARTY-NOTICES.TXT",
  3982. "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets",
  3983. "buildTransitive/net462/_._",
  3984. "buildTransitive/net6.0/_._",
  3985. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets",
  3986. "lib/net462/Microsoft.Extensions.Logging.EventSource.dll",
  3987. "lib/net462/Microsoft.Extensions.Logging.EventSource.xml",
  3988. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll",
  3989. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml",
  3990. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.dll",
  3991. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.xml",
  3992. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll",
  3993. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml",
  3994. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  3995. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  3996. "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512",
  3997. "microsoft.extensions.logging.eventsource.nuspec",
  3998. "useSharedDesignerContext.txt"
  3999. ]
  4000. },
  4001. "Microsoft.Extensions.Options/8.0.0": {
  4002. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  4003. "type": "package",
  4004. "path": "microsoft.extensions.options/8.0.0",
  4005. "files": [
  4006. ".nupkg.metadata",
  4007. ".signature.p7s",
  4008. "Icon.png",
  4009. "LICENSE.TXT",
  4010. "PACKAGE.md",
  4011. "THIRD-PARTY-NOTICES.TXT",
  4012. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  4013. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4014. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4015. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4016. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4017. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4018. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4019. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4020. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4021. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4022. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4023. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4024. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4025. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4026. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  4027. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  4028. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  4029. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  4030. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  4031. "lib/net462/Microsoft.Extensions.Options.dll",
  4032. "lib/net462/Microsoft.Extensions.Options.xml",
  4033. "lib/net6.0/Microsoft.Extensions.Options.dll",
  4034. "lib/net6.0/Microsoft.Extensions.Options.xml",
  4035. "lib/net7.0/Microsoft.Extensions.Options.dll",
  4036. "lib/net7.0/Microsoft.Extensions.Options.xml",
  4037. "lib/net8.0/Microsoft.Extensions.Options.dll",
  4038. "lib/net8.0/Microsoft.Extensions.Options.xml",
  4039. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4040. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4041. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  4042. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  4043. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  4044. "microsoft.extensions.options.nuspec",
  4045. "useSharedDesignerContext.txt"
  4046. ]
  4047. },
  4048. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  4049. "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
  4050. "type": "package",
  4051. "path": "microsoft.extensions.options.configurationextensions/8.0.0",
  4052. "files": [
  4053. ".nupkg.metadata",
  4054. ".signature.p7s",
  4055. "Icon.png",
  4056. "LICENSE.TXT",
  4057. "PACKAGE.md",
  4058. "THIRD-PARTY-NOTICES.TXT",
  4059. "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  4060. "buildTransitive/net462/_._",
  4061. "buildTransitive/net6.0/_._",
  4062. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  4063. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4064. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4065. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4066. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4067. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4068. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4069. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4070. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4071. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4072. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4073. "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
  4074. "microsoft.extensions.options.configurationextensions.nuspec",
  4075. "useSharedDesignerContext.txt"
  4076. ]
  4077. },
  4078. "Microsoft.Extensions.Primitives/8.0.0": {
  4079. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  4080. "type": "package",
  4081. "path": "microsoft.extensions.primitives/8.0.0",
  4082. "files": [
  4083. ".nupkg.metadata",
  4084. ".signature.p7s",
  4085. "Icon.png",
  4086. "LICENSE.TXT",
  4087. "PACKAGE.md",
  4088. "THIRD-PARTY-NOTICES.TXT",
  4089. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  4090. "buildTransitive/net462/_._",
  4091. "buildTransitive/net6.0/_._",
  4092. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  4093. "lib/net462/Microsoft.Extensions.Primitives.dll",
  4094. "lib/net462/Microsoft.Extensions.Primitives.xml",
  4095. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  4096. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  4097. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  4098. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  4099. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  4100. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  4101. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4102. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4103. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  4104. "microsoft.extensions.primitives.nuspec",
  4105. "useSharedDesignerContext.txt"
  4106. ]
  4107. },
  4108. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  4109. "sha512": "GiQzMSzHQWPhnjpn/xy6SGcjtN8ZJbhB9ZEg3RglJ64QwH+VGp7xEpIN674UgjSDF+jJSrAY4/7/2S6F7Nh0hw==",
  4110. "type": "package",
  4111. "path": "microsoft.identitymodel.abstractions/7.4.1",
  4112. "files": [
  4113. ".nupkg.metadata",
  4114. ".signature.p7s",
  4115. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  4116. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  4117. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  4118. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  4119. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  4120. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  4121. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  4122. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  4123. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  4124. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  4125. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  4126. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  4127. "microsoft.identitymodel.abstractions.7.4.1.nupkg.sha512",
  4128. "microsoft.identitymodel.abstractions.nuspec"
  4129. ]
  4130. },
  4131. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  4132. "sha512": "RnrQO8IniImY6qrC9qYDc7UBcbPF7+Dp14ee9TqKnlB2/oyIKq8Q3tJ/65zgYvfV4p6iMYLpi+W8C/36J58cIg==",
  4133. "type": "package",
  4134. "path": "microsoft.identitymodel.jsonwebtokens/7.4.1",
  4135. "files": [
  4136. ".nupkg.metadata",
  4137. ".signature.p7s",
  4138. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  4139. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  4140. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  4141. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  4142. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  4143. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  4144. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4145. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4146. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4147. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4148. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4149. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4150. "microsoft.identitymodel.jsonwebtokens.7.4.1.nupkg.sha512",
  4151. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4152. ]
  4153. },
  4154. "Microsoft.IdentityModel.Logging/7.4.1": {
  4155. "sha512": "QsNBNAdoTP+JxBqqMw3isVeV86z2b+ka94Pue3eRRz8O15mfHhcSnb10IM+aqavAaxCO+EwNu5F/yyRlQ0usWg==",
  4156. "type": "package",
  4157. "path": "microsoft.identitymodel.logging/7.4.1",
  4158. "files": [
  4159. ".nupkg.metadata",
  4160. ".signature.p7s",
  4161. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  4162. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  4163. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  4164. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  4165. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  4166. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  4167. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  4168. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  4169. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  4170. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  4171. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4172. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4173. "microsoft.identitymodel.logging.7.4.1.nupkg.sha512",
  4174. "microsoft.identitymodel.logging.nuspec"
  4175. ]
  4176. },
  4177. "Microsoft.IdentityModel.Tokens/7.4.1": {
  4178. "sha512": "akl3hQWdj87XkSRahwhrmx9ZfchF97RZoKr9v9fwjrpQz3t0x8lnsjcOfButSS6cvyY/EX0HJuXb5hgkqFjP/g==",
  4179. "type": "package",
  4180. "path": "microsoft.identitymodel.tokens/7.4.1",
  4181. "files": [
  4182. ".nupkg.metadata",
  4183. ".signature.p7s",
  4184. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  4185. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  4186. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  4187. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  4188. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  4189. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  4190. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  4191. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  4192. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  4193. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  4194. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  4195. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  4196. "microsoft.identitymodel.tokens.7.4.1.nupkg.sha512",
  4197. "microsoft.identitymodel.tokens.nuspec"
  4198. ]
  4199. },
  4200. "Microsoft.NETCore.Platforms/2.1.2": {
  4201. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  4202. "type": "package",
  4203. "path": "microsoft.netcore.platforms/2.1.2",
  4204. "files": [
  4205. ".nupkg.metadata",
  4206. ".signature.p7s",
  4207. "LICENSE.TXT",
  4208. "THIRD-PARTY-NOTICES.TXT",
  4209. "lib/netstandard1.0/_._",
  4210. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  4211. "microsoft.netcore.platforms.nuspec",
  4212. "runtime.json",
  4213. "useSharedDesignerContext.txt",
  4214. "version.txt"
  4215. ]
  4216. },
  4217. "Microsoft.NETCore.Targets/3.0.0": {
  4218. "sha512": "WOwoFoWQ+/njjM0pKbnkKTBo8q3NphEOtu1zMXbqRoWsI07JSXWSycgN3cdM+NlhkXxH4TNEFtI5Pjm94N6DLw==",
  4219. "type": "package",
  4220. "path": "microsoft.netcore.targets/3.0.0",
  4221. "files": [
  4222. ".nupkg.metadata",
  4223. ".signature.p7s",
  4224. "LICENSE.TXT",
  4225. "THIRD-PARTY-NOTICES.TXT",
  4226. "lib/netstandard1.0/_._",
  4227. "microsoft.netcore.targets.3.0.0.nupkg.sha512",
  4228. "microsoft.netcore.targets.nuspec",
  4229. "useSharedDesignerContext.txt",
  4230. "version.txt"
  4231. ]
  4232. },
  4233. "Microsoft.OpenApi/1.3.1": {
  4234. "sha512": "2X5CCFJCnx6v86fnpOg4TKlU1ba7MSf1yakeT7VI4846s7i6fOkERwStX94Rcq8wJsLyQYsUitd6vR38viePeA==",
  4235. "type": "package",
  4236. "path": "microsoft.openapi/1.3.1",
  4237. "files": [
  4238. ".nupkg.metadata",
  4239. ".signature.p7s",
  4240. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4241. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4242. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4243. "microsoft.openapi.1.3.1.nupkg.sha512",
  4244. "microsoft.openapi.nuspec"
  4245. ]
  4246. },
  4247. "Microsoft.Win32.Primitives/4.0.1": {
  4248. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  4249. "type": "package",
  4250. "path": "microsoft.win32.primitives/4.0.1",
  4251. "files": [
  4252. ".nupkg.metadata",
  4253. "ThirdPartyNotices.txt",
  4254. "dotnet_library_license.txt",
  4255. "lib/MonoAndroid10/_._",
  4256. "lib/MonoTouch10/_._",
  4257. "lib/net46/Microsoft.Win32.Primitives.dll",
  4258. "lib/xamarinios10/_._",
  4259. "lib/xamarinmac20/_._",
  4260. "lib/xamarintvos10/_._",
  4261. "lib/xamarinwatchos10/_._",
  4262. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  4263. "microsoft.win32.primitives.nuspec",
  4264. "ref/MonoAndroid10/_._",
  4265. "ref/MonoTouch10/_._",
  4266. "ref/net46/Microsoft.Win32.Primitives.dll",
  4267. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4268. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4269. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4270. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4271. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4272. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4273. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4274. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4275. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4276. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4277. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4278. "ref/xamarinios10/_._",
  4279. "ref/xamarinmac20/_._",
  4280. "ref/xamarintvos10/_._",
  4281. "ref/xamarinwatchos10/_._"
  4282. ]
  4283. },
  4284. "Microsoft.Win32.SystemEvents/6.0.0": {
  4285. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  4286. "type": "package",
  4287. "path": "microsoft.win32.systemevents/6.0.0",
  4288. "files": [
  4289. ".nupkg.metadata",
  4290. ".signature.p7s",
  4291. "Icon.png",
  4292. "LICENSE.TXT",
  4293. "THIRD-PARTY-NOTICES.TXT",
  4294. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  4295. "buildTransitive/netcoreapp3.1/_._",
  4296. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4297. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4298. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4299. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4300. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  4301. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  4302. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4303. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4304. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  4305. "microsoft.win32.systemevents.nuspec",
  4306. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4307. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4308. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  4309. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  4310. "useSharedDesignerContext.txt"
  4311. ]
  4312. },
  4313. "MySql.Data/8.0.22": {
  4314. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  4315. "type": "package",
  4316. "path": "mysql.data/8.0.22",
  4317. "files": [
  4318. ".nupkg.metadata",
  4319. ".signature.p7s",
  4320. "lib/net452/MySql.Data.dll",
  4321. "lib/net452/MySql.Data.xml",
  4322. "lib/net452/Ubiety.Dns.Core.dll",
  4323. "lib/net452/Zstandard.Net.dll",
  4324. "lib/net48/MySql.Data.dll",
  4325. "lib/net48/MySql.Data.xml",
  4326. "lib/net48/Ubiety.Dns.Core.dll",
  4327. "lib/net48/Zstandard.Net.dll",
  4328. "lib/net5.0/MySql.Data.dll",
  4329. "lib/net5.0/MySql.Data.xml",
  4330. "lib/net5.0/Ubiety.Dns.Core.dll",
  4331. "lib/net5.0/Zstandard.Net.dll",
  4332. "lib/netstandard2.0/MySql.Data.dll",
  4333. "lib/netstandard2.0/MySql.Data.xml",
  4334. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4335. "lib/netstandard2.0/Zstandard.Net.dll",
  4336. "lib/netstandard2.1/MySql.Data.dll",
  4337. "lib/netstandard2.1/MySql.Data.xml",
  4338. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4339. "lib/netstandard2.1/Zstandard.Net.dll",
  4340. "mysql.data.8.0.22.nupkg.sha512",
  4341. "mysql.data.nuspec"
  4342. ]
  4343. },
  4344. "MySql.Data.EntityFrameworkCore/8.0.22": {
  4345. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  4346. "type": "package",
  4347. "path": "mysql.data.entityframeworkcore/8.0.22",
  4348. "files": [
  4349. ".nupkg.metadata",
  4350. ".signature.p7s",
  4351. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  4352. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  4353. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  4354. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  4355. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  4356. "mysql.data.entityframeworkcore.nuspec"
  4357. ]
  4358. },
  4359. "NETStandard.Library/1.6.0": {
  4360. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  4361. "type": "package",
  4362. "path": "netstandard.library/1.6.0",
  4363. "files": [
  4364. ".nupkg.metadata",
  4365. "ThirdPartyNotices.txt",
  4366. "dotnet_library_license.txt",
  4367. "netstandard.library.1.6.0.nupkg.sha512",
  4368. "netstandard.library.nuspec"
  4369. ]
  4370. },
  4371. "Newtonsoft.Json/13.0.3": {
  4372. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4373. "type": "package",
  4374. "path": "newtonsoft.json/13.0.3",
  4375. "files": [
  4376. ".nupkg.metadata",
  4377. ".signature.p7s",
  4378. "LICENSE.md",
  4379. "README.md",
  4380. "lib/net20/Newtonsoft.Json.dll",
  4381. "lib/net20/Newtonsoft.Json.xml",
  4382. "lib/net35/Newtonsoft.Json.dll",
  4383. "lib/net35/Newtonsoft.Json.xml",
  4384. "lib/net40/Newtonsoft.Json.dll",
  4385. "lib/net40/Newtonsoft.Json.xml",
  4386. "lib/net45/Newtonsoft.Json.dll",
  4387. "lib/net45/Newtonsoft.Json.xml",
  4388. "lib/net6.0/Newtonsoft.Json.dll",
  4389. "lib/net6.0/Newtonsoft.Json.xml",
  4390. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4391. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4392. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4393. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4394. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4395. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4396. "newtonsoft.json.13.0.3.nupkg.sha512",
  4397. "newtonsoft.json.nuspec",
  4398. "packageIcon.png"
  4399. ]
  4400. },
  4401. "NLog/5.2.8": {
  4402. "sha512": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ==",
  4403. "type": "package",
  4404. "path": "nlog/5.2.8",
  4405. "files": [
  4406. ".nupkg.metadata",
  4407. ".signature.p7s",
  4408. "N.png",
  4409. "lib/net35/NLog.dll",
  4410. "lib/net35/NLog.xml",
  4411. "lib/net45/NLog.dll",
  4412. "lib/net45/NLog.xml",
  4413. "lib/net46/NLog.dll",
  4414. "lib/net46/NLog.xml",
  4415. "lib/netstandard1.3/NLog.dll",
  4416. "lib/netstandard1.3/NLog.xml",
  4417. "lib/netstandard1.5/NLog.dll",
  4418. "lib/netstandard1.5/NLog.xml",
  4419. "lib/netstandard2.0/NLog.dll",
  4420. "lib/netstandard2.0/NLog.xml",
  4421. "nlog.5.2.8.nupkg.sha512",
  4422. "nlog.nuspec"
  4423. ]
  4424. },
  4425. "NLog.Extensions.Logging/5.3.8": {
  4426. "sha512": "6VD0lyeokWltL6j8lO7mS7v7lbuO/qn0F7kdvhKhEx1JvFyD39nzohOK3JvkVh4Nn3mrcMDCyDxvTvmiW55jQg==",
  4427. "type": "package",
  4428. "path": "nlog.extensions.logging/5.3.8",
  4429. "files": [
  4430. ".nupkg.metadata",
  4431. ".signature.p7s",
  4432. "N.png",
  4433. "README.md",
  4434. "lib/net461/NLog.Extensions.Logging.dll",
  4435. "lib/net461/NLog.Extensions.Logging.xml",
  4436. "lib/net6.0/NLog.Extensions.Logging.dll",
  4437. "lib/net6.0/NLog.Extensions.Logging.xml",
  4438. "lib/net8.0/NLog.Extensions.Logging.dll",
  4439. "lib/net8.0/NLog.Extensions.Logging.xml",
  4440. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  4441. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  4442. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  4443. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  4444. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  4445. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  4446. "lib/netstandard2.1/NLog.Extensions.Logging.dll",
  4447. "lib/netstandard2.1/NLog.Extensions.Logging.xml",
  4448. "nlog.extensions.logging.5.3.8.nupkg.sha512",
  4449. "nlog.extensions.logging.nuspec"
  4450. ]
  4451. },
  4452. "NLog.Web.AspNetCore/5.3.8": {
  4453. "sha512": "Rt2OCulpAF6rSrZWZzPgHikAI8SDKkq3/52xA/uJ4JtmNjoizULN/IBYtYlZojbPbXiFm3uadOO2rOvvMhjXBQ==",
  4454. "type": "package",
  4455. "path": "nlog.web.aspnetcore/5.3.8",
  4456. "files": [
  4457. ".nupkg.metadata",
  4458. ".signature.p7s",
  4459. "N.png",
  4460. "README.md",
  4461. "lib/net461/NLog.Web.AspNetCore.dll",
  4462. "lib/net461/NLog.Web.AspNetCore.xml",
  4463. "lib/net5.0/NLog.Web.AspNetCore.dll",
  4464. "lib/net5.0/NLog.Web.AspNetCore.xml",
  4465. "lib/net6.0/NLog.Web.AspNetCore.dll",
  4466. "lib/net6.0/NLog.Web.AspNetCore.xml",
  4467. "lib/net8.0/NLog.Web.AspNetCore.dll",
  4468. "lib/net8.0/NLog.Web.AspNetCore.xml",
  4469. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll",
  4470. "lib/netcoreapp3.1/NLog.Web.AspNetCore.xml",
  4471. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  4472. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  4473. "nlog.web.aspnetcore.5.3.8.nupkg.sha512",
  4474. "nlog.web.aspnetcore.nuspec"
  4475. ]
  4476. },
  4477. "Pipelines.Sockets.Unofficial/2.2.8": {
  4478. "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==",
  4479. "type": "package",
  4480. "path": "pipelines.sockets.unofficial/2.2.8",
  4481. "files": [
  4482. ".nupkg.metadata",
  4483. ".signature.p7s",
  4484. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  4485. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  4486. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  4487. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  4488. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  4489. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  4490. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  4491. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  4492. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  4493. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  4494. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  4495. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  4496. "pipelines.sockets.unofficial.2.2.8.nupkg.sha512",
  4497. "pipelines.sockets.unofficial.nuspec"
  4498. ]
  4499. },
  4500. "Quartz/3.8.1": {
  4501. "sha512": "HlKm+43iG8LmXfejL1kIijO107x8ozEShLT2PFIkOWNSHUj7O7yTl6icFrn6DocPvigudQ90a6h2gdFShOwyXw==",
  4502. "type": "package",
  4503. "path": "quartz/3.8.1",
  4504. "files": [
  4505. ".nupkg.metadata",
  4506. ".signature.p7s",
  4507. "lib/net462/Quartz.dll",
  4508. "lib/net462/Quartz.xml",
  4509. "lib/net472/Quartz.dll",
  4510. "lib/net472/Quartz.xml",
  4511. "lib/net6.0/Quartz.dll",
  4512. "lib/net6.0/Quartz.xml",
  4513. "lib/netstandard2.0/Quartz.dll",
  4514. "lib/netstandard2.0/Quartz.xml",
  4515. "quartz-logo-small.png",
  4516. "quartz.3.8.1.nupkg.sha512",
  4517. "quartz.nuspec",
  4518. "quick-start.md"
  4519. ]
  4520. },
  4521. "runtime.native.System/4.0.0": {
  4522. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  4523. "type": "package",
  4524. "path": "runtime.native.system/4.0.0",
  4525. "files": [
  4526. ".nupkg.metadata",
  4527. "ThirdPartyNotices.txt",
  4528. "dotnet_library_license.txt",
  4529. "lib/netstandard1.0/_._",
  4530. "runtime.native.system.4.0.0.nupkg.sha512",
  4531. "runtime.native.system.nuspec"
  4532. ]
  4533. },
  4534. "runtime.native.System.IO.Compression/4.1.0": {
  4535. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  4536. "type": "package",
  4537. "path": "runtime.native.system.io.compression/4.1.0",
  4538. "files": [
  4539. ".nupkg.metadata",
  4540. "ThirdPartyNotices.txt",
  4541. "dotnet_library_license.txt",
  4542. "lib/netstandard1.0/_._",
  4543. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  4544. "runtime.native.system.io.compression.nuspec"
  4545. ]
  4546. },
  4547. "runtime.native.System.Net.Http/4.0.1": {
  4548. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  4549. "type": "package",
  4550. "path": "runtime.native.system.net.http/4.0.1",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. "ThirdPartyNotices.txt",
  4554. "dotnet_library_license.txt",
  4555. "lib/netstandard1.0/_._",
  4556. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  4557. "runtime.native.system.net.http.nuspec"
  4558. ]
  4559. },
  4560. "runtime.native.System.Security.Cryptography/4.0.0": {
  4561. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  4562. "type": "package",
  4563. "path": "runtime.native.system.security.cryptography/4.0.0",
  4564. "files": [
  4565. ".nupkg.metadata",
  4566. "ThirdPartyNotices.txt",
  4567. "dotnet_library_license.txt",
  4568. "lib/netstandard1.0/_._",
  4569. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  4570. "runtime.native.system.security.cryptography.nuspec"
  4571. ]
  4572. },
  4573. "Scrutor/3.3.0": {
  4574. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  4575. "type": "package",
  4576. "path": "scrutor/3.3.0",
  4577. "files": [
  4578. ".nupkg.metadata",
  4579. ".signature.p7s",
  4580. "lib/net461/Scrutor.dll",
  4581. "lib/net461/Scrutor.pdb",
  4582. "lib/net461/Scrutor.xml",
  4583. "lib/netcoreapp3.1/Scrutor.dll",
  4584. "lib/netcoreapp3.1/Scrutor.pdb",
  4585. "lib/netcoreapp3.1/Scrutor.xml",
  4586. "lib/netstandard2.0/Scrutor.dll",
  4587. "lib/netstandard2.0/Scrutor.pdb",
  4588. "lib/netstandard2.0/Scrutor.xml",
  4589. "scrutor.3.3.0.nupkg.sha512",
  4590. "scrutor.nuspec"
  4591. ]
  4592. },
  4593. "SSH.NET/2016.1.0": {
  4594. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  4595. "type": "package",
  4596. "path": "ssh.net/2016.1.0",
  4597. "files": [
  4598. ".nupkg.metadata",
  4599. ".signature.p7s",
  4600. "lib/net35/Renci.SshNet.dll",
  4601. "lib/net35/Renci.SshNet.xml",
  4602. "lib/net40/Renci.SshNet.dll",
  4603. "lib/net40/Renci.SshNet.xml",
  4604. "lib/netstandard1.3/Renci.SshNet.dll",
  4605. "lib/netstandard1.3/Renci.SshNet.xml",
  4606. "lib/sl4/Renci.SshNet.dll",
  4607. "lib/sl4/Renci.SshNet.xml",
  4608. "lib/sl5/Renci.SshNet.dll",
  4609. "lib/sl5/Renci.SshNet.xml",
  4610. "lib/uap10/Renci.SshNet.dll",
  4611. "lib/uap10/Renci.SshNet.xml",
  4612. "lib/wp71/Renci.SshNet.dll",
  4613. "lib/wp71/Renci.SshNet.xml",
  4614. "lib/wp8/Renci.SshNet.dll",
  4615. "lib/wp8/Renci.SshNet.xml",
  4616. "ssh.net.2016.1.0.nupkg.sha512",
  4617. "ssh.net.nuspec"
  4618. ]
  4619. },
  4620. "SshNet.Security.Cryptography/1.2.0": {
  4621. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  4622. "type": "package",
  4623. "path": "sshnet.security.cryptography/1.2.0",
  4624. "files": [
  4625. ".nupkg.metadata",
  4626. ".signature.p7s",
  4627. "lib/net20/SshNet.Security.Cryptography.dll",
  4628. "lib/net20/SshNet.Security.Cryptography.xml",
  4629. "lib/net40/SshNet.Security.Cryptography.dll",
  4630. "lib/net40/SshNet.Security.Cryptography.xml",
  4631. "lib/net45/SshNet.Security.Cryptography.dll",
  4632. "lib/net45/SshNet.Security.Cryptography.xml",
  4633. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4634. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4635. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4636. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4637. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4638. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4639. "lib/sl4/SshNet.Security.Cryptography.dll",
  4640. "lib/sl4/SshNet.Security.Cryptography.xml",
  4641. "lib/sl5/SshNet.Security.Cryptography.dll",
  4642. "lib/sl5/SshNet.Security.Cryptography.xml",
  4643. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4644. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4645. "lib/wp71/SshNet.Security.Cryptography.dll",
  4646. "lib/wp71/SshNet.Security.Cryptography.xml",
  4647. "lib/wp8/SshNet.Security.Cryptography.dll",
  4648. "lib/wp8/SshNet.Security.Cryptography.xml",
  4649. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  4650. "sshnet.security.cryptography.nuspec"
  4651. ]
  4652. },
  4653. "StackExchange.Redis/2.7.33": {
  4654. "sha512": "2kCX5fvhEE824a4Ab5Imyi8DRuGuTxyklXV01kegkRpsWJcPmO6+GAQ+HegKxvXAxlXZ8yaRspvWJ8t3mMClfQ==",
  4655. "type": "package",
  4656. "path": "stackexchange.redis/2.7.33",
  4657. "files": [
  4658. ".nupkg.metadata",
  4659. ".signature.p7s",
  4660. "lib/net461/StackExchange.Redis.dll",
  4661. "lib/net461/StackExchange.Redis.xml",
  4662. "lib/net472/StackExchange.Redis.dll",
  4663. "lib/net472/StackExchange.Redis.xml",
  4664. "lib/net6.0/StackExchange.Redis.dll",
  4665. "lib/net6.0/StackExchange.Redis.xml",
  4666. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  4667. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  4668. "lib/netstandard2.0/StackExchange.Redis.dll",
  4669. "lib/netstandard2.0/StackExchange.Redis.xml",
  4670. "stackexchange.redis.2.7.33.nupkg.sha512",
  4671. "stackexchange.redis.nuspec"
  4672. ]
  4673. },
  4674. "Swashbuckle.AspNetCore/6.5.0": {
  4675. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  4676. "type": "package",
  4677. "path": "swashbuckle.aspnetcore/6.5.0",
  4678. "files": [
  4679. ".nupkg.metadata",
  4680. ".signature.p7s",
  4681. "build/Swashbuckle.AspNetCore.props",
  4682. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  4683. "swashbuckle.aspnetcore.nuspec"
  4684. ]
  4685. },
  4686. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  4687. "sha512": "CQbJaQdelQGmgZR48FmITGYdfjXTG//hGpSEOwv3cLU5md8c6+YRY23KydX44IXRmHGAYwXrBlnuy98Daoa0zw==",
  4688. "type": "package",
  4689. "path": "swashbuckle.aspnetcore.filters/8.0.1",
  4690. "files": [
  4691. ".nupkg.metadata",
  4692. ".signature.p7s",
  4693. "README.md",
  4694. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  4695. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  4696. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  4697. "swashbuckle.aspnetcore.filters.8.0.1.nupkg.sha512",
  4698. "swashbuckle.aspnetcore.filters.nuspec"
  4699. ]
  4700. },
  4701. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  4702. "sha512": "HaMNzwz544xccQ0vn1jYK6UY9XZcgZRYYI4NaBAdow2oj0UycN6zdryoaaCa2S9D9Cu1qjsbdjp2FthYqM/wpQ==",
  4703. "type": "package",
  4704. "path": "swashbuckle.aspnetcore.filters.abstractions/8.0.1",
  4705. "files": [
  4706. ".nupkg.metadata",
  4707. ".signature.p7s",
  4708. "README.md",
  4709. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  4710. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  4711. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  4712. "swashbuckle.aspnetcore.filters.abstractions.8.0.1.nupkg.sha512",
  4713. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  4714. ]
  4715. },
  4716. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  4717. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  4718. "type": "package",
  4719. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  4720. "files": [
  4721. ".nupkg.metadata",
  4722. ".signature.p7s",
  4723. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  4724. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4725. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  4726. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  4727. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4728. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  4729. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  4730. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4731. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  4732. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4733. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4734. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4735. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4736. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4737. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4738. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  4739. "swashbuckle.aspnetcore.swagger.nuspec"
  4740. ]
  4741. },
  4742. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  4743. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  4744. "type": "package",
  4745. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  4746. "files": [
  4747. ".nupkg.metadata",
  4748. ".signature.p7s",
  4749. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4750. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4751. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4752. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4753. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4754. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4755. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4756. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4757. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4758. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4759. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4760. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4761. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4762. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4763. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4764. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  4765. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4766. ]
  4767. },
  4768. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  4769. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  4770. "type": "package",
  4771. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  4772. "files": [
  4773. ".nupkg.metadata",
  4774. ".signature.p7s",
  4775. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4776. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4777. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4778. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4779. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4780. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4781. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4782. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4783. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4784. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4785. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4786. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4787. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4788. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4789. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4790. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  4791. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4792. ]
  4793. },
  4794. "System.AppContext/4.1.0": {
  4795. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  4796. "type": "package",
  4797. "path": "system.appcontext/4.1.0",
  4798. "files": [
  4799. ".nupkg.metadata",
  4800. "ThirdPartyNotices.txt",
  4801. "dotnet_library_license.txt",
  4802. "lib/MonoAndroid10/_._",
  4803. "lib/MonoTouch10/_._",
  4804. "lib/net46/System.AppContext.dll",
  4805. "lib/net463/System.AppContext.dll",
  4806. "lib/netcore50/System.AppContext.dll",
  4807. "lib/netstandard1.6/System.AppContext.dll",
  4808. "lib/xamarinios10/_._",
  4809. "lib/xamarinmac20/_._",
  4810. "lib/xamarintvos10/_._",
  4811. "lib/xamarinwatchos10/_._",
  4812. "ref/MonoAndroid10/_._",
  4813. "ref/MonoTouch10/_._",
  4814. "ref/net46/System.AppContext.dll",
  4815. "ref/net463/System.AppContext.dll",
  4816. "ref/netstandard/_._",
  4817. "ref/netstandard1.3/System.AppContext.dll",
  4818. "ref/netstandard1.3/System.AppContext.xml",
  4819. "ref/netstandard1.3/de/System.AppContext.xml",
  4820. "ref/netstandard1.3/es/System.AppContext.xml",
  4821. "ref/netstandard1.3/fr/System.AppContext.xml",
  4822. "ref/netstandard1.3/it/System.AppContext.xml",
  4823. "ref/netstandard1.3/ja/System.AppContext.xml",
  4824. "ref/netstandard1.3/ko/System.AppContext.xml",
  4825. "ref/netstandard1.3/ru/System.AppContext.xml",
  4826. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4827. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4828. "ref/netstandard1.6/System.AppContext.dll",
  4829. "ref/netstandard1.6/System.AppContext.xml",
  4830. "ref/netstandard1.6/de/System.AppContext.xml",
  4831. "ref/netstandard1.6/es/System.AppContext.xml",
  4832. "ref/netstandard1.6/fr/System.AppContext.xml",
  4833. "ref/netstandard1.6/it/System.AppContext.xml",
  4834. "ref/netstandard1.6/ja/System.AppContext.xml",
  4835. "ref/netstandard1.6/ko/System.AppContext.xml",
  4836. "ref/netstandard1.6/ru/System.AppContext.xml",
  4837. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4838. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4839. "ref/xamarinios10/_._",
  4840. "ref/xamarinmac20/_._",
  4841. "ref/xamarintvos10/_._",
  4842. "ref/xamarinwatchos10/_._",
  4843. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4844. "system.appcontext.4.1.0.nupkg.sha512",
  4845. "system.appcontext.nuspec"
  4846. ]
  4847. },
  4848. "System.Buffers/4.5.1": {
  4849. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4850. "type": "package",
  4851. "path": "system.buffers/4.5.1",
  4852. "files": [
  4853. ".nupkg.metadata",
  4854. ".signature.p7s",
  4855. "LICENSE.TXT",
  4856. "THIRD-PARTY-NOTICES.TXT",
  4857. "lib/net461/System.Buffers.dll",
  4858. "lib/net461/System.Buffers.xml",
  4859. "lib/netcoreapp2.0/_._",
  4860. "lib/netstandard1.1/System.Buffers.dll",
  4861. "lib/netstandard1.1/System.Buffers.xml",
  4862. "lib/netstandard2.0/System.Buffers.dll",
  4863. "lib/netstandard2.0/System.Buffers.xml",
  4864. "lib/uap10.0.16299/_._",
  4865. "ref/net45/System.Buffers.dll",
  4866. "ref/net45/System.Buffers.xml",
  4867. "ref/netcoreapp2.0/_._",
  4868. "ref/netstandard1.1/System.Buffers.dll",
  4869. "ref/netstandard1.1/System.Buffers.xml",
  4870. "ref/netstandard2.0/System.Buffers.dll",
  4871. "ref/netstandard2.0/System.Buffers.xml",
  4872. "ref/uap10.0.16299/_._",
  4873. "system.buffers.4.5.1.nupkg.sha512",
  4874. "system.buffers.nuspec",
  4875. "useSharedDesignerContext.txt",
  4876. "version.txt"
  4877. ]
  4878. },
  4879. "System.Collections/4.0.11": {
  4880. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  4881. "type": "package",
  4882. "path": "system.collections/4.0.11",
  4883. "files": [
  4884. ".nupkg.metadata",
  4885. "ThirdPartyNotices.txt",
  4886. "dotnet_library_license.txt",
  4887. "lib/MonoAndroid10/_._",
  4888. "lib/MonoTouch10/_._",
  4889. "lib/net45/_._",
  4890. "lib/portable-net45+win8+wp8+wpa81/_._",
  4891. "lib/win8/_._",
  4892. "lib/wp80/_._",
  4893. "lib/wpa81/_._",
  4894. "lib/xamarinios10/_._",
  4895. "lib/xamarinmac20/_._",
  4896. "lib/xamarintvos10/_._",
  4897. "lib/xamarinwatchos10/_._",
  4898. "ref/MonoAndroid10/_._",
  4899. "ref/MonoTouch10/_._",
  4900. "ref/net45/_._",
  4901. "ref/netcore50/System.Collections.dll",
  4902. "ref/netcore50/System.Collections.xml",
  4903. "ref/netcore50/de/System.Collections.xml",
  4904. "ref/netcore50/es/System.Collections.xml",
  4905. "ref/netcore50/fr/System.Collections.xml",
  4906. "ref/netcore50/it/System.Collections.xml",
  4907. "ref/netcore50/ja/System.Collections.xml",
  4908. "ref/netcore50/ko/System.Collections.xml",
  4909. "ref/netcore50/ru/System.Collections.xml",
  4910. "ref/netcore50/zh-hans/System.Collections.xml",
  4911. "ref/netcore50/zh-hant/System.Collections.xml",
  4912. "ref/netstandard1.0/System.Collections.dll",
  4913. "ref/netstandard1.0/System.Collections.xml",
  4914. "ref/netstandard1.0/de/System.Collections.xml",
  4915. "ref/netstandard1.0/es/System.Collections.xml",
  4916. "ref/netstandard1.0/fr/System.Collections.xml",
  4917. "ref/netstandard1.0/it/System.Collections.xml",
  4918. "ref/netstandard1.0/ja/System.Collections.xml",
  4919. "ref/netstandard1.0/ko/System.Collections.xml",
  4920. "ref/netstandard1.0/ru/System.Collections.xml",
  4921. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4922. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4923. "ref/netstandard1.3/System.Collections.dll",
  4924. "ref/netstandard1.3/System.Collections.xml",
  4925. "ref/netstandard1.3/de/System.Collections.xml",
  4926. "ref/netstandard1.3/es/System.Collections.xml",
  4927. "ref/netstandard1.3/fr/System.Collections.xml",
  4928. "ref/netstandard1.3/it/System.Collections.xml",
  4929. "ref/netstandard1.3/ja/System.Collections.xml",
  4930. "ref/netstandard1.3/ko/System.Collections.xml",
  4931. "ref/netstandard1.3/ru/System.Collections.xml",
  4932. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4933. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4934. "ref/portable-net45+win8+wp8+wpa81/_._",
  4935. "ref/win8/_._",
  4936. "ref/wp80/_._",
  4937. "ref/wpa81/_._",
  4938. "ref/xamarinios10/_._",
  4939. "ref/xamarinmac20/_._",
  4940. "ref/xamarintvos10/_._",
  4941. "ref/xamarinwatchos10/_._",
  4942. "system.collections.4.0.11.nupkg.sha512",
  4943. "system.collections.nuspec"
  4944. ]
  4945. },
  4946. "System.Collections.Concurrent/4.0.12": {
  4947. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  4948. "type": "package",
  4949. "path": "system.collections.concurrent/4.0.12",
  4950. "files": [
  4951. ".nupkg.metadata",
  4952. "ThirdPartyNotices.txt",
  4953. "dotnet_library_license.txt",
  4954. "lib/MonoAndroid10/_._",
  4955. "lib/MonoTouch10/_._",
  4956. "lib/net45/_._",
  4957. "lib/netcore50/System.Collections.Concurrent.dll",
  4958. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4959. "lib/portable-net45+win8+wpa81/_._",
  4960. "lib/win8/_._",
  4961. "lib/wpa81/_._",
  4962. "lib/xamarinios10/_._",
  4963. "lib/xamarinmac20/_._",
  4964. "lib/xamarintvos10/_._",
  4965. "lib/xamarinwatchos10/_._",
  4966. "ref/MonoAndroid10/_._",
  4967. "ref/MonoTouch10/_._",
  4968. "ref/net45/_._",
  4969. "ref/netcore50/System.Collections.Concurrent.dll",
  4970. "ref/netcore50/System.Collections.Concurrent.xml",
  4971. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4972. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4973. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4974. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4975. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4976. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4977. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4978. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4979. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4980. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4981. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4982. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4983. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4984. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4985. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4986. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4987. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4988. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4989. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4990. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4991. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4992. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4993. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4994. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4995. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4996. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4997. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4998. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4999. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5000. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5001. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5002. "ref/portable-net45+win8+wpa81/_._",
  5003. "ref/win8/_._",
  5004. "ref/wpa81/_._",
  5005. "ref/xamarinios10/_._",
  5006. "ref/xamarinmac20/_._",
  5007. "ref/xamarintvos10/_._",
  5008. "ref/xamarinwatchos10/_._",
  5009. "system.collections.concurrent.4.0.12.nupkg.sha512",
  5010. "system.collections.concurrent.nuspec"
  5011. ]
  5012. },
  5013. "System.Collections.Immutable/1.7.0": {
  5014. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  5015. "type": "package",
  5016. "path": "system.collections.immutable/1.7.0",
  5017. "files": [
  5018. ".nupkg.metadata",
  5019. ".signature.p7s",
  5020. "LICENSE.TXT",
  5021. "THIRD-PARTY-NOTICES.TXT",
  5022. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5023. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5024. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5025. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5026. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5027. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5028. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5029. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5030. "system.collections.immutable.1.7.0.nupkg.sha512",
  5031. "system.collections.immutable.nuspec",
  5032. "useSharedDesignerContext.txt",
  5033. "version.txt"
  5034. ]
  5035. },
  5036. "System.ComponentModel.Annotations/5.0.0": {
  5037. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5038. "type": "package",
  5039. "path": "system.componentmodel.annotations/5.0.0",
  5040. "files": [
  5041. ".nupkg.metadata",
  5042. ".signature.p7s",
  5043. "Icon.png",
  5044. "LICENSE.TXT",
  5045. "THIRD-PARTY-NOTICES.TXT",
  5046. "lib/MonoAndroid10/_._",
  5047. "lib/MonoTouch10/_._",
  5048. "lib/net45/_._",
  5049. "lib/net461/System.ComponentModel.Annotations.dll",
  5050. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5051. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5052. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5053. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5054. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5055. "lib/portable-net45+win8/_._",
  5056. "lib/win8/_._",
  5057. "lib/xamarinios10/_._",
  5058. "lib/xamarinmac20/_._",
  5059. "lib/xamarintvos10/_._",
  5060. "lib/xamarinwatchos10/_._",
  5061. "ref/MonoAndroid10/_._",
  5062. "ref/MonoTouch10/_._",
  5063. "ref/net45/_._",
  5064. "ref/net461/System.ComponentModel.Annotations.dll",
  5065. "ref/net461/System.ComponentModel.Annotations.xml",
  5066. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5067. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5068. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5069. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5070. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5071. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5072. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5073. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5074. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5075. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5076. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5077. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5078. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5079. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5080. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5081. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5082. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5083. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5084. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5085. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5086. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5087. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5088. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5089. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5090. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5091. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5092. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5093. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5094. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5095. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5096. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5097. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5098. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5099. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5100. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5101. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5102. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5103. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5104. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5105. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5106. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5107. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5108. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5109. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5110. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5111. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5112. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5113. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5114. "ref/portable-net45+win8/_._",
  5115. "ref/win8/_._",
  5116. "ref/xamarinios10/_._",
  5117. "ref/xamarinmac20/_._",
  5118. "ref/xamarintvos10/_._",
  5119. "ref/xamarinwatchos10/_._",
  5120. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5121. "system.componentmodel.annotations.nuspec",
  5122. "useSharedDesignerContext.txt",
  5123. "version.txt"
  5124. ]
  5125. },
  5126. "System.Configuration.ConfigurationManager/6.0.1": {
  5127. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  5128. "type": "package",
  5129. "path": "system.configuration.configurationmanager/6.0.1",
  5130. "files": [
  5131. ".nupkg.metadata",
  5132. ".signature.p7s",
  5133. "Icon.png",
  5134. "LICENSE.TXT",
  5135. "THIRD-PARTY-NOTICES.TXT",
  5136. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  5137. "buildTransitive/netcoreapp3.1/_._",
  5138. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5139. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5140. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  5141. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  5142. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5143. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5144. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  5145. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  5146. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  5147. "system.configuration.configurationmanager.nuspec",
  5148. "useSharedDesignerContext.txt"
  5149. ]
  5150. },
  5151. "System.Console/4.0.0": {
  5152. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  5153. "type": "package",
  5154. "path": "system.console/4.0.0",
  5155. "files": [
  5156. ".nupkg.metadata",
  5157. "ThirdPartyNotices.txt",
  5158. "dotnet_library_license.txt",
  5159. "lib/MonoAndroid10/_._",
  5160. "lib/MonoTouch10/_._",
  5161. "lib/net46/System.Console.dll",
  5162. "lib/xamarinios10/_._",
  5163. "lib/xamarinmac20/_._",
  5164. "lib/xamarintvos10/_._",
  5165. "lib/xamarinwatchos10/_._",
  5166. "ref/MonoAndroid10/_._",
  5167. "ref/MonoTouch10/_._",
  5168. "ref/net46/System.Console.dll",
  5169. "ref/netstandard1.3/System.Console.dll",
  5170. "ref/netstandard1.3/System.Console.xml",
  5171. "ref/netstandard1.3/de/System.Console.xml",
  5172. "ref/netstandard1.3/es/System.Console.xml",
  5173. "ref/netstandard1.3/fr/System.Console.xml",
  5174. "ref/netstandard1.3/it/System.Console.xml",
  5175. "ref/netstandard1.3/ja/System.Console.xml",
  5176. "ref/netstandard1.3/ko/System.Console.xml",
  5177. "ref/netstandard1.3/ru/System.Console.xml",
  5178. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5179. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5180. "ref/xamarinios10/_._",
  5181. "ref/xamarinmac20/_._",
  5182. "ref/xamarintvos10/_._",
  5183. "ref/xamarinwatchos10/_._",
  5184. "system.console.4.0.0.nupkg.sha512",
  5185. "system.console.nuspec"
  5186. ]
  5187. },
  5188. "System.Diagnostics.Debug/4.0.11": {
  5189. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  5190. "type": "package",
  5191. "path": "system.diagnostics.debug/4.0.11",
  5192. "files": [
  5193. ".nupkg.metadata",
  5194. "ThirdPartyNotices.txt",
  5195. "dotnet_library_license.txt",
  5196. "lib/MonoAndroid10/_._",
  5197. "lib/MonoTouch10/_._",
  5198. "lib/net45/_._",
  5199. "lib/portable-net45+win8+wp8+wpa81/_._",
  5200. "lib/win8/_._",
  5201. "lib/wp80/_._",
  5202. "lib/wpa81/_._",
  5203. "lib/xamarinios10/_._",
  5204. "lib/xamarinmac20/_._",
  5205. "lib/xamarintvos10/_._",
  5206. "lib/xamarinwatchos10/_._",
  5207. "ref/MonoAndroid10/_._",
  5208. "ref/MonoTouch10/_._",
  5209. "ref/net45/_._",
  5210. "ref/netcore50/System.Diagnostics.Debug.dll",
  5211. "ref/netcore50/System.Diagnostics.Debug.xml",
  5212. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5213. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5214. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5215. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5216. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5217. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5218. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5219. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5220. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5221. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5222. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5223. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5224. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5225. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5226. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5227. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5228. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5229. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5230. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5231. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5232. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5233. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5234. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5235. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5236. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5237. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5238. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5239. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5240. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5241. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5242. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5243. "ref/portable-net45+win8+wp8+wpa81/_._",
  5244. "ref/win8/_._",
  5245. "ref/wp80/_._",
  5246. "ref/wpa81/_._",
  5247. "ref/xamarinios10/_._",
  5248. "ref/xamarinmac20/_._",
  5249. "ref/xamarintvos10/_._",
  5250. "ref/xamarinwatchos10/_._",
  5251. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  5252. "system.diagnostics.debug.nuspec"
  5253. ]
  5254. },
  5255. "System.Diagnostics.DiagnosticSource/8.0.0": {
  5256. "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
  5257. "type": "package",
  5258. "path": "system.diagnostics.diagnosticsource/8.0.0",
  5259. "files": [
  5260. ".nupkg.metadata",
  5261. ".signature.p7s",
  5262. "Icon.png",
  5263. "LICENSE.TXT",
  5264. "THIRD-PARTY-NOTICES.TXT",
  5265. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  5266. "buildTransitive/net462/_._",
  5267. "buildTransitive/net6.0/_._",
  5268. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  5269. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  5270. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  5271. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  5272. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  5273. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  5274. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  5275. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
  5276. "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
  5277. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  5278. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  5279. "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
  5280. "system.diagnostics.diagnosticsource.nuspec",
  5281. "useSharedDesignerContext.txt"
  5282. ]
  5283. },
  5284. "System.Diagnostics.EventLog/8.0.0": {
  5285. "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
  5286. "type": "package",
  5287. "path": "system.diagnostics.eventlog/8.0.0",
  5288. "files": [
  5289. ".nupkg.metadata",
  5290. ".signature.p7s",
  5291. "Icon.png",
  5292. "LICENSE.TXT",
  5293. "PACKAGE.md",
  5294. "THIRD-PARTY-NOTICES.TXT",
  5295. "buildTransitive/net461/System.Diagnostics.EventLog.targets",
  5296. "buildTransitive/net462/_._",
  5297. "buildTransitive/net6.0/_._",
  5298. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  5299. "lib/net462/System.Diagnostics.EventLog.dll",
  5300. "lib/net462/System.Diagnostics.EventLog.xml",
  5301. "lib/net6.0/System.Diagnostics.EventLog.dll",
  5302. "lib/net6.0/System.Diagnostics.EventLog.xml",
  5303. "lib/net7.0/System.Diagnostics.EventLog.dll",
  5304. "lib/net7.0/System.Diagnostics.EventLog.xml",
  5305. "lib/net8.0/System.Diagnostics.EventLog.dll",
  5306. "lib/net8.0/System.Diagnostics.EventLog.xml",
  5307. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  5308. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  5309. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  5310. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  5311. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  5312. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
  5313. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
  5314. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
  5315. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
  5316. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
  5317. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
  5318. "system.diagnostics.eventlog.8.0.0.nupkg.sha512",
  5319. "system.diagnostics.eventlog.nuspec",
  5320. "useSharedDesignerContext.txt"
  5321. ]
  5322. },
  5323. "System.Diagnostics.Tools/4.0.1": {
  5324. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  5325. "type": "package",
  5326. "path": "system.diagnostics.tools/4.0.1",
  5327. "files": [
  5328. ".nupkg.metadata",
  5329. "ThirdPartyNotices.txt",
  5330. "dotnet_library_license.txt",
  5331. "lib/MonoAndroid10/_._",
  5332. "lib/MonoTouch10/_._",
  5333. "lib/net45/_._",
  5334. "lib/portable-net45+win8+wp8+wpa81/_._",
  5335. "lib/win8/_._",
  5336. "lib/wp80/_._",
  5337. "lib/wpa81/_._",
  5338. "lib/xamarinios10/_._",
  5339. "lib/xamarinmac20/_._",
  5340. "lib/xamarintvos10/_._",
  5341. "lib/xamarinwatchos10/_._",
  5342. "ref/MonoAndroid10/_._",
  5343. "ref/MonoTouch10/_._",
  5344. "ref/net45/_._",
  5345. "ref/netcore50/System.Diagnostics.Tools.dll",
  5346. "ref/netcore50/System.Diagnostics.Tools.xml",
  5347. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5348. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5349. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5350. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5351. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5352. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5353. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5354. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5355. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5356. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5357. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5358. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5359. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5360. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5361. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5362. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5363. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5364. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5365. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5366. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5367. "ref/portable-net45+win8+wp8+wpa81/_._",
  5368. "ref/win8/_._",
  5369. "ref/wp80/_._",
  5370. "ref/wpa81/_._",
  5371. "ref/xamarinios10/_._",
  5372. "ref/xamarinmac20/_._",
  5373. "ref/xamarintvos10/_._",
  5374. "ref/xamarinwatchos10/_._",
  5375. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  5376. "system.diagnostics.tools.nuspec"
  5377. ]
  5378. },
  5379. "System.Diagnostics.TraceSource/4.0.0": {
  5380. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  5381. "type": "package",
  5382. "path": "system.diagnostics.tracesource/4.0.0",
  5383. "files": [
  5384. ".nupkg.metadata",
  5385. ".signature.p7s",
  5386. "ThirdPartyNotices.txt",
  5387. "dotnet_library_license.txt",
  5388. "lib/MonoAndroid10/_._",
  5389. "lib/MonoTouch10/_._",
  5390. "lib/net46/System.Diagnostics.TraceSource.dll",
  5391. "lib/xamarinios10/_._",
  5392. "lib/xamarinmac20/_._",
  5393. "lib/xamarintvos10/_._",
  5394. "lib/xamarinwatchos10/_._",
  5395. "ref/MonoAndroid10/_._",
  5396. "ref/MonoTouch10/_._",
  5397. "ref/net46/System.Diagnostics.TraceSource.dll",
  5398. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5399. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5400. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5401. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5402. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5403. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5404. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5405. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5406. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5407. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5408. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5409. "ref/xamarinios10/_._",
  5410. "ref/xamarinmac20/_._",
  5411. "ref/xamarintvos10/_._",
  5412. "ref/xamarinwatchos10/_._",
  5413. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5414. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5415. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5416. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  5417. "system.diagnostics.tracesource.nuspec"
  5418. ]
  5419. },
  5420. "System.Diagnostics.Tracing/4.1.0": {
  5421. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  5422. "type": "package",
  5423. "path": "system.diagnostics.tracing/4.1.0",
  5424. "files": [
  5425. ".nupkg.metadata",
  5426. "ThirdPartyNotices.txt",
  5427. "dotnet_library_license.txt",
  5428. "lib/MonoAndroid10/_._",
  5429. "lib/MonoTouch10/_._",
  5430. "lib/net45/_._",
  5431. "lib/net462/System.Diagnostics.Tracing.dll",
  5432. "lib/portable-net45+win8+wpa81/_._",
  5433. "lib/win8/_._",
  5434. "lib/wpa81/_._",
  5435. "lib/xamarinios10/_._",
  5436. "lib/xamarinmac20/_._",
  5437. "lib/xamarintvos10/_._",
  5438. "lib/xamarinwatchos10/_._",
  5439. "ref/MonoAndroid10/_._",
  5440. "ref/MonoTouch10/_._",
  5441. "ref/net45/_._",
  5442. "ref/net462/System.Diagnostics.Tracing.dll",
  5443. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5444. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5445. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5446. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5447. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5448. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5449. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5450. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5451. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5452. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5453. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5454. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5455. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5456. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5457. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5458. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5459. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5460. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5461. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5462. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5463. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5464. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5465. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5466. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5467. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5468. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5469. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5470. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5471. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5472. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5473. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5474. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5475. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5476. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5477. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5478. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5479. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5480. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5481. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5482. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5483. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5484. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5485. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5486. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5487. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5488. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5489. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5490. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5491. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5492. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5493. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5494. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5495. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5496. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5497. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5498. "ref/portable-net45+win8+wpa81/_._",
  5499. "ref/win8/_._",
  5500. "ref/wpa81/_._",
  5501. "ref/xamarinios10/_._",
  5502. "ref/xamarinmac20/_._",
  5503. "ref/xamarintvos10/_._",
  5504. "ref/xamarinwatchos10/_._",
  5505. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  5506. "system.diagnostics.tracing.nuspec"
  5507. ]
  5508. },
  5509. "System.Drawing.Common/6.0.0": {
  5510. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  5511. "type": "package",
  5512. "path": "system.drawing.common/6.0.0",
  5513. "files": [
  5514. ".nupkg.metadata",
  5515. ".signature.p7s",
  5516. "Icon.png",
  5517. "LICENSE.TXT",
  5518. "THIRD-PARTY-NOTICES.TXT",
  5519. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  5520. "buildTransitive/netcoreapp3.1/_._",
  5521. "lib/MonoAndroid10/_._",
  5522. "lib/MonoTouch10/_._",
  5523. "lib/net461/System.Drawing.Common.dll",
  5524. "lib/net461/System.Drawing.Common.xml",
  5525. "lib/net6.0/System.Drawing.Common.dll",
  5526. "lib/net6.0/System.Drawing.Common.xml",
  5527. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  5528. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  5529. "lib/netstandard2.0/System.Drawing.Common.dll",
  5530. "lib/netstandard2.0/System.Drawing.Common.xml",
  5531. "lib/xamarinios10/_._",
  5532. "lib/xamarinmac20/_._",
  5533. "lib/xamarintvos10/_._",
  5534. "lib/xamarinwatchos10/_._",
  5535. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  5536. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  5537. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  5538. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  5539. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  5540. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  5541. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  5542. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  5543. "system.drawing.common.6.0.0.nupkg.sha512",
  5544. "system.drawing.common.nuspec",
  5545. "useSharedDesignerContext.txt"
  5546. ]
  5547. },
  5548. "System.Globalization/4.0.11": {
  5549. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  5550. "type": "package",
  5551. "path": "system.globalization/4.0.11",
  5552. "files": [
  5553. ".nupkg.metadata",
  5554. "ThirdPartyNotices.txt",
  5555. "dotnet_library_license.txt",
  5556. "lib/MonoAndroid10/_._",
  5557. "lib/MonoTouch10/_._",
  5558. "lib/net45/_._",
  5559. "lib/portable-net45+win8+wp8+wpa81/_._",
  5560. "lib/win8/_._",
  5561. "lib/wp80/_._",
  5562. "lib/wpa81/_._",
  5563. "lib/xamarinios10/_._",
  5564. "lib/xamarinmac20/_._",
  5565. "lib/xamarintvos10/_._",
  5566. "lib/xamarinwatchos10/_._",
  5567. "ref/MonoAndroid10/_._",
  5568. "ref/MonoTouch10/_._",
  5569. "ref/net45/_._",
  5570. "ref/netcore50/System.Globalization.dll",
  5571. "ref/netcore50/System.Globalization.xml",
  5572. "ref/netcore50/de/System.Globalization.xml",
  5573. "ref/netcore50/es/System.Globalization.xml",
  5574. "ref/netcore50/fr/System.Globalization.xml",
  5575. "ref/netcore50/it/System.Globalization.xml",
  5576. "ref/netcore50/ja/System.Globalization.xml",
  5577. "ref/netcore50/ko/System.Globalization.xml",
  5578. "ref/netcore50/ru/System.Globalization.xml",
  5579. "ref/netcore50/zh-hans/System.Globalization.xml",
  5580. "ref/netcore50/zh-hant/System.Globalization.xml",
  5581. "ref/netstandard1.0/System.Globalization.dll",
  5582. "ref/netstandard1.0/System.Globalization.xml",
  5583. "ref/netstandard1.0/de/System.Globalization.xml",
  5584. "ref/netstandard1.0/es/System.Globalization.xml",
  5585. "ref/netstandard1.0/fr/System.Globalization.xml",
  5586. "ref/netstandard1.0/it/System.Globalization.xml",
  5587. "ref/netstandard1.0/ja/System.Globalization.xml",
  5588. "ref/netstandard1.0/ko/System.Globalization.xml",
  5589. "ref/netstandard1.0/ru/System.Globalization.xml",
  5590. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5591. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5592. "ref/netstandard1.3/System.Globalization.dll",
  5593. "ref/netstandard1.3/System.Globalization.xml",
  5594. "ref/netstandard1.3/de/System.Globalization.xml",
  5595. "ref/netstandard1.3/es/System.Globalization.xml",
  5596. "ref/netstandard1.3/fr/System.Globalization.xml",
  5597. "ref/netstandard1.3/it/System.Globalization.xml",
  5598. "ref/netstandard1.3/ja/System.Globalization.xml",
  5599. "ref/netstandard1.3/ko/System.Globalization.xml",
  5600. "ref/netstandard1.3/ru/System.Globalization.xml",
  5601. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5602. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5603. "ref/portable-net45+win8+wp8+wpa81/_._",
  5604. "ref/win8/_._",
  5605. "ref/wp80/_._",
  5606. "ref/wpa81/_._",
  5607. "ref/xamarinios10/_._",
  5608. "ref/xamarinmac20/_._",
  5609. "ref/xamarintvos10/_._",
  5610. "ref/xamarinwatchos10/_._",
  5611. "system.globalization.4.0.11.nupkg.sha512",
  5612. "system.globalization.nuspec"
  5613. ]
  5614. },
  5615. "System.Globalization.Calendars/4.0.1": {
  5616. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  5617. "type": "package",
  5618. "path": "system.globalization.calendars/4.0.1",
  5619. "files": [
  5620. ".nupkg.metadata",
  5621. "ThirdPartyNotices.txt",
  5622. "dotnet_library_license.txt",
  5623. "lib/MonoAndroid10/_._",
  5624. "lib/MonoTouch10/_._",
  5625. "lib/net46/System.Globalization.Calendars.dll",
  5626. "lib/xamarinios10/_._",
  5627. "lib/xamarinmac20/_._",
  5628. "lib/xamarintvos10/_._",
  5629. "lib/xamarinwatchos10/_._",
  5630. "ref/MonoAndroid10/_._",
  5631. "ref/MonoTouch10/_._",
  5632. "ref/net46/System.Globalization.Calendars.dll",
  5633. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5634. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5635. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5636. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5637. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5638. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5639. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5640. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5641. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5642. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5643. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5644. "ref/xamarinios10/_._",
  5645. "ref/xamarinmac20/_._",
  5646. "ref/xamarintvos10/_._",
  5647. "ref/xamarinwatchos10/_._",
  5648. "system.globalization.calendars.4.0.1.nupkg.sha512",
  5649. "system.globalization.calendars.nuspec"
  5650. ]
  5651. },
  5652. "System.Globalization.Extensions/4.0.1": {
  5653. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  5654. "type": "package",
  5655. "path": "system.globalization.extensions/4.0.1",
  5656. "files": [
  5657. ".nupkg.metadata",
  5658. "ThirdPartyNotices.txt",
  5659. "dotnet_library_license.txt",
  5660. "lib/MonoAndroid10/_._",
  5661. "lib/MonoTouch10/_._",
  5662. "lib/net46/System.Globalization.Extensions.dll",
  5663. "lib/xamarinios10/_._",
  5664. "lib/xamarinmac20/_._",
  5665. "lib/xamarintvos10/_._",
  5666. "lib/xamarinwatchos10/_._",
  5667. "ref/MonoAndroid10/_._",
  5668. "ref/MonoTouch10/_._",
  5669. "ref/net46/System.Globalization.Extensions.dll",
  5670. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5671. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5672. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5673. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5674. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5675. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5676. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5677. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5678. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5679. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5680. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5681. "ref/xamarinios10/_._",
  5682. "ref/xamarinmac20/_._",
  5683. "ref/xamarintvos10/_._",
  5684. "ref/xamarinwatchos10/_._",
  5685. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5686. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5687. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5688. "system.globalization.extensions.4.0.1.nupkg.sha512",
  5689. "system.globalization.extensions.nuspec"
  5690. ]
  5691. },
  5692. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  5693. "sha512": "V8T6qCdNI5OEUafOhyOnyuwHlTs56hPE6nQLNDXDNI7MIQO8MGRQVuWOruzEscURXpGbNuRz+m8qFrT8SDeEQA==",
  5694. "type": "package",
  5695. "path": "system.identitymodel.tokens.jwt/7.4.1",
  5696. "files": [
  5697. ".nupkg.metadata",
  5698. ".signature.p7s",
  5699. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5700. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5701. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  5702. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  5703. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  5704. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  5705. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  5706. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  5707. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  5708. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  5709. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5710. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5711. "system.identitymodel.tokens.jwt.7.4.1.nupkg.sha512",
  5712. "system.identitymodel.tokens.jwt.nuspec"
  5713. ]
  5714. },
  5715. "System.IO/4.3.0": {
  5716. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5717. "type": "package",
  5718. "path": "system.io/4.3.0",
  5719. "files": [
  5720. ".nupkg.metadata",
  5721. "ThirdPartyNotices.txt",
  5722. "dotnet_library_license.txt",
  5723. "lib/MonoAndroid10/_._",
  5724. "lib/MonoTouch10/_._",
  5725. "lib/net45/_._",
  5726. "lib/net462/System.IO.dll",
  5727. "lib/portable-net45+win8+wp8+wpa81/_._",
  5728. "lib/win8/_._",
  5729. "lib/wp80/_._",
  5730. "lib/wpa81/_._",
  5731. "lib/xamarinios10/_._",
  5732. "lib/xamarinmac20/_._",
  5733. "lib/xamarintvos10/_._",
  5734. "lib/xamarinwatchos10/_._",
  5735. "ref/MonoAndroid10/_._",
  5736. "ref/MonoTouch10/_._",
  5737. "ref/net45/_._",
  5738. "ref/net462/System.IO.dll",
  5739. "ref/netcore50/System.IO.dll",
  5740. "ref/netcore50/System.IO.xml",
  5741. "ref/netcore50/de/System.IO.xml",
  5742. "ref/netcore50/es/System.IO.xml",
  5743. "ref/netcore50/fr/System.IO.xml",
  5744. "ref/netcore50/it/System.IO.xml",
  5745. "ref/netcore50/ja/System.IO.xml",
  5746. "ref/netcore50/ko/System.IO.xml",
  5747. "ref/netcore50/ru/System.IO.xml",
  5748. "ref/netcore50/zh-hans/System.IO.xml",
  5749. "ref/netcore50/zh-hant/System.IO.xml",
  5750. "ref/netstandard1.0/System.IO.dll",
  5751. "ref/netstandard1.0/System.IO.xml",
  5752. "ref/netstandard1.0/de/System.IO.xml",
  5753. "ref/netstandard1.0/es/System.IO.xml",
  5754. "ref/netstandard1.0/fr/System.IO.xml",
  5755. "ref/netstandard1.0/it/System.IO.xml",
  5756. "ref/netstandard1.0/ja/System.IO.xml",
  5757. "ref/netstandard1.0/ko/System.IO.xml",
  5758. "ref/netstandard1.0/ru/System.IO.xml",
  5759. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5760. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5761. "ref/netstandard1.3/System.IO.dll",
  5762. "ref/netstandard1.3/System.IO.xml",
  5763. "ref/netstandard1.3/de/System.IO.xml",
  5764. "ref/netstandard1.3/es/System.IO.xml",
  5765. "ref/netstandard1.3/fr/System.IO.xml",
  5766. "ref/netstandard1.3/it/System.IO.xml",
  5767. "ref/netstandard1.3/ja/System.IO.xml",
  5768. "ref/netstandard1.3/ko/System.IO.xml",
  5769. "ref/netstandard1.3/ru/System.IO.xml",
  5770. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5771. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5772. "ref/netstandard1.5/System.IO.dll",
  5773. "ref/netstandard1.5/System.IO.xml",
  5774. "ref/netstandard1.5/de/System.IO.xml",
  5775. "ref/netstandard1.5/es/System.IO.xml",
  5776. "ref/netstandard1.5/fr/System.IO.xml",
  5777. "ref/netstandard1.5/it/System.IO.xml",
  5778. "ref/netstandard1.5/ja/System.IO.xml",
  5779. "ref/netstandard1.5/ko/System.IO.xml",
  5780. "ref/netstandard1.5/ru/System.IO.xml",
  5781. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5782. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5783. "ref/portable-net45+win8+wp8+wpa81/_._",
  5784. "ref/win8/_._",
  5785. "ref/wp80/_._",
  5786. "ref/wpa81/_._",
  5787. "ref/xamarinios10/_._",
  5788. "ref/xamarinmac20/_._",
  5789. "ref/xamarintvos10/_._",
  5790. "ref/xamarinwatchos10/_._",
  5791. "system.io.4.3.0.nupkg.sha512",
  5792. "system.io.nuspec"
  5793. ]
  5794. },
  5795. "System.IO.Compression/4.1.0": {
  5796. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  5797. "type": "package",
  5798. "path": "system.io.compression/4.1.0",
  5799. "files": [
  5800. ".nupkg.metadata",
  5801. "ThirdPartyNotices.txt",
  5802. "dotnet_library_license.txt",
  5803. "lib/MonoAndroid10/_._",
  5804. "lib/MonoTouch10/_._",
  5805. "lib/net45/_._",
  5806. "lib/net46/System.IO.Compression.dll",
  5807. "lib/portable-net45+win8+wpa81/_._",
  5808. "lib/win8/_._",
  5809. "lib/wpa81/_._",
  5810. "lib/xamarinios10/_._",
  5811. "lib/xamarinmac20/_._",
  5812. "lib/xamarintvos10/_._",
  5813. "lib/xamarinwatchos10/_._",
  5814. "ref/MonoAndroid10/_._",
  5815. "ref/MonoTouch10/_._",
  5816. "ref/net45/_._",
  5817. "ref/net46/System.IO.Compression.dll",
  5818. "ref/netcore50/System.IO.Compression.dll",
  5819. "ref/netcore50/System.IO.Compression.xml",
  5820. "ref/netcore50/de/System.IO.Compression.xml",
  5821. "ref/netcore50/es/System.IO.Compression.xml",
  5822. "ref/netcore50/fr/System.IO.Compression.xml",
  5823. "ref/netcore50/it/System.IO.Compression.xml",
  5824. "ref/netcore50/ja/System.IO.Compression.xml",
  5825. "ref/netcore50/ko/System.IO.Compression.xml",
  5826. "ref/netcore50/ru/System.IO.Compression.xml",
  5827. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5828. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5829. "ref/netstandard1.1/System.IO.Compression.dll",
  5830. "ref/netstandard1.1/System.IO.Compression.xml",
  5831. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5832. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5833. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5834. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5835. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5836. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5837. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5838. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5839. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5840. "ref/netstandard1.3/System.IO.Compression.dll",
  5841. "ref/netstandard1.3/System.IO.Compression.xml",
  5842. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5843. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5844. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5845. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5846. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5847. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5848. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5849. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5850. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5851. "ref/portable-net45+win8+wpa81/_._",
  5852. "ref/win8/_._",
  5853. "ref/wpa81/_._",
  5854. "ref/xamarinios10/_._",
  5855. "ref/xamarinmac20/_._",
  5856. "ref/xamarintvos10/_._",
  5857. "ref/xamarinwatchos10/_._",
  5858. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5859. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5860. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5861. "system.io.compression.4.1.0.nupkg.sha512",
  5862. "system.io.compression.nuspec"
  5863. ]
  5864. },
  5865. "System.IO.Compression.ZipFile/4.0.1": {
  5866. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  5867. "type": "package",
  5868. "path": "system.io.compression.zipfile/4.0.1",
  5869. "files": [
  5870. ".nupkg.metadata",
  5871. "ThirdPartyNotices.txt",
  5872. "dotnet_library_license.txt",
  5873. "lib/MonoAndroid10/_._",
  5874. "lib/MonoTouch10/_._",
  5875. "lib/net46/System.IO.Compression.ZipFile.dll",
  5876. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5877. "lib/xamarinios10/_._",
  5878. "lib/xamarinmac20/_._",
  5879. "lib/xamarintvos10/_._",
  5880. "lib/xamarinwatchos10/_._",
  5881. "ref/MonoAndroid10/_._",
  5882. "ref/MonoTouch10/_._",
  5883. "ref/net46/System.IO.Compression.ZipFile.dll",
  5884. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5885. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5886. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5887. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5888. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5889. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5890. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5891. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5892. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5893. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5894. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5895. "ref/xamarinios10/_._",
  5896. "ref/xamarinmac20/_._",
  5897. "ref/xamarintvos10/_._",
  5898. "ref/xamarinwatchos10/_._",
  5899. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  5900. "system.io.compression.zipfile.nuspec"
  5901. ]
  5902. },
  5903. "System.IO.FileSystem/4.0.1": {
  5904. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  5905. "type": "package",
  5906. "path": "system.io.filesystem/4.0.1",
  5907. "files": [
  5908. ".nupkg.metadata",
  5909. "ThirdPartyNotices.txt",
  5910. "dotnet_library_license.txt",
  5911. "lib/MonoAndroid10/_._",
  5912. "lib/MonoTouch10/_._",
  5913. "lib/net46/System.IO.FileSystem.dll",
  5914. "lib/xamarinios10/_._",
  5915. "lib/xamarinmac20/_._",
  5916. "lib/xamarintvos10/_._",
  5917. "lib/xamarinwatchos10/_._",
  5918. "ref/MonoAndroid10/_._",
  5919. "ref/MonoTouch10/_._",
  5920. "ref/net46/System.IO.FileSystem.dll",
  5921. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5922. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5923. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5924. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5925. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5926. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5927. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5928. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5929. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5930. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5931. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5932. "ref/xamarinios10/_._",
  5933. "ref/xamarinmac20/_._",
  5934. "ref/xamarintvos10/_._",
  5935. "ref/xamarinwatchos10/_._",
  5936. "system.io.filesystem.4.0.1.nupkg.sha512",
  5937. "system.io.filesystem.nuspec"
  5938. ]
  5939. },
  5940. "System.IO.FileSystem.Primitives/4.0.1": {
  5941. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  5942. "type": "package",
  5943. "path": "system.io.filesystem.primitives/4.0.1",
  5944. "files": [
  5945. ".nupkg.metadata",
  5946. "ThirdPartyNotices.txt",
  5947. "dotnet_library_license.txt",
  5948. "lib/MonoAndroid10/_._",
  5949. "lib/MonoTouch10/_._",
  5950. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5951. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5952. "lib/xamarinios10/_._",
  5953. "lib/xamarinmac20/_._",
  5954. "lib/xamarintvos10/_._",
  5955. "lib/xamarinwatchos10/_._",
  5956. "ref/MonoAndroid10/_._",
  5957. "ref/MonoTouch10/_._",
  5958. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5959. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5960. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5961. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5962. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5963. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5964. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5965. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5966. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5967. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5968. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5969. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5970. "ref/xamarinios10/_._",
  5971. "ref/xamarinmac20/_._",
  5972. "ref/xamarintvos10/_._",
  5973. "ref/xamarinwatchos10/_._",
  5974. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  5975. "system.io.filesystem.primitives.nuspec"
  5976. ]
  5977. },
  5978. "System.IO.Pipelines/5.0.1": {
  5979. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  5980. "type": "package",
  5981. "path": "system.io.pipelines/5.0.1",
  5982. "files": [
  5983. ".nupkg.metadata",
  5984. ".signature.p7s",
  5985. "Icon.png",
  5986. "LICENSE.TXT",
  5987. "THIRD-PARTY-NOTICES.TXT",
  5988. "lib/net461/System.IO.Pipelines.dll",
  5989. "lib/net461/System.IO.Pipelines.xml",
  5990. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  5991. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  5992. "lib/netstandard1.3/System.IO.Pipelines.dll",
  5993. "lib/netstandard1.3/System.IO.Pipelines.xml",
  5994. "lib/netstandard2.0/System.IO.Pipelines.dll",
  5995. "lib/netstandard2.0/System.IO.Pipelines.xml",
  5996. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  5997. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  5998. "system.io.pipelines.5.0.1.nupkg.sha512",
  5999. "system.io.pipelines.nuspec",
  6000. "useSharedDesignerContext.txt",
  6001. "version.txt"
  6002. ]
  6003. },
  6004. "System.Linq/4.1.0": {
  6005. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  6006. "type": "package",
  6007. "path": "system.linq/4.1.0",
  6008. "files": [
  6009. ".nupkg.metadata",
  6010. "ThirdPartyNotices.txt",
  6011. "dotnet_library_license.txt",
  6012. "lib/MonoAndroid10/_._",
  6013. "lib/MonoTouch10/_._",
  6014. "lib/net45/_._",
  6015. "lib/net463/System.Linq.dll",
  6016. "lib/netcore50/System.Linq.dll",
  6017. "lib/netstandard1.6/System.Linq.dll",
  6018. "lib/portable-net45+win8+wp8+wpa81/_._",
  6019. "lib/win8/_._",
  6020. "lib/wp80/_._",
  6021. "lib/wpa81/_._",
  6022. "lib/xamarinios10/_._",
  6023. "lib/xamarinmac20/_._",
  6024. "lib/xamarintvos10/_._",
  6025. "lib/xamarinwatchos10/_._",
  6026. "ref/MonoAndroid10/_._",
  6027. "ref/MonoTouch10/_._",
  6028. "ref/net45/_._",
  6029. "ref/net463/System.Linq.dll",
  6030. "ref/netcore50/System.Linq.dll",
  6031. "ref/netcore50/System.Linq.xml",
  6032. "ref/netcore50/de/System.Linq.xml",
  6033. "ref/netcore50/es/System.Linq.xml",
  6034. "ref/netcore50/fr/System.Linq.xml",
  6035. "ref/netcore50/it/System.Linq.xml",
  6036. "ref/netcore50/ja/System.Linq.xml",
  6037. "ref/netcore50/ko/System.Linq.xml",
  6038. "ref/netcore50/ru/System.Linq.xml",
  6039. "ref/netcore50/zh-hans/System.Linq.xml",
  6040. "ref/netcore50/zh-hant/System.Linq.xml",
  6041. "ref/netstandard1.0/System.Linq.dll",
  6042. "ref/netstandard1.0/System.Linq.xml",
  6043. "ref/netstandard1.0/de/System.Linq.xml",
  6044. "ref/netstandard1.0/es/System.Linq.xml",
  6045. "ref/netstandard1.0/fr/System.Linq.xml",
  6046. "ref/netstandard1.0/it/System.Linq.xml",
  6047. "ref/netstandard1.0/ja/System.Linq.xml",
  6048. "ref/netstandard1.0/ko/System.Linq.xml",
  6049. "ref/netstandard1.0/ru/System.Linq.xml",
  6050. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6051. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6052. "ref/netstandard1.6/System.Linq.dll",
  6053. "ref/netstandard1.6/System.Linq.xml",
  6054. "ref/netstandard1.6/de/System.Linq.xml",
  6055. "ref/netstandard1.6/es/System.Linq.xml",
  6056. "ref/netstandard1.6/fr/System.Linq.xml",
  6057. "ref/netstandard1.6/it/System.Linq.xml",
  6058. "ref/netstandard1.6/ja/System.Linq.xml",
  6059. "ref/netstandard1.6/ko/System.Linq.xml",
  6060. "ref/netstandard1.6/ru/System.Linq.xml",
  6061. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6062. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6063. "ref/portable-net45+win8+wp8+wpa81/_._",
  6064. "ref/win8/_._",
  6065. "ref/wp80/_._",
  6066. "ref/wpa81/_._",
  6067. "ref/xamarinios10/_._",
  6068. "ref/xamarinmac20/_._",
  6069. "ref/xamarintvos10/_._",
  6070. "ref/xamarinwatchos10/_._",
  6071. "system.linq.4.1.0.nupkg.sha512",
  6072. "system.linq.nuspec"
  6073. ]
  6074. },
  6075. "System.Linq.Expressions/4.1.0": {
  6076. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  6077. "type": "package",
  6078. "path": "system.linq.expressions/4.1.0",
  6079. "files": [
  6080. ".nupkg.metadata",
  6081. "ThirdPartyNotices.txt",
  6082. "dotnet_library_license.txt",
  6083. "lib/MonoAndroid10/_._",
  6084. "lib/MonoTouch10/_._",
  6085. "lib/net45/_._",
  6086. "lib/net463/System.Linq.Expressions.dll",
  6087. "lib/netcore50/System.Linq.Expressions.dll",
  6088. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6089. "lib/portable-net45+win8+wp8+wpa81/_._",
  6090. "lib/win8/_._",
  6091. "lib/wp80/_._",
  6092. "lib/wpa81/_._",
  6093. "lib/xamarinios10/_._",
  6094. "lib/xamarinmac20/_._",
  6095. "lib/xamarintvos10/_._",
  6096. "lib/xamarinwatchos10/_._",
  6097. "ref/MonoAndroid10/_._",
  6098. "ref/MonoTouch10/_._",
  6099. "ref/net45/_._",
  6100. "ref/net463/System.Linq.Expressions.dll",
  6101. "ref/netcore50/System.Linq.Expressions.dll",
  6102. "ref/netcore50/System.Linq.Expressions.xml",
  6103. "ref/netcore50/de/System.Linq.Expressions.xml",
  6104. "ref/netcore50/es/System.Linq.Expressions.xml",
  6105. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6106. "ref/netcore50/it/System.Linq.Expressions.xml",
  6107. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6108. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6109. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6110. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6111. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6112. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6113. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6114. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6115. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6116. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6117. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6118. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6119. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6120. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6121. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6122. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6123. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6124. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6125. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6126. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6127. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6128. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6129. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6130. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6131. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6132. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6133. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6134. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6135. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6136. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6137. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6138. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6139. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6140. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6141. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6142. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6143. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6144. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6145. "ref/portable-net45+win8+wp8+wpa81/_._",
  6146. "ref/win8/_._",
  6147. "ref/wp80/_._",
  6148. "ref/wpa81/_._",
  6149. "ref/xamarinios10/_._",
  6150. "ref/xamarinmac20/_._",
  6151. "ref/xamarintvos10/_._",
  6152. "ref/xamarinwatchos10/_._",
  6153. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6154. "system.linq.expressions.4.1.0.nupkg.sha512",
  6155. "system.linq.expressions.nuspec"
  6156. ]
  6157. },
  6158. "System.Memory/4.5.5": {
  6159. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6160. "type": "package",
  6161. "path": "system.memory/4.5.5",
  6162. "files": [
  6163. ".nupkg.metadata",
  6164. ".signature.p7s",
  6165. "LICENSE.TXT",
  6166. "THIRD-PARTY-NOTICES.TXT",
  6167. "lib/net461/System.Memory.dll",
  6168. "lib/net461/System.Memory.xml",
  6169. "lib/netcoreapp2.1/_._",
  6170. "lib/netstandard1.1/System.Memory.dll",
  6171. "lib/netstandard1.1/System.Memory.xml",
  6172. "lib/netstandard2.0/System.Memory.dll",
  6173. "lib/netstandard2.0/System.Memory.xml",
  6174. "ref/netcoreapp2.1/_._",
  6175. "system.memory.4.5.5.nupkg.sha512",
  6176. "system.memory.nuspec",
  6177. "useSharedDesignerContext.txt",
  6178. "version.txt"
  6179. ]
  6180. },
  6181. "System.Net.Http/4.1.0": {
  6182. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  6183. "type": "package",
  6184. "path": "system.net.http/4.1.0",
  6185. "files": [
  6186. ".nupkg.metadata",
  6187. ".signature.p7s",
  6188. "ThirdPartyNotices.txt",
  6189. "dotnet_library_license.txt",
  6190. "lib/Xamarinmac20/_._",
  6191. "lib/monoandroid10/_._",
  6192. "lib/monotouch10/_._",
  6193. "lib/net45/_._",
  6194. "lib/net46/System.Net.Http.dll",
  6195. "lib/portable-net45+win8+wpa81/_._",
  6196. "lib/win8/_._",
  6197. "lib/wpa81/_._",
  6198. "lib/xamarinios10/_._",
  6199. "lib/xamarintvos10/_._",
  6200. "lib/xamarinwatchos10/_._",
  6201. "ref/Xamarinmac20/_._",
  6202. "ref/monoandroid10/_._",
  6203. "ref/monotouch10/_._",
  6204. "ref/net45/_._",
  6205. "ref/net46/System.Net.Http.dll",
  6206. "ref/net46/System.Net.Http.xml",
  6207. "ref/net46/de/System.Net.Http.xml",
  6208. "ref/net46/es/System.Net.Http.xml",
  6209. "ref/net46/fr/System.Net.Http.xml",
  6210. "ref/net46/it/System.Net.Http.xml",
  6211. "ref/net46/ja/System.Net.Http.xml",
  6212. "ref/net46/ko/System.Net.Http.xml",
  6213. "ref/net46/ru/System.Net.Http.xml",
  6214. "ref/net46/zh-hans/System.Net.Http.xml",
  6215. "ref/net46/zh-hant/System.Net.Http.xml",
  6216. "ref/netcore50/System.Net.Http.dll",
  6217. "ref/netcore50/System.Net.Http.xml",
  6218. "ref/netcore50/de/System.Net.Http.xml",
  6219. "ref/netcore50/es/System.Net.Http.xml",
  6220. "ref/netcore50/fr/System.Net.Http.xml",
  6221. "ref/netcore50/it/System.Net.Http.xml",
  6222. "ref/netcore50/ja/System.Net.Http.xml",
  6223. "ref/netcore50/ko/System.Net.Http.xml",
  6224. "ref/netcore50/ru/System.Net.Http.xml",
  6225. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6226. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6227. "ref/netstandard1.1/System.Net.Http.dll",
  6228. "ref/netstandard1.1/System.Net.Http.xml",
  6229. "ref/netstandard1.1/de/System.Net.Http.xml",
  6230. "ref/netstandard1.1/es/System.Net.Http.xml",
  6231. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6232. "ref/netstandard1.1/it/System.Net.Http.xml",
  6233. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6234. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6235. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6236. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6237. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6238. "ref/netstandard1.3/System.Net.Http.dll",
  6239. "ref/netstandard1.3/System.Net.Http.xml",
  6240. "ref/netstandard1.3/de/System.Net.Http.xml",
  6241. "ref/netstandard1.3/es/System.Net.Http.xml",
  6242. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6243. "ref/netstandard1.3/it/System.Net.Http.xml",
  6244. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6245. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6246. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6247. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6248. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6249. "ref/portable-net45+win8+wpa81/_._",
  6250. "ref/win8/_._",
  6251. "ref/wpa81/_._",
  6252. "ref/xamarinios10/_._",
  6253. "ref/xamarintvos10/_._",
  6254. "ref/xamarinwatchos10/_._",
  6255. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6256. "runtimes/win/lib/net46/System.Net.Http.dll",
  6257. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6258. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6259. "system.net.http.4.1.0.nupkg.sha512",
  6260. "system.net.http.nuspec"
  6261. ]
  6262. },
  6263. "System.Net.NameResolution/4.0.0": {
  6264. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  6265. "type": "package",
  6266. "path": "system.net.nameresolution/4.0.0",
  6267. "files": [
  6268. ".nupkg.metadata",
  6269. ".signature.p7s",
  6270. "ThirdPartyNotices.txt",
  6271. "dotnet_library_license.txt",
  6272. "lib/MonoAndroid10/_._",
  6273. "lib/MonoTouch10/_._",
  6274. "lib/net46/System.Net.NameResolution.dll",
  6275. "lib/xamarinios10/_._",
  6276. "lib/xamarinmac20/_._",
  6277. "lib/xamarintvos10/_._",
  6278. "lib/xamarinwatchos10/_._",
  6279. "ref/MonoAndroid10/_._",
  6280. "ref/MonoTouch10/_._",
  6281. "ref/net46/System.Net.NameResolution.dll",
  6282. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6283. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6284. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6285. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6286. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6287. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6288. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6289. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6290. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6291. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6292. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6293. "ref/xamarinios10/_._",
  6294. "ref/xamarinmac20/_._",
  6295. "ref/xamarintvos10/_._",
  6296. "ref/xamarinwatchos10/_._",
  6297. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6298. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6299. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6300. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6301. "system.net.nameresolution.4.0.0.nupkg.sha512",
  6302. "system.net.nameresolution.nuspec"
  6303. ]
  6304. },
  6305. "System.Net.Primitives/4.0.11": {
  6306. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  6307. "type": "package",
  6308. "path": "system.net.primitives/4.0.11",
  6309. "files": [
  6310. ".nupkg.metadata",
  6311. "ThirdPartyNotices.txt",
  6312. "dotnet_library_license.txt",
  6313. "lib/MonoAndroid10/_._",
  6314. "lib/MonoTouch10/_._",
  6315. "lib/net45/_._",
  6316. "lib/portable-net45+win8+wp8+wpa81/_._",
  6317. "lib/win8/_._",
  6318. "lib/wp80/_._",
  6319. "lib/wpa81/_._",
  6320. "lib/xamarinios10/_._",
  6321. "lib/xamarinmac20/_._",
  6322. "lib/xamarintvos10/_._",
  6323. "lib/xamarinwatchos10/_._",
  6324. "ref/MonoAndroid10/_._",
  6325. "ref/MonoTouch10/_._",
  6326. "ref/net45/_._",
  6327. "ref/netcore50/System.Net.Primitives.dll",
  6328. "ref/netcore50/System.Net.Primitives.xml",
  6329. "ref/netcore50/de/System.Net.Primitives.xml",
  6330. "ref/netcore50/es/System.Net.Primitives.xml",
  6331. "ref/netcore50/fr/System.Net.Primitives.xml",
  6332. "ref/netcore50/it/System.Net.Primitives.xml",
  6333. "ref/netcore50/ja/System.Net.Primitives.xml",
  6334. "ref/netcore50/ko/System.Net.Primitives.xml",
  6335. "ref/netcore50/ru/System.Net.Primitives.xml",
  6336. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6337. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6338. "ref/netstandard1.0/System.Net.Primitives.dll",
  6339. "ref/netstandard1.0/System.Net.Primitives.xml",
  6340. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6341. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6342. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6343. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6344. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6345. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6346. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6347. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6348. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6349. "ref/netstandard1.1/System.Net.Primitives.dll",
  6350. "ref/netstandard1.1/System.Net.Primitives.xml",
  6351. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6352. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6353. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6354. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6355. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6356. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6357. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6358. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6359. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6360. "ref/netstandard1.3/System.Net.Primitives.dll",
  6361. "ref/netstandard1.3/System.Net.Primitives.xml",
  6362. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6363. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6364. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6365. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6366. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6367. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6368. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6369. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6370. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6371. "ref/portable-net45+win8+wp8+wpa81/_._",
  6372. "ref/win8/_._",
  6373. "ref/wp80/_._",
  6374. "ref/wpa81/_._",
  6375. "ref/xamarinios10/_._",
  6376. "ref/xamarinmac20/_._",
  6377. "ref/xamarintvos10/_._",
  6378. "ref/xamarinwatchos10/_._",
  6379. "system.net.primitives.4.0.11.nupkg.sha512",
  6380. "system.net.primitives.nuspec"
  6381. ]
  6382. },
  6383. "System.Net.Sockets/4.1.0": {
  6384. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  6385. "type": "package",
  6386. "path": "system.net.sockets/4.1.0",
  6387. "files": [
  6388. ".nupkg.metadata",
  6389. "ThirdPartyNotices.txt",
  6390. "dotnet_library_license.txt",
  6391. "lib/MonoAndroid10/_._",
  6392. "lib/MonoTouch10/_._",
  6393. "lib/net46/System.Net.Sockets.dll",
  6394. "lib/xamarinios10/_._",
  6395. "lib/xamarinmac20/_._",
  6396. "lib/xamarintvos10/_._",
  6397. "lib/xamarinwatchos10/_._",
  6398. "ref/MonoAndroid10/_._",
  6399. "ref/MonoTouch10/_._",
  6400. "ref/net46/System.Net.Sockets.dll",
  6401. "ref/netstandard1.3/System.Net.Sockets.dll",
  6402. "ref/netstandard1.3/System.Net.Sockets.xml",
  6403. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6404. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6405. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6406. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6407. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6408. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6409. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6410. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6411. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6412. "ref/xamarinios10/_._",
  6413. "ref/xamarinmac20/_._",
  6414. "ref/xamarintvos10/_._",
  6415. "ref/xamarinwatchos10/_._",
  6416. "system.net.sockets.4.1.0.nupkg.sha512",
  6417. "system.net.sockets.nuspec"
  6418. ]
  6419. },
  6420. "System.ObjectModel/4.0.12": {
  6421. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  6422. "type": "package",
  6423. "path": "system.objectmodel/4.0.12",
  6424. "files": [
  6425. ".nupkg.metadata",
  6426. "ThirdPartyNotices.txt",
  6427. "dotnet_library_license.txt",
  6428. "lib/MonoAndroid10/_._",
  6429. "lib/MonoTouch10/_._",
  6430. "lib/net45/_._",
  6431. "lib/netcore50/System.ObjectModel.dll",
  6432. "lib/netstandard1.3/System.ObjectModel.dll",
  6433. "lib/portable-net45+win8+wp8+wpa81/_._",
  6434. "lib/win8/_._",
  6435. "lib/wp80/_._",
  6436. "lib/wpa81/_._",
  6437. "lib/xamarinios10/_._",
  6438. "lib/xamarinmac20/_._",
  6439. "lib/xamarintvos10/_._",
  6440. "lib/xamarinwatchos10/_._",
  6441. "ref/MonoAndroid10/_._",
  6442. "ref/MonoTouch10/_._",
  6443. "ref/net45/_._",
  6444. "ref/netcore50/System.ObjectModel.dll",
  6445. "ref/netcore50/System.ObjectModel.xml",
  6446. "ref/netcore50/de/System.ObjectModel.xml",
  6447. "ref/netcore50/es/System.ObjectModel.xml",
  6448. "ref/netcore50/fr/System.ObjectModel.xml",
  6449. "ref/netcore50/it/System.ObjectModel.xml",
  6450. "ref/netcore50/ja/System.ObjectModel.xml",
  6451. "ref/netcore50/ko/System.ObjectModel.xml",
  6452. "ref/netcore50/ru/System.ObjectModel.xml",
  6453. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6454. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6455. "ref/netstandard1.0/System.ObjectModel.dll",
  6456. "ref/netstandard1.0/System.ObjectModel.xml",
  6457. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6458. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6459. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6460. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6461. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6462. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6463. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6464. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6465. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6466. "ref/netstandard1.3/System.ObjectModel.dll",
  6467. "ref/netstandard1.3/System.ObjectModel.xml",
  6468. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6469. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6470. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6471. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6472. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6473. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6474. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6475. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6476. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6477. "ref/portable-net45+win8+wp8+wpa81/_._",
  6478. "ref/win8/_._",
  6479. "ref/wp80/_._",
  6480. "ref/wpa81/_._",
  6481. "ref/xamarinios10/_._",
  6482. "ref/xamarinmac20/_._",
  6483. "ref/xamarintvos10/_._",
  6484. "ref/xamarinwatchos10/_._",
  6485. "system.objectmodel.4.0.12.nupkg.sha512",
  6486. "system.objectmodel.nuspec"
  6487. ]
  6488. },
  6489. "System.Reflection/4.3.0": {
  6490. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6491. "type": "package",
  6492. "path": "system.reflection/4.3.0",
  6493. "files": [
  6494. ".nupkg.metadata",
  6495. "ThirdPartyNotices.txt",
  6496. "dotnet_library_license.txt",
  6497. "lib/MonoAndroid10/_._",
  6498. "lib/MonoTouch10/_._",
  6499. "lib/net45/_._",
  6500. "lib/net462/System.Reflection.dll",
  6501. "lib/portable-net45+win8+wp8+wpa81/_._",
  6502. "lib/win8/_._",
  6503. "lib/wp80/_._",
  6504. "lib/wpa81/_._",
  6505. "lib/xamarinios10/_._",
  6506. "lib/xamarinmac20/_._",
  6507. "lib/xamarintvos10/_._",
  6508. "lib/xamarinwatchos10/_._",
  6509. "ref/MonoAndroid10/_._",
  6510. "ref/MonoTouch10/_._",
  6511. "ref/net45/_._",
  6512. "ref/net462/System.Reflection.dll",
  6513. "ref/netcore50/System.Reflection.dll",
  6514. "ref/netcore50/System.Reflection.xml",
  6515. "ref/netcore50/de/System.Reflection.xml",
  6516. "ref/netcore50/es/System.Reflection.xml",
  6517. "ref/netcore50/fr/System.Reflection.xml",
  6518. "ref/netcore50/it/System.Reflection.xml",
  6519. "ref/netcore50/ja/System.Reflection.xml",
  6520. "ref/netcore50/ko/System.Reflection.xml",
  6521. "ref/netcore50/ru/System.Reflection.xml",
  6522. "ref/netcore50/zh-hans/System.Reflection.xml",
  6523. "ref/netcore50/zh-hant/System.Reflection.xml",
  6524. "ref/netstandard1.0/System.Reflection.dll",
  6525. "ref/netstandard1.0/System.Reflection.xml",
  6526. "ref/netstandard1.0/de/System.Reflection.xml",
  6527. "ref/netstandard1.0/es/System.Reflection.xml",
  6528. "ref/netstandard1.0/fr/System.Reflection.xml",
  6529. "ref/netstandard1.0/it/System.Reflection.xml",
  6530. "ref/netstandard1.0/ja/System.Reflection.xml",
  6531. "ref/netstandard1.0/ko/System.Reflection.xml",
  6532. "ref/netstandard1.0/ru/System.Reflection.xml",
  6533. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6534. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6535. "ref/netstandard1.3/System.Reflection.dll",
  6536. "ref/netstandard1.3/System.Reflection.xml",
  6537. "ref/netstandard1.3/de/System.Reflection.xml",
  6538. "ref/netstandard1.3/es/System.Reflection.xml",
  6539. "ref/netstandard1.3/fr/System.Reflection.xml",
  6540. "ref/netstandard1.3/it/System.Reflection.xml",
  6541. "ref/netstandard1.3/ja/System.Reflection.xml",
  6542. "ref/netstandard1.3/ko/System.Reflection.xml",
  6543. "ref/netstandard1.3/ru/System.Reflection.xml",
  6544. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6545. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6546. "ref/netstandard1.5/System.Reflection.dll",
  6547. "ref/netstandard1.5/System.Reflection.xml",
  6548. "ref/netstandard1.5/de/System.Reflection.xml",
  6549. "ref/netstandard1.5/es/System.Reflection.xml",
  6550. "ref/netstandard1.5/fr/System.Reflection.xml",
  6551. "ref/netstandard1.5/it/System.Reflection.xml",
  6552. "ref/netstandard1.5/ja/System.Reflection.xml",
  6553. "ref/netstandard1.5/ko/System.Reflection.xml",
  6554. "ref/netstandard1.5/ru/System.Reflection.xml",
  6555. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6556. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6557. "ref/portable-net45+win8+wp8+wpa81/_._",
  6558. "ref/win8/_._",
  6559. "ref/wp80/_._",
  6560. "ref/wpa81/_._",
  6561. "ref/xamarinios10/_._",
  6562. "ref/xamarinmac20/_._",
  6563. "ref/xamarintvos10/_._",
  6564. "ref/xamarinwatchos10/_._",
  6565. "system.reflection.4.3.0.nupkg.sha512",
  6566. "system.reflection.nuspec"
  6567. ]
  6568. },
  6569. "System.Reflection.Emit/4.0.1": {
  6570. "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  6571. "type": "package",
  6572. "path": "system.reflection.emit/4.0.1",
  6573. "files": [
  6574. ".nupkg.metadata",
  6575. "ThirdPartyNotices.txt",
  6576. "dotnet_library_license.txt",
  6577. "lib/MonoAndroid10/_._",
  6578. "lib/net45/_._",
  6579. "lib/netcore50/System.Reflection.Emit.dll",
  6580. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6581. "lib/xamarinmac20/_._",
  6582. "ref/MonoAndroid10/_._",
  6583. "ref/net45/_._",
  6584. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6585. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6586. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6587. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6588. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6589. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6590. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6591. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6592. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6593. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6594. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6595. "ref/xamarinmac20/_._",
  6596. "system.reflection.emit.4.0.1.nupkg.sha512",
  6597. "system.reflection.emit.nuspec"
  6598. ]
  6599. },
  6600. "System.Reflection.Emit.ILGeneration/4.0.1": {
  6601. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  6602. "type": "package",
  6603. "path": "system.reflection.emit.ilgeneration/4.0.1",
  6604. "files": [
  6605. ".nupkg.metadata",
  6606. "ThirdPartyNotices.txt",
  6607. "dotnet_library_license.txt",
  6608. "lib/net45/_._",
  6609. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6610. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6611. "lib/portable-net45+wp8/_._",
  6612. "lib/wp80/_._",
  6613. "ref/net45/_._",
  6614. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6615. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6616. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6617. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6618. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6619. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6620. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6621. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6622. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6623. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6624. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6625. "ref/portable-net45+wp8/_._",
  6626. "ref/wp80/_._",
  6627. "runtimes/aot/lib/netcore50/_._",
  6628. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  6629. "system.reflection.emit.ilgeneration.nuspec"
  6630. ]
  6631. },
  6632. "System.Reflection.Emit.Lightweight/4.0.1": {
  6633. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  6634. "type": "package",
  6635. "path": "system.reflection.emit.lightweight/4.0.1",
  6636. "files": [
  6637. ".nupkg.metadata",
  6638. "ThirdPartyNotices.txt",
  6639. "dotnet_library_license.txt",
  6640. "lib/net45/_._",
  6641. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6642. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6643. "lib/portable-net45+wp8/_._",
  6644. "lib/wp80/_._",
  6645. "ref/net45/_._",
  6646. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6647. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6648. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6649. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6650. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6651. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6652. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6653. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6654. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6655. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6656. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6657. "ref/portable-net45+wp8/_._",
  6658. "ref/wp80/_._",
  6659. "runtimes/aot/lib/netcore50/_._",
  6660. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  6661. "system.reflection.emit.lightweight.nuspec"
  6662. ]
  6663. },
  6664. "System.Reflection.Extensions/4.0.1": {
  6665. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  6666. "type": "package",
  6667. "path": "system.reflection.extensions/4.0.1",
  6668. "files": [
  6669. ".nupkg.metadata",
  6670. "ThirdPartyNotices.txt",
  6671. "dotnet_library_license.txt",
  6672. "lib/MonoAndroid10/_._",
  6673. "lib/MonoTouch10/_._",
  6674. "lib/net45/_._",
  6675. "lib/portable-net45+win8+wp8+wpa81/_._",
  6676. "lib/win8/_._",
  6677. "lib/wp80/_._",
  6678. "lib/wpa81/_._",
  6679. "lib/xamarinios10/_._",
  6680. "lib/xamarinmac20/_._",
  6681. "lib/xamarintvos10/_._",
  6682. "lib/xamarinwatchos10/_._",
  6683. "ref/MonoAndroid10/_._",
  6684. "ref/MonoTouch10/_._",
  6685. "ref/net45/_._",
  6686. "ref/netcore50/System.Reflection.Extensions.dll",
  6687. "ref/netcore50/System.Reflection.Extensions.xml",
  6688. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6689. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6690. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6691. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6692. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6693. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6694. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6695. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6696. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6697. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6698. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6699. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6700. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6701. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6702. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6703. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6704. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6705. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6706. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6707. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6708. "ref/portable-net45+win8+wp8+wpa81/_._",
  6709. "ref/win8/_._",
  6710. "ref/wp80/_._",
  6711. "ref/wpa81/_._",
  6712. "ref/xamarinios10/_._",
  6713. "ref/xamarinmac20/_._",
  6714. "ref/xamarintvos10/_._",
  6715. "ref/xamarinwatchos10/_._",
  6716. "system.reflection.extensions.4.0.1.nupkg.sha512",
  6717. "system.reflection.extensions.nuspec"
  6718. ]
  6719. },
  6720. "System.Reflection.Primitives/4.3.0": {
  6721. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6722. "type": "package",
  6723. "path": "system.reflection.primitives/4.3.0",
  6724. "files": [
  6725. ".nupkg.metadata",
  6726. "ThirdPartyNotices.txt",
  6727. "dotnet_library_license.txt",
  6728. "lib/MonoAndroid10/_._",
  6729. "lib/MonoTouch10/_._",
  6730. "lib/net45/_._",
  6731. "lib/portable-net45+win8+wp8+wpa81/_._",
  6732. "lib/win8/_._",
  6733. "lib/wp80/_._",
  6734. "lib/wpa81/_._",
  6735. "lib/xamarinios10/_._",
  6736. "lib/xamarinmac20/_._",
  6737. "lib/xamarintvos10/_._",
  6738. "lib/xamarinwatchos10/_._",
  6739. "ref/MonoAndroid10/_._",
  6740. "ref/MonoTouch10/_._",
  6741. "ref/net45/_._",
  6742. "ref/netcore50/System.Reflection.Primitives.dll",
  6743. "ref/netcore50/System.Reflection.Primitives.xml",
  6744. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6745. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6746. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6747. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6748. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6749. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6750. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6751. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6752. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6753. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6754. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6755. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6756. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6757. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6758. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6759. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6760. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6761. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6762. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6763. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6764. "ref/portable-net45+win8+wp8+wpa81/_._",
  6765. "ref/win8/_._",
  6766. "ref/wp80/_._",
  6767. "ref/wpa81/_._",
  6768. "ref/xamarinios10/_._",
  6769. "ref/xamarinmac20/_._",
  6770. "ref/xamarintvos10/_._",
  6771. "ref/xamarinwatchos10/_._",
  6772. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6773. "system.reflection.primitives.nuspec"
  6774. ]
  6775. },
  6776. "System.Reflection.TypeExtensions/4.1.0": {
  6777. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  6778. "type": "package",
  6779. "path": "system.reflection.typeextensions/4.1.0",
  6780. "files": [
  6781. ".nupkg.metadata",
  6782. "ThirdPartyNotices.txt",
  6783. "dotnet_library_license.txt",
  6784. "lib/MonoAndroid10/_._",
  6785. "lib/MonoTouch10/_._",
  6786. "lib/net46/System.Reflection.TypeExtensions.dll",
  6787. "lib/net462/System.Reflection.TypeExtensions.dll",
  6788. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6789. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6790. "lib/xamarinios10/_._",
  6791. "lib/xamarinmac20/_._",
  6792. "lib/xamarintvos10/_._",
  6793. "lib/xamarinwatchos10/_._",
  6794. "ref/MonoAndroid10/_._",
  6795. "ref/MonoTouch10/_._",
  6796. "ref/net46/System.Reflection.TypeExtensions.dll",
  6797. "ref/net462/System.Reflection.TypeExtensions.dll",
  6798. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6799. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6800. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6801. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6802. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6803. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6804. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6805. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6806. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6807. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6808. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6809. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6810. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6811. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6812. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6813. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6814. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6815. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6816. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6817. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6818. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6819. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6820. "ref/xamarinios10/_._",
  6821. "ref/xamarinmac20/_._",
  6822. "ref/xamarintvos10/_._",
  6823. "ref/xamarinwatchos10/_._",
  6824. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6825. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  6826. "system.reflection.typeextensions.nuspec"
  6827. ]
  6828. },
  6829. "System.Resources.ResourceManager/4.0.1": {
  6830. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  6831. "type": "package",
  6832. "path": "system.resources.resourcemanager/4.0.1",
  6833. "files": [
  6834. ".nupkg.metadata",
  6835. "ThirdPartyNotices.txt",
  6836. "dotnet_library_license.txt",
  6837. "lib/MonoAndroid10/_._",
  6838. "lib/MonoTouch10/_._",
  6839. "lib/net45/_._",
  6840. "lib/portable-net45+win8+wp8+wpa81/_._",
  6841. "lib/win8/_._",
  6842. "lib/wp80/_._",
  6843. "lib/wpa81/_._",
  6844. "lib/xamarinios10/_._",
  6845. "lib/xamarinmac20/_._",
  6846. "lib/xamarintvos10/_._",
  6847. "lib/xamarinwatchos10/_._",
  6848. "ref/MonoAndroid10/_._",
  6849. "ref/MonoTouch10/_._",
  6850. "ref/net45/_._",
  6851. "ref/netcore50/System.Resources.ResourceManager.dll",
  6852. "ref/netcore50/System.Resources.ResourceManager.xml",
  6853. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6854. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6855. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6856. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6857. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6858. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6859. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6860. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6861. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6862. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6863. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6864. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6865. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6866. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6867. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6868. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6869. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6870. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6871. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6872. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6873. "ref/portable-net45+win8+wp8+wpa81/_._",
  6874. "ref/win8/_._",
  6875. "ref/wp80/_._",
  6876. "ref/wpa81/_._",
  6877. "ref/xamarinios10/_._",
  6878. "ref/xamarinmac20/_._",
  6879. "ref/xamarintvos10/_._",
  6880. "ref/xamarinwatchos10/_._",
  6881. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  6882. "system.resources.resourcemanager.nuspec"
  6883. ]
  6884. },
  6885. "System.Runtime/4.3.0": {
  6886. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6887. "type": "package",
  6888. "path": "system.runtime/4.3.0",
  6889. "files": [
  6890. ".nupkg.metadata",
  6891. "ThirdPartyNotices.txt",
  6892. "dotnet_library_license.txt",
  6893. "lib/MonoAndroid10/_._",
  6894. "lib/MonoTouch10/_._",
  6895. "lib/net45/_._",
  6896. "lib/net462/System.Runtime.dll",
  6897. "lib/portable-net45+win8+wp80+wpa81/_._",
  6898. "lib/win8/_._",
  6899. "lib/wp80/_._",
  6900. "lib/wpa81/_._",
  6901. "lib/xamarinios10/_._",
  6902. "lib/xamarinmac20/_._",
  6903. "lib/xamarintvos10/_._",
  6904. "lib/xamarinwatchos10/_._",
  6905. "ref/MonoAndroid10/_._",
  6906. "ref/MonoTouch10/_._",
  6907. "ref/net45/_._",
  6908. "ref/net462/System.Runtime.dll",
  6909. "ref/netcore50/System.Runtime.dll",
  6910. "ref/netcore50/System.Runtime.xml",
  6911. "ref/netcore50/de/System.Runtime.xml",
  6912. "ref/netcore50/es/System.Runtime.xml",
  6913. "ref/netcore50/fr/System.Runtime.xml",
  6914. "ref/netcore50/it/System.Runtime.xml",
  6915. "ref/netcore50/ja/System.Runtime.xml",
  6916. "ref/netcore50/ko/System.Runtime.xml",
  6917. "ref/netcore50/ru/System.Runtime.xml",
  6918. "ref/netcore50/zh-hans/System.Runtime.xml",
  6919. "ref/netcore50/zh-hant/System.Runtime.xml",
  6920. "ref/netstandard1.0/System.Runtime.dll",
  6921. "ref/netstandard1.0/System.Runtime.xml",
  6922. "ref/netstandard1.0/de/System.Runtime.xml",
  6923. "ref/netstandard1.0/es/System.Runtime.xml",
  6924. "ref/netstandard1.0/fr/System.Runtime.xml",
  6925. "ref/netstandard1.0/it/System.Runtime.xml",
  6926. "ref/netstandard1.0/ja/System.Runtime.xml",
  6927. "ref/netstandard1.0/ko/System.Runtime.xml",
  6928. "ref/netstandard1.0/ru/System.Runtime.xml",
  6929. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6930. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6931. "ref/netstandard1.2/System.Runtime.dll",
  6932. "ref/netstandard1.2/System.Runtime.xml",
  6933. "ref/netstandard1.2/de/System.Runtime.xml",
  6934. "ref/netstandard1.2/es/System.Runtime.xml",
  6935. "ref/netstandard1.2/fr/System.Runtime.xml",
  6936. "ref/netstandard1.2/it/System.Runtime.xml",
  6937. "ref/netstandard1.2/ja/System.Runtime.xml",
  6938. "ref/netstandard1.2/ko/System.Runtime.xml",
  6939. "ref/netstandard1.2/ru/System.Runtime.xml",
  6940. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6941. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6942. "ref/netstandard1.3/System.Runtime.dll",
  6943. "ref/netstandard1.3/System.Runtime.xml",
  6944. "ref/netstandard1.3/de/System.Runtime.xml",
  6945. "ref/netstandard1.3/es/System.Runtime.xml",
  6946. "ref/netstandard1.3/fr/System.Runtime.xml",
  6947. "ref/netstandard1.3/it/System.Runtime.xml",
  6948. "ref/netstandard1.3/ja/System.Runtime.xml",
  6949. "ref/netstandard1.3/ko/System.Runtime.xml",
  6950. "ref/netstandard1.3/ru/System.Runtime.xml",
  6951. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6952. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6953. "ref/netstandard1.5/System.Runtime.dll",
  6954. "ref/netstandard1.5/System.Runtime.xml",
  6955. "ref/netstandard1.5/de/System.Runtime.xml",
  6956. "ref/netstandard1.5/es/System.Runtime.xml",
  6957. "ref/netstandard1.5/fr/System.Runtime.xml",
  6958. "ref/netstandard1.5/it/System.Runtime.xml",
  6959. "ref/netstandard1.5/ja/System.Runtime.xml",
  6960. "ref/netstandard1.5/ko/System.Runtime.xml",
  6961. "ref/netstandard1.5/ru/System.Runtime.xml",
  6962. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6963. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6964. "ref/portable-net45+win8+wp80+wpa81/_._",
  6965. "ref/win8/_._",
  6966. "ref/wp80/_._",
  6967. "ref/wpa81/_._",
  6968. "ref/xamarinios10/_._",
  6969. "ref/xamarinmac20/_._",
  6970. "ref/xamarintvos10/_._",
  6971. "ref/xamarinwatchos10/_._",
  6972. "system.runtime.4.3.0.nupkg.sha512",
  6973. "system.runtime.nuspec"
  6974. ]
  6975. },
  6976. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6977. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6978. "type": "package",
  6979. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6980. "files": [
  6981. ".nupkg.metadata",
  6982. ".signature.p7s",
  6983. "Icon.png",
  6984. "LICENSE.TXT",
  6985. "THIRD-PARTY-NOTICES.TXT",
  6986. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6987. "buildTransitive/netcoreapp3.1/_._",
  6988. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6989. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6990. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6991. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6992. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6993. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6994. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6995. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6996. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6997. "system.runtime.compilerservices.unsafe.nuspec",
  6998. "useSharedDesignerContext.txt"
  6999. ]
  7000. },
  7001. "System.Runtime.Extensions/4.1.0": {
  7002. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  7003. "type": "package",
  7004. "path": "system.runtime.extensions/4.1.0",
  7005. "files": [
  7006. ".nupkg.metadata",
  7007. "ThirdPartyNotices.txt",
  7008. "dotnet_library_license.txt",
  7009. "lib/MonoAndroid10/_._",
  7010. "lib/MonoTouch10/_._",
  7011. "lib/net45/_._",
  7012. "lib/net462/System.Runtime.Extensions.dll",
  7013. "lib/portable-net45+win8+wp8+wpa81/_._",
  7014. "lib/win8/_._",
  7015. "lib/wp80/_._",
  7016. "lib/wpa81/_._",
  7017. "lib/xamarinios10/_._",
  7018. "lib/xamarinmac20/_._",
  7019. "lib/xamarintvos10/_._",
  7020. "lib/xamarinwatchos10/_._",
  7021. "ref/MonoAndroid10/_._",
  7022. "ref/MonoTouch10/_._",
  7023. "ref/net45/_._",
  7024. "ref/net462/System.Runtime.Extensions.dll",
  7025. "ref/netcore50/System.Runtime.Extensions.dll",
  7026. "ref/netcore50/System.Runtime.Extensions.xml",
  7027. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7028. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7029. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7030. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7031. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7032. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7033. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7034. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7035. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7036. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7037. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7038. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7039. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7040. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7041. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7042. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7043. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7044. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7045. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7046. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7047. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7048. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7049. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7050. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7051. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7052. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7053. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7054. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7055. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7056. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7057. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7058. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7059. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7060. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7061. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7062. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7063. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7064. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7065. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7066. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7067. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7068. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7069. "ref/portable-net45+win8+wp8+wpa81/_._",
  7070. "ref/win8/_._",
  7071. "ref/wp80/_._",
  7072. "ref/wpa81/_._",
  7073. "ref/xamarinios10/_._",
  7074. "ref/xamarinmac20/_._",
  7075. "ref/xamarintvos10/_._",
  7076. "ref/xamarinwatchos10/_._",
  7077. "system.runtime.extensions.4.1.0.nupkg.sha512",
  7078. "system.runtime.extensions.nuspec"
  7079. ]
  7080. },
  7081. "System.Runtime.Handles/4.0.1": {
  7082. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  7083. "type": "package",
  7084. "path": "system.runtime.handles/4.0.1",
  7085. "files": [
  7086. ".nupkg.metadata",
  7087. "ThirdPartyNotices.txt",
  7088. "dotnet_library_license.txt",
  7089. "lib/MonoAndroid10/_._",
  7090. "lib/MonoTouch10/_._",
  7091. "lib/net46/_._",
  7092. "lib/xamarinios10/_._",
  7093. "lib/xamarinmac20/_._",
  7094. "lib/xamarintvos10/_._",
  7095. "lib/xamarinwatchos10/_._",
  7096. "ref/MonoAndroid10/_._",
  7097. "ref/MonoTouch10/_._",
  7098. "ref/net46/_._",
  7099. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7100. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7101. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7102. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7103. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7104. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7105. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7106. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7107. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7108. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7109. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7110. "ref/xamarinios10/_._",
  7111. "ref/xamarinmac20/_._",
  7112. "ref/xamarintvos10/_._",
  7113. "ref/xamarinwatchos10/_._",
  7114. "system.runtime.handles.4.0.1.nupkg.sha512",
  7115. "system.runtime.handles.nuspec"
  7116. ]
  7117. },
  7118. "System.Runtime.InteropServices/4.1.0": {
  7119. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  7120. "type": "package",
  7121. "path": "system.runtime.interopservices/4.1.0",
  7122. "files": [
  7123. ".nupkg.metadata",
  7124. "ThirdPartyNotices.txt",
  7125. "dotnet_library_license.txt",
  7126. "lib/MonoAndroid10/_._",
  7127. "lib/MonoTouch10/_._",
  7128. "lib/net45/_._",
  7129. "lib/net462/System.Runtime.InteropServices.dll",
  7130. "lib/portable-net45+win8+wpa81/_._",
  7131. "lib/win8/_._",
  7132. "lib/wpa81/_._",
  7133. "lib/xamarinios10/_._",
  7134. "lib/xamarinmac20/_._",
  7135. "lib/xamarintvos10/_._",
  7136. "lib/xamarinwatchos10/_._",
  7137. "ref/MonoAndroid10/_._",
  7138. "ref/MonoTouch10/_._",
  7139. "ref/net45/_._",
  7140. "ref/net462/System.Runtime.InteropServices.dll",
  7141. "ref/netcore50/System.Runtime.InteropServices.dll",
  7142. "ref/netcore50/System.Runtime.InteropServices.xml",
  7143. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7144. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7145. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7146. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7147. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7148. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7149. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7150. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7151. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7152. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7153. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7154. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7155. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7156. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7157. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7158. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7159. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7160. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7161. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7162. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7163. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7164. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7165. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7166. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7167. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7168. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7169. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7170. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7171. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7172. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7173. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7174. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7175. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7176. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7177. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7178. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7179. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7180. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7181. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7182. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7183. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7184. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7185. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7186. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7187. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7188. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7189. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7190. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7191. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7192. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7193. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7194. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7195. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7196. "ref/portable-net45+win8+wpa81/_._",
  7197. "ref/win8/_._",
  7198. "ref/wpa81/_._",
  7199. "ref/xamarinios10/_._",
  7200. "ref/xamarinmac20/_._",
  7201. "ref/xamarintvos10/_._",
  7202. "ref/xamarinwatchos10/_._",
  7203. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  7204. "system.runtime.interopservices.nuspec"
  7205. ]
  7206. },
  7207. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  7208. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  7209. "type": "package",
  7210. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  7211. "files": [
  7212. ".nupkg.metadata",
  7213. "ThirdPartyNotices.txt",
  7214. "dotnet_library_license.txt",
  7215. "lib/MonoAndroid10/_._",
  7216. "lib/MonoTouch10/_._",
  7217. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7218. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7219. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7220. "lib/xamarinios10/_._",
  7221. "lib/xamarinmac20/_._",
  7222. "lib/xamarintvos10/_._",
  7223. "lib/xamarinwatchos10/_._",
  7224. "ref/MonoAndroid10/_._",
  7225. "ref/MonoTouch10/_._",
  7226. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7227. "ref/xamarinios10/_._",
  7228. "ref/xamarinmac20/_._",
  7229. "ref/xamarintvos10/_._",
  7230. "ref/xamarinwatchos10/_._",
  7231. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7232. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7233. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7234. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7235. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7236. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  7237. "system.runtime.interopservices.runtimeinformation.nuspec"
  7238. ]
  7239. },
  7240. "System.Runtime.Numerics/4.0.1": {
  7241. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  7242. "type": "package",
  7243. "path": "system.runtime.numerics/4.0.1",
  7244. "files": [
  7245. ".nupkg.metadata",
  7246. "ThirdPartyNotices.txt",
  7247. "dotnet_library_license.txt",
  7248. "lib/MonoAndroid10/_._",
  7249. "lib/MonoTouch10/_._",
  7250. "lib/net45/_._",
  7251. "lib/netcore50/System.Runtime.Numerics.dll",
  7252. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7253. "lib/portable-net45+win8+wpa81/_._",
  7254. "lib/win8/_._",
  7255. "lib/wpa81/_._",
  7256. "lib/xamarinios10/_._",
  7257. "lib/xamarinmac20/_._",
  7258. "lib/xamarintvos10/_._",
  7259. "lib/xamarinwatchos10/_._",
  7260. "ref/MonoAndroid10/_._",
  7261. "ref/MonoTouch10/_._",
  7262. "ref/net45/_._",
  7263. "ref/netcore50/System.Runtime.Numerics.dll",
  7264. "ref/netcore50/System.Runtime.Numerics.xml",
  7265. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7266. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7267. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7268. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7269. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7270. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7271. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7272. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7273. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7274. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7275. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7276. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7277. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7278. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7279. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7280. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7281. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7282. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7283. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7284. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7285. "ref/portable-net45+win8+wpa81/_._",
  7286. "ref/win8/_._",
  7287. "ref/wpa81/_._",
  7288. "ref/xamarinios10/_._",
  7289. "ref/xamarinmac20/_._",
  7290. "ref/xamarintvos10/_._",
  7291. "ref/xamarinwatchos10/_._",
  7292. "system.runtime.numerics.4.0.1.nupkg.sha512",
  7293. "system.runtime.numerics.nuspec"
  7294. ]
  7295. },
  7296. "System.Security.AccessControl/6.0.0": {
  7297. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  7298. "type": "package",
  7299. "path": "system.security.accesscontrol/6.0.0",
  7300. "files": [
  7301. ".nupkg.metadata",
  7302. ".signature.p7s",
  7303. "Icon.png",
  7304. "LICENSE.TXT",
  7305. "THIRD-PARTY-NOTICES.TXT",
  7306. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  7307. "buildTransitive/netcoreapp3.1/_._",
  7308. "lib/net461/System.Security.AccessControl.dll",
  7309. "lib/net461/System.Security.AccessControl.xml",
  7310. "lib/net6.0/System.Security.AccessControl.dll",
  7311. "lib/net6.0/System.Security.AccessControl.xml",
  7312. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7313. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7314. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7315. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7316. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  7317. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  7318. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  7319. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  7320. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  7321. "system.security.accesscontrol.nuspec",
  7322. "useSharedDesignerContext.txt"
  7323. ]
  7324. },
  7325. "System.Security.Cryptography.Algorithms/4.2.0": {
  7326. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  7327. "type": "package",
  7328. "path": "system.security.cryptography.algorithms/4.2.0",
  7329. "files": [
  7330. ".nupkg.metadata",
  7331. "ThirdPartyNotices.txt",
  7332. "dotnet_library_license.txt",
  7333. "lib/MonoAndroid10/_._",
  7334. "lib/MonoTouch10/_._",
  7335. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7336. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7337. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7338. "lib/xamarinios10/_._",
  7339. "lib/xamarinmac20/_._",
  7340. "lib/xamarintvos10/_._",
  7341. "lib/xamarinwatchos10/_._",
  7342. "ref/MonoAndroid10/_._",
  7343. "ref/MonoTouch10/_._",
  7344. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7345. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7346. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7347. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7348. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7349. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7350. "ref/xamarinios10/_._",
  7351. "ref/xamarinmac20/_._",
  7352. "ref/xamarintvos10/_._",
  7353. "ref/xamarinwatchos10/_._",
  7354. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7355. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7356. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7357. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7358. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7359. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7360. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  7361. "system.security.cryptography.algorithms.nuspec"
  7362. ]
  7363. },
  7364. "System.Security.Cryptography.Cng/4.5.0": {
  7365. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  7366. "type": "package",
  7367. "path": "system.security.cryptography.cng/4.5.0",
  7368. "files": [
  7369. ".nupkg.metadata",
  7370. ".signature.p7s",
  7371. "LICENSE.TXT",
  7372. "THIRD-PARTY-NOTICES.TXT",
  7373. "lib/MonoAndroid10/_._",
  7374. "lib/MonoTouch10/_._",
  7375. "lib/net46/System.Security.Cryptography.Cng.dll",
  7376. "lib/net461/System.Security.Cryptography.Cng.dll",
  7377. "lib/net462/System.Security.Cryptography.Cng.dll",
  7378. "lib/net47/System.Security.Cryptography.Cng.dll",
  7379. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7380. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7381. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7382. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7383. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7384. "lib/uap10.0.16299/_._",
  7385. "lib/xamarinios10/_._",
  7386. "lib/xamarinmac20/_._",
  7387. "lib/xamarintvos10/_._",
  7388. "lib/xamarinwatchos10/_._",
  7389. "ref/MonoAndroid10/_._",
  7390. "ref/MonoTouch10/_._",
  7391. "ref/net46/System.Security.Cryptography.Cng.dll",
  7392. "ref/net461/System.Security.Cryptography.Cng.dll",
  7393. "ref/net461/System.Security.Cryptography.Cng.xml",
  7394. "ref/net462/System.Security.Cryptography.Cng.dll",
  7395. "ref/net462/System.Security.Cryptography.Cng.xml",
  7396. "ref/net47/System.Security.Cryptography.Cng.dll",
  7397. "ref/net47/System.Security.Cryptography.Cng.xml",
  7398. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7399. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7400. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7401. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7402. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7403. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7404. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7405. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7406. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7407. "ref/uap10.0.16299/_._",
  7408. "ref/xamarinios10/_._",
  7409. "ref/xamarinmac20/_._",
  7410. "ref/xamarintvos10/_._",
  7411. "ref/xamarinwatchos10/_._",
  7412. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7413. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7414. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7415. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7416. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7417. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7418. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7419. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7420. "runtimes/win/lib/uap10.0.16299/_._",
  7421. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  7422. "system.security.cryptography.cng.nuspec",
  7423. "useSharedDesignerContext.txt",
  7424. "version.txt"
  7425. ]
  7426. },
  7427. "System.Security.Cryptography.Csp/4.0.0": {
  7428. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  7429. "type": "package",
  7430. "path": "system.security.cryptography.csp/4.0.0",
  7431. "files": [
  7432. ".nupkg.metadata",
  7433. "ThirdPartyNotices.txt",
  7434. "dotnet_library_license.txt",
  7435. "lib/MonoAndroid10/_._",
  7436. "lib/MonoTouch10/_._",
  7437. "lib/net46/System.Security.Cryptography.Csp.dll",
  7438. "lib/xamarinios10/_._",
  7439. "lib/xamarinmac20/_._",
  7440. "lib/xamarintvos10/_._",
  7441. "lib/xamarinwatchos10/_._",
  7442. "ref/MonoAndroid10/_._",
  7443. "ref/MonoTouch10/_._",
  7444. "ref/net46/System.Security.Cryptography.Csp.dll",
  7445. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7446. "ref/xamarinios10/_._",
  7447. "ref/xamarinmac20/_._",
  7448. "ref/xamarintvos10/_._",
  7449. "ref/xamarinwatchos10/_._",
  7450. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7451. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7452. "runtimes/win/lib/netcore50/_._",
  7453. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7454. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  7455. "system.security.cryptography.csp.nuspec"
  7456. ]
  7457. },
  7458. "System.Security.Cryptography.Encoding/4.0.0": {
  7459. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  7460. "type": "package",
  7461. "path": "system.security.cryptography.encoding/4.0.0",
  7462. "files": [
  7463. ".nupkg.metadata",
  7464. "ThirdPartyNotices.txt",
  7465. "dotnet_library_license.txt",
  7466. "lib/MonoAndroid10/_._",
  7467. "lib/MonoTouch10/_._",
  7468. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7469. "lib/xamarinios10/_._",
  7470. "lib/xamarinmac20/_._",
  7471. "lib/xamarintvos10/_._",
  7472. "lib/xamarinwatchos10/_._",
  7473. "ref/MonoAndroid10/_._",
  7474. "ref/MonoTouch10/_._",
  7475. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7476. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7477. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7478. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7479. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7480. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7481. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7482. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7483. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7484. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7485. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7486. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7487. "ref/xamarinios10/_._",
  7488. "ref/xamarinmac20/_._",
  7489. "ref/xamarintvos10/_._",
  7490. "ref/xamarinwatchos10/_._",
  7491. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7492. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7493. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7494. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  7495. "system.security.cryptography.encoding.nuspec"
  7496. ]
  7497. },
  7498. "System.Security.Cryptography.OpenSsl/4.0.0": {
  7499. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  7500. "type": "package",
  7501. "path": "system.security.cryptography.openssl/4.0.0",
  7502. "files": [
  7503. ".nupkg.metadata",
  7504. "ThirdPartyNotices.txt",
  7505. "dotnet_library_license.txt",
  7506. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7507. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7508. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7509. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  7510. "system.security.cryptography.openssl.nuspec"
  7511. ]
  7512. },
  7513. "System.Security.Cryptography.Primitives/4.0.0": {
  7514. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  7515. "type": "package",
  7516. "path": "system.security.cryptography.primitives/4.0.0",
  7517. "files": [
  7518. ".nupkg.metadata",
  7519. "ThirdPartyNotices.txt",
  7520. "dotnet_library_license.txt",
  7521. "lib/MonoAndroid10/_._",
  7522. "lib/MonoTouch10/_._",
  7523. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7524. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7525. "lib/xamarinios10/_._",
  7526. "lib/xamarinmac20/_._",
  7527. "lib/xamarintvos10/_._",
  7528. "lib/xamarinwatchos10/_._",
  7529. "ref/MonoAndroid10/_._",
  7530. "ref/MonoTouch10/_._",
  7531. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7532. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7533. "ref/xamarinios10/_._",
  7534. "ref/xamarinmac20/_._",
  7535. "ref/xamarintvos10/_._",
  7536. "ref/xamarinwatchos10/_._",
  7537. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  7538. "system.security.cryptography.primitives.nuspec"
  7539. ]
  7540. },
  7541. "System.Security.Cryptography.ProtectedData/6.0.0": {
  7542. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  7543. "type": "package",
  7544. "path": "system.security.cryptography.protecteddata/6.0.0",
  7545. "files": [
  7546. ".nupkg.metadata",
  7547. ".signature.p7s",
  7548. "Icon.png",
  7549. "LICENSE.TXT",
  7550. "THIRD-PARTY-NOTICES.TXT",
  7551. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  7552. "buildTransitive/netcoreapp3.1/_._",
  7553. "lib/MonoAndroid10/_._",
  7554. "lib/MonoTouch10/_._",
  7555. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7556. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7557. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7558. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7559. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7560. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7561. "lib/xamarinios10/_._",
  7562. "lib/xamarinmac20/_._",
  7563. "lib/xamarintvos10/_._",
  7564. "lib/xamarinwatchos10/_._",
  7565. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7566. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7567. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7568. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7569. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7570. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7571. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  7572. "system.security.cryptography.protecteddata.nuspec",
  7573. "useSharedDesignerContext.txt"
  7574. ]
  7575. },
  7576. "System.Security.Cryptography.X509Certificates/4.1.0": {
  7577. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  7578. "type": "package",
  7579. "path": "system.security.cryptography.x509certificates/4.1.0",
  7580. "files": [
  7581. ".nupkg.metadata",
  7582. "ThirdPartyNotices.txt",
  7583. "dotnet_library_license.txt",
  7584. "lib/MonoAndroid10/_._",
  7585. "lib/MonoTouch10/_._",
  7586. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7587. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7588. "lib/xamarinios10/_._",
  7589. "lib/xamarinmac20/_._",
  7590. "lib/xamarintvos10/_._",
  7591. "lib/xamarinwatchos10/_._",
  7592. "ref/MonoAndroid10/_._",
  7593. "ref/MonoTouch10/_._",
  7594. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7595. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7596. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7597. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7598. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7599. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7600. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7601. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7602. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7603. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7604. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7605. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7606. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7607. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7608. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7609. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7610. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7611. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7612. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7613. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7614. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7615. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7616. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7617. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7618. "ref/xamarinios10/_._",
  7619. "ref/xamarinmac20/_._",
  7620. "ref/xamarintvos10/_._",
  7621. "ref/xamarinwatchos10/_._",
  7622. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7623. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7624. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7625. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7626. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7627. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  7628. "system.security.cryptography.x509certificates.nuspec"
  7629. ]
  7630. },
  7631. "System.Security.Permissions/6.0.0": {
  7632. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  7633. "type": "package",
  7634. "path": "system.security.permissions/6.0.0",
  7635. "files": [
  7636. ".nupkg.metadata",
  7637. ".signature.p7s",
  7638. "Icon.png",
  7639. "LICENSE.TXT",
  7640. "THIRD-PARTY-NOTICES.TXT",
  7641. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  7642. "buildTransitive/netcoreapp3.1/_._",
  7643. "lib/net461/System.Security.Permissions.dll",
  7644. "lib/net461/System.Security.Permissions.xml",
  7645. "lib/net5.0/System.Security.Permissions.dll",
  7646. "lib/net5.0/System.Security.Permissions.xml",
  7647. "lib/net6.0/System.Security.Permissions.dll",
  7648. "lib/net6.0/System.Security.Permissions.xml",
  7649. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  7650. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  7651. "lib/netstandard2.0/System.Security.Permissions.dll",
  7652. "lib/netstandard2.0/System.Security.Permissions.xml",
  7653. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  7654. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  7655. "system.security.permissions.6.0.0.nupkg.sha512",
  7656. "system.security.permissions.nuspec",
  7657. "useSharedDesignerContext.txt"
  7658. ]
  7659. },
  7660. "System.Security.Principal.Windows/5.0.0": {
  7661. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7662. "type": "package",
  7663. "path": "system.security.principal.windows/5.0.0",
  7664. "files": [
  7665. ".nupkg.metadata",
  7666. ".signature.p7s",
  7667. "Icon.png",
  7668. "LICENSE.TXT",
  7669. "THIRD-PARTY-NOTICES.TXT",
  7670. "lib/net46/System.Security.Principal.Windows.dll",
  7671. "lib/net461/System.Security.Principal.Windows.dll",
  7672. "lib/net461/System.Security.Principal.Windows.xml",
  7673. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7674. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7675. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7676. "lib/uap10.0.16299/_._",
  7677. "ref/net46/System.Security.Principal.Windows.dll",
  7678. "ref/net461/System.Security.Principal.Windows.dll",
  7679. "ref/net461/System.Security.Principal.Windows.xml",
  7680. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7681. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7682. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7683. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7684. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7685. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7686. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7687. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7688. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7689. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7690. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7691. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7692. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7693. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7694. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7695. "ref/uap10.0.16299/_._",
  7696. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7697. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7698. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7699. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7700. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7701. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7702. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7703. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7704. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7705. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7706. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7707. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7708. "runtimes/win/lib/uap10.0.16299/_._",
  7709. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7710. "system.security.principal.windows.nuspec",
  7711. "useSharedDesignerContext.txt",
  7712. "version.txt"
  7713. ]
  7714. },
  7715. "System.ServiceProcess.ServiceController/8.0.0": {
  7716. "sha512": "jtYVG3bpw2n/NvNnP2g/JLri0D4UtfusTvLeH6cZPNAEjJXJVGspS3wLgVvjNbm+wjaYkFgsXejMTocV1T5DIQ==",
  7717. "type": "package",
  7718. "path": "system.serviceprocess.servicecontroller/8.0.0",
  7719. "files": [
  7720. ".nupkg.metadata",
  7721. ".signature.p7s",
  7722. "Icon.png",
  7723. "LICENSE.TXT",
  7724. "PACKAGE.md",
  7725. "THIRD-PARTY-NOTICES.TXT",
  7726. "buildTransitive/net461/System.ServiceProcess.ServiceController.targets",
  7727. "buildTransitive/net462/_._",
  7728. "buildTransitive/net6.0/_._",
  7729. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets",
  7730. "lib/net462/System.ServiceProcess.ServiceController.dll",
  7731. "lib/net462/System.ServiceProcess.ServiceController.xml",
  7732. "lib/net6.0/System.ServiceProcess.ServiceController.dll",
  7733. "lib/net6.0/System.ServiceProcess.ServiceController.xml",
  7734. "lib/net7.0/System.ServiceProcess.ServiceController.dll",
  7735. "lib/net7.0/System.ServiceProcess.ServiceController.xml",
  7736. "lib/net8.0/System.ServiceProcess.ServiceController.dll",
  7737. "lib/net8.0/System.ServiceProcess.ServiceController.xml",
  7738. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  7739. "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  7740. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll",
  7741. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml",
  7742. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.dll",
  7743. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.xml",
  7744. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll",
  7745. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.xml",
  7746. "system.serviceprocess.servicecontroller.8.0.0.nupkg.sha512",
  7747. "system.serviceprocess.servicecontroller.nuspec",
  7748. "useSharedDesignerContext.txt"
  7749. ]
  7750. },
  7751. "System.Text.Encoding/4.3.0": {
  7752. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7753. "type": "package",
  7754. "path": "system.text.encoding/4.3.0",
  7755. "files": [
  7756. ".nupkg.metadata",
  7757. "ThirdPartyNotices.txt",
  7758. "dotnet_library_license.txt",
  7759. "lib/MonoAndroid10/_._",
  7760. "lib/MonoTouch10/_._",
  7761. "lib/net45/_._",
  7762. "lib/portable-net45+win8+wp8+wpa81/_._",
  7763. "lib/win8/_._",
  7764. "lib/wp80/_._",
  7765. "lib/wpa81/_._",
  7766. "lib/xamarinios10/_._",
  7767. "lib/xamarinmac20/_._",
  7768. "lib/xamarintvos10/_._",
  7769. "lib/xamarinwatchos10/_._",
  7770. "ref/MonoAndroid10/_._",
  7771. "ref/MonoTouch10/_._",
  7772. "ref/net45/_._",
  7773. "ref/netcore50/System.Text.Encoding.dll",
  7774. "ref/netcore50/System.Text.Encoding.xml",
  7775. "ref/netcore50/de/System.Text.Encoding.xml",
  7776. "ref/netcore50/es/System.Text.Encoding.xml",
  7777. "ref/netcore50/fr/System.Text.Encoding.xml",
  7778. "ref/netcore50/it/System.Text.Encoding.xml",
  7779. "ref/netcore50/ja/System.Text.Encoding.xml",
  7780. "ref/netcore50/ko/System.Text.Encoding.xml",
  7781. "ref/netcore50/ru/System.Text.Encoding.xml",
  7782. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7783. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7784. "ref/netstandard1.0/System.Text.Encoding.dll",
  7785. "ref/netstandard1.0/System.Text.Encoding.xml",
  7786. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7787. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7788. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7789. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7790. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7791. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7792. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7793. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7794. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7795. "ref/netstandard1.3/System.Text.Encoding.dll",
  7796. "ref/netstandard1.3/System.Text.Encoding.xml",
  7797. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7798. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7799. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7800. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7801. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7802. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7803. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7804. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7805. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7806. "ref/portable-net45+win8+wp8+wpa81/_._",
  7807. "ref/win8/_._",
  7808. "ref/wp80/_._",
  7809. "ref/wpa81/_._",
  7810. "ref/xamarinios10/_._",
  7811. "ref/xamarinmac20/_._",
  7812. "ref/xamarintvos10/_._",
  7813. "ref/xamarinwatchos10/_._",
  7814. "system.text.encoding.4.3.0.nupkg.sha512",
  7815. "system.text.encoding.nuspec"
  7816. ]
  7817. },
  7818. "System.Text.Encoding.CodePages/4.5.1": {
  7819. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  7820. "type": "package",
  7821. "path": "system.text.encoding.codepages/4.5.1",
  7822. "files": [
  7823. ".nupkg.metadata",
  7824. ".signature.p7s",
  7825. "LICENSE.TXT",
  7826. "THIRD-PARTY-NOTICES.TXT",
  7827. "lib/MonoAndroid10/_._",
  7828. "lib/MonoTouch10/_._",
  7829. "lib/net46/System.Text.Encoding.CodePages.dll",
  7830. "lib/net461/System.Text.Encoding.CodePages.dll",
  7831. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7832. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7833. "lib/xamarinios10/_._",
  7834. "lib/xamarinmac20/_._",
  7835. "lib/xamarintvos10/_._",
  7836. "lib/xamarinwatchos10/_._",
  7837. "ref/MonoAndroid10/_._",
  7838. "ref/MonoTouch10/_._",
  7839. "ref/xamarinios10/_._",
  7840. "ref/xamarinmac20/_._",
  7841. "ref/xamarintvos10/_._",
  7842. "ref/xamarinwatchos10/_._",
  7843. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7844. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7845. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7846. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7847. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  7848. "system.text.encoding.codepages.nuspec",
  7849. "useSharedDesignerContext.txt",
  7850. "version.txt"
  7851. ]
  7852. },
  7853. "System.Text.Encoding.Extensions/4.0.11": {
  7854. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  7855. "type": "package",
  7856. "path": "system.text.encoding.extensions/4.0.11",
  7857. "files": [
  7858. ".nupkg.metadata",
  7859. "ThirdPartyNotices.txt",
  7860. "dotnet_library_license.txt",
  7861. "lib/MonoAndroid10/_._",
  7862. "lib/MonoTouch10/_._",
  7863. "lib/net45/_._",
  7864. "lib/portable-net45+win8+wp8+wpa81/_._",
  7865. "lib/win8/_._",
  7866. "lib/wp80/_._",
  7867. "lib/wpa81/_._",
  7868. "lib/xamarinios10/_._",
  7869. "lib/xamarinmac20/_._",
  7870. "lib/xamarintvos10/_._",
  7871. "lib/xamarinwatchos10/_._",
  7872. "ref/MonoAndroid10/_._",
  7873. "ref/MonoTouch10/_._",
  7874. "ref/net45/_._",
  7875. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7876. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7877. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7878. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7879. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7880. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7881. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7882. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7883. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7884. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7885. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7886. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7887. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7888. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7889. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7890. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7891. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7892. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7893. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7894. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7895. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7896. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7897. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7898. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7899. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7900. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7901. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7902. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7903. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7904. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7905. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7906. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7907. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7908. "ref/portable-net45+win8+wp8+wpa81/_._",
  7909. "ref/win8/_._",
  7910. "ref/wp80/_._",
  7911. "ref/wpa81/_._",
  7912. "ref/xamarinios10/_._",
  7913. "ref/xamarinmac20/_._",
  7914. "ref/xamarintvos10/_._",
  7915. "ref/xamarinwatchos10/_._",
  7916. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  7917. "system.text.encoding.extensions.nuspec"
  7918. ]
  7919. },
  7920. "System.Text.Encodings.Web/8.0.0": {
  7921. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  7922. "type": "package",
  7923. "path": "system.text.encodings.web/8.0.0",
  7924. "files": [
  7925. ".nupkg.metadata",
  7926. ".signature.p7s",
  7927. "Icon.png",
  7928. "LICENSE.TXT",
  7929. "THIRD-PARTY-NOTICES.TXT",
  7930. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  7931. "buildTransitive/net462/_._",
  7932. "buildTransitive/net6.0/_._",
  7933. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  7934. "lib/net462/System.Text.Encodings.Web.dll",
  7935. "lib/net462/System.Text.Encodings.Web.xml",
  7936. "lib/net6.0/System.Text.Encodings.Web.dll",
  7937. "lib/net6.0/System.Text.Encodings.Web.xml",
  7938. "lib/net7.0/System.Text.Encodings.Web.dll",
  7939. "lib/net7.0/System.Text.Encodings.Web.xml",
  7940. "lib/net8.0/System.Text.Encodings.Web.dll",
  7941. "lib/net8.0/System.Text.Encodings.Web.xml",
  7942. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7943. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7944. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  7945. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  7946. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  7947. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  7948. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  7949. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  7950. "system.text.encodings.web.8.0.0.nupkg.sha512",
  7951. "system.text.encodings.web.nuspec",
  7952. "useSharedDesignerContext.txt"
  7953. ]
  7954. },
  7955. "System.Text.Json/8.0.0": {
  7956. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  7957. "type": "package",
  7958. "path": "system.text.json/8.0.0",
  7959. "files": [
  7960. ".nupkg.metadata",
  7961. ".signature.p7s",
  7962. "Icon.png",
  7963. "LICENSE.TXT",
  7964. "PACKAGE.md",
  7965. "THIRD-PARTY-NOTICES.TXT",
  7966. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  7967. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7968. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7969. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7970. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7971. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  7972. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  7973. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  7974. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  7975. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  7976. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  7977. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  7978. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  7979. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  7980. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  7981. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7982. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7983. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7984. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7985. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  7986. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  7987. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  7988. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  7989. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  7990. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  7991. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  7992. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  7993. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  7994. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  7995. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7996. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7997. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7998. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7999. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8000. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8001. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8002. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8003. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8004. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8005. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8006. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8007. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8008. "buildTransitive/net461/System.Text.Json.targets",
  8009. "buildTransitive/net462/System.Text.Json.targets",
  8010. "buildTransitive/net6.0/System.Text.Json.targets",
  8011. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  8012. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  8013. "lib/net462/System.Text.Json.dll",
  8014. "lib/net462/System.Text.Json.xml",
  8015. "lib/net6.0/System.Text.Json.dll",
  8016. "lib/net6.0/System.Text.Json.xml",
  8017. "lib/net7.0/System.Text.Json.dll",
  8018. "lib/net7.0/System.Text.Json.xml",
  8019. "lib/net8.0/System.Text.Json.dll",
  8020. "lib/net8.0/System.Text.Json.xml",
  8021. "lib/netstandard2.0/System.Text.Json.dll",
  8022. "lib/netstandard2.0/System.Text.Json.xml",
  8023. "system.text.json.8.0.0.nupkg.sha512",
  8024. "system.text.json.nuspec",
  8025. "useSharedDesignerContext.txt"
  8026. ]
  8027. },
  8028. "System.Text.RegularExpressions/4.1.0": {
  8029. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  8030. "type": "package",
  8031. "path": "system.text.regularexpressions/4.1.0",
  8032. "files": [
  8033. ".nupkg.metadata",
  8034. "ThirdPartyNotices.txt",
  8035. "dotnet_library_license.txt",
  8036. "lib/MonoAndroid10/_._",
  8037. "lib/MonoTouch10/_._",
  8038. "lib/net45/_._",
  8039. "lib/net463/System.Text.RegularExpressions.dll",
  8040. "lib/netcore50/System.Text.RegularExpressions.dll",
  8041. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8042. "lib/portable-net45+win8+wp8+wpa81/_._",
  8043. "lib/win8/_._",
  8044. "lib/wp80/_._",
  8045. "lib/wpa81/_._",
  8046. "lib/xamarinios10/_._",
  8047. "lib/xamarinmac20/_._",
  8048. "lib/xamarintvos10/_._",
  8049. "lib/xamarinwatchos10/_._",
  8050. "ref/MonoAndroid10/_._",
  8051. "ref/MonoTouch10/_._",
  8052. "ref/net45/_._",
  8053. "ref/net463/System.Text.RegularExpressions.dll",
  8054. "ref/netcore50/System.Text.RegularExpressions.dll",
  8055. "ref/netcore50/System.Text.RegularExpressions.xml",
  8056. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8057. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8058. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8059. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8060. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8061. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8062. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8063. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8064. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8065. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8066. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8067. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8068. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8069. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8070. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8071. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8072. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8073. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8074. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8075. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8076. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8077. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8078. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8079. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8080. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8081. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8082. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8083. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8084. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8085. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8086. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8087. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8088. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8089. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8090. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8091. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8092. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8093. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8094. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8095. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8096. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8097. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8098. "ref/portable-net45+win8+wp8+wpa81/_._",
  8099. "ref/win8/_._",
  8100. "ref/wp80/_._",
  8101. "ref/wpa81/_._",
  8102. "ref/xamarinios10/_._",
  8103. "ref/xamarinmac20/_._",
  8104. "ref/xamarintvos10/_._",
  8105. "ref/xamarinwatchos10/_._",
  8106. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  8107. "system.text.regularexpressions.nuspec"
  8108. ]
  8109. },
  8110. "System.Threading/4.0.11": {
  8111. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  8112. "type": "package",
  8113. "path": "system.threading/4.0.11",
  8114. "files": [
  8115. ".nupkg.metadata",
  8116. "ThirdPartyNotices.txt",
  8117. "dotnet_library_license.txt",
  8118. "lib/MonoAndroid10/_._",
  8119. "lib/MonoTouch10/_._",
  8120. "lib/net45/_._",
  8121. "lib/netcore50/System.Threading.dll",
  8122. "lib/netstandard1.3/System.Threading.dll",
  8123. "lib/portable-net45+win8+wp8+wpa81/_._",
  8124. "lib/win8/_._",
  8125. "lib/wp80/_._",
  8126. "lib/wpa81/_._",
  8127. "lib/xamarinios10/_._",
  8128. "lib/xamarinmac20/_._",
  8129. "lib/xamarintvos10/_._",
  8130. "lib/xamarinwatchos10/_._",
  8131. "ref/MonoAndroid10/_._",
  8132. "ref/MonoTouch10/_._",
  8133. "ref/net45/_._",
  8134. "ref/netcore50/System.Threading.dll",
  8135. "ref/netcore50/System.Threading.xml",
  8136. "ref/netcore50/de/System.Threading.xml",
  8137. "ref/netcore50/es/System.Threading.xml",
  8138. "ref/netcore50/fr/System.Threading.xml",
  8139. "ref/netcore50/it/System.Threading.xml",
  8140. "ref/netcore50/ja/System.Threading.xml",
  8141. "ref/netcore50/ko/System.Threading.xml",
  8142. "ref/netcore50/ru/System.Threading.xml",
  8143. "ref/netcore50/zh-hans/System.Threading.xml",
  8144. "ref/netcore50/zh-hant/System.Threading.xml",
  8145. "ref/netstandard1.0/System.Threading.dll",
  8146. "ref/netstandard1.0/System.Threading.xml",
  8147. "ref/netstandard1.0/de/System.Threading.xml",
  8148. "ref/netstandard1.0/es/System.Threading.xml",
  8149. "ref/netstandard1.0/fr/System.Threading.xml",
  8150. "ref/netstandard1.0/it/System.Threading.xml",
  8151. "ref/netstandard1.0/ja/System.Threading.xml",
  8152. "ref/netstandard1.0/ko/System.Threading.xml",
  8153. "ref/netstandard1.0/ru/System.Threading.xml",
  8154. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8155. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8156. "ref/netstandard1.3/System.Threading.dll",
  8157. "ref/netstandard1.3/System.Threading.xml",
  8158. "ref/netstandard1.3/de/System.Threading.xml",
  8159. "ref/netstandard1.3/es/System.Threading.xml",
  8160. "ref/netstandard1.3/fr/System.Threading.xml",
  8161. "ref/netstandard1.3/it/System.Threading.xml",
  8162. "ref/netstandard1.3/ja/System.Threading.xml",
  8163. "ref/netstandard1.3/ko/System.Threading.xml",
  8164. "ref/netstandard1.3/ru/System.Threading.xml",
  8165. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8166. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8167. "ref/portable-net45+win8+wp8+wpa81/_._",
  8168. "ref/win8/_._",
  8169. "ref/wp80/_._",
  8170. "ref/wpa81/_._",
  8171. "ref/xamarinios10/_._",
  8172. "ref/xamarinmac20/_._",
  8173. "ref/xamarintvos10/_._",
  8174. "ref/xamarinwatchos10/_._",
  8175. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8176. "system.threading.4.0.11.nupkg.sha512",
  8177. "system.threading.nuspec"
  8178. ]
  8179. },
  8180. "System.Threading.Tasks/4.3.0": {
  8181. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8182. "type": "package",
  8183. "path": "system.threading.tasks/4.3.0",
  8184. "files": [
  8185. ".nupkg.metadata",
  8186. "ThirdPartyNotices.txt",
  8187. "dotnet_library_license.txt",
  8188. "lib/MonoAndroid10/_._",
  8189. "lib/MonoTouch10/_._",
  8190. "lib/net45/_._",
  8191. "lib/portable-net45+win8+wp8+wpa81/_._",
  8192. "lib/win8/_._",
  8193. "lib/wp80/_._",
  8194. "lib/wpa81/_._",
  8195. "lib/xamarinios10/_._",
  8196. "lib/xamarinmac20/_._",
  8197. "lib/xamarintvos10/_._",
  8198. "lib/xamarinwatchos10/_._",
  8199. "ref/MonoAndroid10/_._",
  8200. "ref/MonoTouch10/_._",
  8201. "ref/net45/_._",
  8202. "ref/netcore50/System.Threading.Tasks.dll",
  8203. "ref/netcore50/System.Threading.Tasks.xml",
  8204. "ref/netcore50/de/System.Threading.Tasks.xml",
  8205. "ref/netcore50/es/System.Threading.Tasks.xml",
  8206. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8207. "ref/netcore50/it/System.Threading.Tasks.xml",
  8208. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8209. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8210. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8211. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8212. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8213. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8214. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8215. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8216. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8217. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8218. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8219. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8220. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8221. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8222. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8223. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8224. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8225. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8226. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8227. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8228. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8229. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8230. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8231. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8232. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8233. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8234. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8235. "ref/portable-net45+win8+wp8+wpa81/_._",
  8236. "ref/win8/_._",
  8237. "ref/wp80/_._",
  8238. "ref/wpa81/_._",
  8239. "ref/xamarinios10/_._",
  8240. "ref/xamarinmac20/_._",
  8241. "ref/xamarintvos10/_._",
  8242. "ref/xamarinwatchos10/_._",
  8243. "system.threading.tasks.4.3.0.nupkg.sha512",
  8244. "system.threading.tasks.nuspec"
  8245. ]
  8246. },
  8247. "System.Threading.Tasks.Extensions/4.5.4": {
  8248. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  8249. "type": "package",
  8250. "path": "system.threading.tasks.extensions/4.5.4",
  8251. "files": [
  8252. ".nupkg.metadata",
  8253. ".signature.p7s",
  8254. "LICENSE.TXT",
  8255. "THIRD-PARTY-NOTICES.TXT",
  8256. "lib/MonoAndroid10/_._",
  8257. "lib/MonoTouch10/_._",
  8258. "lib/net461/System.Threading.Tasks.Extensions.dll",
  8259. "lib/net461/System.Threading.Tasks.Extensions.xml",
  8260. "lib/netcoreapp2.1/_._",
  8261. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8262. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8263. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8264. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8265. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8266. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8267. "lib/xamarinios10/_._",
  8268. "lib/xamarinmac20/_._",
  8269. "lib/xamarintvos10/_._",
  8270. "lib/xamarinwatchos10/_._",
  8271. "ref/MonoAndroid10/_._",
  8272. "ref/MonoTouch10/_._",
  8273. "ref/netcoreapp2.1/_._",
  8274. "ref/xamarinios10/_._",
  8275. "ref/xamarinmac20/_._",
  8276. "ref/xamarintvos10/_._",
  8277. "ref/xamarinwatchos10/_._",
  8278. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  8279. "system.threading.tasks.extensions.nuspec",
  8280. "useSharedDesignerContext.txt",
  8281. "version.txt"
  8282. ]
  8283. },
  8284. "System.Threading.Thread/4.0.0": {
  8285. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  8286. "type": "package",
  8287. "path": "system.threading.thread/4.0.0",
  8288. "files": [
  8289. ".nupkg.metadata",
  8290. ".signature.p7s",
  8291. "ThirdPartyNotices.txt",
  8292. "dotnet_library_license.txt",
  8293. "lib/MonoAndroid10/_._",
  8294. "lib/MonoTouch10/_._",
  8295. "lib/net46/System.Threading.Thread.dll",
  8296. "lib/netcore50/_._",
  8297. "lib/netstandard1.3/System.Threading.Thread.dll",
  8298. "lib/xamarinios10/_._",
  8299. "lib/xamarinmac20/_._",
  8300. "lib/xamarintvos10/_._",
  8301. "lib/xamarinwatchos10/_._",
  8302. "ref/MonoAndroid10/_._",
  8303. "ref/MonoTouch10/_._",
  8304. "ref/net46/System.Threading.Thread.dll",
  8305. "ref/netstandard1.3/System.Threading.Thread.dll",
  8306. "ref/netstandard1.3/System.Threading.Thread.xml",
  8307. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8308. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8309. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8310. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8311. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8312. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8313. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8314. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8315. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8316. "ref/xamarinios10/_._",
  8317. "ref/xamarinmac20/_._",
  8318. "ref/xamarintvos10/_._",
  8319. "ref/xamarinwatchos10/_._",
  8320. "system.threading.thread.4.0.0.nupkg.sha512",
  8321. "system.threading.thread.nuspec"
  8322. ]
  8323. },
  8324. "System.Threading.ThreadPool/4.0.10": {
  8325. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  8326. "type": "package",
  8327. "path": "system.threading.threadpool/4.0.10",
  8328. "files": [
  8329. ".nupkg.metadata",
  8330. ".signature.p7s",
  8331. "ThirdPartyNotices.txt",
  8332. "dotnet_library_license.txt",
  8333. "lib/MonoAndroid10/_._",
  8334. "lib/MonoTouch10/_._",
  8335. "lib/net46/System.Threading.ThreadPool.dll",
  8336. "lib/netcore50/_._",
  8337. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8338. "lib/xamarinios10/_._",
  8339. "lib/xamarinmac20/_._",
  8340. "lib/xamarintvos10/_._",
  8341. "lib/xamarinwatchos10/_._",
  8342. "ref/MonoAndroid10/_._",
  8343. "ref/MonoTouch10/_._",
  8344. "ref/net46/System.Threading.ThreadPool.dll",
  8345. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8346. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8347. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8348. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8349. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8350. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8351. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8352. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8353. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8354. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8355. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8356. "ref/xamarinios10/_._",
  8357. "ref/xamarinmac20/_._",
  8358. "ref/xamarintvos10/_._",
  8359. "ref/xamarinwatchos10/_._",
  8360. "system.threading.threadpool.4.0.10.nupkg.sha512",
  8361. "system.threading.threadpool.nuspec"
  8362. ]
  8363. },
  8364. "System.Threading.Timer/4.0.1": {
  8365. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  8366. "type": "package",
  8367. "path": "system.threading.timer/4.0.1",
  8368. "files": [
  8369. ".nupkg.metadata",
  8370. "ThirdPartyNotices.txt",
  8371. "dotnet_library_license.txt",
  8372. "lib/MonoAndroid10/_._",
  8373. "lib/MonoTouch10/_._",
  8374. "lib/net451/_._",
  8375. "lib/portable-net451+win81+wpa81/_._",
  8376. "lib/win81/_._",
  8377. "lib/wpa81/_._",
  8378. "lib/xamarinios10/_._",
  8379. "lib/xamarinmac20/_._",
  8380. "lib/xamarintvos10/_._",
  8381. "lib/xamarinwatchos10/_._",
  8382. "ref/MonoAndroid10/_._",
  8383. "ref/MonoTouch10/_._",
  8384. "ref/net451/_._",
  8385. "ref/netcore50/System.Threading.Timer.dll",
  8386. "ref/netcore50/System.Threading.Timer.xml",
  8387. "ref/netcore50/de/System.Threading.Timer.xml",
  8388. "ref/netcore50/es/System.Threading.Timer.xml",
  8389. "ref/netcore50/fr/System.Threading.Timer.xml",
  8390. "ref/netcore50/it/System.Threading.Timer.xml",
  8391. "ref/netcore50/ja/System.Threading.Timer.xml",
  8392. "ref/netcore50/ko/System.Threading.Timer.xml",
  8393. "ref/netcore50/ru/System.Threading.Timer.xml",
  8394. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8395. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8396. "ref/netstandard1.2/System.Threading.Timer.dll",
  8397. "ref/netstandard1.2/System.Threading.Timer.xml",
  8398. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8399. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8400. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8401. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8402. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8403. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8404. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8405. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8406. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8407. "ref/portable-net451+win81+wpa81/_._",
  8408. "ref/win81/_._",
  8409. "ref/wpa81/_._",
  8410. "ref/xamarinios10/_._",
  8411. "ref/xamarinmac20/_._",
  8412. "ref/xamarintvos10/_._",
  8413. "ref/xamarinwatchos10/_._",
  8414. "system.threading.timer.4.0.1.nupkg.sha512",
  8415. "system.threading.timer.nuspec"
  8416. ]
  8417. },
  8418. "System.Windows.Extensions/6.0.0": {
  8419. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  8420. "type": "package",
  8421. "path": "system.windows.extensions/6.0.0",
  8422. "files": [
  8423. ".nupkg.metadata",
  8424. ".signature.p7s",
  8425. "Icon.png",
  8426. "LICENSE.TXT",
  8427. "THIRD-PARTY-NOTICES.TXT",
  8428. "lib/net6.0/System.Windows.Extensions.dll",
  8429. "lib/net6.0/System.Windows.Extensions.xml",
  8430. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  8431. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  8432. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  8433. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  8434. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  8435. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  8436. "system.windows.extensions.6.0.0.nupkg.sha512",
  8437. "system.windows.extensions.nuspec",
  8438. "useSharedDesignerContext.txt"
  8439. ]
  8440. },
  8441. "System.Xml.ReaderWriter/4.0.11": {
  8442. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  8443. "type": "package",
  8444. "path": "system.xml.readerwriter/4.0.11",
  8445. "files": [
  8446. ".nupkg.metadata",
  8447. "ThirdPartyNotices.txt",
  8448. "dotnet_library_license.txt",
  8449. "lib/MonoAndroid10/_._",
  8450. "lib/MonoTouch10/_._",
  8451. "lib/net45/_._",
  8452. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8453. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8454. "lib/portable-net45+win8+wp8+wpa81/_._",
  8455. "lib/win8/_._",
  8456. "lib/wp80/_._",
  8457. "lib/wpa81/_._",
  8458. "lib/xamarinios10/_._",
  8459. "lib/xamarinmac20/_._",
  8460. "lib/xamarintvos10/_._",
  8461. "lib/xamarinwatchos10/_._",
  8462. "ref/MonoAndroid10/_._",
  8463. "ref/MonoTouch10/_._",
  8464. "ref/net45/_._",
  8465. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8466. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8467. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8468. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8469. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8470. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8471. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8472. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8473. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8474. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8475. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8476. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8477. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8478. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8479. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8480. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8481. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8482. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8483. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8484. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8485. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8486. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8487. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8488. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8489. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8490. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8491. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8492. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8493. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8494. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8495. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8496. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8497. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8498. "ref/portable-net45+win8+wp8+wpa81/_._",
  8499. "ref/win8/_._",
  8500. "ref/wp80/_._",
  8501. "ref/wpa81/_._",
  8502. "ref/xamarinios10/_._",
  8503. "ref/xamarinmac20/_._",
  8504. "ref/xamarintvos10/_._",
  8505. "ref/xamarinwatchos10/_._",
  8506. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  8507. "system.xml.readerwriter.nuspec"
  8508. ]
  8509. },
  8510. "System.Xml.XDocument/4.0.11": {
  8511. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  8512. "type": "package",
  8513. "path": "system.xml.xdocument/4.0.11",
  8514. "files": [
  8515. ".nupkg.metadata",
  8516. "ThirdPartyNotices.txt",
  8517. "dotnet_library_license.txt",
  8518. "lib/MonoAndroid10/_._",
  8519. "lib/MonoTouch10/_._",
  8520. "lib/net45/_._",
  8521. "lib/netcore50/System.Xml.XDocument.dll",
  8522. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8523. "lib/portable-net45+win8+wp8+wpa81/_._",
  8524. "lib/win8/_._",
  8525. "lib/wp80/_._",
  8526. "lib/wpa81/_._",
  8527. "lib/xamarinios10/_._",
  8528. "lib/xamarinmac20/_._",
  8529. "lib/xamarintvos10/_._",
  8530. "lib/xamarinwatchos10/_._",
  8531. "ref/MonoAndroid10/_._",
  8532. "ref/MonoTouch10/_._",
  8533. "ref/net45/_._",
  8534. "ref/netcore50/System.Xml.XDocument.dll",
  8535. "ref/netcore50/System.Xml.XDocument.xml",
  8536. "ref/netcore50/de/System.Xml.XDocument.xml",
  8537. "ref/netcore50/es/System.Xml.XDocument.xml",
  8538. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8539. "ref/netcore50/it/System.Xml.XDocument.xml",
  8540. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8541. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8542. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8543. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8544. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8545. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8546. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8547. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8548. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8549. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8550. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8551. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8552. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8553. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8554. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8555. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8556. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8557. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8558. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8559. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8560. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8561. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8562. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8563. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8564. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8565. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8566. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8567. "ref/portable-net45+win8+wp8+wpa81/_._",
  8568. "ref/win8/_._",
  8569. "ref/wp80/_._",
  8570. "ref/wpa81/_._",
  8571. "ref/xamarinios10/_._",
  8572. "ref/xamarinmac20/_._",
  8573. "ref/xamarintvos10/_._",
  8574. "ref/xamarinwatchos10/_._",
  8575. "system.xml.xdocument.4.0.11.nupkg.sha512",
  8576. "system.xml.xdocument.nuspec"
  8577. ]
  8578. },
  8579. "System.Xml.XmlDocument/4.0.1": {
  8580. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  8581. "type": "package",
  8582. "path": "system.xml.xmldocument/4.0.1",
  8583. "files": [
  8584. ".nupkg.metadata",
  8585. "ThirdPartyNotices.txt",
  8586. "dotnet_library_license.txt",
  8587. "lib/MonoAndroid10/_._",
  8588. "lib/MonoTouch10/_._",
  8589. "lib/net46/System.Xml.XmlDocument.dll",
  8590. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8591. "lib/xamarinios10/_._",
  8592. "lib/xamarinmac20/_._",
  8593. "lib/xamarintvos10/_._",
  8594. "lib/xamarinwatchos10/_._",
  8595. "ref/MonoAndroid10/_._",
  8596. "ref/MonoTouch10/_._",
  8597. "ref/net46/System.Xml.XmlDocument.dll",
  8598. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8599. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8600. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8601. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8602. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8603. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8604. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8605. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8606. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8607. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8608. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8609. "ref/xamarinios10/_._",
  8610. "ref/xamarinmac20/_._",
  8611. "ref/xamarintvos10/_._",
  8612. "ref/xamarinwatchos10/_._",
  8613. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  8614. "system.xml.xmldocument.nuspec"
  8615. ]
  8616. },
  8617. "System.Xml.XPath/4.0.1": {
  8618. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  8619. "type": "package",
  8620. "path": "system.xml.xpath/4.0.1",
  8621. "files": [
  8622. ".nupkg.metadata",
  8623. ".signature.p7s",
  8624. "ThirdPartyNotices.txt",
  8625. "dotnet_library_license.txt",
  8626. "lib/MonoAndroid10/_._",
  8627. "lib/MonoTouch10/_._",
  8628. "lib/net46/System.Xml.XPath.dll",
  8629. "lib/netstandard1.3/System.Xml.XPath.dll",
  8630. "lib/xamarinios10/_._",
  8631. "lib/xamarinmac20/_._",
  8632. "lib/xamarintvos10/_._",
  8633. "lib/xamarinwatchos10/_._",
  8634. "ref/MonoAndroid10/_._",
  8635. "ref/MonoTouch10/_._",
  8636. "ref/net46/System.Xml.XPath.dll",
  8637. "ref/netstandard1.3/System.Xml.XPath.dll",
  8638. "ref/netstandard1.3/System.Xml.XPath.xml",
  8639. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  8640. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  8641. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  8642. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  8643. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  8644. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  8645. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  8646. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  8647. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  8648. "ref/xamarinios10/_._",
  8649. "ref/xamarinmac20/_._",
  8650. "ref/xamarintvos10/_._",
  8651. "ref/xamarinwatchos10/_._",
  8652. "system.xml.xpath.4.0.1.nupkg.sha512",
  8653. "system.xml.xpath.nuspec"
  8654. ]
  8655. },
  8656. "System.Xml.XPath.XmlDocument/4.0.1": {
  8657. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  8658. "type": "package",
  8659. "path": "system.xml.xpath.xmldocument/4.0.1",
  8660. "files": [
  8661. ".nupkg.metadata",
  8662. ".signature.p7s",
  8663. "ThirdPartyNotices.txt",
  8664. "dotnet_library_license.txt",
  8665. "lib/MonoAndroid10/_._",
  8666. "lib/MonoTouch10/_._",
  8667. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8668. "lib/xamarinios10/_._",
  8669. "lib/xamarinmac20/_._",
  8670. "lib/xamarintvos10/_._",
  8671. "lib/xamarinwatchos10/_._",
  8672. "ref/MonoAndroid10/_._",
  8673. "ref/MonoTouch10/_._",
  8674. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8675. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  8676. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  8677. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  8678. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  8679. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  8680. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  8681. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  8682. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  8683. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  8684. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  8685. "ref/xamarinios10/_._",
  8686. "ref/xamarinmac20/_._",
  8687. "ref/xamarintvos10/_._",
  8688. "ref/xamarinwatchos10/_._",
  8689. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  8690. "system.xml.xpath.xmldocument.nuspec"
  8691. ]
  8692. }
  8693. },
  8694. "projectFileDependencyGroups": {
  8695. ".NETCoreApp,Version=v3.1": [
  8696. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.1",
  8697. "Flurl.Http >= 4.0.2",
  8698. "Microsoft.Extensions.Hosting.WindowsServices >= 8.0.0",
  8699. "Microsoft.NETCore.Targets >= 3.0.0",
  8700. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  8701. "NLog.Web.AspNetCore >= 5.3.8",
  8702. "Newtonsoft.Json >= 13.0.3",
  8703. "Quartz >= 3.8.1",
  8704. "StackExchange.Redis >= 2.7.33",
  8705. "Swashbuckle.AspNetCore >= 6.5.0",
  8706. "Swashbuckle.AspNetCore.Filters >= 8.0.1",
  8707. "System.IdentityModel.Tokens.Jwt >= 7.4.1"
  8708. ]
  8709. },
  8710. "packageFolders": {
  8711. "C:\\Users\\user\\.nuget\\packages\\": {}
  8712. },
  8713. "project": {
  8714. "version": "1.0.0",
  8715. "restore": {
  8716. "projectUniqueName": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\CCS.csproj",
  8717. "projectName": "IMCS_CCS",
  8718. "projectPath": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\CCS.csproj",
  8719. "packagesPath": "C:\\Users\\user\\.nuget\\packages\\",
  8720. "outputPath": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\obj\\",
  8721. "projectStyle": "PackageReference",
  8722. "configFilePaths": [
  8723. "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8724. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8725. ],
  8726. "originalTargetFrameworks": [
  8727. "netcoreapp3.1"
  8728. ],
  8729. "sources": {
  8730. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8731. "https://api.nuget.org/v3/index.json": {}
  8732. },
  8733. "frameworks": {
  8734. "netcoreapp3.1": {
  8735. "targetAlias": "netcoreapp3.1",
  8736. "projectReferences": {}
  8737. }
  8738. },
  8739. "warningProperties": {
  8740. "warnAsError": [
  8741. "NU1605"
  8742. ]
  8743. }
  8744. },
  8745. "frameworks": {
  8746. "netcoreapp3.1": {
  8747. "targetAlias": "netcoreapp3.1",
  8748. "dependencies": {
  8749. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  8750. "target": "Package",
  8751. "version": "[12.0.1, )"
  8752. },
  8753. "Flurl.Http": {
  8754. "target": "Package",
  8755. "version": "[4.0.2, )"
  8756. },
  8757. "Microsoft.Extensions.Hosting.WindowsServices": {
  8758. "target": "Package",
  8759. "version": "[8.0.0, )"
  8760. },
  8761. "Microsoft.NETCore.Targets": {
  8762. "suppressParent": "All",
  8763. "target": "Package",
  8764. "version": "[3.0.0, )"
  8765. },
  8766. "MySql.Data.EntityFrameworkCore": {
  8767. "target": "Package",
  8768. "version": "[8.0.22, )"
  8769. },
  8770. "NLog.Web.AspNetCore": {
  8771. "target": "Package",
  8772. "version": "[5.3.8, )"
  8773. },
  8774. "Newtonsoft.Json": {
  8775. "target": "Package",
  8776. "version": "[13.0.3, )"
  8777. },
  8778. "Quartz": {
  8779. "target": "Package",
  8780. "version": "[3.8.1, )"
  8781. },
  8782. "StackExchange.Redis": {
  8783. "target": "Package",
  8784. "version": "[2.7.33, )"
  8785. },
  8786. "Swashbuckle.AspNetCore": {
  8787. "target": "Package",
  8788. "version": "[6.5.0, )"
  8789. },
  8790. "Swashbuckle.AspNetCore.Filters": {
  8791. "target": "Package",
  8792. "version": "[8.0.1, )"
  8793. },
  8794. "System.IdentityModel.Tokens.Jwt": {
  8795. "target": "Package",
  8796. "version": "[7.4.1, )"
  8797. }
  8798. },
  8799. "imports": [
  8800. "net461",
  8801. "net462",
  8802. "net47",
  8803. "net471",
  8804. "net472",
  8805. "net48"
  8806. ],
  8807. "assetTargetFallback": true,
  8808. "warn": true,
  8809. "frameworkReferences": {
  8810. "Microsoft.AspNetCore.App": {
  8811. "privateAssets": "none"
  8812. },
  8813. "Microsoft.NETCore.App": {
  8814. "privateAssets": "all"
  8815. }
  8816. },
  8817. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.426\\RuntimeIdentifierGraph.json"
  8818. }
  8819. }
  8820. }
  8821. }