project.assets.json 390 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  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. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/netstandard2.1/AutoMapper.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  22. "type": "package",
  23. "dependencies": {
  24. "AutoMapper": "[12.0.1]",
  25. "Microsoft.Extensions.Options": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  29. },
  30. "runtime": {
  31. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  32. }
  33. },
  34. "BouncyCastle.NetCore/1.8.3": {
  35. "type": "package",
  36. "dependencies": {
  37. "NETStandard.Library": "1.6.0",
  38. "System.Reflection": "4.3.0",
  39. "System.Reflection.TypeExtensions": "4.1.0"
  40. },
  41. "compile": {
  42. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  43. "related": ".xml"
  44. }
  45. },
  46. "runtime": {
  47. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  48. "related": ".xml"
  49. }
  50. }
  51. },
  52. "Flurl/4.0.0": {
  53. "type": "package",
  54. "compile": {
  55. "lib/netstandard2.0/Flurl.dll": {
  56. "related": ".xml"
  57. }
  58. },
  59. "runtime": {
  60. "lib/netstandard2.0/Flurl.dll": {
  61. "related": ".xml"
  62. }
  63. }
  64. },
  65. "Flurl.Http/4.0.2": {
  66. "type": "package",
  67. "dependencies": {
  68. "Flurl": "4.0.0",
  69. "System.Text.Encoding.CodePages": "4.5.1",
  70. "System.Text.Json": "6.0.4"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Flurl.Http.dll": {
  74. "related": ".xml"
  75. }
  76. },
  77. "runtime": {
  78. "lib/netstandard2.0/Flurl.Http.dll": {
  79. "related": ".xml"
  80. }
  81. }
  82. },
  83. "Google.Protobuf/3.11.4": {
  84. "type": "package",
  85. "dependencies": {
  86. "System.Memory": "4.5.2"
  87. },
  88. "compile": {
  89. "lib/netstandard2.0/Google.Protobuf.dll": {
  90. "related": ".pdb;.xml"
  91. }
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/Google.Protobuf.dll": {
  95. "related": ".pdb;.xml"
  96. }
  97. }
  98. },
  99. "K4os.Compression.LZ4/1.1.11": {
  100. "type": "package",
  101. "dependencies": {
  102. "System.Memory": "4.5.3"
  103. },
  104. "compile": {
  105. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  106. "related": ".xml"
  107. }
  108. },
  109. "runtime": {
  110. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  111. "related": ".xml"
  112. }
  113. }
  114. },
  115. "K4os.Compression.LZ4.Streams/1.1.11": {
  116. "type": "package",
  117. "dependencies": {
  118. "K4os.Compression.LZ4": "1.1.11",
  119. "K4os.Hash.xxHash": "1.0.6"
  120. },
  121. "compile": {
  122. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  123. "related": ".xml"
  124. }
  125. },
  126. "runtime": {
  127. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  128. "related": ".xml"
  129. }
  130. }
  131. },
  132. "K4os.Hash.xxHash/1.0.6": {
  133. "type": "package",
  134. "dependencies": {
  135. "System.Memory": "4.5.3"
  136. },
  137. "compile": {
  138. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  139. "related": ".xml"
  140. }
  141. },
  142. "runtime": {
  143. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  144. "related": ".xml"
  145. }
  146. }
  147. },
  148. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  149. "type": "package",
  150. "compile": {
  151. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  152. "related": ".xml"
  153. }
  154. },
  155. "runtime": {
  156. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  157. "related": ".xml"
  158. }
  159. }
  160. },
  161. "Microsoft.Bcl.HashCode/1.1.0": {
  162. "type": "package",
  163. "compile": {
  164. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  165. },
  166. "runtime": {
  167. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
  168. "related": ".xml"
  169. }
  170. }
  171. },
  172. "Microsoft.CSharp/4.7.0": {
  173. "type": "package",
  174. "compile": {
  175. "ref/netcoreapp2.0/_._": {}
  176. },
  177. "runtime": {
  178. "lib/netcoreapp2.0/_._": {}
  179. }
  180. },
  181. "Microsoft.EntityFrameworkCore/3.1.1": {
  182. "type": "package",
  183. "dependencies": {
  184. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  185. "Microsoft.Bcl.HashCode": "1.1.0",
  186. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  187. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  188. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  189. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  190. "Microsoft.Extensions.Logging": "3.1.1",
  191. "System.Collections.Immutable": "1.7.0",
  192. "System.ComponentModel.Annotations": "4.7.0",
  193. "System.Diagnostics.DiagnosticSource": "4.7.0"
  194. },
  195. "compile": {
  196. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  197. "related": ".xml"
  198. }
  199. },
  200. "runtime": {
  201. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  202. "related": ".xml"
  203. }
  204. }
  205. },
  206. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  207. "type": "package",
  208. "compile": {
  209. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  210. "related": ".xml"
  211. }
  212. },
  213. "runtime": {
  214. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  215. "related": ".xml"
  216. }
  217. }
  218. },
  219. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  220. "type": "package",
  221. "compile": {
  222. "lib/netstandard2.0/_._": {}
  223. },
  224. "runtime": {
  225. "lib/netstandard2.0/_._": {}
  226. }
  227. },
  228. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  229. "type": "package",
  230. "dependencies": {
  231. "Microsoft.EntityFrameworkCore": "3.1.1"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  245. "type": "package",
  246. "build": {
  247. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  248. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  249. },
  250. "buildMultiTargeting": {
  251. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  252. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  253. }
  254. },
  255. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  256. "type": "package",
  257. "dependencies": {
  258. "Microsoft.Extensions.Primitives": "3.1.1"
  259. },
  260. "compile": {
  261. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  262. "related": ".xml"
  263. }
  264. },
  265. "runtime": {
  266. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  267. "related": ".xml"
  268. }
  269. }
  270. },
  271. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  272. "type": "package",
  273. "dependencies": {
  274. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  275. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  276. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  277. "Microsoft.Extensions.Options": "3.1.1"
  278. },
  279. "compile": {
  280. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  281. "related": ".xml"
  282. }
  283. },
  284. "runtime": {
  285. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  286. "related": ".xml"
  287. }
  288. }
  289. },
  290. "Microsoft.Extensions.Configuration/8.0.0": {
  291. "type": "package",
  292. "dependencies": {
  293. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  294. "Microsoft.Extensions.Primitives": "8.0.0"
  295. },
  296. "compile": {
  297. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  298. "related": ".xml"
  299. }
  300. },
  301. "runtime": {
  302. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  303. "related": ".xml"
  304. }
  305. },
  306. "build": {
  307. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets": {}
  308. }
  309. },
  310. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  311. "type": "package",
  312. "dependencies": {
  313. "Microsoft.Extensions.Primitives": "8.0.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  322. "related": ".xml"
  323. }
  324. },
  325. "build": {
  326. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets": {}
  327. }
  328. },
  329. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  333. },
  334. "compile": {
  335. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  336. "related": ".xml"
  337. }
  338. },
  339. "runtime": {
  340. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  341. "related": ".xml"
  342. }
  343. },
  344. "build": {
  345. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
  346. }
  347. },
  348. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  349. "type": "package",
  350. "dependencies": {
  351. "Microsoft.Extensions.Configuration": "8.0.0",
  352. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  361. "related": ".xml"
  362. }
  363. },
  364. "build": {
  365. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets": {}
  366. }
  367. },
  368. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.Extensions.Configuration": "8.0.0",
  372. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  373. },
  374. "compile": {
  375. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  376. "related": ".xml"
  377. }
  378. },
  379. "runtime": {
  380. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  381. "related": ".xml"
  382. }
  383. },
  384. "build": {
  385. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets": {}
  386. }
  387. },
  388. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.Extensions.Configuration": "8.0.0",
  392. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  393. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  394. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  395. "Microsoft.Extensions.Primitives": "8.0.0"
  396. },
  397. "compile": {
  398. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  399. "related": ".xml"
  400. }
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  404. "related": ".xml"
  405. }
  406. },
  407. "build": {
  408. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets": {}
  409. }
  410. },
  411. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  412. "type": "package",
  413. "dependencies": {
  414. "Microsoft.Extensions.Configuration": "8.0.0",
  415. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  416. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  417. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  418. "System.Text.Json": "8.0.0"
  419. },
  420. "compile": {
  421. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  422. "related": ".xml"
  423. }
  424. },
  425. "runtime": {
  426. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  427. "related": ".xml"
  428. }
  429. },
  430. "build": {
  431. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets": {}
  432. }
  433. },
  434. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  435. "type": "package",
  436. "dependencies": {
  437. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  438. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  439. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  440. "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
  441. },
  442. "compile": {
  443. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  444. "related": ".xml"
  445. }
  446. },
  447. "runtime": {
  448. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "build": {
  453. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  454. }
  455. },
  456. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  460. },
  461. "compile": {
  462. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  463. "related": ".xml"
  464. }
  465. },
  466. "runtime": {
  467. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "build": {
  472. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  473. }
  474. },
  475. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  476. "type": "package",
  477. "compile": {
  478. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  479. "related": ".xml"
  480. }
  481. },
  482. "runtime": {
  483. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  484. "related": ".xml"
  485. }
  486. },
  487. "build": {
  488. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  489. }
  490. },
  491. "Microsoft.Extensions.DependencyModel/3.1.6": {
  492. "type": "package",
  493. "dependencies": {
  494. "System.Text.Json": "4.7.2"
  495. },
  496. "compile": {
  497. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  498. "related": ".xml"
  499. }
  500. },
  501. "runtime": {
  502. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  503. "related": ".xml"
  504. }
  505. }
  506. },
  507. "Microsoft.Extensions.Diagnostics/8.0.0": {
  508. "type": "package",
  509. "dependencies": {
  510. "Microsoft.Extensions.Configuration": "8.0.0",
  511. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  512. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  513. },
  514. "compile": {
  515. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  516. "related": ".xml"
  517. }
  518. },
  519. "runtime": {
  520. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  521. "related": ".xml"
  522. }
  523. },
  524. "build": {
  525. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets": {}
  526. }
  527. },
  528. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  529. "type": "package",
  530. "dependencies": {
  531. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  532. "Microsoft.Extensions.Options": "8.0.0",
  533. "System.Buffers": "4.5.1",
  534. "System.Diagnostics.DiagnosticSource": "8.0.0",
  535. "System.Memory": "4.5.5"
  536. },
  537. "compile": {
  538. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  539. "related": ".xml"
  540. }
  541. },
  542. "runtime": {
  543. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  544. "related": ".xml"
  545. }
  546. },
  547. "build": {
  548. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets": {}
  549. }
  550. },
  551. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  552. "type": "package",
  553. "dependencies": {
  554. "Microsoft.Extensions.Primitives": "8.0.0"
  555. },
  556. "compile": {
  557. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  558. "related": ".xml"
  559. }
  560. },
  561. "runtime": {
  562. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  563. "related": ".xml"
  564. }
  565. },
  566. "build": {
  567. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets": {}
  568. }
  569. },
  570. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  571. "type": "package",
  572. "dependencies": {
  573. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  574. "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
  575. "Microsoft.Extensions.Primitives": "8.0.0"
  576. },
  577. "compile": {
  578. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  579. "related": ".xml"
  580. }
  581. },
  582. "runtime": {
  583. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  584. "related": ".xml"
  585. }
  586. },
  587. "build": {
  588. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets": {}
  589. }
  590. },
  591. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  592. "type": "package",
  593. "compile": {
  594. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  595. "related": ".xml"
  596. }
  597. },
  598. "runtime": {
  599. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  600. "related": ".xml"
  601. }
  602. },
  603. "build": {
  604. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets": {}
  605. }
  606. },
  607. "Microsoft.Extensions.Hosting/8.0.0": {
  608. "type": "package",
  609. "dependencies": {
  610. "Microsoft.Extensions.Configuration": "8.0.0",
  611. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  612. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  613. "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
  614. "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
  615. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  616. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  617. "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
  618. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  619. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  620. "Microsoft.Extensions.Diagnostics": "8.0.0",
  621. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  622. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  623. "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
  624. "Microsoft.Extensions.Logging": "8.0.0",
  625. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  626. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  627. "Microsoft.Extensions.Logging.Console": "8.0.0",
  628. "Microsoft.Extensions.Logging.Debug": "8.0.0",
  629. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  630. "Microsoft.Extensions.Logging.EventSource": "8.0.0",
  631. "Microsoft.Extensions.Options": "8.0.0"
  632. },
  633. "compile": {
  634. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  635. "related": ".xml"
  636. }
  637. },
  638. "runtime": {
  639. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "build": {
  644. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets": {}
  645. }
  646. },
  647. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  648. "type": "package",
  649. "dependencies": {
  650. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  651. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  652. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  653. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  654. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  655. },
  656. "compile": {
  657. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  658. "related": ".xml"
  659. }
  660. },
  661. "runtime": {
  662. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  663. "related": ".xml"
  664. }
  665. },
  666. "build": {
  667. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets": {}
  668. }
  669. },
  670. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  671. "type": "package",
  672. "dependencies": {
  673. "Microsoft.Extensions.Hosting": "8.0.0",
  674. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  675. "System.ServiceProcess.ServiceController": "8.0.0"
  676. },
  677. "compile": {
  678. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  679. "related": ".xml"
  680. }
  681. },
  682. "runtime": {
  683. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "build": {
  688. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets": {}
  689. }
  690. },
  691. "Microsoft.Extensions.Logging/8.0.0": {
  692. "type": "package",
  693. "dependencies": {
  694. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  695. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  696. "Microsoft.Extensions.Options": "8.0.0",
  697. "System.Diagnostics.DiagnosticSource": "8.0.0"
  698. },
  699. "compile": {
  700. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  701. "related": ".xml"
  702. }
  703. },
  704. "runtime": {
  705. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  706. "related": ".xml"
  707. }
  708. },
  709. "build": {
  710. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  711. }
  712. },
  713. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  714. "type": "package",
  715. "dependencies": {
  716. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  717. "System.Buffers": "4.5.1",
  718. "System.Memory": "4.5.5"
  719. },
  720. "compile": {
  721. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  722. "related": ".xml"
  723. }
  724. },
  725. "runtime": {
  726. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  727. "related": ".xml"
  728. }
  729. },
  730. "build": {
  731. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  732. }
  733. },
  734. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.Extensions.Configuration": "8.0.0",
  738. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  739. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  740. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  741. "Microsoft.Extensions.Logging": "8.0.0",
  742. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  743. "Microsoft.Extensions.Options": "8.0.0",
  744. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  745. },
  746. "compile": {
  747. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  748. "related": ".xml"
  749. }
  750. },
  751. "runtime": {
  752. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  753. "related": ".xml"
  754. }
  755. },
  756. "build": {
  757. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets": {}
  758. }
  759. },
  760. "Microsoft.Extensions.Logging.Console/8.0.0": {
  761. "type": "package",
  762. "dependencies": {
  763. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  764. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  765. "Microsoft.Extensions.Logging": "8.0.0",
  766. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  767. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  768. "Microsoft.Extensions.Options": "8.0.0",
  769. "System.Buffers": "4.5.1",
  770. "System.Text.Json": "8.0.0"
  771. },
  772. "compile": {
  773. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  774. "related": ".xml"
  775. }
  776. },
  777. "runtime": {
  778. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  779. "related": ".xml"
  780. }
  781. },
  782. "build": {
  783. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets": {}
  784. }
  785. },
  786. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  790. "Microsoft.Extensions.Logging": "8.0.0",
  791. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  792. },
  793. "compile": {
  794. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  795. "related": ".xml"
  796. }
  797. },
  798. "runtime": {
  799. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  800. "related": ".xml"
  801. }
  802. },
  803. "build": {
  804. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets": {}
  805. }
  806. },
  807. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  808. "type": "package",
  809. "dependencies": {
  810. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  811. "Microsoft.Extensions.Logging": "8.0.0",
  812. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  813. "Microsoft.Extensions.Options": "8.0.0",
  814. "System.Diagnostics.EventLog": "8.0.0"
  815. },
  816. "compile": {
  817. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  818. "related": ".xml"
  819. }
  820. },
  821. "runtime": {
  822. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  823. "related": ".xml"
  824. }
  825. },
  826. "build": {
  827. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets": {}
  828. }
  829. },
  830. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  831. "type": "package",
  832. "dependencies": {
  833. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  834. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  835. "Microsoft.Extensions.Logging": "8.0.0",
  836. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  837. "Microsoft.Extensions.Options": "8.0.0",
  838. "Microsoft.Extensions.Primitives": "8.0.0",
  839. "System.Memory": "4.5.5",
  840. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  841. "System.Text.Json": "8.0.0"
  842. },
  843. "compile": {
  844. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  845. "related": ".xml"
  846. }
  847. },
  848. "runtime": {
  849. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  850. "related": ".xml"
  851. }
  852. },
  853. "build": {
  854. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets": {}
  855. }
  856. },
  857. "Microsoft.Extensions.Options/8.0.0": {
  858. "type": "package",
  859. "dependencies": {
  860. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  861. "Microsoft.Extensions.Primitives": "8.0.0",
  862. "System.ComponentModel.Annotations": "5.0.0"
  863. },
  864. "compile": {
  865. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  866. "related": ".xml"
  867. }
  868. },
  869. "runtime": {
  870. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  871. "related": ".xml"
  872. }
  873. },
  874. "build": {
  875. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  876. }
  877. },
  878. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  879. "type": "package",
  880. "dependencies": {
  881. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  882. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  883. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  884. "Microsoft.Extensions.Options": "8.0.0",
  885. "Microsoft.Extensions.Primitives": "8.0.0"
  886. },
  887. "compile": {
  888. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  889. "related": ".xml"
  890. }
  891. },
  892. "runtime": {
  893. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  894. "related": ".xml"
  895. }
  896. },
  897. "build": {
  898. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets": {}
  899. }
  900. },
  901. "Microsoft.Extensions.Primitives/8.0.0": {
  902. "type": "package",
  903. "dependencies": {
  904. "System.Memory": "4.5.5",
  905. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  906. },
  907. "compile": {
  908. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  909. "related": ".xml"
  910. }
  911. },
  912. "runtime": {
  913. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  914. "related": ".xml"
  915. }
  916. },
  917. "build": {
  918. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  919. }
  920. },
  921. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  922. "type": "package",
  923. "compile": {
  924. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  925. "related": ".xml"
  926. }
  927. },
  928. "runtime": {
  929. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  930. "related": ".xml"
  931. }
  932. }
  933. },
  934. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  935. "type": "package",
  936. "dependencies": {
  937. "Microsoft.IdentityModel.Tokens": "7.4.1",
  938. "System.Text.Encodings.Web": "4.7.2",
  939. "System.Text.Json": "4.7.2"
  940. },
  941. "compile": {
  942. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  943. "related": ".xml"
  944. }
  945. },
  946. "runtime": {
  947. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  948. "related": ".xml"
  949. }
  950. }
  951. },
  952. "Microsoft.IdentityModel.Logging/7.4.1": {
  953. "type": "package",
  954. "dependencies": {
  955. "Microsoft.IdentityModel.Abstractions": "7.4.1"
  956. },
  957. "compile": {
  958. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  959. "related": ".xml"
  960. }
  961. },
  962. "runtime": {
  963. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  964. "related": ".xml"
  965. }
  966. }
  967. },
  968. "Microsoft.IdentityModel.Tokens/7.4.1": {
  969. "type": "package",
  970. "dependencies": {
  971. "Microsoft.CSharp": "4.5.0",
  972. "Microsoft.IdentityModel.Logging": "7.4.1",
  973. "System.Security.Cryptography.Cng": "4.5.0",
  974. "System.Text.Encodings.Web": "4.7.2",
  975. "System.Text.Json": "4.7.2"
  976. },
  977. "compile": {
  978. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  979. "related": ".xml"
  980. }
  981. },
  982. "runtime": {
  983. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  984. "related": ".xml"
  985. }
  986. }
  987. },
  988. "Microsoft.NETCore.Platforms/2.1.2": {
  989. "type": "package",
  990. "compile": {
  991. "lib/netstandard1.0/_._": {}
  992. },
  993. "runtime": {
  994. "lib/netstandard1.0/_._": {}
  995. }
  996. },
  997. "Microsoft.NETCore.Targets/3.0.0": {
  998. "type": "package",
  999. "compile": {
  1000. "lib/netstandard1.0/_._": {}
  1001. },
  1002. "runtime": {
  1003. "lib/netstandard1.0/_._": {}
  1004. }
  1005. },
  1006. "Microsoft.OpenApi/1.3.1": {
  1007. "type": "package",
  1008. "compile": {
  1009. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1010. "related": ".pdb;.xml"
  1011. }
  1012. },
  1013. "runtime": {
  1014. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1015. "related": ".pdb;.xml"
  1016. }
  1017. }
  1018. },
  1019. "Microsoft.Win32.Primitives/4.0.1": {
  1020. "type": "package",
  1021. "dependencies": {
  1022. "Microsoft.NETCore.Platforms": "1.0.1",
  1023. "Microsoft.NETCore.Targets": "1.0.1",
  1024. "System.Runtime": "4.1.0"
  1025. },
  1026. "compile": {
  1027. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1028. "related": ".xml"
  1029. }
  1030. }
  1031. },
  1032. "Microsoft.Win32.SystemEvents/6.0.0": {
  1033. "type": "package",
  1034. "compile": {
  1035. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1036. "related": ".xml"
  1037. }
  1038. },
  1039. "runtime": {
  1040. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1041. "related": ".xml"
  1042. }
  1043. },
  1044. "build": {
  1045. "buildTransitive/netcoreapp3.1/_._": {}
  1046. },
  1047. "runtimeTargets": {
  1048. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1049. "assetType": "runtime",
  1050. "rid": "win"
  1051. }
  1052. }
  1053. },
  1054. "MySql.Data/8.0.22": {
  1055. "type": "package",
  1056. "dependencies": {
  1057. "BouncyCastle.NetCore": "1.8.3",
  1058. "Google.Protobuf": "3.11.4",
  1059. "K4os.Compression.LZ4": "1.1.11",
  1060. "K4os.Compression.LZ4.Streams": "1.1.11",
  1061. "K4os.Hash.xxHash": "1.0.6",
  1062. "SSH.NET": "2016.1.0",
  1063. "System.Buffers": "4.5.1",
  1064. "System.Configuration.ConfigurationManager": "4.4.1",
  1065. "System.Security.Permissions": "4.7.0",
  1066. "System.Text.Encoding.CodePages": "4.4.0"
  1067. },
  1068. "compile": {
  1069. "lib/net5.0/MySql.Data.dll": {
  1070. "related": ".xml"
  1071. },
  1072. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1073. "lib/net5.0/Zstandard.Net.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/net5.0/MySql.Data.dll": {
  1077. "related": ".xml"
  1078. },
  1079. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1080. "lib/net5.0/Zstandard.Net.dll": {}
  1081. }
  1082. },
  1083. "MySql.Data.EntityFrameworkCore/8.0.22": {
  1084. "type": "package",
  1085. "dependencies": {
  1086. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  1087. "MySql.Data": "8.0.22"
  1088. },
  1089. "compile": {
  1090. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  1091. "related": ".xml"
  1092. }
  1093. },
  1094. "runtime": {
  1095. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  1096. "related": ".xml"
  1097. }
  1098. }
  1099. },
  1100. "NETStandard.Library/1.6.0": {
  1101. "type": "package",
  1102. "dependencies": {
  1103. "Microsoft.NETCore.Platforms": "1.0.1",
  1104. "Microsoft.Win32.Primitives": "4.0.1",
  1105. "System.AppContext": "4.1.0",
  1106. "System.Collections": "4.0.11",
  1107. "System.Collections.Concurrent": "4.0.12",
  1108. "System.Console": "4.0.0",
  1109. "System.Diagnostics.Debug": "4.0.11",
  1110. "System.Diagnostics.Tools": "4.0.1",
  1111. "System.Diagnostics.Tracing": "4.1.0",
  1112. "System.Globalization": "4.0.11",
  1113. "System.Globalization.Calendars": "4.0.1",
  1114. "System.IO": "4.1.0",
  1115. "System.IO.Compression": "4.1.0",
  1116. "System.IO.Compression.ZipFile": "4.0.1",
  1117. "System.IO.FileSystem": "4.0.1",
  1118. "System.IO.FileSystem.Primitives": "4.0.1",
  1119. "System.Linq": "4.1.0",
  1120. "System.Linq.Expressions": "4.1.0",
  1121. "System.Net.Http": "4.1.0",
  1122. "System.Net.Primitives": "4.0.11",
  1123. "System.Net.Sockets": "4.1.0",
  1124. "System.ObjectModel": "4.0.12",
  1125. "System.Reflection": "4.1.0",
  1126. "System.Reflection.Extensions": "4.0.1",
  1127. "System.Reflection.Primitives": "4.0.1",
  1128. "System.Resources.ResourceManager": "4.0.1",
  1129. "System.Runtime": "4.1.0",
  1130. "System.Runtime.Extensions": "4.1.0",
  1131. "System.Runtime.Handles": "4.0.1",
  1132. "System.Runtime.InteropServices": "4.1.0",
  1133. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  1134. "System.Runtime.Numerics": "4.0.1",
  1135. "System.Security.Cryptography.Algorithms": "4.2.0",
  1136. "System.Security.Cryptography.Encoding": "4.0.0",
  1137. "System.Security.Cryptography.Primitives": "4.0.0",
  1138. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1139. "System.Text.Encoding": "4.0.11",
  1140. "System.Text.Encoding.Extensions": "4.0.11",
  1141. "System.Text.RegularExpressions": "4.1.0",
  1142. "System.Threading": "4.0.11",
  1143. "System.Threading.Tasks": "4.0.11",
  1144. "System.Threading.Timer": "4.0.1",
  1145. "System.Xml.ReaderWriter": "4.0.11",
  1146. "System.Xml.XDocument": "4.0.11"
  1147. }
  1148. },
  1149. "Newtonsoft.Json/13.0.3": {
  1150. "type": "package",
  1151. "compile": {
  1152. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1153. "related": ".xml"
  1154. }
  1155. },
  1156. "runtime": {
  1157. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1158. "related": ".xml"
  1159. }
  1160. }
  1161. },
  1162. "NLog/5.2.8": {
  1163. "type": "package",
  1164. "compile": {
  1165. "lib/netstandard2.0/NLog.dll": {
  1166. "related": ".xml"
  1167. }
  1168. },
  1169. "runtime": {
  1170. "lib/netstandard2.0/NLog.dll": {
  1171. "related": ".xml"
  1172. }
  1173. }
  1174. },
  1175. "NLog.Extensions.Logging/5.3.8": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  1179. "Microsoft.Extensions.Logging": "3.1.0",
  1180. "NLog": "5.2.8"
  1181. },
  1182. "compile": {
  1183. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  1184. "related": ".xml"
  1185. }
  1186. },
  1187. "runtime": {
  1188. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  1189. "related": ".xml"
  1190. }
  1191. }
  1192. },
  1193. "NLog.Web.AspNetCore/5.3.8": {
  1194. "type": "package",
  1195. "dependencies": {
  1196. "NLog.Extensions.Logging": "5.3.8"
  1197. },
  1198. "compile": {
  1199. "lib/net5.0/NLog.Web.AspNetCore.dll": {
  1200. "related": ".xml"
  1201. }
  1202. },
  1203. "runtime": {
  1204. "lib/net5.0/NLog.Web.AspNetCore.dll": {
  1205. "related": ".xml"
  1206. }
  1207. },
  1208. "frameworkReferences": [
  1209. "Microsoft.AspNetCore.App"
  1210. ]
  1211. },
  1212. "Pipelines.Sockets.Unofficial/2.2.8": {
  1213. "type": "package",
  1214. "dependencies": {
  1215. "System.IO.Pipelines": "5.0.1"
  1216. },
  1217. "compile": {
  1218. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1219. "related": ".xml"
  1220. }
  1221. },
  1222. "runtime": {
  1223. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1224. "related": ".xml"
  1225. }
  1226. }
  1227. },
  1228. "Quartz/3.8.1": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1232. "System.Configuration.ConfigurationManager": "6.0.1",
  1233. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1234. },
  1235. "compile": {
  1236. "lib/netstandard2.0/Quartz.dll": {
  1237. "related": ".xml"
  1238. }
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/Quartz.dll": {
  1242. "related": ".xml"
  1243. }
  1244. }
  1245. },
  1246. "runtime.native.System/4.0.0": {
  1247. "type": "package",
  1248. "dependencies": {
  1249. "Microsoft.NETCore.Platforms": "1.0.1",
  1250. "Microsoft.NETCore.Targets": "1.0.1"
  1251. },
  1252. "compile": {
  1253. "lib/netstandard1.0/_._": {}
  1254. },
  1255. "runtime": {
  1256. "lib/netstandard1.0/_._": {}
  1257. }
  1258. },
  1259. "runtime.native.System.IO.Compression/4.1.0": {
  1260. "type": "package",
  1261. "dependencies": {
  1262. "Microsoft.NETCore.Platforms": "1.0.1",
  1263. "Microsoft.NETCore.Targets": "1.0.1"
  1264. },
  1265. "compile": {
  1266. "lib/netstandard1.0/_._": {}
  1267. },
  1268. "runtime": {
  1269. "lib/netstandard1.0/_._": {}
  1270. }
  1271. },
  1272. "runtime.native.System.Net.Http/4.0.1": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.NETCore.Platforms": "1.0.1",
  1276. "Microsoft.NETCore.Targets": "1.0.1"
  1277. },
  1278. "compile": {
  1279. "lib/netstandard1.0/_._": {}
  1280. },
  1281. "runtime": {
  1282. "lib/netstandard1.0/_._": {}
  1283. }
  1284. },
  1285. "runtime.native.System.Security.Cryptography/4.0.0": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "Microsoft.NETCore.Platforms": "1.0.1",
  1289. "Microsoft.NETCore.Targets": "1.0.1"
  1290. },
  1291. "compile": {
  1292. "lib/netstandard1.0/_._": {}
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard1.0/_._": {}
  1296. }
  1297. },
  1298. "Scrutor/3.3.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  1302. "Microsoft.Extensions.DependencyModel": "3.1.6"
  1303. },
  1304. "compile": {
  1305. "lib/netcoreapp3.1/Scrutor.dll": {
  1306. "related": ".pdb;.xml"
  1307. }
  1308. },
  1309. "runtime": {
  1310. "lib/netcoreapp3.1/Scrutor.dll": {
  1311. "related": ".pdb;.xml"
  1312. }
  1313. }
  1314. },
  1315. "SSH.NET/2016.1.0": {
  1316. "type": "package",
  1317. "dependencies": {
  1318. "Microsoft.CSharp": "4.0.1",
  1319. "SshNet.Security.Cryptography": "[1.2.0]",
  1320. "System.Diagnostics.Debug": "4.0.11",
  1321. "System.Diagnostics.Tools": "4.0.1",
  1322. "System.Diagnostics.TraceSource": "4.0.0",
  1323. "System.Globalization": "4.0.11",
  1324. "System.IO": "4.1.0",
  1325. "System.IO.FileSystem": "4.0.1",
  1326. "System.IO.FileSystem.Primitives": "4.0.1",
  1327. "System.Linq": "4.1.0",
  1328. "System.Net.NameResolution": "4.0.0",
  1329. "System.Net.Sockets": "4.1.0",
  1330. "System.Reflection.Extensions": "4.0.1",
  1331. "System.Runtime.Extensions": "4.1.0",
  1332. "System.Security.Cryptography.Algorithms": "4.2.0",
  1333. "System.Text.RegularExpressions": "4.1.0",
  1334. "System.Threading": "4.0.11",
  1335. "System.Threading.Thread": "4.0.0",
  1336. "System.Threading.ThreadPool": "4.0.10",
  1337. "System.Threading.Timer": "4.0.1",
  1338. "System.Xml.XPath.XmlDocument": "4.0.1",
  1339. "System.Xml.XmlDocument": "4.0.1"
  1340. },
  1341. "compile": {
  1342. "lib/netstandard1.3/Renci.SshNet.dll": {
  1343. "related": ".xml"
  1344. }
  1345. },
  1346. "runtime": {
  1347. "lib/netstandard1.3/Renci.SshNet.dll": {
  1348. "related": ".xml"
  1349. }
  1350. }
  1351. },
  1352. "SshNet.Security.Cryptography/1.2.0": {
  1353. "type": "package",
  1354. "dependencies": {
  1355. "System.IO": "4.1.0",
  1356. "System.Security.Cryptography.Primitives": "4.0.0"
  1357. },
  1358. "compile": {
  1359. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  1360. "related": ".xml"
  1361. }
  1362. },
  1363. "runtime": {
  1364. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  1365. "related": ".xml"
  1366. }
  1367. }
  1368. },
  1369. "StackExchange.Redis/2.7.33": {
  1370. "type": "package",
  1371. "dependencies": {
  1372. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1373. "Pipelines.Sockets.Unofficial": "2.2.8"
  1374. },
  1375. "compile": {
  1376. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  1377. "related": ".xml"
  1378. }
  1379. },
  1380. "runtime": {
  1381. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  1382. "related": ".xml"
  1383. }
  1384. }
  1385. },
  1386. "Swashbuckle.AspNetCore/6.5.0": {
  1387. "type": "package",
  1388. "dependencies": {
  1389. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1390. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  1391. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  1392. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  1393. },
  1394. "build": {
  1395. "build/Swashbuckle.AspNetCore.props": {}
  1396. }
  1397. },
  1398. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1402. "Microsoft.OpenApi": "1.3.1",
  1403. "Scrutor": "3.3.0",
  1404. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.1",
  1405. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1406. },
  1407. "compile": {
  1408. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {}
  1409. },
  1410. "runtime": {
  1411. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {}
  1412. }
  1413. },
  1414. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  1415. "type": "package",
  1416. "compile": {
  1417. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1418. },
  1419. "runtime": {
  1420. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1421. }
  1422. },
  1423. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  1424. "type": "package",
  1425. "dependencies": {
  1426. "Microsoft.OpenApi": "1.2.3"
  1427. },
  1428. "compile": {
  1429. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1430. "related": ".pdb;.xml"
  1431. }
  1432. },
  1433. "runtime": {
  1434. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1435. "related": ".pdb;.xml"
  1436. }
  1437. },
  1438. "frameworkReferences": [
  1439. "Microsoft.AspNetCore.App"
  1440. ]
  1441. },
  1442. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  1443. "type": "package",
  1444. "dependencies": {
  1445. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  1446. },
  1447. "compile": {
  1448. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1449. "related": ".pdb;.xml"
  1450. }
  1451. },
  1452. "runtime": {
  1453. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1454. "related": ".pdb;.xml"
  1455. }
  1456. }
  1457. },
  1458. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  1459. "type": "package",
  1460. "compile": {
  1461. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1462. "related": ".pdb;.xml"
  1463. }
  1464. },
  1465. "runtime": {
  1466. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1467. "related": ".pdb;.xml"
  1468. }
  1469. },
  1470. "frameworkReferences": [
  1471. "Microsoft.AspNetCore.App"
  1472. ]
  1473. },
  1474. "System.AppContext/4.1.0": {
  1475. "type": "package",
  1476. "dependencies": {
  1477. "System.Runtime": "4.1.0"
  1478. },
  1479. "compile": {
  1480. "ref/netstandard1.6/System.AppContext.dll": {
  1481. "related": ".xml"
  1482. }
  1483. },
  1484. "runtime": {
  1485. "lib/netstandard1.6/System.AppContext.dll": {}
  1486. }
  1487. },
  1488. "System.Buffers/4.5.1": {
  1489. "type": "package",
  1490. "compile": {
  1491. "ref/netcoreapp2.0/_._": {}
  1492. },
  1493. "runtime": {
  1494. "lib/netcoreapp2.0/_._": {}
  1495. }
  1496. },
  1497. "System.Collections/4.0.11": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "Microsoft.NETCore.Platforms": "1.0.1",
  1501. "Microsoft.NETCore.Targets": "1.0.1",
  1502. "System.Runtime": "4.1.0"
  1503. },
  1504. "compile": {
  1505. "ref/netstandard1.3/System.Collections.dll": {
  1506. "related": ".xml"
  1507. }
  1508. }
  1509. },
  1510. "System.Collections.Concurrent/4.0.12": {
  1511. "type": "package",
  1512. "dependencies": {
  1513. "System.Collections": "4.0.11",
  1514. "System.Diagnostics.Debug": "4.0.11",
  1515. "System.Diagnostics.Tracing": "4.1.0",
  1516. "System.Globalization": "4.0.11",
  1517. "System.Reflection": "4.1.0",
  1518. "System.Resources.ResourceManager": "4.0.1",
  1519. "System.Runtime": "4.1.0",
  1520. "System.Runtime.Extensions": "4.1.0",
  1521. "System.Threading": "4.0.11",
  1522. "System.Threading.Tasks": "4.0.11"
  1523. },
  1524. "compile": {
  1525. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1526. "related": ".xml"
  1527. }
  1528. },
  1529. "runtime": {
  1530. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1531. }
  1532. },
  1533. "System.Collections.Immutable/1.7.0": {
  1534. "type": "package",
  1535. "compile": {
  1536. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1537. "related": ".xml"
  1538. }
  1539. },
  1540. "runtime": {
  1541. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1542. "related": ".xml"
  1543. }
  1544. }
  1545. },
  1546. "System.ComponentModel.Annotations/5.0.0": {
  1547. "type": "package",
  1548. "compile": {
  1549. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1550. "related": ".xml"
  1551. }
  1552. },
  1553. "runtime": {
  1554. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1555. "related": ".xml"
  1556. }
  1557. }
  1558. },
  1559. "System.Configuration.ConfigurationManager/6.0.1": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1563. "System.Security.Permissions": "6.0.0"
  1564. },
  1565. "compile": {
  1566. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1567. "related": ".xml"
  1568. }
  1569. },
  1570. "runtime": {
  1571. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1572. "related": ".xml"
  1573. }
  1574. },
  1575. "build": {
  1576. "buildTransitive/netcoreapp3.1/_._": {}
  1577. }
  1578. },
  1579. "System.Console/4.0.0": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "Microsoft.NETCore.Platforms": "1.0.1",
  1583. "Microsoft.NETCore.Targets": "1.0.1",
  1584. "System.IO": "4.1.0",
  1585. "System.Runtime": "4.1.0",
  1586. "System.Text.Encoding": "4.0.11"
  1587. },
  1588. "compile": {
  1589. "ref/netstandard1.3/System.Console.dll": {
  1590. "related": ".xml"
  1591. }
  1592. }
  1593. },
  1594. "System.Diagnostics.Debug/4.0.11": {
  1595. "type": "package",
  1596. "dependencies": {
  1597. "Microsoft.NETCore.Platforms": "1.0.1",
  1598. "Microsoft.NETCore.Targets": "1.0.1",
  1599. "System.Runtime": "4.1.0"
  1600. },
  1601. "compile": {
  1602. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1603. "related": ".xml"
  1604. }
  1605. }
  1606. },
  1607. "System.Diagnostics.DiagnosticSource/8.0.0": {
  1608. "type": "package",
  1609. "dependencies": {
  1610. "System.Memory": "4.5.5",
  1611. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1612. },
  1613. "compile": {
  1614. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1615. "related": ".xml"
  1616. }
  1617. },
  1618. "runtime": {
  1619. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1620. "related": ".xml"
  1621. }
  1622. },
  1623. "build": {
  1624. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  1625. }
  1626. },
  1627. "System.Diagnostics.EventLog/8.0.0": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "System.Security.Principal.Windows": "5.0.0"
  1631. },
  1632. "compile": {
  1633. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1634. "related": ".xml"
  1635. }
  1636. },
  1637. "runtime": {
  1638. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1639. "related": ".xml"
  1640. }
  1641. },
  1642. "build": {
  1643. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets": {}
  1644. }
  1645. },
  1646. "System.Diagnostics.Tools/4.0.1": {
  1647. "type": "package",
  1648. "dependencies": {
  1649. "Microsoft.NETCore.Platforms": "1.0.1",
  1650. "Microsoft.NETCore.Targets": "1.0.1",
  1651. "System.Runtime": "4.1.0"
  1652. },
  1653. "compile": {
  1654. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1655. "related": ".xml"
  1656. }
  1657. }
  1658. },
  1659. "System.Diagnostics.TraceSource/4.0.0": {
  1660. "type": "package",
  1661. "dependencies": {
  1662. "Microsoft.NETCore.Platforms": "1.0.1",
  1663. "System.Collections": "4.0.11",
  1664. "System.Diagnostics.Debug": "4.0.11",
  1665. "System.Globalization": "4.0.11",
  1666. "System.Resources.ResourceManager": "4.0.1",
  1667. "System.Runtime": "4.1.0",
  1668. "System.Runtime.Extensions": "4.1.0",
  1669. "System.Threading": "4.0.11",
  1670. "runtime.native.System": "4.0.0"
  1671. },
  1672. "compile": {
  1673. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1674. "related": ".xml"
  1675. }
  1676. },
  1677. "runtimeTargets": {
  1678. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1679. "assetType": "runtime",
  1680. "rid": "unix"
  1681. },
  1682. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1683. "assetType": "runtime",
  1684. "rid": "win"
  1685. }
  1686. }
  1687. },
  1688. "System.Diagnostics.Tracing/4.1.0": {
  1689. "type": "package",
  1690. "dependencies": {
  1691. "Microsoft.NETCore.Platforms": "1.0.1",
  1692. "Microsoft.NETCore.Targets": "1.0.1",
  1693. "System.Runtime": "4.1.0"
  1694. },
  1695. "compile": {
  1696. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1697. "related": ".xml"
  1698. }
  1699. }
  1700. },
  1701. "System.Drawing.Common/6.0.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.Win32.SystemEvents": "6.0.0"
  1705. },
  1706. "compile": {
  1707. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1708. "related": ".xml"
  1709. }
  1710. },
  1711. "runtime": {
  1712. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1713. "related": ".xml"
  1714. }
  1715. },
  1716. "build": {
  1717. "buildTransitive/netcoreapp3.1/_._": {}
  1718. },
  1719. "runtimeTargets": {
  1720. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1721. "assetType": "runtime",
  1722. "rid": "unix"
  1723. },
  1724. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1725. "assetType": "runtime",
  1726. "rid": "win"
  1727. }
  1728. }
  1729. },
  1730. "System.Globalization/4.0.11": {
  1731. "type": "package",
  1732. "dependencies": {
  1733. "Microsoft.NETCore.Platforms": "1.0.1",
  1734. "Microsoft.NETCore.Targets": "1.0.1",
  1735. "System.Runtime": "4.1.0"
  1736. },
  1737. "compile": {
  1738. "ref/netstandard1.3/System.Globalization.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "System.Globalization.Calendars/4.0.1": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "1.0.1",
  1747. "Microsoft.NETCore.Targets": "1.0.1",
  1748. "System.Globalization": "4.0.11",
  1749. "System.Runtime": "4.1.0"
  1750. },
  1751. "compile": {
  1752. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1753. "related": ".xml"
  1754. }
  1755. }
  1756. },
  1757. "System.Globalization.Extensions/4.0.1": {
  1758. "type": "package",
  1759. "dependencies": {
  1760. "Microsoft.NETCore.Platforms": "1.0.1",
  1761. "System.Globalization": "4.0.11",
  1762. "System.Resources.ResourceManager": "4.0.1",
  1763. "System.Runtime": "4.1.0",
  1764. "System.Runtime.Extensions": "4.1.0",
  1765. "System.Runtime.InteropServices": "4.1.0"
  1766. },
  1767. "compile": {
  1768. "ref/netstandard1.3/_._": {
  1769. "related": ".xml"
  1770. }
  1771. },
  1772. "runtimeTargets": {
  1773. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1774. "assetType": "runtime",
  1775. "rid": "unix"
  1776. },
  1777. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1778. "assetType": "runtime",
  1779. "rid": "win"
  1780. }
  1781. }
  1782. },
  1783. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.IdentityModel.JsonWebTokens": "7.4.1",
  1787. "Microsoft.IdentityModel.Tokens": "7.4.1"
  1788. },
  1789. "compile": {
  1790. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1791. "related": ".xml"
  1792. }
  1793. },
  1794. "runtime": {
  1795. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1796. "related": ".xml"
  1797. }
  1798. }
  1799. },
  1800. "System.IO/4.3.0": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "Microsoft.NETCore.Platforms": "1.1.0",
  1804. "Microsoft.NETCore.Targets": "1.1.0",
  1805. "System.Runtime": "4.3.0",
  1806. "System.Text.Encoding": "4.3.0",
  1807. "System.Threading.Tasks": "4.3.0"
  1808. },
  1809. "compile": {
  1810. "ref/netstandard1.5/System.IO.dll": {
  1811. "related": ".xml"
  1812. }
  1813. }
  1814. },
  1815. "System.IO.Compression/4.1.0": {
  1816. "type": "package",
  1817. "dependencies": {
  1818. "Microsoft.NETCore.Platforms": "1.0.1",
  1819. "System.Collections": "4.0.11",
  1820. "System.Diagnostics.Debug": "4.0.11",
  1821. "System.IO": "4.1.0",
  1822. "System.Resources.ResourceManager": "4.0.1",
  1823. "System.Runtime": "4.1.0",
  1824. "System.Runtime.Extensions": "4.1.0",
  1825. "System.Runtime.Handles": "4.0.1",
  1826. "System.Runtime.InteropServices": "4.1.0",
  1827. "System.Text.Encoding": "4.0.11",
  1828. "System.Threading": "4.0.11",
  1829. "System.Threading.Tasks": "4.0.11",
  1830. "runtime.native.System": "4.0.0",
  1831. "runtime.native.System.IO.Compression": "4.1.0"
  1832. },
  1833. "compile": {
  1834. "ref/netstandard1.3/System.IO.Compression.dll": {
  1835. "related": ".xml"
  1836. }
  1837. },
  1838. "runtimeTargets": {
  1839. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1840. "assetType": "runtime",
  1841. "rid": "unix"
  1842. },
  1843. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1844. "assetType": "runtime",
  1845. "rid": "win"
  1846. }
  1847. }
  1848. },
  1849. "System.IO.Compression.ZipFile/4.0.1": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Buffers": "4.0.0",
  1853. "System.IO": "4.1.0",
  1854. "System.IO.Compression": "4.1.0",
  1855. "System.IO.FileSystem": "4.0.1",
  1856. "System.IO.FileSystem.Primitives": "4.0.1",
  1857. "System.Resources.ResourceManager": "4.0.1",
  1858. "System.Runtime": "4.1.0",
  1859. "System.Runtime.Extensions": "4.1.0",
  1860. "System.Text.Encoding": "4.0.11"
  1861. },
  1862. "compile": {
  1863. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1864. "related": ".xml"
  1865. }
  1866. },
  1867. "runtime": {
  1868. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1869. }
  1870. },
  1871. "System.IO.FileSystem/4.0.1": {
  1872. "type": "package",
  1873. "dependencies": {
  1874. "Microsoft.NETCore.Platforms": "1.0.1",
  1875. "Microsoft.NETCore.Targets": "1.0.1",
  1876. "System.IO": "4.1.0",
  1877. "System.IO.FileSystem.Primitives": "4.0.1",
  1878. "System.Runtime": "4.1.0",
  1879. "System.Runtime.Handles": "4.0.1",
  1880. "System.Text.Encoding": "4.0.11",
  1881. "System.Threading.Tasks": "4.0.11"
  1882. },
  1883. "compile": {
  1884. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1885. "related": ".xml"
  1886. }
  1887. }
  1888. },
  1889. "System.IO.FileSystem.Primitives/4.0.1": {
  1890. "type": "package",
  1891. "dependencies": {
  1892. "System.Runtime": "4.1.0"
  1893. },
  1894. "compile": {
  1895. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1896. "related": ".xml"
  1897. }
  1898. },
  1899. "runtime": {
  1900. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1901. }
  1902. },
  1903. "System.IO.Pipelines/5.0.1": {
  1904. "type": "package",
  1905. "compile": {
  1906. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1907. "related": ".xml"
  1908. }
  1909. },
  1910. "runtime": {
  1911. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1912. "related": ".xml"
  1913. }
  1914. }
  1915. },
  1916. "System.Linq/4.1.0": {
  1917. "type": "package",
  1918. "dependencies": {
  1919. "System.Collections": "4.0.11",
  1920. "System.Diagnostics.Debug": "4.0.11",
  1921. "System.Resources.ResourceManager": "4.0.1",
  1922. "System.Runtime": "4.1.0",
  1923. "System.Runtime.Extensions": "4.1.0"
  1924. },
  1925. "compile": {
  1926. "ref/netstandard1.6/System.Linq.dll": {
  1927. "related": ".xml"
  1928. }
  1929. },
  1930. "runtime": {
  1931. "lib/netstandard1.6/System.Linq.dll": {}
  1932. }
  1933. },
  1934. "System.Linq.Expressions/4.1.0": {
  1935. "type": "package",
  1936. "dependencies": {
  1937. "System.Collections": "4.0.11",
  1938. "System.Diagnostics.Debug": "4.0.11",
  1939. "System.Globalization": "4.0.11",
  1940. "System.IO": "4.1.0",
  1941. "System.Linq": "4.1.0",
  1942. "System.ObjectModel": "4.0.12",
  1943. "System.Reflection": "4.1.0",
  1944. "System.Reflection.Emit": "4.0.1",
  1945. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1946. "System.Reflection.Emit.Lightweight": "4.0.1",
  1947. "System.Reflection.Extensions": "4.0.1",
  1948. "System.Reflection.Primitives": "4.0.1",
  1949. "System.Reflection.TypeExtensions": "4.1.0",
  1950. "System.Resources.ResourceManager": "4.0.1",
  1951. "System.Runtime": "4.1.0",
  1952. "System.Runtime.Extensions": "4.1.0",
  1953. "System.Threading": "4.0.11"
  1954. },
  1955. "compile": {
  1956. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1957. "related": ".xml"
  1958. }
  1959. },
  1960. "runtime": {
  1961. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1962. }
  1963. },
  1964. "System.Memory/4.5.5": {
  1965. "type": "package",
  1966. "compile": {
  1967. "ref/netcoreapp2.1/_._": {}
  1968. },
  1969. "runtime": {
  1970. "lib/netcoreapp2.1/_._": {}
  1971. }
  1972. },
  1973. "System.Net.Http/4.1.0": {
  1974. "type": "package",
  1975. "dependencies": {
  1976. "Microsoft.NETCore.Platforms": "1.0.1",
  1977. "System.Collections": "4.0.11",
  1978. "System.Diagnostics.Debug": "4.0.11",
  1979. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1980. "System.Diagnostics.Tracing": "4.1.0",
  1981. "System.Globalization": "4.0.11",
  1982. "System.Globalization.Extensions": "4.0.1",
  1983. "System.IO": "4.1.0",
  1984. "System.IO.FileSystem": "4.0.1",
  1985. "System.Net.Primitives": "4.0.11",
  1986. "System.Resources.ResourceManager": "4.0.1",
  1987. "System.Runtime": "4.1.0",
  1988. "System.Runtime.Extensions": "4.1.0",
  1989. "System.Runtime.Handles": "4.0.1",
  1990. "System.Runtime.InteropServices": "4.1.0",
  1991. "System.Security.Cryptography.Algorithms": "4.2.0",
  1992. "System.Security.Cryptography.Encoding": "4.0.0",
  1993. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1994. "System.Security.Cryptography.Primitives": "4.0.0",
  1995. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1996. "System.Text.Encoding": "4.0.11",
  1997. "System.Threading": "4.0.11",
  1998. "System.Threading.Tasks": "4.0.11",
  1999. "runtime.native.System": "4.0.0",
  2000. "runtime.native.System.Net.Http": "4.0.1",
  2001. "runtime.native.System.Security.Cryptography": "4.0.0"
  2002. },
  2003. "compile": {
  2004. "ref/netstandard1.3/System.Net.Http.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "runtimeTargets": {
  2009. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2010. "assetType": "runtime",
  2011. "rid": "unix"
  2012. },
  2013. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2014. "assetType": "runtime",
  2015. "rid": "win"
  2016. }
  2017. }
  2018. },
  2019. "System.Net.NameResolution/4.0.0": {
  2020. "type": "package",
  2021. "dependencies": {
  2022. "Microsoft.NETCore.Platforms": "1.0.1",
  2023. "System.Collections": "4.0.11",
  2024. "System.Diagnostics.Tracing": "4.1.0",
  2025. "System.Globalization": "4.0.11",
  2026. "System.Net.Primitives": "4.0.11",
  2027. "System.Resources.ResourceManager": "4.0.1",
  2028. "System.Runtime": "4.1.0",
  2029. "System.Runtime.Extensions": "4.1.0",
  2030. "System.Runtime.Handles": "4.0.1",
  2031. "System.Runtime.InteropServices": "4.1.0",
  2032. "System.Security.Principal.Windows": "4.0.0",
  2033. "System.Threading": "4.0.11",
  2034. "System.Threading.Tasks": "4.0.11",
  2035. "runtime.native.System": "4.0.0"
  2036. },
  2037. "compile": {
  2038. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2039. "related": ".xml"
  2040. }
  2041. },
  2042. "runtimeTargets": {
  2043. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2044. "assetType": "runtime",
  2045. "rid": "unix"
  2046. },
  2047. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2048. "assetType": "runtime",
  2049. "rid": "win"
  2050. }
  2051. }
  2052. },
  2053. "System.Net.Primitives/4.0.11": {
  2054. "type": "package",
  2055. "dependencies": {
  2056. "Microsoft.NETCore.Platforms": "1.0.1",
  2057. "Microsoft.NETCore.Targets": "1.0.1",
  2058. "System.Runtime": "4.1.0",
  2059. "System.Runtime.Handles": "4.0.1"
  2060. },
  2061. "compile": {
  2062. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2063. "related": ".xml"
  2064. }
  2065. }
  2066. },
  2067. "System.Net.Sockets/4.1.0": {
  2068. "type": "package",
  2069. "dependencies": {
  2070. "Microsoft.NETCore.Platforms": "1.0.1",
  2071. "Microsoft.NETCore.Targets": "1.0.1",
  2072. "System.IO": "4.1.0",
  2073. "System.Net.Primitives": "4.0.11",
  2074. "System.Runtime": "4.1.0",
  2075. "System.Threading.Tasks": "4.0.11"
  2076. },
  2077. "compile": {
  2078. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2079. "related": ".xml"
  2080. }
  2081. }
  2082. },
  2083. "System.ObjectModel/4.0.12": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "System.Collections": "4.0.11",
  2087. "System.Diagnostics.Debug": "4.0.11",
  2088. "System.Resources.ResourceManager": "4.0.1",
  2089. "System.Runtime": "4.1.0",
  2090. "System.Threading": "4.0.11"
  2091. },
  2092. "compile": {
  2093. "ref/netstandard1.3/System.ObjectModel.dll": {
  2094. "related": ".xml"
  2095. }
  2096. },
  2097. "runtime": {
  2098. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2099. }
  2100. },
  2101. "System.Reflection/4.3.0": {
  2102. "type": "package",
  2103. "dependencies": {
  2104. "Microsoft.NETCore.Platforms": "1.1.0",
  2105. "Microsoft.NETCore.Targets": "1.1.0",
  2106. "System.IO": "4.3.0",
  2107. "System.Reflection.Primitives": "4.3.0",
  2108. "System.Runtime": "4.3.0"
  2109. },
  2110. "compile": {
  2111. "ref/netstandard1.5/System.Reflection.dll": {
  2112. "related": ".xml"
  2113. }
  2114. }
  2115. },
  2116. "System.Reflection.Emit/4.0.1": {
  2117. "type": "package",
  2118. "dependencies": {
  2119. "System.IO": "4.1.0",
  2120. "System.Reflection": "4.1.0",
  2121. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2122. "System.Reflection.Primitives": "4.0.1",
  2123. "System.Runtime": "4.1.0"
  2124. },
  2125. "compile": {
  2126. "ref/netstandard1.1/_._": {
  2127. "related": ".xml"
  2128. }
  2129. },
  2130. "runtime": {
  2131. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2132. }
  2133. },
  2134. "System.Reflection.Emit.ILGeneration/4.0.1": {
  2135. "type": "package",
  2136. "dependencies": {
  2137. "System.Reflection": "4.1.0",
  2138. "System.Reflection.Primitives": "4.0.1",
  2139. "System.Runtime": "4.1.0"
  2140. },
  2141. "compile": {
  2142. "ref/netstandard1.0/_._": {
  2143. "related": ".xml"
  2144. }
  2145. },
  2146. "runtime": {
  2147. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2148. }
  2149. },
  2150. "System.Reflection.Emit.Lightweight/4.0.1": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "System.Reflection": "4.1.0",
  2154. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2155. "System.Reflection.Primitives": "4.0.1",
  2156. "System.Runtime": "4.1.0"
  2157. },
  2158. "compile": {
  2159. "ref/netstandard1.0/_._": {
  2160. "related": ".xml"
  2161. }
  2162. },
  2163. "runtime": {
  2164. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2165. }
  2166. },
  2167. "System.Reflection.Extensions/4.0.1": {
  2168. "type": "package",
  2169. "dependencies": {
  2170. "Microsoft.NETCore.Platforms": "1.0.1",
  2171. "Microsoft.NETCore.Targets": "1.0.1",
  2172. "System.Reflection": "4.1.0",
  2173. "System.Runtime": "4.1.0"
  2174. },
  2175. "compile": {
  2176. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2177. "related": ".xml"
  2178. }
  2179. }
  2180. },
  2181. "System.Reflection.Primitives/4.3.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "Microsoft.NETCore.Platforms": "1.1.0",
  2185. "Microsoft.NETCore.Targets": "1.1.0",
  2186. "System.Runtime": "4.3.0"
  2187. },
  2188. "compile": {
  2189. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2190. "related": ".xml"
  2191. }
  2192. }
  2193. },
  2194. "System.Reflection.TypeExtensions/4.1.0": {
  2195. "type": "package",
  2196. "dependencies": {
  2197. "System.Reflection": "4.1.0",
  2198. "System.Runtime": "4.1.0"
  2199. },
  2200. "compile": {
  2201. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2202. "related": ".xml"
  2203. }
  2204. },
  2205. "runtime": {
  2206. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2207. }
  2208. },
  2209. "System.Resources.ResourceManager/4.0.1": {
  2210. "type": "package",
  2211. "dependencies": {
  2212. "Microsoft.NETCore.Platforms": "1.0.1",
  2213. "Microsoft.NETCore.Targets": "1.0.1",
  2214. "System.Globalization": "4.0.11",
  2215. "System.Reflection": "4.1.0",
  2216. "System.Runtime": "4.1.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2220. "related": ".xml"
  2221. }
  2222. }
  2223. },
  2224. "System.Runtime/4.3.0": {
  2225. "type": "package",
  2226. "dependencies": {
  2227. "Microsoft.NETCore.Platforms": "1.1.0",
  2228. "Microsoft.NETCore.Targets": "1.1.0"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.5/System.Runtime.dll": {
  2232. "related": ".xml"
  2233. }
  2234. }
  2235. },
  2236. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2237. "type": "package",
  2238. "compile": {
  2239. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2240. "related": ".xml"
  2241. }
  2242. },
  2243. "runtime": {
  2244. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2245. "related": ".xml"
  2246. }
  2247. },
  2248. "build": {
  2249. "buildTransitive/netcoreapp3.1/_._": {}
  2250. }
  2251. },
  2252. "System.Runtime.Extensions/4.1.0": {
  2253. "type": "package",
  2254. "dependencies": {
  2255. "Microsoft.NETCore.Platforms": "1.0.1",
  2256. "Microsoft.NETCore.Targets": "1.0.1",
  2257. "System.Runtime": "4.1.0"
  2258. },
  2259. "compile": {
  2260. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2261. "related": ".xml"
  2262. }
  2263. }
  2264. },
  2265. "System.Runtime.Handles/4.0.1": {
  2266. "type": "package",
  2267. "dependencies": {
  2268. "Microsoft.NETCore.Platforms": "1.0.1",
  2269. "Microsoft.NETCore.Targets": "1.0.1",
  2270. "System.Runtime": "4.1.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2274. "related": ".xml"
  2275. }
  2276. }
  2277. },
  2278. "System.Runtime.InteropServices/4.1.0": {
  2279. "type": "package",
  2280. "dependencies": {
  2281. "Microsoft.NETCore.Platforms": "1.0.1",
  2282. "Microsoft.NETCore.Targets": "1.0.1",
  2283. "System.Reflection": "4.1.0",
  2284. "System.Reflection.Primitives": "4.0.1",
  2285. "System.Runtime": "4.1.0",
  2286. "System.Runtime.Handles": "4.0.1"
  2287. },
  2288. "compile": {
  2289. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {
  2290. "related": ".xml"
  2291. }
  2292. }
  2293. },
  2294. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "Microsoft.NETCore.Platforms": "1.0.1",
  2298. "System.Reflection": "4.1.0",
  2299. "System.Resources.ResourceManager": "4.0.1",
  2300. "System.Runtime": "4.1.0",
  2301. "System.Runtime.InteropServices": "4.1.0",
  2302. "System.Threading": "4.0.11",
  2303. "runtime.native.System": "4.0.0"
  2304. },
  2305. "compile": {
  2306. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2307. },
  2308. "runtimeTargets": {
  2309. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2310. "assetType": "runtime",
  2311. "rid": "unix"
  2312. },
  2313. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2314. "assetType": "runtime",
  2315. "rid": "win"
  2316. }
  2317. }
  2318. },
  2319. "System.Runtime.Numerics/4.0.1": {
  2320. "type": "package",
  2321. "dependencies": {
  2322. "System.Globalization": "4.0.11",
  2323. "System.Resources.ResourceManager": "4.0.1",
  2324. "System.Runtime": "4.1.0",
  2325. "System.Runtime.Extensions": "4.1.0"
  2326. },
  2327. "compile": {
  2328. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2329. "related": ".xml"
  2330. }
  2331. },
  2332. "runtime": {
  2333. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2334. }
  2335. },
  2336. "System.Security.AccessControl/6.0.0": {
  2337. "type": "package",
  2338. "dependencies": {
  2339. "System.Security.Principal.Windows": "5.0.0"
  2340. },
  2341. "compile": {
  2342. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2343. "related": ".xml"
  2344. }
  2345. },
  2346. "runtime": {
  2347. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2348. "related": ".xml"
  2349. }
  2350. },
  2351. "build": {
  2352. "buildTransitive/netcoreapp3.1/_._": {}
  2353. },
  2354. "runtimeTargets": {
  2355. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  2356. "assetType": "runtime",
  2357. "rid": "win"
  2358. }
  2359. }
  2360. },
  2361. "System.Security.Cryptography.Algorithms/4.2.0": {
  2362. "type": "package",
  2363. "dependencies": {
  2364. "Microsoft.NETCore.Platforms": "1.0.1",
  2365. "System.Collections": "4.0.11",
  2366. "System.IO": "4.1.0",
  2367. "System.Resources.ResourceManager": "4.0.1",
  2368. "System.Runtime": "4.1.0",
  2369. "System.Runtime.Extensions": "4.1.0",
  2370. "System.Runtime.Handles": "4.0.1",
  2371. "System.Runtime.InteropServices": "4.1.0",
  2372. "System.Runtime.Numerics": "4.0.1",
  2373. "System.Security.Cryptography.Encoding": "4.0.0",
  2374. "System.Security.Cryptography.Primitives": "4.0.0",
  2375. "System.Text.Encoding": "4.0.11",
  2376. "runtime.native.System.Security.Cryptography": "4.0.0"
  2377. },
  2378. "compile": {
  2379. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2380. },
  2381. "runtimeTargets": {
  2382. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2383. "assetType": "runtime",
  2384. "rid": "unix"
  2385. },
  2386. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2387. "assetType": "runtime",
  2388. "rid": "win"
  2389. }
  2390. }
  2391. },
  2392. "System.Security.Cryptography.Cng/4.5.0": {
  2393. "type": "package",
  2394. "compile": {
  2395. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtime": {
  2400. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2401. },
  2402. "runtimeTargets": {
  2403. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2404. "assetType": "runtime",
  2405. "rid": "win"
  2406. }
  2407. }
  2408. },
  2409. "System.Security.Cryptography.Csp/4.0.0": {
  2410. "type": "package",
  2411. "dependencies": {
  2412. "Microsoft.NETCore.Platforms": "1.0.1",
  2413. "System.IO": "4.1.0",
  2414. "System.Reflection": "4.1.0",
  2415. "System.Resources.ResourceManager": "4.0.1",
  2416. "System.Runtime": "4.1.0",
  2417. "System.Runtime.Extensions": "4.1.0",
  2418. "System.Runtime.Handles": "4.0.1",
  2419. "System.Runtime.InteropServices": "4.1.0",
  2420. "System.Security.Cryptography.Algorithms": "4.2.0",
  2421. "System.Security.Cryptography.Encoding": "4.0.0",
  2422. "System.Security.Cryptography.Primitives": "4.0.0",
  2423. "System.Text.Encoding": "4.0.11",
  2424. "System.Threading": "4.0.11"
  2425. },
  2426. "compile": {
  2427. "ref/netstandard1.3/_._": {}
  2428. },
  2429. "runtimeTargets": {
  2430. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2431. "assetType": "runtime",
  2432. "rid": "unix"
  2433. },
  2434. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2435. "assetType": "runtime",
  2436. "rid": "win"
  2437. }
  2438. }
  2439. },
  2440. "System.Security.Cryptography.Encoding/4.0.0": {
  2441. "type": "package",
  2442. "dependencies": {
  2443. "Microsoft.NETCore.Platforms": "1.0.1",
  2444. "System.Collections": "4.0.11",
  2445. "System.Collections.Concurrent": "4.0.12",
  2446. "System.Linq": "4.1.0",
  2447. "System.Resources.ResourceManager": "4.0.1",
  2448. "System.Runtime": "4.1.0",
  2449. "System.Runtime.Extensions": "4.1.0",
  2450. "System.Runtime.Handles": "4.0.1",
  2451. "System.Runtime.InteropServices": "4.1.0",
  2452. "System.Security.Cryptography.Primitives": "4.0.0",
  2453. "System.Text.Encoding": "4.0.11",
  2454. "runtime.native.System.Security.Cryptography": "4.0.0"
  2455. },
  2456. "compile": {
  2457. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2458. "related": ".xml"
  2459. }
  2460. },
  2461. "runtimeTargets": {
  2462. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2463. "assetType": "runtime",
  2464. "rid": "unix"
  2465. },
  2466. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2467. "assetType": "runtime",
  2468. "rid": "win"
  2469. }
  2470. }
  2471. },
  2472. "System.Security.Cryptography.OpenSsl/4.0.0": {
  2473. "type": "package",
  2474. "dependencies": {
  2475. "System.Collections": "4.0.11",
  2476. "System.IO": "4.1.0",
  2477. "System.Resources.ResourceManager": "4.0.1",
  2478. "System.Runtime": "4.1.0",
  2479. "System.Runtime.Extensions": "4.1.0",
  2480. "System.Runtime.Handles": "4.0.1",
  2481. "System.Runtime.InteropServices": "4.1.0",
  2482. "System.Runtime.Numerics": "4.0.1",
  2483. "System.Security.Cryptography.Algorithms": "4.2.0",
  2484. "System.Security.Cryptography.Encoding": "4.0.0",
  2485. "System.Security.Cryptography.Primitives": "4.0.0",
  2486. "System.Text.Encoding": "4.0.11",
  2487. "runtime.native.System.Security.Cryptography": "4.0.0"
  2488. },
  2489. "compile": {
  2490. "ref/netstandard1.6/_._": {}
  2491. },
  2492. "runtime": {
  2493. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2494. },
  2495. "runtimeTargets": {
  2496. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2497. "assetType": "runtime",
  2498. "rid": "unix"
  2499. }
  2500. }
  2501. },
  2502. "System.Security.Cryptography.Primitives/4.0.0": {
  2503. "type": "package",
  2504. "dependencies": {
  2505. "System.Diagnostics.Debug": "4.0.11",
  2506. "System.Globalization": "4.0.11",
  2507. "System.IO": "4.1.0",
  2508. "System.Resources.ResourceManager": "4.0.1",
  2509. "System.Runtime": "4.1.0",
  2510. "System.Threading": "4.0.11",
  2511. "System.Threading.Tasks": "4.0.11"
  2512. },
  2513. "compile": {
  2514. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2515. },
  2516. "runtime": {
  2517. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2518. }
  2519. },
  2520. "System.Security.Cryptography.ProtectedData/6.0.0": {
  2521. "type": "package",
  2522. "dependencies": {
  2523. "System.Memory": "4.5.4"
  2524. },
  2525. "compile": {
  2526. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2527. "related": ".xml"
  2528. }
  2529. },
  2530. "runtime": {
  2531. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2532. "related": ".xml"
  2533. }
  2534. },
  2535. "build": {
  2536. "buildTransitive/netcoreapp3.1/_._": {}
  2537. },
  2538. "runtimeTargets": {
  2539. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2540. "assetType": "runtime",
  2541. "rid": "win"
  2542. }
  2543. }
  2544. },
  2545. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2546. "type": "package",
  2547. "dependencies": {
  2548. "Microsoft.NETCore.Platforms": "1.0.1",
  2549. "System.Collections": "4.0.11",
  2550. "System.Diagnostics.Debug": "4.0.11",
  2551. "System.Globalization": "4.0.11",
  2552. "System.Globalization.Calendars": "4.0.1",
  2553. "System.IO": "4.1.0",
  2554. "System.IO.FileSystem": "4.0.1",
  2555. "System.IO.FileSystem.Primitives": "4.0.1",
  2556. "System.Resources.ResourceManager": "4.0.1",
  2557. "System.Runtime": "4.1.0",
  2558. "System.Runtime.Extensions": "4.1.0",
  2559. "System.Runtime.Handles": "4.0.1",
  2560. "System.Runtime.InteropServices": "4.1.0",
  2561. "System.Runtime.Numerics": "4.0.1",
  2562. "System.Security.Cryptography.Algorithms": "4.2.0",
  2563. "System.Security.Cryptography.Cng": "4.2.0",
  2564. "System.Security.Cryptography.Csp": "4.0.0",
  2565. "System.Security.Cryptography.Encoding": "4.0.0",
  2566. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2567. "System.Security.Cryptography.Primitives": "4.0.0",
  2568. "System.Text.Encoding": "4.0.11",
  2569. "System.Threading": "4.0.11",
  2570. "runtime.native.System": "4.0.0",
  2571. "runtime.native.System.Net.Http": "4.0.1",
  2572. "runtime.native.System.Security.Cryptography": "4.0.0"
  2573. },
  2574. "compile": {
  2575. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2576. "related": ".xml"
  2577. }
  2578. },
  2579. "runtimeTargets": {
  2580. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2581. "assetType": "runtime",
  2582. "rid": "unix"
  2583. },
  2584. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2585. "assetType": "runtime",
  2586. "rid": "win"
  2587. }
  2588. }
  2589. },
  2590. "System.Security.Permissions/6.0.0": {
  2591. "type": "package",
  2592. "dependencies": {
  2593. "System.Security.AccessControl": "6.0.0",
  2594. "System.Windows.Extensions": "6.0.0"
  2595. },
  2596. "compile": {
  2597. "lib/net5.0/System.Security.Permissions.dll": {
  2598. "related": ".xml"
  2599. }
  2600. },
  2601. "runtime": {
  2602. "lib/net5.0/System.Security.Permissions.dll": {
  2603. "related": ".xml"
  2604. }
  2605. },
  2606. "build": {
  2607. "buildTransitive/netcoreapp3.1/_._": {}
  2608. }
  2609. },
  2610. "System.Security.Principal.Windows/5.0.0": {
  2611. "type": "package",
  2612. "compile": {
  2613. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2614. "related": ".xml"
  2615. }
  2616. },
  2617. "runtime": {
  2618. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2619. "related": ".xml"
  2620. }
  2621. },
  2622. "runtimeTargets": {
  2623. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2624. "assetType": "runtime",
  2625. "rid": "unix"
  2626. },
  2627. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2628. "assetType": "runtime",
  2629. "rid": "win"
  2630. }
  2631. }
  2632. },
  2633. "System.ServiceProcess.ServiceController/8.0.0": {
  2634. "type": "package",
  2635. "dependencies": {
  2636. "System.Diagnostics.EventLog": "8.0.0"
  2637. },
  2638. "compile": {
  2639. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2640. "related": ".xml"
  2641. }
  2642. },
  2643. "runtime": {
  2644. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2645. "related": ".xml"
  2646. }
  2647. },
  2648. "build": {
  2649. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets": {}
  2650. }
  2651. },
  2652. "System.Text.Encoding/4.3.0": {
  2653. "type": "package",
  2654. "dependencies": {
  2655. "Microsoft.NETCore.Platforms": "1.1.0",
  2656. "Microsoft.NETCore.Targets": "1.1.0",
  2657. "System.Runtime": "4.3.0"
  2658. },
  2659. "compile": {
  2660. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2661. "related": ".xml"
  2662. }
  2663. }
  2664. },
  2665. "System.Text.Encoding.CodePages/4.5.1": {
  2666. "type": "package",
  2667. "dependencies": {
  2668. "Microsoft.NETCore.Platforms": "2.1.2",
  2669. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2670. },
  2671. "compile": {
  2672. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2673. },
  2674. "runtime": {
  2675. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2676. },
  2677. "runtimeTargets": {
  2678. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2679. "assetType": "runtime",
  2680. "rid": "win"
  2681. }
  2682. }
  2683. },
  2684. "System.Text.Encoding.Extensions/4.0.11": {
  2685. "type": "package",
  2686. "dependencies": {
  2687. "Microsoft.NETCore.Platforms": "1.0.1",
  2688. "Microsoft.NETCore.Targets": "1.0.1",
  2689. "System.Runtime": "4.1.0",
  2690. "System.Text.Encoding": "4.0.11"
  2691. },
  2692. "compile": {
  2693. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2694. "related": ".xml"
  2695. }
  2696. }
  2697. },
  2698. "System.Text.Encodings.Web/8.0.0": {
  2699. "type": "package",
  2700. "dependencies": {
  2701. "System.Buffers": "4.5.1",
  2702. "System.Memory": "4.5.5",
  2703. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2704. },
  2705. "compile": {
  2706. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2707. "related": ".xml"
  2708. }
  2709. },
  2710. "runtime": {
  2711. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2712. "related": ".xml"
  2713. }
  2714. },
  2715. "build": {
  2716. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  2717. }
  2718. },
  2719. "System.Text.Json/8.0.0": {
  2720. "type": "package",
  2721. "dependencies": {
  2722. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  2723. "System.Buffers": "4.5.1",
  2724. "System.Memory": "4.5.5",
  2725. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2726. "System.Text.Encodings.Web": "8.0.0",
  2727. "System.Threading.Tasks.Extensions": "4.5.4"
  2728. },
  2729. "compile": {
  2730. "lib/netstandard2.0/System.Text.Json.dll": {
  2731. "related": ".xml"
  2732. }
  2733. },
  2734. "runtime": {
  2735. "lib/netstandard2.0/System.Text.Json.dll": {
  2736. "related": ".xml"
  2737. }
  2738. },
  2739. "build": {
  2740. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  2741. }
  2742. },
  2743. "System.Text.RegularExpressions/4.1.0": {
  2744. "type": "package",
  2745. "dependencies": {
  2746. "System.Collections": "4.0.11",
  2747. "System.Globalization": "4.0.11",
  2748. "System.Resources.ResourceManager": "4.0.1",
  2749. "System.Runtime": "4.1.0",
  2750. "System.Runtime.Extensions": "4.1.0",
  2751. "System.Threading": "4.0.11"
  2752. },
  2753. "compile": {
  2754. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
  2755. "related": ".xml"
  2756. }
  2757. },
  2758. "runtime": {
  2759. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2760. }
  2761. },
  2762. "System.Threading/4.0.11": {
  2763. "type": "package",
  2764. "dependencies": {
  2765. "System.Runtime": "4.1.0",
  2766. "System.Threading.Tasks": "4.0.11"
  2767. },
  2768. "compile": {
  2769. "ref/netstandard1.3/System.Threading.dll": {
  2770. "related": ".xml"
  2771. }
  2772. },
  2773. "runtime": {
  2774. "lib/netstandard1.3/System.Threading.dll": {}
  2775. }
  2776. },
  2777. "System.Threading.Tasks/4.3.0": {
  2778. "type": "package",
  2779. "dependencies": {
  2780. "Microsoft.NETCore.Platforms": "1.1.0",
  2781. "Microsoft.NETCore.Targets": "1.1.0",
  2782. "System.Runtime": "4.3.0"
  2783. },
  2784. "compile": {
  2785. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2786. "related": ".xml"
  2787. }
  2788. }
  2789. },
  2790. "System.Threading.Tasks.Extensions/4.5.4": {
  2791. "type": "package",
  2792. "compile": {
  2793. "ref/netcoreapp2.1/_._": {}
  2794. },
  2795. "runtime": {
  2796. "lib/netcoreapp2.1/_._": {}
  2797. }
  2798. },
  2799. "System.Threading.Thread/4.0.0": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Runtime": "4.1.0"
  2803. },
  2804. "compile": {
  2805. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2806. "related": ".xml"
  2807. }
  2808. },
  2809. "runtime": {
  2810. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2811. }
  2812. },
  2813. "System.Threading.ThreadPool/4.0.10": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "System.Runtime": "4.1.0",
  2817. "System.Runtime.Handles": "4.0.1"
  2818. },
  2819. "compile": {
  2820. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2821. "related": ".xml"
  2822. }
  2823. },
  2824. "runtime": {
  2825. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2826. }
  2827. },
  2828. "System.Threading.Timer/4.0.1": {
  2829. "type": "package",
  2830. "dependencies": {
  2831. "Microsoft.NETCore.Platforms": "1.0.1",
  2832. "Microsoft.NETCore.Targets": "1.0.1",
  2833. "System.Runtime": "4.1.0"
  2834. },
  2835. "compile": {
  2836. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2837. "related": ".xml"
  2838. }
  2839. }
  2840. },
  2841. "System.Windows.Extensions/6.0.0": {
  2842. "type": "package",
  2843. "dependencies": {
  2844. "System.Drawing.Common": "6.0.0"
  2845. },
  2846. "compile": {
  2847. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2848. "related": ".xml"
  2849. }
  2850. },
  2851. "runtime": {
  2852. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2853. "related": ".xml"
  2854. }
  2855. },
  2856. "runtimeTargets": {
  2857. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2858. "assetType": "runtime",
  2859. "rid": "win"
  2860. }
  2861. }
  2862. },
  2863. "System.Xml.ReaderWriter/4.0.11": {
  2864. "type": "package",
  2865. "dependencies": {
  2866. "System.Collections": "4.0.11",
  2867. "System.Diagnostics.Debug": "4.0.11",
  2868. "System.Globalization": "4.0.11",
  2869. "System.IO": "4.1.0",
  2870. "System.IO.FileSystem": "4.0.1",
  2871. "System.IO.FileSystem.Primitives": "4.0.1",
  2872. "System.Resources.ResourceManager": "4.0.1",
  2873. "System.Runtime": "4.1.0",
  2874. "System.Runtime.Extensions": "4.1.0",
  2875. "System.Runtime.InteropServices": "4.1.0",
  2876. "System.Text.Encoding": "4.0.11",
  2877. "System.Text.Encoding.Extensions": "4.0.11",
  2878. "System.Text.RegularExpressions": "4.1.0",
  2879. "System.Threading.Tasks": "4.0.11",
  2880. "System.Threading.Tasks.Extensions": "4.0.0"
  2881. },
  2882. "compile": {
  2883. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2884. "related": ".xml"
  2885. }
  2886. },
  2887. "runtime": {
  2888. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2889. }
  2890. },
  2891. "System.Xml.XDocument/4.0.11": {
  2892. "type": "package",
  2893. "dependencies": {
  2894. "System.Collections": "4.0.11",
  2895. "System.Diagnostics.Debug": "4.0.11",
  2896. "System.Diagnostics.Tools": "4.0.1",
  2897. "System.Globalization": "4.0.11",
  2898. "System.IO": "4.1.0",
  2899. "System.Reflection": "4.1.0",
  2900. "System.Resources.ResourceManager": "4.0.1",
  2901. "System.Runtime": "4.1.0",
  2902. "System.Runtime.Extensions": "4.1.0",
  2903. "System.Text.Encoding": "4.0.11",
  2904. "System.Threading": "4.0.11",
  2905. "System.Xml.ReaderWriter": "4.0.11"
  2906. },
  2907. "compile": {
  2908. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2909. "related": ".xml"
  2910. }
  2911. },
  2912. "runtime": {
  2913. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2914. }
  2915. },
  2916. "System.Xml.XmlDocument/4.0.1": {
  2917. "type": "package",
  2918. "dependencies": {
  2919. "System.Collections": "4.0.11",
  2920. "System.Diagnostics.Debug": "4.0.11",
  2921. "System.Globalization": "4.0.11",
  2922. "System.IO": "4.1.0",
  2923. "System.Resources.ResourceManager": "4.0.1",
  2924. "System.Runtime": "4.1.0",
  2925. "System.Runtime.Extensions": "4.1.0",
  2926. "System.Text.Encoding": "4.0.11",
  2927. "System.Threading": "4.0.11",
  2928. "System.Xml.ReaderWriter": "4.0.11"
  2929. },
  2930. "compile": {
  2931. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2932. "related": ".xml"
  2933. }
  2934. },
  2935. "runtime": {
  2936. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2937. }
  2938. },
  2939. "System.Xml.XPath/4.0.1": {
  2940. "type": "package",
  2941. "dependencies": {
  2942. "System.Collections": "4.0.11",
  2943. "System.Diagnostics.Debug": "4.0.11",
  2944. "System.Globalization": "4.0.11",
  2945. "System.IO": "4.1.0",
  2946. "System.Resources.ResourceManager": "4.0.1",
  2947. "System.Runtime": "4.1.0",
  2948. "System.Runtime.Extensions": "4.1.0",
  2949. "System.Threading": "4.0.11",
  2950. "System.Xml.ReaderWriter": "4.0.11"
  2951. },
  2952. "compile": {
  2953. "ref/netstandard1.3/System.Xml.XPath.dll": {
  2954. "related": ".xml"
  2955. }
  2956. },
  2957. "runtime": {
  2958. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2959. }
  2960. },
  2961. "System.Xml.XPath.XmlDocument/4.0.1": {
  2962. "type": "package",
  2963. "dependencies": {
  2964. "System.Collections": "4.0.11",
  2965. "System.Globalization": "4.0.11",
  2966. "System.IO": "4.1.0",
  2967. "System.Resources.ResourceManager": "4.0.1",
  2968. "System.Runtime": "4.1.0",
  2969. "System.Runtime.Extensions": "4.1.0",
  2970. "System.Threading": "4.0.11",
  2971. "System.Xml.ReaderWriter": "4.0.11",
  2972. "System.Xml.XPath": "4.0.1",
  2973. "System.Xml.XmlDocument": "4.0.1"
  2974. },
  2975. "compile": {
  2976. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  2977. "related": ".xml"
  2978. }
  2979. },
  2980. "runtime": {
  2981. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2982. }
  2983. }
  2984. }
  2985. },
  2986. "libraries": {
  2987. "AutoMapper/12.0.1": {
  2988. "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==",
  2989. "type": "package",
  2990. "path": "automapper/12.0.1",
  2991. "files": [
  2992. ".nupkg.metadata",
  2993. ".signature.p7s",
  2994. "README.md",
  2995. "automapper.12.0.1.nupkg.sha512",
  2996. "automapper.nuspec",
  2997. "icon.png",
  2998. "lib/netstandard2.1/AutoMapper.dll",
  2999. "lib/netstandard2.1/AutoMapper.xml"
  3000. ]
  3001. },
  3002. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  3003. "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
  3004. "type": "package",
  3005. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
  3006. "files": [
  3007. ".nupkg.metadata",
  3008. ".signature.p7s",
  3009. "README.md",
  3010. "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
  3011. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  3012. "icon.png",
  3013. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  3014. ]
  3015. },
  3016. "BouncyCastle.NetCore/1.8.3": {
  3017. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  3018. "type": "package",
  3019. "path": "bouncycastle.netcore/1.8.3",
  3020. "files": [
  3021. ".nupkg.metadata",
  3022. ".signature.p7s",
  3023. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  3024. "bouncycastle.netcore.nuspec",
  3025. "lib/Mono/BouncyCastle.Crypto.dll",
  3026. "lib/Mono/BouncyCastle.Crypto.xml",
  3027. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3028. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3029. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3030. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3031. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3032. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3033. "lib/net20/BouncyCastle.Crypto.dll",
  3034. "lib/net20/BouncyCastle.Crypto.xml",
  3035. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  3036. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  3037. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3038. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3039. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3040. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3041. ]
  3042. },
  3043. "Flurl/4.0.0": {
  3044. "sha512": "rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==",
  3045. "type": "package",
  3046. "path": "flurl/4.0.0",
  3047. "files": [
  3048. ".nupkg.metadata",
  3049. ".signature.p7s",
  3050. "flurl.4.0.0.nupkg.sha512",
  3051. "flurl.nuspec",
  3052. "icon.png",
  3053. "lib/net461/Flurl.dll",
  3054. "lib/net461/Flurl.xml",
  3055. "lib/net472/Flurl.dll",
  3056. "lib/net472/Flurl.xml",
  3057. "lib/netstandard2.0/Flurl.dll",
  3058. "lib/netstandard2.0/Flurl.xml"
  3059. ]
  3060. },
  3061. "Flurl.Http/4.0.2": {
  3062. "sha512": "9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==",
  3063. "type": "package",
  3064. "path": "flurl.http/4.0.2",
  3065. "files": [
  3066. ".nupkg.metadata",
  3067. ".signature.p7s",
  3068. "README.md",
  3069. "flurl.http.4.0.2.nupkg.sha512",
  3070. "flurl.http.nuspec",
  3071. "icon.png",
  3072. "lib/net461/Flurl.Http.dll",
  3073. "lib/net461/Flurl.Http.xml",
  3074. "lib/net6.0/Flurl.Http.dll",
  3075. "lib/net6.0/Flurl.Http.xml",
  3076. "lib/netstandard2.0/Flurl.Http.dll",
  3077. "lib/netstandard2.0/Flurl.Http.xml"
  3078. ]
  3079. },
  3080. "Google.Protobuf/3.11.4": {
  3081. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3082. "type": "package",
  3083. "path": "google.protobuf/3.11.4",
  3084. "files": [
  3085. ".nupkg.metadata",
  3086. ".signature.p7s",
  3087. "google.protobuf.3.11.4.nupkg.sha512",
  3088. "google.protobuf.nuspec",
  3089. "lib/net45/Google.Protobuf.dll",
  3090. "lib/net45/Google.Protobuf.pdb",
  3091. "lib/net45/Google.Protobuf.xml",
  3092. "lib/netstandard1.0/Google.Protobuf.dll",
  3093. "lib/netstandard1.0/Google.Protobuf.pdb",
  3094. "lib/netstandard1.0/Google.Protobuf.xml",
  3095. "lib/netstandard2.0/Google.Protobuf.dll",
  3096. "lib/netstandard2.0/Google.Protobuf.pdb",
  3097. "lib/netstandard2.0/Google.Protobuf.xml"
  3098. ]
  3099. },
  3100. "K4os.Compression.LZ4/1.1.11": {
  3101. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3102. "type": "package",
  3103. "path": "k4os.compression.lz4/1.1.11",
  3104. "files": [
  3105. ".nupkg.metadata",
  3106. ".signature.p7s",
  3107. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3108. "k4os.compression.lz4.nuspec",
  3109. "lib/net45/K4os.Compression.LZ4.dll",
  3110. "lib/net45/K4os.Compression.LZ4.xml",
  3111. "lib/net46/K4os.Compression.LZ4.dll",
  3112. "lib/net46/K4os.Compression.LZ4.xml",
  3113. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3114. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3115. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3116. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3117. ]
  3118. },
  3119. "K4os.Compression.LZ4.Streams/1.1.11": {
  3120. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3121. "type": "package",
  3122. "path": "k4os.compression.lz4.streams/1.1.11",
  3123. "files": [
  3124. ".nupkg.metadata",
  3125. ".signature.p7s",
  3126. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3127. "k4os.compression.lz4.streams.nuspec",
  3128. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3129. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3130. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3131. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3132. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3133. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3134. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3135. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3136. ]
  3137. },
  3138. "K4os.Hash.xxHash/1.0.6": {
  3139. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3140. "type": "package",
  3141. "path": "k4os.hash.xxhash/1.0.6",
  3142. "files": [
  3143. ".nupkg.metadata",
  3144. ".signature.p7s",
  3145. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3146. "k4os.hash.xxhash.nuspec",
  3147. "lib/net45/K4os.Hash.xxHash.dll",
  3148. "lib/net45/K4os.Hash.xxHash.xml",
  3149. "lib/net46/K4os.Hash.xxHash.dll",
  3150. "lib/net46/K4os.Hash.xxHash.xml",
  3151. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3152. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3153. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3154. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3155. ]
  3156. },
  3157. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  3158. "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
  3159. "type": "package",
  3160. "path": "microsoft.bcl.asyncinterfaces/8.0.0",
  3161. "files": [
  3162. ".nupkg.metadata",
  3163. ".signature.p7s",
  3164. "Icon.png",
  3165. "LICENSE.TXT",
  3166. "PACKAGE.md",
  3167. "THIRD-PARTY-NOTICES.TXT",
  3168. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  3169. "buildTransitive/net462/_._",
  3170. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  3171. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  3172. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3173. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3174. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3175. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3176. "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
  3177. "microsoft.bcl.asyncinterfaces.nuspec",
  3178. "useSharedDesignerContext.txt"
  3179. ]
  3180. },
  3181. "Microsoft.Bcl.HashCode/1.1.0": {
  3182. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  3183. "type": "package",
  3184. "path": "microsoft.bcl.hashcode/1.1.0",
  3185. "files": [
  3186. ".nupkg.metadata",
  3187. ".signature.p7s",
  3188. "LICENSE.TXT",
  3189. "THIRD-PARTY-NOTICES.TXT",
  3190. "lib/net461/Microsoft.Bcl.HashCode.dll",
  3191. "lib/net461/Microsoft.Bcl.HashCode.xml",
  3192. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3193. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  3194. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3195. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  3196. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3197. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  3198. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  3199. "microsoft.bcl.hashcode.nuspec",
  3200. "ref/net461/Microsoft.Bcl.HashCode.dll",
  3201. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3202. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3203. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3204. "useSharedDesignerContext.txt",
  3205. "version.txt"
  3206. ]
  3207. },
  3208. "Microsoft.CSharp/4.7.0": {
  3209. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3210. "type": "package",
  3211. "path": "microsoft.csharp/4.7.0",
  3212. "files": [
  3213. ".nupkg.metadata",
  3214. ".signature.p7s",
  3215. "LICENSE.TXT",
  3216. "THIRD-PARTY-NOTICES.TXT",
  3217. "lib/MonoAndroid10/_._",
  3218. "lib/MonoTouch10/_._",
  3219. "lib/net45/_._",
  3220. "lib/netcore50/Microsoft.CSharp.dll",
  3221. "lib/netcoreapp2.0/_._",
  3222. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3223. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3224. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3225. "lib/portable-net45+win8+wp8+wpa81/_._",
  3226. "lib/uap10.0.16299/_._",
  3227. "lib/win8/_._",
  3228. "lib/wp80/_._",
  3229. "lib/wpa81/_._",
  3230. "lib/xamarinios10/_._",
  3231. "lib/xamarinmac20/_._",
  3232. "lib/xamarintvos10/_._",
  3233. "lib/xamarinwatchos10/_._",
  3234. "microsoft.csharp.4.7.0.nupkg.sha512",
  3235. "microsoft.csharp.nuspec",
  3236. "ref/MonoAndroid10/_._",
  3237. "ref/MonoTouch10/_._",
  3238. "ref/net45/_._",
  3239. "ref/netcore50/Microsoft.CSharp.dll",
  3240. "ref/netcore50/Microsoft.CSharp.xml",
  3241. "ref/netcore50/de/Microsoft.CSharp.xml",
  3242. "ref/netcore50/es/Microsoft.CSharp.xml",
  3243. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3244. "ref/netcore50/it/Microsoft.CSharp.xml",
  3245. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3246. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3247. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3248. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3249. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3250. "ref/netcoreapp2.0/_._",
  3251. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3252. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3253. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3254. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3255. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3256. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3257. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3258. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3259. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3260. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3261. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3262. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3263. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3264. "ref/portable-net45+win8+wp8+wpa81/_._",
  3265. "ref/uap10.0.16299/_._",
  3266. "ref/win8/_._",
  3267. "ref/wp80/_._",
  3268. "ref/wpa81/_._",
  3269. "ref/xamarinios10/_._",
  3270. "ref/xamarinmac20/_._",
  3271. "ref/xamarintvos10/_._",
  3272. "ref/xamarinwatchos10/_._",
  3273. "useSharedDesignerContext.txt",
  3274. "version.txt"
  3275. ]
  3276. },
  3277. "Microsoft.EntityFrameworkCore/3.1.1": {
  3278. "sha512": "RtDC52x7p57sG5ajCisHSRXjqQvtJgR0wUufXWNPDZCjvoqgQcbftWdh2+ogDJ5V58Qf9uhfJQSNXr0qQ597xQ==",
  3279. "type": "package",
  3280. "path": "microsoft.entityframeworkcore/3.1.1",
  3281. "files": [
  3282. ".nupkg.metadata",
  3283. ".signature.p7s",
  3284. "Icon.png",
  3285. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3286. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3287. "microsoft.entityframeworkcore.3.1.1.nupkg.sha512",
  3288. "microsoft.entityframeworkcore.nuspec"
  3289. ]
  3290. },
  3291. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  3292. "sha512": "X7aqgBUGmEOhDa/PKiyTGW8NDvuMk/nbxclGsZcWbrNgwanprNq4ZZOSEL4yCNFhUY4pYFnWSwnsZcKZlEttzQ==",
  3293. "type": "package",
  3294. "path": "microsoft.entityframeworkcore.abstractions/3.1.1",
  3295. "files": [
  3296. ".nupkg.metadata",
  3297. ".signature.p7s",
  3298. "Icon.png",
  3299. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3300. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3301. "microsoft.entityframeworkcore.abstractions.3.1.1.nupkg.sha512",
  3302. "microsoft.entityframeworkcore.abstractions.nuspec"
  3303. ]
  3304. },
  3305. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  3306. "sha512": "PrB8QZih5QMRhVjXZnwpFtgm14KU2M0ewilUIQ6W/qS7ugFBSlr1vaug2XnSdd2ODyZioc7Yypp4WNfaBIQg5Q==",
  3307. "type": "package",
  3308. "path": "microsoft.entityframeworkcore.analyzers/3.1.1",
  3309. "files": [
  3310. ".nupkg.metadata",
  3311. ".signature.p7s",
  3312. "Icon.png",
  3313. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3314. "lib/netstandard2.0/_._",
  3315. "microsoft.entityframeworkcore.analyzers.3.1.1.nupkg.sha512",
  3316. "microsoft.entityframeworkcore.analyzers.nuspec"
  3317. ]
  3318. },
  3319. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  3320. "sha512": "iBt59oeV97kqI6ZkdSpnUV1cC+hCGf5xqot331waiF5d5sxksLJZghkUZOLpe4yuPg3mnngXD6bPqMsLa4II5g==",
  3321. "type": "package",
  3322. "path": "microsoft.entityframeworkcore.relational/3.1.1",
  3323. "files": [
  3324. ".nupkg.metadata",
  3325. ".signature.p7s",
  3326. "Icon.png",
  3327. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3328. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3329. "microsoft.entityframeworkcore.relational.3.1.1.nupkg.sha512",
  3330. "microsoft.entityframeworkcore.relational.nuspec"
  3331. ]
  3332. },
  3333. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  3334. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  3335. "type": "package",
  3336. "path": "microsoft.extensions.apidescription.server/6.0.5",
  3337. "hasTools": true,
  3338. "files": [
  3339. ".nupkg.metadata",
  3340. ".signature.p7s",
  3341. "Icon.png",
  3342. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3343. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3344. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3345. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3346. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  3347. "microsoft.extensions.apidescription.server.nuspec",
  3348. "tools/Newtonsoft.Json.dll",
  3349. "tools/dotnet-getdocument.deps.json",
  3350. "tools/dotnet-getdocument.dll",
  3351. "tools/dotnet-getdocument.runtimeconfig.json",
  3352. "tools/net461-x86/GetDocument.Insider.exe",
  3353. "tools/net461-x86/GetDocument.Insider.exe.config",
  3354. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  3355. "tools/net461-x86/System.AppContext.dll",
  3356. "tools/net461-x86/System.Buffers.dll",
  3357. "tools/net461-x86/System.Collections.Concurrent.dll",
  3358. "tools/net461-x86/System.Collections.NonGeneric.dll",
  3359. "tools/net461-x86/System.Collections.Specialized.dll",
  3360. "tools/net461-x86/System.Collections.dll",
  3361. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  3362. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  3363. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  3364. "tools/net461-x86/System.ComponentModel.dll",
  3365. "tools/net461-x86/System.Console.dll",
  3366. "tools/net461-x86/System.Data.Common.dll",
  3367. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  3368. "tools/net461-x86/System.Diagnostics.Debug.dll",
  3369. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  3370. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  3371. "tools/net461-x86/System.Diagnostics.Process.dll",
  3372. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  3373. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  3374. "tools/net461-x86/System.Diagnostics.Tools.dll",
  3375. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  3376. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  3377. "tools/net461-x86/System.Drawing.Primitives.dll",
  3378. "tools/net461-x86/System.Dynamic.Runtime.dll",
  3379. "tools/net461-x86/System.Globalization.Calendars.dll",
  3380. "tools/net461-x86/System.Globalization.Extensions.dll",
  3381. "tools/net461-x86/System.Globalization.dll",
  3382. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  3383. "tools/net461-x86/System.IO.Compression.dll",
  3384. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  3385. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  3386. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  3387. "tools/net461-x86/System.IO.FileSystem.dll",
  3388. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  3389. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  3390. "tools/net461-x86/System.IO.Pipes.dll",
  3391. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  3392. "tools/net461-x86/System.IO.dll",
  3393. "tools/net461-x86/System.Linq.Expressions.dll",
  3394. "tools/net461-x86/System.Linq.Parallel.dll",
  3395. "tools/net461-x86/System.Linq.Queryable.dll",
  3396. "tools/net461-x86/System.Linq.dll",
  3397. "tools/net461-x86/System.Memory.dll",
  3398. "tools/net461-x86/System.Net.Http.dll",
  3399. "tools/net461-x86/System.Net.NameResolution.dll",
  3400. "tools/net461-x86/System.Net.NetworkInformation.dll",
  3401. "tools/net461-x86/System.Net.Ping.dll",
  3402. "tools/net461-x86/System.Net.Primitives.dll",
  3403. "tools/net461-x86/System.Net.Requests.dll",
  3404. "tools/net461-x86/System.Net.Security.dll",
  3405. "tools/net461-x86/System.Net.Sockets.dll",
  3406. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  3407. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  3408. "tools/net461-x86/System.Net.WebSockets.dll",
  3409. "tools/net461-x86/System.Numerics.Vectors.dll",
  3410. "tools/net461-x86/System.ObjectModel.dll",
  3411. "tools/net461-x86/System.Reflection.Extensions.dll",
  3412. "tools/net461-x86/System.Reflection.Primitives.dll",
  3413. "tools/net461-x86/System.Reflection.dll",
  3414. "tools/net461-x86/System.Resources.Reader.dll",
  3415. "tools/net461-x86/System.Resources.ResourceManager.dll",
  3416. "tools/net461-x86/System.Resources.Writer.dll",
  3417. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  3418. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  3419. "tools/net461-x86/System.Runtime.Extensions.dll",
  3420. "tools/net461-x86/System.Runtime.Handles.dll",
  3421. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  3422. "tools/net461-x86/System.Runtime.InteropServices.dll",
  3423. "tools/net461-x86/System.Runtime.Numerics.dll",
  3424. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  3425. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  3426. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  3427. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  3428. "tools/net461-x86/System.Runtime.dll",
  3429. "tools/net461-x86/System.Security.Claims.dll",
  3430. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  3431. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  3432. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  3433. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  3434. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  3435. "tools/net461-x86/System.Security.Principal.dll",
  3436. "tools/net461-x86/System.Security.SecureString.dll",
  3437. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  3438. "tools/net461-x86/System.Text.Encoding.dll",
  3439. "tools/net461-x86/System.Text.RegularExpressions.dll",
  3440. "tools/net461-x86/System.Threading.Overlapped.dll",
  3441. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  3442. "tools/net461-x86/System.Threading.Tasks.dll",
  3443. "tools/net461-x86/System.Threading.Thread.dll",
  3444. "tools/net461-x86/System.Threading.ThreadPool.dll",
  3445. "tools/net461-x86/System.Threading.Timer.dll",
  3446. "tools/net461-x86/System.Threading.dll",
  3447. "tools/net461-x86/System.ValueTuple.dll",
  3448. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  3449. "tools/net461-x86/System.Xml.XDocument.dll",
  3450. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  3451. "tools/net461-x86/System.Xml.XPath.dll",
  3452. "tools/net461-x86/System.Xml.XmlDocument.dll",
  3453. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  3454. "tools/net461-x86/netstandard.dll",
  3455. "tools/net461/GetDocument.Insider.exe",
  3456. "tools/net461/GetDocument.Insider.exe.config",
  3457. "tools/net461/Microsoft.Win32.Primitives.dll",
  3458. "tools/net461/System.AppContext.dll",
  3459. "tools/net461/System.Buffers.dll",
  3460. "tools/net461/System.Collections.Concurrent.dll",
  3461. "tools/net461/System.Collections.NonGeneric.dll",
  3462. "tools/net461/System.Collections.Specialized.dll",
  3463. "tools/net461/System.Collections.dll",
  3464. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  3465. "tools/net461/System.ComponentModel.Primitives.dll",
  3466. "tools/net461/System.ComponentModel.TypeConverter.dll",
  3467. "tools/net461/System.ComponentModel.dll",
  3468. "tools/net461/System.Console.dll",
  3469. "tools/net461/System.Data.Common.dll",
  3470. "tools/net461/System.Diagnostics.Contracts.dll",
  3471. "tools/net461/System.Diagnostics.Debug.dll",
  3472. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  3473. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  3474. "tools/net461/System.Diagnostics.Process.dll",
  3475. "tools/net461/System.Diagnostics.StackTrace.dll",
  3476. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  3477. "tools/net461/System.Diagnostics.Tools.dll",
  3478. "tools/net461/System.Diagnostics.TraceSource.dll",
  3479. "tools/net461/System.Diagnostics.Tracing.dll",
  3480. "tools/net461/System.Drawing.Primitives.dll",
  3481. "tools/net461/System.Dynamic.Runtime.dll",
  3482. "tools/net461/System.Globalization.Calendars.dll",
  3483. "tools/net461/System.Globalization.Extensions.dll",
  3484. "tools/net461/System.Globalization.dll",
  3485. "tools/net461/System.IO.Compression.ZipFile.dll",
  3486. "tools/net461/System.IO.Compression.dll",
  3487. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  3488. "tools/net461/System.IO.FileSystem.Primitives.dll",
  3489. "tools/net461/System.IO.FileSystem.Watcher.dll",
  3490. "tools/net461/System.IO.FileSystem.dll",
  3491. "tools/net461/System.IO.IsolatedStorage.dll",
  3492. "tools/net461/System.IO.MemoryMappedFiles.dll",
  3493. "tools/net461/System.IO.Pipes.dll",
  3494. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  3495. "tools/net461/System.IO.dll",
  3496. "tools/net461/System.Linq.Expressions.dll",
  3497. "tools/net461/System.Linq.Parallel.dll",
  3498. "tools/net461/System.Linq.Queryable.dll",
  3499. "tools/net461/System.Linq.dll",
  3500. "tools/net461/System.Memory.dll",
  3501. "tools/net461/System.Net.Http.dll",
  3502. "tools/net461/System.Net.NameResolution.dll",
  3503. "tools/net461/System.Net.NetworkInformation.dll",
  3504. "tools/net461/System.Net.Ping.dll",
  3505. "tools/net461/System.Net.Primitives.dll",
  3506. "tools/net461/System.Net.Requests.dll",
  3507. "tools/net461/System.Net.Security.dll",
  3508. "tools/net461/System.Net.Sockets.dll",
  3509. "tools/net461/System.Net.WebHeaderCollection.dll",
  3510. "tools/net461/System.Net.WebSockets.Client.dll",
  3511. "tools/net461/System.Net.WebSockets.dll",
  3512. "tools/net461/System.Numerics.Vectors.dll",
  3513. "tools/net461/System.ObjectModel.dll",
  3514. "tools/net461/System.Reflection.Extensions.dll",
  3515. "tools/net461/System.Reflection.Primitives.dll",
  3516. "tools/net461/System.Reflection.dll",
  3517. "tools/net461/System.Resources.Reader.dll",
  3518. "tools/net461/System.Resources.ResourceManager.dll",
  3519. "tools/net461/System.Resources.Writer.dll",
  3520. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3521. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  3522. "tools/net461/System.Runtime.Extensions.dll",
  3523. "tools/net461/System.Runtime.Handles.dll",
  3524. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  3525. "tools/net461/System.Runtime.InteropServices.dll",
  3526. "tools/net461/System.Runtime.Numerics.dll",
  3527. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  3528. "tools/net461/System.Runtime.Serialization.Json.dll",
  3529. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  3530. "tools/net461/System.Runtime.Serialization.Xml.dll",
  3531. "tools/net461/System.Runtime.dll",
  3532. "tools/net461/System.Security.Claims.dll",
  3533. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  3534. "tools/net461/System.Security.Cryptography.Csp.dll",
  3535. "tools/net461/System.Security.Cryptography.Encoding.dll",
  3536. "tools/net461/System.Security.Cryptography.Primitives.dll",
  3537. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  3538. "tools/net461/System.Security.Principal.dll",
  3539. "tools/net461/System.Security.SecureString.dll",
  3540. "tools/net461/System.Text.Encoding.Extensions.dll",
  3541. "tools/net461/System.Text.Encoding.dll",
  3542. "tools/net461/System.Text.RegularExpressions.dll",
  3543. "tools/net461/System.Threading.Overlapped.dll",
  3544. "tools/net461/System.Threading.Tasks.Parallel.dll",
  3545. "tools/net461/System.Threading.Tasks.dll",
  3546. "tools/net461/System.Threading.Thread.dll",
  3547. "tools/net461/System.Threading.ThreadPool.dll",
  3548. "tools/net461/System.Threading.Timer.dll",
  3549. "tools/net461/System.Threading.dll",
  3550. "tools/net461/System.ValueTuple.dll",
  3551. "tools/net461/System.Xml.ReaderWriter.dll",
  3552. "tools/net461/System.Xml.XDocument.dll",
  3553. "tools/net461/System.Xml.XPath.XDocument.dll",
  3554. "tools/net461/System.Xml.XPath.dll",
  3555. "tools/net461/System.Xml.XmlDocument.dll",
  3556. "tools/net461/System.Xml.XmlSerializer.dll",
  3557. "tools/net461/netstandard.dll",
  3558. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3559. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3560. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  3561. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  3562. ]
  3563. },
  3564. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  3565. "sha512": "lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==",
  3566. "type": "package",
  3567. "path": "microsoft.extensions.caching.abstractions/3.1.1",
  3568. "files": [
  3569. ".nupkg.metadata",
  3570. ".signature.p7s",
  3571. "Icon.png",
  3572. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3573. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3574. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3575. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3576. "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512",
  3577. "microsoft.extensions.caching.abstractions.nuspec"
  3578. ]
  3579. },
  3580. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  3581. "sha512": "eXKFU6dmz+0EzhlGkVnIJsG8yUIMgSdWRqSN2zLO5IhATJu4JWgUU5vYuRO/HYMCwq8aodK6lVWN7itQXwonkQ==",
  3582. "type": "package",
  3583. "path": "microsoft.extensions.caching.memory/3.1.1",
  3584. "files": [
  3585. ".nupkg.metadata",
  3586. ".signature.p7s",
  3587. "Icon.png",
  3588. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3589. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3590. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3591. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3592. "microsoft.extensions.caching.memory.3.1.1.nupkg.sha512",
  3593. "microsoft.extensions.caching.memory.nuspec"
  3594. ]
  3595. },
  3596. "Microsoft.Extensions.Configuration/8.0.0": {
  3597. "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
  3598. "type": "package",
  3599. "path": "microsoft.extensions.configuration/8.0.0",
  3600. "files": [
  3601. ".nupkg.metadata",
  3602. ".signature.p7s",
  3603. "Icon.png",
  3604. "LICENSE.TXT",
  3605. "PACKAGE.md",
  3606. "THIRD-PARTY-NOTICES.TXT",
  3607. "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
  3608. "buildTransitive/net462/_._",
  3609. "buildTransitive/net6.0/_._",
  3610. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
  3611. "lib/net462/Microsoft.Extensions.Configuration.dll",
  3612. "lib/net462/Microsoft.Extensions.Configuration.xml",
  3613. "lib/net6.0/Microsoft.Extensions.Configuration.dll",
  3614. "lib/net6.0/Microsoft.Extensions.Configuration.xml",
  3615. "lib/net7.0/Microsoft.Extensions.Configuration.dll",
  3616. "lib/net7.0/Microsoft.Extensions.Configuration.xml",
  3617. "lib/net8.0/Microsoft.Extensions.Configuration.dll",
  3618. "lib/net8.0/Microsoft.Extensions.Configuration.xml",
  3619. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3620. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3621. "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
  3622. "microsoft.extensions.configuration.nuspec",
  3623. "useSharedDesignerContext.txt"
  3624. ]
  3625. },
  3626. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  3627. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  3628. "type": "package",
  3629. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  3630. "files": [
  3631. ".nupkg.metadata",
  3632. ".signature.p7s",
  3633. "Icon.png",
  3634. "LICENSE.TXT",
  3635. "PACKAGE.md",
  3636. "THIRD-PARTY-NOTICES.TXT",
  3637. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  3638. "buildTransitive/net462/_._",
  3639. "buildTransitive/net6.0/_._",
  3640. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  3641. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  3642. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  3643. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3644. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3645. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3646. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3647. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3648. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3649. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3650. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3651. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  3652. "microsoft.extensions.configuration.abstractions.nuspec",
  3653. "useSharedDesignerContext.txt"
  3654. ]
  3655. },
  3656. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  3657. "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
  3658. "type": "package",
  3659. "path": "microsoft.extensions.configuration.binder/8.0.0",
  3660. "files": [
  3661. ".nupkg.metadata",
  3662. ".signature.p7s",
  3663. "Icon.png",
  3664. "LICENSE.TXT",
  3665. "PACKAGE.md",
  3666. "THIRD-PARTY-NOTICES.TXT",
  3667. "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
  3668. "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3669. "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3670. "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3671. "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3672. "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3673. "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3674. "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3675. "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3676. "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3677. "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3678. "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3679. "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3680. "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  3681. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
  3682. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  3683. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  3684. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  3685. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  3686. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  3687. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  3688. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
  3689. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
  3690. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3691. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3692. "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
  3693. "microsoft.extensions.configuration.binder.nuspec",
  3694. "useSharedDesignerContext.txt"
  3695. ]
  3696. },
  3697. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  3698. "sha512": "NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==",
  3699. "type": "package",
  3700. "path": "microsoft.extensions.configuration.commandline/8.0.0",
  3701. "files": [
  3702. ".nupkg.metadata",
  3703. ".signature.p7s",
  3704. "Icon.png",
  3705. "LICENSE.TXT",
  3706. "PACKAGE.md",
  3707. "THIRD-PARTY-NOTICES.TXT",
  3708. "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets",
  3709. "buildTransitive/net462/_._",
  3710. "buildTransitive/net6.0/_._",
  3711. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets",
  3712. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll",
  3713. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml",
  3714. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3715. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3716. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3717. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3718. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3719. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3720. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3721. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3722. "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512",
  3723. "microsoft.extensions.configuration.commandline.nuspec",
  3724. "useSharedDesignerContext.txt"
  3725. ]
  3726. },
  3727. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  3728. "sha512": "plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==",
  3729. "type": "package",
  3730. "path": "microsoft.extensions.configuration.environmentvariables/8.0.0",
  3731. "files": [
  3732. ".nupkg.metadata",
  3733. ".signature.p7s",
  3734. "Icon.png",
  3735. "LICENSE.TXT",
  3736. "PACKAGE.md",
  3737. "THIRD-PARTY-NOTICES.TXT",
  3738. "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  3739. "buildTransitive/net462/_._",
  3740. "buildTransitive/net6.0/_._",
  3741. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  3742. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3743. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3744. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3745. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3746. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3747. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3748. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3749. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3750. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3751. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3752. "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512",
  3753. "microsoft.extensions.configuration.environmentvariables.nuspec",
  3754. "useSharedDesignerContext.txt"
  3755. ]
  3756. },
  3757. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  3758. "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
  3759. "type": "package",
  3760. "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
  3761. "files": [
  3762. ".nupkg.metadata",
  3763. ".signature.p7s",
  3764. "Icon.png",
  3765. "LICENSE.TXT",
  3766. "PACKAGE.md",
  3767. "THIRD-PARTY-NOTICES.TXT",
  3768. "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
  3769. "buildTransitive/net462/_._",
  3770. "buildTransitive/net6.0/_._",
  3771. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
  3772. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3773. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3774. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3775. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3776. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3777. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3778. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3779. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3780. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3781. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3782. "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
  3783. "microsoft.extensions.configuration.fileextensions.nuspec",
  3784. "useSharedDesignerContext.txt"
  3785. ]
  3786. },
  3787. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  3788. "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
  3789. "type": "package",
  3790. "path": "microsoft.extensions.configuration.json/8.0.0",
  3791. "files": [
  3792. ".nupkg.metadata",
  3793. ".signature.p7s",
  3794. "Icon.png",
  3795. "LICENSE.TXT",
  3796. "PACKAGE.md",
  3797. "THIRD-PARTY-NOTICES.TXT",
  3798. "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
  3799. "buildTransitive/net462/_._",
  3800. "buildTransitive/net6.0/_._",
  3801. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
  3802. "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
  3803. "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
  3804. "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
  3805. "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
  3806. "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
  3807. "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
  3808. "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
  3809. "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
  3810. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3811. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3812. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3813. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3814. "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
  3815. "microsoft.extensions.configuration.json.nuspec",
  3816. "useSharedDesignerContext.txt"
  3817. ]
  3818. },
  3819. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  3820. "sha512": "ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==",
  3821. "type": "package",
  3822. "path": "microsoft.extensions.configuration.usersecrets/8.0.0",
  3823. "files": [
  3824. ".nupkg.metadata",
  3825. ".signature.p7s",
  3826. "Icon.png",
  3827. "LICENSE.TXT",
  3828. "PACKAGE.md",
  3829. "THIRD-PARTY-NOTICES.TXT",
  3830. "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3831. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props",
  3832. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3833. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  3834. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3835. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3836. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  3837. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3838. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3839. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3840. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3841. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3842. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3843. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3844. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3845. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3846. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3847. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3848. "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512",
  3849. "microsoft.extensions.configuration.usersecrets.nuspec",
  3850. "useSharedDesignerContext.txt"
  3851. ]
  3852. },
  3853. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  3854. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  3855. "type": "package",
  3856. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  3857. "files": [
  3858. ".nupkg.metadata",
  3859. ".signature.p7s",
  3860. "Icon.png",
  3861. "LICENSE.TXT",
  3862. "PACKAGE.md",
  3863. "THIRD-PARTY-NOTICES.TXT",
  3864. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  3865. "buildTransitive/net462/_._",
  3866. "buildTransitive/net6.0/_._",
  3867. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3868. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  3869. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  3870. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3871. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3872. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  3873. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  3874. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  3875. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  3876. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3877. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3878. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3879. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3880. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  3881. "microsoft.extensions.dependencyinjection.nuspec",
  3882. "useSharedDesignerContext.txt"
  3883. ]
  3884. },
  3885. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  3886. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  3887. "type": "package",
  3888. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  3889. "files": [
  3890. ".nupkg.metadata",
  3891. ".signature.p7s",
  3892. "Icon.png",
  3893. "LICENSE.TXT",
  3894. "PACKAGE.md",
  3895. "THIRD-PARTY-NOTICES.TXT",
  3896. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3897. "buildTransitive/net462/_._",
  3898. "buildTransitive/net6.0/_._",
  3899. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3900. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3901. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3902. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3903. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3904. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3905. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3906. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3907. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3908. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3909. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3910. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3911. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3912. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  3913. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3914. "useSharedDesignerContext.txt"
  3915. ]
  3916. },
  3917. "Microsoft.Extensions.DependencyModel/3.1.6": {
  3918. "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==",
  3919. "type": "package",
  3920. "path": "microsoft.extensions.dependencymodel/3.1.6",
  3921. "files": [
  3922. ".nupkg.metadata",
  3923. ".signature.p7s",
  3924. "Icon.png",
  3925. "LICENSE.TXT",
  3926. "THIRD-PARTY-NOTICES.TXT",
  3927. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  3928. "lib/net451/Microsoft.Extensions.DependencyModel.xml",
  3929. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  3930. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml",
  3931. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  3932. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml",
  3933. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3934. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3935. "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512",
  3936. "microsoft.extensions.dependencymodel.nuspec"
  3937. ]
  3938. },
  3939. "Microsoft.Extensions.Diagnostics/8.0.0": {
  3940. "sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==",
  3941. "type": "package",
  3942. "path": "microsoft.extensions.diagnostics/8.0.0",
  3943. "files": [
  3944. ".nupkg.metadata",
  3945. ".signature.p7s",
  3946. "Icon.png",
  3947. "LICENSE.TXT",
  3948. "THIRD-PARTY-NOTICES.TXT",
  3949. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets",
  3950. "buildTransitive/net462/_._",
  3951. "buildTransitive/net6.0/_._",
  3952. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets",
  3953. "lib/net462/Microsoft.Extensions.Diagnostics.dll",
  3954. "lib/net462/Microsoft.Extensions.Diagnostics.xml",
  3955. "lib/net6.0/Microsoft.Extensions.Diagnostics.dll",
  3956. "lib/net6.0/Microsoft.Extensions.Diagnostics.xml",
  3957. "lib/net7.0/Microsoft.Extensions.Diagnostics.dll",
  3958. "lib/net7.0/Microsoft.Extensions.Diagnostics.xml",
  3959. "lib/net8.0/Microsoft.Extensions.Diagnostics.dll",
  3960. "lib/net8.0/Microsoft.Extensions.Diagnostics.xml",
  3961. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll",
  3962. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml",
  3963. "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
  3964. "microsoft.extensions.diagnostics.nuspec",
  3965. "useSharedDesignerContext.txt"
  3966. ]
  3967. },
  3968. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  3969. "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
  3970. "type": "package",
  3971. "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
  3972. "files": [
  3973. ".nupkg.metadata",
  3974. ".signature.p7s",
  3975. "Icon.png",
  3976. "LICENSE.TXT",
  3977. "THIRD-PARTY-NOTICES.TXT",
  3978. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  3979. "buildTransitive/net462/_._",
  3980. "buildTransitive/net6.0/_._",
  3981. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  3982. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3983. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3984. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3985. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3986. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3987. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3988. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3989. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3990. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  3991. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  3992. "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
  3993. "microsoft.extensions.diagnostics.abstractions.nuspec",
  3994. "useSharedDesignerContext.txt"
  3995. ]
  3996. },
  3997. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  3998. "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
  3999. "type": "package",
  4000. "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
  4001. "files": [
  4002. ".nupkg.metadata",
  4003. ".signature.p7s",
  4004. "Icon.png",
  4005. "LICENSE.TXT",
  4006. "PACKAGE.md",
  4007. "THIRD-PARTY-NOTICES.TXT",
  4008. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
  4009. "buildTransitive/net462/_._",
  4010. "buildTransitive/net6.0/_._",
  4011. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  4012. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4013. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4014. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4015. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4016. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4017. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4018. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4019. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4020. "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
  4021. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4022. "useSharedDesignerContext.txt"
  4023. ]
  4024. },
  4025. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  4026. "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
  4027. "type": "package",
  4028. "path": "microsoft.extensions.fileproviders.physical/8.0.0",
  4029. "files": [
  4030. ".nupkg.metadata",
  4031. ".signature.p7s",
  4032. "Icon.png",
  4033. "LICENSE.TXT",
  4034. "PACKAGE.md",
  4035. "THIRD-PARTY-NOTICES.TXT",
  4036. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
  4037. "buildTransitive/net462/_._",
  4038. "buildTransitive/net6.0/_._",
  4039. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  4040. "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
  4041. "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
  4042. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4043. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4044. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4045. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4046. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4047. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4048. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4049. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4050. "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
  4051. "microsoft.extensions.fileproviders.physical.nuspec",
  4052. "useSharedDesignerContext.txt"
  4053. ]
  4054. },
  4055. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  4056. "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
  4057. "type": "package",
  4058. "path": "microsoft.extensions.filesystemglobbing/8.0.0",
  4059. "files": [
  4060. ".nupkg.metadata",
  4061. ".signature.p7s",
  4062. "Icon.png",
  4063. "LICENSE.TXT",
  4064. "PACKAGE.md",
  4065. "THIRD-PARTY-NOTICES.TXT",
  4066. "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
  4067. "buildTransitive/net462/_._",
  4068. "buildTransitive/net6.0/_._",
  4069. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  4070. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
  4071. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
  4072. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4073. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4074. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4075. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4076. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4077. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4078. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4079. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4080. "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
  4081. "microsoft.extensions.filesystemglobbing.nuspec",
  4082. "useSharedDesignerContext.txt"
  4083. ]
  4084. },
  4085. "Microsoft.Extensions.Hosting/8.0.0": {
  4086. "sha512": "ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==",
  4087. "type": "package",
  4088. "path": "microsoft.extensions.hosting/8.0.0",
  4089. "files": [
  4090. ".nupkg.metadata",
  4091. ".signature.p7s",
  4092. "Icon.png",
  4093. "LICENSE.TXT",
  4094. "PACKAGE.md",
  4095. "THIRD-PARTY-NOTICES.TXT",
  4096. "buildTransitive/net461/Microsoft.Extensions.Hosting.targets",
  4097. "buildTransitive/net462/_._",
  4098. "buildTransitive/net6.0/_._",
  4099. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets",
  4100. "lib/net462/Microsoft.Extensions.Hosting.dll",
  4101. "lib/net462/Microsoft.Extensions.Hosting.xml",
  4102. "lib/net6.0/Microsoft.Extensions.Hosting.dll",
  4103. "lib/net6.0/Microsoft.Extensions.Hosting.xml",
  4104. "lib/net7.0/Microsoft.Extensions.Hosting.dll",
  4105. "lib/net7.0/Microsoft.Extensions.Hosting.xml",
  4106. "lib/net8.0/Microsoft.Extensions.Hosting.dll",
  4107. "lib/net8.0/Microsoft.Extensions.Hosting.xml",
  4108. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4109. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4110. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  4111. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  4112. "microsoft.extensions.hosting.8.0.0.nupkg.sha512",
  4113. "microsoft.extensions.hosting.nuspec",
  4114. "useSharedDesignerContext.txt"
  4115. ]
  4116. },
  4117. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  4118. "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
  4119. "type": "package",
  4120. "path": "microsoft.extensions.hosting.abstractions/8.0.0",
  4121. "files": [
  4122. ".nupkg.metadata",
  4123. ".signature.p7s",
  4124. "Icon.png",
  4125. "LICENSE.TXT",
  4126. "PACKAGE.md",
  4127. "THIRD-PARTY-NOTICES.TXT",
  4128. "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
  4129. "buildTransitive/net462/_._",
  4130. "buildTransitive/net6.0/_._",
  4131. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
  4132. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
  4133. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
  4134. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4135. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4136. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4137. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4138. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4139. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4140. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4141. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4142. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4143. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4144. "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
  4145. "microsoft.extensions.hosting.abstractions.nuspec",
  4146. "useSharedDesignerContext.txt"
  4147. ]
  4148. },
  4149. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  4150. "sha512": "8JIvU6R9fejZj/p6QATeDaNEPtIvLuwE5Uh7qyPx7tp+Fc9FqYaAe6ylU2dM839IUpmsU4ZVev956slZyrYEhQ==",
  4151. "type": "package",
  4152. "path": "microsoft.extensions.hosting.windowsservices/8.0.0",
  4153. "files": [
  4154. ".nupkg.metadata",
  4155. ".signature.p7s",
  4156. "Icon.png",
  4157. "LICENSE.TXT",
  4158. "PACKAGE.md",
  4159. "THIRD-PARTY-NOTICES.TXT",
  4160. "buildTransitive/net461/Microsoft.Extensions.Hosting.WindowsServices.targets",
  4161. "buildTransitive/net462/_._",
  4162. "buildTransitive/net6.0/_._",
  4163. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets",
  4164. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.dll",
  4165. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.xml",
  4166. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  4167. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  4168. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  4169. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  4170. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  4171. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  4172. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  4173. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  4174. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll",
  4175. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml",
  4176. "microsoft.extensions.hosting.windowsservices.8.0.0.nupkg.sha512",
  4177. "microsoft.extensions.hosting.windowsservices.nuspec",
  4178. "useSharedDesignerContext.txt"
  4179. ]
  4180. },
  4181. "Microsoft.Extensions.Logging/8.0.0": {
  4182. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  4183. "type": "package",
  4184. "path": "microsoft.extensions.logging/8.0.0",
  4185. "files": [
  4186. ".nupkg.metadata",
  4187. ".signature.p7s",
  4188. "Icon.png",
  4189. "LICENSE.TXT",
  4190. "PACKAGE.md",
  4191. "THIRD-PARTY-NOTICES.TXT",
  4192. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  4193. "buildTransitive/net462/_._",
  4194. "buildTransitive/net6.0/_._",
  4195. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  4196. "lib/net462/Microsoft.Extensions.Logging.dll",
  4197. "lib/net462/Microsoft.Extensions.Logging.xml",
  4198. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  4199. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  4200. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  4201. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  4202. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  4203. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  4204. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4205. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4206. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4207. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4208. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  4209. "microsoft.extensions.logging.nuspec",
  4210. "useSharedDesignerContext.txt"
  4211. ]
  4212. },
  4213. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  4214. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  4215. "type": "package",
  4216. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  4217. "files": [
  4218. ".nupkg.metadata",
  4219. ".signature.p7s",
  4220. "Icon.png",
  4221. "LICENSE.TXT",
  4222. "PACKAGE.md",
  4223. "THIRD-PARTY-NOTICES.TXT",
  4224. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  4225. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4226. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4227. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4228. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4229. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4230. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4231. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4232. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4233. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4234. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4235. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4236. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4237. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4238. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  4239. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4240. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4241. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4242. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4243. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4244. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4245. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4246. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4247. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4248. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4249. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4250. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4251. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4252. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  4253. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4254. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4255. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4256. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4257. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4258. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4259. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4260. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4261. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4262. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4263. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4264. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4265. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4266. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  4267. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  4268. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4269. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4270. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4271. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  4272. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  4273. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4274. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4275. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4276. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4277. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4278. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4279. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4280. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4281. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  4282. "microsoft.extensions.logging.abstractions.nuspec",
  4283. "useSharedDesignerContext.txt"
  4284. ]
  4285. },
  4286. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  4287. "sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==",
  4288. "type": "package",
  4289. "path": "microsoft.extensions.logging.configuration/8.0.0",
  4290. "files": [
  4291. ".nupkg.metadata",
  4292. ".signature.p7s",
  4293. "Icon.png",
  4294. "LICENSE.TXT",
  4295. "THIRD-PARTY-NOTICES.TXT",
  4296. "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets",
  4297. "buildTransitive/net462/_._",
  4298. "buildTransitive/net6.0/_._",
  4299. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets",
  4300. "lib/net462/Microsoft.Extensions.Logging.Configuration.dll",
  4301. "lib/net462/Microsoft.Extensions.Logging.Configuration.xml",
  4302. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll",
  4303. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml",
  4304. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll",
  4305. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml",
  4306. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll",
  4307. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml",
  4308. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4309. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4310. "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512",
  4311. "microsoft.extensions.logging.configuration.nuspec",
  4312. "useSharedDesignerContext.txt"
  4313. ]
  4314. },
  4315. "Microsoft.Extensions.Logging.Console/8.0.0": {
  4316. "sha512": "e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==",
  4317. "type": "package",
  4318. "path": "microsoft.extensions.logging.console/8.0.0",
  4319. "files": [
  4320. ".nupkg.metadata",
  4321. ".signature.p7s",
  4322. "Icon.png",
  4323. "LICENSE.TXT",
  4324. "PACKAGE.md",
  4325. "THIRD-PARTY-NOTICES.TXT",
  4326. "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets",
  4327. "buildTransitive/net462/_._",
  4328. "buildTransitive/net6.0/_._",
  4329. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets",
  4330. "lib/net462/Microsoft.Extensions.Logging.Console.dll",
  4331. "lib/net462/Microsoft.Extensions.Logging.Console.xml",
  4332. "lib/net6.0/Microsoft.Extensions.Logging.Console.dll",
  4333. "lib/net6.0/Microsoft.Extensions.Logging.Console.xml",
  4334. "lib/net7.0/Microsoft.Extensions.Logging.Console.dll",
  4335. "lib/net7.0/Microsoft.Extensions.Logging.Console.xml",
  4336. "lib/net8.0/Microsoft.Extensions.Logging.Console.dll",
  4337. "lib/net8.0/Microsoft.Extensions.Logging.Console.xml",
  4338. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4339. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4340. "microsoft.extensions.logging.console.8.0.0.nupkg.sha512",
  4341. "microsoft.extensions.logging.console.nuspec",
  4342. "useSharedDesignerContext.txt"
  4343. ]
  4344. },
  4345. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  4346. "sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
  4347. "type": "package",
  4348. "path": "microsoft.extensions.logging.debug/8.0.0",
  4349. "files": [
  4350. ".nupkg.metadata",
  4351. ".signature.p7s",
  4352. "Icon.png",
  4353. "LICENSE.TXT",
  4354. "PACKAGE.md",
  4355. "THIRD-PARTY-NOTICES.TXT",
  4356. "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets",
  4357. "buildTransitive/net462/_._",
  4358. "buildTransitive/net6.0/_._",
  4359. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets",
  4360. "lib/net462/Microsoft.Extensions.Logging.Debug.dll",
  4361. "lib/net462/Microsoft.Extensions.Logging.Debug.xml",
  4362. "lib/net6.0/Microsoft.Extensions.Logging.Debug.dll",
  4363. "lib/net6.0/Microsoft.Extensions.Logging.Debug.xml",
  4364. "lib/net7.0/Microsoft.Extensions.Logging.Debug.dll",
  4365. "lib/net7.0/Microsoft.Extensions.Logging.Debug.xml",
  4366. "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll",
  4367. "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml",
  4368. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  4369. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  4370. "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512",
  4371. "microsoft.extensions.logging.debug.nuspec",
  4372. "useSharedDesignerContext.txt"
  4373. ]
  4374. },
  4375. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  4376. "sha512": "3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==",
  4377. "type": "package",
  4378. "path": "microsoft.extensions.logging.eventlog/8.0.0",
  4379. "files": [
  4380. ".nupkg.metadata",
  4381. ".signature.p7s",
  4382. "Icon.png",
  4383. "LICENSE.TXT",
  4384. "THIRD-PARTY-NOTICES.TXT",
  4385. "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets",
  4386. "buildTransitive/net462/_._",
  4387. "buildTransitive/net6.0/_._",
  4388. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets",
  4389. "lib/net462/Microsoft.Extensions.Logging.EventLog.dll",
  4390. "lib/net462/Microsoft.Extensions.Logging.EventLog.xml",
  4391. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.dll",
  4392. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.xml",
  4393. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.dll",
  4394. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.xml",
  4395. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll",
  4396. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml",
  4397. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  4398. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  4399. "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512",
  4400. "microsoft.extensions.logging.eventlog.nuspec",
  4401. "useSharedDesignerContext.txt"
  4402. ]
  4403. },
  4404. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  4405. "sha512": "oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==",
  4406. "type": "package",
  4407. "path": "microsoft.extensions.logging.eventsource/8.0.0",
  4408. "files": [
  4409. ".nupkg.metadata",
  4410. ".signature.p7s",
  4411. "Icon.png",
  4412. "LICENSE.TXT",
  4413. "THIRD-PARTY-NOTICES.TXT",
  4414. "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets",
  4415. "buildTransitive/net462/_._",
  4416. "buildTransitive/net6.0/_._",
  4417. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets",
  4418. "lib/net462/Microsoft.Extensions.Logging.EventSource.dll",
  4419. "lib/net462/Microsoft.Extensions.Logging.EventSource.xml",
  4420. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll",
  4421. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml",
  4422. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.dll",
  4423. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.xml",
  4424. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll",
  4425. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml",
  4426. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  4427. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  4428. "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512",
  4429. "microsoft.extensions.logging.eventsource.nuspec",
  4430. "useSharedDesignerContext.txt"
  4431. ]
  4432. },
  4433. "Microsoft.Extensions.Options/8.0.0": {
  4434. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  4435. "type": "package",
  4436. "path": "microsoft.extensions.options/8.0.0",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "Icon.png",
  4441. "LICENSE.TXT",
  4442. "PACKAGE.md",
  4443. "THIRD-PARTY-NOTICES.TXT",
  4444. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  4445. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4446. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4447. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4448. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4449. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4450. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4451. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4452. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4453. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4454. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4455. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4456. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4457. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4458. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  4459. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  4460. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  4461. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  4462. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  4463. "lib/net462/Microsoft.Extensions.Options.dll",
  4464. "lib/net462/Microsoft.Extensions.Options.xml",
  4465. "lib/net6.0/Microsoft.Extensions.Options.dll",
  4466. "lib/net6.0/Microsoft.Extensions.Options.xml",
  4467. "lib/net7.0/Microsoft.Extensions.Options.dll",
  4468. "lib/net7.0/Microsoft.Extensions.Options.xml",
  4469. "lib/net8.0/Microsoft.Extensions.Options.dll",
  4470. "lib/net8.0/Microsoft.Extensions.Options.xml",
  4471. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4472. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4473. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  4474. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  4475. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  4476. "microsoft.extensions.options.nuspec",
  4477. "useSharedDesignerContext.txt"
  4478. ]
  4479. },
  4480. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  4481. "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
  4482. "type": "package",
  4483. "path": "microsoft.extensions.options.configurationextensions/8.0.0",
  4484. "files": [
  4485. ".nupkg.metadata",
  4486. ".signature.p7s",
  4487. "Icon.png",
  4488. "LICENSE.TXT",
  4489. "PACKAGE.md",
  4490. "THIRD-PARTY-NOTICES.TXT",
  4491. "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  4492. "buildTransitive/net462/_._",
  4493. "buildTransitive/net6.0/_._",
  4494. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  4495. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4496. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4497. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4498. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4499. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4500. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4501. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4502. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4503. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4504. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4505. "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
  4506. "microsoft.extensions.options.configurationextensions.nuspec",
  4507. "useSharedDesignerContext.txt"
  4508. ]
  4509. },
  4510. "Microsoft.Extensions.Primitives/8.0.0": {
  4511. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  4512. "type": "package",
  4513. "path": "microsoft.extensions.primitives/8.0.0",
  4514. "files": [
  4515. ".nupkg.metadata",
  4516. ".signature.p7s",
  4517. "Icon.png",
  4518. "LICENSE.TXT",
  4519. "PACKAGE.md",
  4520. "THIRD-PARTY-NOTICES.TXT",
  4521. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  4522. "buildTransitive/net462/_._",
  4523. "buildTransitive/net6.0/_._",
  4524. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  4525. "lib/net462/Microsoft.Extensions.Primitives.dll",
  4526. "lib/net462/Microsoft.Extensions.Primitives.xml",
  4527. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  4528. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  4529. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  4530. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  4531. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  4532. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  4533. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4534. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4535. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  4536. "microsoft.extensions.primitives.nuspec",
  4537. "useSharedDesignerContext.txt"
  4538. ]
  4539. },
  4540. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  4541. "sha512": "GiQzMSzHQWPhnjpn/xy6SGcjtN8ZJbhB9ZEg3RglJ64QwH+VGp7xEpIN674UgjSDF+jJSrAY4/7/2S6F7Nh0hw==",
  4542. "type": "package",
  4543. "path": "microsoft.identitymodel.abstractions/7.4.1",
  4544. "files": [
  4545. ".nupkg.metadata",
  4546. ".signature.p7s",
  4547. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  4548. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  4549. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  4550. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  4551. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  4552. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  4553. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  4554. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  4555. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  4556. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  4557. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  4558. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  4559. "microsoft.identitymodel.abstractions.7.4.1.nupkg.sha512",
  4560. "microsoft.identitymodel.abstractions.nuspec"
  4561. ]
  4562. },
  4563. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  4564. "sha512": "RnrQO8IniImY6qrC9qYDc7UBcbPF7+Dp14ee9TqKnlB2/oyIKq8Q3tJ/65zgYvfV4p6iMYLpi+W8C/36J58cIg==",
  4565. "type": "package",
  4566. "path": "microsoft.identitymodel.jsonwebtokens/7.4.1",
  4567. "files": [
  4568. ".nupkg.metadata",
  4569. ".signature.p7s",
  4570. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  4571. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  4572. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  4573. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  4574. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  4575. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  4576. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4577. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4578. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4579. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4580. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4581. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4582. "microsoft.identitymodel.jsonwebtokens.7.4.1.nupkg.sha512",
  4583. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4584. ]
  4585. },
  4586. "Microsoft.IdentityModel.Logging/7.4.1": {
  4587. "sha512": "QsNBNAdoTP+JxBqqMw3isVeV86z2b+ka94Pue3eRRz8O15mfHhcSnb10IM+aqavAaxCO+EwNu5F/yyRlQ0usWg==",
  4588. "type": "package",
  4589. "path": "microsoft.identitymodel.logging/7.4.1",
  4590. "files": [
  4591. ".nupkg.metadata",
  4592. ".signature.p7s",
  4593. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  4594. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  4595. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  4596. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  4597. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  4598. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  4599. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  4600. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  4601. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  4602. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  4603. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4604. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4605. "microsoft.identitymodel.logging.7.4.1.nupkg.sha512",
  4606. "microsoft.identitymodel.logging.nuspec"
  4607. ]
  4608. },
  4609. "Microsoft.IdentityModel.Tokens/7.4.1": {
  4610. "sha512": "akl3hQWdj87XkSRahwhrmx9ZfchF97RZoKr9v9fwjrpQz3t0x8lnsjcOfButSS6cvyY/EX0HJuXb5hgkqFjP/g==",
  4611. "type": "package",
  4612. "path": "microsoft.identitymodel.tokens/7.4.1",
  4613. "files": [
  4614. ".nupkg.metadata",
  4615. ".signature.p7s",
  4616. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  4617. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  4618. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  4619. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  4620. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  4621. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  4622. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  4623. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  4624. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  4625. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  4626. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  4627. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  4628. "microsoft.identitymodel.tokens.7.4.1.nupkg.sha512",
  4629. "microsoft.identitymodel.tokens.nuspec"
  4630. ]
  4631. },
  4632. "Microsoft.NETCore.Platforms/2.1.2": {
  4633. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  4634. "type": "package",
  4635. "path": "microsoft.netcore.platforms/2.1.2",
  4636. "files": [
  4637. ".nupkg.metadata",
  4638. ".signature.p7s",
  4639. "LICENSE.TXT",
  4640. "THIRD-PARTY-NOTICES.TXT",
  4641. "lib/netstandard1.0/_._",
  4642. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  4643. "microsoft.netcore.platforms.nuspec",
  4644. "runtime.json",
  4645. "useSharedDesignerContext.txt",
  4646. "version.txt"
  4647. ]
  4648. },
  4649. "Microsoft.NETCore.Targets/3.0.0": {
  4650. "sha512": "WOwoFoWQ+/njjM0pKbnkKTBo8q3NphEOtu1zMXbqRoWsI07JSXWSycgN3cdM+NlhkXxH4TNEFtI5Pjm94N6DLw==",
  4651. "type": "package",
  4652. "path": "microsoft.netcore.targets/3.0.0",
  4653. "files": [
  4654. ".nupkg.metadata",
  4655. ".signature.p7s",
  4656. "LICENSE.TXT",
  4657. "THIRD-PARTY-NOTICES.TXT",
  4658. "lib/netstandard1.0/_._",
  4659. "microsoft.netcore.targets.3.0.0.nupkg.sha512",
  4660. "microsoft.netcore.targets.nuspec",
  4661. "useSharedDesignerContext.txt",
  4662. "version.txt"
  4663. ]
  4664. },
  4665. "Microsoft.OpenApi/1.3.1": {
  4666. "sha512": "2X5CCFJCnx6v86fnpOg4TKlU1ba7MSf1yakeT7VI4846s7i6fOkERwStX94Rcq8wJsLyQYsUitd6vR38viePeA==",
  4667. "type": "package",
  4668. "path": "microsoft.openapi/1.3.1",
  4669. "files": [
  4670. ".nupkg.metadata",
  4671. ".signature.p7s",
  4672. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4673. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4674. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4675. "microsoft.openapi.1.3.1.nupkg.sha512",
  4676. "microsoft.openapi.nuspec"
  4677. ]
  4678. },
  4679. "Microsoft.Win32.Primitives/4.0.1": {
  4680. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  4681. "type": "package",
  4682. "path": "microsoft.win32.primitives/4.0.1",
  4683. "files": [
  4684. ".nupkg.metadata",
  4685. "ThirdPartyNotices.txt",
  4686. "dotnet_library_license.txt",
  4687. "lib/MonoAndroid10/_._",
  4688. "lib/MonoTouch10/_._",
  4689. "lib/net46/Microsoft.Win32.Primitives.dll",
  4690. "lib/xamarinios10/_._",
  4691. "lib/xamarinmac20/_._",
  4692. "lib/xamarintvos10/_._",
  4693. "lib/xamarinwatchos10/_._",
  4694. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  4695. "microsoft.win32.primitives.nuspec",
  4696. "ref/MonoAndroid10/_._",
  4697. "ref/MonoTouch10/_._",
  4698. "ref/net46/Microsoft.Win32.Primitives.dll",
  4699. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4700. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4701. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4702. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4703. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4704. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4705. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4706. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4707. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4708. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4709. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4710. "ref/xamarinios10/_._",
  4711. "ref/xamarinmac20/_._",
  4712. "ref/xamarintvos10/_._",
  4713. "ref/xamarinwatchos10/_._"
  4714. ]
  4715. },
  4716. "Microsoft.Win32.SystemEvents/6.0.0": {
  4717. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  4718. "type": "package",
  4719. "path": "microsoft.win32.systemevents/6.0.0",
  4720. "files": [
  4721. ".nupkg.metadata",
  4722. ".signature.p7s",
  4723. "Icon.png",
  4724. "LICENSE.TXT",
  4725. "THIRD-PARTY-NOTICES.TXT",
  4726. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  4727. "buildTransitive/netcoreapp3.1/_._",
  4728. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4729. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4730. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4731. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4732. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  4733. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  4734. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4735. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4736. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  4737. "microsoft.win32.systemevents.nuspec",
  4738. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4739. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4740. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  4741. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  4742. "useSharedDesignerContext.txt"
  4743. ]
  4744. },
  4745. "MySql.Data/8.0.22": {
  4746. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  4747. "type": "package",
  4748. "path": "mysql.data/8.0.22",
  4749. "files": [
  4750. ".nupkg.metadata",
  4751. ".signature.p7s",
  4752. "lib/net452/MySql.Data.dll",
  4753. "lib/net452/MySql.Data.xml",
  4754. "lib/net452/Ubiety.Dns.Core.dll",
  4755. "lib/net452/Zstandard.Net.dll",
  4756. "lib/net48/MySql.Data.dll",
  4757. "lib/net48/MySql.Data.xml",
  4758. "lib/net48/Ubiety.Dns.Core.dll",
  4759. "lib/net48/Zstandard.Net.dll",
  4760. "lib/net5.0/MySql.Data.dll",
  4761. "lib/net5.0/MySql.Data.xml",
  4762. "lib/net5.0/Ubiety.Dns.Core.dll",
  4763. "lib/net5.0/Zstandard.Net.dll",
  4764. "lib/netstandard2.0/MySql.Data.dll",
  4765. "lib/netstandard2.0/MySql.Data.xml",
  4766. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4767. "lib/netstandard2.0/Zstandard.Net.dll",
  4768. "lib/netstandard2.1/MySql.Data.dll",
  4769. "lib/netstandard2.1/MySql.Data.xml",
  4770. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4771. "lib/netstandard2.1/Zstandard.Net.dll",
  4772. "mysql.data.8.0.22.nupkg.sha512",
  4773. "mysql.data.nuspec"
  4774. ]
  4775. },
  4776. "MySql.Data.EntityFrameworkCore/8.0.22": {
  4777. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  4778. "type": "package",
  4779. "path": "mysql.data.entityframeworkcore/8.0.22",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  4784. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  4785. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  4786. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  4787. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  4788. "mysql.data.entityframeworkcore.nuspec"
  4789. ]
  4790. },
  4791. "NETStandard.Library/1.6.0": {
  4792. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  4793. "type": "package",
  4794. "path": "netstandard.library/1.6.0",
  4795. "files": [
  4796. ".nupkg.metadata",
  4797. "ThirdPartyNotices.txt",
  4798. "dotnet_library_license.txt",
  4799. "netstandard.library.1.6.0.nupkg.sha512",
  4800. "netstandard.library.nuspec"
  4801. ]
  4802. },
  4803. "Newtonsoft.Json/13.0.3": {
  4804. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4805. "type": "package",
  4806. "path": "newtonsoft.json/13.0.3",
  4807. "files": [
  4808. ".nupkg.metadata",
  4809. ".signature.p7s",
  4810. "LICENSE.md",
  4811. "README.md",
  4812. "lib/net20/Newtonsoft.Json.dll",
  4813. "lib/net20/Newtonsoft.Json.xml",
  4814. "lib/net35/Newtonsoft.Json.dll",
  4815. "lib/net35/Newtonsoft.Json.xml",
  4816. "lib/net40/Newtonsoft.Json.dll",
  4817. "lib/net40/Newtonsoft.Json.xml",
  4818. "lib/net45/Newtonsoft.Json.dll",
  4819. "lib/net45/Newtonsoft.Json.xml",
  4820. "lib/net6.0/Newtonsoft.Json.dll",
  4821. "lib/net6.0/Newtonsoft.Json.xml",
  4822. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4823. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4824. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4825. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4826. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4827. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4828. "newtonsoft.json.13.0.3.nupkg.sha512",
  4829. "newtonsoft.json.nuspec",
  4830. "packageIcon.png"
  4831. ]
  4832. },
  4833. "NLog/5.2.8": {
  4834. "sha512": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ==",
  4835. "type": "package",
  4836. "path": "nlog/5.2.8",
  4837. "files": [
  4838. ".nupkg.metadata",
  4839. ".signature.p7s",
  4840. "N.png",
  4841. "lib/net35/NLog.dll",
  4842. "lib/net35/NLog.xml",
  4843. "lib/net45/NLog.dll",
  4844. "lib/net45/NLog.xml",
  4845. "lib/net46/NLog.dll",
  4846. "lib/net46/NLog.xml",
  4847. "lib/netstandard1.3/NLog.dll",
  4848. "lib/netstandard1.3/NLog.xml",
  4849. "lib/netstandard1.5/NLog.dll",
  4850. "lib/netstandard1.5/NLog.xml",
  4851. "lib/netstandard2.0/NLog.dll",
  4852. "lib/netstandard2.0/NLog.xml",
  4853. "nlog.5.2.8.nupkg.sha512",
  4854. "nlog.nuspec"
  4855. ]
  4856. },
  4857. "NLog.Extensions.Logging/5.3.8": {
  4858. "sha512": "6VD0lyeokWltL6j8lO7mS7v7lbuO/qn0F7kdvhKhEx1JvFyD39nzohOK3JvkVh4Nn3mrcMDCyDxvTvmiW55jQg==",
  4859. "type": "package",
  4860. "path": "nlog.extensions.logging/5.3.8",
  4861. "files": [
  4862. ".nupkg.metadata",
  4863. ".signature.p7s",
  4864. "N.png",
  4865. "README.md",
  4866. "lib/net461/NLog.Extensions.Logging.dll",
  4867. "lib/net461/NLog.Extensions.Logging.xml",
  4868. "lib/net6.0/NLog.Extensions.Logging.dll",
  4869. "lib/net6.0/NLog.Extensions.Logging.xml",
  4870. "lib/net8.0/NLog.Extensions.Logging.dll",
  4871. "lib/net8.0/NLog.Extensions.Logging.xml",
  4872. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  4873. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  4874. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  4875. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  4876. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  4877. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  4878. "lib/netstandard2.1/NLog.Extensions.Logging.dll",
  4879. "lib/netstandard2.1/NLog.Extensions.Logging.xml",
  4880. "nlog.extensions.logging.5.3.8.nupkg.sha512",
  4881. "nlog.extensions.logging.nuspec"
  4882. ]
  4883. },
  4884. "NLog.Web.AspNetCore/5.3.8": {
  4885. "sha512": "Rt2OCulpAF6rSrZWZzPgHikAI8SDKkq3/52xA/uJ4JtmNjoizULN/IBYtYlZojbPbXiFm3uadOO2rOvvMhjXBQ==",
  4886. "type": "package",
  4887. "path": "nlog.web.aspnetcore/5.3.8",
  4888. "files": [
  4889. ".nupkg.metadata",
  4890. ".signature.p7s",
  4891. "N.png",
  4892. "README.md",
  4893. "lib/net461/NLog.Web.AspNetCore.dll",
  4894. "lib/net461/NLog.Web.AspNetCore.xml",
  4895. "lib/net5.0/NLog.Web.AspNetCore.dll",
  4896. "lib/net5.0/NLog.Web.AspNetCore.xml",
  4897. "lib/net6.0/NLog.Web.AspNetCore.dll",
  4898. "lib/net6.0/NLog.Web.AspNetCore.xml",
  4899. "lib/net8.0/NLog.Web.AspNetCore.dll",
  4900. "lib/net8.0/NLog.Web.AspNetCore.xml",
  4901. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll",
  4902. "lib/netcoreapp3.1/NLog.Web.AspNetCore.xml",
  4903. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  4904. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  4905. "nlog.web.aspnetcore.5.3.8.nupkg.sha512",
  4906. "nlog.web.aspnetcore.nuspec"
  4907. ]
  4908. },
  4909. "Pipelines.Sockets.Unofficial/2.2.8": {
  4910. "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==",
  4911. "type": "package",
  4912. "path": "pipelines.sockets.unofficial/2.2.8",
  4913. "files": [
  4914. ".nupkg.metadata",
  4915. ".signature.p7s",
  4916. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  4917. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  4918. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  4919. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  4920. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  4921. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  4922. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  4923. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  4924. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  4925. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  4926. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  4927. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  4928. "pipelines.sockets.unofficial.2.2.8.nupkg.sha512",
  4929. "pipelines.sockets.unofficial.nuspec"
  4930. ]
  4931. },
  4932. "Quartz/3.8.1": {
  4933. "sha512": "HlKm+43iG8LmXfejL1kIijO107x8ozEShLT2PFIkOWNSHUj7O7yTl6icFrn6DocPvigudQ90a6h2gdFShOwyXw==",
  4934. "type": "package",
  4935. "path": "quartz/3.8.1",
  4936. "files": [
  4937. ".nupkg.metadata",
  4938. ".signature.p7s",
  4939. "lib/net462/Quartz.dll",
  4940. "lib/net462/Quartz.xml",
  4941. "lib/net472/Quartz.dll",
  4942. "lib/net472/Quartz.xml",
  4943. "lib/net6.0/Quartz.dll",
  4944. "lib/net6.0/Quartz.xml",
  4945. "lib/netstandard2.0/Quartz.dll",
  4946. "lib/netstandard2.0/Quartz.xml",
  4947. "quartz-logo-small.png",
  4948. "quartz.3.8.1.nupkg.sha512",
  4949. "quartz.nuspec",
  4950. "quick-start.md"
  4951. ]
  4952. },
  4953. "runtime.native.System/4.0.0": {
  4954. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  4955. "type": "package",
  4956. "path": "runtime.native.system/4.0.0",
  4957. "files": [
  4958. ".nupkg.metadata",
  4959. "ThirdPartyNotices.txt",
  4960. "dotnet_library_license.txt",
  4961. "lib/netstandard1.0/_._",
  4962. "runtime.native.system.4.0.0.nupkg.sha512",
  4963. "runtime.native.system.nuspec"
  4964. ]
  4965. },
  4966. "runtime.native.System.IO.Compression/4.1.0": {
  4967. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  4968. "type": "package",
  4969. "path": "runtime.native.system.io.compression/4.1.0",
  4970. "files": [
  4971. ".nupkg.metadata",
  4972. "ThirdPartyNotices.txt",
  4973. "dotnet_library_license.txt",
  4974. "lib/netstandard1.0/_._",
  4975. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  4976. "runtime.native.system.io.compression.nuspec"
  4977. ]
  4978. },
  4979. "runtime.native.System.Net.Http/4.0.1": {
  4980. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  4981. "type": "package",
  4982. "path": "runtime.native.system.net.http/4.0.1",
  4983. "files": [
  4984. ".nupkg.metadata",
  4985. "ThirdPartyNotices.txt",
  4986. "dotnet_library_license.txt",
  4987. "lib/netstandard1.0/_._",
  4988. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  4989. "runtime.native.system.net.http.nuspec"
  4990. ]
  4991. },
  4992. "runtime.native.System.Security.Cryptography/4.0.0": {
  4993. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  4994. "type": "package",
  4995. "path": "runtime.native.system.security.cryptography/4.0.0",
  4996. "files": [
  4997. ".nupkg.metadata",
  4998. "ThirdPartyNotices.txt",
  4999. "dotnet_library_license.txt",
  5000. "lib/netstandard1.0/_._",
  5001. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  5002. "runtime.native.system.security.cryptography.nuspec"
  5003. ]
  5004. },
  5005. "Scrutor/3.3.0": {
  5006. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  5007. "type": "package",
  5008. "path": "scrutor/3.3.0",
  5009. "files": [
  5010. ".nupkg.metadata",
  5011. ".signature.p7s",
  5012. "lib/net461/Scrutor.dll",
  5013. "lib/net461/Scrutor.pdb",
  5014. "lib/net461/Scrutor.xml",
  5015. "lib/netcoreapp3.1/Scrutor.dll",
  5016. "lib/netcoreapp3.1/Scrutor.pdb",
  5017. "lib/netcoreapp3.1/Scrutor.xml",
  5018. "lib/netstandard2.0/Scrutor.dll",
  5019. "lib/netstandard2.0/Scrutor.pdb",
  5020. "lib/netstandard2.0/Scrutor.xml",
  5021. "scrutor.3.3.0.nupkg.sha512",
  5022. "scrutor.nuspec"
  5023. ]
  5024. },
  5025. "SSH.NET/2016.1.0": {
  5026. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  5027. "type": "package",
  5028. "path": "ssh.net/2016.1.0",
  5029. "files": [
  5030. ".nupkg.metadata",
  5031. ".signature.p7s",
  5032. "lib/net35/Renci.SshNet.dll",
  5033. "lib/net35/Renci.SshNet.xml",
  5034. "lib/net40/Renci.SshNet.dll",
  5035. "lib/net40/Renci.SshNet.xml",
  5036. "lib/netstandard1.3/Renci.SshNet.dll",
  5037. "lib/netstandard1.3/Renci.SshNet.xml",
  5038. "lib/sl4/Renci.SshNet.dll",
  5039. "lib/sl4/Renci.SshNet.xml",
  5040. "lib/sl5/Renci.SshNet.dll",
  5041. "lib/sl5/Renci.SshNet.xml",
  5042. "lib/uap10/Renci.SshNet.dll",
  5043. "lib/uap10/Renci.SshNet.xml",
  5044. "lib/wp71/Renci.SshNet.dll",
  5045. "lib/wp71/Renci.SshNet.xml",
  5046. "lib/wp8/Renci.SshNet.dll",
  5047. "lib/wp8/Renci.SshNet.xml",
  5048. "ssh.net.2016.1.0.nupkg.sha512",
  5049. "ssh.net.nuspec"
  5050. ]
  5051. },
  5052. "SshNet.Security.Cryptography/1.2.0": {
  5053. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  5054. "type": "package",
  5055. "path": "sshnet.security.cryptography/1.2.0",
  5056. "files": [
  5057. ".nupkg.metadata",
  5058. ".signature.p7s",
  5059. "lib/net20/SshNet.Security.Cryptography.dll",
  5060. "lib/net20/SshNet.Security.Cryptography.xml",
  5061. "lib/net40/SshNet.Security.Cryptography.dll",
  5062. "lib/net40/SshNet.Security.Cryptography.xml",
  5063. "lib/net45/SshNet.Security.Cryptography.dll",
  5064. "lib/net45/SshNet.Security.Cryptography.xml",
  5065. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5066. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5067. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5068. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5069. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5070. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5071. "lib/sl4/SshNet.Security.Cryptography.dll",
  5072. "lib/sl4/SshNet.Security.Cryptography.xml",
  5073. "lib/sl5/SshNet.Security.Cryptography.dll",
  5074. "lib/sl5/SshNet.Security.Cryptography.xml",
  5075. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5076. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5077. "lib/wp71/SshNet.Security.Cryptography.dll",
  5078. "lib/wp71/SshNet.Security.Cryptography.xml",
  5079. "lib/wp8/SshNet.Security.Cryptography.dll",
  5080. "lib/wp8/SshNet.Security.Cryptography.xml",
  5081. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  5082. "sshnet.security.cryptography.nuspec"
  5083. ]
  5084. },
  5085. "StackExchange.Redis/2.7.33": {
  5086. "sha512": "2kCX5fvhEE824a4Ab5Imyi8DRuGuTxyklXV01kegkRpsWJcPmO6+GAQ+HegKxvXAxlXZ8yaRspvWJ8t3mMClfQ==",
  5087. "type": "package",
  5088. "path": "stackexchange.redis/2.7.33",
  5089. "files": [
  5090. ".nupkg.metadata",
  5091. ".signature.p7s",
  5092. "lib/net461/StackExchange.Redis.dll",
  5093. "lib/net461/StackExchange.Redis.xml",
  5094. "lib/net472/StackExchange.Redis.dll",
  5095. "lib/net472/StackExchange.Redis.xml",
  5096. "lib/net6.0/StackExchange.Redis.dll",
  5097. "lib/net6.0/StackExchange.Redis.xml",
  5098. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  5099. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  5100. "lib/netstandard2.0/StackExchange.Redis.dll",
  5101. "lib/netstandard2.0/StackExchange.Redis.xml",
  5102. "stackexchange.redis.2.7.33.nupkg.sha512",
  5103. "stackexchange.redis.nuspec"
  5104. ]
  5105. },
  5106. "Swashbuckle.AspNetCore/6.5.0": {
  5107. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  5108. "type": "package",
  5109. "path": "swashbuckle.aspnetcore/6.5.0",
  5110. "files": [
  5111. ".nupkg.metadata",
  5112. ".signature.p7s",
  5113. "build/Swashbuckle.AspNetCore.props",
  5114. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  5115. "swashbuckle.aspnetcore.nuspec"
  5116. ]
  5117. },
  5118. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  5119. "sha512": "CQbJaQdelQGmgZR48FmITGYdfjXTG//hGpSEOwv3cLU5md8c6+YRY23KydX44IXRmHGAYwXrBlnuy98Daoa0zw==",
  5120. "type": "package",
  5121. "path": "swashbuckle.aspnetcore.filters/8.0.1",
  5122. "files": [
  5123. ".nupkg.metadata",
  5124. ".signature.p7s",
  5125. "README.md",
  5126. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  5127. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  5128. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  5129. "swashbuckle.aspnetcore.filters.8.0.1.nupkg.sha512",
  5130. "swashbuckle.aspnetcore.filters.nuspec"
  5131. ]
  5132. },
  5133. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  5134. "sha512": "HaMNzwz544xccQ0vn1jYK6UY9XZcgZRYYI4NaBAdow2oj0UycN6zdryoaaCa2S9D9Cu1qjsbdjp2FthYqM/wpQ==",
  5135. "type": "package",
  5136. "path": "swashbuckle.aspnetcore.filters.abstractions/8.0.1",
  5137. "files": [
  5138. ".nupkg.metadata",
  5139. ".signature.p7s",
  5140. "README.md",
  5141. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  5142. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  5143. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  5144. "swashbuckle.aspnetcore.filters.abstractions.8.0.1.nupkg.sha512",
  5145. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  5146. ]
  5147. },
  5148. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  5149. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  5150. "type": "package",
  5151. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  5152. "files": [
  5153. ".nupkg.metadata",
  5154. ".signature.p7s",
  5155. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  5156. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5157. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  5158. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  5159. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5160. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  5161. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  5162. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5163. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  5164. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5165. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5166. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5167. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5168. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5169. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5170. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  5171. "swashbuckle.aspnetcore.swagger.nuspec"
  5172. ]
  5173. },
  5174. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  5175. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  5176. "type": "package",
  5177. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  5178. "files": [
  5179. ".nupkg.metadata",
  5180. ".signature.p7s",
  5181. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5182. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5183. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5184. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5185. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5186. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5187. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5188. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5189. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5190. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5191. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5192. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5193. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5194. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5195. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5196. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  5197. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5198. ]
  5199. },
  5200. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  5201. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  5202. "type": "package",
  5203. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  5204. "files": [
  5205. ".nupkg.metadata",
  5206. ".signature.p7s",
  5207. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5208. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5209. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5210. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5211. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5212. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5213. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5214. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5215. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5216. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5217. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5218. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5219. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5220. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5221. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5222. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  5223. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5224. ]
  5225. },
  5226. "System.AppContext/4.1.0": {
  5227. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  5228. "type": "package",
  5229. "path": "system.appcontext/4.1.0",
  5230. "files": [
  5231. ".nupkg.metadata",
  5232. "ThirdPartyNotices.txt",
  5233. "dotnet_library_license.txt",
  5234. "lib/MonoAndroid10/_._",
  5235. "lib/MonoTouch10/_._",
  5236. "lib/net46/System.AppContext.dll",
  5237. "lib/net463/System.AppContext.dll",
  5238. "lib/netcore50/System.AppContext.dll",
  5239. "lib/netstandard1.6/System.AppContext.dll",
  5240. "lib/xamarinios10/_._",
  5241. "lib/xamarinmac20/_._",
  5242. "lib/xamarintvos10/_._",
  5243. "lib/xamarinwatchos10/_._",
  5244. "ref/MonoAndroid10/_._",
  5245. "ref/MonoTouch10/_._",
  5246. "ref/net46/System.AppContext.dll",
  5247. "ref/net463/System.AppContext.dll",
  5248. "ref/netstandard/_._",
  5249. "ref/netstandard1.3/System.AppContext.dll",
  5250. "ref/netstandard1.3/System.AppContext.xml",
  5251. "ref/netstandard1.3/de/System.AppContext.xml",
  5252. "ref/netstandard1.3/es/System.AppContext.xml",
  5253. "ref/netstandard1.3/fr/System.AppContext.xml",
  5254. "ref/netstandard1.3/it/System.AppContext.xml",
  5255. "ref/netstandard1.3/ja/System.AppContext.xml",
  5256. "ref/netstandard1.3/ko/System.AppContext.xml",
  5257. "ref/netstandard1.3/ru/System.AppContext.xml",
  5258. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5259. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5260. "ref/netstandard1.6/System.AppContext.dll",
  5261. "ref/netstandard1.6/System.AppContext.xml",
  5262. "ref/netstandard1.6/de/System.AppContext.xml",
  5263. "ref/netstandard1.6/es/System.AppContext.xml",
  5264. "ref/netstandard1.6/fr/System.AppContext.xml",
  5265. "ref/netstandard1.6/it/System.AppContext.xml",
  5266. "ref/netstandard1.6/ja/System.AppContext.xml",
  5267. "ref/netstandard1.6/ko/System.AppContext.xml",
  5268. "ref/netstandard1.6/ru/System.AppContext.xml",
  5269. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5270. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5271. "ref/xamarinios10/_._",
  5272. "ref/xamarinmac20/_._",
  5273. "ref/xamarintvos10/_._",
  5274. "ref/xamarinwatchos10/_._",
  5275. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5276. "system.appcontext.4.1.0.nupkg.sha512",
  5277. "system.appcontext.nuspec"
  5278. ]
  5279. },
  5280. "System.Buffers/4.5.1": {
  5281. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5282. "type": "package",
  5283. "path": "system.buffers/4.5.1",
  5284. "files": [
  5285. ".nupkg.metadata",
  5286. ".signature.p7s",
  5287. "LICENSE.TXT",
  5288. "THIRD-PARTY-NOTICES.TXT",
  5289. "lib/net461/System.Buffers.dll",
  5290. "lib/net461/System.Buffers.xml",
  5291. "lib/netcoreapp2.0/_._",
  5292. "lib/netstandard1.1/System.Buffers.dll",
  5293. "lib/netstandard1.1/System.Buffers.xml",
  5294. "lib/netstandard2.0/System.Buffers.dll",
  5295. "lib/netstandard2.0/System.Buffers.xml",
  5296. "lib/uap10.0.16299/_._",
  5297. "ref/net45/System.Buffers.dll",
  5298. "ref/net45/System.Buffers.xml",
  5299. "ref/netcoreapp2.0/_._",
  5300. "ref/netstandard1.1/System.Buffers.dll",
  5301. "ref/netstandard1.1/System.Buffers.xml",
  5302. "ref/netstandard2.0/System.Buffers.dll",
  5303. "ref/netstandard2.0/System.Buffers.xml",
  5304. "ref/uap10.0.16299/_._",
  5305. "system.buffers.4.5.1.nupkg.sha512",
  5306. "system.buffers.nuspec",
  5307. "useSharedDesignerContext.txt",
  5308. "version.txt"
  5309. ]
  5310. },
  5311. "System.Collections/4.0.11": {
  5312. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  5313. "type": "package",
  5314. "path": "system.collections/4.0.11",
  5315. "files": [
  5316. ".nupkg.metadata",
  5317. "ThirdPartyNotices.txt",
  5318. "dotnet_library_license.txt",
  5319. "lib/MonoAndroid10/_._",
  5320. "lib/MonoTouch10/_._",
  5321. "lib/net45/_._",
  5322. "lib/portable-net45+win8+wp8+wpa81/_._",
  5323. "lib/win8/_._",
  5324. "lib/wp80/_._",
  5325. "lib/wpa81/_._",
  5326. "lib/xamarinios10/_._",
  5327. "lib/xamarinmac20/_._",
  5328. "lib/xamarintvos10/_._",
  5329. "lib/xamarinwatchos10/_._",
  5330. "ref/MonoAndroid10/_._",
  5331. "ref/MonoTouch10/_._",
  5332. "ref/net45/_._",
  5333. "ref/netcore50/System.Collections.dll",
  5334. "ref/netcore50/System.Collections.xml",
  5335. "ref/netcore50/de/System.Collections.xml",
  5336. "ref/netcore50/es/System.Collections.xml",
  5337. "ref/netcore50/fr/System.Collections.xml",
  5338. "ref/netcore50/it/System.Collections.xml",
  5339. "ref/netcore50/ja/System.Collections.xml",
  5340. "ref/netcore50/ko/System.Collections.xml",
  5341. "ref/netcore50/ru/System.Collections.xml",
  5342. "ref/netcore50/zh-hans/System.Collections.xml",
  5343. "ref/netcore50/zh-hant/System.Collections.xml",
  5344. "ref/netstandard1.0/System.Collections.dll",
  5345. "ref/netstandard1.0/System.Collections.xml",
  5346. "ref/netstandard1.0/de/System.Collections.xml",
  5347. "ref/netstandard1.0/es/System.Collections.xml",
  5348. "ref/netstandard1.0/fr/System.Collections.xml",
  5349. "ref/netstandard1.0/it/System.Collections.xml",
  5350. "ref/netstandard1.0/ja/System.Collections.xml",
  5351. "ref/netstandard1.0/ko/System.Collections.xml",
  5352. "ref/netstandard1.0/ru/System.Collections.xml",
  5353. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5354. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5355. "ref/netstandard1.3/System.Collections.dll",
  5356. "ref/netstandard1.3/System.Collections.xml",
  5357. "ref/netstandard1.3/de/System.Collections.xml",
  5358. "ref/netstandard1.3/es/System.Collections.xml",
  5359. "ref/netstandard1.3/fr/System.Collections.xml",
  5360. "ref/netstandard1.3/it/System.Collections.xml",
  5361. "ref/netstandard1.3/ja/System.Collections.xml",
  5362. "ref/netstandard1.3/ko/System.Collections.xml",
  5363. "ref/netstandard1.3/ru/System.Collections.xml",
  5364. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5365. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5366. "ref/portable-net45+win8+wp8+wpa81/_._",
  5367. "ref/win8/_._",
  5368. "ref/wp80/_._",
  5369. "ref/wpa81/_._",
  5370. "ref/xamarinios10/_._",
  5371. "ref/xamarinmac20/_._",
  5372. "ref/xamarintvos10/_._",
  5373. "ref/xamarinwatchos10/_._",
  5374. "system.collections.4.0.11.nupkg.sha512",
  5375. "system.collections.nuspec"
  5376. ]
  5377. },
  5378. "System.Collections.Concurrent/4.0.12": {
  5379. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  5380. "type": "package",
  5381. "path": "system.collections.concurrent/4.0.12",
  5382. "files": [
  5383. ".nupkg.metadata",
  5384. "ThirdPartyNotices.txt",
  5385. "dotnet_library_license.txt",
  5386. "lib/MonoAndroid10/_._",
  5387. "lib/MonoTouch10/_._",
  5388. "lib/net45/_._",
  5389. "lib/netcore50/System.Collections.Concurrent.dll",
  5390. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5391. "lib/portable-net45+win8+wpa81/_._",
  5392. "lib/win8/_._",
  5393. "lib/wpa81/_._",
  5394. "lib/xamarinios10/_._",
  5395. "lib/xamarinmac20/_._",
  5396. "lib/xamarintvos10/_._",
  5397. "lib/xamarinwatchos10/_._",
  5398. "ref/MonoAndroid10/_._",
  5399. "ref/MonoTouch10/_._",
  5400. "ref/net45/_._",
  5401. "ref/netcore50/System.Collections.Concurrent.dll",
  5402. "ref/netcore50/System.Collections.Concurrent.xml",
  5403. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5404. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5405. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5406. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5407. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5408. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5409. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5410. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5411. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5412. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5413. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5414. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5415. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5416. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5417. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5418. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5419. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5420. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5421. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5422. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5423. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5424. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5425. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5426. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5427. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5428. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5429. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5430. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5431. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5432. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5433. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5434. "ref/portable-net45+win8+wpa81/_._",
  5435. "ref/win8/_._",
  5436. "ref/wpa81/_._",
  5437. "ref/xamarinios10/_._",
  5438. "ref/xamarinmac20/_._",
  5439. "ref/xamarintvos10/_._",
  5440. "ref/xamarinwatchos10/_._",
  5441. "system.collections.concurrent.4.0.12.nupkg.sha512",
  5442. "system.collections.concurrent.nuspec"
  5443. ]
  5444. },
  5445. "System.Collections.Immutable/1.7.0": {
  5446. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  5447. "type": "package",
  5448. "path": "system.collections.immutable/1.7.0",
  5449. "files": [
  5450. ".nupkg.metadata",
  5451. ".signature.p7s",
  5452. "LICENSE.TXT",
  5453. "THIRD-PARTY-NOTICES.TXT",
  5454. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5455. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5456. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5457. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5458. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5459. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5460. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5461. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5462. "system.collections.immutable.1.7.0.nupkg.sha512",
  5463. "system.collections.immutable.nuspec",
  5464. "useSharedDesignerContext.txt",
  5465. "version.txt"
  5466. ]
  5467. },
  5468. "System.ComponentModel.Annotations/5.0.0": {
  5469. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5470. "type": "package",
  5471. "path": "system.componentmodel.annotations/5.0.0",
  5472. "files": [
  5473. ".nupkg.metadata",
  5474. ".signature.p7s",
  5475. "Icon.png",
  5476. "LICENSE.TXT",
  5477. "THIRD-PARTY-NOTICES.TXT",
  5478. "lib/MonoAndroid10/_._",
  5479. "lib/MonoTouch10/_._",
  5480. "lib/net45/_._",
  5481. "lib/net461/System.ComponentModel.Annotations.dll",
  5482. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5483. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5484. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5485. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5486. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5487. "lib/portable-net45+win8/_._",
  5488. "lib/win8/_._",
  5489. "lib/xamarinios10/_._",
  5490. "lib/xamarinmac20/_._",
  5491. "lib/xamarintvos10/_._",
  5492. "lib/xamarinwatchos10/_._",
  5493. "ref/MonoAndroid10/_._",
  5494. "ref/MonoTouch10/_._",
  5495. "ref/net45/_._",
  5496. "ref/net461/System.ComponentModel.Annotations.dll",
  5497. "ref/net461/System.ComponentModel.Annotations.xml",
  5498. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5499. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5500. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5501. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5502. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5503. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5504. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5505. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5506. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5507. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5508. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5509. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5510. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5511. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5512. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5513. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5514. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5515. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5516. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5517. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5518. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5519. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5520. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5521. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5522. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5523. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5524. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5525. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5526. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5527. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5528. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5529. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5530. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5531. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5532. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5533. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5534. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5535. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5536. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5537. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5538. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5539. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5540. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5541. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5542. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5543. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5544. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5545. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5546. "ref/portable-net45+win8/_._",
  5547. "ref/win8/_._",
  5548. "ref/xamarinios10/_._",
  5549. "ref/xamarinmac20/_._",
  5550. "ref/xamarintvos10/_._",
  5551. "ref/xamarinwatchos10/_._",
  5552. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5553. "system.componentmodel.annotations.nuspec",
  5554. "useSharedDesignerContext.txt",
  5555. "version.txt"
  5556. ]
  5557. },
  5558. "System.Configuration.ConfigurationManager/6.0.1": {
  5559. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  5560. "type": "package",
  5561. "path": "system.configuration.configurationmanager/6.0.1",
  5562. "files": [
  5563. ".nupkg.metadata",
  5564. ".signature.p7s",
  5565. "Icon.png",
  5566. "LICENSE.TXT",
  5567. "THIRD-PARTY-NOTICES.TXT",
  5568. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  5569. "buildTransitive/netcoreapp3.1/_._",
  5570. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5571. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5572. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  5573. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  5574. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5575. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5576. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  5577. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  5578. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  5579. "system.configuration.configurationmanager.nuspec",
  5580. "useSharedDesignerContext.txt"
  5581. ]
  5582. },
  5583. "System.Console/4.0.0": {
  5584. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  5585. "type": "package",
  5586. "path": "system.console/4.0.0",
  5587. "files": [
  5588. ".nupkg.metadata",
  5589. "ThirdPartyNotices.txt",
  5590. "dotnet_library_license.txt",
  5591. "lib/MonoAndroid10/_._",
  5592. "lib/MonoTouch10/_._",
  5593. "lib/net46/System.Console.dll",
  5594. "lib/xamarinios10/_._",
  5595. "lib/xamarinmac20/_._",
  5596. "lib/xamarintvos10/_._",
  5597. "lib/xamarinwatchos10/_._",
  5598. "ref/MonoAndroid10/_._",
  5599. "ref/MonoTouch10/_._",
  5600. "ref/net46/System.Console.dll",
  5601. "ref/netstandard1.3/System.Console.dll",
  5602. "ref/netstandard1.3/System.Console.xml",
  5603. "ref/netstandard1.3/de/System.Console.xml",
  5604. "ref/netstandard1.3/es/System.Console.xml",
  5605. "ref/netstandard1.3/fr/System.Console.xml",
  5606. "ref/netstandard1.3/it/System.Console.xml",
  5607. "ref/netstandard1.3/ja/System.Console.xml",
  5608. "ref/netstandard1.3/ko/System.Console.xml",
  5609. "ref/netstandard1.3/ru/System.Console.xml",
  5610. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5611. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5612. "ref/xamarinios10/_._",
  5613. "ref/xamarinmac20/_._",
  5614. "ref/xamarintvos10/_._",
  5615. "ref/xamarinwatchos10/_._",
  5616. "system.console.4.0.0.nupkg.sha512",
  5617. "system.console.nuspec"
  5618. ]
  5619. },
  5620. "System.Diagnostics.Debug/4.0.11": {
  5621. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  5622. "type": "package",
  5623. "path": "system.diagnostics.debug/4.0.11",
  5624. "files": [
  5625. ".nupkg.metadata",
  5626. "ThirdPartyNotices.txt",
  5627. "dotnet_library_license.txt",
  5628. "lib/MonoAndroid10/_._",
  5629. "lib/MonoTouch10/_._",
  5630. "lib/net45/_._",
  5631. "lib/portable-net45+win8+wp8+wpa81/_._",
  5632. "lib/win8/_._",
  5633. "lib/wp80/_._",
  5634. "lib/wpa81/_._",
  5635. "lib/xamarinios10/_._",
  5636. "lib/xamarinmac20/_._",
  5637. "lib/xamarintvos10/_._",
  5638. "lib/xamarinwatchos10/_._",
  5639. "ref/MonoAndroid10/_._",
  5640. "ref/MonoTouch10/_._",
  5641. "ref/net45/_._",
  5642. "ref/netcore50/System.Diagnostics.Debug.dll",
  5643. "ref/netcore50/System.Diagnostics.Debug.xml",
  5644. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5645. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5646. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5647. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5648. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5649. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5650. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5651. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5652. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5653. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5654. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5655. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5656. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5657. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5658. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5659. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5660. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5661. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5662. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5663. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5664. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5665. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5666. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5667. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5668. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5669. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5670. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5671. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5672. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5673. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5674. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5675. "ref/portable-net45+win8+wp8+wpa81/_._",
  5676. "ref/win8/_._",
  5677. "ref/wp80/_._",
  5678. "ref/wpa81/_._",
  5679. "ref/xamarinios10/_._",
  5680. "ref/xamarinmac20/_._",
  5681. "ref/xamarintvos10/_._",
  5682. "ref/xamarinwatchos10/_._",
  5683. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  5684. "system.diagnostics.debug.nuspec"
  5685. ]
  5686. },
  5687. "System.Diagnostics.DiagnosticSource/8.0.0": {
  5688. "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
  5689. "type": "package",
  5690. "path": "system.diagnostics.diagnosticsource/8.0.0",
  5691. "files": [
  5692. ".nupkg.metadata",
  5693. ".signature.p7s",
  5694. "Icon.png",
  5695. "LICENSE.TXT",
  5696. "THIRD-PARTY-NOTICES.TXT",
  5697. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  5698. "buildTransitive/net462/_._",
  5699. "buildTransitive/net6.0/_._",
  5700. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  5701. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  5702. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  5703. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  5704. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  5705. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  5706. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  5707. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
  5708. "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
  5709. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  5710. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  5711. "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
  5712. "system.diagnostics.diagnosticsource.nuspec",
  5713. "useSharedDesignerContext.txt"
  5714. ]
  5715. },
  5716. "System.Diagnostics.EventLog/8.0.0": {
  5717. "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
  5718. "type": "package",
  5719. "path": "system.diagnostics.eventlog/8.0.0",
  5720. "files": [
  5721. ".nupkg.metadata",
  5722. ".signature.p7s",
  5723. "Icon.png",
  5724. "LICENSE.TXT",
  5725. "PACKAGE.md",
  5726. "THIRD-PARTY-NOTICES.TXT",
  5727. "buildTransitive/net461/System.Diagnostics.EventLog.targets",
  5728. "buildTransitive/net462/_._",
  5729. "buildTransitive/net6.0/_._",
  5730. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  5731. "lib/net462/System.Diagnostics.EventLog.dll",
  5732. "lib/net462/System.Diagnostics.EventLog.xml",
  5733. "lib/net6.0/System.Diagnostics.EventLog.dll",
  5734. "lib/net6.0/System.Diagnostics.EventLog.xml",
  5735. "lib/net7.0/System.Diagnostics.EventLog.dll",
  5736. "lib/net7.0/System.Diagnostics.EventLog.xml",
  5737. "lib/net8.0/System.Diagnostics.EventLog.dll",
  5738. "lib/net8.0/System.Diagnostics.EventLog.xml",
  5739. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  5740. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  5741. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  5742. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  5743. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  5744. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
  5745. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
  5746. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
  5747. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
  5748. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
  5749. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
  5750. "system.diagnostics.eventlog.8.0.0.nupkg.sha512",
  5751. "system.diagnostics.eventlog.nuspec",
  5752. "useSharedDesignerContext.txt"
  5753. ]
  5754. },
  5755. "System.Diagnostics.Tools/4.0.1": {
  5756. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  5757. "type": "package",
  5758. "path": "system.diagnostics.tools/4.0.1",
  5759. "files": [
  5760. ".nupkg.metadata",
  5761. "ThirdPartyNotices.txt",
  5762. "dotnet_library_license.txt",
  5763. "lib/MonoAndroid10/_._",
  5764. "lib/MonoTouch10/_._",
  5765. "lib/net45/_._",
  5766. "lib/portable-net45+win8+wp8+wpa81/_._",
  5767. "lib/win8/_._",
  5768. "lib/wp80/_._",
  5769. "lib/wpa81/_._",
  5770. "lib/xamarinios10/_._",
  5771. "lib/xamarinmac20/_._",
  5772. "lib/xamarintvos10/_._",
  5773. "lib/xamarinwatchos10/_._",
  5774. "ref/MonoAndroid10/_._",
  5775. "ref/MonoTouch10/_._",
  5776. "ref/net45/_._",
  5777. "ref/netcore50/System.Diagnostics.Tools.dll",
  5778. "ref/netcore50/System.Diagnostics.Tools.xml",
  5779. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5780. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5781. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5782. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5783. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5784. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5785. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5786. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5787. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5788. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5789. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5790. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5791. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5792. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5793. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5794. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5795. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5796. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5797. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5798. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5799. "ref/portable-net45+win8+wp8+wpa81/_._",
  5800. "ref/win8/_._",
  5801. "ref/wp80/_._",
  5802. "ref/wpa81/_._",
  5803. "ref/xamarinios10/_._",
  5804. "ref/xamarinmac20/_._",
  5805. "ref/xamarintvos10/_._",
  5806. "ref/xamarinwatchos10/_._",
  5807. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  5808. "system.diagnostics.tools.nuspec"
  5809. ]
  5810. },
  5811. "System.Diagnostics.TraceSource/4.0.0": {
  5812. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  5813. "type": "package",
  5814. "path": "system.diagnostics.tracesource/4.0.0",
  5815. "files": [
  5816. ".nupkg.metadata",
  5817. ".signature.p7s",
  5818. "ThirdPartyNotices.txt",
  5819. "dotnet_library_license.txt",
  5820. "lib/MonoAndroid10/_._",
  5821. "lib/MonoTouch10/_._",
  5822. "lib/net46/System.Diagnostics.TraceSource.dll",
  5823. "lib/xamarinios10/_._",
  5824. "lib/xamarinmac20/_._",
  5825. "lib/xamarintvos10/_._",
  5826. "lib/xamarinwatchos10/_._",
  5827. "ref/MonoAndroid10/_._",
  5828. "ref/MonoTouch10/_._",
  5829. "ref/net46/System.Diagnostics.TraceSource.dll",
  5830. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5831. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5832. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5833. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5834. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5835. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5836. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5837. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5838. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5839. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5840. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5841. "ref/xamarinios10/_._",
  5842. "ref/xamarinmac20/_._",
  5843. "ref/xamarintvos10/_._",
  5844. "ref/xamarinwatchos10/_._",
  5845. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5846. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5847. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5848. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  5849. "system.diagnostics.tracesource.nuspec"
  5850. ]
  5851. },
  5852. "System.Diagnostics.Tracing/4.1.0": {
  5853. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  5854. "type": "package",
  5855. "path": "system.diagnostics.tracing/4.1.0",
  5856. "files": [
  5857. ".nupkg.metadata",
  5858. "ThirdPartyNotices.txt",
  5859. "dotnet_library_license.txt",
  5860. "lib/MonoAndroid10/_._",
  5861. "lib/MonoTouch10/_._",
  5862. "lib/net45/_._",
  5863. "lib/net462/System.Diagnostics.Tracing.dll",
  5864. "lib/portable-net45+win8+wpa81/_._",
  5865. "lib/win8/_._",
  5866. "lib/wpa81/_._",
  5867. "lib/xamarinios10/_._",
  5868. "lib/xamarinmac20/_._",
  5869. "lib/xamarintvos10/_._",
  5870. "lib/xamarinwatchos10/_._",
  5871. "ref/MonoAndroid10/_._",
  5872. "ref/MonoTouch10/_._",
  5873. "ref/net45/_._",
  5874. "ref/net462/System.Diagnostics.Tracing.dll",
  5875. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5876. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5877. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5878. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5879. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5880. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5881. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5882. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5883. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5884. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5885. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5886. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5887. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5888. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5889. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5890. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5891. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5892. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5893. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5894. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5895. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5896. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5897. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5898. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5899. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5900. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5901. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5902. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5903. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5904. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5905. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5906. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5907. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5908. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5909. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5910. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5911. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5912. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5913. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5914. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5915. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5916. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5917. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5918. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5919. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5920. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5921. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5922. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5923. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5924. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5925. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5926. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5927. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5928. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5929. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5930. "ref/portable-net45+win8+wpa81/_._",
  5931. "ref/win8/_._",
  5932. "ref/wpa81/_._",
  5933. "ref/xamarinios10/_._",
  5934. "ref/xamarinmac20/_._",
  5935. "ref/xamarintvos10/_._",
  5936. "ref/xamarinwatchos10/_._",
  5937. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  5938. "system.diagnostics.tracing.nuspec"
  5939. ]
  5940. },
  5941. "System.Drawing.Common/6.0.0": {
  5942. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  5943. "type": "package",
  5944. "path": "system.drawing.common/6.0.0",
  5945. "files": [
  5946. ".nupkg.metadata",
  5947. ".signature.p7s",
  5948. "Icon.png",
  5949. "LICENSE.TXT",
  5950. "THIRD-PARTY-NOTICES.TXT",
  5951. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  5952. "buildTransitive/netcoreapp3.1/_._",
  5953. "lib/MonoAndroid10/_._",
  5954. "lib/MonoTouch10/_._",
  5955. "lib/net461/System.Drawing.Common.dll",
  5956. "lib/net461/System.Drawing.Common.xml",
  5957. "lib/net6.0/System.Drawing.Common.dll",
  5958. "lib/net6.0/System.Drawing.Common.xml",
  5959. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  5960. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  5961. "lib/netstandard2.0/System.Drawing.Common.dll",
  5962. "lib/netstandard2.0/System.Drawing.Common.xml",
  5963. "lib/xamarinios10/_._",
  5964. "lib/xamarinmac20/_._",
  5965. "lib/xamarintvos10/_._",
  5966. "lib/xamarinwatchos10/_._",
  5967. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  5968. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  5969. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  5970. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  5971. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  5972. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  5973. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  5974. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  5975. "system.drawing.common.6.0.0.nupkg.sha512",
  5976. "system.drawing.common.nuspec",
  5977. "useSharedDesignerContext.txt"
  5978. ]
  5979. },
  5980. "System.Globalization/4.0.11": {
  5981. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  5982. "type": "package",
  5983. "path": "system.globalization/4.0.11",
  5984. "files": [
  5985. ".nupkg.metadata",
  5986. "ThirdPartyNotices.txt",
  5987. "dotnet_library_license.txt",
  5988. "lib/MonoAndroid10/_._",
  5989. "lib/MonoTouch10/_._",
  5990. "lib/net45/_._",
  5991. "lib/portable-net45+win8+wp8+wpa81/_._",
  5992. "lib/win8/_._",
  5993. "lib/wp80/_._",
  5994. "lib/wpa81/_._",
  5995. "lib/xamarinios10/_._",
  5996. "lib/xamarinmac20/_._",
  5997. "lib/xamarintvos10/_._",
  5998. "lib/xamarinwatchos10/_._",
  5999. "ref/MonoAndroid10/_._",
  6000. "ref/MonoTouch10/_._",
  6001. "ref/net45/_._",
  6002. "ref/netcore50/System.Globalization.dll",
  6003. "ref/netcore50/System.Globalization.xml",
  6004. "ref/netcore50/de/System.Globalization.xml",
  6005. "ref/netcore50/es/System.Globalization.xml",
  6006. "ref/netcore50/fr/System.Globalization.xml",
  6007. "ref/netcore50/it/System.Globalization.xml",
  6008. "ref/netcore50/ja/System.Globalization.xml",
  6009. "ref/netcore50/ko/System.Globalization.xml",
  6010. "ref/netcore50/ru/System.Globalization.xml",
  6011. "ref/netcore50/zh-hans/System.Globalization.xml",
  6012. "ref/netcore50/zh-hant/System.Globalization.xml",
  6013. "ref/netstandard1.0/System.Globalization.dll",
  6014. "ref/netstandard1.0/System.Globalization.xml",
  6015. "ref/netstandard1.0/de/System.Globalization.xml",
  6016. "ref/netstandard1.0/es/System.Globalization.xml",
  6017. "ref/netstandard1.0/fr/System.Globalization.xml",
  6018. "ref/netstandard1.0/it/System.Globalization.xml",
  6019. "ref/netstandard1.0/ja/System.Globalization.xml",
  6020. "ref/netstandard1.0/ko/System.Globalization.xml",
  6021. "ref/netstandard1.0/ru/System.Globalization.xml",
  6022. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6023. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6024. "ref/netstandard1.3/System.Globalization.dll",
  6025. "ref/netstandard1.3/System.Globalization.xml",
  6026. "ref/netstandard1.3/de/System.Globalization.xml",
  6027. "ref/netstandard1.3/es/System.Globalization.xml",
  6028. "ref/netstandard1.3/fr/System.Globalization.xml",
  6029. "ref/netstandard1.3/it/System.Globalization.xml",
  6030. "ref/netstandard1.3/ja/System.Globalization.xml",
  6031. "ref/netstandard1.3/ko/System.Globalization.xml",
  6032. "ref/netstandard1.3/ru/System.Globalization.xml",
  6033. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6034. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6035. "ref/portable-net45+win8+wp8+wpa81/_._",
  6036. "ref/win8/_._",
  6037. "ref/wp80/_._",
  6038. "ref/wpa81/_._",
  6039. "ref/xamarinios10/_._",
  6040. "ref/xamarinmac20/_._",
  6041. "ref/xamarintvos10/_._",
  6042. "ref/xamarinwatchos10/_._",
  6043. "system.globalization.4.0.11.nupkg.sha512",
  6044. "system.globalization.nuspec"
  6045. ]
  6046. },
  6047. "System.Globalization.Calendars/4.0.1": {
  6048. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  6049. "type": "package",
  6050. "path": "system.globalization.calendars/4.0.1",
  6051. "files": [
  6052. ".nupkg.metadata",
  6053. "ThirdPartyNotices.txt",
  6054. "dotnet_library_license.txt",
  6055. "lib/MonoAndroid10/_._",
  6056. "lib/MonoTouch10/_._",
  6057. "lib/net46/System.Globalization.Calendars.dll",
  6058. "lib/xamarinios10/_._",
  6059. "lib/xamarinmac20/_._",
  6060. "lib/xamarintvos10/_._",
  6061. "lib/xamarinwatchos10/_._",
  6062. "ref/MonoAndroid10/_._",
  6063. "ref/MonoTouch10/_._",
  6064. "ref/net46/System.Globalization.Calendars.dll",
  6065. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6066. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6067. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6068. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6069. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6070. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6071. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6072. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6073. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6074. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6075. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6076. "ref/xamarinios10/_._",
  6077. "ref/xamarinmac20/_._",
  6078. "ref/xamarintvos10/_._",
  6079. "ref/xamarinwatchos10/_._",
  6080. "system.globalization.calendars.4.0.1.nupkg.sha512",
  6081. "system.globalization.calendars.nuspec"
  6082. ]
  6083. },
  6084. "System.Globalization.Extensions/4.0.1": {
  6085. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  6086. "type": "package",
  6087. "path": "system.globalization.extensions/4.0.1",
  6088. "files": [
  6089. ".nupkg.metadata",
  6090. "ThirdPartyNotices.txt",
  6091. "dotnet_library_license.txt",
  6092. "lib/MonoAndroid10/_._",
  6093. "lib/MonoTouch10/_._",
  6094. "lib/net46/System.Globalization.Extensions.dll",
  6095. "lib/xamarinios10/_._",
  6096. "lib/xamarinmac20/_._",
  6097. "lib/xamarintvos10/_._",
  6098. "lib/xamarinwatchos10/_._",
  6099. "ref/MonoAndroid10/_._",
  6100. "ref/MonoTouch10/_._",
  6101. "ref/net46/System.Globalization.Extensions.dll",
  6102. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6103. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6104. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6105. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6106. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6107. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6108. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6109. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6110. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6111. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6112. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6113. "ref/xamarinios10/_._",
  6114. "ref/xamarinmac20/_._",
  6115. "ref/xamarintvos10/_._",
  6116. "ref/xamarinwatchos10/_._",
  6117. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6118. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6119. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6120. "system.globalization.extensions.4.0.1.nupkg.sha512",
  6121. "system.globalization.extensions.nuspec"
  6122. ]
  6123. },
  6124. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  6125. "sha512": "V8T6qCdNI5OEUafOhyOnyuwHlTs56hPE6nQLNDXDNI7MIQO8MGRQVuWOruzEscURXpGbNuRz+m8qFrT8SDeEQA==",
  6126. "type": "package",
  6127. "path": "system.identitymodel.tokens.jwt/7.4.1",
  6128. "files": [
  6129. ".nupkg.metadata",
  6130. ".signature.p7s",
  6131. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6132. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6133. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  6134. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  6135. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  6136. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  6137. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  6138. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  6139. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  6140. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  6141. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6142. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6143. "system.identitymodel.tokens.jwt.7.4.1.nupkg.sha512",
  6144. "system.identitymodel.tokens.jwt.nuspec"
  6145. ]
  6146. },
  6147. "System.IO/4.3.0": {
  6148. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6149. "type": "package",
  6150. "path": "system.io/4.3.0",
  6151. "files": [
  6152. ".nupkg.metadata",
  6153. "ThirdPartyNotices.txt",
  6154. "dotnet_library_license.txt",
  6155. "lib/MonoAndroid10/_._",
  6156. "lib/MonoTouch10/_._",
  6157. "lib/net45/_._",
  6158. "lib/net462/System.IO.dll",
  6159. "lib/portable-net45+win8+wp8+wpa81/_._",
  6160. "lib/win8/_._",
  6161. "lib/wp80/_._",
  6162. "lib/wpa81/_._",
  6163. "lib/xamarinios10/_._",
  6164. "lib/xamarinmac20/_._",
  6165. "lib/xamarintvos10/_._",
  6166. "lib/xamarinwatchos10/_._",
  6167. "ref/MonoAndroid10/_._",
  6168. "ref/MonoTouch10/_._",
  6169. "ref/net45/_._",
  6170. "ref/net462/System.IO.dll",
  6171. "ref/netcore50/System.IO.dll",
  6172. "ref/netcore50/System.IO.xml",
  6173. "ref/netcore50/de/System.IO.xml",
  6174. "ref/netcore50/es/System.IO.xml",
  6175. "ref/netcore50/fr/System.IO.xml",
  6176. "ref/netcore50/it/System.IO.xml",
  6177. "ref/netcore50/ja/System.IO.xml",
  6178. "ref/netcore50/ko/System.IO.xml",
  6179. "ref/netcore50/ru/System.IO.xml",
  6180. "ref/netcore50/zh-hans/System.IO.xml",
  6181. "ref/netcore50/zh-hant/System.IO.xml",
  6182. "ref/netstandard1.0/System.IO.dll",
  6183. "ref/netstandard1.0/System.IO.xml",
  6184. "ref/netstandard1.0/de/System.IO.xml",
  6185. "ref/netstandard1.0/es/System.IO.xml",
  6186. "ref/netstandard1.0/fr/System.IO.xml",
  6187. "ref/netstandard1.0/it/System.IO.xml",
  6188. "ref/netstandard1.0/ja/System.IO.xml",
  6189. "ref/netstandard1.0/ko/System.IO.xml",
  6190. "ref/netstandard1.0/ru/System.IO.xml",
  6191. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6192. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6193. "ref/netstandard1.3/System.IO.dll",
  6194. "ref/netstandard1.3/System.IO.xml",
  6195. "ref/netstandard1.3/de/System.IO.xml",
  6196. "ref/netstandard1.3/es/System.IO.xml",
  6197. "ref/netstandard1.3/fr/System.IO.xml",
  6198. "ref/netstandard1.3/it/System.IO.xml",
  6199. "ref/netstandard1.3/ja/System.IO.xml",
  6200. "ref/netstandard1.3/ko/System.IO.xml",
  6201. "ref/netstandard1.3/ru/System.IO.xml",
  6202. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6203. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6204. "ref/netstandard1.5/System.IO.dll",
  6205. "ref/netstandard1.5/System.IO.xml",
  6206. "ref/netstandard1.5/de/System.IO.xml",
  6207. "ref/netstandard1.5/es/System.IO.xml",
  6208. "ref/netstandard1.5/fr/System.IO.xml",
  6209. "ref/netstandard1.5/it/System.IO.xml",
  6210. "ref/netstandard1.5/ja/System.IO.xml",
  6211. "ref/netstandard1.5/ko/System.IO.xml",
  6212. "ref/netstandard1.5/ru/System.IO.xml",
  6213. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6214. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6215. "ref/portable-net45+win8+wp8+wpa81/_._",
  6216. "ref/win8/_._",
  6217. "ref/wp80/_._",
  6218. "ref/wpa81/_._",
  6219. "ref/xamarinios10/_._",
  6220. "ref/xamarinmac20/_._",
  6221. "ref/xamarintvos10/_._",
  6222. "ref/xamarinwatchos10/_._",
  6223. "system.io.4.3.0.nupkg.sha512",
  6224. "system.io.nuspec"
  6225. ]
  6226. },
  6227. "System.IO.Compression/4.1.0": {
  6228. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  6229. "type": "package",
  6230. "path": "system.io.compression/4.1.0",
  6231. "files": [
  6232. ".nupkg.metadata",
  6233. "ThirdPartyNotices.txt",
  6234. "dotnet_library_license.txt",
  6235. "lib/MonoAndroid10/_._",
  6236. "lib/MonoTouch10/_._",
  6237. "lib/net45/_._",
  6238. "lib/net46/System.IO.Compression.dll",
  6239. "lib/portable-net45+win8+wpa81/_._",
  6240. "lib/win8/_._",
  6241. "lib/wpa81/_._",
  6242. "lib/xamarinios10/_._",
  6243. "lib/xamarinmac20/_._",
  6244. "lib/xamarintvos10/_._",
  6245. "lib/xamarinwatchos10/_._",
  6246. "ref/MonoAndroid10/_._",
  6247. "ref/MonoTouch10/_._",
  6248. "ref/net45/_._",
  6249. "ref/net46/System.IO.Compression.dll",
  6250. "ref/netcore50/System.IO.Compression.dll",
  6251. "ref/netcore50/System.IO.Compression.xml",
  6252. "ref/netcore50/de/System.IO.Compression.xml",
  6253. "ref/netcore50/es/System.IO.Compression.xml",
  6254. "ref/netcore50/fr/System.IO.Compression.xml",
  6255. "ref/netcore50/it/System.IO.Compression.xml",
  6256. "ref/netcore50/ja/System.IO.Compression.xml",
  6257. "ref/netcore50/ko/System.IO.Compression.xml",
  6258. "ref/netcore50/ru/System.IO.Compression.xml",
  6259. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6260. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6261. "ref/netstandard1.1/System.IO.Compression.dll",
  6262. "ref/netstandard1.1/System.IO.Compression.xml",
  6263. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6264. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6265. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6266. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6267. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6268. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6269. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6270. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6271. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6272. "ref/netstandard1.3/System.IO.Compression.dll",
  6273. "ref/netstandard1.3/System.IO.Compression.xml",
  6274. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6275. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6276. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6277. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6278. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6279. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6280. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6281. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6282. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6283. "ref/portable-net45+win8+wpa81/_._",
  6284. "ref/win8/_._",
  6285. "ref/wpa81/_._",
  6286. "ref/xamarinios10/_._",
  6287. "ref/xamarinmac20/_._",
  6288. "ref/xamarintvos10/_._",
  6289. "ref/xamarinwatchos10/_._",
  6290. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6291. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6292. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6293. "system.io.compression.4.1.0.nupkg.sha512",
  6294. "system.io.compression.nuspec"
  6295. ]
  6296. },
  6297. "System.IO.Compression.ZipFile/4.0.1": {
  6298. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  6299. "type": "package",
  6300. "path": "system.io.compression.zipfile/4.0.1",
  6301. "files": [
  6302. ".nupkg.metadata",
  6303. "ThirdPartyNotices.txt",
  6304. "dotnet_library_license.txt",
  6305. "lib/MonoAndroid10/_._",
  6306. "lib/MonoTouch10/_._",
  6307. "lib/net46/System.IO.Compression.ZipFile.dll",
  6308. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6309. "lib/xamarinios10/_._",
  6310. "lib/xamarinmac20/_._",
  6311. "lib/xamarintvos10/_._",
  6312. "lib/xamarinwatchos10/_._",
  6313. "ref/MonoAndroid10/_._",
  6314. "ref/MonoTouch10/_._",
  6315. "ref/net46/System.IO.Compression.ZipFile.dll",
  6316. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6317. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6318. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6319. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6320. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6321. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6322. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6323. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6324. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6325. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6326. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6327. "ref/xamarinios10/_._",
  6328. "ref/xamarinmac20/_._",
  6329. "ref/xamarintvos10/_._",
  6330. "ref/xamarinwatchos10/_._",
  6331. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  6332. "system.io.compression.zipfile.nuspec"
  6333. ]
  6334. },
  6335. "System.IO.FileSystem/4.0.1": {
  6336. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  6337. "type": "package",
  6338. "path": "system.io.filesystem/4.0.1",
  6339. "files": [
  6340. ".nupkg.metadata",
  6341. "ThirdPartyNotices.txt",
  6342. "dotnet_library_license.txt",
  6343. "lib/MonoAndroid10/_._",
  6344. "lib/MonoTouch10/_._",
  6345. "lib/net46/System.IO.FileSystem.dll",
  6346. "lib/xamarinios10/_._",
  6347. "lib/xamarinmac20/_._",
  6348. "lib/xamarintvos10/_._",
  6349. "lib/xamarinwatchos10/_._",
  6350. "ref/MonoAndroid10/_._",
  6351. "ref/MonoTouch10/_._",
  6352. "ref/net46/System.IO.FileSystem.dll",
  6353. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6354. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6355. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6356. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6357. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6358. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6359. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6360. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6361. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6362. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6363. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6364. "ref/xamarinios10/_._",
  6365. "ref/xamarinmac20/_._",
  6366. "ref/xamarintvos10/_._",
  6367. "ref/xamarinwatchos10/_._",
  6368. "system.io.filesystem.4.0.1.nupkg.sha512",
  6369. "system.io.filesystem.nuspec"
  6370. ]
  6371. },
  6372. "System.IO.FileSystem.Primitives/4.0.1": {
  6373. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  6374. "type": "package",
  6375. "path": "system.io.filesystem.primitives/4.0.1",
  6376. "files": [
  6377. ".nupkg.metadata",
  6378. "ThirdPartyNotices.txt",
  6379. "dotnet_library_license.txt",
  6380. "lib/MonoAndroid10/_._",
  6381. "lib/MonoTouch10/_._",
  6382. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6383. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6384. "lib/xamarinios10/_._",
  6385. "lib/xamarinmac20/_._",
  6386. "lib/xamarintvos10/_._",
  6387. "lib/xamarinwatchos10/_._",
  6388. "ref/MonoAndroid10/_._",
  6389. "ref/MonoTouch10/_._",
  6390. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6391. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6392. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6393. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6394. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6395. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6396. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6397. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6398. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6399. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6400. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6401. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6402. "ref/xamarinios10/_._",
  6403. "ref/xamarinmac20/_._",
  6404. "ref/xamarintvos10/_._",
  6405. "ref/xamarinwatchos10/_._",
  6406. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  6407. "system.io.filesystem.primitives.nuspec"
  6408. ]
  6409. },
  6410. "System.IO.Pipelines/5.0.1": {
  6411. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  6412. "type": "package",
  6413. "path": "system.io.pipelines/5.0.1",
  6414. "files": [
  6415. ".nupkg.metadata",
  6416. ".signature.p7s",
  6417. "Icon.png",
  6418. "LICENSE.TXT",
  6419. "THIRD-PARTY-NOTICES.TXT",
  6420. "lib/net461/System.IO.Pipelines.dll",
  6421. "lib/net461/System.IO.Pipelines.xml",
  6422. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6423. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6424. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6425. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6426. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6427. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6428. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6429. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6430. "system.io.pipelines.5.0.1.nupkg.sha512",
  6431. "system.io.pipelines.nuspec",
  6432. "useSharedDesignerContext.txt",
  6433. "version.txt"
  6434. ]
  6435. },
  6436. "System.Linq/4.1.0": {
  6437. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  6438. "type": "package",
  6439. "path": "system.linq/4.1.0",
  6440. "files": [
  6441. ".nupkg.metadata",
  6442. "ThirdPartyNotices.txt",
  6443. "dotnet_library_license.txt",
  6444. "lib/MonoAndroid10/_._",
  6445. "lib/MonoTouch10/_._",
  6446. "lib/net45/_._",
  6447. "lib/net463/System.Linq.dll",
  6448. "lib/netcore50/System.Linq.dll",
  6449. "lib/netstandard1.6/System.Linq.dll",
  6450. "lib/portable-net45+win8+wp8+wpa81/_._",
  6451. "lib/win8/_._",
  6452. "lib/wp80/_._",
  6453. "lib/wpa81/_._",
  6454. "lib/xamarinios10/_._",
  6455. "lib/xamarinmac20/_._",
  6456. "lib/xamarintvos10/_._",
  6457. "lib/xamarinwatchos10/_._",
  6458. "ref/MonoAndroid10/_._",
  6459. "ref/MonoTouch10/_._",
  6460. "ref/net45/_._",
  6461. "ref/net463/System.Linq.dll",
  6462. "ref/netcore50/System.Linq.dll",
  6463. "ref/netcore50/System.Linq.xml",
  6464. "ref/netcore50/de/System.Linq.xml",
  6465. "ref/netcore50/es/System.Linq.xml",
  6466. "ref/netcore50/fr/System.Linq.xml",
  6467. "ref/netcore50/it/System.Linq.xml",
  6468. "ref/netcore50/ja/System.Linq.xml",
  6469. "ref/netcore50/ko/System.Linq.xml",
  6470. "ref/netcore50/ru/System.Linq.xml",
  6471. "ref/netcore50/zh-hans/System.Linq.xml",
  6472. "ref/netcore50/zh-hant/System.Linq.xml",
  6473. "ref/netstandard1.0/System.Linq.dll",
  6474. "ref/netstandard1.0/System.Linq.xml",
  6475. "ref/netstandard1.0/de/System.Linq.xml",
  6476. "ref/netstandard1.0/es/System.Linq.xml",
  6477. "ref/netstandard1.0/fr/System.Linq.xml",
  6478. "ref/netstandard1.0/it/System.Linq.xml",
  6479. "ref/netstandard1.0/ja/System.Linq.xml",
  6480. "ref/netstandard1.0/ko/System.Linq.xml",
  6481. "ref/netstandard1.0/ru/System.Linq.xml",
  6482. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6483. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6484. "ref/netstandard1.6/System.Linq.dll",
  6485. "ref/netstandard1.6/System.Linq.xml",
  6486. "ref/netstandard1.6/de/System.Linq.xml",
  6487. "ref/netstandard1.6/es/System.Linq.xml",
  6488. "ref/netstandard1.6/fr/System.Linq.xml",
  6489. "ref/netstandard1.6/it/System.Linq.xml",
  6490. "ref/netstandard1.6/ja/System.Linq.xml",
  6491. "ref/netstandard1.6/ko/System.Linq.xml",
  6492. "ref/netstandard1.6/ru/System.Linq.xml",
  6493. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6494. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6495. "ref/portable-net45+win8+wp8+wpa81/_._",
  6496. "ref/win8/_._",
  6497. "ref/wp80/_._",
  6498. "ref/wpa81/_._",
  6499. "ref/xamarinios10/_._",
  6500. "ref/xamarinmac20/_._",
  6501. "ref/xamarintvos10/_._",
  6502. "ref/xamarinwatchos10/_._",
  6503. "system.linq.4.1.0.nupkg.sha512",
  6504. "system.linq.nuspec"
  6505. ]
  6506. },
  6507. "System.Linq.Expressions/4.1.0": {
  6508. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  6509. "type": "package",
  6510. "path": "system.linq.expressions/4.1.0",
  6511. "files": [
  6512. ".nupkg.metadata",
  6513. "ThirdPartyNotices.txt",
  6514. "dotnet_library_license.txt",
  6515. "lib/MonoAndroid10/_._",
  6516. "lib/MonoTouch10/_._",
  6517. "lib/net45/_._",
  6518. "lib/net463/System.Linq.Expressions.dll",
  6519. "lib/netcore50/System.Linq.Expressions.dll",
  6520. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6521. "lib/portable-net45+win8+wp8+wpa81/_._",
  6522. "lib/win8/_._",
  6523. "lib/wp80/_._",
  6524. "lib/wpa81/_._",
  6525. "lib/xamarinios10/_._",
  6526. "lib/xamarinmac20/_._",
  6527. "lib/xamarintvos10/_._",
  6528. "lib/xamarinwatchos10/_._",
  6529. "ref/MonoAndroid10/_._",
  6530. "ref/MonoTouch10/_._",
  6531. "ref/net45/_._",
  6532. "ref/net463/System.Linq.Expressions.dll",
  6533. "ref/netcore50/System.Linq.Expressions.dll",
  6534. "ref/netcore50/System.Linq.Expressions.xml",
  6535. "ref/netcore50/de/System.Linq.Expressions.xml",
  6536. "ref/netcore50/es/System.Linq.Expressions.xml",
  6537. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6538. "ref/netcore50/it/System.Linq.Expressions.xml",
  6539. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6540. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6541. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6542. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6543. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6544. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6545. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6546. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6547. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6548. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6549. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6550. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6551. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6552. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6553. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6554. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6555. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6556. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6557. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6558. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6559. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6560. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6561. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6562. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6563. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6564. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6565. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6566. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6567. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6568. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6569. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6570. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6571. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6572. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6573. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6574. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6575. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6576. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6577. "ref/portable-net45+win8+wp8+wpa81/_._",
  6578. "ref/win8/_._",
  6579. "ref/wp80/_._",
  6580. "ref/wpa81/_._",
  6581. "ref/xamarinios10/_._",
  6582. "ref/xamarinmac20/_._",
  6583. "ref/xamarintvos10/_._",
  6584. "ref/xamarinwatchos10/_._",
  6585. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6586. "system.linq.expressions.4.1.0.nupkg.sha512",
  6587. "system.linq.expressions.nuspec"
  6588. ]
  6589. },
  6590. "System.Memory/4.5.5": {
  6591. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6592. "type": "package",
  6593. "path": "system.memory/4.5.5",
  6594. "files": [
  6595. ".nupkg.metadata",
  6596. ".signature.p7s",
  6597. "LICENSE.TXT",
  6598. "THIRD-PARTY-NOTICES.TXT",
  6599. "lib/net461/System.Memory.dll",
  6600. "lib/net461/System.Memory.xml",
  6601. "lib/netcoreapp2.1/_._",
  6602. "lib/netstandard1.1/System.Memory.dll",
  6603. "lib/netstandard1.1/System.Memory.xml",
  6604. "lib/netstandard2.0/System.Memory.dll",
  6605. "lib/netstandard2.0/System.Memory.xml",
  6606. "ref/netcoreapp2.1/_._",
  6607. "system.memory.4.5.5.nupkg.sha512",
  6608. "system.memory.nuspec",
  6609. "useSharedDesignerContext.txt",
  6610. "version.txt"
  6611. ]
  6612. },
  6613. "System.Net.Http/4.1.0": {
  6614. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  6615. "type": "package",
  6616. "path": "system.net.http/4.1.0",
  6617. "files": [
  6618. ".nupkg.metadata",
  6619. ".signature.p7s",
  6620. "ThirdPartyNotices.txt",
  6621. "dotnet_library_license.txt",
  6622. "lib/Xamarinmac20/_._",
  6623. "lib/monoandroid10/_._",
  6624. "lib/monotouch10/_._",
  6625. "lib/net45/_._",
  6626. "lib/net46/System.Net.Http.dll",
  6627. "lib/portable-net45+win8+wpa81/_._",
  6628. "lib/win8/_._",
  6629. "lib/wpa81/_._",
  6630. "lib/xamarinios10/_._",
  6631. "lib/xamarintvos10/_._",
  6632. "lib/xamarinwatchos10/_._",
  6633. "ref/Xamarinmac20/_._",
  6634. "ref/monoandroid10/_._",
  6635. "ref/monotouch10/_._",
  6636. "ref/net45/_._",
  6637. "ref/net46/System.Net.Http.dll",
  6638. "ref/net46/System.Net.Http.xml",
  6639. "ref/net46/de/System.Net.Http.xml",
  6640. "ref/net46/es/System.Net.Http.xml",
  6641. "ref/net46/fr/System.Net.Http.xml",
  6642. "ref/net46/it/System.Net.Http.xml",
  6643. "ref/net46/ja/System.Net.Http.xml",
  6644. "ref/net46/ko/System.Net.Http.xml",
  6645. "ref/net46/ru/System.Net.Http.xml",
  6646. "ref/net46/zh-hans/System.Net.Http.xml",
  6647. "ref/net46/zh-hant/System.Net.Http.xml",
  6648. "ref/netcore50/System.Net.Http.dll",
  6649. "ref/netcore50/System.Net.Http.xml",
  6650. "ref/netcore50/de/System.Net.Http.xml",
  6651. "ref/netcore50/es/System.Net.Http.xml",
  6652. "ref/netcore50/fr/System.Net.Http.xml",
  6653. "ref/netcore50/it/System.Net.Http.xml",
  6654. "ref/netcore50/ja/System.Net.Http.xml",
  6655. "ref/netcore50/ko/System.Net.Http.xml",
  6656. "ref/netcore50/ru/System.Net.Http.xml",
  6657. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6658. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6659. "ref/netstandard1.1/System.Net.Http.dll",
  6660. "ref/netstandard1.1/System.Net.Http.xml",
  6661. "ref/netstandard1.1/de/System.Net.Http.xml",
  6662. "ref/netstandard1.1/es/System.Net.Http.xml",
  6663. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6664. "ref/netstandard1.1/it/System.Net.Http.xml",
  6665. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6666. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6667. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6668. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6669. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6670. "ref/netstandard1.3/System.Net.Http.dll",
  6671. "ref/netstandard1.3/System.Net.Http.xml",
  6672. "ref/netstandard1.3/de/System.Net.Http.xml",
  6673. "ref/netstandard1.3/es/System.Net.Http.xml",
  6674. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6675. "ref/netstandard1.3/it/System.Net.Http.xml",
  6676. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6677. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6678. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6679. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6680. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6681. "ref/portable-net45+win8+wpa81/_._",
  6682. "ref/win8/_._",
  6683. "ref/wpa81/_._",
  6684. "ref/xamarinios10/_._",
  6685. "ref/xamarintvos10/_._",
  6686. "ref/xamarinwatchos10/_._",
  6687. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6688. "runtimes/win/lib/net46/System.Net.Http.dll",
  6689. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6690. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6691. "system.net.http.4.1.0.nupkg.sha512",
  6692. "system.net.http.nuspec"
  6693. ]
  6694. },
  6695. "System.Net.NameResolution/4.0.0": {
  6696. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  6697. "type": "package",
  6698. "path": "system.net.nameresolution/4.0.0",
  6699. "files": [
  6700. ".nupkg.metadata",
  6701. ".signature.p7s",
  6702. "ThirdPartyNotices.txt",
  6703. "dotnet_library_license.txt",
  6704. "lib/MonoAndroid10/_._",
  6705. "lib/MonoTouch10/_._",
  6706. "lib/net46/System.Net.NameResolution.dll",
  6707. "lib/xamarinios10/_._",
  6708. "lib/xamarinmac20/_._",
  6709. "lib/xamarintvos10/_._",
  6710. "lib/xamarinwatchos10/_._",
  6711. "ref/MonoAndroid10/_._",
  6712. "ref/MonoTouch10/_._",
  6713. "ref/net46/System.Net.NameResolution.dll",
  6714. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6715. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6716. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6717. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6718. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6719. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6720. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6721. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6722. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6723. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6724. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6725. "ref/xamarinios10/_._",
  6726. "ref/xamarinmac20/_._",
  6727. "ref/xamarintvos10/_._",
  6728. "ref/xamarinwatchos10/_._",
  6729. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6730. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6731. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6732. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6733. "system.net.nameresolution.4.0.0.nupkg.sha512",
  6734. "system.net.nameresolution.nuspec"
  6735. ]
  6736. },
  6737. "System.Net.Primitives/4.0.11": {
  6738. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  6739. "type": "package",
  6740. "path": "system.net.primitives/4.0.11",
  6741. "files": [
  6742. ".nupkg.metadata",
  6743. "ThirdPartyNotices.txt",
  6744. "dotnet_library_license.txt",
  6745. "lib/MonoAndroid10/_._",
  6746. "lib/MonoTouch10/_._",
  6747. "lib/net45/_._",
  6748. "lib/portable-net45+win8+wp8+wpa81/_._",
  6749. "lib/win8/_._",
  6750. "lib/wp80/_._",
  6751. "lib/wpa81/_._",
  6752. "lib/xamarinios10/_._",
  6753. "lib/xamarinmac20/_._",
  6754. "lib/xamarintvos10/_._",
  6755. "lib/xamarinwatchos10/_._",
  6756. "ref/MonoAndroid10/_._",
  6757. "ref/MonoTouch10/_._",
  6758. "ref/net45/_._",
  6759. "ref/netcore50/System.Net.Primitives.dll",
  6760. "ref/netcore50/System.Net.Primitives.xml",
  6761. "ref/netcore50/de/System.Net.Primitives.xml",
  6762. "ref/netcore50/es/System.Net.Primitives.xml",
  6763. "ref/netcore50/fr/System.Net.Primitives.xml",
  6764. "ref/netcore50/it/System.Net.Primitives.xml",
  6765. "ref/netcore50/ja/System.Net.Primitives.xml",
  6766. "ref/netcore50/ko/System.Net.Primitives.xml",
  6767. "ref/netcore50/ru/System.Net.Primitives.xml",
  6768. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6769. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6770. "ref/netstandard1.0/System.Net.Primitives.dll",
  6771. "ref/netstandard1.0/System.Net.Primitives.xml",
  6772. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6773. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6774. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6775. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6776. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6777. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6778. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6779. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6780. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6781. "ref/netstandard1.1/System.Net.Primitives.dll",
  6782. "ref/netstandard1.1/System.Net.Primitives.xml",
  6783. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6784. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6785. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6786. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6787. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6788. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6789. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6790. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6791. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6792. "ref/netstandard1.3/System.Net.Primitives.dll",
  6793. "ref/netstandard1.3/System.Net.Primitives.xml",
  6794. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6795. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6796. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6797. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6798. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6799. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6800. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6801. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6802. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6803. "ref/portable-net45+win8+wp8+wpa81/_._",
  6804. "ref/win8/_._",
  6805. "ref/wp80/_._",
  6806. "ref/wpa81/_._",
  6807. "ref/xamarinios10/_._",
  6808. "ref/xamarinmac20/_._",
  6809. "ref/xamarintvos10/_._",
  6810. "ref/xamarinwatchos10/_._",
  6811. "system.net.primitives.4.0.11.nupkg.sha512",
  6812. "system.net.primitives.nuspec"
  6813. ]
  6814. },
  6815. "System.Net.Sockets/4.1.0": {
  6816. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  6817. "type": "package",
  6818. "path": "system.net.sockets/4.1.0",
  6819. "files": [
  6820. ".nupkg.metadata",
  6821. "ThirdPartyNotices.txt",
  6822. "dotnet_library_license.txt",
  6823. "lib/MonoAndroid10/_._",
  6824. "lib/MonoTouch10/_._",
  6825. "lib/net46/System.Net.Sockets.dll",
  6826. "lib/xamarinios10/_._",
  6827. "lib/xamarinmac20/_._",
  6828. "lib/xamarintvos10/_._",
  6829. "lib/xamarinwatchos10/_._",
  6830. "ref/MonoAndroid10/_._",
  6831. "ref/MonoTouch10/_._",
  6832. "ref/net46/System.Net.Sockets.dll",
  6833. "ref/netstandard1.3/System.Net.Sockets.dll",
  6834. "ref/netstandard1.3/System.Net.Sockets.xml",
  6835. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6836. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6837. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6838. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6839. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6840. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6841. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6842. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6843. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6844. "ref/xamarinios10/_._",
  6845. "ref/xamarinmac20/_._",
  6846. "ref/xamarintvos10/_._",
  6847. "ref/xamarinwatchos10/_._",
  6848. "system.net.sockets.4.1.0.nupkg.sha512",
  6849. "system.net.sockets.nuspec"
  6850. ]
  6851. },
  6852. "System.ObjectModel/4.0.12": {
  6853. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  6854. "type": "package",
  6855. "path": "system.objectmodel/4.0.12",
  6856. "files": [
  6857. ".nupkg.metadata",
  6858. "ThirdPartyNotices.txt",
  6859. "dotnet_library_license.txt",
  6860. "lib/MonoAndroid10/_._",
  6861. "lib/MonoTouch10/_._",
  6862. "lib/net45/_._",
  6863. "lib/netcore50/System.ObjectModel.dll",
  6864. "lib/netstandard1.3/System.ObjectModel.dll",
  6865. "lib/portable-net45+win8+wp8+wpa81/_._",
  6866. "lib/win8/_._",
  6867. "lib/wp80/_._",
  6868. "lib/wpa81/_._",
  6869. "lib/xamarinios10/_._",
  6870. "lib/xamarinmac20/_._",
  6871. "lib/xamarintvos10/_._",
  6872. "lib/xamarinwatchos10/_._",
  6873. "ref/MonoAndroid10/_._",
  6874. "ref/MonoTouch10/_._",
  6875. "ref/net45/_._",
  6876. "ref/netcore50/System.ObjectModel.dll",
  6877. "ref/netcore50/System.ObjectModel.xml",
  6878. "ref/netcore50/de/System.ObjectModel.xml",
  6879. "ref/netcore50/es/System.ObjectModel.xml",
  6880. "ref/netcore50/fr/System.ObjectModel.xml",
  6881. "ref/netcore50/it/System.ObjectModel.xml",
  6882. "ref/netcore50/ja/System.ObjectModel.xml",
  6883. "ref/netcore50/ko/System.ObjectModel.xml",
  6884. "ref/netcore50/ru/System.ObjectModel.xml",
  6885. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6886. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6887. "ref/netstandard1.0/System.ObjectModel.dll",
  6888. "ref/netstandard1.0/System.ObjectModel.xml",
  6889. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6890. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6891. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6892. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6893. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6894. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6895. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6896. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6897. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6898. "ref/netstandard1.3/System.ObjectModel.dll",
  6899. "ref/netstandard1.3/System.ObjectModel.xml",
  6900. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6901. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6902. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6903. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6904. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6905. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6906. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6907. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6908. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6909. "ref/portable-net45+win8+wp8+wpa81/_._",
  6910. "ref/win8/_._",
  6911. "ref/wp80/_._",
  6912. "ref/wpa81/_._",
  6913. "ref/xamarinios10/_._",
  6914. "ref/xamarinmac20/_._",
  6915. "ref/xamarintvos10/_._",
  6916. "ref/xamarinwatchos10/_._",
  6917. "system.objectmodel.4.0.12.nupkg.sha512",
  6918. "system.objectmodel.nuspec"
  6919. ]
  6920. },
  6921. "System.Reflection/4.3.0": {
  6922. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6923. "type": "package",
  6924. "path": "system.reflection/4.3.0",
  6925. "files": [
  6926. ".nupkg.metadata",
  6927. "ThirdPartyNotices.txt",
  6928. "dotnet_library_license.txt",
  6929. "lib/MonoAndroid10/_._",
  6930. "lib/MonoTouch10/_._",
  6931. "lib/net45/_._",
  6932. "lib/net462/System.Reflection.dll",
  6933. "lib/portable-net45+win8+wp8+wpa81/_._",
  6934. "lib/win8/_._",
  6935. "lib/wp80/_._",
  6936. "lib/wpa81/_._",
  6937. "lib/xamarinios10/_._",
  6938. "lib/xamarinmac20/_._",
  6939. "lib/xamarintvos10/_._",
  6940. "lib/xamarinwatchos10/_._",
  6941. "ref/MonoAndroid10/_._",
  6942. "ref/MonoTouch10/_._",
  6943. "ref/net45/_._",
  6944. "ref/net462/System.Reflection.dll",
  6945. "ref/netcore50/System.Reflection.dll",
  6946. "ref/netcore50/System.Reflection.xml",
  6947. "ref/netcore50/de/System.Reflection.xml",
  6948. "ref/netcore50/es/System.Reflection.xml",
  6949. "ref/netcore50/fr/System.Reflection.xml",
  6950. "ref/netcore50/it/System.Reflection.xml",
  6951. "ref/netcore50/ja/System.Reflection.xml",
  6952. "ref/netcore50/ko/System.Reflection.xml",
  6953. "ref/netcore50/ru/System.Reflection.xml",
  6954. "ref/netcore50/zh-hans/System.Reflection.xml",
  6955. "ref/netcore50/zh-hant/System.Reflection.xml",
  6956. "ref/netstandard1.0/System.Reflection.dll",
  6957. "ref/netstandard1.0/System.Reflection.xml",
  6958. "ref/netstandard1.0/de/System.Reflection.xml",
  6959. "ref/netstandard1.0/es/System.Reflection.xml",
  6960. "ref/netstandard1.0/fr/System.Reflection.xml",
  6961. "ref/netstandard1.0/it/System.Reflection.xml",
  6962. "ref/netstandard1.0/ja/System.Reflection.xml",
  6963. "ref/netstandard1.0/ko/System.Reflection.xml",
  6964. "ref/netstandard1.0/ru/System.Reflection.xml",
  6965. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6966. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6967. "ref/netstandard1.3/System.Reflection.dll",
  6968. "ref/netstandard1.3/System.Reflection.xml",
  6969. "ref/netstandard1.3/de/System.Reflection.xml",
  6970. "ref/netstandard1.3/es/System.Reflection.xml",
  6971. "ref/netstandard1.3/fr/System.Reflection.xml",
  6972. "ref/netstandard1.3/it/System.Reflection.xml",
  6973. "ref/netstandard1.3/ja/System.Reflection.xml",
  6974. "ref/netstandard1.3/ko/System.Reflection.xml",
  6975. "ref/netstandard1.3/ru/System.Reflection.xml",
  6976. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6977. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6978. "ref/netstandard1.5/System.Reflection.dll",
  6979. "ref/netstandard1.5/System.Reflection.xml",
  6980. "ref/netstandard1.5/de/System.Reflection.xml",
  6981. "ref/netstandard1.5/es/System.Reflection.xml",
  6982. "ref/netstandard1.5/fr/System.Reflection.xml",
  6983. "ref/netstandard1.5/it/System.Reflection.xml",
  6984. "ref/netstandard1.5/ja/System.Reflection.xml",
  6985. "ref/netstandard1.5/ko/System.Reflection.xml",
  6986. "ref/netstandard1.5/ru/System.Reflection.xml",
  6987. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6988. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6989. "ref/portable-net45+win8+wp8+wpa81/_._",
  6990. "ref/win8/_._",
  6991. "ref/wp80/_._",
  6992. "ref/wpa81/_._",
  6993. "ref/xamarinios10/_._",
  6994. "ref/xamarinmac20/_._",
  6995. "ref/xamarintvos10/_._",
  6996. "ref/xamarinwatchos10/_._",
  6997. "system.reflection.4.3.0.nupkg.sha512",
  6998. "system.reflection.nuspec"
  6999. ]
  7000. },
  7001. "System.Reflection.Emit/4.0.1": {
  7002. "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  7003. "type": "package",
  7004. "path": "system.reflection.emit/4.0.1",
  7005. "files": [
  7006. ".nupkg.metadata",
  7007. "ThirdPartyNotices.txt",
  7008. "dotnet_library_license.txt",
  7009. "lib/MonoAndroid10/_._",
  7010. "lib/net45/_._",
  7011. "lib/netcore50/System.Reflection.Emit.dll",
  7012. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7013. "lib/xamarinmac20/_._",
  7014. "ref/MonoAndroid10/_._",
  7015. "ref/net45/_._",
  7016. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7017. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7018. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7019. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7020. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7021. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7022. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7023. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7024. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7025. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7026. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7027. "ref/xamarinmac20/_._",
  7028. "system.reflection.emit.4.0.1.nupkg.sha512",
  7029. "system.reflection.emit.nuspec"
  7030. ]
  7031. },
  7032. "System.Reflection.Emit.ILGeneration/4.0.1": {
  7033. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  7034. "type": "package",
  7035. "path": "system.reflection.emit.ilgeneration/4.0.1",
  7036. "files": [
  7037. ".nupkg.metadata",
  7038. "ThirdPartyNotices.txt",
  7039. "dotnet_library_license.txt",
  7040. "lib/net45/_._",
  7041. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7042. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7043. "lib/portable-net45+wp8/_._",
  7044. "lib/wp80/_._",
  7045. "ref/net45/_._",
  7046. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7047. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7048. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7049. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7050. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7051. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7052. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7053. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7054. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7055. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7056. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7057. "ref/portable-net45+wp8/_._",
  7058. "ref/wp80/_._",
  7059. "runtimes/aot/lib/netcore50/_._",
  7060. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  7061. "system.reflection.emit.ilgeneration.nuspec"
  7062. ]
  7063. },
  7064. "System.Reflection.Emit.Lightweight/4.0.1": {
  7065. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  7066. "type": "package",
  7067. "path": "system.reflection.emit.lightweight/4.0.1",
  7068. "files": [
  7069. ".nupkg.metadata",
  7070. "ThirdPartyNotices.txt",
  7071. "dotnet_library_license.txt",
  7072. "lib/net45/_._",
  7073. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7074. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7075. "lib/portable-net45+wp8/_._",
  7076. "lib/wp80/_._",
  7077. "ref/net45/_._",
  7078. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7079. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7080. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7081. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7082. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7083. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7084. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7085. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7086. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7087. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7088. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7089. "ref/portable-net45+wp8/_._",
  7090. "ref/wp80/_._",
  7091. "runtimes/aot/lib/netcore50/_._",
  7092. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  7093. "system.reflection.emit.lightweight.nuspec"
  7094. ]
  7095. },
  7096. "System.Reflection.Extensions/4.0.1": {
  7097. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  7098. "type": "package",
  7099. "path": "system.reflection.extensions/4.0.1",
  7100. "files": [
  7101. ".nupkg.metadata",
  7102. "ThirdPartyNotices.txt",
  7103. "dotnet_library_license.txt",
  7104. "lib/MonoAndroid10/_._",
  7105. "lib/MonoTouch10/_._",
  7106. "lib/net45/_._",
  7107. "lib/portable-net45+win8+wp8+wpa81/_._",
  7108. "lib/win8/_._",
  7109. "lib/wp80/_._",
  7110. "lib/wpa81/_._",
  7111. "lib/xamarinios10/_._",
  7112. "lib/xamarinmac20/_._",
  7113. "lib/xamarintvos10/_._",
  7114. "lib/xamarinwatchos10/_._",
  7115. "ref/MonoAndroid10/_._",
  7116. "ref/MonoTouch10/_._",
  7117. "ref/net45/_._",
  7118. "ref/netcore50/System.Reflection.Extensions.dll",
  7119. "ref/netcore50/System.Reflection.Extensions.xml",
  7120. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7121. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7122. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7123. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7124. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7125. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7126. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7127. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7128. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7129. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7130. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7131. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7132. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7133. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7134. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7135. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7136. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7137. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7138. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7139. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7140. "ref/portable-net45+win8+wp8+wpa81/_._",
  7141. "ref/win8/_._",
  7142. "ref/wp80/_._",
  7143. "ref/wpa81/_._",
  7144. "ref/xamarinios10/_._",
  7145. "ref/xamarinmac20/_._",
  7146. "ref/xamarintvos10/_._",
  7147. "ref/xamarinwatchos10/_._",
  7148. "system.reflection.extensions.4.0.1.nupkg.sha512",
  7149. "system.reflection.extensions.nuspec"
  7150. ]
  7151. },
  7152. "System.Reflection.Primitives/4.3.0": {
  7153. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7154. "type": "package",
  7155. "path": "system.reflection.primitives/4.3.0",
  7156. "files": [
  7157. ".nupkg.metadata",
  7158. "ThirdPartyNotices.txt",
  7159. "dotnet_library_license.txt",
  7160. "lib/MonoAndroid10/_._",
  7161. "lib/MonoTouch10/_._",
  7162. "lib/net45/_._",
  7163. "lib/portable-net45+win8+wp8+wpa81/_._",
  7164. "lib/win8/_._",
  7165. "lib/wp80/_._",
  7166. "lib/wpa81/_._",
  7167. "lib/xamarinios10/_._",
  7168. "lib/xamarinmac20/_._",
  7169. "lib/xamarintvos10/_._",
  7170. "lib/xamarinwatchos10/_._",
  7171. "ref/MonoAndroid10/_._",
  7172. "ref/MonoTouch10/_._",
  7173. "ref/net45/_._",
  7174. "ref/netcore50/System.Reflection.Primitives.dll",
  7175. "ref/netcore50/System.Reflection.Primitives.xml",
  7176. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7177. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7178. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7179. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7180. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7181. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7182. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7183. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7184. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7185. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7186. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7187. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7188. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7189. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7190. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7191. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7192. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7193. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7194. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7195. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7196. "ref/portable-net45+win8+wp8+wpa81/_._",
  7197. "ref/win8/_._",
  7198. "ref/wp80/_._",
  7199. "ref/wpa81/_._",
  7200. "ref/xamarinios10/_._",
  7201. "ref/xamarinmac20/_._",
  7202. "ref/xamarintvos10/_._",
  7203. "ref/xamarinwatchos10/_._",
  7204. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7205. "system.reflection.primitives.nuspec"
  7206. ]
  7207. },
  7208. "System.Reflection.TypeExtensions/4.1.0": {
  7209. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  7210. "type": "package",
  7211. "path": "system.reflection.typeextensions/4.1.0",
  7212. "files": [
  7213. ".nupkg.metadata",
  7214. "ThirdPartyNotices.txt",
  7215. "dotnet_library_license.txt",
  7216. "lib/MonoAndroid10/_._",
  7217. "lib/MonoTouch10/_._",
  7218. "lib/net46/System.Reflection.TypeExtensions.dll",
  7219. "lib/net462/System.Reflection.TypeExtensions.dll",
  7220. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7221. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7222. "lib/xamarinios10/_._",
  7223. "lib/xamarinmac20/_._",
  7224. "lib/xamarintvos10/_._",
  7225. "lib/xamarinwatchos10/_._",
  7226. "ref/MonoAndroid10/_._",
  7227. "ref/MonoTouch10/_._",
  7228. "ref/net46/System.Reflection.TypeExtensions.dll",
  7229. "ref/net462/System.Reflection.TypeExtensions.dll",
  7230. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7231. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7232. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7233. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7234. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7235. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7236. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7237. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7238. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7239. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7240. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7241. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7242. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7243. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7244. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7245. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7246. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7247. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7248. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7249. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7250. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7251. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7252. "ref/xamarinios10/_._",
  7253. "ref/xamarinmac20/_._",
  7254. "ref/xamarintvos10/_._",
  7255. "ref/xamarinwatchos10/_._",
  7256. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7257. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  7258. "system.reflection.typeextensions.nuspec"
  7259. ]
  7260. },
  7261. "System.Resources.ResourceManager/4.0.1": {
  7262. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  7263. "type": "package",
  7264. "path": "system.resources.resourcemanager/4.0.1",
  7265. "files": [
  7266. ".nupkg.metadata",
  7267. "ThirdPartyNotices.txt",
  7268. "dotnet_library_license.txt",
  7269. "lib/MonoAndroid10/_._",
  7270. "lib/MonoTouch10/_._",
  7271. "lib/net45/_._",
  7272. "lib/portable-net45+win8+wp8+wpa81/_._",
  7273. "lib/win8/_._",
  7274. "lib/wp80/_._",
  7275. "lib/wpa81/_._",
  7276. "lib/xamarinios10/_._",
  7277. "lib/xamarinmac20/_._",
  7278. "lib/xamarintvos10/_._",
  7279. "lib/xamarinwatchos10/_._",
  7280. "ref/MonoAndroid10/_._",
  7281. "ref/MonoTouch10/_._",
  7282. "ref/net45/_._",
  7283. "ref/netcore50/System.Resources.ResourceManager.dll",
  7284. "ref/netcore50/System.Resources.ResourceManager.xml",
  7285. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7286. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7287. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7288. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7289. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7290. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7291. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7292. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7293. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7294. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7295. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7296. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7297. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7298. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7299. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7300. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7301. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7302. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7303. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7304. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7305. "ref/portable-net45+win8+wp8+wpa81/_._",
  7306. "ref/win8/_._",
  7307. "ref/wp80/_._",
  7308. "ref/wpa81/_._",
  7309. "ref/xamarinios10/_._",
  7310. "ref/xamarinmac20/_._",
  7311. "ref/xamarintvos10/_._",
  7312. "ref/xamarinwatchos10/_._",
  7313. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  7314. "system.resources.resourcemanager.nuspec"
  7315. ]
  7316. },
  7317. "System.Runtime/4.3.0": {
  7318. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7319. "type": "package",
  7320. "path": "system.runtime/4.3.0",
  7321. "files": [
  7322. ".nupkg.metadata",
  7323. "ThirdPartyNotices.txt",
  7324. "dotnet_library_license.txt",
  7325. "lib/MonoAndroid10/_._",
  7326. "lib/MonoTouch10/_._",
  7327. "lib/net45/_._",
  7328. "lib/net462/System.Runtime.dll",
  7329. "lib/portable-net45+win8+wp80+wpa81/_._",
  7330. "lib/win8/_._",
  7331. "lib/wp80/_._",
  7332. "lib/wpa81/_._",
  7333. "lib/xamarinios10/_._",
  7334. "lib/xamarinmac20/_._",
  7335. "lib/xamarintvos10/_._",
  7336. "lib/xamarinwatchos10/_._",
  7337. "ref/MonoAndroid10/_._",
  7338. "ref/MonoTouch10/_._",
  7339. "ref/net45/_._",
  7340. "ref/net462/System.Runtime.dll",
  7341. "ref/netcore50/System.Runtime.dll",
  7342. "ref/netcore50/System.Runtime.xml",
  7343. "ref/netcore50/de/System.Runtime.xml",
  7344. "ref/netcore50/es/System.Runtime.xml",
  7345. "ref/netcore50/fr/System.Runtime.xml",
  7346. "ref/netcore50/it/System.Runtime.xml",
  7347. "ref/netcore50/ja/System.Runtime.xml",
  7348. "ref/netcore50/ko/System.Runtime.xml",
  7349. "ref/netcore50/ru/System.Runtime.xml",
  7350. "ref/netcore50/zh-hans/System.Runtime.xml",
  7351. "ref/netcore50/zh-hant/System.Runtime.xml",
  7352. "ref/netstandard1.0/System.Runtime.dll",
  7353. "ref/netstandard1.0/System.Runtime.xml",
  7354. "ref/netstandard1.0/de/System.Runtime.xml",
  7355. "ref/netstandard1.0/es/System.Runtime.xml",
  7356. "ref/netstandard1.0/fr/System.Runtime.xml",
  7357. "ref/netstandard1.0/it/System.Runtime.xml",
  7358. "ref/netstandard1.0/ja/System.Runtime.xml",
  7359. "ref/netstandard1.0/ko/System.Runtime.xml",
  7360. "ref/netstandard1.0/ru/System.Runtime.xml",
  7361. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7362. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7363. "ref/netstandard1.2/System.Runtime.dll",
  7364. "ref/netstandard1.2/System.Runtime.xml",
  7365. "ref/netstandard1.2/de/System.Runtime.xml",
  7366. "ref/netstandard1.2/es/System.Runtime.xml",
  7367. "ref/netstandard1.2/fr/System.Runtime.xml",
  7368. "ref/netstandard1.2/it/System.Runtime.xml",
  7369. "ref/netstandard1.2/ja/System.Runtime.xml",
  7370. "ref/netstandard1.2/ko/System.Runtime.xml",
  7371. "ref/netstandard1.2/ru/System.Runtime.xml",
  7372. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7373. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7374. "ref/netstandard1.3/System.Runtime.dll",
  7375. "ref/netstandard1.3/System.Runtime.xml",
  7376. "ref/netstandard1.3/de/System.Runtime.xml",
  7377. "ref/netstandard1.3/es/System.Runtime.xml",
  7378. "ref/netstandard1.3/fr/System.Runtime.xml",
  7379. "ref/netstandard1.3/it/System.Runtime.xml",
  7380. "ref/netstandard1.3/ja/System.Runtime.xml",
  7381. "ref/netstandard1.3/ko/System.Runtime.xml",
  7382. "ref/netstandard1.3/ru/System.Runtime.xml",
  7383. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7384. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7385. "ref/netstandard1.5/System.Runtime.dll",
  7386. "ref/netstandard1.5/System.Runtime.xml",
  7387. "ref/netstandard1.5/de/System.Runtime.xml",
  7388. "ref/netstandard1.5/es/System.Runtime.xml",
  7389. "ref/netstandard1.5/fr/System.Runtime.xml",
  7390. "ref/netstandard1.5/it/System.Runtime.xml",
  7391. "ref/netstandard1.5/ja/System.Runtime.xml",
  7392. "ref/netstandard1.5/ko/System.Runtime.xml",
  7393. "ref/netstandard1.5/ru/System.Runtime.xml",
  7394. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7395. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7396. "ref/portable-net45+win8+wp80+wpa81/_._",
  7397. "ref/win8/_._",
  7398. "ref/wp80/_._",
  7399. "ref/wpa81/_._",
  7400. "ref/xamarinios10/_._",
  7401. "ref/xamarinmac20/_._",
  7402. "ref/xamarintvos10/_._",
  7403. "ref/xamarinwatchos10/_._",
  7404. "system.runtime.4.3.0.nupkg.sha512",
  7405. "system.runtime.nuspec"
  7406. ]
  7407. },
  7408. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7409. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7410. "type": "package",
  7411. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7412. "files": [
  7413. ".nupkg.metadata",
  7414. ".signature.p7s",
  7415. "Icon.png",
  7416. "LICENSE.TXT",
  7417. "THIRD-PARTY-NOTICES.TXT",
  7418. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  7419. "buildTransitive/netcoreapp3.1/_._",
  7420. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7421. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7422. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  7423. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  7424. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  7425. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  7426. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7427. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7428. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  7429. "system.runtime.compilerservices.unsafe.nuspec",
  7430. "useSharedDesignerContext.txt"
  7431. ]
  7432. },
  7433. "System.Runtime.Extensions/4.1.0": {
  7434. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  7435. "type": "package",
  7436. "path": "system.runtime.extensions/4.1.0",
  7437. "files": [
  7438. ".nupkg.metadata",
  7439. "ThirdPartyNotices.txt",
  7440. "dotnet_library_license.txt",
  7441. "lib/MonoAndroid10/_._",
  7442. "lib/MonoTouch10/_._",
  7443. "lib/net45/_._",
  7444. "lib/net462/System.Runtime.Extensions.dll",
  7445. "lib/portable-net45+win8+wp8+wpa81/_._",
  7446. "lib/win8/_._",
  7447. "lib/wp80/_._",
  7448. "lib/wpa81/_._",
  7449. "lib/xamarinios10/_._",
  7450. "lib/xamarinmac20/_._",
  7451. "lib/xamarintvos10/_._",
  7452. "lib/xamarinwatchos10/_._",
  7453. "ref/MonoAndroid10/_._",
  7454. "ref/MonoTouch10/_._",
  7455. "ref/net45/_._",
  7456. "ref/net462/System.Runtime.Extensions.dll",
  7457. "ref/netcore50/System.Runtime.Extensions.dll",
  7458. "ref/netcore50/System.Runtime.Extensions.xml",
  7459. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7460. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7461. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7462. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7463. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7464. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7465. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7466. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7467. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7468. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7469. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7470. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7471. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7472. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7473. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7474. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7475. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7476. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7477. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7478. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7479. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7480. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7481. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7482. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7483. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7484. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7485. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7486. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7487. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7488. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7489. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7490. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7491. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7492. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7493. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7494. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7495. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7496. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7497. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7498. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7499. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7500. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7501. "ref/portable-net45+win8+wp8+wpa81/_._",
  7502. "ref/win8/_._",
  7503. "ref/wp80/_._",
  7504. "ref/wpa81/_._",
  7505. "ref/xamarinios10/_._",
  7506. "ref/xamarinmac20/_._",
  7507. "ref/xamarintvos10/_._",
  7508. "ref/xamarinwatchos10/_._",
  7509. "system.runtime.extensions.4.1.0.nupkg.sha512",
  7510. "system.runtime.extensions.nuspec"
  7511. ]
  7512. },
  7513. "System.Runtime.Handles/4.0.1": {
  7514. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  7515. "type": "package",
  7516. "path": "system.runtime.handles/4.0.1",
  7517. "files": [
  7518. ".nupkg.metadata",
  7519. "ThirdPartyNotices.txt",
  7520. "dotnet_library_license.txt",
  7521. "lib/MonoAndroid10/_._",
  7522. "lib/MonoTouch10/_._",
  7523. "lib/net46/_._",
  7524. "lib/xamarinios10/_._",
  7525. "lib/xamarinmac20/_._",
  7526. "lib/xamarintvos10/_._",
  7527. "lib/xamarinwatchos10/_._",
  7528. "ref/MonoAndroid10/_._",
  7529. "ref/MonoTouch10/_._",
  7530. "ref/net46/_._",
  7531. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7532. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7533. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7534. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7535. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7536. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7537. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7538. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7539. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7540. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7541. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7542. "ref/xamarinios10/_._",
  7543. "ref/xamarinmac20/_._",
  7544. "ref/xamarintvos10/_._",
  7545. "ref/xamarinwatchos10/_._",
  7546. "system.runtime.handles.4.0.1.nupkg.sha512",
  7547. "system.runtime.handles.nuspec"
  7548. ]
  7549. },
  7550. "System.Runtime.InteropServices/4.1.0": {
  7551. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  7552. "type": "package",
  7553. "path": "system.runtime.interopservices/4.1.0",
  7554. "files": [
  7555. ".nupkg.metadata",
  7556. "ThirdPartyNotices.txt",
  7557. "dotnet_library_license.txt",
  7558. "lib/MonoAndroid10/_._",
  7559. "lib/MonoTouch10/_._",
  7560. "lib/net45/_._",
  7561. "lib/net462/System.Runtime.InteropServices.dll",
  7562. "lib/portable-net45+win8+wpa81/_._",
  7563. "lib/win8/_._",
  7564. "lib/wpa81/_._",
  7565. "lib/xamarinios10/_._",
  7566. "lib/xamarinmac20/_._",
  7567. "lib/xamarintvos10/_._",
  7568. "lib/xamarinwatchos10/_._",
  7569. "ref/MonoAndroid10/_._",
  7570. "ref/MonoTouch10/_._",
  7571. "ref/net45/_._",
  7572. "ref/net462/System.Runtime.InteropServices.dll",
  7573. "ref/netcore50/System.Runtime.InteropServices.dll",
  7574. "ref/netcore50/System.Runtime.InteropServices.xml",
  7575. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7576. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7577. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7578. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7579. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7580. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7581. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7582. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7583. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7584. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7585. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7586. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7587. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7588. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7589. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7590. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7591. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7592. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7593. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7594. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7595. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7596. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7597. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7598. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7599. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7600. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7601. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7602. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7603. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7604. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7605. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7606. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7607. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7608. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7609. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7610. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7611. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7612. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7613. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7614. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7615. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7616. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7617. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7618. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7619. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7620. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7621. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7622. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7623. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7624. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7625. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7626. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7627. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7628. "ref/portable-net45+win8+wpa81/_._",
  7629. "ref/win8/_._",
  7630. "ref/wpa81/_._",
  7631. "ref/xamarinios10/_._",
  7632. "ref/xamarinmac20/_._",
  7633. "ref/xamarintvos10/_._",
  7634. "ref/xamarinwatchos10/_._",
  7635. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  7636. "system.runtime.interopservices.nuspec"
  7637. ]
  7638. },
  7639. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  7640. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  7641. "type": "package",
  7642. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  7643. "files": [
  7644. ".nupkg.metadata",
  7645. "ThirdPartyNotices.txt",
  7646. "dotnet_library_license.txt",
  7647. "lib/MonoAndroid10/_._",
  7648. "lib/MonoTouch10/_._",
  7649. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7650. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7651. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7652. "lib/xamarinios10/_._",
  7653. "lib/xamarinmac20/_._",
  7654. "lib/xamarintvos10/_._",
  7655. "lib/xamarinwatchos10/_._",
  7656. "ref/MonoAndroid10/_._",
  7657. "ref/MonoTouch10/_._",
  7658. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7659. "ref/xamarinios10/_._",
  7660. "ref/xamarinmac20/_._",
  7661. "ref/xamarintvos10/_._",
  7662. "ref/xamarinwatchos10/_._",
  7663. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7664. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7665. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7666. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7667. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7668. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  7669. "system.runtime.interopservices.runtimeinformation.nuspec"
  7670. ]
  7671. },
  7672. "System.Runtime.Numerics/4.0.1": {
  7673. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  7674. "type": "package",
  7675. "path": "system.runtime.numerics/4.0.1",
  7676. "files": [
  7677. ".nupkg.metadata",
  7678. "ThirdPartyNotices.txt",
  7679. "dotnet_library_license.txt",
  7680. "lib/MonoAndroid10/_._",
  7681. "lib/MonoTouch10/_._",
  7682. "lib/net45/_._",
  7683. "lib/netcore50/System.Runtime.Numerics.dll",
  7684. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7685. "lib/portable-net45+win8+wpa81/_._",
  7686. "lib/win8/_._",
  7687. "lib/wpa81/_._",
  7688. "lib/xamarinios10/_._",
  7689. "lib/xamarinmac20/_._",
  7690. "lib/xamarintvos10/_._",
  7691. "lib/xamarinwatchos10/_._",
  7692. "ref/MonoAndroid10/_._",
  7693. "ref/MonoTouch10/_._",
  7694. "ref/net45/_._",
  7695. "ref/netcore50/System.Runtime.Numerics.dll",
  7696. "ref/netcore50/System.Runtime.Numerics.xml",
  7697. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7698. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7699. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7700. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7701. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7702. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7703. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7704. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7705. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7706. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7707. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7708. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7709. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7710. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7711. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7712. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7713. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7714. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7715. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7716. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7717. "ref/portable-net45+win8+wpa81/_._",
  7718. "ref/win8/_._",
  7719. "ref/wpa81/_._",
  7720. "ref/xamarinios10/_._",
  7721. "ref/xamarinmac20/_._",
  7722. "ref/xamarintvos10/_._",
  7723. "ref/xamarinwatchos10/_._",
  7724. "system.runtime.numerics.4.0.1.nupkg.sha512",
  7725. "system.runtime.numerics.nuspec"
  7726. ]
  7727. },
  7728. "System.Security.AccessControl/6.0.0": {
  7729. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  7730. "type": "package",
  7731. "path": "system.security.accesscontrol/6.0.0",
  7732. "files": [
  7733. ".nupkg.metadata",
  7734. ".signature.p7s",
  7735. "Icon.png",
  7736. "LICENSE.TXT",
  7737. "THIRD-PARTY-NOTICES.TXT",
  7738. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  7739. "buildTransitive/netcoreapp3.1/_._",
  7740. "lib/net461/System.Security.AccessControl.dll",
  7741. "lib/net461/System.Security.AccessControl.xml",
  7742. "lib/net6.0/System.Security.AccessControl.dll",
  7743. "lib/net6.0/System.Security.AccessControl.xml",
  7744. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7745. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7746. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7747. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7748. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  7749. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  7750. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  7751. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  7752. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  7753. "system.security.accesscontrol.nuspec",
  7754. "useSharedDesignerContext.txt"
  7755. ]
  7756. },
  7757. "System.Security.Cryptography.Algorithms/4.2.0": {
  7758. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  7759. "type": "package",
  7760. "path": "system.security.cryptography.algorithms/4.2.0",
  7761. "files": [
  7762. ".nupkg.metadata",
  7763. "ThirdPartyNotices.txt",
  7764. "dotnet_library_license.txt",
  7765. "lib/MonoAndroid10/_._",
  7766. "lib/MonoTouch10/_._",
  7767. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7768. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7769. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7770. "lib/xamarinios10/_._",
  7771. "lib/xamarinmac20/_._",
  7772. "lib/xamarintvos10/_._",
  7773. "lib/xamarinwatchos10/_._",
  7774. "ref/MonoAndroid10/_._",
  7775. "ref/MonoTouch10/_._",
  7776. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7777. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7778. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7779. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7780. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7781. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7782. "ref/xamarinios10/_._",
  7783. "ref/xamarinmac20/_._",
  7784. "ref/xamarintvos10/_._",
  7785. "ref/xamarinwatchos10/_._",
  7786. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7787. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7788. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7789. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7790. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7791. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7792. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  7793. "system.security.cryptography.algorithms.nuspec"
  7794. ]
  7795. },
  7796. "System.Security.Cryptography.Cng/4.5.0": {
  7797. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  7798. "type": "package",
  7799. "path": "system.security.cryptography.cng/4.5.0",
  7800. "files": [
  7801. ".nupkg.metadata",
  7802. ".signature.p7s",
  7803. "LICENSE.TXT",
  7804. "THIRD-PARTY-NOTICES.TXT",
  7805. "lib/MonoAndroid10/_._",
  7806. "lib/MonoTouch10/_._",
  7807. "lib/net46/System.Security.Cryptography.Cng.dll",
  7808. "lib/net461/System.Security.Cryptography.Cng.dll",
  7809. "lib/net462/System.Security.Cryptography.Cng.dll",
  7810. "lib/net47/System.Security.Cryptography.Cng.dll",
  7811. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7812. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7813. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7814. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7815. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7816. "lib/uap10.0.16299/_._",
  7817. "lib/xamarinios10/_._",
  7818. "lib/xamarinmac20/_._",
  7819. "lib/xamarintvos10/_._",
  7820. "lib/xamarinwatchos10/_._",
  7821. "ref/MonoAndroid10/_._",
  7822. "ref/MonoTouch10/_._",
  7823. "ref/net46/System.Security.Cryptography.Cng.dll",
  7824. "ref/net461/System.Security.Cryptography.Cng.dll",
  7825. "ref/net461/System.Security.Cryptography.Cng.xml",
  7826. "ref/net462/System.Security.Cryptography.Cng.dll",
  7827. "ref/net462/System.Security.Cryptography.Cng.xml",
  7828. "ref/net47/System.Security.Cryptography.Cng.dll",
  7829. "ref/net47/System.Security.Cryptography.Cng.xml",
  7830. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7831. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7832. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7833. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7834. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7835. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7836. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7837. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7838. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7839. "ref/uap10.0.16299/_._",
  7840. "ref/xamarinios10/_._",
  7841. "ref/xamarinmac20/_._",
  7842. "ref/xamarintvos10/_._",
  7843. "ref/xamarinwatchos10/_._",
  7844. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7845. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7846. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7847. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7848. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7849. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7850. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7851. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7852. "runtimes/win/lib/uap10.0.16299/_._",
  7853. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  7854. "system.security.cryptography.cng.nuspec",
  7855. "useSharedDesignerContext.txt",
  7856. "version.txt"
  7857. ]
  7858. },
  7859. "System.Security.Cryptography.Csp/4.0.0": {
  7860. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  7861. "type": "package",
  7862. "path": "system.security.cryptography.csp/4.0.0",
  7863. "files": [
  7864. ".nupkg.metadata",
  7865. "ThirdPartyNotices.txt",
  7866. "dotnet_library_license.txt",
  7867. "lib/MonoAndroid10/_._",
  7868. "lib/MonoTouch10/_._",
  7869. "lib/net46/System.Security.Cryptography.Csp.dll",
  7870. "lib/xamarinios10/_._",
  7871. "lib/xamarinmac20/_._",
  7872. "lib/xamarintvos10/_._",
  7873. "lib/xamarinwatchos10/_._",
  7874. "ref/MonoAndroid10/_._",
  7875. "ref/MonoTouch10/_._",
  7876. "ref/net46/System.Security.Cryptography.Csp.dll",
  7877. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7878. "ref/xamarinios10/_._",
  7879. "ref/xamarinmac20/_._",
  7880. "ref/xamarintvos10/_._",
  7881. "ref/xamarinwatchos10/_._",
  7882. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7883. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7884. "runtimes/win/lib/netcore50/_._",
  7885. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7886. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  7887. "system.security.cryptography.csp.nuspec"
  7888. ]
  7889. },
  7890. "System.Security.Cryptography.Encoding/4.0.0": {
  7891. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  7892. "type": "package",
  7893. "path": "system.security.cryptography.encoding/4.0.0",
  7894. "files": [
  7895. ".nupkg.metadata",
  7896. "ThirdPartyNotices.txt",
  7897. "dotnet_library_license.txt",
  7898. "lib/MonoAndroid10/_._",
  7899. "lib/MonoTouch10/_._",
  7900. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7901. "lib/xamarinios10/_._",
  7902. "lib/xamarinmac20/_._",
  7903. "lib/xamarintvos10/_._",
  7904. "lib/xamarinwatchos10/_._",
  7905. "ref/MonoAndroid10/_._",
  7906. "ref/MonoTouch10/_._",
  7907. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7908. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7909. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7910. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7911. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7912. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7913. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7914. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7915. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7916. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7917. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7918. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7919. "ref/xamarinios10/_._",
  7920. "ref/xamarinmac20/_._",
  7921. "ref/xamarintvos10/_._",
  7922. "ref/xamarinwatchos10/_._",
  7923. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7924. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7925. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7926. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  7927. "system.security.cryptography.encoding.nuspec"
  7928. ]
  7929. },
  7930. "System.Security.Cryptography.OpenSsl/4.0.0": {
  7931. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  7932. "type": "package",
  7933. "path": "system.security.cryptography.openssl/4.0.0",
  7934. "files": [
  7935. ".nupkg.metadata",
  7936. "ThirdPartyNotices.txt",
  7937. "dotnet_library_license.txt",
  7938. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7939. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7940. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7941. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  7942. "system.security.cryptography.openssl.nuspec"
  7943. ]
  7944. },
  7945. "System.Security.Cryptography.Primitives/4.0.0": {
  7946. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  7947. "type": "package",
  7948. "path": "system.security.cryptography.primitives/4.0.0",
  7949. "files": [
  7950. ".nupkg.metadata",
  7951. "ThirdPartyNotices.txt",
  7952. "dotnet_library_license.txt",
  7953. "lib/MonoAndroid10/_._",
  7954. "lib/MonoTouch10/_._",
  7955. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7956. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7957. "lib/xamarinios10/_._",
  7958. "lib/xamarinmac20/_._",
  7959. "lib/xamarintvos10/_._",
  7960. "lib/xamarinwatchos10/_._",
  7961. "ref/MonoAndroid10/_._",
  7962. "ref/MonoTouch10/_._",
  7963. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7964. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7965. "ref/xamarinios10/_._",
  7966. "ref/xamarinmac20/_._",
  7967. "ref/xamarintvos10/_._",
  7968. "ref/xamarinwatchos10/_._",
  7969. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  7970. "system.security.cryptography.primitives.nuspec"
  7971. ]
  7972. },
  7973. "System.Security.Cryptography.ProtectedData/6.0.0": {
  7974. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  7975. "type": "package",
  7976. "path": "system.security.cryptography.protecteddata/6.0.0",
  7977. "files": [
  7978. ".nupkg.metadata",
  7979. ".signature.p7s",
  7980. "Icon.png",
  7981. "LICENSE.TXT",
  7982. "THIRD-PARTY-NOTICES.TXT",
  7983. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  7984. "buildTransitive/netcoreapp3.1/_._",
  7985. "lib/MonoAndroid10/_._",
  7986. "lib/MonoTouch10/_._",
  7987. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7988. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7989. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7990. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7991. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7992. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7993. "lib/xamarinios10/_._",
  7994. "lib/xamarinmac20/_._",
  7995. "lib/xamarintvos10/_._",
  7996. "lib/xamarinwatchos10/_._",
  7997. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7998. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7999. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  8000. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  8001. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8002. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8003. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  8004. "system.security.cryptography.protecteddata.nuspec",
  8005. "useSharedDesignerContext.txt"
  8006. ]
  8007. },
  8008. "System.Security.Cryptography.X509Certificates/4.1.0": {
  8009. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  8010. "type": "package",
  8011. "path": "system.security.cryptography.x509certificates/4.1.0",
  8012. "files": [
  8013. ".nupkg.metadata",
  8014. "ThirdPartyNotices.txt",
  8015. "dotnet_library_license.txt",
  8016. "lib/MonoAndroid10/_._",
  8017. "lib/MonoTouch10/_._",
  8018. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8019. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8020. "lib/xamarinios10/_._",
  8021. "lib/xamarinmac20/_._",
  8022. "lib/xamarintvos10/_._",
  8023. "lib/xamarinwatchos10/_._",
  8024. "ref/MonoAndroid10/_._",
  8025. "ref/MonoTouch10/_._",
  8026. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8027. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8028. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8029. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8030. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8031. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8032. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8033. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8034. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8035. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8036. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8037. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8038. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8039. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8040. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8041. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8042. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8043. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8044. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8045. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8046. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8047. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8048. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8049. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8050. "ref/xamarinios10/_._",
  8051. "ref/xamarinmac20/_._",
  8052. "ref/xamarintvos10/_._",
  8053. "ref/xamarinwatchos10/_._",
  8054. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8055. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8056. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8057. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8058. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8059. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  8060. "system.security.cryptography.x509certificates.nuspec"
  8061. ]
  8062. },
  8063. "System.Security.Permissions/6.0.0": {
  8064. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  8065. "type": "package",
  8066. "path": "system.security.permissions/6.0.0",
  8067. "files": [
  8068. ".nupkg.metadata",
  8069. ".signature.p7s",
  8070. "Icon.png",
  8071. "LICENSE.TXT",
  8072. "THIRD-PARTY-NOTICES.TXT",
  8073. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  8074. "buildTransitive/netcoreapp3.1/_._",
  8075. "lib/net461/System.Security.Permissions.dll",
  8076. "lib/net461/System.Security.Permissions.xml",
  8077. "lib/net5.0/System.Security.Permissions.dll",
  8078. "lib/net5.0/System.Security.Permissions.xml",
  8079. "lib/net6.0/System.Security.Permissions.dll",
  8080. "lib/net6.0/System.Security.Permissions.xml",
  8081. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  8082. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  8083. "lib/netstandard2.0/System.Security.Permissions.dll",
  8084. "lib/netstandard2.0/System.Security.Permissions.xml",
  8085. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  8086. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  8087. "system.security.permissions.6.0.0.nupkg.sha512",
  8088. "system.security.permissions.nuspec",
  8089. "useSharedDesignerContext.txt"
  8090. ]
  8091. },
  8092. "System.Security.Principal.Windows/5.0.0": {
  8093. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  8094. "type": "package",
  8095. "path": "system.security.principal.windows/5.0.0",
  8096. "files": [
  8097. ".nupkg.metadata",
  8098. ".signature.p7s",
  8099. "Icon.png",
  8100. "LICENSE.TXT",
  8101. "THIRD-PARTY-NOTICES.TXT",
  8102. "lib/net46/System.Security.Principal.Windows.dll",
  8103. "lib/net461/System.Security.Principal.Windows.dll",
  8104. "lib/net461/System.Security.Principal.Windows.xml",
  8105. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8106. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8107. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8108. "lib/uap10.0.16299/_._",
  8109. "ref/net46/System.Security.Principal.Windows.dll",
  8110. "ref/net461/System.Security.Principal.Windows.dll",
  8111. "ref/net461/System.Security.Principal.Windows.xml",
  8112. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8113. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8114. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8115. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8116. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8117. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8118. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8119. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8120. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8121. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8122. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8123. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8124. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8125. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8126. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8127. "ref/uap10.0.16299/_._",
  8128. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8129. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8130. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8131. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8132. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8133. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8134. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8135. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8136. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8137. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8138. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8139. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8140. "runtimes/win/lib/uap10.0.16299/_._",
  8141. "system.security.principal.windows.5.0.0.nupkg.sha512",
  8142. "system.security.principal.windows.nuspec",
  8143. "useSharedDesignerContext.txt",
  8144. "version.txt"
  8145. ]
  8146. },
  8147. "System.ServiceProcess.ServiceController/8.0.0": {
  8148. "sha512": "jtYVG3bpw2n/NvNnP2g/JLri0D4UtfusTvLeH6cZPNAEjJXJVGspS3wLgVvjNbm+wjaYkFgsXejMTocV1T5DIQ==",
  8149. "type": "package",
  8150. "path": "system.serviceprocess.servicecontroller/8.0.0",
  8151. "files": [
  8152. ".nupkg.metadata",
  8153. ".signature.p7s",
  8154. "Icon.png",
  8155. "LICENSE.TXT",
  8156. "PACKAGE.md",
  8157. "THIRD-PARTY-NOTICES.TXT",
  8158. "buildTransitive/net461/System.ServiceProcess.ServiceController.targets",
  8159. "buildTransitive/net462/_._",
  8160. "buildTransitive/net6.0/_._",
  8161. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets",
  8162. "lib/net462/System.ServiceProcess.ServiceController.dll",
  8163. "lib/net462/System.ServiceProcess.ServiceController.xml",
  8164. "lib/net6.0/System.ServiceProcess.ServiceController.dll",
  8165. "lib/net6.0/System.ServiceProcess.ServiceController.xml",
  8166. "lib/net7.0/System.ServiceProcess.ServiceController.dll",
  8167. "lib/net7.0/System.ServiceProcess.ServiceController.xml",
  8168. "lib/net8.0/System.ServiceProcess.ServiceController.dll",
  8169. "lib/net8.0/System.ServiceProcess.ServiceController.xml",
  8170. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  8171. "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  8172. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll",
  8173. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml",
  8174. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.dll",
  8175. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.xml",
  8176. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll",
  8177. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.xml",
  8178. "system.serviceprocess.servicecontroller.8.0.0.nupkg.sha512",
  8179. "system.serviceprocess.servicecontroller.nuspec",
  8180. "useSharedDesignerContext.txt"
  8181. ]
  8182. },
  8183. "System.Text.Encoding/4.3.0": {
  8184. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8185. "type": "package",
  8186. "path": "system.text.encoding/4.3.0",
  8187. "files": [
  8188. ".nupkg.metadata",
  8189. "ThirdPartyNotices.txt",
  8190. "dotnet_library_license.txt",
  8191. "lib/MonoAndroid10/_._",
  8192. "lib/MonoTouch10/_._",
  8193. "lib/net45/_._",
  8194. "lib/portable-net45+win8+wp8+wpa81/_._",
  8195. "lib/win8/_._",
  8196. "lib/wp80/_._",
  8197. "lib/wpa81/_._",
  8198. "lib/xamarinios10/_._",
  8199. "lib/xamarinmac20/_._",
  8200. "lib/xamarintvos10/_._",
  8201. "lib/xamarinwatchos10/_._",
  8202. "ref/MonoAndroid10/_._",
  8203. "ref/MonoTouch10/_._",
  8204. "ref/net45/_._",
  8205. "ref/netcore50/System.Text.Encoding.dll",
  8206. "ref/netcore50/System.Text.Encoding.xml",
  8207. "ref/netcore50/de/System.Text.Encoding.xml",
  8208. "ref/netcore50/es/System.Text.Encoding.xml",
  8209. "ref/netcore50/fr/System.Text.Encoding.xml",
  8210. "ref/netcore50/it/System.Text.Encoding.xml",
  8211. "ref/netcore50/ja/System.Text.Encoding.xml",
  8212. "ref/netcore50/ko/System.Text.Encoding.xml",
  8213. "ref/netcore50/ru/System.Text.Encoding.xml",
  8214. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8215. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8216. "ref/netstandard1.0/System.Text.Encoding.dll",
  8217. "ref/netstandard1.0/System.Text.Encoding.xml",
  8218. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8219. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8220. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8221. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8222. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8223. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8224. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8225. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8226. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8227. "ref/netstandard1.3/System.Text.Encoding.dll",
  8228. "ref/netstandard1.3/System.Text.Encoding.xml",
  8229. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8230. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8231. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8232. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8233. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8234. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8235. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8236. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8237. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8238. "ref/portable-net45+win8+wp8+wpa81/_._",
  8239. "ref/win8/_._",
  8240. "ref/wp80/_._",
  8241. "ref/wpa81/_._",
  8242. "ref/xamarinios10/_._",
  8243. "ref/xamarinmac20/_._",
  8244. "ref/xamarintvos10/_._",
  8245. "ref/xamarinwatchos10/_._",
  8246. "system.text.encoding.4.3.0.nupkg.sha512",
  8247. "system.text.encoding.nuspec"
  8248. ]
  8249. },
  8250. "System.Text.Encoding.CodePages/4.5.1": {
  8251. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  8252. "type": "package",
  8253. "path": "system.text.encoding.codepages/4.5.1",
  8254. "files": [
  8255. ".nupkg.metadata",
  8256. ".signature.p7s",
  8257. "LICENSE.TXT",
  8258. "THIRD-PARTY-NOTICES.TXT",
  8259. "lib/MonoAndroid10/_._",
  8260. "lib/MonoTouch10/_._",
  8261. "lib/net46/System.Text.Encoding.CodePages.dll",
  8262. "lib/net461/System.Text.Encoding.CodePages.dll",
  8263. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8264. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8265. "lib/xamarinios10/_._",
  8266. "lib/xamarinmac20/_._",
  8267. "lib/xamarintvos10/_._",
  8268. "lib/xamarinwatchos10/_._",
  8269. "ref/MonoAndroid10/_._",
  8270. "ref/MonoTouch10/_._",
  8271. "ref/xamarinios10/_._",
  8272. "ref/xamarinmac20/_._",
  8273. "ref/xamarintvos10/_._",
  8274. "ref/xamarinwatchos10/_._",
  8275. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8276. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8277. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8278. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8279. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  8280. "system.text.encoding.codepages.nuspec",
  8281. "useSharedDesignerContext.txt",
  8282. "version.txt"
  8283. ]
  8284. },
  8285. "System.Text.Encoding.Extensions/4.0.11": {
  8286. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  8287. "type": "package",
  8288. "path": "system.text.encoding.extensions/4.0.11",
  8289. "files": [
  8290. ".nupkg.metadata",
  8291. "ThirdPartyNotices.txt",
  8292. "dotnet_library_license.txt",
  8293. "lib/MonoAndroid10/_._",
  8294. "lib/MonoTouch10/_._",
  8295. "lib/net45/_._",
  8296. "lib/portable-net45+win8+wp8+wpa81/_._",
  8297. "lib/win8/_._",
  8298. "lib/wp80/_._",
  8299. "lib/wpa81/_._",
  8300. "lib/xamarinios10/_._",
  8301. "lib/xamarinmac20/_._",
  8302. "lib/xamarintvos10/_._",
  8303. "lib/xamarinwatchos10/_._",
  8304. "ref/MonoAndroid10/_._",
  8305. "ref/MonoTouch10/_._",
  8306. "ref/net45/_._",
  8307. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8308. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8309. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8310. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8311. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8312. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8313. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8314. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8315. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8316. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8317. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8318. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8319. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8320. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8321. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8322. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8323. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8324. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8325. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8326. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8327. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8328. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8329. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8330. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8331. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8332. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8333. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8334. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8335. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8336. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8337. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8338. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8339. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8340. "ref/portable-net45+win8+wp8+wpa81/_._",
  8341. "ref/win8/_._",
  8342. "ref/wp80/_._",
  8343. "ref/wpa81/_._",
  8344. "ref/xamarinios10/_._",
  8345. "ref/xamarinmac20/_._",
  8346. "ref/xamarintvos10/_._",
  8347. "ref/xamarinwatchos10/_._",
  8348. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  8349. "system.text.encoding.extensions.nuspec"
  8350. ]
  8351. },
  8352. "System.Text.Encodings.Web/8.0.0": {
  8353. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  8354. "type": "package",
  8355. "path": "system.text.encodings.web/8.0.0",
  8356. "files": [
  8357. ".nupkg.metadata",
  8358. ".signature.p7s",
  8359. "Icon.png",
  8360. "LICENSE.TXT",
  8361. "THIRD-PARTY-NOTICES.TXT",
  8362. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  8363. "buildTransitive/net462/_._",
  8364. "buildTransitive/net6.0/_._",
  8365. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  8366. "lib/net462/System.Text.Encodings.Web.dll",
  8367. "lib/net462/System.Text.Encodings.Web.xml",
  8368. "lib/net6.0/System.Text.Encodings.Web.dll",
  8369. "lib/net6.0/System.Text.Encodings.Web.xml",
  8370. "lib/net7.0/System.Text.Encodings.Web.dll",
  8371. "lib/net7.0/System.Text.Encodings.Web.xml",
  8372. "lib/net8.0/System.Text.Encodings.Web.dll",
  8373. "lib/net8.0/System.Text.Encodings.Web.xml",
  8374. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8375. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8376. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  8377. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  8378. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  8379. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  8380. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  8381. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  8382. "system.text.encodings.web.8.0.0.nupkg.sha512",
  8383. "system.text.encodings.web.nuspec",
  8384. "useSharedDesignerContext.txt"
  8385. ]
  8386. },
  8387. "System.Text.Json/8.0.0": {
  8388. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  8389. "type": "package",
  8390. "path": "system.text.json/8.0.0",
  8391. "files": [
  8392. ".nupkg.metadata",
  8393. ".signature.p7s",
  8394. "Icon.png",
  8395. "LICENSE.TXT",
  8396. "PACKAGE.md",
  8397. "THIRD-PARTY-NOTICES.TXT",
  8398. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  8399. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8400. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8401. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8402. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8403. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8404. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8405. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8406. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8407. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8408. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8409. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8410. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8411. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8412. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  8413. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8414. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8415. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8416. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8417. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8418. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8419. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8420. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8421. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8422. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8423. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8424. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8425. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8426. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  8427. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8428. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8429. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8430. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8431. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8432. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8433. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8434. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8435. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8436. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8437. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8438. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8439. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8440. "buildTransitive/net461/System.Text.Json.targets",
  8441. "buildTransitive/net462/System.Text.Json.targets",
  8442. "buildTransitive/net6.0/System.Text.Json.targets",
  8443. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  8444. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  8445. "lib/net462/System.Text.Json.dll",
  8446. "lib/net462/System.Text.Json.xml",
  8447. "lib/net6.0/System.Text.Json.dll",
  8448. "lib/net6.0/System.Text.Json.xml",
  8449. "lib/net7.0/System.Text.Json.dll",
  8450. "lib/net7.0/System.Text.Json.xml",
  8451. "lib/net8.0/System.Text.Json.dll",
  8452. "lib/net8.0/System.Text.Json.xml",
  8453. "lib/netstandard2.0/System.Text.Json.dll",
  8454. "lib/netstandard2.0/System.Text.Json.xml",
  8455. "system.text.json.8.0.0.nupkg.sha512",
  8456. "system.text.json.nuspec",
  8457. "useSharedDesignerContext.txt"
  8458. ]
  8459. },
  8460. "System.Text.RegularExpressions/4.1.0": {
  8461. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  8462. "type": "package",
  8463. "path": "system.text.regularexpressions/4.1.0",
  8464. "files": [
  8465. ".nupkg.metadata",
  8466. "ThirdPartyNotices.txt",
  8467. "dotnet_library_license.txt",
  8468. "lib/MonoAndroid10/_._",
  8469. "lib/MonoTouch10/_._",
  8470. "lib/net45/_._",
  8471. "lib/net463/System.Text.RegularExpressions.dll",
  8472. "lib/netcore50/System.Text.RegularExpressions.dll",
  8473. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8474. "lib/portable-net45+win8+wp8+wpa81/_._",
  8475. "lib/win8/_._",
  8476. "lib/wp80/_._",
  8477. "lib/wpa81/_._",
  8478. "lib/xamarinios10/_._",
  8479. "lib/xamarinmac20/_._",
  8480. "lib/xamarintvos10/_._",
  8481. "lib/xamarinwatchos10/_._",
  8482. "ref/MonoAndroid10/_._",
  8483. "ref/MonoTouch10/_._",
  8484. "ref/net45/_._",
  8485. "ref/net463/System.Text.RegularExpressions.dll",
  8486. "ref/netcore50/System.Text.RegularExpressions.dll",
  8487. "ref/netcore50/System.Text.RegularExpressions.xml",
  8488. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8489. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8490. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8491. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8492. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8493. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8494. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8495. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8496. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8497. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8498. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8499. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8500. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8501. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8502. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8503. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8504. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8505. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8506. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8507. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8508. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8509. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8510. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8511. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8512. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8513. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8514. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8515. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8516. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8517. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8518. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8519. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8520. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8521. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8522. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8523. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8524. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8525. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8526. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8527. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8528. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8529. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8530. "ref/portable-net45+win8+wp8+wpa81/_._",
  8531. "ref/win8/_._",
  8532. "ref/wp80/_._",
  8533. "ref/wpa81/_._",
  8534. "ref/xamarinios10/_._",
  8535. "ref/xamarinmac20/_._",
  8536. "ref/xamarintvos10/_._",
  8537. "ref/xamarinwatchos10/_._",
  8538. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  8539. "system.text.regularexpressions.nuspec"
  8540. ]
  8541. },
  8542. "System.Threading/4.0.11": {
  8543. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  8544. "type": "package",
  8545. "path": "system.threading/4.0.11",
  8546. "files": [
  8547. ".nupkg.metadata",
  8548. "ThirdPartyNotices.txt",
  8549. "dotnet_library_license.txt",
  8550. "lib/MonoAndroid10/_._",
  8551. "lib/MonoTouch10/_._",
  8552. "lib/net45/_._",
  8553. "lib/netcore50/System.Threading.dll",
  8554. "lib/netstandard1.3/System.Threading.dll",
  8555. "lib/portable-net45+win8+wp8+wpa81/_._",
  8556. "lib/win8/_._",
  8557. "lib/wp80/_._",
  8558. "lib/wpa81/_._",
  8559. "lib/xamarinios10/_._",
  8560. "lib/xamarinmac20/_._",
  8561. "lib/xamarintvos10/_._",
  8562. "lib/xamarinwatchos10/_._",
  8563. "ref/MonoAndroid10/_._",
  8564. "ref/MonoTouch10/_._",
  8565. "ref/net45/_._",
  8566. "ref/netcore50/System.Threading.dll",
  8567. "ref/netcore50/System.Threading.xml",
  8568. "ref/netcore50/de/System.Threading.xml",
  8569. "ref/netcore50/es/System.Threading.xml",
  8570. "ref/netcore50/fr/System.Threading.xml",
  8571. "ref/netcore50/it/System.Threading.xml",
  8572. "ref/netcore50/ja/System.Threading.xml",
  8573. "ref/netcore50/ko/System.Threading.xml",
  8574. "ref/netcore50/ru/System.Threading.xml",
  8575. "ref/netcore50/zh-hans/System.Threading.xml",
  8576. "ref/netcore50/zh-hant/System.Threading.xml",
  8577. "ref/netstandard1.0/System.Threading.dll",
  8578. "ref/netstandard1.0/System.Threading.xml",
  8579. "ref/netstandard1.0/de/System.Threading.xml",
  8580. "ref/netstandard1.0/es/System.Threading.xml",
  8581. "ref/netstandard1.0/fr/System.Threading.xml",
  8582. "ref/netstandard1.0/it/System.Threading.xml",
  8583. "ref/netstandard1.0/ja/System.Threading.xml",
  8584. "ref/netstandard1.0/ko/System.Threading.xml",
  8585. "ref/netstandard1.0/ru/System.Threading.xml",
  8586. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8587. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8588. "ref/netstandard1.3/System.Threading.dll",
  8589. "ref/netstandard1.3/System.Threading.xml",
  8590. "ref/netstandard1.3/de/System.Threading.xml",
  8591. "ref/netstandard1.3/es/System.Threading.xml",
  8592. "ref/netstandard1.3/fr/System.Threading.xml",
  8593. "ref/netstandard1.3/it/System.Threading.xml",
  8594. "ref/netstandard1.3/ja/System.Threading.xml",
  8595. "ref/netstandard1.3/ko/System.Threading.xml",
  8596. "ref/netstandard1.3/ru/System.Threading.xml",
  8597. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8598. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8599. "ref/portable-net45+win8+wp8+wpa81/_._",
  8600. "ref/win8/_._",
  8601. "ref/wp80/_._",
  8602. "ref/wpa81/_._",
  8603. "ref/xamarinios10/_._",
  8604. "ref/xamarinmac20/_._",
  8605. "ref/xamarintvos10/_._",
  8606. "ref/xamarinwatchos10/_._",
  8607. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8608. "system.threading.4.0.11.nupkg.sha512",
  8609. "system.threading.nuspec"
  8610. ]
  8611. },
  8612. "System.Threading.Tasks/4.3.0": {
  8613. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8614. "type": "package",
  8615. "path": "system.threading.tasks/4.3.0",
  8616. "files": [
  8617. ".nupkg.metadata",
  8618. "ThirdPartyNotices.txt",
  8619. "dotnet_library_license.txt",
  8620. "lib/MonoAndroid10/_._",
  8621. "lib/MonoTouch10/_._",
  8622. "lib/net45/_._",
  8623. "lib/portable-net45+win8+wp8+wpa81/_._",
  8624. "lib/win8/_._",
  8625. "lib/wp80/_._",
  8626. "lib/wpa81/_._",
  8627. "lib/xamarinios10/_._",
  8628. "lib/xamarinmac20/_._",
  8629. "lib/xamarintvos10/_._",
  8630. "lib/xamarinwatchos10/_._",
  8631. "ref/MonoAndroid10/_._",
  8632. "ref/MonoTouch10/_._",
  8633. "ref/net45/_._",
  8634. "ref/netcore50/System.Threading.Tasks.dll",
  8635. "ref/netcore50/System.Threading.Tasks.xml",
  8636. "ref/netcore50/de/System.Threading.Tasks.xml",
  8637. "ref/netcore50/es/System.Threading.Tasks.xml",
  8638. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8639. "ref/netcore50/it/System.Threading.Tasks.xml",
  8640. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8641. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8642. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8643. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8644. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8645. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8646. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8647. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8648. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8649. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8650. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8651. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8652. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8653. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8654. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8655. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8656. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8657. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8658. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8659. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8660. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8661. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8662. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8663. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8664. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8665. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8666. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8667. "ref/portable-net45+win8+wp8+wpa81/_._",
  8668. "ref/win8/_._",
  8669. "ref/wp80/_._",
  8670. "ref/wpa81/_._",
  8671. "ref/xamarinios10/_._",
  8672. "ref/xamarinmac20/_._",
  8673. "ref/xamarintvos10/_._",
  8674. "ref/xamarinwatchos10/_._",
  8675. "system.threading.tasks.4.3.0.nupkg.sha512",
  8676. "system.threading.tasks.nuspec"
  8677. ]
  8678. },
  8679. "System.Threading.Tasks.Extensions/4.5.4": {
  8680. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  8681. "type": "package",
  8682. "path": "system.threading.tasks.extensions/4.5.4",
  8683. "files": [
  8684. ".nupkg.metadata",
  8685. ".signature.p7s",
  8686. "LICENSE.TXT",
  8687. "THIRD-PARTY-NOTICES.TXT",
  8688. "lib/MonoAndroid10/_._",
  8689. "lib/MonoTouch10/_._",
  8690. "lib/net461/System.Threading.Tasks.Extensions.dll",
  8691. "lib/net461/System.Threading.Tasks.Extensions.xml",
  8692. "lib/netcoreapp2.1/_._",
  8693. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8694. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8695. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8696. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8697. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8698. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8699. "lib/xamarinios10/_._",
  8700. "lib/xamarinmac20/_._",
  8701. "lib/xamarintvos10/_._",
  8702. "lib/xamarinwatchos10/_._",
  8703. "ref/MonoAndroid10/_._",
  8704. "ref/MonoTouch10/_._",
  8705. "ref/netcoreapp2.1/_._",
  8706. "ref/xamarinios10/_._",
  8707. "ref/xamarinmac20/_._",
  8708. "ref/xamarintvos10/_._",
  8709. "ref/xamarinwatchos10/_._",
  8710. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  8711. "system.threading.tasks.extensions.nuspec",
  8712. "useSharedDesignerContext.txt",
  8713. "version.txt"
  8714. ]
  8715. },
  8716. "System.Threading.Thread/4.0.0": {
  8717. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  8718. "type": "package",
  8719. "path": "system.threading.thread/4.0.0",
  8720. "files": [
  8721. ".nupkg.metadata",
  8722. ".signature.p7s",
  8723. "ThirdPartyNotices.txt",
  8724. "dotnet_library_license.txt",
  8725. "lib/MonoAndroid10/_._",
  8726. "lib/MonoTouch10/_._",
  8727. "lib/net46/System.Threading.Thread.dll",
  8728. "lib/netcore50/_._",
  8729. "lib/netstandard1.3/System.Threading.Thread.dll",
  8730. "lib/xamarinios10/_._",
  8731. "lib/xamarinmac20/_._",
  8732. "lib/xamarintvos10/_._",
  8733. "lib/xamarinwatchos10/_._",
  8734. "ref/MonoAndroid10/_._",
  8735. "ref/MonoTouch10/_._",
  8736. "ref/net46/System.Threading.Thread.dll",
  8737. "ref/netstandard1.3/System.Threading.Thread.dll",
  8738. "ref/netstandard1.3/System.Threading.Thread.xml",
  8739. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8740. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8741. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8742. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8743. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8744. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8745. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8746. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8747. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8748. "ref/xamarinios10/_._",
  8749. "ref/xamarinmac20/_._",
  8750. "ref/xamarintvos10/_._",
  8751. "ref/xamarinwatchos10/_._",
  8752. "system.threading.thread.4.0.0.nupkg.sha512",
  8753. "system.threading.thread.nuspec"
  8754. ]
  8755. },
  8756. "System.Threading.ThreadPool/4.0.10": {
  8757. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  8758. "type": "package",
  8759. "path": "system.threading.threadpool/4.0.10",
  8760. "files": [
  8761. ".nupkg.metadata",
  8762. ".signature.p7s",
  8763. "ThirdPartyNotices.txt",
  8764. "dotnet_library_license.txt",
  8765. "lib/MonoAndroid10/_._",
  8766. "lib/MonoTouch10/_._",
  8767. "lib/net46/System.Threading.ThreadPool.dll",
  8768. "lib/netcore50/_._",
  8769. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8770. "lib/xamarinios10/_._",
  8771. "lib/xamarinmac20/_._",
  8772. "lib/xamarintvos10/_._",
  8773. "lib/xamarinwatchos10/_._",
  8774. "ref/MonoAndroid10/_._",
  8775. "ref/MonoTouch10/_._",
  8776. "ref/net46/System.Threading.ThreadPool.dll",
  8777. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8778. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8779. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8780. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8781. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8782. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8783. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8784. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8785. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8786. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8787. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8788. "ref/xamarinios10/_._",
  8789. "ref/xamarinmac20/_._",
  8790. "ref/xamarintvos10/_._",
  8791. "ref/xamarinwatchos10/_._",
  8792. "system.threading.threadpool.4.0.10.nupkg.sha512",
  8793. "system.threading.threadpool.nuspec"
  8794. ]
  8795. },
  8796. "System.Threading.Timer/4.0.1": {
  8797. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  8798. "type": "package",
  8799. "path": "system.threading.timer/4.0.1",
  8800. "files": [
  8801. ".nupkg.metadata",
  8802. "ThirdPartyNotices.txt",
  8803. "dotnet_library_license.txt",
  8804. "lib/MonoAndroid10/_._",
  8805. "lib/MonoTouch10/_._",
  8806. "lib/net451/_._",
  8807. "lib/portable-net451+win81+wpa81/_._",
  8808. "lib/win81/_._",
  8809. "lib/wpa81/_._",
  8810. "lib/xamarinios10/_._",
  8811. "lib/xamarinmac20/_._",
  8812. "lib/xamarintvos10/_._",
  8813. "lib/xamarinwatchos10/_._",
  8814. "ref/MonoAndroid10/_._",
  8815. "ref/MonoTouch10/_._",
  8816. "ref/net451/_._",
  8817. "ref/netcore50/System.Threading.Timer.dll",
  8818. "ref/netcore50/System.Threading.Timer.xml",
  8819. "ref/netcore50/de/System.Threading.Timer.xml",
  8820. "ref/netcore50/es/System.Threading.Timer.xml",
  8821. "ref/netcore50/fr/System.Threading.Timer.xml",
  8822. "ref/netcore50/it/System.Threading.Timer.xml",
  8823. "ref/netcore50/ja/System.Threading.Timer.xml",
  8824. "ref/netcore50/ko/System.Threading.Timer.xml",
  8825. "ref/netcore50/ru/System.Threading.Timer.xml",
  8826. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8827. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8828. "ref/netstandard1.2/System.Threading.Timer.dll",
  8829. "ref/netstandard1.2/System.Threading.Timer.xml",
  8830. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8831. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8832. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8833. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8834. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8835. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8836. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8837. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8838. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8839. "ref/portable-net451+win81+wpa81/_._",
  8840. "ref/win81/_._",
  8841. "ref/wpa81/_._",
  8842. "ref/xamarinios10/_._",
  8843. "ref/xamarinmac20/_._",
  8844. "ref/xamarintvos10/_._",
  8845. "ref/xamarinwatchos10/_._",
  8846. "system.threading.timer.4.0.1.nupkg.sha512",
  8847. "system.threading.timer.nuspec"
  8848. ]
  8849. },
  8850. "System.Windows.Extensions/6.0.0": {
  8851. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  8852. "type": "package",
  8853. "path": "system.windows.extensions/6.0.0",
  8854. "files": [
  8855. ".nupkg.metadata",
  8856. ".signature.p7s",
  8857. "Icon.png",
  8858. "LICENSE.TXT",
  8859. "THIRD-PARTY-NOTICES.TXT",
  8860. "lib/net6.0/System.Windows.Extensions.dll",
  8861. "lib/net6.0/System.Windows.Extensions.xml",
  8862. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  8863. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  8864. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  8865. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  8866. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  8867. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  8868. "system.windows.extensions.6.0.0.nupkg.sha512",
  8869. "system.windows.extensions.nuspec",
  8870. "useSharedDesignerContext.txt"
  8871. ]
  8872. },
  8873. "System.Xml.ReaderWriter/4.0.11": {
  8874. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  8875. "type": "package",
  8876. "path": "system.xml.readerwriter/4.0.11",
  8877. "files": [
  8878. ".nupkg.metadata",
  8879. "ThirdPartyNotices.txt",
  8880. "dotnet_library_license.txt",
  8881. "lib/MonoAndroid10/_._",
  8882. "lib/MonoTouch10/_._",
  8883. "lib/net45/_._",
  8884. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8885. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8886. "lib/portable-net45+win8+wp8+wpa81/_._",
  8887. "lib/win8/_._",
  8888. "lib/wp80/_._",
  8889. "lib/wpa81/_._",
  8890. "lib/xamarinios10/_._",
  8891. "lib/xamarinmac20/_._",
  8892. "lib/xamarintvos10/_._",
  8893. "lib/xamarinwatchos10/_._",
  8894. "ref/MonoAndroid10/_._",
  8895. "ref/MonoTouch10/_._",
  8896. "ref/net45/_._",
  8897. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8898. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8899. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8900. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8901. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8902. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8903. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8904. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8905. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8906. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8907. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8908. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8909. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8910. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8911. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8912. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8913. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8914. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8915. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8916. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8917. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8918. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8919. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8920. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8921. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8922. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8923. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8924. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8925. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8926. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8927. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8928. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8929. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8930. "ref/portable-net45+win8+wp8+wpa81/_._",
  8931. "ref/win8/_._",
  8932. "ref/wp80/_._",
  8933. "ref/wpa81/_._",
  8934. "ref/xamarinios10/_._",
  8935. "ref/xamarinmac20/_._",
  8936. "ref/xamarintvos10/_._",
  8937. "ref/xamarinwatchos10/_._",
  8938. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  8939. "system.xml.readerwriter.nuspec"
  8940. ]
  8941. },
  8942. "System.Xml.XDocument/4.0.11": {
  8943. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  8944. "type": "package",
  8945. "path": "system.xml.xdocument/4.0.11",
  8946. "files": [
  8947. ".nupkg.metadata",
  8948. "ThirdPartyNotices.txt",
  8949. "dotnet_library_license.txt",
  8950. "lib/MonoAndroid10/_._",
  8951. "lib/MonoTouch10/_._",
  8952. "lib/net45/_._",
  8953. "lib/netcore50/System.Xml.XDocument.dll",
  8954. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8955. "lib/portable-net45+win8+wp8+wpa81/_._",
  8956. "lib/win8/_._",
  8957. "lib/wp80/_._",
  8958. "lib/wpa81/_._",
  8959. "lib/xamarinios10/_._",
  8960. "lib/xamarinmac20/_._",
  8961. "lib/xamarintvos10/_._",
  8962. "lib/xamarinwatchos10/_._",
  8963. "ref/MonoAndroid10/_._",
  8964. "ref/MonoTouch10/_._",
  8965. "ref/net45/_._",
  8966. "ref/netcore50/System.Xml.XDocument.dll",
  8967. "ref/netcore50/System.Xml.XDocument.xml",
  8968. "ref/netcore50/de/System.Xml.XDocument.xml",
  8969. "ref/netcore50/es/System.Xml.XDocument.xml",
  8970. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8971. "ref/netcore50/it/System.Xml.XDocument.xml",
  8972. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8973. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8974. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8975. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8976. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8977. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8978. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8979. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8980. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8981. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8982. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8983. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8984. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8985. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8986. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8987. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8988. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8989. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8990. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8991. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8992. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8993. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8994. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8995. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8996. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8997. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8998. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8999. "ref/portable-net45+win8+wp8+wpa81/_._",
  9000. "ref/win8/_._",
  9001. "ref/wp80/_._",
  9002. "ref/wpa81/_._",
  9003. "ref/xamarinios10/_._",
  9004. "ref/xamarinmac20/_._",
  9005. "ref/xamarintvos10/_._",
  9006. "ref/xamarinwatchos10/_._",
  9007. "system.xml.xdocument.4.0.11.nupkg.sha512",
  9008. "system.xml.xdocument.nuspec"
  9009. ]
  9010. },
  9011. "System.Xml.XmlDocument/4.0.1": {
  9012. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  9013. "type": "package",
  9014. "path": "system.xml.xmldocument/4.0.1",
  9015. "files": [
  9016. ".nupkg.metadata",
  9017. "ThirdPartyNotices.txt",
  9018. "dotnet_library_license.txt",
  9019. "lib/MonoAndroid10/_._",
  9020. "lib/MonoTouch10/_._",
  9021. "lib/net46/System.Xml.XmlDocument.dll",
  9022. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9023. "lib/xamarinios10/_._",
  9024. "lib/xamarinmac20/_._",
  9025. "lib/xamarintvos10/_._",
  9026. "lib/xamarinwatchos10/_._",
  9027. "ref/MonoAndroid10/_._",
  9028. "ref/MonoTouch10/_._",
  9029. "ref/net46/System.Xml.XmlDocument.dll",
  9030. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9031. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9032. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9033. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9034. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9035. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9036. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9037. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9038. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9039. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9040. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9041. "ref/xamarinios10/_._",
  9042. "ref/xamarinmac20/_._",
  9043. "ref/xamarintvos10/_._",
  9044. "ref/xamarinwatchos10/_._",
  9045. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  9046. "system.xml.xmldocument.nuspec"
  9047. ]
  9048. },
  9049. "System.Xml.XPath/4.0.1": {
  9050. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  9051. "type": "package",
  9052. "path": "system.xml.xpath/4.0.1",
  9053. "files": [
  9054. ".nupkg.metadata",
  9055. ".signature.p7s",
  9056. "ThirdPartyNotices.txt",
  9057. "dotnet_library_license.txt",
  9058. "lib/MonoAndroid10/_._",
  9059. "lib/MonoTouch10/_._",
  9060. "lib/net46/System.Xml.XPath.dll",
  9061. "lib/netstandard1.3/System.Xml.XPath.dll",
  9062. "lib/xamarinios10/_._",
  9063. "lib/xamarinmac20/_._",
  9064. "lib/xamarintvos10/_._",
  9065. "lib/xamarinwatchos10/_._",
  9066. "ref/MonoAndroid10/_._",
  9067. "ref/MonoTouch10/_._",
  9068. "ref/net46/System.Xml.XPath.dll",
  9069. "ref/netstandard1.3/System.Xml.XPath.dll",
  9070. "ref/netstandard1.3/System.Xml.XPath.xml",
  9071. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  9072. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  9073. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  9074. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  9075. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  9076. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  9077. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  9078. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  9079. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  9080. "ref/xamarinios10/_._",
  9081. "ref/xamarinmac20/_._",
  9082. "ref/xamarintvos10/_._",
  9083. "ref/xamarinwatchos10/_._",
  9084. "system.xml.xpath.4.0.1.nupkg.sha512",
  9085. "system.xml.xpath.nuspec"
  9086. ]
  9087. },
  9088. "System.Xml.XPath.XmlDocument/4.0.1": {
  9089. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  9090. "type": "package",
  9091. "path": "system.xml.xpath.xmldocument/4.0.1",
  9092. "files": [
  9093. ".nupkg.metadata",
  9094. ".signature.p7s",
  9095. "ThirdPartyNotices.txt",
  9096. "dotnet_library_license.txt",
  9097. "lib/MonoAndroid10/_._",
  9098. "lib/MonoTouch10/_._",
  9099. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  9100. "lib/xamarinios10/_._",
  9101. "lib/xamarinmac20/_._",
  9102. "lib/xamarintvos10/_._",
  9103. "lib/xamarinwatchos10/_._",
  9104. "ref/MonoAndroid10/_._",
  9105. "ref/MonoTouch10/_._",
  9106. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  9107. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  9108. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  9109. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  9110. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  9111. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  9112. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  9113. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  9114. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  9115. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  9116. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  9117. "ref/xamarinios10/_._",
  9118. "ref/xamarinmac20/_._",
  9119. "ref/xamarintvos10/_._",
  9120. "ref/xamarinwatchos10/_._",
  9121. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  9122. "system.xml.xpath.xmldocument.nuspec"
  9123. ]
  9124. }
  9125. },
  9126. "projectFileDependencyGroups": {
  9127. "net5.0": [
  9128. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.1",
  9129. "Flurl.Http >= 4.0.2",
  9130. "Microsoft.Extensions.Hosting.WindowsServices >= 8.0.0",
  9131. "Microsoft.NETCore.Targets >= 3.0.0",
  9132. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  9133. "NLog.Web.AspNetCore >= 5.3.8",
  9134. "Newtonsoft.Json >= 13.0.3",
  9135. "Quartz >= 3.8.1",
  9136. "StackExchange.Redis >= 2.7.33",
  9137. "Swashbuckle.AspNetCore >= 6.5.0",
  9138. "Swashbuckle.AspNetCore.Filters >= 8.0.1",
  9139. "System.IdentityModel.Tokens.Jwt >= 7.4.1"
  9140. ]
  9141. },
  9142. "packageFolders": {
  9143. "C:\\Users\\Lenovo\\.nuget\\packages\\": {}
  9144. },
  9145. "project": {
  9146. "version": "1.0.0",
  9147. "restore": {
  9148. "projectUniqueName": "D:\\A_Install\\WorkSpace\\Vs2022\\yg_chf\\chf_ccs\\IMCS_CCS\\CCS.csproj",
  9149. "projectName": "IMCS_CCS",
  9150. "projectPath": "D:\\A_Install\\WorkSpace\\Vs2022\\yg_chf\\chf_ccs\\IMCS_CCS\\CCS.csproj",
  9151. "packagesPath": "C:\\Users\\Lenovo\\.nuget\\packages\\",
  9152. "outputPath": "D:\\A_Install\\WorkSpace\\Vs2022\\yg_chf\\chf_ccs\\IMCS_CCS\\obj\\",
  9153. "projectStyle": "PackageReference",
  9154. "configFilePaths": [
  9155. "C:\\Users\\Lenovo\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9156. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9157. ],
  9158. "originalTargetFrameworks": [
  9159. "net5.0"
  9160. ],
  9161. "sources": {
  9162. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9163. "C:\\Program Files\\dotnet\\library-packs": {},
  9164. "https://api.nuget.org/v3/index.json": {}
  9165. },
  9166. "frameworks": {
  9167. "net5.0": {
  9168. "targetAlias": "net5.0",
  9169. "projectReferences": {}
  9170. }
  9171. },
  9172. "warningProperties": {
  9173. "warnAsError": [
  9174. "NU1605"
  9175. ]
  9176. },
  9177. "restoreAuditProperties": {
  9178. "enableAudit": "true",
  9179. "auditLevel": "low",
  9180. "auditMode": "direct"
  9181. }
  9182. },
  9183. "frameworks": {
  9184. "net5.0": {
  9185. "targetAlias": "net5.0",
  9186. "dependencies": {
  9187. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  9188. "target": "Package",
  9189. "version": "[12.0.1, )"
  9190. },
  9191. "Flurl.Http": {
  9192. "target": "Package",
  9193. "version": "[4.0.2, )"
  9194. },
  9195. "Microsoft.Extensions.Hosting.WindowsServices": {
  9196. "target": "Package",
  9197. "version": "[8.0.0, )"
  9198. },
  9199. "Microsoft.NETCore.Targets": {
  9200. "suppressParent": "All",
  9201. "target": "Package",
  9202. "version": "[3.0.0, )"
  9203. },
  9204. "MySql.Data.EntityFrameworkCore": {
  9205. "target": "Package",
  9206. "version": "[8.0.22, )"
  9207. },
  9208. "NLog.Web.AspNetCore": {
  9209. "target": "Package",
  9210. "version": "[5.3.8, )"
  9211. },
  9212. "Newtonsoft.Json": {
  9213. "target": "Package",
  9214. "version": "[13.0.3, )"
  9215. },
  9216. "Quartz": {
  9217. "target": "Package",
  9218. "version": "[3.8.1, )"
  9219. },
  9220. "StackExchange.Redis": {
  9221. "target": "Package",
  9222. "version": "[2.7.33, )"
  9223. },
  9224. "Swashbuckle.AspNetCore": {
  9225. "target": "Package",
  9226. "version": "[6.5.0, )"
  9227. },
  9228. "Swashbuckle.AspNetCore.Filters": {
  9229. "target": "Package",
  9230. "version": "[8.0.1, )"
  9231. },
  9232. "System.IdentityModel.Tokens.Jwt": {
  9233. "target": "Package",
  9234. "version": "[7.4.1, )"
  9235. }
  9236. },
  9237. "imports": [
  9238. "net461",
  9239. "net462",
  9240. "net47",
  9241. "net471",
  9242. "net472",
  9243. "net48",
  9244. "net481"
  9245. ],
  9246. "assetTargetFallback": true,
  9247. "warn": true,
  9248. "frameworkReferences": {
  9249. "Microsoft.AspNetCore.App": {
  9250. "privateAssets": "none"
  9251. },
  9252. "Microsoft.NETCore.App": {
  9253. "privateAssets": "all"
  9254. }
  9255. },
  9256. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.303\\RuntimeIdentifierGraph.json"
  9257. }
  9258. }
  9259. },
  9260. "logs": [
  9261. {
  9262. "code": "NU1900",
  9263. "level": "Warning",
  9264. "warningLevel": 1,
  9265. "message": "获取包漏洞数据时出错: 无法加载源 https://api.nuget.org/v3/index.json 的服务索引。"
  9266. }
  9267. ]
  9268. }