project.assets.json 400 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net7.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "BouncyCastle.NetCore/1.8.5": {
  19. "type": "package",
  20. "compile": {
  21. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  22. "related": ".xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  27. "related": ".xml"
  28. }
  29. }
  30. },
  31. "CommunityToolkit.HighPerformance/8.4.0": {
  32. "type": "package",
  33. "compile": {
  34. "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
  35. "related": ".pdb;.xml"
  36. }
  37. },
  38. "runtime": {
  39. "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
  40. "related": ".pdb;.xml"
  41. }
  42. }
  43. },
  44. "Coravel/4.2.1": {
  45. "type": "package",
  46. "dependencies": {
  47. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  48. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  49. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  50. },
  51. "compile": {
  52. "lib/netstandard2.0/Coravel.dll": {
  53. "related": ".xml"
  54. }
  55. },
  56. "runtime": {
  57. "lib/netstandard2.0/Coravel.dll": {
  58. "related": ".xml"
  59. }
  60. }
  61. },
  62. "FBoxClientDriver/1.2.0": {
  63. "type": "package",
  64. "dependencies": {
  65. "FBoxClientDriver.Contract": "1.2.0",
  66. "IdentityModel": "4.3.1",
  67. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  68. "Microsoft.CSharp": "4.5.0",
  69. "Microsoft.Extensions.Logging": "3.1.5",
  70. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  71. "Newtonsoft.Json": "12.0.3",
  72. "Nito.AsyncEx.Coordination": "5.0.0",
  73. "NodaTime": "2.4.7",
  74. "System.ComponentModel.EventBasedAsync": "4.3.0",
  75. "System.IO.FileSystem": "4.3.0",
  76. "System.Net.Http": "4.3.2",
  77. "System.Reactive": "4.4.1",
  78. "System.Runtime.Serialization.Primitives": "4.3.0",
  79. "System.Threading.Thread": "4.3.0"
  80. },
  81. "compile": {
  82. "lib/netstandard2.0/FBoxClientDriver.dll": {
  83. "related": ".xml"
  84. }
  85. },
  86. "runtime": {
  87. "lib/netstandard2.0/FBoxClientDriver.dll": {
  88. "related": ".xml"
  89. }
  90. }
  91. },
  92. "FBoxClientDriver.Contract/1.2.0": {
  93. "type": "package",
  94. "dependencies": {
  95. "Newtonsoft.Json": "12.0.3",
  96. "System.ComponentModel.Primitives": "4.3.0"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  100. "related": ".xml"
  101. }
  102. },
  103. "runtime": {
  104. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  105. "related": ".xml"
  106. }
  107. }
  108. },
  109. "FluentEmail.Core/3.0.2": {
  110. "type": "package",
  111. "dependencies": {
  112. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  113. },
  114. "compile": {
  115. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  116. },
  117. "runtime": {
  118. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  119. }
  120. },
  121. "FluentEmail.Smtp/3.0.2": {
  122. "type": "package",
  123. "dependencies": {
  124. "FluentEmail.Core": "3.0.2"
  125. },
  126. "compile": {
  127. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  128. },
  129. "runtime": {
  130. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  131. }
  132. },
  133. "Google.Protobuf/3.11.4": {
  134. "type": "package",
  135. "dependencies": {
  136. "System.Memory": "4.5.2"
  137. },
  138. "compile": {
  139. "lib/netstandard2.0/Google.Protobuf.dll": {
  140. "related": ".pdb;.xml"
  141. }
  142. },
  143. "runtime": {
  144. "lib/netstandard2.0/Google.Protobuf.dll": {
  145. "related": ".pdb;.xml"
  146. }
  147. }
  148. },
  149. "IdentityModel/4.3.1": {
  150. "type": "package",
  151. "dependencies": {
  152. "Newtonsoft.Json": "11.0.2",
  153. "System.Text.Encodings.Web": "4.7.0"
  154. },
  155. "compile": {
  156. "lib/netstandard2.0/IdentityModel.dll": {
  157. "related": ".pdb;.xml"
  158. }
  159. },
  160. "runtime": {
  161. "lib/netstandard2.0/IdentityModel.dll": {
  162. "related": ".pdb;.xml"
  163. }
  164. }
  165. },
  166. "InitQ/1.0.0.14": {
  167. "type": "package",
  168. "dependencies": {
  169. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  170. "Microsoft.Extensions.Hosting": "2.1.0",
  171. "Newtonsoft.Json": "13.0.1",
  172. "StackExchange.Redis": "1.2.4"
  173. },
  174. "compile": {
  175. "lib/netcoreapp2.1/InitQ.dll": {}
  176. },
  177. "runtime": {
  178. "lib/netcoreapp2.1/InitQ.dll": {}
  179. }
  180. },
  181. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  182. "type": "package",
  183. "dependencies": {
  184. "AdvancedStringBuilder": "0.1.0",
  185. "JavaScriptEngineSwitcher.Core": "3.21.0"
  186. },
  187. "compile": {
  188. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  189. "related": ".xml"
  190. }
  191. },
  192. "runtime": {
  193. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  194. "related": ".xml"
  195. }
  196. },
  197. "resource": {
  198. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  199. "locale": "ru-RU"
  200. }
  201. }
  202. },
  203. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  204. "type": "package",
  205. "runtimeTargets": {
  206. "runtimes/linux-x64/native/libChakraCore.so": {
  207. "assetType": "native",
  208. "rid": "linux-x64"
  209. }
  210. }
  211. },
  212. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  213. "type": "package",
  214. "build": {
  215. "build/_._": {}
  216. },
  217. "runtimeTargets": {
  218. "runtimes/win-x64/native/ChakraCore.dll": {
  219. "assetType": "native",
  220. "rid": "win-x64"
  221. }
  222. }
  223. },
  224. "JavaScriptEngineSwitcher.Core/3.21.0": {
  225. "type": "package",
  226. "dependencies": {
  227. "AdvancedStringBuilder": "0.1.0"
  228. },
  229. "compile": {
  230. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  231. "related": ".xml"
  232. }
  233. },
  234. "runtime": {
  235. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  236. "related": ".xml"
  237. }
  238. },
  239. "resource": {
  240. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  241. "locale": "ru-RU"
  242. }
  243. }
  244. },
  245. "K4os.Compression.LZ4/1.1.11": {
  246. "type": "package",
  247. "dependencies": {
  248. "System.Memory": "4.5.3"
  249. },
  250. "compile": {
  251. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  252. "related": ".xml"
  253. }
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  257. "related": ".xml"
  258. }
  259. }
  260. },
  261. "K4os.Compression.LZ4.Streams/1.1.11": {
  262. "type": "package",
  263. "dependencies": {
  264. "K4os.Compression.LZ4": "1.1.11",
  265. "K4os.Hash.xxHash": "1.0.6"
  266. },
  267. "compile": {
  268. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  269. "related": ".xml"
  270. }
  271. },
  272. "runtime": {
  273. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  274. "related": ".xml"
  275. }
  276. }
  277. },
  278. "K4os.Hash.xxHash/1.0.6": {
  279. "type": "package",
  280. "dependencies": {
  281. "System.Memory": "4.5.3"
  282. },
  283. "compile": {
  284. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  285. "related": ".xml"
  286. }
  287. },
  288. "runtime": {
  289. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  290. "related": ".xml"
  291. }
  292. }
  293. },
  294. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  295. "type": "package",
  296. "dependencies": {
  297. "Microsoft.EntityFrameworkCore": "5.0.0"
  298. },
  299. "compile": {
  300. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  301. "related": ".xml"
  302. }
  303. },
  304. "runtime": {
  305. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  306. "related": ".xml"
  307. }
  308. }
  309. },
  310. "log4net/2.0.17": {
  311. "type": "package",
  312. "dependencies": {
  313. "System.Configuration.ConfigurationManager": "4.5.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/log4net.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/log4net.dll": {
  322. "related": ".xml"
  323. }
  324. }
  325. },
  326. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  327. "type": "package",
  328. "dependencies": {
  329. "Newtonsoft.Json": "11.0.2"
  330. },
  331. "compile": {
  332. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  333. "related": ".pdb;.xml"
  334. }
  335. },
  336. "runtime": {
  337. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  338. "related": ".pdb;.xml"
  339. }
  340. }
  341. },
  342. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  343. "type": "package",
  344. "dependencies": {
  345. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  346. "System.Text.Encodings.Web": "4.5.0"
  347. },
  348. "compile": {
  349. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  350. "related": ".xml"
  351. }
  352. },
  353. "runtime": {
  354. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  355. "related": ".xml"
  356. }
  357. }
  358. },
  359. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  360. "type": "package",
  361. "dependencies": {
  362. "Microsoft.Extensions.Primitives": "5.0.0",
  363. "System.IO.Pipelines": "5.0.0"
  364. },
  365. "compile": {
  366. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  367. "related": ".xml"
  368. }
  369. },
  370. "runtime": {
  371. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  372. "related": ".xml"
  373. }
  374. }
  375. },
  376. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  377. "type": "package",
  378. "dependencies": {
  379. "Microsoft.Extensions.Logging.Console": "3.1.30",
  380. "Newtonsoft.Json": "13.0.1"
  381. },
  382. "compile": {
  383. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  384. },
  385. "runtime": {
  386. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  387. },
  388. "frameworkReferences": [
  389. "Microsoft.AspNetCore.App"
  390. ]
  391. },
  392. "Microsoft.Bcl.AsyncInterfaces/9.0.8": {
  393. "type": "package",
  394. "compile": {
  395. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  396. "related": ".xml"
  397. }
  398. },
  399. "runtime": {
  400. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  401. "related": ".xml"
  402. }
  403. },
  404. "build": {
  405. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets": {}
  406. }
  407. },
  408. "Microsoft.CSharp/4.5.0": {
  409. "type": "package",
  410. "compile": {
  411. "ref/netcoreapp2.0/_._": {}
  412. },
  413. "runtime": {
  414. "lib/netcoreapp2.0/_._": {}
  415. }
  416. },
  417. "Microsoft.EntityFrameworkCore/5.0.0": {
  418. "type": "package",
  419. "dependencies": {
  420. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  421. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  422. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  423. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  424. "Microsoft.Extensions.Logging": "5.0.0",
  425. "System.Collections.Immutable": "5.0.0",
  426. "System.ComponentModel.Annotations": "5.0.0",
  427. "System.Diagnostics.DiagnosticSource": "5.0.0"
  428. },
  429. "compile": {
  430. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  431. "related": ".xml"
  432. }
  433. },
  434. "runtime": {
  435. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  436. "related": ".xml"
  437. }
  438. }
  439. },
  440. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  441. "type": "package",
  442. "compile": {
  443. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  444. "related": ".xml"
  445. }
  446. },
  447. "runtime": {
  448. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  449. "related": ".xml"
  450. }
  451. }
  452. },
  453. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  454. "type": "package",
  455. "compile": {
  456. "lib/netstandard2.0/_._": {}
  457. },
  458. "runtime": {
  459. "lib/netstandard2.0/_._": {}
  460. }
  461. },
  462. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  463. "type": "package",
  464. "dependencies": {
  465. "Microsoft.EntityFrameworkCore": "5.0.0",
  466. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  467. },
  468. "compile": {
  469. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  470. "related": ".xml"
  471. }
  472. },
  473. "runtime": {
  474. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  475. "related": ".xml"
  476. }
  477. }
  478. },
  479. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  480. "type": "package",
  481. "build": {
  482. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  483. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  484. },
  485. "buildMultiTargeting": {
  486. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  487. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  488. }
  489. },
  490. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  491. "type": "package",
  492. "dependencies": {
  493. "Microsoft.Extensions.Primitives": "5.0.0"
  494. },
  495. "compile": {
  496. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  497. "related": ".xml"
  498. }
  499. },
  500. "runtime": {
  501. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  502. "related": ".xml"
  503. }
  504. }
  505. },
  506. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  507. "type": "package",
  508. "dependencies": {
  509. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  510. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  511. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  512. "Microsoft.Extensions.Options": "5.0.0",
  513. "Microsoft.Extensions.Primitives": "5.0.0"
  514. },
  515. "compile": {
  516. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  517. "related": ".xml"
  518. }
  519. },
  520. "runtime": {
  521. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  522. "related": ".xml"
  523. }
  524. }
  525. },
  526. "Microsoft.Extensions.Configuration/5.0.0": {
  527. "type": "package",
  528. "dependencies": {
  529. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  530. "Microsoft.Extensions.Primitives": "5.0.0"
  531. },
  532. "compile": {
  533. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  534. "related": ".xml"
  535. }
  536. },
  537. "runtime": {
  538. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  539. "related": ".xml"
  540. }
  541. }
  542. },
  543. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  544. "type": "package",
  545. "dependencies": {
  546. "Microsoft.Extensions.Primitives": "5.0.0"
  547. },
  548. "compile": {
  549. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  550. "related": ".xml"
  551. }
  552. },
  553. "runtime": {
  554. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  555. "related": ".xml"
  556. }
  557. }
  558. },
  559. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  560. "type": "package",
  561. "dependencies": {
  562. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  563. },
  564. "compile": {
  565. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  566. "related": ".xml"
  567. }
  568. },
  569. "runtime": {
  570. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  571. "related": ".xml"
  572. }
  573. }
  574. },
  575. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  576. "type": "package",
  577. "dependencies": {
  578. "Microsoft.Extensions.Configuration": "5.0.0",
  579. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  580. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  581. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  582. "Microsoft.Extensions.Primitives": "5.0.0"
  583. },
  584. "compile": {
  585. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  586. "related": ".xml"
  587. }
  588. },
  589. "runtime": {
  590. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  591. "related": ".xml"
  592. }
  593. }
  594. },
  595. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  596. "type": "package",
  597. "dependencies": {
  598. "Microsoft.Extensions.Configuration": "5.0.0",
  599. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  600. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  601. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  602. },
  603. "compile": {
  604. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  605. "related": ".xml"
  606. }
  607. },
  608. "runtime": {
  609. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  610. "related": ".xml"
  611. }
  612. }
  613. },
  614. "Microsoft.Extensions.DependencyInjection/9.0.4": {
  615. "type": "package",
  616. "dependencies": {
  617. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4"
  618. },
  619. "compile": {
  620. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "runtime": {
  625. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  626. "related": ".xml"
  627. }
  628. },
  629. "build": {
  630. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  631. }
  632. },
  633. "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": {
  634. "type": "package",
  635. "compile": {
  636. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  637. "related": ".xml"
  638. }
  639. },
  640. "runtime": {
  641. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  642. "related": ".xml"
  643. }
  644. },
  645. "build": {
  646. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  647. }
  648. },
  649. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  650. "type": "package",
  651. "dependencies": {
  652. "Microsoft.Extensions.Primitives": "5.0.0"
  653. },
  654. "compile": {
  655. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  656. "related": ".xml"
  657. }
  658. },
  659. "runtime": {
  660. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  661. "related": ".xml"
  662. }
  663. }
  664. },
  665. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  666. "type": "package",
  667. "dependencies": {
  668. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  669. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  670. "Microsoft.Extensions.Primitives": "5.0.0"
  671. },
  672. "compile": {
  673. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  674. "related": ".xml"
  675. }
  676. },
  677. "runtime": {
  678. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  679. "related": ".xml"
  680. }
  681. }
  682. },
  683. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  684. "type": "package",
  685. "compile": {
  686. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  687. "related": ".xml"
  688. }
  689. },
  690. "runtime": {
  691. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  692. "related": ".xml"
  693. }
  694. }
  695. },
  696. "Microsoft.Extensions.Hosting/2.1.0": {
  697. "type": "package",
  698. "dependencies": {
  699. "Microsoft.Extensions.Configuration": "2.1.0",
  700. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  701. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  702. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  703. "Microsoft.Extensions.Logging": "2.1.0"
  704. },
  705. "compile": {
  706. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  707. "related": ".xml"
  708. }
  709. },
  710. "runtime": {
  711. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  712. "related": ".xml"
  713. }
  714. }
  715. },
  716. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  717. "type": "package",
  718. "dependencies": {
  719. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  720. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  721. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  722. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  723. },
  724. "compile": {
  725. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  726. "related": ".xml"
  727. }
  728. },
  729. "runtime": {
  730. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  731. "related": ".xml"
  732. }
  733. }
  734. },
  735. "Microsoft.Extensions.Http/5.0.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  739. "Microsoft.Extensions.Logging": "5.0.0",
  740. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  741. "Microsoft.Extensions.Options": "5.0.0"
  742. },
  743. "compile": {
  744. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  745. "related": ".xml"
  746. }
  747. },
  748. "runtime": {
  749. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  750. "related": ".xml"
  751. }
  752. }
  753. },
  754. "Microsoft.Extensions.Logging/9.0.4": {
  755. "type": "package",
  756. "dependencies": {
  757. "Microsoft.Extensions.DependencyInjection": "9.0.4",
  758. "Microsoft.Extensions.Logging.Abstractions": "9.0.4",
  759. "Microsoft.Extensions.Options": "9.0.4",
  760. "System.Diagnostics.DiagnosticSource": "9.0.4"
  761. },
  762. "compile": {
  763. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  764. "related": ".xml"
  765. }
  766. },
  767. "runtime": {
  768. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  769. "related": ".xml"
  770. }
  771. },
  772. "build": {
  773. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  774. }
  775. },
  776. "Microsoft.Extensions.Logging.Abstractions/9.0.4": {
  777. "type": "package",
  778. "dependencies": {
  779. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
  780. "System.Buffers": "4.5.1",
  781. "System.Diagnostics.DiagnosticSource": "9.0.4",
  782. "System.Memory": "4.5.5"
  783. },
  784. "compile": {
  785. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  786. "related": ".xml"
  787. }
  788. },
  789. "runtime": {
  790. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  791. "related": ".xml"
  792. }
  793. },
  794. "build": {
  795. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  796. }
  797. },
  798. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  799. "type": "package",
  800. "dependencies": {
  801. "Microsoft.Extensions.Logging": "3.1.30",
  802. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  803. },
  804. "compile": {
  805. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  806. "related": ".xml"
  807. }
  808. },
  809. "runtime": {
  810. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  811. "related": ".xml"
  812. }
  813. }
  814. },
  815. "Microsoft.Extensions.Logging.Console/3.1.30": {
  816. "type": "package",
  817. "dependencies": {
  818. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  819. "Microsoft.Extensions.Logging": "3.1.30",
  820. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  821. },
  822. "compile": {
  823. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  824. "related": ".xml"
  825. }
  826. },
  827. "runtime": {
  828. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  829. "related": ".xml"
  830. }
  831. }
  832. },
  833. "Microsoft.Extensions.Options/9.0.4": {
  834. "type": "package",
  835. "dependencies": {
  836. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
  837. "Microsoft.Extensions.Primitives": "9.0.4",
  838. "System.ComponentModel.Annotations": "5.0.0"
  839. },
  840. "compile": {
  841. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  842. "related": ".xml"
  843. }
  844. },
  845. "runtime": {
  846. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  847. "related": ".xml"
  848. }
  849. },
  850. "build": {
  851. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  852. }
  853. },
  854. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  855. "type": "package",
  856. "dependencies": {
  857. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  858. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  859. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  860. "Microsoft.Extensions.Options": "3.1.30"
  861. },
  862. "compile": {
  863. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  864. "related": ".xml"
  865. }
  866. },
  867. "runtime": {
  868. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  869. "related": ".xml"
  870. }
  871. }
  872. },
  873. "Microsoft.Extensions.Primitives/9.0.4": {
  874. "type": "package",
  875. "dependencies": {
  876. "System.Memory": "4.5.5",
  877. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  878. },
  879. "compile": {
  880. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtime": {
  885. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  886. "related": ".xml"
  887. }
  888. },
  889. "build": {
  890. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  891. }
  892. },
  893. "Microsoft.NETCore.Platforms/5.0.0": {
  894. "type": "package",
  895. "compile": {
  896. "lib/netstandard1.0/_._": {}
  897. },
  898. "runtime": {
  899. "lib/netstandard1.0/_._": {}
  900. }
  901. },
  902. "Microsoft.NETCore.Targets/1.1.3": {
  903. "type": "package",
  904. "compile": {
  905. "lib/netstandard1.0/_._": {}
  906. },
  907. "runtime": {
  908. "lib/netstandard1.0/_._": {}
  909. }
  910. },
  911. "Microsoft.OpenApi/1.2.3": {
  912. "type": "package",
  913. "compile": {
  914. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  915. "related": ".pdb;.xml"
  916. }
  917. },
  918. "runtime": {
  919. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  920. "related": ".pdb;.xml"
  921. }
  922. }
  923. },
  924. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  925. "type": "package",
  926. "build": {
  927. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  928. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  929. }
  930. },
  931. "Microsoft.Win32.Primitives/4.3.0": {
  932. "type": "package",
  933. "dependencies": {
  934. "Microsoft.NETCore.Platforms": "1.1.0",
  935. "Microsoft.NETCore.Targets": "1.1.0",
  936. "System.Runtime": "4.3.0"
  937. },
  938. "compile": {
  939. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  940. "related": ".xml"
  941. }
  942. }
  943. },
  944. "Microsoft.Win32.SystemEvents/4.7.0": {
  945. "type": "package",
  946. "dependencies": {
  947. "Microsoft.NETCore.Platforms": "3.1.0"
  948. },
  949. "compile": {
  950. "ref/netstandard2.0/_._": {
  951. "related": ".xml"
  952. }
  953. },
  954. "runtime": {
  955. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  956. "related": ".xml"
  957. }
  958. },
  959. "runtimeTargets": {
  960. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  961. "assetType": "runtime",
  962. "rid": "win"
  963. }
  964. }
  965. },
  966. "Minio/6.0.5": {
  967. "type": "package",
  968. "dependencies": {
  969. "CommunityToolkit.HighPerformance": "8.4.0",
  970. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
  971. "Microsoft.Extensions.Logging": "9.0.4",
  972. "System.IO.Hashing": "9.0.4",
  973. "System.Net.Http": "4.3.4",
  974. "System.Net.Primitives": "4.3.1",
  975. "System.Reactive": "6.0.1",
  976. "System.Security.Cryptography.Algorithms": "4.3.1",
  977. "System.Text.Json": "9.0.1",
  978. "System.Threading.Tasks.Extensions": "4.6.0",
  979. "System.ValueTuple": "4.5.0"
  980. },
  981. "compile": {
  982. "lib/netstandard2.0/Minio.dll": {
  983. "related": ".pdb;.xml"
  984. }
  985. },
  986. "runtime": {
  987. "lib/netstandard2.0/Minio.dll": {
  988. "related": ".pdb;.xml"
  989. }
  990. }
  991. },
  992. "MySql.Data/8.0.23": {
  993. "type": "package",
  994. "dependencies": {
  995. "BouncyCastle.NetCore": "1.8.5",
  996. "Google.Protobuf": "3.11.4",
  997. "K4os.Compression.LZ4": "1.1.11",
  998. "K4os.Compression.LZ4.Streams": "1.1.11",
  999. "K4os.Hash.xxHash": "1.0.6",
  1000. "SSH.NET": "2020.0.0-beta1",
  1001. "System.Buffers": "4.5.1",
  1002. "System.Configuration.ConfigurationManager": "4.4.1",
  1003. "System.Security.Permissions": "4.7.0",
  1004. "System.Text.Encoding.CodePages": "4.4.0"
  1005. },
  1006. "compile": {
  1007. "lib/net5.0/MySql.Data.dll": {
  1008. "related": ".xml"
  1009. },
  1010. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1011. "lib/net5.0/Zstandard.Net.dll": {}
  1012. },
  1013. "runtime": {
  1014. "lib/net5.0/MySql.Data.dll": {
  1015. "related": ".xml"
  1016. },
  1017. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1018. "lib/net5.0/Zstandard.Net.dll": {}
  1019. }
  1020. },
  1021. "MySqlConnector/1.1.0": {
  1022. "type": "package",
  1023. "compile": {
  1024. "lib/net5.0/MySqlConnector.dll": {
  1025. "related": ".xml"
  1026. }
  1027. },
  1028. "runtime": {
  1029. "lib/net5.0/MySqlConnector.dll": {
  1030. "related": ".xml"
  1031. }
  1032. }
  1033. },
  1034. "NETStandard.Library/1.6.1": {
  1035. "type": "package",
  1036. "dependencies": {
  1037. "Microsoft.NETCore.Platforms": "1.1.0",
  1038. "Microsoft.Win32.Primitives": "4.3.0",
  1039. "System.AppContext": "4.3.0",
  1040. "System.Collections": "4.3.0",
  1041. "System.Collections.Concurrent": "4.3.0",
  1042. "System.Console": "4.3.0",
  1043. "System.Diagnostics.Debug": "4.3.0",
  1044. "System.Diagnostics.Tools": "4.3.0",
  1045. "System.Diagnostics.Tracing": "4.3.0",
  1046. "System.Globalization": "4.3.0",
  1047. "System.Globalization.Calendars": "4.3.0",
  1048. "System.IO": "4.3.0",
  1049. "System.IO.Compression": "4.3.0",
  1050. "System.IO.Compression.ZipFile": "4.3.0",
  1051. "System.IO.FileSystem": "4.3.0",
  1052. "System.IO.FileSystem.Primitives": "4.3.0",
  1053. "System.Linq": "4.3.0",
  1054. "System.Linq.Expressions": "4.3.0",
  1055. "System.Net.Http": "4.3.0",
  1056. "System.Net.Primitives": "4.3.0",
  1057. "System.Net.Sockets": "4.3.0",
  1058. "System.ObjectModel": "4.3.0",
  1059. "System.Reflection": "4.3.0",
  1060. "System.Reflection.Extensions": "4.3.0",
  1061. "System.Reflection.Primitives": "4.3.0",
  1062. "System.Resources.ResourceManager": "4.3.0",
  1063. "System.Runtime": "4.3.0",
  1064. "System.Runtime.Extensions": "4.3.0",
  1065. "System.Runtime.Handles": "4.3.0",
  1066. "System.Runtime.InteropServices": "4.3.0",
  1067. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1068. "System.Runtime.Numerics": "4.3.0",
  1069. "System.Security.Cryptography.Algorithms": "4.3.0",
  1070. "System.Security.Cryptography.Encoding": "4.3.0",
  1071. "System.Security.Cryptography.Primitives": "4.3.0",
  1072. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1073. "System.Text.Encoding": "4.3.0",
  1074. "System.Text.Encoding.Extensions": "4.3.0",
  1075. "System.Text.RegularExpressions": "4.3.0",
  1076. "System.Threading": "4.3.0",
  1077. "System.Threading.Tasks": "4.3.0",
  1078. "System.Threading.Timer": "4.3.0",
  1079. "System.Xml.ReaderWriter": "4.3.0",
  1080. "System.Xml.XDocument": "4.3.0"
  1081. }
  1082. },
  1083. "Newtonsoft.Json/13.0.1": {
  1084. "type": "package",
  1085. "compile": {
  1086. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1087. "related": ".xml"
  1088. }
  1089. },
  1090. "runtime": {
  1091. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1092. "related": ".xml"
  1093. }
  1094. }
  1095. },
  1096. "Nito.AsyncEx.Coordination/5.0.0": {
  1097. "type": "package",
  1098. "dependencies": {
  1099. "Nito.AsyncEx.Tasks": "5.0.0",
  1100. "Nito.Collections.Deque": "1.0.4",
  1101. "Nito.Disposables": "2.0.0"
  1102. },
  1103. "compile": {
  1104. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1105. "related": ".xml"
  1106. }
  1107. },
  1108. "runtime": {
  1109. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1110. "related": ".xml"
  1111. }
  1112. }
  1113. },
  1114. "Nito.AsyncEx.Tasks/5.0.0": {
  1115. "type": "package",
  1116. "dependencies": {
  1117. "Nito.Disposables": "2.0.0"
  1118. },
  1119. "compile": {
  1120. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1121. "related": ".xml"
  1122. }
  1123. },
  1124. "runtime": {
  1125. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1126. "related": ".xml"
  1127. }
  1128. }
  1129. },
  1130. "Nito.Collections.Deque/1.0.4": {
  1131. "type": "package",
  1132. "compile": {
  1133. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1134. "related": ".xml"
  1135. }
  1136. },
  1137. "runtime": {
  1138. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1139. "related": ".xml"
  1140. }
  1141. }
  1142. },
  1143. "Nito.Disposables/2.0.0": {
  1144. "type": "package",
  1145. "dependencies": {
  1146. "System.Collections.Immutable": "1.4.0"
  1147. },
  1148. "compile": {
  1149. "lib/netstandard2.0/Nito.Disposables.dll": {
  1150. "related": ".pdb;.xml"
  1151. }
  1152. },
  1153. "runtime": {
  1154. "lib/netstandard2.0/Nito.Disposables.dll": {
  1155. "related": ".pdb;.xml"
  1156. }
  1157. }
  1158. },
  1159. "NodaTime/2.4.7": {
  1160. "type": "package",
  1161. "compile": {
  1162. "lib/netstandard2.0/NodaTime.dll": {
  1163. "related": ".pdb;.xml"
  1164. }
  1165. },
  1166. "runtime": {
  1167. "lib/netstandard2.0/NodaTime.dll": {
  1168. "related": ".pdb;.xml"
  1169. }
  1170. }
  1171. },
  1172. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1173. "type": "package",
  1174. "dependencies": {
  1175. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1176. "MySqlConnector": "1.1.0"
  1177. },
  1178. "compile": {
  1179. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1180. "related": ".xml"
  1181. }
  1182. },
  1183. "runtime": {
  1184. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1185. "related": ".xml"
  1186. }
  1187. }
  1188. },
  1189. "QRCoder/1.4.3": {
  1190. "type": "package",
  1191. "compile": {
  1192. "lib/net6.0/QRCoder.dll": {}
  1193. },
  1194. "runtime": {
  1195. "lib/net6.0/QRCoder.dll": {}
  1196. }
  1197. },
  1198. "RabbitMQ.Client/6.8.1": {
  1199. "type": "package",
  1200. "dependencies": {
  1201. "System.Memory": "4.5.5",
  1202. "System.Threading.Channels": "7.0.0"
  1203. },
  1204. "compile": {
  1205. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1206. "related": ".xml"
  1207. }
  1208. },
  1209. "runtime": {
  1210. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1211. "related": ".xml"
  1212. }
  1213. }
  1214. },
  1215. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1216. "type": "package",
  1217. "runtimeTargets": {
  1218. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1219. "assetType": "native",
  1220. "rid": "debian.8-x64"
  1221. }
  1222. }
  1223. },
  1224. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1225. "type": "package",
  1226. "runtimeTargets": {
  1227. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1228. "assetType": "native",
  1229. "rid": "fedora.23-x64"
  1230. }
  1231. }
  1232. },
  1233. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1234. "type": "package",
  1235. "runtimeTargets": {
  1236. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1237. "assetType": "native",
  1238. "rid": "fedora.24-x64"
  1239. }
  1240. }
  1241. },
  1242. "runtime.native.System/4.3.0": {
  1243. "type": "package",
  1244. "dependencies": {
  1245. "Microsoft.NETCore.Platforms": "1.1.0",
  1246. "Microsoft.NETCore.Targets": "1.1.0"
  1247. },
  1248. "compile": {
  1249. "lib/netstandard1.0/_._": {}
  1250. },
  1251. "runtime": {
  1252. "lib/netstandard1.0/_._": {}
  1253. }
  1254. },
  1255. "runtime.native.System.IO.Compression/4.3.0": {
  1256. "type": "package",
  1257. "dependencies": {
  1258. "Microsoft.NETCore.Platforms": "1.1.0",
  1259. "Microsoft.NETCore.Targets": "1.1.0"
  1260. },
  1261. "compile": {
  1262. "lib/netstandard1.0/_._": {}
  1263. },
  1264. "runtime": {
  1265. "lib/netstandard1.0/_._": {}
  1266. }
  1267. },
  1268. "runtime.native.System.Net.Http/4.3.0": {
  1269. "type": "package",
  1270. "dependencies": {
  1271. "Microsoft.NETCore.Platforms": "1.1.0",
  1272. "Microsoft.NETCore.Targets": "1.1.0"
  1273. },
  1274. "compile": {
  1275. "lib/netstandard1.0/_._": {}
  1276. },
  1277. "runtime": {
  1278. "lib/netstandard1.0/_._": {}
  1279. }
  1280. },
  1281. "runtime.native.System.Net.Security/4.3.0": {
  1282. "type": "package",
  1283. "dependencies": {
  1284. "Microsoft.NETCore.Platforms": "1.1.0",
  1285. "Microsoft.NETCore.Targets": "1.1.0"
  1286. },
  1287. "compile": {
  1288. "lib/netstandard1.0/_._": {}
  1289. },
  1290. "runtime": {
  1291. "lib/netstandard1.0/_._": {}
  1292. }
  1293. },
  1294. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1295. "type": "package",
  1296. "dependencies": {
  1297. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  1298. },
  1299. "compile": {
  1300. "lib/netstandard1.0/_._": {}
  1301. },
  1302. "runtime": {
  1303. "lib/netstandard1.0/_._": {}
  1304. }
  1305. },
  1306. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1307. "type": "package",
  1308. "dependencies": {
  1309. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1310. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1311. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1312. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1313. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1314. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1315. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1316. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1317. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1318. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1319. },
  1320. "compile": {
  1321. "lib/netstandard1.0/_._": {}
  1322. },
  1323. "runtime": {
  1324. "lib/netstandard1.0/_._": {}
  1325. }
  1326. },
  1327. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1328. "type": "package",
  1329. "runtimeTargets": {
  1330. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1331. "assetType": "native",
  1332. "rid": "opensuse.13.2-x64"
  1333. }
  1334. }
  1335. },
  1336. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1337. "type": "package",
  1338. "runtimeTargets": {
  1339. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1340. "assetType": "native",
  1341. "rid": "opensuse.42.1-x64"
  1342. }
  1343. }
  1344. },
  1345. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1346. "type": "package",
  1347. "runtimeTargets": {
  1348. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1349. "assetType": "native",
  1350. "rid": "osx.10.10-x64"
  1351. }
  1352. }
  1353. },
  1354. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1355. "type": "package",
  1356. "runtimeTargets": {
  1357. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1358. "assetType": "native",
  1359. "rid": "osx.10.10-x64"
  1360. }
  1361. }
  1362. },
  1363. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1364. "type": "package",
  1365. "runtimeTargets": {
  1366. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1367. "assetType": "native",
  1368. "rid": "rhel.7-x64"
  1369. }
  1370. }
  1371. },
  1372. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1373. "type": "package",
  1374. "runtimeTargets": {
  1375. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1376. "assetType": "native",
  1377. "rid": "ubuntu.14.04-x64"
  1378. }
  1379. }
  1380. },
  1381. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1382. "type": "package",
  1383. "runtimeTargets": {
  1384. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1385. "assetType": "native",
  1386. "rid": "ubuntu.16.04-x64"
  1387. }
  1388. }
  1389. },
  1390. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1391. "type": "package",
  1392. "runtimeTargets": {
  1393. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1394. "assetType": "native",
  1395. "rid": "ubuntu.16.10-x64"
  1396. }
  1397. }
  1398. },
  1399. "SixLabors.ImageSharp/2.1.6": {
  1400. "type": "package",
  1401. "dependencies": {
  1402. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1403. "System.Text.Encoding.CodePages": "5.0.0"
  1404. },
  1405. "compile": {
  1406. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1407. "related": ".xml"
  1408. }
  1409. },
  1410. "runtime": {
  1411. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1412. "related": ".xml"
  1413. }
  1414. }
  1415. },
  1416. "SSH.NET/2020.0.0-beta1": {
  1417. "type": "package",
  1418. "dependencies": {
  1419. "SshNet.Security.Cryptography": "[1.3.0]"
  1420. },
  1421. "compile": {
  1422. "lib/netstandard2.0/Renci.SshNet.dll": {
  1423. "related": ".xml"
  1424. }
  1425. },
  1426. "runtime": {
  1427. "lib/netstandard2.0/Renci.SshNet.dll": {
  1428. "related": ".xml"
  1429. }
  1430. }
  1431. },
  1432. "SshNet.Security.Cryptography/1.3.0": {
  1433. "type": "package",
  1434. "compile": {
  1435. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1436. "related": ".xml"
  1437. }
  1438. },
  1439. "runtime": {
  1440. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1441. "related": ".xml"
  1442. }
  1443. }
  1444. },
  1445. "StackExchange.Redis/1.2.4": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "NETStandard.Library": "1.6.1",
  1449. "System.Collections": "4.3.0",
  1450. "System.Collections.Concurrent": "4.3.0",
  1451. "System.Collections.NonGeneric": "4.3.0",
  1452. "System.Diagnostics.Tools": "4.3.0",
  1453. "System.IO.Compression": "4.3.0",
  1454. "System.IO.FileSystem": "4.3.0",
  1455. "System.Linq": "4.3.0",
  1456. "System.Net.NameResolution": "4.3.0",
  1457. "System.Net.Security": "4.3.0",
  1458. "System.Net.Sockets": "4.3.0",
  1459. "System.Reflection.Emit": "4.3.0",
  1460. "System.Reflection.Emit.Lightweight": "4.3.0",
  1461. "System.Reflection.TypeExtensions": "4.3.0",
  1462. "System.Runtime.Extensions": "4.3.0",
  1463. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1464. "System.Security.Cryptography.Algorithms": "4.3.0",
  1465. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1466. "System.Text.RegularExpressions": "4.3.0",
  1467. "System.Threading": "4.3.0",
  1468. "System.Threading.Thread": "4.3.0",
  1469. "System.Threading.ThreadPool": "4.3.0",
  1470. "System.Threading.Timer": "4.3.0"
  1471. },
  1472. "compile": {
  1473. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1474. "related": ".xml"
  1475. }
  1476. },
  1477. "runtime": {
  1478. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1479. "related": ".xml"
  1480. }
  1481. }
  1482. },
  1483. "Swashbuckle.AspNetCore/5.6.3": {
  1484. "type": "package",
  1485. "dependencies": {
  1486. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1487. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1488. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1489. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1490. },
  1491. "build": {
  1492. "build/Swashbuckle.AspNetCore.props": {}
  1493. }
  1494. },
  1495. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1496. "type": "package",
  1497. "dependencies": {
  1498. "Microsoft.OpenApi": "1.2.3"
  1499. },
  1500. "compile": {
  1501. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1502. "related": ".pdb;.xml"
  1503. }
  1504. },
  1505. "runtime": {
  1506. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1507. "related": ".pdb;.xml"
  1508. }
  1509. },
  1510. "frameworkReferences": [
  1511. "Microsoft.AspNetCore.App"
  1512. ]
  1513. },
  1514. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1515. "type": "package",
  1516. "dependencies": {
  1517. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1518. },
  1519. "compile": {
  1520. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1521. "related": ".pdb;.xml"
  1522. }
  1523. },
  1524. "runtime": {
  1525. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1526. "related": ".pdb;.xml"
  1527. }
  1528. },
  1529. "frameworkReferences": [
  1530. "Microsoft.AspNetCore.App"
  1531. ]
  1532. },
  1533. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1534. "type": "package",
  1535. "compile": {
  1536. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1537. "related": ".pdb;.xml"
  1538. }
  1539. },
  1540. "runtime": {
  1541. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1542. "related": ".pdb;.xml"
  1543. }
  1544. },
  1545. "frameworkReferences": [
  1546. "Microsoft.AspNetCore.App"
  1547. ]
  1548. },
  1549. "System.AppContext/4.3.0": {
  1550. "type": "package",
  1551. "dependencies": {
  1552. "System.Runtime": "4.3.0"
  1553. },
  1554. "compile": {
  1555. "ref/netstandard1.6/System.AppContext.dll": {
  1556. "related": ".xml"
  1557. }
  1558. },
  1559. "runtime": {
  1560. "lib/netstandard1.6/System.AppContext.dll": {}
  1561. }
  1562. },
  1563. "System.Buffers/4.5.1": {
  1564. "type": "package",
  1565. "compile": {
  1566. "ref/netcoreapp2.0/_._": {}
  1567. },
  1568. "runtime": {
  1569. "lib/netcoreapp2.0/_._": {}
  1570. }
  1571. },
  1572. "System.Collections/4.3.0": {
  1573. "type": "package",
  1574. "dependencies": {
  1575. "Microsoft.NETCore.Platforms": "1.1.0",
  1576. "Microsoft.NETCore.Targets": "1.1.0",
  1577. "System.Runtime": "4.3.0"
  1578. },
  1579. "compile": {
  1580. "ref/netstandard1.3/System.Collections.dll": {
  1581. "related": ".xml"
  1582. }
  1583. }
  1584. },
  1585. "System.Collections.Concurrent/4.3.0": {
  1586. "type": "package",
  1587. "dependencies": {
  1588. "System.Collections": "4.3.0",
  1589. "System.Diagnostics.Debug": "4.3.0",
  1590. "System.Diagnostics.Tracing": "4.3.0",
  1591. "System.Globalization": "4.3.0",
  1592. "System.Reflection": "4.3.0",
  1593. "System.Resources.ResourceManager": "4.3.0",
  1594. "System.Runtime": "4.3.0",
  1595. "System.Runtime.Extensions": "4.3.0",
  1596. "System.Threading": "4.3.0",
  1597. "System.Threading.Tasks": "4.3.0"
  1598. },
  1599. "compile": {
  1600. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1601. "related": ".xml"
  1602. }
  1603. },
  1604. "runtime": {
  1605. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1606. }
  1607. },
  1608. "System.Collections.Immutable/5.0.0": {
  1609. "type": "package",
  1610. "compile": {
  1611. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1612. "related": ".xml"
  1613. }
  1614. },
  1615. "runtime": {
  1616. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1617. "related": ".xml"
  1618. }
  1619. }
  1620. },
  1621. "System.Collections.NonGeneric/4.3.0": {
  1622. "type": "package",
  1623. "dependencies": {
  1624. "System.Diagnostics.Debug": "4.3.0",
  1625. "System.Globalization": "4.3.0",
  1626. "System.Resources.ResourceManager": "4.3.0",
  1627. "System.Runtime": "4.3.0",
  1628. "System.Runtime.Extensions": "4.3.0",
  1629. "System.Threading": "4.3.0"
  1630. },
  1631. "compile": {
  1632. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1638. }
  1639. },
  1640. "System.ComponentModel/4.3.0": {
  1641. "type": "package",
  1642. "dependencies": {
  1643. "System.Runtime": "4.3.0"
  1644. },
  1645. "compile": {
  1646. "ref/netstandard1.0/System.ComponentModel.dll": {
  1647. "related": ".xml"
  1648. }
  1649. },
  1650. "runtime": {
  1651. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1652. }
  1653. },
  1654. "System.ComponentModel.Annotations/5.0.0": {
  1655. "type": "package",
  1656. "compile": {
  1657. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1658. "related": ".xml"
  1659. }
  1660. },
  1661. "runtime": {
  1662. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1663. "related": ".xml"
  1664. }
  1665. }
  1666. },
  1667. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1668. "type": "package",
  1669. "dependencies": {
  1670. "System.Resources.ResourceManager": "4.3.0",
  1671. "System.Runtime": "4.3.0",
  1672. "System.Threading": "4.3.0",
  1673. "System.Threading.Tasks": "4.3.0"
  1674. },
  1675. "compile": {
  1676. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1677. "related": ".xml"
  1678. }
  1679. },
  1680. "runtime": {
  1681. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1682. }
  1683. },
  1684. "System.ComponentModel.Primitives/4.3.0": {
  1685. "type": "package",
  1686. "dependencies": {
  1687. "System.ComponentModel": "4.3.0",
  1688. "System.Resources.ResourceManager": "4.3.0",
  1689. "System.Runtime": "4.3.0"
  1690. },
  1691. "compile": {
  1692. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1693. "related": ".xml"
  1694. }
  1695. },
  1696. "runtime": {
  1697. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1698. }
  1699. },
  1700. "System.Configuration.ConfigurationManager/4.5.0": {
  1701. "type": "package",
  1702. "dependencies": {
  1703. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1704. "System.Security.Permissions": "4.5.0"
  1705. },
  1706. "compile": {
  1707. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1708. "related": ".xml"
  1709. }
  1710. },
  1711. "runtime": {
  1712. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1713. }
  1714. },
  1715. "System.Console/4.3.0": {
  1716. "type": "package",
  1717. "dependencies": {
  1718. "Microsoft.NETCore.Platforms": "1.1.0",
  1719. "Microsoft.NETCore.Targets": "1.1.0",
  1720. "System.IO": "4.3.0",
  1721. "System.Runtime": "4.3.0",
  1722. "System.Text.Encoding": "4.3.0"
  1723. },
  1724. "compile": {
  1725. "ref/netstandard1.3/System.Console.dll": {
  1726. "related": ".xml"
  1727. }
  1728. }
  1729. },
  1730. "System.Diagnostics.Debug/4.3.0": {
  1731. "type": "package",
  1732. "dependencies": {
  1733. "Microsoft.NETCore.Platforms": "1.1.0",
  1734. "Microsoft.NETCore.Targets": "1.1.0",
  1735. "System.Runtime": "4.3.0"
  1736. },
  1737. "compile": {
  1738. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "System.Diagnostics.DiagnosticSource/9.0.4": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "System.Memory": "4.5.5",
  1747. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1748. },
  1749. "compile": {
  1750. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1751. "related": ".xml"
  1752. }
  1753. },
  1754. "runtime": {
  1755. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1756. "related": ".xml"
  1757. }
  1758. },
  1759. "build": {
  1760. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  1761. }
  1762. },
  1763. "System.Diagnostics.Tools/4.3.0": {
  1764. "type": "package",
  1765. "dependencies": {
  1766. "Microsoft.NETCore.Platforms": "1.1.0",
  1767. "Microsoft.NETCore.Targets": "1.1.0",
  1768. "System.Runtime": "4.3.0"
  1769. },
  1770. "compile": {
  1771. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1772. "related": ".xml"
  1773. }
  1774. }
  1775. },
  1776. "System.Diagnostics.Tracing/4.3.0": {
  1777. "type": "package",
  1778. "dependencies": {
  1779. "Microsoft.NETCore.Platforms": "1.1.0",
  1780. "Microsoft.NETCore.Targets": "1.1.0",
  1781. "System.Runtime": "4.3.0"
  1782. },
  1783. "compile": {
  1784. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1785. "related": ".xml"
  1786. }
  1787. }
  1788. },
  1789. "System.Drawing.Common/4.7.0": {
  1790. "type": "package",
  1791. "dependencies": {
  1792. "Microsoft.NETCore.Platforms": "3.1.0",
  1793. "Microsoft.Win32.SystemEvents": "4.7.0"
  1794. },
  1795. "compile": {
  1796. "ref/netcoreapp3.0/_._": {
  1797. "related": ".xml"
  1798. }
  1799. },
  1800. "runtime": {
  1801. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1802. },
  1803. "runtimeTargets": {
  1804. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1805. "assetType": "runtime",
  1806. "rid": "unix"
  1807. },
  1808. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1809. "assetType": "runtime",
  1810. "rid": "win"
  1811. }
  1812. }
  1813. },
  1814. "System.Globalization/4.3.0": {
  1815. "type": "package",
  1816. "dependencies": {
  1817. "Microsoft.NETCore.Platforms": "1.1.0",
  1818. "Microsoft.NETCore.Targets": "1.1.0",
  1819. "System.Runtime": "4.3.0"
  1820. },
  1821. "compile": {
  1822. "ref/netstandard1.3/System.Globalization.dll": {
  1823. "related": ".xml"
  1824. }
  1825. }
  1826. },
  1827. "System.Globalization.Calendars/4.3.0": {
  1828. "type": "package",
  1829. "dependencies": {
  1830. "Microsoft.NETCore.Platforms": "1.1.0",
  1831. "Microsoft.NETCore.Targets": "1.1.0",
  1832. "System.Globalization": "4.3.0",
  1833. "System.Runtime": "4.3.0"
  1834. },
  1835. "compile": {
  1836. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1837. "related": ".xml"
  1838. }
  1839. }
  1840. },
  1841. "System.Globalization.Extensions/4.3.0": {
  1842. "type": "package",
  1843. "dependencies": {
  1844. "Microsoft.NETCore.Platforms": "1.1.0",
  1845. "System.Globalization": "4.3.0",
  1846. "System.Resources.ResourceManager": "4.3.0",
  1847. "System.Runtime": "4.3.0",
  1848. "System.Runtime.Extensions": "4.3.0",
  1849. "System.Runtime.InteropServices": "4.3.0"
  1850. },
  1851. "compile": {
  1852. "ref/netstandard1.3/_._": {
  1853. "related": ".xml"
  1854. }
  1855. },
  1856. "runtimeTargets": {
  1857. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1858. "assetType": "runtime",
  1859. "rid": "unix"
  1860. },
  1861. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1862. "assetType": "runtime",
  1863. "rid": "win"
  1864. }
  1865. }
  1866. },
  1867. "System.IO/4.3.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "Microsoft.NETCore.Platforms": "1.1.0",
  1871. "Microsoft.NETCore.Targets": "1.1.0",
  1872. "System.Runtime": "4.3.0",
  1873. "System.Text.Encoding": "4.3.0",
  1874. "System.Threading.Tasks": "4.3.0"
  1875. },
  1876. "compile": {
  1877. "ref/netstandard1.5/System.IO.dll": {
  1878. "related": ".xml"
  1879. }
  1880. }
  1881. },
  1882. "System.IO.Compression/4.3.0": {
  1883. "type": "package",
  1884. "dependencies": {
  1885. "Microsoft.NETCore.Platforms": "1.1.0",
  1886. "System.Buffers": "4.3.0",
  1887. "System.Collections": "4.3.0",
  1888. "System.Diagnostics.Debug": "4.3.0",
  1889. "System.IO": "4.3.0",
  1890. "System.Resources.ResourceManager": "4.3.0",
  1891. "System.Runtime": "4.3.0",
  1892. "System.Runtime.Extensions": "4.3.0",
  1893. "System.Runtime.Handles": "4.3.0",
  1894. "System.Runtime.InteropServices": "4.3.0",
  1895. "System.Text.Encoding": "4.3.0",
  1896. "System.Threading": "4.3.0",
  1897. "System.Threading.Tasks": "4.3.0",
  1898. "runtime.native.System": "4.3.0",
  1899. "runtime.native.System.IO.Compression": "4.3.0"
  1900. },
  1901. "compile": {
  1902. "ref/netstandard1.3/System.IO.Compression.dll": {
  1903. "related": ".xml"
  1904. }
  1905. },
  1906. "runtimeTargets": {
  1907. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1908. "assetType": "runtime",
  1909. "rid": "unix"
  1910. },
  1911. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1912. "assetType": "runtime",
  1913. "rid": "win"
  1914. }
  1915. }
  1916. },
  1917. "System.IO.Compression.ZipFile/4.3.0": {
  1918. "type": "package",
  1919. "dependencies": {
  1920. "System.Buffers": "4.3.0",
  1921. "System.IO": "4.3.0",
  1922. "System.IO.Compression": "4.3.0",
  1923. "System.IO.FileSystem": "4.3.0",
  1924. "System.IO.FileSystem.Primitives": "4.3.0",
  1925. "System.Resources.ResourceManager": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Runtime.Extensions": "4.3.0",
  1928. "System.Text.Encoding": "4.3.0"
  1929. },
  1930. "compile": {
  1931. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1932. "related": ".xml"
  1933. }
  1934. },
  1935. "runtime": {
  1936. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1937. }
  1938. },
  1939. "System.IO.FileSystem/4.3.0": {
  1940. "type": "package",
  1941. "dependencies": {
  1942. "Microsoft.NETCore.Platforms": "1.1.0",
  1943. "Microsoft.NETCore.Targets": "1.1.0",
  1944. "System.IO": "4.3.0",
  1945. "System.IO.FileSystem.Primitives": "4.3.0",
  1946. "System.Runtime": "4.3.0",
  1947. "System.Runtime.Handles": "4.3.0",
  1948. "System.Text.Encoding": "4.3.0",
  1949. "System.Threading.Tasks": "4.3.0"
  1950. },
  1951. "compile": {
  1952. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1953. "related": ".xml"
  1954. }
  1955. }
  1956. },
  1957. "System.IO.FileSystem.Primitives/4.3.0": {
  1958. "type": "package",
  1959. "dependencies": {
  1960. "System.Runtime": "4.3.0"
  1961. },
  1962. "compile": {
  1963. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1964. "related": ".xml"
  1965. }
  1966. },
  1967. "runtime": {
  1968. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1969. }
  1970. },
  1971. "System.IO.Hashing/9.0.4": {
  1972. "type": "package",
  1973. "dependencies": {
  1974. "System.Buffers": "4.5.1",
  1975. "System.Memory": "4.5.5"
  1976. },
  1977. "compile": {
  1978. "lib/netstandard2.0/System.IO.Hashing.dll": {
  1979. "related": ".xml"
  1980. }
  1981. },
  1982. "runtime": {
  1983. "lib/netstandard2.0/System.IO.Hashing.dll": {
  1984. "related": ".xml"
  1985. }
  1986. },
  1987. "build": {
  1988. "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets": {}
  1989. }
  1990. },
  1991. "System.IO.Pipelines/9.0.1": {
  1992. "type": "package",
  1993. "dependencies": {
  1994. "System.Buffers": "4.5.1",
  1995. "System.Memory": "4.5.5",
  1996. "System.Threading.Tasks.Extensions": "4.5.4"
  1997. },
  1998. "compile": {
  1999. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  2000. "related": ".xml"
  2001. }
  2002. },
  2003. "runtime": {
  2004. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "build": {
  2009. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets": {}
  2010. }
  2011. },
  2012. "System.Linq/4.3.0": {
  2013. "type": "package",
  2014. "dependencies": {
  2015. "System.Collections": "4.3.0",
  2016. "System.Diagnostics.Debug": "4.3.0",
  2017. "System.Resources.ResourceManager": "4.3.0",
  2018. "System.Runtime": "4.3.0",
  2019. "System.Runtime.Extensions": "4.3.0"
  2020. },
  2021. "compile": {
  2022. "ref/netstandard1.6/System.Linq.dll": {
  2023. "related": ".xml"
  2024. }
  2025. },
  2026. "runtime": {
  2027. "lib/netstandard1.6/System.Linq.dll": {}
  2028. }
  2029. },
  2030. "System.Linq.Expressions/4.3.0": {
  2031. "type": "package",
  2032. "dependencies": {
  2033. "System.Collections": "4.3.0",
  2034. "System.Diagnostics.Debug": "4.3.0",
  2035. "System.Globalization": "4.3.0",
  2036. "System.IO": "4.3.0",
  2037. "System.Linq": "4.3.0",
  2038. "System.ObjectModel": "4.3.0",
  2039. "System.Reflection": "4.3.0",
  2040. "System.Reflection.Emit": "4.3.0",
  2041. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2042. "System.Reflection.Emit.Lightweight": "4.3.0",
  2043. "System.Reflection.Extensions": "4.3.0",
  2044. "System.Reflection.Primitives": "4.3.0",
  2045. "System.Reflection.TypeExtensions": "4.3.0",
  2046. "System.Resources.ResourceManager": "4.3.0",
  2047. "System.Runtime": "4.3.0",
  2048. "System.Runtime.Extensions": "4.3.0",
  2049. "System.Threading": "4.3.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2053. "related": ".xml"
  2054. }
  2055. },
  2056. "runtime": {
  2057. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2058. }
  2059. },
  2060. "System.Memory/4.5.5": {
  2061. "type": "package",
  2062. "compile": {
  2063. "ref/netcoreapp2.1/_._": {}
  2064. },
  2065. "runtime": {
  2066. "lib/netcoreapp2.1/_._": {}
  2067. }
  2068. },
  2069. "System.Net.Http/4.3.4": {
  2070. "type": "package",
  2071. "dependencies": {
  2072. "Microsoft.NETCore.Platforms": "1.1.1",
  2073. "System.Collections": "4.3.0",
  2074. "System.Diagnostics.Debug": "4.3.0",
  2075. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2076. "System.Diagnostics.Tracing": "4.3.0",
  2077. "System.Globalization": "4.3.0",
  2078. "System.Globalization.Extensions": "4.3.0",
  2079. "System.IO": "4.3.0",
  2080. "System.IO.FileSystem": "4.3.0",
  2081. "System.Net.Primitives": "4.3.0",
  2082. "System.Resources.ResourceManager": "4.3.0",
  2083. "System.Runtime": "4.3.0",
  2084. "System.Runtime.Extensions": "4.3.0",
  2085. "System.Runtime.Handles": "4.3.0",
  2086. "System.Runtime.InteropServices": "4.3.0",
  2087. "System.Security.Cryptography.Algorithms": "4.3.0",
  2088. "System.Security.Cryptography.Encoding": "4.3.0",
  2089. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2090. "System.Security.Cryptography.Primitives": "4.3.0",
  2091. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2092. "System.Text.Encoding": "4.3.0",
  2093. "System.Threading": "4.3.0",
  2094. "System.Threading.Tasks": "4.3.0",
  2095. "runtime.native.System": "4.3.0",
  2096. "runtime.native.System.Net.Http": "4.3.0",
  2097. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2098. },
  2099. "compile": {
  2100. "ref/netstandard1.3/System.Net.Http.dll": {}
  2101. },
  2102. "runtimeTargets": {
  2103. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2104. "assetType": "runtime",
  2105. "rid": "unix"
  2106. },
  2107. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2108. "assetType": "runtime",
  2109. "rid": "win"
  2110. }
  2111. }
  2112. },
  2113. "System.Net.NameResolution/4.3.0": {
  2114. "type": "package",
  2115. "dependencies": {
  2116. "Microsoft.NETCore.Platforms": "1.1.0",
  2117. "System.Collections": "4.3.0",
  2118. "System.Diagnostics.Tracing": "4.3.0",
  2119. "System.Globalization": "4.3.0",
  2120. "System.Net.Primitives": "4.3.0",
  2121. "System.Resources.ResourceManager": "4.3.0",
  2122. "System.Runtime": "4.3.0",
  2123. "System.Runtime.Extensions": "4.3.0",
  2124. "System.Runtime.Handles": "4.3.0",
  2125. "System.Runtime.InteropServices": "4.3.0",
  2126. "System.Security.Principal.Windows": "4.3.0",
  2127. "System.Threading": "4.3.0",
  2128. "System.Threading.Tasks": "4.3.0",
  2129. "runtime.native.System": "4.3.0"
  2130. },
  2131. "compile": {
  2132. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2133. "related": ".xml"
  2134. }
  2135. },
  2136. "runtimeTargets": {
  2137. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2138. "assetType": "runtime",
  2139. "rid": "unix"
  2140. },
  2141. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2142. "assetType": "runtime",
  2143. "rid": "win"
  2144. }
  2145. }
  2146. },
  2147. "System.Net.Primitives/4.3.1": {
  2148. "type": "package",
  2149. "dependencies": {
  2150. "Microsoft.NETCore.Platforms": "1.1.1",
  2151. "Microsoft.NETCore.Targets": "1.1.3",
  2152. "System.Runtime": "4.3.1",
  2153. "System.Runtime.Handles": "4.3.0"
  2154. },
  2155. "compile": {
  2156. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2157. "related": ".xml"
  2158. }
  2159. }
  2160. },
  2161. "System.Net.Security/4.3.0": {
  2162. "type": "package",
  2163. "dependencies": {
  2164. "Microsoft.NETCore.Platforms": "1.1.0",
  2165. "Microsoft.Win32.Primitives": "4.3.0",
  2166. "System.Collections": "4.3.0",
  2167. "System.Collections.Concurrent": "4.3.0",
  2168. "System.Diagnostics.Tracing": "4.3.0",
  2169. "System.Globalization": "4.3.0",
  2170. "System.Globalization.Extensions": "4.3.0",
  2171. "System.IO": "4.3.0",
  2172. "System.Net.Primitives": "4.3.0",
  2173. "System.Resources.ResourceManager": "4.3.0",
  2174. "System.Runtime": "4.3.0",
  2175. "System.Runtime.Extensions": "4.3.0",
  2176. "System.Runtime.Handles": "4.3.0",
  2177. "System.Runtime.InteropServices": "4.3.0",
  2178. "System.Security.Claims": "4.3.0",
  2179. "System.Security.Cryptography.Algorithms": "4.3.0",
  2180. "System.Security.Cryptography.Encoding": "4.3.0",
  2181. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2182. "System.Security.Cryptography.Primitives": "4.3.0",
  2183. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2184. "System.Security.Principal": "4.3.0",
  2185. "System.Text.Encoding": "4.3.0",
  2186. "System.Threading": "4.3.0",
  2187. "System.Threading.Tasks": "4.3.0",
  2188. "System.Threading.ThreadPool": "4.3.0",
  2189. "runtime.native.System": "4.3.0",
  2190. "runtime.native.System.Net.Security": "4.3.0",
  2191. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2192. },
  2193. "compile": {
  2194. "ref/netstandard1.3/System.Net.Security.dll": {
  2195. "related": ".xml"
  2196. }
  2197. },
  2198. "runtimeTargets": {
  2199. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2200. "assetType": "runtime",
  2201. "rid": "unix"
  2202. },
  2203. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2204. "assetType": "runtime",
  2205. "rid": "win"
  2206. }
  2207. }
  2208. },
  2209. "System.Net.Sockets/4.3.0": {
  2210. "type": "package",
  2211. "dependencies": {
  2212. "Microsoft.NETCore.Platforms": "1.1.0",
  2213. "Microsoft.NETCore.Targets": "1.1.0",
  2214. "System.IO": "4.3.0",
  2215. "System.Net.Primitives": "4.3.0",
  2216. "System.Runtime": "4.3.0",
  2217. "System.Threading.Tasks": "4.3.0"
  2218. },
  2219. "compile": {
  2220. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2221. "related": ".xml"
  2222. }
  2223. }
  2224. },
  2225. "System.ObjectModel/4.3.0": {
  2226. "type": "package",
  2227. "dependencies": {
  2228. "System.Collections": "4.3.0",
  2229. "System.Diagnostics.Debug": "4.3.0",
  2230. "System.Resources.ResourceManager": "4.3.0",
  2231. "System.Runtime": "4.3.0",
  2232. "System.Threading": "4.3.0"
  2233. },
  2234. "compile": {
  2235. "ref/netstandard1.3/System.ObjectModel.dll": {
  2236. "related": ".xml"
  2237. }
  2238. },
  2239. "runtime": {
  2240. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2241. }
  2242. },
  2243. "System.Reactive/6.0.1": {
  2244. "type": "package",
  2245. "compile": {
  2246. "lib/net6.0/System.Reactive.dll": {
  2247. "related": ".xml"
  2248. }
  2249. },
  2250. "runtime": {
  2251. "lib/net6.0/System.Reactive.dll": {
  2252. "related": ".xml"
  2253. }
  2254. },
  2255. "build": {
  2256. "buildTransitive/net6.0/_._": {}
  2257. }
  2258. },
  2259. "System.Reflection/4.3.0": {
  2260. "type": "package",
  2261. "dependencies": {
  2262. "Microsoft.NETCore.Platforms": "1.1.0",
  2263. "Microsoft.NETCore.Targets": "1.1.0",
  2264. "System.IO": "4.3.0",
  2265. "System.Reflection.Primitives": "4.3.0",
  2266. "System.Runtime": "4.3.0"
  2267. },
  2268. "compile": {
  2269. "ref/netstandard1.5/System.Reflection.dll": {
  2270. "related": ".xml"
  2271. }
  2272. }
  2273. },
  2274. "System.Reflection.Emit/4.3.0": {
  2275. "type": "package",
  2276. "dependencies": {
  2277. "System.IO": "4.3.0",
  2278. "System.Reflection": "4.3.0",
  2279. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2280. "System.Reflection.Primitives": "4.3.0",
  2281. "System.Runtime": "4.3.0"
  2282. },
  2283. "compile": {
  2284. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2285. "related": ".xml"
  2286. }
  2287. },
  2288. "runtime": {
  2289. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2290. }
  2291. },
  2292. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2293. "type": "package",
  2294. "dependencies": {
  2295. "System.Reflection": "4.3.0",
  2296. "System.Reflection.Primitives": "4.3.0",
  2297. "System.Runtime": "4.3.0"
  2298. },
  2299. "compile": {
  2300. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2301. "related": ".xml"
  2302. }
  2303. },
  2304. "runtime": {
  2305. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2306. }
  2307. },
  2308. "System.Reflection.Emit.Lightweight/4.3.0": {
  2309. "type": "package",
  2310. "dependencies": {
  2311. "System.Reflection": "4.3.0",
  2312. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2313. "System.Reflection.Primitives": "4.3.0",
  2314. "System.Runtime": "4.3.0"
  2315. },
  2316. "compile": {
  2317. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2318. "related": ".xml"
  2319. }
  2320. },
  2321. "runtime": {
  2322. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2323. }
  2324. },
  2325. "System.Reflection.Extensions/4.3.0": {
  2326. "type": "package",
  2327. "dependencies": {
  2328. "Microsoft.NETCore.Platforms": "1.1.0",
  2329. "Microsoft.NETCore.Targets": "1.1.0",
  2330. "System.Reflection": "4.3.0",
  2331. "System.Runtime": "4.3.0"
  2332. },
  2333. "compile": {
  2334. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2335. "related": ".xml"
  2336. }
  2337. }
  2338. },
  2339. "System.Reflection.Primitives/4.3.0": {
  2340. "type": "package",
  2341. "dependencies": {
  2342. "Microsoft.NETCore.Platforms": "1.1.0",
  2343. "Microsoft.NETCore.Targets": "1.1.0",
  2344. "System.Runtime": "4.3.0"
  2345. },
  2346. "compile": {
  2347. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2348. "related": ".xml"
  2349. }
  2350. }
  2351. },
  2352. "System.Reflection.TypeExtensions/4.3.0": {
  2353. "type": "package",
  2354. "dependencies": {
  2355. "System.Reflection": "4.3.0",
  2356. "System.Runtime": "4.3.0"
  2357. },
  2358. "compile": {
  2359. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2360. "related": ".xml"
  2361. }
  2362. },
  2363. "runtime": {
  2364. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2365. }
  2366. },
  2367. "System.Resources.ResourceManager/4.3.0": {
  2368. "type": "package",
  2369. "dependencies": {
  2370. "Microsoft.NETCore.Platforms": "1.1.0",
  2371. "Microsoft.NETCore.Targets": "1.1.0",
  2372. "System.Globalization": "4.3.0",
  2373. "System.Reflection": "4.3.0",
  2374. "System.Runtime": "4.3.0"
  2375. },
  2376. "compile": {
  2377. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2378. "related": ".xml"
  2379. }
  2380. }
  2381. },
  2382. "System.Runtime/4.3.1": {
  2383. "type": "package",
  2384. "dependencies": {
  2385. "Microsoft.NETCore.Platforms": "1.1.1",
  2386. "Microsoft.NETCore.Targets": "1.1.3"
  2387. },
  2388. "compile": {
  2389. "ref/netstandard1.5/System.Runtime.dll": {
  2390. "related": ".xml"
  2391. }
  2392. }
  2393. },
  2394. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2395. "type": "package",
  2396. "compile": {
  2397. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2398. "related": ".xml"
  2399. }
  2400. },
  2401. "runtime": {
  2402. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2403. "related": ".xml"
  2404. }
  2405. },
  2406. "build": {
  2407. "buildTransitive/netcoreapp3.1/_._": {}
  2408. }
  2409. },
  2410. "System.Runtime.Extensions/4.3.0": {
  2411. "type": "package",
  2412. "dependencies": {
  2413. "Microsoft.NETCore.Platforms": "1.1.0",
  2414. "Microsoft.NETCore.Targets": "1.1.0",
  2415. "System.Runtime": "4.3.0"
  2416. },
  2417. "compile": {
  2418. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2419. "related": ".xml"
  2420. }
  2421. }
  2422. },
  2423. "System.Runtime.Handles/4.3.0": {
  2424. "type": "package",
  2425. "dependencies": {
  2426. "Microsoft.NETCore.Platforms": "1.1.0",
  2427. "Microsoft.NETCore.Targets": "1.1.0",
  2428. "System.Runtime": "4.3.0"
  2429. },
  2430. "compile": {
  2431. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2432. "related": ".xml"
  2433. }
  2434. }
  2435. },
  2436. "System.Runtime.InteropServices/4.3.0": {
  2437. "type": "package",
  2438. "dependencies": {
  2439. "Microsoft.NETCore.Platforms": "1.1.0",
  2440. "Microsoft.NETCore.Targets": "1.1.0",
  2441. "System.Reflection": "4.3.0",
  2442. "System.Reflection.Primitives": "4.3.0",
  2443. "System.Runtime": "4.3.0",
  2444. "System.Runtime.Handles": "4.3.0"
  2445. },
  2446. "compile": {
  2447. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2448. }
  2449. },
  2450. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2451. "type": "package",
  2452. "dependencies": {
  2453. "System.Reflection": "4.3.0",
  2454. "System.Reflection.Extensions": "4.3.0",
  2455. "System.Resources.ResourceManager": "4.3.0",
  2456. "System.Runtime": "4.3.0",
  2457. "System.Runtime.InteropServices": "4.3.0",
  2458. "System.Threading": "4.3.0",
  2459. "runtime.native.System": "4.3.0"
  2460. },
  2461. "compile": {
  2462. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2463. },
  2464. "runtime": {
  2465. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2466. },
  2467. "runtimeTargets": {
  2468. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2469. "assetType": "runtime",
  2470. "rid": "unix"
  2471. },
  2472. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2473. "assetType": "runtime",
  2474. "rid": "win"
  2475. }
  2476. }
  2477. },
  2478. "System.Runtime.Numerics/4.3.0": {
  2479. "type": "package",
  2480. "dependencies": {
  2481. "System.Globalization": "4.3.0",
  2482. "System.Resources.ResourceManager": "4.3.0",
  2483. "System.Runtime": "4.3.0",
  2484. "System.Runtime.Extensions": "4.3.0"
  2485. },
  2486. "compile": {
  2487. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2488. "related": ".xml"
  2489. }
  2490. },
  2491. "runtime": {
  2492. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2493. }
  2494. },
  2495. "System.Runtime.Serialization.Primitives/4.3.0": {
  2496. "type": "package",
  2497. "dependencies": {
  2498. "System.Resources.ResourceManager": "4.3.0",
  2499. "System.Runtime": "4.3.0"
  2500. },
  2501. "compile": {
  2502. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2503. "related": ".xml"
  2504. }
  2505. },
  2506. "runtime": {
  2507. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2508. }
  2509. },
  2510. "System.Security.AccessControl/4.7.0": {
  2511. "type": "package",
  2512. "dependencies": {
  2513. "Microsoft.NETCore.Platforms": "3.1.0",
  2514. "System.Security.Principal.Windows": "4.7.0"
  2515. },
  2516. "compile": {
  2517. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2518. "related": ".xml"
  2519. }
  2520. },
  2521. "runtime": {
  2522. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2523. "related": ".xml"
  2524. }
  2525. },
  2526. "runtimeTargets": {
  2527. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2528. "assetType": "runtime",
  2529. "rid": "win"
  2530. }
  2531. }
  2532. },
  2533. "System.Security.Claims/4.3.0": {
  2534. "type": "package",
  2535. "dependencies": {
  2536. "System.Collections": "4.3.0",
  2537. "System.Globalization": "4.3.0",
  2538. "System.IO": "4.3.0",
  2539. "System.Resources.ResourceManager": "4.3.0",
  2540. "System.Runtime": "4.3.0",
  2541. "System.Runtime.Extensions": "4.3.0",
  2542. "System.Security.Principal": "4.3.0"
  2543. },
  2544. "compile": {
  2545. "ref/netstandard1.3/_._": {
  2546. "related": ".xml"
  2547. }
  2548. },
  2549. "runtime": {
  2550. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2551. }
  2552. },
  2553. "System.Security.Cryptography.Algorithms/4.3.1": {
  2554. "type": "package",
  2555. "dependencies": {
  2556. "Microsoft.NETCore.Platforms": "1.1.0",
  2557. "System.Collections": "4.3.0",
  2558. "System.IO": "4.3.0",
  2559. "System.Resources.ResourceManager": "4.3.0",
  2560. "System.Runtime": "4.3.0",
  2561. "System.Runtime.Extensions": "4.3.0",
  2562. "System.Runtime.Handles": "4.3.0",
  2563. "System.Runtime.InteropServices": "4.3.0",
  2564. "System.Runtime.Numerics": "4.3.0",
  2565. "System.Security.Cryptography.Encoding": "4.3.0",
  2566. "System.Security.Cryptography.Primitives": "4.3.0",
  2567. "System.Text.Encoding": "4.3.0",
  2568. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  2569. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2570. },
  2571. "compile": {
  2572. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2573. },
  2574. "runtimeTargets": {
  2575. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2576. "assetType": "runtime",
  2577. "rid": "osx"
  2578. },
  2579. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2580. "assetType": "runtime",
  2581. "rid": "unix"
  2582. },
  2583. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2584. "assetType": "runtime",
  2585. "rid": "win"
  2586. }
  2587. }
  2588. },
  2589. "System.Security.Cryptography.Cng/4.3.0": {
  2590. "type": "package",
  2591. "dependencies": {
  2592. "Microsoft.NETCore.Platforms": "1.1.0",
  2593. "System.IO": "4.3.0",
  2594. "System.Resources.ResourceManager": "4.3.0",
  2595. "System.Runtime": "4.3.0",
  2596. "System.Runtime.Extensions": "4.3.0",
  2597. "System.Runtime.Handles": "4.3.0",
  2598. "System.Runtime.InteropServices": "4.3.0",
  2599. "System.Security.Cryptography.Algorithms": "4.3.0",
  2600. "System.Security.Cryptography.Encoding": "4.3.0",
  2601. "System.Security.Cryptography.Primitives": "4.3.0",
  2602. "System.Text.Encoding": "4.3.0"
  2603. },
  2604. "compile": {
  2605. "ref/netstandard1.6/_._": {}
  2606. },
  2607. "runtimeTargets": {
  2608. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2609. "assetType": "runtime",
  2610. "rid": "unix"
  2611. },
  2612. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2613. "assetType": "runtime",
  2614. "rid": "win"
  2615. }
  2616. }
  2617. },
  2618. "System.Security.Cryptography.Csp/4.3.0": {
  2619. "type": "package",
  2620. "dependencies": {
  2621. "Microsoft.NETCore.Platforms": "1.1.0",
  2622. "System.IO": "4.3.0",
  2623. "System.Reflection": "4.3.0",
  2624. "System.Resources.ResourceManager": "4.3.0",
  2625. "System.Runtime": "4.3.0",
  2626. "System.Runtime.Extensions": "4.3.0",
  2627. "System.Runtime.Handles": "4.3.0",
  2628. "System.Runtime.InteropServices": "4.3.0",
  2629. "System.Security.Cryptography.Algorithms": "4.3.0",
  2630. "System.Security.Cryptography.Encoding": "4.3.0",
  2631. "System.Security.Cryptography.Primitives": "4.3.0",
  2632. "System.Text.Encoding": "4.3.0",
  2633. "System.Threading": "4.3.0"
  2634. },
  2635. "compile": {
  2636. "ref/netstandard1.3/_._": {}
  2637. },
  2638. "runtimeTargets": {
  2639. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2640. "assetType": "runtime",
  2641. "rid": "unix"
  2642. },
  2643. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2644. "assetType": "runtime",
  2645. "rid": "win"
  2646. }
  2647. }
  2648. },
  2649. "System.Security.Cryptography.Encoding/4.3.0": {
  2650. "type": "package",
  2651. "dependencies": {
  2652. "Microsoft.NETCore.Platforms": "1.1.0",
  2653. "System.Collections": "4.3.0",
  2654. "System.Collections.Concurrent": "4.3.0",
  2655. "System.Linq": "4.3.0",
  2656. "System.Resources.ResourceManager": "4.3.0",
  2657. "System.Runtime": "4.3.0",
  2658. "System.Runtime.Extensions": "4.3.0",
  2659. "System.Runtime.Handles": "4.3.0",
  2660. "System.Runtime.InteropServices": "4.3.0",
  2661. "System.Security.Cryptography.Primitives": "4.3.0",
  2662. "System.Text.Encoding": "4.3.0",
  2663. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2664. },
  2665. "compile": {
  2666. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2667. "related": ".xml"
  2668. }
  2669. },
  2670. "runtimeTargets": {
  2671. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2672. "assetType": "runtime",
  2673. "rid": "unix"
  2674. },
  2675. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2676. "assetType": "runtime",
  2677. "rid": "win"
  2678. }
  2679. }
  2680. },
  2681. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2682. "type": "package",
  2683. "dependencies": {
  2684. "System.Collections": "4.3.0",
  2685. "System.IO": "4.3.0",
  2686. "System.Resources.ResourceManager": "4.3.0",
  2687. "System.Runtime": "4.3.0",
  2688. "System.Runtime.Extensions": "4.3.0",
  2689. "System.Runtime.Handles": "4.3.0",
  2690. "System.Runtime.InteropServices": "4.3.0",
  2691. "System.Runtime.Numerics": "4.3.0",
  2692. "System.Security.Cryptography.Algorithms": "4.3.0",
  2693. "System.Security.Cryptography.Encoding": "4.3.0",
  2694. "System.Security.Cryptography.Primitives": "4.3.0",
  2695. "System.Text.Encoding": "4.3.0",
  2696. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2697. },
  2698. "compile": {
  2699. "ref/netstandard1.6/_._": {}
  2700. },
  2701. "runtime": {
  2702. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2703. },
  2704. "runtimeTargets": {
  2705. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2706. "assetType": "runtime",
  2707. "rid": "unix"
  2708. }
  2709. }
  2710. },
  2711. "System.Security.Cryptography.Primitives/4.3.0": {
  2712. "type": "package",
  2713. "dependencies": {
  2714. "System.Diagnostics.Debug": "4.3.0",
  2715. "System.Globalization": "4.3.0",
  2716. "System.IO": "4.3.0",
  2717. "System.Resources.ResourceManager": "4.3.0",
  2718. "System.Runtime": "4.3.0",
  2719. "System.Threading": "4.3.0",
  2720. "System.Threading.Tasks": "4.3.0"
  2721. },
  2722. "compile": {
  2723. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2724. },
  2725. "runtime": {
  2726. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2727. }
  2728. },
  2729. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2730. "type": "package",
  2731. "compile": {
  2732. "ref/netstandard2.0/_._": {
  2733. "related": ".xml"
  2734. }
  2735. },
  2736. "runtime": {
  2737. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2738. },
  2739. "runtimeTargets": {
  2740. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2741. "assetType": "runtime",
  2742. "rid": "win"
  2743. }
  2744. }
  2745. },
  2746. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2747. "type": "package",
  2748. "dependencies": {
  2749. "Microsoft.NETCore.Platforms": "1.1.0",
  2750. "System.Collections": "4.3.0",
  2751. "System.Diagnostics.Debug": "4.3.0",
  2752. "System.Globalization": "4.3.0",
  2753. "System.Globalization.Calendars": "4.3.0",
  2754. "System.IO": "4.3.0",
  2755. "System.IO.FileSystem": "4.3.0",
  2756. "System.IO.FileSystem.Primitives": "4.3.0",
  2757. "System.Resources.ResourceManager": "4.3.0",
  2758. "System.Runtime": "4.3.0",
  2759. "System.Runtime.Extensions": "4.3.0",
  2760. "System.Runtime.Handles": "4.3.0",
  2761. "System.Runtime.InteropServices": "4.3.0",
  2762. "System.Runtime.Numerics": "4.3.0",
  2763. "System.Security.Cryptography.Algorithms": "4.3.0",
  2764. "System.Security.Cryptography.Cng": "4.3.0",
  2765. "System.Security.Cryptography.Csp": "4.3.0",
  2766. "System.Security.Cryptography.Encoding": "4.3.0",
  2767. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2768. "System.Security.Cryptography.Primitives": "4.3.0",
  2769. "System.Text.Encoding": "4.3.0",
  2770. "System.Threading": "4.3.0",
  2771. "runtime.native.System": "4.3.0",
  2772. "runtime.native.System.Net.Http": "4.3.0",
  2773. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2774. },
  2775. "compile": {
  2776. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2777. "related": ".xml"
  2778. }
  2779. },
  2780. "runtimeTargets": {
  2781. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2782. "assetType": "runtime",
  2783. "rid": "unix"
  2784. },
  2785. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2786. "assetType": "runtime",
  2787. "rid": "win"
  2788. }
  2789. }
  2790. },
  2791. "System.Security.Permissions/4.7.0": {
  2792. "type": "package",
  2793. "dependencies": {
  2794. "System.Security.AccessControl": "4.7.0",
  2795. "System.Windows.Extensions": "4.7.0"
  2796. },
  2797. "compile": {
  2798. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2799. "related": ".xml"
  2800. }
  2801. },
  2802. "runtime": {
  2803. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2804. "related": ".xml"
  2805. }
  2806. }
  2807. },
  2808. "System.Security.Principal/4.3.0": {
  2809. "type": "package",
  2810. "dependencies": {
  2811. "System.Runtime": "4.3.0"
  2812. },
  2813. "compile": {
  2814. "ref/netstandard1.0/System.Security.Principal.dll": {
  2815. "related": ".xml"
  2816. }
  2817. },
  2818. "runtime": {
  2819. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2820. }
  2821. },
  2822. "System.Security.Principal.Windows/4.7.0": {
  2823. "type": "package",
  2824. "compile": {
  2825. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2826. "related": ".xml"
  2827. }
  2828. },
  2829. "runtime": {
  2830. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2831. "related": ".xml"
  2832. }
  2833. },
  2834. "runtimeTargets": {
  2835. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2836. "assetType": "runtime",
  2837. "rid": "unix"
  2838. },
  2839. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2840. "assetType": "runtime",
  2841. "rid": "win"
  2842. }
  2843. }
  2844. },
  2845. "System.Text.Encoding/4.3.0": {
  2846. "type": "package",
  2847. "dependencies": {
  2848. "Microsoft.NETCore.Platforms": "1.1.0",
  2849. "Microsoft.NETCore.Targets": "1.1.0",
  2850. "System.Runtime": "4.3.0"
  2851. },
  2852. "compile": {
  2853. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2854. "related": ".xml"
  2855. }
  2856. }
  2857. },
  2858. "System.Text.Encoding.CodePages/5.0.0": {
  2859. "type": "package",
  2860. "dependencies": {
  2861. "Microsoft.NETCore.Platforms": "5.0.0"
  2862. },
  2863. "compile": {
  2864. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2865. "related": ".xml"
  2866. }
  2867. },
  2868. "runtime": {
  2869. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2870. "related": ".xml"
  2871. }
  2872. },
  2873. "runtimeTargets": {
  2874. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2875. "assetType": "runtime",
  2876. "rid": "win"
  2877. }
  2878. }
  2879. },
  2880. "System.Text.Encoding.Extensions/4.3.0": {
  2881. "type": "package",
  2882. "dependencies": {
  2883. "Microsoft.NETCore.Platforms": "1.1.0",
  2884. "Microsoft.NETCore.Targets": "1.1.0",
  2885. "System.Runtime": "4.3.0",
  2886. "System.Text.Encoding": "4.3.0"
  2887. },
  2888. "compile": {
  2889. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2890. "related": ".xml"
  2891. }
  2892. }
  2893. },
  2894. "System.Text.Encodings.Web/9.0.1": {
  2895. "type": "package",
  2896. "dependencies": {
  2897. "System.Buffers": "4.5.1",
  2898. "System.Memory": "4.5.5",
  2899. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2900. },
  2901. "compile": {
  2902. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2903. "related": ".xml"
  2904. }
  2905. },
  2906. "runtime": {
  2907. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2908. "related": ".xml"
  2909. }
  2910. },
  2911. "build": {
  2912. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  2913. }
  2914. },
  2915. "System.Text.Json/9.0.1": {
  2916. "type": "package",
  2917. "dependencies": {
  2918. "Microsoft.Bcl.AsyncInterfaces": "9.0.1",
  2919. "System.Buffers": "4.5.1",
  2920. "System.IO.Pipelines": "9.0.1",
  2921. "System.Memory": "4.5.5",
  2922. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2923. "System.Text.Encodings.Web": "9.0.1",
  2924. "System.Threading.Tasks.Extensions": "4.5.4"
  2925. },
  2926. "compile": {
  2927. "lib/netstandard2.0/System.Text.Json.dll": {
  2928. "related": ".xml"
  2929. }
  2930. },
  2931. "runtime": {
  2932. "lib/netstandard2.0/System.Text.Json.dll": {
  2933. "related": ".xml"
  2934. }
  2935. },
  2936. "build": {
  2937. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  2938. }
  2939. },
  2940. "System.Text.RegularExpressions/4.3.0": {
  2941. "type": "package",
  2942. "dependencies": {
  2943. "System.Runtime": "4.3.0"
  2944. },
  2945. "compile": {
  2946. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2947. },
  2948. "runtime": {
  2949. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2950. }
  2951. },
  2952. "System.Threading/4.3.0": {
  2953. "type": "package",
  2954. "dependencies": {
  2955. "System.Runtime": "4.3.0",
  2956. "System.Threading.Tasks": "4.3.0"
  2957. },
  2958. "compile": {
  2959. "ref/netstandard1.3/System.Threading.dll": {
  2960. "related": ".xml"
  2961. }
  2962. },
  2963. "runtime": {
  2964. "lib/netstandard1.3/System.Threading.dll": {}
  2965. }
  2966. },
  2967. "System.Threading.Channels/7.0.0": {
  2968. "type": "package",
  2969. "compile": {
  2970. "lib/net7.0/System.Threading.Channels.dll": {
  2971. "related": ".xml"
  2972. }
  2973. },
  2974. "runtime": {
  2975. "lib/net7.0/System.Threading.Channels.dll": {
  2976. "related": ".xml"
  2977. }
  2978. },
  2979. "build": {
  2980. "buildTransitive/net6.0/_._": {}
  2981. }
  2982. },
  2983. "System.Threading.Tasks/4.3.0": {
  2984. "type": "package",
  2985. "dependencies": {
  2986. "Microsoft.NETCore.Platforms": "1.1.0",
  2987. "Microsoft.NETCore.Targets": "1.1.0",
  2988. "System.Runtime": "4.3.0"
  2989. },
  2990. "compile": {
  2991. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2992. "related": ".xml"
  2993. }
  2994. }
  2995. },
  2996. "System.Threading.Tasks.Extensions/4.6.0": {
  2997. "type": "package",
  2998. "compile": {
  2999. "lib/netcoreapp2.1/_._": {}
  3000. },
  3001. "runtime": {
  3002. "lib/netcoreapp2.1/_._": {}
  3003. }
  3004. },
  3005. "System.Threading.Thread/4.3.0": {
  3006. "type": "package",
  3007. "dependencies": {
  3008. "System.Runtime": "4.3.0"
  3009. },
  3010. "compile": {
  3011. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3012. "related": ".xml"
  3013. }
  3014. },
  3015. "runtime": {
  3016. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3017. }
  3018. },
  3019. "System.Threading.ThreadPool/4.3.0": {
  3020. "type": "package",
  3021. "dependencies": {
  3022. "System.Runtime": "4.3.0",
  3023. "System.Runtime.Handles": "4.3.0"
  3024. },
  3025. "compile": {
  3026. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3027. "related": ".xml"
  3028. }
  3029. },
  3030. "runtime": {
  3031. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3032. }
  3033. },
  3034. "System.Threading.Timer/4.3.0": {
  3035. "type": "package",
  3036. "dependencies": {
  3037. "Microsoft.NETCore.Platforms": "1.1.0",
  3038. "Microsoft.NETCore.Targets": "1.1.0",
  3039. "System.Runtime": "4.3.0"
  3040. },
  3041. "compile": {
  3042. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3043. "related": ".xml"
  3044. }
  3045. }
  3046. },
  3047. "System.ValueTuple/4.5.0": {
  3048. "type": "package",
  3049. "compile": {
  3050. "ref/netcoreapp2.0/_._": {}
  3051. },
  3052. "runtime": {
  3053. "lib/netcoreapp2.0/_._": {}
  3054. }
  3055. },
  3056. "System.Windows.Extensions/4.7.0": {
  3057. "type": "package",
  3058. "dependencies": {
  3059. "System.Drawing.Common": "4.7.0"
  3060. },
  3061. "compile": {
  3062. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3063. "related": ".xml"
  3064. }
  3065. },
  3066. "runtime": {
  3067. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3068. "related": ".xml"
  3069. }
  3070. },
  3071. "runtimeTargets": {
  3072. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3073. "assetType": "runtime",
  3074. "rid": "win"
  3075. }
  3076. }
  3077. },
  3078. "System.Xml.ReaderWriter/4.3.0": {
  3079. "type": "package",
  3080. "dependencies": {
  3081. "System.Collections": "4.3.0",
  3082. "System.Diagnostics.Debug": "4.3.0",
  3083. "System.Globalization": "4.3.0",
  3084. "System.IO": "4.3.0",
  3085. "System.IO.FileSystem": "4.3.0",
  3086. "System.IO.FileSystem.Primitives": "4.3.0",
  3087. "System.Resources.ResourceManager": "4.3.0",
  3088. "System.Runtime": "4.3.0",
  3089. "System.Runtime.Extensions": "4.3.0",
  3090. "System.Runtime.InteropServices": "4.3.0",
  3091. "System.Text.Encoding": "4.3.0",
  3092. "System.Text.Encoding.Extensions": "4.3.0",
  3093. "System.Text.RegularExpressions": "4.3.0",
  3094. "System.Threading.Tasks": "4.3.0",
  3095. "System.Threading.Tasks.Extensions": "4.3.0"
  3096. },
  3097. "compile": {
  3098. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3099. "related": ".xml"
  3100. }
  3101. },
  3102. "runtime": {
  3103. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3104. }
  3105. },
  3106. "System.Xml.XDocument/4.3.0": {
  3107. "type": "package",
  3108. "dependencies": {
  3109. "System.Collections": "4.3.0",
  3110. "System.Diagnostics.Debug": "4.3.0",
  3111. "System.Diagnostics.Tools": "4.3.0",
  3112. "System.Globalization": "4.3.0",
  3113. "System.IO": "4.3.0",
  3114. "System.Reflection": "4.3.0",
  3115. "System.Resources.ResourceManager": "4.3.0",
  3116. "System.Runtime": "4.3.0",
  3117. "System.Runtime.Extensions": "4.3.0",
  3118. "System.Text.Encoding": "4.3.0",
  3119. "System.Threading": "4.3.0",
  3120. "System.Xml.ReaderWriter": "4.3.0"
  3121. },
  3122. "compile": {
  3123. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3124. "related": ".xml"
  3125. }
  3126. },
  3127. "runtime": {
  3128. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3129. }
  3130. },
  3131. "ToolGood.Words/3.1.0.2": {
  3132. "type": "package",
  3133. "compile": {
  3134. "lib/net6.0/ToolGood.Words.dll": {
  3135. "related": ".xml"
  3136. }
  3137. },
  3138. "runtime": {
  3139. "lib/net6.0/ToolGood.Words.dll": {
  3140. "related": ".xml"
  3141. }
  3142. }
  3143. },
  3144. "Ulid/1.4.1": {
  3145. "type": "package",
  3146. "compile": {
  3147. "lib/net7.0/Ulid.dll": {
  3148. "related": ".xml"
  3149. }
  3150. },
  3151. "runtime": {
  3152. "lib/net7.0/Ulid.dll": {
  3153. "related": ".xml"
  3154. }
  3155. }
  3156. },
  3157. "ZXing.Net/0.16.9": {
  3158. "type": "package",
  3159. "compile": {
  3160. "lib/net7.0/zxing.dll": {
  3161. "related": ".XML"
  3162. }
  3163. },
  3164. "runtime": {
  3165. "lib/net7.0/zxing.dll": {
  3166. "related": ".XML"
  3167. }
  3168. }
  3169. },
  3170. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3171. "type": "package",
  3172. "dependencies": {
  3173. "SixLabors.ImageSharp": "2.1.3",
  3174. "ZXing.Net": "0.16.9"
  3175. },
  3176. "compile": {
  3177. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3178. "related": ".pdb;.xml"
  3179. }
  3180. },
  3181. "runtime": {
  3182. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3183. "related": ".pdb;.xml"
  3184. }
  3185. }
  3186. },
  3187. "Ropin.Core.Common/1.0.0": {
  3188. "type": "project",
  3189. "framework": ".NETCoreApp,Version=v5.0",
  3190. "dependencies": {
  3191. "Coravel": "4.2.1",
  3192. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3193. "Newtonsoft.Json": "13.0.1",
  3194. "QRCoder": "1.4.3",
  3195. "SixLabors.ImageSharp": "2.1.6",
  3196. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3197. },
  3198. "compile": {
  3199. "bin/placeholder/Ropin.Core.Common.dll": {}
  3200. },
  3201. "runtime": {
  3202. "bin/placeholder/Ropin.Core.Common.dll": {}
  3203. }
  3204. },
  3205. "Ropin.Inspection.Common/1.0.0": {
  3206. "type": "project",
  3207. "framework": ".NETCoreApp,Version=v5.0",
  3208. "dependencies": {
  3209. "FluentEmail.Smtp": "3.0.2",
  3210. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3211. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3212. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3213. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3214. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3215. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3216. "Microsoft.Extensions.Configuration": "5.0.0",
  3217. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3218. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3219. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3220. "Microsoft.Extensions.Http": "5.0.0",
  3221. "Newtonsoft.Json": "13.0.1",
  3222. "RabbitMQ.Client": "6.8.1",
  3223. "ToolGood.Words": "3.1.0.2",
  3224. "Ulid": "1.4.1",
  3225. "log4net": "2.0.17"
  3226. },
  3227. "compile": {
  3228. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3229. },
  3230. "runtime": {
  3231. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3232. }
  3233. },
  3234. "Ropin.Inspection.Model/1.0.0": {
  3235. "type": "project",
  3236. "framework": ".NETCoreApp,Version=v5.0",
  3237. "dependencies": {
  3238. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3239. "Microsoft.EntityFrameworkCore": "5.0.0",
  3240. "MySql.Data": "8.0.23",
  3241. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3242. "Ropin.Inspection.Common": "1.0.0"
  3243. },
  3244. "compile": {
  3245. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3246. },
  3247. "runtime": {
  3248. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3249. }
  3250. },
  3251. "Ropin.Inspection.Repository/1.0.0": {
  3252. "type": "project",
  3253. "framework": ".NETCoreApp,Version=v5.0",
  3254. "dependencies": {
  3255. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3256. "Microsoft.EntityFrameworkCore": "5.0.0",
  3257. "Ropin.Inspection.Model": "1.0.0"
  3258. },
  3259. "compile": {
  3260. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3261. },
  3262. "runtime": {
  3263. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3264. }
  3265. }
  3266. }
  3267. },
  3268. "libraries": {
  3269. "AdvancedStringBuilder/0.1.0": {
  3270. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3271. "type": "package",
  3272. "path": "advancedstringbuilder/0.1.0",
  3273. "files": [
  3274. ".nupkg.metadata",
  3275. ".signature.p7s",
  3276. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3277. "advancedstringbuilder.nuspec",
  3278. "lib/net40-client/AdvancedStringBuilder.dll",
  3279. "lib/net40-client/AdvancedStringBuilder.xml",
  3280. "lib/net45/AdvancedStringBuilder.dll",
  3281. "lib/net45/AdvancedStringBuilder.xml",
  3282. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3283. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3284. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3285. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3286. ]
  3287. },
  3288. "BouncyCastle.NetCore/1.8.5": {
  3289. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3290. "type": "package",
  3291. "path": "bouncycastle.netcore/1.8.5",
  3292. "files": [
  3293. ".nupkg.metadata",
  3294. ".signature.p7s",
  3295. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3296. "bouncycastle.netcore.nuspec",
  3297. "lib/Mono/BouncyCastle.Crypto.dll",
  3298. "lib/Mono/BouncyCastle.Crypto.xml",
  3299. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3300. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3301. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3302. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3303. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3304. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3305. "lib/net20/BouncyCastle.Crypto.dll",
  3306. "lib/net20/BouncyCastle.Crypto.xml",
  3307. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3308. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3309. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3310. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3311. ]
  3312. },
  3313. "CommunityToolkit.HighPerformance/8.4.0": {
  3314. "sha512": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==",
  3315. "type": "package",
  3316. "path": "communitytoolkit.highperformance/8.4.0",
  3317. "files": [
  3318. ".nupkg.metadata",
  3319. ".signature.p7s",
  3320. "Icon.png",
  3321. "License.md",
  3322. "ThirdPartyNotices.txt",
  3323. "communitytoolkit.highperformance.8.4.0.nupkg.sha512",
  3324. "communitytoolkit.highperformance.nuspec",
  3325. "lib/net7.0/CommunityToolkit.HighPerformance.dll",
  3326. "lib/net7.0/CommunityToolkit.HighPerformance.pdb",
  3327. "lib/net7.0/CommunityToolkit.HighPerformance.xml",
  3328. "lib/net8.0/CommunityToolkit.HighPerformance.dll",
  3329. "lib/net8.0/CommunityToolkit.HighPerformance.pdb",
  3330. "lib/net8.0/CommunityToolkit.HighPerformance.xml",
  3331. "lib/netstandard2.0/CommunityToolkit.HighPerformance.dll",
  3332. "lib/netstandard2.0/CommunityToolkit.HighPerformance.pdb",
  3333. "lib/netstandard2.0/CommunityToolkit.HighPerformance.xml",
  3334. "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll",
  3335. "lib/netstandard2.1/CommunityToolkit.HighPerformance.pdb",
  3336. "lib/netstandard2.1/CommunityToolkit.HighPerformance.xml"
  3337. ]
  3338. },
  3339. "Coravel/4.2.1": {
  3340. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3341. "type": "package",
  3342. "path": "coravel/4.2.1",
  3343. "files": [
  3344. ".nupkg.metadata",
  3345. ".signature.p7s",
  3346. "coravel.4.2.1.nupkg.sha512",
  3347. "coravel.nuspec",
  3348. "lib/netstandard2.0/Coravel.dll",
  3349. "lib/netstandard2.0/Coravel.xml",
  3350. "logo.png",
  3351. "readme.md"
  3352. ]
  3353. },
  3354. "FBoxClientDriver/1.2.0": {
  3355. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3356. "type": "package",
  3357. "path": "fboxclientdriver/1.2.0",
  3358. "files": [
  3359. ".nupkg.metadata",
  3360. ".signature.p7s",
  3361. "fboxclientdriver.1.2.0.nupkg.sha512",
  3362. "fboxclientdriver.nuspec",
  3363. "lib/netstandard2.0/FBoxClientDriver.dll",
  3364. "lib/netstandard2.0/FBoxClientDriver.xml"
  3365. ]
  3366. },
  3367. "FBoxClientDriver.Contract/1.2.0": {
  3368. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3369. "type": "package",
  3370. "path": "fboxclientdriver.contract/1.2.0",
  3371. "files": [
  3372. ".nupkg.metadata",
  3373. ".signature.p7s",
  3374. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3375. "fboxclientdriver.contract.nuspec",
  3376. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3377. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3378. ]
  3379. },
  3380. "FluentEmail.Core/3.0.2": {
  3381. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3382. "type": "package",
  3383. "path": "fluentemail.core/3.0.2",
  3384. "files": [
  3385. ".nupkg.metadata",
  3386. ".signature.p7s",
  3387. "fluentemail.core.3.0.2.nupkg.sha512",
  3388. "fluentemail.core.nuspec",
  3389. "fluentemail_logo_64x64.png",
  3390. "lib/netstandard2.0/FluentEmail.Core.dll"
  3391. ]
  3392. },
  3393. "FluentEmail.Smtp/3.0.2": {
  3394. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3395. "type": "package",
  3396. "path": "fluentemail.smtp/3.0.2",
  3397. "files": [
  3398. ".nupkg.metadata",
  3399. ".signature.p7s",
  3400. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3401. "fluentemail.smtp.nuspec",
  3402. "fluentemail_logo_64x64.png",
  3403. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3404. ]
  3405. },
  3406. "Google.Protobuf/3.11.4": {
  3407. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3408. "type": "package",
  3409. "path": "google.protobuf/3.11.4",
  3410. "files": [
  3411. ".nupkg.metadata",
  3412. ".signature.p7s",
  3413. "google.protobuf.3.11.4.nupkg.sha512",
  3414. "google.protobuf.nuspec",
  3415. "lib/net45/Google.Protobuf.dll",
  3416. "lib/net45/Google.Protobuf.pdb",
  3417. "lib/net45/Google.Protobuf.xml",
  3418. "lib/netstandard1.0/Google.Protobuf.dll",
  3419. "lib/netstandard1.0/Google.Protobuf.pdb",
  3420. "lib/netstandard1.0/Google.Protobuf.xml",
  3421. "lib/netstandard2.0/Google.Protobuf.dll",
  3422. "lib/netstandard2.0/Google.Protobuf.pdb",
  3423. "lib/netstandard2.0/Google.Protobuf.xml"
  3424. ]
  3425. },
  3426. "IdentityModel/4.3.1": {
  3427. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3428. "type": "package",
  3429. "path": "identitymodel/4.3.1",
  3430. "files": [
  3431. ".nupkg.metadata",
  3432. ".signature.p7s",
  3433. "icon.jpg",
  3434. "identitymodel.4.3.1.nupkg.sha512",
  3435. "identitymodel.nuspec",
  3436. "lib/net461/IdentityModel.dll",
  3437. "lib/net461/IdentityModel.pdb",
  3438. "lib/net461/IdentityModel.xml",
  3439. "lib/net472/IdentityModel.dll",
  3440. "lib/net472/IdentityModel.pdb",
  3441. "lib/net472/IdentityModel.xml",
  3442. "lib/netstandard2.0/IdentityModel.dll",
  3443. "lib/netstandard2.0/IdentityModel.pdb",
  3444. "lib/netstandard2.0/IdentityModel.xml"
  3445. ]
  3446. },
  3447. "InitQ/1.0.0.14": {
  3448. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3449. "type": "package",
  3450. "path": "initq/1.0.0.14",
  3451. "files": [
  3452. ".nupkg.metadata",
  3453. ".signature.p7s",
  3454. "initq.1.0.0.14.nupkg.sha512",
  3455. "initq.nuspec",
  3456. "lib/netcoreapp2.1/InitQ.dll"
  3457. ]
  3458. },
  3459. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3460. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3461. "type": "package",
  3462. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3463. "files": [
  3464. ".nupkg.metadata",
  3465. ".signature.p7s",
  3466. "LICENSE.txt",
  3467. "advanced-string-builder-license.txt",
  3468. "chakra-samples-license.txt",
  3469. "icon.png",
  3470. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3471. "javascriptengineswitcher.chakracore.nuspec",
  3472. "jsrt-dotnet-license.txt",
  3473. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3474. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3475. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3476. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3477. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3478. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3479. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3480. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3481. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3482. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3483. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3484. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3485. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3486. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3487. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3488. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3489. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3490. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3491. "polyfills-for-old-dot-net-license.txt",
  3492. "readme.txt"
  3493. ]
  3494. },
  3495. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3496. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3497. "type": "package",
  3498. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3499. "files": [
  3500. ".nupkg.metadata",
  3501. ".signature.p7s",
  3502. "LICENSE.txt",
  3503. "chakra-core-license.txt",
  3504. "icon.png",
  3505. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3506. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3507. "readme.txt",
  3508. "runtimes/linux-x64/native/libChakraCore.so"
  3509. ]
  3510. },
  3511. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3512. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3513. "type": "package",
  3514. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3515. "hasTools": true,
  3516. "files": [
  3517. ".nupkg.metadata",
  3518. ".signature.p7s",
  3519. "LICENSE.txt",
  3520. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3521. "chakra-core-license.txt",
  3522. "icon.png",
  3523. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3524. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3525. "readme.txt",
  3526. "runtimes/win-x64/native/ChakraCore.dll",
  3527. "tools/Install.ps1",
  3528. "tools/Uninstall.ps1"
  3529. ]
  3530. },
  3531. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3532. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3533. "type": "package",
  3534. "path": "javascriptengineswitcher.core/3.21.0",
  3535. "files": [
  3536. ".nupkg.metadata",
  3537. ".signature.p7s",
  3538. "LICENSE.txt",
  3539. "advanced-string-builder-license.txt",
  3540. "icon.png",
  3541. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3542. "javascriptengineswitcher.core.nuspec",
  3543. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3544. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3545. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3546. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3547. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3548. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3549. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3550. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3551. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3552. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3553. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3554. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3555. "readme.txt"
  3556. ]
  3557. },
  3558. "K4os.Compression.LZ4/1.1.11": {
  3559. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3560. "type": "package",
  3561. "path": "k4os.compression.lz4/1.1.11",
  3562. "files": [
  3563. ".nupkg.metadata",
  3564. ".signature.p7s",
  3565. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3566. "k4os.compression.lz4.nuspec",
  3567. "lib/net45/K4os.Compression.LZ4.dll",
  3568. "lib/net45/K4os.Compression.LZ4.xml",
  3569. "lib/net46/K4os.Compression.LZ4.dll",
  3570. "lib/net46/K4os.Compression.LZ4.xml",
  3571. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3572. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3573. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3574. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3575. ]
  3576. },
  3577. "K4os.Compression.LZ4.Streams/1.1.11": {
  3578. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3579. "type": "package",
  3580. "path": "k4os.compression.lz4.streams/1.1.11",
  3581. "files": [
  3582. ".nupkg.metadata",
  3583. ".signature.p7s",
  3584. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3585. "k4os.compression.lz4.streams.nuspec",
  3586. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3587. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3588. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3589. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3590. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3591. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3592. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3593. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3594. ]
  3595. },
  3596. "K4os.Hash.xxHash/1.0.6": {
  3597. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3598. "type": "package",
  3599. "path": "k4os.hash.xxhash/1.0.6",
  3600. "files": [
  3601. ".nupkg.metadata",
  3602. ".signature.p7s",
  3603. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3604. "k4os.hash.xxhash.nuspec",
  3605. "lib/net45/K4os.Hash.xxHash.dll",
  3606. "lib/net45/K4os.Hash.xxHash.xml",
  3607. "lib/net46/K4os.Hash.xxHash.dll",
  3608. "lib/net46/K4os.Hash.xxHash.xml",
  3609. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3610. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3611. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3612. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3613. ]
  3614. },
  3615. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3616. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3617. "type": "package",
  3618. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3619. "files": [
  3620. ".nupkg.metadata",
  3621. ".signature.p7s",
  3622. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3623. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3624. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3625. "linqkit.microsoft.entityframeworkcore.nuspec"
  3626. ]
  3627. },
  3628. "log4net/2.0.17": {
  3629. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3630. "type": "package",
  3631. "path": "log4net/2.0.17",
  3632. "files": [
  3633. ".nupkg.metadata",
  3634. ".signature.p7s",
  3635. "lib/net20/log4net.dll",
  3636. "lib/net20/log4net.xml",
  3637. "lib/net35/log4net.dll",
  3638. "lib/net35/log4net.xml",
  3639. "lib/net40-client/log4net.dll",
  3640. "lib/net40-client/log4net.xml",
  3641. "lib/net40/log4net.dll",
  3642. "lib/net40/log4net.xml",
  3643. "lib/net45/log4net.dll",
  3644. "lib/net45/log4net.xml",
  3645. "lib/netstandard1.3/log4net.dll",
  3646. "lib/netstandard1.3/log4net.xml",
  3647. "lib/netstandard2.0/log4net.dll",
  3648. "lib/netstandard2.0/log4net.xml",
  3649. "log4net.2.0.17.nupkg.sha512",
  3650. "log4net.nuspec",
  3651. "package-icon.png"
  3652. ]
  3653. },
  3654. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3655. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3656. "type": "package",
  3657. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3658. "files": [
  3659. ".nupkg.metadata",
  3660. ".signature.p7s",
  3661. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3662. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3663. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3664. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3665. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3666. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3667. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3668. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3669. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3670. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3671. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3672. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3673. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3674. "microsoft.aspnet.signalr.client.nuspec"
  3675. ]
  3676. },
  3677. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3678. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3679. "type": "package",
  3680. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3681. "files": [
  3682. ".nupkg.metadata",
  3683. ".signature.p7s",
  3684. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3685. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3686. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3687. "microsoft.aspnetcore.http.abstractions.nuspec"
  3688. ]
  3689. },
  3690. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3691. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3692. "type": "package",
  3693. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3694. "files": [
  3695. ".nupkg.metadata",
  3696. ".signature.p7s",
  3697. "Icon.png",
  3698. "THIRD-PARTY-NOTICES.TXT",
  3699. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3700. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3701. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3702. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3703. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3704. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3705. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3706. "microsoft.aspnetcore.http.features.nuspec"
  3707. ]
  3708. },
  3709. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3710. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3711. "type": "package",
  3712. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3713. "files": [
  3714. ".nupkg.metadata",
  3715. ".signature.p7s",
  3716. "Icon.png",
  3717. "THIRD-PARTY-NOTICES.TXT",
  3718. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3719. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3720. "microsoft.aspnetcore.nodeservices.nuspec"
  3721. ]
  3722. },
  3723. "Microsoft.Bcl.AsyncInterfaces/9.0.8": {
  3724. "sha512": "mdq9WaHnRJBvmhbDvoEk9aIEjpoW1cmA6wGuE0/eV49NT/0Z/d+NauB4jzw2Dyi/TndebYfjAYHCOXeB0c/Qhg==",
  3725. "type": "package",
  3726. "path": "microsoft.bcl.asyncinterfaces/9.0.8",
  3727. "files": [
  3728. ".nupkg.metadata",
  3729. ".signature.p7s",
  3730. "Icon.png",
  3731. "LICENSE.TXT",
  3732. "PACKAGE.md",
  3733. "THIRD-PARTY-NOTICES.TXT",
  3734. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  3735. "buildTransitive/net462/_._",
  3736. "buildTransitive/net8.0/_._",
  3737. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets",
  3738. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  3739. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  3740. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3741. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3742. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3743. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3744. "microsoft.bcl.asyncinterfaces.9.0.8.nupkg.sha512",
  3745. "microsoft.bcl.asyncinterfaces.nuspec",
  3746. "useSharedDesignerContext.txt"
  3747. ]
  3748. },
  3749. "Microsoft.CSharp/4.5.0": {
  3750. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3751. "type": "package",
  3752. "path": "microsoft.csharp/4.5.0",
  3753. "files": [
  3754. ".nupkg.metadata",
  3755. ".signature.p7s",
  3756. "LICENSE.TXT",
  3757. "THIRD-PARTY-NOTICES.TXT",
  3758. "lib/MonoAndroid10/_._",
  3759. "lib/MonoTouch10/_._",
  3760. "lib/net45/_._",
  3761. "lib/netcore50/Microsoft.CSharp.dll",
  3762. "lib/netcoreapp2.0/_._",
  3763. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3764. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3765. "lib/portable-net45+win8+wp8+wpa81/_._",
  3766. "lib/uap10.0.16299/_._",
  3767. "lib/win8/_._",
  3768. "lib/wp80/_._",
  3769. "lib/wpa81/_._",
  3770. "lib/xamarinios10/_._",
  3771. "lib/xamarinmac20/_._",
  3772. "lib/xamarintvos10/_._",
  3773. "lib/xamarinwatchos10/_._",
  3774. "microsoft.csharp.4.5.0.nupkg.sha512",
  3775. "microsoft.csharp.nuspec",
  3776. "ref/MonoAndroid10/_._",
  3777. "ref/MonoTouch10/_._",
  3778. "ref/net45/_._",
  3779. "ref/netcore50/Microsoft.CSharp.dll",
  3780. "ref/netcore50/Microsoft.CSharp.xml",
  3781. "ref/netcore50/de/Microsoft.CSharp.xml",
  3782. "ref/netcore50/es/Microsoft.CSharp.xml",
  3783. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3784. "ref/netcore50/it/Microsoft.CSharp.xml",
  3785. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3786. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3787. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3788. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3789. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3790. "ref/netcoreapp2.0/_._",
  3791. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3792. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3793. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3794. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3795. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3796. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3797. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3798. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3799. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3800. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3801. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3802. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3803. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3804. "ref/portable-net45+win8+wp8+wpa81/_._",
  3805. "ref/uap10.0.16299/_._",
  3806. "ref/win8/_._",
  3807. "ref/wp80/_._",
  3808. "ref/wpa81/_._",
  3809. "ref/xamarinios10/_._",
  3810. "ref/xamarinmac20/_._",
  3811. "ref/xamarintvos10/_._",
  3812. "ref/xamarinwatchos10/_._",
  3813. "useSharedDesignerContext.txt",
  3814. "version.txt"
  3815. ]
  3816. },
  3817. "Microsoft.EntityFrameworkCore/5.0.0": {
  3818. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3819. "type": "package",
  3820. "path": "microsoft.entityframeworkcore/5.0.0",
  3821. "files": [
  3822. ".nupkg.metadata",
  3823. ".signature.p7s",
  3824. "Icon.png",
  3825. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3826. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3827. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3828. "microsoft.entityframeworkcore.nuspec"
  3829. ]
  3830. },
  3831. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3832. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3833. "type": "package",
  3834. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3835. "files": [
  3836. ".nupkg.metadata",
  3837. ".signature.p7s",
  3838. "Icon.png",
  3839. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3840. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3841. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3842. "microsoft.entityframeworkcore.abstractions.nuspec"
  3843. ]
  3844. },
  3845. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3846. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3847. "type": "package",
  3848. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3849. "files": [
  3850. ".nupkg.metadata",
  3851. ".signature.p7s",
  3852. "Icon.png",
  3853. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3854. "lib/netstandard2.0/_._",
  3855. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3856. "microsoft.entityframeworkcore.analyzers.nuspec"
  3857. ]
  3858. },
  3859. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3860. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3861. "type": "package",
  3862. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3863. "files": [
  3864. ".nupkg.metadata",
  3865. ".signature.p7s",
  3866. "Icon.png",
  3867. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3868. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3869. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3870. "microsoft.entityframeworkcore.relational.nuspec"
  3871. ]
  3872. },
  3873. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3874. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3875. "type": "package",
  3876. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3877. "hasTools": true,
  3878. "files": [
  3879. ".nupkg.metadata",
  3880. ".signature.p7s",
  3881. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3882. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3883. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3884. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3885. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3886. "microsoft.extensions.apidescription.server.nuspec",
  3887. "tools/Newtonsoft.Json.dll",
  3888. "tools/dotnet-getdocument.deps.json",
  3889. "tools/dotnet-getdocument.dll",
  3890. "tools/dotnet-getdocument.runtimeconfig.json",
  3891. "tools/net461-x86/GetDocument.Insider.exe",
  3892. "tools/net461-x86/GetDocument.Insider.exe.config",
  3893. "tools/net461/GetDocument.Insider.exe",
  3894. "tools/net461/GetDocument.Insider.exe.config",
  3895. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3896. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3897. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3898. ]
  3899. },
  3900. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3901. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3902. "type": "package",
  3903. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3904. "files": [
  3905. ".nupkg.metadata",
  3906. ".signature.p7s",
  3907. "Icon.png",
  3908. "LICENSE.TXT",
  3909. "THIRD-PARTY-NOTICES.TXT",
  3910. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3911. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3912. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3913. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3914. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3915. "microsoft.extensions.caching.abstractions.nuspec",
  3916. "useSharedDesignerContext.txt",
  3917. "version.txt"
  3918. ]
  3919. },
  3920. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3921. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3922. "type": "package",
  3923. "path": "microsoft.extensions.caching.memory/5.0.0",
  3924. "files": [
  3925. ".nupkg.metadata",
  3926. ".signature.p7s",
  3927. "Icon.png",
  3928. "LICENSE.TXT",
  3929. "THIRD-PARTY-NOTICES.TXT",
  3930. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3931. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3932. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3933. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3934. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3935. "microsoft.extensions.caching.memory.nuspec",
  3936. "useSharedDesignerContext.txt",
  3937. "version.txt"
  3938. ]
  3939. },
  3940. "Microsoft.Extensions.Configuration/5.0.0": {
  3941. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3942. "type": "package",
  3943. "path": "microsoft.extensions.configuration/5.0.0",
  3944. "files": [
  3945. ".nupkg.metadata",
  3946. ".signature.p7s",
  3947. "Icon.png",
  3948. "LICENSE.TXT",
  3949. "THIRD-PARTY-NOTICES.TXT",
  3950. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3951. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3952. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3953. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3954. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3955. "microsoft.extensions.configuration.nuspec",
  3956. "useSharedDesignerContext.txt",
  3957. "version.txt"
  3958. ]
  3959. },
  3960. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3961. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3962. "type": "package",
  3963. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3964. "files": [
  3965. ".nupkg.metadata",
  3966. ".signature.p7s",
  3967. "Icon.png",
  3968. "LICENSE.TXT",
  3969. "THIRD-PARTY-NOTICES.TXT",
  3970. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3971. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3972. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3973. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3974. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3975. "microsoft.extensions.configuration.abstractions.nuspec",
  3976. "useSharedDesignerContext.txt",
  3977. "version.txt"
  3978. ]
  3979. },
  3980. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3981. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3982. "type": "package",
  3983. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3984. "files": [
  3985. ".nupkg.metadata",
  3986. ".signature.p7s",
  3987. "Icon.png",
  3988. "LICENSE.TXT",
  3989. "THIRD-PARTY-NOTICES.TXT",
  3990. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3991. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3992. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3993. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3994. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3995. "microsoft.extensions.configuration.binder.nuspec",
  3996. "useSharedDesignerContext.txt",
  3997. "version.txt"
  3998. ]
  3999. },
  4000. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4001. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4002. "type": "package",
  4003. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4004. "files": [
  4005. ".nupkg.metadata",
  4006. ".signature.p7s",
  4007. "Icon.png",
  4008. "LICENSE.TXT",
  4009. "THIRD-PARTY-NOTICES.TXT",
  4010. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4011. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4012. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4013. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4014. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4015. "microsoft.extensions.configuration.fileextensions.nuspec",
  4016. "useSharedDesignerContext.txt",
  4017. "version.txt"
  4018. ]
  4019. },
  4020. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4021. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4022. "type": "package",
  4023. "path": "microsoft.extensions.configuration.json/5.0.0",
  4024. "files": [
  4025. ".nupkg.metadata",
  4026. ".signature.p7s",
  4027. "Icon.png",
  4028. "LICENSE.TXT",
  4029. "THIRD-PARTY-NOTICES.TXT",
  4030. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4031. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4032. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4033. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4034. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4035. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4036. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4037. "microsoft.extensions.configuration.json.nuspec",
  4038. "useSharedDesignerContext.txt",
  4039. "version.txt"
  4040. ]
  4041. },
  4042. "Microsoft.Extensions.DependencyInjection/9.0.4": {
  4043. "sha512": "f2MTUaS2EQ3lX4325ytPAISZqgBfXmY0WvgD80ji6Z20AoDNiCESxsqo6mFRwHJD/jfVKRw9FsW6+86gNre3ug==",
  4044. "type": "package",
  4045. "path": "microsoft.extensions.dependencyinjection/9.0.4",
  4046. "files": [
  4047. ".nupkg.metadata",
  4048. ".signature.p7s",
  4049. "Icon.png",
  4050. "LICENSE.TXT",
  4051. "PACKAGE.md",
  4052. "THIRD-PARTY-NOTICES.TXT",
  4053. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  4054. "buildTransitive/net462/_._",
  4055. "buildTransitive/net8.0/_._",
  4056. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  4057. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  4058. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  4059. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  4060. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  4061. "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll",
  4062. "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml",
  4063. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4064. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4065. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4066. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4067. "microsoft.extensions.dependencyinjection.9.0.4.nupkg.sha512",
  4068. "microsoft.extensions.dependencyinjection.nuspec",
  4069. "useSharedDesignerContext.txt"
  4070. ]
  4071. },
  4072. "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": {
  4073. "sha512": "UI0TQPVkS78bFdjkTodmkH0Fe8lXv9LnhGFKgKrsgUJ5a5FVdFRcgjIkBVLbGgdRhxWirxH/8IXUtEyYJx6GQg==",
  4074. "type": "package",
  4075. "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.4",
  4076. "files": [
  4077. ".nupkg.metadata",
  4078. ".signature.p7s",
  4079. "Icon.png",
  4080. "LICENSE.TXT",
  4081. "PACKAGE.md",
  4082. "THIRD-PARTY-NOTICES.TXT",
  4083. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4084. "buildTransitive/net462/_._",
  4085. "buildTransitive/net8.0/_._",
  4086. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4087. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4088. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4089. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4090. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4091. "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4092. "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4093. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4094. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4095. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4096. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4097. "microsoft.extensions.dependencyinjection.abstractions.9.0.4.nupkg.sha512",
  4098. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4099. "useSharedDesignerContext.txt"
  4100. ]
  4101. },
  4102. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4103. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4104. "type": "package",
  4105. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4106. "files": [
  4107. ".nupkg.metadata",
  4108. ".signature.p7s",
  4109. "Icon.png",
  4110. "LICENSE.TXT",
  4111. "THIRD-PARTY-NOTICES.TXT",
  4112. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4113. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4114. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4115. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4116. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4117. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4118. "useSharedDesignerContext.txt",
  4119. "version.txt"
  4120. ]
  4121. },
  4122. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4123. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4124. "type": "package",
  4125. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4126. "files": [
  4127. ".nupkg.metadata",
  4128. ".signature.p7s",
  4129. "Icon.png",
  4130. "LICENSE.TXT",
  4131. "THIRD-PARTY-NOTICES.TXT",
  4132. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4133. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4134. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4135. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4136. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4137. "microsoft.extensions.fileproviders.physical.nuspec",
  4138. "useSharedDesignerContext.txt",
  4139. "version.txt"
  4140. ]
  4141. },
  4142. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4143. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4144. "type": "package",
  4145. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4146. "files": [
  4147. ".nupkg.metadata",
  4148. ".signature.p7s",
  4149. "Icon.png",
  4150. "LICENSE.TXT",
  4151. "THIRD-PARTY-NOTICES.TXT",
  4152. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4153. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4154. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4155. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4156. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4157. "microsoft.extensions.filesystemglobbing.nuspec",
  4158. "useSharedDesignerContext.txt",
  4159. "version.txt"
  4160. ]
  4161. },
  4162. "Microsoft.Extensions.Hosting/2.1.0": {
  4163. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4164. "type": "package",
  4165. "path": "microsoft.extensions.hosting/2.1.0",
  4166. "files": [
  4167. ".nupkg.metadata",
  4168. ".signature.p7s",
  4169. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4170. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4171. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4172. "microsoft.extensions.hosting.nuspec"
  4173. ]
  4174. },
  4175. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4176. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4177. "type": "package",
  4178. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4179. "files": [
  4180. ".nupkg.metadata",
  4181. ".signature.p7s",
  4182. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4183. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4184. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4185. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4186. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4187. "microsoft.extensions.hosting.abstractions.nuspec",
  4188. "packageIcon.png"
  4189. ]
  4190. },
  4191. "Microsoft.Extensions.Http/5.0.0": {
  4192. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4193. "type": "package",
  4194. "path": "microsoft.extensions.http/5.0.0",
  4195. "files": [
  4196. ".nupkg.metadata",
  4197. ".signature.p7s",
  4198. "Icon.png",
  4199. "LICENSE.TXT",
  4200. "THIRD-PARTY-NOTICES.TXT",
  4201. "lib/net461/Microsoft.Extensions.Http.dll",
  4202. "lib/net461/Microsoft.Extensions.Http.xml",
  4203. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4204. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4205. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4206. "microsoft.extensions.http.nuspec",
  4207. "useSharedDesignerContext.txt",
  4208. "version.txt"
  4209. ]
  4210. },
  4211. "Microsoft.Extensions.Logging/9.0.4": {
  4212. "sha512": "xW6QPYsqhbuWBO9/1oA43g/XPKbohJx+7G8FLQgQXIriYvY7s+gxr2wjQJfRoPO900dvvv2vVH7wZovG+M1m6w==",
  4213. "type": "package",
  4214. "path": "microsoft.extensions.logging/9.0.4",
  4215. "files": [
  4216. ".nupkg.metadata",
  4217. ".signature.p7s",
  4218. "Icon.png",
  4219. "LICENSE.TXT",
  4220. "PACKAGE.md",
  4221. "THIRD-PARTY-NOTICES.TXT",
  4222. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  4223. "buildTransitive/net462/_._",
  4224. "buildTransitive/net8.0/_._",
  4225. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  4226. "lib/net462/Microsoft.Extensions.Logging.dll",
  4227. "lib/net462/Microsoft.Extensions.Logging.xml",
  4228. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  4229. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  4230. "lib/net9.0/Microsoft.Extensions.Logging.dll",
  4231. "lib/net9.0/Microsoft.Extensions.Logging.xml",
  4232. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4233. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4234. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4235. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4236. "microsoft.extensions.logging.9.0.4.nupkg.sha512",
  4237. "microsoft.extensions.logging.nuspec",
  4238. "useSharedDesignerContext.txt"
  4239. ]
  4240. },
  4241. "Microsoft.Extensions.Logging.Abstractions/9.0.4": {
  4242. "sha512": "0MXlimU4Dud6t+iNi5NEz3dO2w1HXdhoOLaYFuLPCjAsvlPQGwOT6V2KZRMLEhCAm/stSZt1AUv0XmDdkjvtbw==",
  4243. "type": "package",
  4244. "path": "microsoft.extensions.logging.abstractions/9.0.4",
  4245. "files": [
  4246. ".nupkg.metadata",
  4247. ".signature.p7s",
  4248. "Icon.png",
  4249. "LICENSE.TXT",
  4250. "PACKAGE.md",
  4251. "THIRD-PARTY-NOTICES.TXT",
  4252. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  4253. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4254. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4255. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4256. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4257. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4258. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4259. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4260. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4261. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4262. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4263. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4264. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4265. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4266. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  4267. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4268. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4269. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4270. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4271. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4272. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4273. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4274. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4275. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4276. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4277. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4278. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4279. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4280. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  4281. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4282. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4283. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4284. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4285. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4286. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4287. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4288. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4289. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4290. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4291. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4292. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4293. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4294. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  4295. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  4296. "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4297. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4298. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4299. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  4300. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  4301. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4302. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4303. "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4304. "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4305. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4306. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4307. "microsoft.extensions.logging.abstractions.9.0.4.nupkg.sha512",
  4308. "microsoft.extensions.logging.abstractions.nuspec",
  4309. "useSharedDesignerContext.txt"
  4310. ]
  4311. },
  4312. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4313. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4314. "type": "package",
  4315. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4316. "files": [
  4317. ".nupkg.metadata",
  4318. ".signature.p7s",
  4319. "Icon.png",
  4320. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4321. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4322. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4323. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4324. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4325. "microsoft.extensions.logging.configuration.nuspec"
  4326. ]
  4327. },
  4328. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4329. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4330. "type": "package",
  4331. "path": "microsoft.extensions.logging.console/3.1.30",
  4332. "files": [
  4333. ".nupkg.metadata",
  4334. ".signature.p7s",
  4335. "Icon.png",
  4336. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4337. "lib/netcoreapp3.1/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.3.1.30.nupkg.sha512",
  4341. "microsoft.extensions.logging.console.nuspec"
  4342. ]
  4343. },
  4344. "Microsoft.Extensions.Options/9.0.4": {
  4345. "sha512": "fiFI2+58kicqVZyt/6obqoFwHiab7LC4FkQ3mmiBJ28Yy4fAvy2+v9MRnSvvlOO8chTOjKsdafFl/K9veCPo5g==",
  4346. "type": "package",
  4347. "path": "microsoft.extensions.options/9.0.4",
  4348. "files": [
  4349. ".nupkg.metadata",
  4350. ".signature.p7s",
  4351. "Icon.png",
  4352. "LICENSE.TXT",
  4353. "PACKAGE.md",
  4354. "THIRD-PARTY-NOTICES.TXT",
  4355. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  4356. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4357. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4358. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4359. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4360. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4361. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4362. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4363. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4364. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4365. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4366. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4367. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4368. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  4369. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  4370. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  4371. "buildTransitive/net8.0/Microsoft.Extensions.Options.targets",
  4372. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  4373. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  4374. "lib/net462/Microsoft.Extensions.Options.dll",
  4375. "lib/net462/Microsoft.Extensions.Options.xml",
  4376. "lib/net8.0/Microsoft.Extensions.Options.dll",
  4377. "lib/net8.0/Microsoft.Extensions.Options.xml",
  4378. "lib/net9.0/Microsoft.Extensions.Options.dll",
  4379. "lib/net9.0/Microsoft.Extensions.Options.xml",
  4380. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4381. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4382. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  4383. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  4384. "microsoft.extensions.options.9.0.4.nupkg.sha512",
  4385. "microsoft.extensions.options.nuspec",
  4386. "useSharedDesignerContext.txt"
  4387. ]
  4388. },
  4389. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4390. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4391. "type": "package",
  4392. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4393. "files": [
  4394. ".nupkg.metadata",
  4395. ".signature.p7s",
  4396. "Icon.png",
  4397. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4398. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4399. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4400. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4401. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4402. "microsoft.extensions.options.configurationextensions.nuspec"
  4403. ]
  4404. },
  4405. "Microsoft.Extensions.Primitives/9.0.4": {
  4406. "sha512": "SPFyMjyku1nqTFFJ928JAMd0QnRe4xjE7KeKnZMWXf3xk+6e0WiOZAluYtLdbJUXtsl2cCRSi8cBquJ408k8RA==",
  4407. "type": "package",
  4408. "path": "microsoft.extensions.primitives/9.0.4",
  4409. "files": [
  4410. ".nupkg.metadata",
  4411. ".signature.p7s",
  4412. "Icon.png",
  4413. "LICENSE.TXT",
  4414. "PACKAGE.md",
  4415. "THIRD-PARTY-NOTICES.TXT",
  4416. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  4417. "buildTransitive/net462/_._",
  4418. "buildTransitive/net8.0/_._",
  4419. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  4420. "lib/net462/Microsoft.Extensions.Primitives.dll",
  4421. "lib/net462/Microsoft.Extensions.Primitives.xml",
  4422. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  4423. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  4424. "lib/net9.0/Microsoft.Extensions.Primitives.dll",
  4425. "lib/net9.0/Microsoft.Extensions.Primitives.xml",
  4426. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4427. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4428. "microsoft.extensions.primitives.9.0.4.nupkg.sha512",
  4429. "microsoft.extensions.primitives.nuspec",
  4430. "useSharedDesignerContext.txt"
  4431. ]
  4432. },
  4433. "Microsoft.NETCore.Platforms/5.0.0": {
  4434. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4435. "type": "package",
  4436. "path": "microsoft.netcore.platforms/5.0.0",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "Icon.png",
  4441. "LICENSE.TXT",
  4442. "THIRD-PARTY-NOTICES.TXT",
  4443. "lib/netstandard1.0/_._",
  4444. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4445. "microsoft.netcore.platforms.nuspec",
  4446. "runtime.json",
  4447. "useSharedDesignerContext.txt",
  4448. "version.txt"
  4449. ]
  4450. },
  4451. "Microsoft.NETCore.Targets/1.1.3": {
  4452. "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  4453. "type": "package",
  4454. "path": "microsoft.netcore.targets/1.1.3",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. ".signature.p7s",
  4458. "ThirdPartyNotices.txt",
  4459. "dotnet_library_license.txt",
  4460. "lib/netstandard1.0/_._",
  4461. "microsoft.netcore.targets.1.1.3.nupkg.sha512",
  4462. "microsoft.netcore.targets.nuspec",
  4463. "runtime.json"
  4464. ]
  4465. },
  4466. "Microsoft.OpenApi/1.2.3": {
  4467. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4468. "type": "package",
  4469. "path": "microsoft.openapi/1.2.3",
  4470. "files": [
  4471. ".nupkg.metadata",
  4472. ".signature.p7s",
  4473. "lib/net46/Microsoft.OpenApi.dll",
  4474. "lib/net46/Microsoft.OpenApi.pdb",
  4475. "lib/net46/Microsoft.OpenApi.xml",
  4476. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4477. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4478. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4479. "microsoft.openapi.1.2.3.nupkg.sha512",
  4480. "microsoft.openapi.nuspec"
  4481. ]
  4482. },
  4483. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4484. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4485. "type": "package",
  4486. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4487. "hasTools": true,
  4488. "files": [
  4489. ".nupkg.metadata",
  4490. ".signature.p7s",
  4491. "CHANGELOG.md",
  4492. "EULA.md",
  4493. "ThirdPartyNotices.txt",
  4494. "build/Container.props",
  4495. "build/Container.targets",
  4496. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4497. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4498. "build/Rules/GeneralBrowseObject.xaml",
  4499. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4500. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4501. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4502. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4503. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4504. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4505. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4506. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4507. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4508. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4509. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4510. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4511. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4512. "build/ToolsTarget.props",
  4513. "build/ToolsTarget.targets",
  4514. "icon.png",
  4515. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4516. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4517. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4518. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4519. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4520. "tools/Newtonsoft.Json.dll",
  4521. "tools/System.Security.Principal.Windows.dll",
  4522. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4523. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4524. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4525. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4526. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4527. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4528. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4529. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4530. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4531. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4532. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4533. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4534. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4535. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4536. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4537. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4538. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4539. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4540. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4541. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4542. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4543. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4544. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4545. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4546. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4547. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4548. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4549. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4550. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4551. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4552. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4553. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4554. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4555. "tools/utils/KillProcess.exe",
  4556. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4557. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4558. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4559. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4560. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4561. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4562. ]
  4563. },
  4564. "Microsoft.Win32.Primitives/4.3.0": {
  4565. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4566. "type": "package",
  4567. "path": "microsoft.win32.primitives/4.3.0",
  4568. "files": [
  4569. ".nupkg.metadata",
  4570. ".signature.p7s",
  4571. "ThirdPartyNotices.txt",
  4572. "dotnet_library_license.txt",
  4573. "lib/MonoAndroid10/_._",
  4574. "lib/MonoTouch10/_._",
  4575. "lib/net46/Microsoft.Win32.Primitives.dll",
  4576. "lib/xamarinios10/_._",
  4577. "lib/xamarinmac20/_._",
  4578. "lib/xamarintvos10/_._",
  4579. "lib/xamarinwatchos10/_._",
  4580. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4581. "microsoft.win32.primitives.nuspec",
  4582. "ref/MonoAndroid10/_._",
  4583. "ref/MonoTouch10/_._",
  4584. "ref/net46/Microsoft.Win32.Primitives.dll",
  4585. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4586. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4587. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4588. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4589. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4590. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4591. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4592. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4593. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4594. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4595. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4596. "ref/xamarinios10/_._",
  4597. "ref/xamarinmac20/_._",
  4598. "ref/xamarintvos10/_._",
  4599. "ref/xamarinwatchos10/_._"
  4600. ]
  4601. },
  4602. "Microsoft.Win32.SystemEvents/4.7.0": {
  4603. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4604. "type": "package",
  4605. "path": "microsoft.win32.systemevents/4.7.0",
  4606. "files": [
  4607. ".nupkg.metadata",
  4608. ".signature.p7s",
  4609. "LICENSE.TXT",
  4610. "THIRD-PARTY-NOTICES.TXT",
  4611. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4612. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4613. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4614. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4615. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4616. "microsoft.win32.systemevents.nuspec",
  4617. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4618. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4619. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4620. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4621. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4622. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4623. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4624. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4625. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4626. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4627. "useSharedDesignerContext.txt",
  4628. "version.txt"
  4629. ]
  4630. },
  4631. "Minio/6.0.5": {
  4632. "sha512": "AK3JIDZnFZg2Hpkqo6vlzyiEC4OifG+jQbuqpAtXePnIo49G4pNn27THh3DI8s4o84b/MMBQF+n1DEwBNenxsg==",
  4633. "type": "package",
  4634. "path": "minio/6.0.5",
  4635. "files": [
  4636. ".nupkg.metadata",
  4637. ".signature.p7s",
  4638. "LICENSE",
  4639. "icon.png",
  4640. "lib/net8.0/Minio.dll",
  4641. "lib/net8.0/Minio.pdb",
  4642. "lib/net8.0/Minio.xml",
  4643. "lib/netstandard2.0/Minio.dll",
  4644. "lib/netstandard2.0/Minio.pdb",
  4645. "lib/netstandard2.0/Minio.xml",
  4646. "minio.6.0.5.nupkg.sha512",
  4647. "minio.nuspec",
  4648. "readme.md"
  4649. ]
  4650. },
  4651. "MySql.Data/8.0.23": {
  4652. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4653. "type": "package",
  4654. "path": "mysql.data/8.0.23",
  4655. "files": [
  4656. ".nupkg.metadata",
  4657. ".signature.p7s",
  4658. "lib/net452/MySql.Data.dll",
  4659. "lib/net452/MySql.Data.xml",
  4660. "lib/net452/Ubiety.Dns.Core.dll",
  4661. "lib/net452/Zstandard.Net.dll",
  4662. "lib/net48/MySql.Data.dll",
  4663. "lib/net48/MySql.Data.xml",
  4664. "lib/net48/Ubiety.Dns.Core.dll",
  4665. "lib/net48/Zstandard.Net.dll",
  4666. "lib/net5.0/MySql.Data.dll",
  4667. "lib/net5.0/MySql.Data.xml",
  4668. "lib/net5.0/Ubiety.Dns.Core.dll",
  4669. "lib/net5.0/Zstandard.Net.dll",
  4670. "lib/netstandard2.0/MySql.Data.dll",
  4671. "lib/netstandard2.0/MySql.Data.xml",
  4672. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4673. "lib/netstandard2.0/Zstandard.Net.dll",
  4674. "lib/netstandard2.1/MySql.Data.dll",
  4675. "lib/netstandard2.1/MySql.Data.xml",
  4676. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4677. "lib/netstandard2.1/Zstandard.Net.dll",
  4678. "mysql.data.8.0.23.nupkg.sha512",
  4679. "mysql.data.nuspec"
  4680. ]
  4681. },
  4682. "MySqlConnector/1.1.0": {
  4683. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4684. "type": "package",
  4685. "path": "mysqlconnector/1.1.0",
  4686. "files": [
  4687. ".nupkg.metadata",
  4688. ".signature.p7s",
  4689. "lib/net45/MySqlConnector.dll",
  4690. "lib/net45/MySqlConnector.xml",
  4691. "lib/net461/MySqlConnector.dll",
  4692. "lib/net461/MySqlConnector.xml",
  4693. "lib/net471/MySqlConnector.dll",
  4694. "lib/net471/MySqlConnector.xml",
  4695. "lib/net5.0/MySqlConnector.dll",
  4696. "lib/net5.0/MySqlConnector.xml",
  4697. "lib/netcoreapp2.1/MySqlConnector.dll",
  4698. "lib/netcoreapp2.1/MySqlConnector.xml",
  4699. "lib/netcoreapp3.1/MySqlConnector.dll",
  4700. "lib/netcoreapp3.1/MySqlConnector.xml",
  4701. "lib/netstandard1.3/MySqlConnector.dll",
  4702. "lib/netstandard1.3/MySqlConnector.xml",
  4703. "lib/netstandard2.0/MySqlConnector.dll",
  4704. "lib/netstandard2.0/MySqlConnector.xml",
  4705. "lib/netstandard2.1/MySqlConnector.dll",
  4706. "lib/netstandard2.1/MySqlConnector.xml",
  4707. "logo.png",
  4708. "mysqlconnector.1.1.0.nupkg.sha512",
  4709. "mysqlconnector.nuspec"
  4710. ]
  4711. },
  4712. "NETStandard.Library/1.6.1": {
  4713. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4714. "type": "package",
  4715. "path": "netstandard.library/1.6.1",
  4716. "files": [
  4717. ".nupkg.metadata",
  4718. ".signature.p7s",
  4719. "ThirdPartyNotices.txt",
  4720. "dotnet_library_license.txt",
  4721. "netstandard.library.1.6.1.nupkg.sha512",
  4722. "netstandard.library.nuspec"
  4723. ]
  4724. },
  4725. "Newtonsoft.Json/13.0.1": {
  4726. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4727. "type": "package",
  4728. "path": "newtonsoft.json/13.0.1",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "LICENSE.md",
  4733. "lib/net20/Newtonsoft.Json.dll",
  4734. "lib/net20/Newtonsoft.Json.xml",
  4735. "lib/net35/Newtonsoft.Json.dll",
  4736. "lib/net35/Newtonsoft.Json.xml",
  4737. "lib/net40/Newtonsoft.Json.dll",
  4738. "lib/net40/Newtonsoft.Json.xml",
  4739. "lib/net45/Newtonsoft.Json.dll",
  4740. "lib/net45/Newtonsoft.Json.xml",
  4741. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4742. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4743. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4744. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4745. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4746. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4747. "newtonsoft.json.13.0.1.nupkg.sha512",
  4748. "newtonsoft.json.nuspec",
  4749. "packageIcon.png"
  4750. ]
  4751. },
  4752. "Nito.AsyncEx.Coordination/5.0.0": {
  4753. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4754. "type": "package",
  4755. "path": "nito.asyncex.coordination/5.0.0",
  4756. "files": [
  4757. ".nupkg.metadata",
  4758. ".signature.p7s",
  4759. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4760. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4761. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4762. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4763. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4764. "nito.asyncex.coordination.nuspec"
  4765. ]
  4766. },
  4767. "Nito.AsyncEx.Tasks/5.0.0": {
  4768. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4769. "type": "package",
  4770. "path": "nito.asyncex.tasks/5.0.0",
  4771. "files": [
  4772. ".nupkg.metadata",
  4773. ".signature.p7s",
  4774. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4775. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4776. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4777. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4778. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4779. "nito.asyncex.tasks.nuspec"
  4780. ]
  4781. },
  4782. "Nito.Collections.Deque/1.0.4": {
  4783. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4784. "type": "package",
  4785. "path": "nito.collections.deque/1.0.4",
  4786. "files": [
  4787. ".nupkg.metadata",
  4788. ".signature.p7s",
  4789. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4790. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4791. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4792. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4793. "nito.collections.deque.1.0.4.nupkg.sha512",
  4794. "nito.collections.deque.nuspec"
  4795. ]
  4796. },
  4797. "Nito.Disposables/2.0.0": {
  4798. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4799. "type": "package",
  4800. "path": "nito.disposables/2.0.0",
  4801. "files": [
  4802. ".nupkg.metadata",
  4803. ".signature.p7s",
  4804. "lib/netstandard1.0/Nito.Disposables.dll",
  4805. "lib/netstandard1.0/Nito.Disposables.pdb",
  4806. "lib/netstandard1.0/Nito.Disposables.xml",
  4807. "lib/netstandard2.0/Nito.Disposables.dll",
  4808. "lib/netstandard2.0/Nito.Disposables.pdb",
  4809. "lib/netstandard2.0/Nito.Disposables.xml",
  4810. "nito.disposables.2.0.0.nupkg.sha512",
  4811. "nito.disposables.nuspec"
  4812. ]
  4813. },
  4814. "NodaTime/2.4.7": {
  4815. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4816. "type": "package",
  4817. "path": "nodatime/2.4.7",
  4818. "files": [
  4819. ".nupkg.metadata",
  4820. ".signature.p7s",
  4821. "lib/net45/NodaTime.dll",
  4822. "lib/net45/NodaTime.pdb",
  4823. "lib/net45/NodaTime.xml",
  4824. "lib/netstandard1.3/NodaTime.dll",
  4825. "lib/netstandard1.3/NodaTime.pdb",
  4826. "lib/netstandard1.3/NodaTime.xml",
  4827. "lib/netstandard2.0/NodaTime.dll",
  4828. "lib/netstandard2.0/NodaTime.pdb",
  4829. "lib/netstandard2.0/NodaTime.xml",
  4830. "nodatime.2.4.7.nupkg.sha512",
  4831. "nodatime.nuspec"
  4832. ]
  4833. },
  4834. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4835. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4836. "type": "package",
  4837. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4838. "files": [
  4839. ".nupkg.metadata",
  4840. ".signature.p7s",
  4841. "icon.png",
  4842. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4843. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4844. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4845. "pomelo.entityframeworkcore.mysql.nuspec"
  4846. ]
  4847. },
  4848. "QRCoder/1.4.3": {
  4849. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4850. "type": "package",
  4851. "path": "qrcoder/1.4.3",
  4852. "files": [
  4853. ".nupkg.metadata",
  4854. ".signature.p7s",
  4855. "lib/net35/QRCoder.dll",
  4856. "lib/net40/QRCoder.dll",
  4857. "lib/net5.0-windows7.0/QRCoder.dll",
  4858. "lib/net5.0/QRCoder.dll",
  4859. "lib/net6.0-windows7.0/QRCoder.dll",
  4860. "lib/net6.0/QRCoder.dll",
  4861. "lib/netstandard1.3/QRCoder.dll",
  4862. "lib/netstandard2.0/QRCoder.dll",
  4863. "nuget-icon.png",
  4864. "nuget-readme.md",
  4865. "qrcoder.1.4.3.nupkg.sha512",
  4866. "qrcoder.nuspec"
  4867. ]
  4868. },
  4869. "RabbitMQ.Client/6.8.1": {
  4870. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4871. "type": "package",
  4872. "path": "rabbitmq.client/6.8.1",
  4873. "files": [
  4874. ".nupkg.metadata",
  4875. ".signature.p7s",
  4876. "README.md",
  4877. "icon.png",
  4878. "lib/net462/RabbitMQ.Client.dll",
  4879. "lib/net462/RabbitMQ.Client.xml",
  4880. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4881. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4882. "rabbitmq.client.6.8.1.nupkg.sha512",
  4883. "rabbitmq.client.nuspec"
  4884. ]
  4885. },
  4886. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4887. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  4888. "type": "package",
  4889. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4890. "files": [
  4891. ".nupkg.metadata",
  4892. ".signature.p7s",
  4893. "ThirdPartyNotices.txt",
  4894. "dotnet_library_license.txt",
  4895. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4896. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4897. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4898. ]
  4899. },
  4900. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4901. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  4902. "type": "package",
  4903. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4904. "files": [
  4905. ".nupkg.metadata",
  4906. ".signature.p7s",
  4907. "ThirdPartyNotices.txt",
  4908. "dotnet_library_license.txt",
  4909. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4910. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4911. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4912. ]
  4913. },
  4914. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4915. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  4916. "type": "package",
  4917. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4918. "files": [
  4919. ".nupkg.metadata",
  4920. ".signature.p7s",
  4921. "ThirdPartyNotices.txt",
  4922. "dotnet_library_license.txt",
  4923. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4924. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4925. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4926. ]
  4927. },
  4928. "runtime.native.System/4.3.0": {
  4929. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4930. "type": "package",
  4931. "path": "runtime.native.system/4.3.0",
  4932. "files": [
  4933. ".nupkg.metadata",
  4934. ".signature.p7s",
  4935. "ThirdPartyNotices.txt",
  4936. "dotnet_library_license.txt",
  4937. "lib/netstandard1.0/_._",
  4938. "runtime.native.system.4.3.0.nupkg.sha512",
  4939. "runtime.native.system.nuspec"
  4940. ]
  4941. },
  4942. "runtime.native.System.IO.Compression/4.3.0": {
  4943. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4944. "type": "package",
  4945. "path": "runtime.native.system.io.compression/4.3.0",
  4946. "files": [
  4947. ".nupkg.metadata",
  4948. ".signature.p7s",
  4949. "ThirdPartyNotices.txt",
  4950. "dotnet_library_license.txt",
  4951. "lib/netstandard1.0/_._",
  4952. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4953. "runtime.native.system.io.compression.nuspec"
  4954. ]
  4955. },
  4956. "runtime.native.System.Net.Http/4.3.0": {
  4957. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4958. "type": "package",
  4959. "path": "runtime.native.system.net.http/4.3.0",
  4960. "files": [
  4961. ".nupkg.metadata",
  4962. ".signature.p7s",
  4963. "ThirdPartyNotices.txt",
  4964. "dotnet_library_license.txt",
  4965. "lib/netstandard1.0/_._",
  4966. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4967. "runtime.native.system.net.http.nuspec"
  4968. ]
  4969. },
  4970. "runtime.native.System.Net.Security/4.3.0": {
  4971. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4972. "type": "package",
  4973. "path": "runtime.native.system.net.security/4.3.0",
  4974. "files": [
  4975. ".nupkg.metadata",
  4976. ".signature.p7s",
  4977. "ThirdPartyNotices.txt",
  4978. "dotnet_library_license.txt",
  4979. "lib/netstandard1.0/_._",
  4980. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4981. "runtime.native.system.net.security.nuspec"
  4982. ]
  4983. },
  4984. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4985. "sha512": "UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  4986. "type": "package",
  4987. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  4988. "files": [
  4989. ".nupkg.metadata",
  4990. ".signature.p7s",
  4991. "ThirdPartyNotices.txt",
  4992. "dotnet_library_license.txt",
  4993. "lib/netstandard1.0/_._",
  4994. "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4995. "runtime.native.system.security.cryptography.apple.nuspec"
  4996. ]
  4997. },
  4998. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4999. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  5000. "type": "package",
  5001. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  5002. "files": [
  5003. ".nupkg.metadata",
  5004. ".signature.p7s",
  5005. "ThirdPartyNotices.txt",
  5006. "dotnet_library_license.txt",
  5007. "lib/netstandard1.0/_._",
  5008. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5009. "runtime.native.system.security.cryptography.openssl.nuspec"
  5010. ]
  5011. },
  5012. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5013. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  5014. "type": "package",
  5015. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5016. "files": [
  5017. ".nupkg.metadata",
  5018. ".signature.p7s",
  5019. "ThirdPartyNotices.txt",
  5020. "dotnet_library_license.txt",
  5021. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5022. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5023. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5024. ]
  5025. },
  5026. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5027. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  5028. "type": "package",
  5029. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5030. "files": [
  5031. ".nupkg.metadata",
  5032. ".signature.p7s",
  5033. "ThirdPartyNotices.txt",
  5034. "dotnet_library_license.txt",
  5035. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5036. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5037. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5038. ]
  5039. },
  5040. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  5041. "sha512": "t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  5042. "type": "package",
  5043. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  5044. "files": [
  5045. ".nupkg.metadata",
  5046. ".signature.p7s",
  5047. "ThirdPartyNotices.txt",
  5048. "dotnet_library_license.txt",
  5049. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  5050. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5051. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5052. ]
  5053. },
  5054. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5055. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  5056. "type": "package",
  5057. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5058. "files": [
  5059. ".nupkg.metadata",
  5060. ".signature.p7s",
  5061. "ThirdPartyNotices.txt",
  5062. "dotnet_library_license.txt",
  5063. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5064. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5065. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5066. ]
  5067. },
  5068. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5069. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  5070. "type": "package",
  5071. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5072. "files": [
  5073. ".nupkg.metadata",
  5074. ".signature.p7s",
  5075. "ThirdPartyNotices.txt",
  5076. "dotnet_library_license.txt",
  5077. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5078. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5079. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5080. ]
  5081. },
  5082. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5083. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  5084. "type": "package",
  5085. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5086. "files": [
  5087. ".nupkg.metadata",
  5088. ".signature.p7s",
  5089. "ThirdPartyNotices.txt",
  5090. "dotnet_library_license.txt",
  5091. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5092. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5093. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5094. ]
  5095. },
  5096. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5097. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  5098. "type": "package",
  5099. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5100. "files": [
  5101. ".nupkg.metadata",
  5102. ".signature.p7s",
  5103. "ThirdPartyNotices.txt",
  5104. "dotnet_library_license.txt",
  5105. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5106. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5107. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5108. ]
  5109. },
  5110. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5111. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  5112. "type": "package",
  5113. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5114. "files": [
  5115. ".nupkg.metadata",
  5116. ".signature.p7s",
  5117. "ThirdPartyNotices.txt",
  5118. "dotnet_library_license.txt",
  5119. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5120. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5121. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5122. ]
  5123. },
  5124. "SixLabors.ImageSharp/2.1.6": {
  5125. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  5126. "type": "package",
  5127. "path": "sixlabors.imagesharp/2.1.6",
  5128. "files": [
  5129. ".nupkg.metadata",
  5130. ".signature.p7s",
  5131. "lib/net472/SixLabors.ImageSharp.dll",
  5132. "lib/net472/SixLabors.ImageSharp.xml",
  5133. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  5134. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  5135. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  5136. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  5137. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  5138. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  5139. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  5140. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  5141. "sixlabors.imagesharp.128.png",
  5142. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  5143. "sixlabors.imagesharp.nuspec"
  5144. ]
  5145. },
  5146. "SSH.NET/2020.0.0-beta1": {
  5147. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  5148. "type": "package",
  5149. "path": "ssh.net/2020.0.0-beta1",
  5150. "files": [
  5151. ".nupkg.metadata",
  5152. ".signature.p7s",
  5153. "lib/net35/Renci.SshNet.dll",
  5154. "lib/net35/Renci.SshNet.xml",
  5155. "lib/net40/Renci.SshNet.dll",
  5156. "lib/net40/Renci.SshNet.xml",
  5157. "lib/netstandard1.3/Renci.SshNet.dll",
  5158. "lib/netstandard1.3/Renci.SshNet.xml",
  5159. "lib/netstandard2.0/Renci.SshNet.dll",
  5160. "lib/netstandard2.0/Renci.SshNet.xml",
  5161. "lib/sl4/Renci.SshNet.dll",
  5162. "lib/sl4/Renci.SshNet.xml",
  5163. "lib/sl5/Renci.SshNet.dll",
  5164. "lib/sl5/Renci.SshNet.xml",
  5165. "lib/uap10/Renci.SshNet.dll",
  5166. "lib/uap10/Renci.SshNet.xml",
  5167. "lib/wp71/Renci.SshNet.dll",
  5168. "lib/wp71/Renci.SshNet.xml",
  5169. "lib/wp8/Renci.SshNet.dll",
  5170. "lib/wp8/Renci.SshNet.xml",
  5171. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5172. "ssh.net.nuspec"
  5173. ]
  5174. },
  5175. "SshNet.Security.Cryptography/1.3.0": {
  5176. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5177. "type": "package",
  5178. "path": "sshnet.security.cryptography/1.3.0",
  5179. "files": [
  5180. ".nupkg.metadata",
  5181. ".signature.p7s",
  5182. "lib/net20/SshNet.Security.Cryptography.dll",
  5183. "lib/net20/SshNet.Security.Cryptography.xml",
  5184. "lib/net40/SshNet.Security.Cryptography.dll",
  5185. "lib/net40/SshNet.Security.Cryptography.xml",
  5186. "lib/net45/SshNet.Security.Cryptography.dll",
  5187. "lib/net45/SshNet.Security.Cryptography.xml",
  5188. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5189. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5190. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5191. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5192. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5193. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5194. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5195. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5196. "lib/sl4/SshNet.Security.Cryptography.dll",
  5197. "lib/sl4/SshNet.Security.Cryptography.xml",
  5198. "lib/sl5/SshNet.Security.Cryptography.dll",
  5199. "lib/sl5/SshNet.Security.Cryptography.xml",
  5200. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5201. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5202. "lib/wp71/SshNet.Security.Cryptography.dll",
  5203. "lib/wp71/SshNet.Security.Cryptography.xml",
  5204. "lib/wp8/SshNet.Security.Cryptography.dll",
  5205. "lib/wp8/SshNet.Security.Cryptography.xml",
  5206. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5207. "sshnet.security.cryptography.nuspec"
  5208. ]
  5209. },
  5210. "StackExchange.Redis/1.2.4": {
  5211. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5212. "type": "package",
  5213. "path": "stackexchange.redis/1.2.4",
  5214. "files": [
  5215. ".nupkg.metadata",
  5216. ".signature.p7s",
  5217. "lib/net45/StackExchange.Redis.dll",
  5218. "lib/net45/StackExchange.Redis.xml",
  5219. "lib/net46/StackExchange.Redis.dll",
  5220. "lib/net46/StackExchange.Redis.xml",
  5221. "lib/netstandard1.5/StackExchange.Redis.dll",
  5222. "lib/netstandard1.5/StackExchange.Redis.xml",
  5223. "stackexchange.redis.1.2.4.nupkg.sha512",
  5224. "stackexchange.redis.nuspec"
  5225. ]
  5226. },
  5227. "Swashbuckle.AspNetCore/5.6.3": {
  5228. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5229. "type": "package",
  5230. "path": "swashbuckle.aspnetcore/5.6.3",
  5231. "files": [
  5232. ".nupkg.metadata",
  5233. ".signature.p7s",
  5234. "build/Swashbuckle.AspNetCore.props",
  5235. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5236. "swashbuckle.aspnetcore.nuspec"
  5237. ]
  5238. },
  5239. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5240. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5241. "type": "package",
  5242. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5243. "files": [
  5244. ".nupkg.metadata",
  5245. ".signature.p7s",
  5246. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5247. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5248. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5249. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5250. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5251. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5252. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5253. "swashbuckle.aspnetcore.swagger.nuspec"
  5254. ]
  5255. },
  5256. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5257. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5258. "type": "package",
  5259. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5260. "files": [
  5261. ".nupkg.metadata",
  5262. ".signature.p7s",
  5263. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5264. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5265. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5266. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5267. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5268. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5269. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5270. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5271. ]
  5272. },
  5273. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5274. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5275. "type": "package",
  5276. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5277. "files": [
  5278. ".nupkg.metadata",
  5279. ".signature.p7s",
  5280. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5281. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5282. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5283. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5284. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5285. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5286. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5287. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5288. ]
  5289. },
  5290. "System.AppContext/4.3.0": {
  5291. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5292. "type": "package",
  5293. "path": "system.appcontext/4.3.0",
  5294. "files": [
  5295. ".nupkg.metadata",
  5296. ".signature.p7s",
  5297. "ThirdPartyNotices.txt",
  5298. "dotnet_library_license.txt",
  5299. "lib/MonoAndroid10/_._",
  5300. "lib/MonoTouch10/_._",
  5301. "lib/net46/System.AppContext.dll",
  5302. "lib/net463/System.AppContext.dll",
  5303. "lib/netcore50/System.AppContext.dll",
  5304. "lib/netstandard1.6/System.AppContext.dll",
  5305. "lib/xamarinios10/_._",
  5306. "lib/xamarinmac20/_._",
  5307. "lib/xamarintvos10/_._",
  5308. "lib/xamarinwatchos10/_._",
  5309. "ref/MonoAndroid10/_._",
  5310. "ref/MonoTouch10/_._",
  5311. "ref/net46/System.AppContext.dll",
  5312. "ref/net463/System.AppContext.dll",
  5313. "ref/netstandard/_._",
  5314. "ref/netstandard1.3/System.AppContext.dll",
  5315. "ref/netstandard1.3/System.AppContext.xml",
  5316. "ref/netstandard1.3/de/System.AppContext.xml",
  5317. "ref/netstandard1.3/es/System.AppContext.xml",
  5318. "ref/netstandard1.3/fr/System.AppContext.xml",
  5319. "ref/netstandard1.3/it/System.AppContext.xml",
  5320. "ref/netstandard1.3/ja/System.AppContext.xml",
  5321. "ref/netstandard1.3/ko/System.AppContext.xml",
  5322. "ref/netstandard1.3/ru/System.AppContext.xml",
  5323. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5324. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5325. "ref/netstandard1.6/System.AppContext.dll",
  5326. "ref/netstandard1.6/System.AppContext.xml",
  5327. "ref/netstandard1.6/de/System.AppContext.xml",
  5328. "ref/netstandard1.6/es/System.AppContext.xml",
  5329. "ref/netstandard1.6/fr/System.AppContext.xml",
  5330. "ref/netstandard1.6/it/System.AppContext.xml",
  5331. "ref/netstandard1.6/ja/System.AppContext.xml",
  5332. "ref/netstandard1.6/ko/System.AppContext.xml",
  5333. "ref/netstandard1.6/ru/System.AppContext.xml",
  5334. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5335. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5336. "ref/xamarinios10/_._",
  5337. "ref/xamarinmac20/_._",
  5338. "ref/xamarintvos10/_._",
  5339. "ref/xamarinwatchos10/_._",
  5340. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5341. "system.appcontext.4.3.0.nupkg.sha512",
  5342. "system.appcontext.nuspec"
  5343. ]
  5344. },
  5345. "System.Buffers/4.5.1": {
  5346. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5347. "type": "package",
  5348. "path": "system.buffers/4.5.1",
  5349. "files": [
  5350. ".nupkg.metadata",
  5351. ".signature.p7s",
  5352. "LICENSE.TXT",
  5353. "THIRD-PARTY-NOTICES.TXT",
  5354. "lib/net461/System.Buffers.dll",
  5355. "lib/net461/System.Buffers.xml",
  5356. "lib/netcoreapp2.0/_._",
  5357. "lib/netstandard1.1/System.Buffers.dll",
  5358. "lib/netstandard1.1/System.Buffers.xml",
  5359. "lib/netstandard2.0/System.Buffers.dll",
  5360. "lib/netstandard2.0/System.Buffers.xml",
  5361. "lib/uap10.0.16299/_._",
  5362. "ref/net45/System.Buffers.dll",
  5363. "ref/net45/System.Buffers.xml",
  5364. "ref/netcoreapp2.0/_._",
  5365. "ref/netstandard1.1/System.Buffers.dll",
  5366. "ref/netstandard1.1/System.Buffers.xml",
  5367. "ref/netstandard2.0/System.Buffers.dll",
  5368. "ref/netstandard2.0/System.Buffers.xml",
  5369. "ref/uap10.0.16299/_._",
  5370. "system.buffers.4.5.1.nupkg.sha512",
  5371. "system.buffers.nuspec",
  5372. "useSharedDesignerContext.txt",
  5373. "version.txt"
  5374. ]
  5375. },
  5376. "System.Collections/4.3.0": {
  5377. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5378. "type": "package",
  5379. "path": "system.collections/4.3.0",
  5380. "files": [
  5381. ".nupkg.metadata",
  5382. ".signature.p7s",
  5383. "ThirdPartyNotices.txt",
  5384. "dotnet_library_license.txt",
  5385. "lib/MonoAndroid10/_._",
  5386. "lib/MonoTouch10/_._",
  5387. "lib/net45/_._",
  5388. "lib/portable-net45+win8+wp8+wpa81/_._",
  5389. "lib/win8/_._",
  5390. "lib/wp80/_._",
  5391. "lib/wpa81/_._",
  5392. "lib/xamarinios10/_._",
  5393. "lib/xamarinmac20/_._",
  5394. "lib/xamarintvos10/_._",
  5395. "lib/xamarinwatchos10/_._",
  5396. "ref/MonoAndroid10/_._",
  5397. "ref/MonoTouch10/_._",
  5398. "ref/net45/_._",
  5399. "ref/netcore50/System.Collections.dll",
  5400. "ref/netcore50/System.Collections.xml",
  5401. "ref/netcore50/de/System.Collections.xml",
  5402. "ref/netcore50/es/System.Collections.xml",
  5403. "ref/netcore50/fr/System.Collections.xml",
  5404. "ref/netcore50/it/System.Collections.xml",
  5405. "ref/netcore50/ja/System.Collections.xml",
  5406. "ref/netcore50/ko/System.Collections.xml",
  5407. "ref/netcore50/ru/System.Collections.xml",
  5408. "ref/netcore50/zh-hans/System.Collections.xml",
  5409. "ref/netcore50/zh-hant/System.Collections.xml",
  5410. "ref/netstandard1.0/System.Collections.dll",
  5411. "ref/netstandard1.0/System.Collections.xml",
  5412. "ref/netstandard1.0/de/System.Collections.xml",
  5413. "ref/netstandard1.0/es/System.Collections.xml",
  5414. "ref/netstandard1.0/fr/System.Collections.xml",
  5415. "ref/netstandard1.0/it/System.Collections.xml",
  5416. "ref/netstandard1.0/ja/System.Collections.xml",
  5417. "ref/netstandard1.0/ko/System.Collections.xml",
  5418. "ref/netstandard1.0/ru/System.Collections.xml",
  5419. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5420. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5421. "ref/netstandard1.3/System.Collections.dll",
  5422. "ref/netstandard1.3/System.Collections.xml",
  5423. "ref/netstandard1.3/de/System.Collections.xml",
  5424. "ref/netstandard1.3/es/System.Collections.xml",
  5425. "ref/netstandard1.3/fr/System.Collections.xml",
  5426. "ref/netstandard1.3/it/System.Collections.xml",
  5427. "ref/netstandard1.3/ja/System.Collections.xml",
  5428. "ref/netstandard1.3/ko/System.Collections.xml",
  5429. "ref/netstandard1.3/ru/System.Collections.xml",
  5430. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5431. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5432. "ref/portable-net45+win8+wp8+wpa81/_._",
  5433. "ref/win8/_._",
  5434. "ref/wp80/_._",
  5435. "ref/wpa81/_._",
  5436. "ref/xamarinios10/_._",
  5437. "ref/xamarinmac20/_._",
  5438. "ref/xamarintvos10/_._",
  5439. "ref/xamarinwatchos10/_._",
  5440. "system.collections.4.3.0.nupkg.sha512",
  5441. "system.collections.nuspec"
  5442. ]
  5443. },
  5444. "System.Collections.Concurrent/4.3.0": {
  5445. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5446. "type": "package",
  5447. "path": "system.collections.concurrent/4.3.0",
  5448. "files": [
  5449. ".nupkg.metadata",
  5450. ".signature.p7s",
  5451. "ThirdPartyNotices.txt",
  5452. "dotnet_library_license.txt",
  5453. "lib/MonoAndroid10/_._",
  5454. "lib/MonoTouch10/_._",
  5455. "lib/net45/_._",
  5456. "lib/netcore50/System.Collections.Concurrent.dll",
  5457. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5458. "lib/portable-net45+win8+wpa81/_._",
  5459. "lib/win8/_._",
  5460. "lib/wpa81/_._",
  5461. "lib/xamarinios10/_._",
  5462. "lib/xamarinmac20/_._",
  5463. "lib/xamarintvos10/_._",
  5464. "lib/xamarinwatchos10/_._",
  5465. "ref/MonoAndroid10/_._",
  5466. "ref/MonoTouch10/_._",
  5467. "ref/net45/_._",
  5468. "ref/netcore50/System.Collections.Concurrent.dll",
  5469. "ref/netcore50/System.Collections.Concurrent.xml",
  5470. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5471. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5472. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5473. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5474. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5475. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5476. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5477. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5478. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5479. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5480. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5481. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5482. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5483. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5484. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5485. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5486. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5487. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5488. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5489. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5490. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5491. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5492. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5493. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5494. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5495. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5496. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5497. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5498. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5499. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5500. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5501. "ref/portable-net45+win8+wpa81/_._",
  5502. "ref/win8/_._",
  5503. "ref/wpa81/_._",
  5504. "ref/xamarinios10/_._",
  5505. "ref/xamarinmac20/_._",
  5506. "ref/xamarintvos10/_._",
  5507. "ref/xamarinwatchos10/_._",
  5508. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5509. "system.collections.concurrent.nuspec"
  5510. ]
  5511. },
  5512. "System.Collections.Immutable/5.0.0": {
  5513. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5514. "type": "package",
  5515. "path": "system.collections.immutable/5.0.0",
  5516. "files": [
  5517. ".nupkg.metadata",
  5518. ".signature.p7s",
  5519. "Icon.png",
  5520. "LICENSE.TXT",
  5521. "THIRD-PARTY-NOTICES.TXT",
  5522. "lib/net461/System.Collections.Immutable.dll",
  5523. "lib/net461/System.Collections.Immutable.xml",
  5524. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5525. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5526. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5527. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5528. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5529. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5530. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5531. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5532. "system.collections.immutable.5.0.0.nupkg.sha512",
  5533. "system.collections.immutable.nuspec",
  5534. "useSharedDesignerContext.txt",
  5535. "version.txt"
  5536. ]
  5537. },
  5538. "System.Collections.NonGeneric/4.3.0": {
  5539. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5540. "type": "package",
  5541. "path": "system.collections.nongeneric/4.3.0",
  5542. "files": [
  5543. ".nupkg.metadata",
  5544. ".signature.p7s",
  5545. "ThirdPartyNotices.txt",
  5546. "dotnet_library_license.txt",
  5547. "lib/MonoAndroid10/_._",
  5548. "lib/MonoTouch10/_._",
  5549. "lib/net46/System.Collections.NonGeneric.dll",
  5550. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5551. "lib/xamarinios10/_._",
  5552. "lib/xamarinmac20/_._",
  5553. "lib/xamarintvos10/_._",
  5554. "lib/xamarinwatchos10/_._",
  5555. "ref/MonoAndroid10/_._",
  5556. "ref/MonoTouch10/_._",
  5557. "ref/net46/System.Collections.NonGeneric.dll",
  5558. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5559. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5560. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5561. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5562. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5563. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5564. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5565. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5566. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5567. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5568. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5569. "ref/xamarinios10/_._",
  5570. "ref/xamarinmac20/_._",
  5571. "ref/xamarintvos10/_._",
  5572. "ref/xamarinwatchos10/_._",
  5573. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5574. "system.collections.nongeneric.nuspec"
  5575. ]
  5576. },
  5577. "System.ComponentModel/4.3.0": {
  5578. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5579. "type": "package",
  5580. "path": "system.componentmodel/4.3.0",
  5581. "files": [
  5582. ".nupkg.metadata",
  5583. ".signature.p7s",
  5584. "ThirdPartyNotices.txt",
  5585. "dotnet_library_license.txt",
  5586. "lib/MonoAndroid10/_._",
  5587. "lib/MonoTouch10/_._",
  5588. "lib/net45/_._",
  5589. "lib/netcore50/System.ComponentModel.dll",
  5590. "lib/netstandard1.3/System.ComponentModel.dll",
  5591. "lib/portable-net45+win8+wp8+wpa81/_._",
  5592. "lib/win8/_._",
  5593. "lib/wp80/_._",
  5594. "lib/wpa81/_._",
  5595. "lib/xamarinios10/_._",
  5596. "lib/xamarinmac20/_._",
  5597. "lib/xamarintvos10/_._",
  5598. "lib/xamarinwatchos10/_._",
  5599. "ref/MonoAndroid10/_._",
  5600. "ref/MonoTouch10/_._",
  5601. "ref/net45/_._",
  5602. "ref/netcore50/System.ComponentModel.dll",
  5603. "ref/netcore50/System.ComponentModel.xml",
  5604. "ref/netcore50/de/System.ComponentModel.xml",
  5605. "ref/netcore50/es/System.ComponentModel.xml",
  5606. "ref/netcore50/fr/System.ComponentModel.xml",
  5607. "ref/netcore50/it/System.ComponentModel.xml",
  5608. "ref/netcore50/ja/System.ComponentModel.xml",
  5609. "ref/netcore50/ko/System.ComponentModel.xml",
  5610. "ref/netcore50/ru/System.ComponentModel.xml",
  5611. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5612. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5613. "ref/netstandard1.0/System.ComponentModel.dll",
  5614. "ref/netstandard1.0/System.ComponentModel.xml",
  5615. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5616. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5617. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5618. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5619. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5620. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5621. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5622. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5623. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5624. "ref/portable-net45+win8+wp8+wpa81/_._",
  5625. "ref/win8/_._",
  5626. "ref/wp80/_._",
  5627. "ref/wpa81/_._",
  5628. "ref/xamarinios10/_._",
  5629. "ref/xamarinmac20/_._",
  5630. "ref/xamarintvos10/_._",
  5631. "ref/xamarinwatchos10/_._",
  5632. "system.componentmodel.4.3.0.nupkg.sha512",
  5633. "system.componentmodel.nuspec"
  5634. ]
  5635. },
  5636. "System.ComponentModel.Annotations/5.0.0": {
  5637. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5638. "type": "package",
  5639. "path": "system.componentmodel.annotations/5.0.0",
  5640. "files": [
  5641. ".nupkg.metadata",
  5642. ".signature.p7s",
  5643. "Icon.png",
  5644. "LICENSE.TXT",
  5645. "THIRD-PARTY-NOTICES.TXT",
  5646. "lib/MonoAndroid10/_._",
  5647. "lib/MonoTouch10/_._",
  5648. "lib/net45/_._",
  5649. "lib/net461/System.ComponentModel.Annotations.dll",
  5650. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5651. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5652. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5653. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5654. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5655. "lib/portable-net45+win8/_._",
  5656. "lib/win8/_._",
  5657. "lib/xamarinios10/_._",
  5658. "lib/xamarinmac20/_._",
  5659. "lib/xamarintvos10/_._",
  5660. "lib/xamarinwatchos10/_._",
  5661. "ref/MonoAndroid10/_._",
  5662. "ref/MonoTouch10/_._",
  5663. "ref/net45/_._",
  5664. "ref/net461/System.ComponentModel.Annotations.dll",
  5665. "ref/net461/System.ComponentModel.Annotations.xml",
  5666. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5667. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5668. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5669. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5670. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5671. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5672. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5673. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5674. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5675. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5676. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5677. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5678. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5679. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5680. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5681. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5682. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5683. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5684. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5685. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5686. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5687. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5688. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5689. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5690. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5691. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5692. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5693. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5694. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5695. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5696. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5697. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5698. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5699. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5700. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5701. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5702. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5703. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5704. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5705. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5706. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5707. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5708. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5709. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5710. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5711. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5712. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5713. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5714. "ref/portable-net45+win8/_._",
  5715. "ref/win8/_._",
  5716. "ref/xamarinios10/_._",
  5717. "ref/xamarinmac20/_._",
  5718. "ref/xamarintvos10/_._",
  5719. "ref/xamarinwatchos10/_._",
  5720. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5721. "system.componentmodel.annotations.nuspec",
  5722. "useSharedDesignerContext.txt",
  5723. "version.txt"
  5724. ]
  5725. },
  5726. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5727. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5728. "type": "package",
  5729. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5730. "files": [
  5731. ".nupkg.metadata",
  5732. ".signature.p7s",
  5733. "ThirdPartyNotices.txt",
  5734. "dotnet_library_license.txt",
  5735. "lib/MonoAndroid10/_._",
  5736. "lib/MonoTouch10/_._",
  5737. "lib/net45/_._",
  5738. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5739. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5740. "lib/portable-net45+win8+wp8+wpa81/_._",
  5741. "lib/win8/_._",
  5742. "lib/wp80/_._",
  5743. "lib/wpa81/_._",
  5744. "lib/xamarinios10/_._",
  5745. "lib/xamarinmac20/_._",
  5746. "lib/xamarintvos10/_._",
  5747. "lib/xamarinwatchos10/_._",
  5748. "ref/MonoAndroid10/_._",
  5749. "ref/MonoTouch10/_._",
  5750. "ref/net45/_._",
  5751. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5752. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5753. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5754. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5755. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5756. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5757. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5758. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5759. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5760. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5761. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5762. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5763. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5764. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5765. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5766. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5767. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5768. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5769. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5770. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5771. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5772. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5773. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5774. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5775. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5776. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5777. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5778. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5779. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5780. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5781. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5782. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5783. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5784. "ref/portable-net45+win8+wp8+wpa81/_._",
  5785. "ref/win8/_._",
  5786. "ref/wp80/_._",
  5787. "ref/wpa81/_._",
  5788. "ref/xamarinios10/_._",
  5789. "ref/xamarinmac20/_._",
  5790. "ref/xamarintvos10/_._",
  5791. "ref/xamarinwatchos10/_._",
  5792. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5793. "system.componentmodel.eventbasedasync.nuspec"
  5794. ]
  5795. },
  5796. "System.ComponentModel.Primitives/4.3.0": {
  5797. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5798. "type": "package",
  5799. "path": "system.componentmodel.primitives/4.3.0",
  5800. "files": [
  5801. ".nupkg.metadata",
  5802. ".signature.p7s",
  5803. "ThirdPartyNotices.txt",
  5804. "dotnet_library_license.txt",
  5805. "lib/MonoAndroid10/_._",
  5806. "lib/MonoTouch10/_._",
  5807. "lib/net45/System.ComponentModel.Primitives.dll",
  5808. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5809. "lib/xamarinios10/_._",
  5810. "lib/xamarinmac20/_._",
  5811. "lib/xamarintvos10/_._",
  5812. "lib/xamarinwatchos10/_._",
  5813. "ref/MonoAndroid10/_._",
  5814. "ref/MonoTouch10/_._",
  5815. "ref/net45/System.ComponentModel.Primitives.dll",
  5816. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5817. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5818. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5819. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5820. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5821. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5822. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5823. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5824. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5825. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5826. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5827. "ref/xamarinios10/_._",
  5828. "ref/xamarinmac20/_._",
  5829. "ref/xamarintvos10/_._",
  5830. "ref/xamarinwatchos10/_._",
  5831. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5832. "system.componentmodel.primitives.nuspec"
  5833. ]
  5834. },
  5835. "System.Configuration.ConfigurationManager/4.5.0": {
  5836. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5837. "type": "package",
  5838. "path": "system.configuration.configurationmanager/4.5.0",
  5839. "files": [
  5840. ".nupkg.metadata",
  5841. ".signature.p7s",
  5842. "LICENSE.TXT",
  5843. "THIRD-PARTY-NOTICES.TXT",
  5844. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5845. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5846. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5847. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5848. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5849. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5850. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5851. "system.configuration.configurationmanager.nuspec",
  5852. "useSharedDesignerContext.txt",
  5853. "version.txt"
  5854. ]
  5855. },
  5856. "System.Console/4.3.0": {
  5857. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5858. "type": "package",
  5859. "path": "system.console/4.3.0",
  5860. "files": [
  5861. ".nupkg.metadata",
  5862. ".signature.p7s",
  5863. "ThirdPartyNotices.txt",
  5864. "dotnet_library_license.txt",
  5865. "lib/MonoAndroid10/_._",
  5866. "lib/MonoTouch10/_._",
  5867. "lib/net46/System.Console.dll",
  5868. "lib/xamarinios10/_._",
  5869. "lib/xamarinmac20/_._",
  5870. "lib/xamarintvos10/_._",
  5871. "lib/xamarinwatchos10/_._",
  5872. "ref/MonoAndroid10/_._",
  5873. "ref/MonoTouch10/_._",
  5874. "ref/net46/System.Console.dll",
  5875. "ref/netstandard1.3/System.Console.dll",
  5876. "ref/netstandard1.3/System.Console.xml",
  5877. "ref/netstandard1.3/de/System.Console.xml",
  5878. "ref/netstandard1.3/es/System.Console.xml",
  5879. "ref/netstandard1.3/fr/System.Console.xml",
  5880. "ref/netstandard1.3/it/System.Console.xml",
  5881. "ref/netstandard1.3/ja/System.Console.xml",
  5882. "ref/netstandard1.3/ko/System.Console.xml",
  5883. "ref/netstandard1.3/ru/System.Console.xml",
  5884. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5885. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5886. "ref/xamarinios10/_._",
  5887. "ref/xamarinmac20/_._",
  5888. "ref/xamarintvos10/_._",
  5889. "ref/xamarinwatchos10/_._",
  5890. "system.console.4.3.0.nupkg.sha512",
  5891. "system.console.nuspec"
  5892. ]
  5893. },
  5894. "System.Diagnostics.Debug/4.3.0": {
  5895. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5896. "type": "package",
  5897. "path": "system.diagnostics.debug/4.3.0",
  5898. "files": [
  5899. ".nupkg.metadata",
  5900. ".signature.p7s",
  5901. "ThirdPartyNotices.txt",
  5902. "dotnet_library_license.txt",
  5903. "lib/MonoAndroid10/_._",
  5904. "lib/MonoTouch10/_._",
  5905. "lib/net45/_._",
  5906. "lib/portable-net45+win8+wp8+wpa81/_._",
  5907. "lib/win8/_._",
  5908. "lib/wp80/_._",
  5909. "lib/wpa81/_._",
  5910. "lib/xamarinios10/_._",
  5911. "lib/xamarinmac20/_._",
  5912. "lib/xamarintvos10/_._",
  5913. "lib/xamarinwatchos10/_._",
  5914. "ref/MonoAndroid10/_._",
  5915. "ref/MonoTouch10/_._",
  5916. "ref/net45/_._",
  5917. "ref/netcore50/System.Diagnostics.Debug.dll",
  5918. "ref/netcore50/System.Diagnostics.Debug.xml",
  5919. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5920. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5921. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5922. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5923. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5924. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5925. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5926. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5927. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5928. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5929. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5930. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5931. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5932. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5933. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5934. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5935. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5936. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5937. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5938. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5939. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5940. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5941. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5942. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5943. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5944. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5945. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5946. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5947. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5948. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5949. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5950. "ref/portable-net45+win8+wp8+wpa81/_._",
  5951. "ref/win8/_._",
  5952. "ref/wp80/_._",
  5953. "ref/wpa81/_._",
  5954. "ref/xamarinios10/_._",
  5955. "ref/xamarinmac20/_._",
  5956. "ref/xamarintvos10/_._",
  5957. "ref/xamarinwatchos10/_._",
  5958. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5959. "system.diagnostics.debug.nuspec"
  5960. ]
  5961. },
  5962. "System.Diagnostics.DiagnosticSource/9.0.4": {
  5963. "sha512": "Be0emq8bRmcK4eeJIFUt9+vYPf7kzuQrFs8Ef1CdGvXpq/uSve22PTSkRF09bF/J7wmYJ2DHf2v7GaT3vMXnwQ==",
  5964. "type": "package",
  5965. "path": "system.diagnostics.diagnosticsource/9.0.4",
  5966. "files": [
  5967. ".nupkg.metadata",
  5968. ".signature.p7s",
  5969. "Icon.png",
  5970. "LICENSE.TXT",
  5971. "THIRD-PARTY-NOTICES.TXT",
  5972. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  5973. "buildTransitive/net462/_._",
  5974. "buildTransitive/net8.0/_._",
  5975. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  5976. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  5977. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  5978. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
  5979. "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
  5980. "lib/net9.0/System.Diagnostics.DiagnosticSource.dll",
  5981. "lib/net9.0/System.Diagnostics.DiagnosticSource.xml",
  5982. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  5983. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  5984. "system.diagnostics.diagnosticsource.9.0.4.nupkg.sha512",
  5985. "system.diagnostics.diagnosticsource.nuspec",
  5986. "useSharedDesignerContext.txt"
  5987. ]
  5988. },
  5989. "System.Diagnostics.Tools/4.3.0": {
  5990. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5991. "type": "package",
  5992. "path": "system.diagnostics.tools/4.3.0",
  5993. "files": [
  5994. ".nupkg.metadata",
  5995. ".signature.p7s",
  5996. "ThirdPartyNotices.txt",
  5997. "dotnet_library_license.txt",
  5998. "lib/MonoAndroid10/_._",
  5999. "lib/MonoTouch10/_._",
  6000. "lib/net45/_._",
  6001. "lib/portable-net45+win8+wp8+wpa81/_._",
  6002. "lib/win8/_._",
  6003. "lib/wp80/_._",
  6004. "lib/wpa81/_._",
  6005. "lib/xamarinios10/_._",
  6006. "lib/xamarinmac20/_._",
  6007. "lib/xamarintvos10/_._",
  6008. "lib/xamarinwatchos10/_._",
  6009. "ref/MonoAndroid10/_._",
  6010. "ref/MonoTouch10/_._",
  6011. "ref/net45/_._",
  6012. "ref/netcore50/System.Diagnostics.Tools.dll",
  6013. "ref/netcore50/System.Diagnostics.Tools.xml",
  6014. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6015. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6016. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6017. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6018. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6019. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6020. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6021. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6022. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6023. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6024. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6025. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6026. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6027. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6028. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6029. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6030. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6031. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6032. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6033. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6034. "ref/portable-net45+win8+wp8+wpa81/_._",
  6035. "ref/win8/_._",
  6036. "ref/wp80/_._",
  6037. "ref/wpa81/_._",
  6038. "ref/xamarinios10/_._",
  6039. "ref/xamarinmac20/_._",
  6040. "ref/xamarintvos10/_._",
  6041. "ref/xamarinwatchos10/_._",
  6042. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6043. "system.diagnostics.tools.nuspec"
  6044. ]
  6045. },
  6046. "System.Diagnostics.Tracing/4.3.0": {
  6047. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6048. "type": "package",
  6049. "path": "system.diagnostics.tracing/4.3.0",
  6050. "files": [
  6051. ".nupkg.metadata",
  6052. ".signature.p7s",
  6053. "ThirdPartyNotices.txt",
  6054. "dotnet_library_license.txt",
  6055. "lib/MonoAndroid10/_._",
  6056. "lib/MonoTouch10/_._",
  6057. "lib/net45/_._",
  6058. "lib/net462/System.Diagnostics.Tracing.dll",
  6059. "lib/portable-net45+win8+wpa81/_._",
  6060. "lib/win8/_._",
  6061. "lib/wpa81/_._",
  6062. "lib/xamarinios10/_._",
  6063. "lib/xamarinmac20/_._",
  6064. "lib/xamarintvos10/_._",
  6065. "lib/xamarinwatchos10/_._",
  6066. "ref/MonoAndroid10/_._",
  6067. "ref/MonoTouch10/_._",
  6068. "ref/net45/_._",
  6069. "ref/net462/System.Diagnostics.Tracing.dll",
  6070. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6071. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6072. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6073. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6074. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6075. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6076. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6077. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6078. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6079. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6080. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6081. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6082. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6083. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6084. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6085. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6086. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6087. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6088. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6089. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6090. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6091. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6092. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6093. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6094. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6095. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6096. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6097. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6098. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6099. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6100. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6101. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6102. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6103. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6104. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6105. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6106. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6107. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6108. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6109. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6110. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6111. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6112. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6113. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6114. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6115. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6116. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6117. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6118. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6119. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6120. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6121. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6122. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6123. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6124. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6125. "ref/portable-net45+win8+wpa81/_._",
  6126. "ref/win8/_._",
  6127. "ref/wpa81/_._",
  6128. "ref/xamarinios10/_._",
  6129. "ref/xamarinmac20/_._",
  6130. "ref/xamarintvos10/_._",
  6131. "ref/xamarinwatchos10/_._",
  6132. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6133. "system.diagnostics.tracing.nuspec"
  6134. ]
  6135. },
  6136. "System.Drawing.Common/4.7.0": {
  6137. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  6138. "type": "package",
  6139. "path": "system.drawing.common/4.7.0",
  6140. "files": [
  6141. ".nupkg.metadata",
  6142. ".signature.p7s",
  6143. "LICENSE.TXT",
  6144. "THIRD-PARTY-NOTICES.TXT",
  6145. "lib/MonoAndroid10/_._",
  6146. "lib/MonoTouch10/_._",
  6147. "lib/net461/System.Drawing.Common.dll",
  6148. "lib/netstandard2.0/System.Drawing.Common.dll",
  6149. "lib/xamarinios10/_._",
  6150. "lib/xamarinmac20/_._",
  6151. "lib/xamarintvos10/_._",
  6152. "lib/xamarinwatchos10/_._",
  6153. "ref/MonoAndroid10/_._",
  6154. "ref/MonoTouch10/_._",
  6155. "ref/net461/System.Drawing.Common.dll",
  6156. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6157. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6158. "ref/netstandard2.0/System.Drawing.Common.dll",
  6159. "ref/xamarinios10/_._",
  6160. "ref/xamarinmac20/_._",
  6161. "ref/xamarintvos10/_._",
  6162. "ref/xamarinwatchos10/_._",
  6163. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6164. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6165. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6166. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6167. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6168. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6169. "system.drawing.common.4.7.0.nupkg.sha512",
  6170. "system.drawing.common.nuspec",
  6171. "useSharedDesignerContext.txt",
  6172. "version.txt"
  6173. ]
  6174. },
  6175. "System.Globalization/4.3.0": {
  6176. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6177. "type": "package",
  6178. "path": "system.globalization/4.3.0",
  6179. "files": [
  6180. ".nupkg.metadata",
  6181. ".signature.p7s",
  6182. "ThirdPartyNotices.txt",
  6183. "dotnet_library_license.txt",
  6184. "lib/MonoAndroid10/_._",
  6185. "lib/MonoTouch10/_._",
  6186. "lib/net45/_._",
  6187. "lib/portable-net45+win8+wp8+wpa81/_._",
  6188. "lib/win8/_._",
  6189. "lib/wp80/_._",
  6190. "lib/wpa81/_._",
  6191. "lib/xamarinios10/_._",
  6192. "lib/xamarinmac20/_._",
  6193. "lib/xamarintvos10/_._",
  6194. "lib/xamarinwatchos10/_._",
  6195. "ref/MonoAndroid10/_._",
  6196. "ref/MonoTouch10/_._",
  6197. "ref/net45/_._",
  6198. "ref/netcore50/System.Globalization.dll",
  6199. "ref/netcore50/System.Globalization.xml",
  6200. "ref/netcore50/de/System.Globalization.xml",
  6201. "ref/netcore50/es/System.Globalization.xml",
  6202. "ref/netcore50/fr/System.Globalization.xml",
  6203. "ref/netcore50/it/System.Globalization.xml",
  6204. "ref/netcore50/ja/System.Globalization.xml",
  6205. "ref/netcore50/ko/System.Globalization.xml",
  6206. "ref/netcore50/ru/System.Globalization.xml",
  6207. "ref/netcore50/zh-hans/System.Globalization.xml",
  6208. "ref/netcore50/zh-hant/System.Globalization.xml",
  6209. "ref/netstandard1.0/System.Globalization.dll",
  6210. "ref/netstandard1.0/System.Globalization.xml",
  6211. "ref/netstandard1.0/de/System.Globalization.xml",
  6212. "ref/netstandard1.0/es/System.Globalization.xml",
  6213. "ref/netstandard1.0/fr/System.Globalization.xml",
  6214. "ref/netstandard1.0/it/System.Globalization.xml",
  6215. "ref/netstandard1.0/ja/System.Globalization.xml",
  6216. "ref/netstandard1.0/ko/System.Globalization.xml",
  6217. "ref/netstandard1.0/ru/System.Globalization.xml",
  6218. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6219. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6220. "ref/netstandard1.3/System.Globalization.dll",
  6221. "ref/netstandard1.3/System.Globalization.xml",
  6222. "ref/netstandard1.3/de/System.Globalization.xml",
  6223. "ref/netstandard1.3/es/System.Globalization.xml",
  6224. "ref/netstandard1.3/fr/System.Globalization.xml",
  6225. "ref/netstandard1.3/it/System.Globalization.xml",
  6226. "ref/netstandard1.3/ja/System.Globalization.xml",
  6227. "ref/netstandard1.3/ko/System.Globalization.xml",
  6228. "ref/netstandard1.3/ru/System.Globalization.xml",
  6229. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6230. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6231. "ref/portable-net45+win8+wp8+wpa81/_._",
  6232. "ref/win8/_._",
  6233. "ref/wp80/_._",
  6234. "ref/wpa81/_._",
  6235. "ref/xamarinios10/_._",
  6236. "ref/xamarinmac20/_._",
  6237. "ref/xamarintvos10/_._",
  6238. "ref/xamarinwatchos10/_._",
  6239. "system.globalization.4.3.0.nupkg.sha512",
  6240. "system.globalization.nuspec"
  6241. ]
  6242. },
  6243. "System.Globalization.Calendars/4.3.0": {
  6244. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6245. "type": "package",
  6246. "path": "system.globalization.calendars/4.3.0",
  6247. "files": [
  6248. ".nupkg.metadata",
  6249. ".signature.p7s",
  6250. "ThirdPartyNotices.txt",
  6251. "dotnet_library_license.txt",
  6252. "lib/MonoAndroid10/_._",
  6253. "lib/MonoTouch10/_._",
  6254. "lib/net46/System.Globalization.Calendars.dll",
  6255. "lib/xamarinios10/_._",
  6256. "lib/xamarinmac20/_._",
  6257. "lib/xamarintvos10/_._",
  6258. "lib/xamarinwatchos10/_._",
  6259. "ref/MonoAndroid10/_._",
  6260. "ref/MonoTouch10/_._",
  6261. "ref/net46/System.Globalization.Calendars.dll",
  6262. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6263. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6264. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6265. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6266. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6267. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6268. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6269. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6270. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6271. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6272. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6273. "ref/xamarinios10/_._",
  6274. "ref/xamarinmac20/_._",
  6275. "ref/xamarintvos10/_._",
  6276. "ref/xamarinwatchos10/_._",
  6277. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6278. "system.globalization.calendars.nuspec"
  6279. ]
  6280. },
  6281. "System.Globalization.Extensions/4.3.0": {
  6282. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6283. "type": "package",
  6284. "path": "system.globalization.extensions/4.3.0",
  6285. "files": [
  6286. ".nupkg.metadata",
  6287. ".signature.p7s",
  6288. "ThirdPartyNotices.txt",
  6289. "dotnet_library_license.txt",
  6290. "lib/MonoAndroid10/_._",
  6291. "lib/MonoTouch10/_._",
  6292. "lib/net46/System.Globalization.Extensions.dll",
  6293. "lib/xamarinios10/_._",
  6294. "lib/xamarinmac20/_._",
  6295. "lib/xamarintvos10/_._",
  6296. "lib/xamarinwatchos10/_._",
  6297. "ref/MonoAndroid10/_._",
  6298. "ref/MonoTouch10/_._",
  6299. "ref/net46/System.Globalization.Extensions.dll",
  6300. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6301. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6302. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6303. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6304. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6305. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6306. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6307. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6308. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6309. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6310. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6311. "ref/xamarinios10/_._",
  6312. "ref/xamarinmac20/_._",
  6313. "ref/xamarintvos10/_._",
  6314. "ref/xamarinwatchos10/_._",
  6315. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6316. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6317. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6318. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6319. "system.globalization.extensions.nuspec"
  6320. ]
  6321. },
  6322. "System.IO/4.3.0": {
  6323. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6324. "type": "package",
  6325. "path": "system.io/4.3.0",
  6326. "files": [
  6327. ".nupkg.metadata",
  6328. ".signature.p7s",
  6329. "ThirdPartyNotices.txt",
  6330. "dotnet_library_license.txt",
  6331. "lib/MonoAndroid10/_._",
  6332. "lib/MonoTouch10/_._",
  6333. "lib/net45/_._",
  6334. "lib/net462/System.IO.dll",
  6335. "lib/portable-net45+win8+wp8+wpa81/_._",
  6336. "lib/win8/_._",
  6337. "lib/wp80/_._",
  6338. "lib/wpa81/_._",
  6339. "lib/xamarinios10/_._",
  6340. "lib/xamarinmac20/_._",
  6341. "lib/xamarintvos10/_._",
  6342. "lib/xamarinwatchos10/_._",
  6343. "ref/MonoAndroid10/_._",
  6344. "ref/MonoTouch10/_._",
  6345. "ref/net45/_._",
  6346. "ref/net462/System.IO.dll",
  6347. "ref/netcore50/System.IO.dll",
  6348. "ref/netcore50/System.IO.xml",
  6349. "ref/netcore50/de/System.IO.xml",
  6350. "ref/netcore50/es/System.IO.xml",
  6351. "ref/netcore50/fr/System.IO.xml",
  6352. "ref/netcore50/it/System.IO.xml",
  6353. "ref/netcore50/ja/System.IO.xml",
  6354. "ref/netcore50/ko/System.IO.xml",
  6355. "ref/netcore50/ru/System.IO.xml",
  6356. "ref/netcore50/zh-hans/System.IO.xml",
  6357. "ref/netcore50/zh-hant/System.IO.xml",
  6358. "ref/netstandard1.0/System.IO.dll",
  6359. "ref/netstandard1.0/System.IO.xml",
  6360. "ref/netstandard1.0/de/System.IO.xml",
  6361. "ref/netstandard1.0/es/System.IO.xml",
  6362. "ref/netstandard1.0/fr/System.IO.xml",
  6363. "ref/netstandard1.0/it/System.IO.xml",
  6364. "ref/netstandard1.0/ja/System.IO.xml",
  6365. "ref/netstandard1.0/ko/System.IO.xml",
  6366. "ref/netstandard1.0/ru/System.IO.xml",
  6367. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6368. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6369. "ref/netstandard1.3/System.IO.dll",
  6370. "ref/netstandard1.3/System.IO.xml",
  6371. "ref/netstandard1.3/de/System.IO.xml",
  6372. "ref/netstandard1.3/es/System.IO.xml",
  6373. "ref/netstandard1.3/fr/System.IO.xml",
  6374. "ref/netstandard1.3/it/System.IO.xml",
  6375. "ref/netstandard1.3/ja/System.IO.xml",
  6376. "ref/netstandard1.3/ko/System.IO.xml",
  6377. "ref/netstandard1.3/ru/System.IO.xml",
  6378. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6379. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6380. "ref/netstandard1.5/System.IO.dll",
  6381. "ref/netstandard1.5/System.IO.xml",
  6382. "ref/netstandard1.5/de/System.IO.xml",
  6383. "ref/netstandard1.5/es/System.IO.xml",
  6384. "ref/netstandard1.5/fr/System.IO.xml",
  6385. "ref/netstandard1.5/it/System.IO.xml",
  6386. "ref/netstandard1.5/ja/System.IO.xml",
  6387. "ref/netstandard1.5/ko/System.IO.xml",
  6388. "ref/netstandard1.5/ru/System.IO.xml",
  6389. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6390. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6391. "ref/portable-net45+win8+wp8+wpa81/_._",
  6392. "ref/win8/_._",
  6393. "ref/wp80/_._",
  6394. "ref/wpa81/_._",
  6395. "ref/xamarinios10/_._",
  6396. "ref/xamarinmac20/_._",
  6397. "ref/xamarintvos10/_._",
  6398. "ref/xamarinwatchos10/_._",
  6399. "system.io.4.3.0.nupkg.sha512",
  6400. "system.io.nuspec"
  6401. ]
  6402. },
  6403. "System.IO.Compression/4.3.0": {
  6404. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6405. "type": "package",
  6406. "path": "system.io.compression/4.3.0",
  6407. "files": [
  6408. ".nupkg.metadata",
  6409. ".signature.p7s",
  6410. "ThirdPartyNotices.txt",
  6411. "dotnet_library_license.txt",
  6412. "lib/MonoAndroid10/_._",
  6413. "lib/MonoTouch10/_._",
  6414. "lib/net45/_._",
  6415. "lib/net46/System.IO.Compression.dll",
  6416. "lib/portable-net45+win8+wpa81/_._",
  6417. "lib/win8/_._",
  6418. "lib/wpa81/_._",
  6419. "lib/xamarinios10/_._",
  6420. "lib/xamarinmac20/_._",
  6421. "lib/xamarintvos10/_._",
  6422. "lib/xamarinwatchos10/_._",
  6423. "ref/MonoAndroid10/_._",
  6424. "ref/MonoTouch10/_._",
  6425. "ref/net45/_._",
  6426. "ref/net46/System.IO.Compression.dll",
  6427. "ref/netcore50/System.IO.Compression.dll",
  6428. "ref/netcore50/System.IO.Compression.xml",
  6429. "ref/netcore50/de/System.IO.Compression.xml",
  6430. "ref/netcore50/es/System.IO.Compression.xml",
  6431. "ref/netcore50/fr/System.IO.Compression.xml",
  6432. "ref/netcore50/it/System.IO.Compression.xml",
  6433. "ref/netcore50/ja/System.IO.Compression.xml",
  6434. "ref/netcore50/ko/System.IO.Compression.xml",
  6435. "ref/netcore50/ru/System.IO.Compression.xml",
  6436. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6437. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6438. "ref/netstandard1.1/System.IO.Compression.dll",
  6439. "ref/netstandard1.1/System.IO.Compression.xml",
  6440. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6441. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6442. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6443. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6444. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6445. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6446. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6447. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6448. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6449. "ref/netstandard1.3/System.IO.Compression.dll",
  6450. "ref/netstandard1.3/System.IO.Compression.xml",
  6451. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6452. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6453. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6454. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6455. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6456. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6457. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6458. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6459. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6460. "ref/portable-net45+win8+wpa81/_._",
  6461. "ref/win8/_._",
  6462. "ref/wpa81/_._",
  6463. "ref/xamarinios10/_._",
  6464. "ref/xamarinmac20/_._",
  6465. "ref/xamarintvos10/_._",
  6466. "ref/xamarinwatchos10/_._",
  6467. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6468. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6469. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6470. "system.io.compression.4.3.0.nupkg.sha512",
  6471. "system.io.compression.nuspec"
  6472. ]
  6473. },
  6474. "System.IO.Compression.ZipFile/4.3.0": {
  6475. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6476. "type": "package",
  6477. "path": "system.io.compression.zipfile/4.3.0",
  6478. "files": [
  6479. ".nupkg.metadata",
  6480. ".signature.p7s",
  6481. "ThirdPartyNotices.txt",
  6482. "dotnet_library_license.txt",
  6483. "lib/MonoAndroid10/_._",
  6484. "lib/MonoTouch10/_._",
  6485. "lib/net46/System.IO.Compression.ZipFile.dll",
  6486. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6487. "lib/xamarinios10/_._",
  6488. "lib/xamarinmac20/_._",
  6489. "lib/xamarintvos10/_._",
  6490. "lib/xamarinwatchos10/_._",
  6491. "ref/MonoAndroid10/_._",
  6492. "ref/MonoTouch10/_._",
  6493. "ref/net46/System.IO.Compression.ZipFile.dll",
  6494. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6495. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6496. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6497. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6498. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6499. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6500. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6501. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6502. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6503. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6504. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6505. "ref/xamarinios10/_._",
  6506. "ref/xamarinmac20/_._",
  6507. "ref/xamarintvos10/_._",
  6508. "ref/xamarinwatchos10/_._",
  6509. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6510. "system.io.compression.zipfile.nuspec"
  6511. ]
  6512. },
  6513. "System.IO.FileSystem/4.3.0": {
  6514. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6515. "type": "package",
  6516. "path": "system.io.filesystem/4.3.0",
  6517. "files": [
  6518. ".nupkg.metadata",
  6519. ".signature.p7s",
  6520. "ThirdPartyNotices.txt",
  6521. "dotnet_library_license.txt",
  6522. "lib/MonoAndroid10/_._",
  6523. "lib/MonoTouch10/_._",
  6524. "lib/net46/System.IO.FileSystem.dll",
  6525. "lib/xamarinios10/_._",
  6526. "lib/xamarinmac20/_._",
  6527. "lib/xamarintvos10/_._",
  6528. "lib/xamarinwatchos10/_._",
  6529. "ref/MonoAndroid10/_._",
  6530. "ref/MonoTouch10/_._",
  6531. "ref/net46/System.IO.FileSystem.dll",
  6532. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6533. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6534. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6535. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6536. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6537. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6538. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6539. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6540. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6541. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6542. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6543. "ref/xamarinios10/_._",
  6544. "ref/xamarinmac20/_._",
  6545. "ref/xamarintvos10/_._",
  6546. "ref/xamarinwatchos10/_._",
  6547. "system.io.filesystem.4.3.0.nupkg.sha512",
  6548. "system.io.filesystem.nuspec"
  6549. ]
  6550. },
  6551. "System.IO.FileSystem.Primitives/4.3.0": {
  6552. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6553. "type": "package",
  6554. "path": "system.io.filesystem.primitives/4.3.0",
  6555. "files": [
  6556. ".nupkg.metadata",
  6557. ".signature.p7s",
  6558. "ThirdPartyNotices.txt",
  6559. "dotnet_library_license.txt",
  6560. "lib/MonoAndroid10/_._",
  6561. "lib/MonoTouch10/_._",
  6562. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6563. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6564. "lib/xamarinios10/_._",
  6565. "lib/xamarinmac20/_._",
  6566. "lib/xamarintvos10/_._",
  6567. "lib/xamarinwatchos10/_._",
  6568. "ref/MonoAndroid10/_._",
  6569. "ref/MonoTouch10/_._",
  6570. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6571. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6572. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6573. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6574. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6575. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6576. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6577. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6578. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6579. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6580. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6581. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6582. "ref/xamarinios10/_._",
  6583. "ref/xamarinmac20/_._",
  6584. "ref/xamarintvos10/_._",
  6585. "ref/xamarinwatchos10/_._",
  6586. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6587. "system.io.filesystem.primitives.nuspec"
  6588. ]
  6589. },
  6590. "System.IO.Hashing/9.0.4": {
  6591. "sha512": "WogPvgAFqQORFD8Iyha6RZ+/1QB3dsWRWxbwi8/HHVgiGQ8z0oMWpwe8Kk3Ti+Roe+P6a3sBg+WwBfEsyziZKg==",
  6592. "type": "package",
  6593. "path": "system.io.hashing/9.0.4",
  6594. "files": [
  6595. ".nupkg.metadata",
  6596. ".signature.p7s",
  6597. "Icon.png",
  6598. "LICENSE.TXT",
  6599. "PACKAGE.md",
  6600. "THIRD-PARTY-NOTICES.TXT",
  6601. "buildTransitive/net461/System.IO.Hashing.targets",
  6602. "buildTransitive/net462/_._",
  6603. "buildTransitive/net8.0/_._",
  6604. "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets",
  6605. "lib/net462/System.IO.Hashing.dll",
  6606. "lib/net462/System.IO.Hashing.xml",
  6607. "lib/net8.0/System.IO.Hashing.dll",
  6608. "lib/net8.0/System.IO.Hashing.xml",
  6609. "lib/net9.0/System.IO.Hashing.dll",
  6610. "lib/net9.0/System.IO.Hashing.xml",
  6611. "lib/netstandard2.0/System.IO.Hashing.dll",
  6612. "lib/netstandard2.0/System.IO.Hashing.xml",
  6613. "system.io.hashing.9.0.4.nupkg.sha512",
  6614. "system.io.hashing.nuspec",
  6615. "useSharedDesignerContext.txt"
  6616. ]
  6617. },
  6618. "System.IO.Pipelines/9.0.1": {
  6619. "sha512": "uXf5o8eV/gtzDQY4lGROLFMWQvcViKcF8o4Q6KpIOjloAQXrnscQSu6gTxYJMHuNJnh7szIF9AzkaEq+zDLoEg==",
  6620. "type": "package",
  6621. "path": "system.io.pipelines/9.0.1",
  6622. "files": [
  6623. ".nupkg.metadata",
  6624. ".signature.p7s",
  6625. "Icon.png",
  6626. "LICENSE.TXT",
  6627. "PACKAGE.md",
  6628. "THIRD-PARTY-NOTICES.TXT",
  6629. "buildTransitive/net461/System.IO.Pipelines.targets",
  6630. "buildTransitive/net462/_._",
  6631. "buildTransitive/net8.0/_._",
  6632. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  6633. "lib/net462/System.IO.Pipelines.dll",
  6634. "lib/net462/System.IO.Pipelines.xml",
  6635. "lib/net8.0/System.IO.Pipelines.dll",
  6636. "lib/net8.0/System.IO.Pipelines.xml",
  6637. "lib/net9.0/System.IO.Pipelines.dll",
  6638. "lib/net9.0/System.IO.Pipelines.xml",
  6639. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6640. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6641. "system.io.pipelines.9.0.1.nupkg.sha512",
  6642. "system.io.pipelines.nuspec",
  6643. "useSharedDesignerContext.txt"
  6644. ]
  6645. },
  6646. "System.Linq/4.3.0": {
  6647. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6648. "type": "package",
  6649. "path": "system.linq/4.3.0",
  6650. "files": [
  6651. ".nupkg.metadata",
  6652. ".signature.p7s",
  6653. "ThirdPartyNotices.txt",
  6654. "dotnet_library_license.txt",
  6655. "lib/MonoAndroid10/_._",
  6656. "lib/MonoTouch10/_._",
  6657. "lib/net45/_._",
  6658. "lib/net463/System.Linq.dll",
  6659. "lib/netcore50/System.Linq.dll",
  6660. "lib/netstandard1.6/System.Linq.dll",
  6661. "lib/portable-net45+win8+wp8+wpa81/_._",
  6662. "lib/win8/_._",
  6663. "lib/wp80/_._",
  6664. "lib/wpa81/_._",
  6665. "lib/xamarinios10/_._",
  6666. "lib/xamarinmac20/_._",
  6667. "lib/xamarintvos10/_._",
  6668. "lib/xamarinwatchos10/_._",
  6669. "ref/MonoAndroid10/_._",
  6670. "ref/MonoTouch10/_._",
  6671. "ref/net45/_._",
  6672. "ref/net463/System.Linq.dll",
  6673. "ref/netcore50/System.Linq.dll",
  6674. "ref/netcore50/System.Linq.xml",
  6675. "ref/netcore50/de/System.Linq.xml",
  6676. "ref/netcore50/es/System.Linq.xml",
  6677. "ref/netcore50/fr/System.Linq.xml",
  6678. "ref/netcore50/it/System.Linq.xml",
  6679. "ref/netcore50/ja/System.Linq.xml",
  6680. "ref/netcore50/ko/System.Linq.xml",
  6681. "ref/netcore50/ru/System.Linq.xml",
  6682. "ref/netcore50/zh-hans/System.Linq.xml",
  6683. "ref/netcore50/zh-hant/System.Linq.xml",
  6684. "ref/netstandard1.0/System.Linq.dll",
  6685. "ref/netstandard1.0/System.Linq.xml",
  6686. "ref/netstandard1.0/de/System.Linq.xml",
  6687. "ref/netstandard1.0/es/System.Linq.xml",
  6688. "ref/netstandard1.0/fr/System.Linq.xml",
  6689. "ref/netstandard1.0/it/System.Linq.xml",
  6690. "ref/netstandard1.0/ja/System.Linq.xml",
  6691. "ref/netstandard1.0/ko/System.Linq.xml",
  6692. "ref/netstandard1.0/ru/System.Linq.xml",
  6693. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6694. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6695. "ref/netstandard1.6/System.Linq.dll",
  6696. "ref/netstandard1.6/System.Linq.xml",
  6697. "ref/netstandard1.6/de/System.Linq.xml",
  6698. "ref/netstandard1.6/es/System.Linq.xml",
  6699. "ref/netstandard1.6/fr/System.Linq.xml",
  6700. "ref/netstandard1.6/it/System.Linq.xml",
  6701. "ref/netstandard1.6/ja/System.Linq.xml",
  6702. "ref/netstandard1.6/ko/System.Linq.xml",
  6703. "ref/netstandard1.6/ru/System.Linq.xml",
  6704. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6705. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6706. "ref/portable-net45+win8+wp8+wpa81/_._",
  6707. "ref/win8/_._",
  6708. "ref/wp80/_._",
  6709. "ref/wpa81/_._",
  6710. "ref/xamarinios10/_._",
  6711. "ref/xamarinmac20/_._",
  6712. "ref/xamarintvos10/_._",
  6713. "ref/xamarinwatchos10/_._",
  6714. "system.linq.4.3.0.nupkg.sha512",
  6715. "system.linq.nuspec"
  6716. ]
  6717. },
  6718. "System.Linq.Expressions/4.3.0": {
  6719. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6720. "type": "package",
  6721. "path": "system.linq.expressions/4.3.0",
  6722. "files": [
  6723. ".nupkg.metadata",
  6724. ".signature.p7s",
  6725. "ThirdPartyNotices.txt",
  6726. "dotnet_library_license.txt",
  6727. "lib/MonoAndroid10/_._",
  6728. "lib/MonoTouch10/_._",
  6729. "lib/net45/_._",
  6730. "lib/net463/System.Linq.Expressions.dll",
  6731. "lib/netcore50/System.Linq.Expressions.dll",
  6732. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6733. "lib/portable-net45+win8+wp8+wpa81/_._",
  6734. "lib/win8/_._",
  6735. "lib/wp80/_._",
  6736. "lib/wpa81/_._",
  6737. "lib/xamarinios10/_._",
  6738. "lib/xamarinmac20/_._",
  6739. "lib/xamarintvos10/_._",
  6740. "lib/xamarinwatchos10/_._",
  6741. "ref/MonoAndroid10/_._",
  6742. "ref/MonoTouch10/_._",
  6743. "ref/net45/_._",
  6744. "ref/net463/System.Linq.Expressions.dll",
  6745. "ref/netcore50/System.Linq.Expressions.dll",
  6746. "ref/netcore50/System.Linq.Expressions.xml",
  6747. "ref/netcore50/de/System.Linq.Expressions.xml",
  6748. "ref/netcore50/es/System.Linq.Expressions.xml",
  6749. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6750. "ref/netcore50/it/System.Linq.Expressions.xml",
  6751. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6752. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6753. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6754. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6755. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6756. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6757. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6758. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6759. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6760. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6761. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6762. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6763. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6764. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6765. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6766. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6767. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6768. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6769. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6770. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6771. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6772. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6773. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6774. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6775. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6776. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6777. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6778. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6779. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6780. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6781. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6782. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6783. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6784. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6785. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6786. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6787. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6788. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6789. "ref/portable-net45+win8+wp8+wpa81/_._",
  6790. "ref/win8/_._",
  6791. "ref/wp80/_._",
  6792. "ref/wpa81/_._",
  6793. "ref/xamarinios10/_._",
  6794. "ref/xamarinmac20/_._",
  6795. "ref/xamarintvos10/_._",
  6796. "ref/xamarinwatchos10/_._",
  6797. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6798. "system.linq.expressions.4.3.0.nupkg.sha512",
  6799. "system.linq.expressions.nuspec"
  6800. ]
  6801. },
  6802. "System.Memory/4.5.5": {
  6803. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6804. "type": "package",
  6805. "path": "system.memory/4.5.5",
  6806. "files": [
  6807. ".nupkg.metadata",
  6808. ".signature.p7s",
  6809. "LICENSE.TXT",
  6810. "THIRD-PARTY-NOTICES.TXT",
  6811. "lib/net461/System.Memory.dll",
  6812. "lib/net461/System.Memory.xml",
  6813. "lib/netcoreapp2.1/_._",
  6814. "lib/netstandard1.1/System.Memory.dll",
  6815. "lib/netstandard1.1/System.Memory.xml",
  6816. "lib/netstandard2.0/System.Memory.dll",
  6817. "lib/netstandard2.0/System.Memory.xml",
  6818. "ref/netcoreapp2.1/_._",
  6819. "system.memory.4.5.5.nupkg.sha512",
  6820. "system.memory.nuspec",
  6821. "useSharedDesignerContext.txt",
  6822. "version.txt"
  6823. ]
  6824. },
  6825. "System.Net.Http/4.3.4": {
  6826. "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
  6827. "type": "package",
  6828. "path": "system.net.http/4.3.4",
  6829. "files": [
  6830. ".nupkg.metadata",
  6831. ".signature.p7s",
  6832. "ThirdPartyNotices.txt",
  6833. "dotnet_library_license.txt",
  6834. "lib/Xamarinmac20/_._",
  6835. "lib/monoandroid10/_._",
  6836. "lib/monotouch10/_._",
  6837. "lib/net45/_._",
  6838. "lib/net46/System.Net.Http.dll",
  6839. "lib/portable-net45+win8+wpa81/_._",
  6840. "lib/win8/_._",
  6841. "lib/wpa81/_._",
  6842. "lib/xamarinios10/_._",
  6843. "lib/xamarintvos10/_._",
  6844. "lib/xamarinwatchos10/_._",
  6845. "ref/Xamarinmac20/_._",
  6846. "ref/monoandroid10/_._",
  6847. "ref/monotouch10/_._",
  6848. "ref/net45/_._",
  6849. "ref/net46/System.Net.Http.dll",
  6850. "ref/netcore50/System.Net.Http.dll",
  6851. "ref/netstandard1.1/System.Net.Http.dll",
  6852. "ref/netstandard1.3/System.Net.Http.dll",
  6853. "ref/portable-net45+win8+wpa81/_._",
  6854. "ref/win8/_._",
  6855. "ref/wpa81/_._",
  6856. "ref/xamarinios10/_._",
  6857. "ref/xamarintvos10/_._",
  6858. "ref/xamarinwatchos10/_._",
  6859. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6860. "runtimes/win/lib/net46/System.Net.Http.dll",
  6861. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6862. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6863. "system.net.http.4.3.4.nupkg.sha512",
  6864. "system.net.http.nuspec"
  6865. ]
  6866. },
  6867. "System.Net.NameResolution/4.3.0": {
  6868. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6869. "type": "package",
  6870. "path": "system.net.nameresolution/4.3.0",
  6871. "files": [
  6872. ".nupkg.metadata",
  6873. ".signature.p7s",
  6874. "ThirdPartyNotices.txt",
  6875. "dotnet_library_license.txt",
  6876. "lib/MonoAndroid10/_._",
  6877. "lib/MonoTouch10/_._",
  6878. "lib/net46/System.Net.NameResolution.dll",
  6879. "lib/xamarinios10/_._",
  6880. "lib/xamarinmac20/_._",
  6881. "lib/xamarintvos10/_._",
  6882. "lib/xamarinwatchos10/_._",
  6883. "ref/MonoAndroid10/_._",
  6884. "ref/MonoTouch10/_._",
  6885. "ref/net46/System.Net.NameResolution.dll",
  6886. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6887. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6888. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6889. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6890. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6891. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6892. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6893. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6894. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6895. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6896. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6897. "ref/xamarinios10/_._",
  6898. "ref/xamarinmac20/_._",
  6899. "ref/xamarintvos10/_._",
  6900. "ref/xamarinwatchos10/_._",
  6901. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6902. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6903. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6904. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6905. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6906. "system.net.nameresolution.nuspec"
  6907. ]
  6908. },
  6909. "System.Net.Primitives/4.3.1": {
  6910. "sha512": "OHzPhSme78BbmLe9UBxHM69ZYjClS5URuhce6Ta4ikiLgaUGiG/X84fZpI6zy7CsUH5R9cYzI2tv9dWPqdTkUg==",
  6911. "type": "package",
  6912. "path": "system.net.primitives/4.3.1",
  6913. "files": [
  6914. ".nupkg.metadata",
  6915. ".signature.p7s",
  6916. "ThirdPartyNotices.txt",
  6917. "dotnet_library_license.txt",
  6918. "lib/MonoAndroid10/_._",
  6919. "lib/MonoTouch10/_._",
  6920. "lib/net45/_._",
  6921. "lib/portable-net45+win8+wp8+wpa81/_._",
  6922. "lib/win8/_._",
  6923. "lib/wp80/_._",
  6924. "lib/wpa81/_._",
  6925. "lib/xamarinios10/_._",
  6926. "lib/xamarinmac20/_._",
  6927. "lib/xamarintvos10/_._",
  6928. "lib/xamarinwatchos10/_._",
  6929. "ref/MonoAndroid10/_._",
  6930. "ref/MonoTouch10/_._",
  6931. "ref/net45/_._",
  6932. "ref/netcore50/System.Net.Primitives.dll",
  6933. "ref/netcore50/System.Net.Primitives.xml",
  6934. "ref/netcore50/de/System.Net.Primitives.xml",
  6935. "ref/netcore50/es/System.Net.Primitives.xml",
  6936. "ref/netcore50/fr/System.Net.Primitives.xml",
  6937. "ref/netcore50/it/System.Net.Primitives.xml",
  6938. "ref/netcore50/ja/System.Net.Primitives.xml",
  6939. "ref/netcore50/ko/System.Net.Primitives.xml",
  6940. "ref/netcore50/ru/System.Net.Primitives.xml",
  6941. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6942. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6943. "ref/netstandard1.0/System.Net.Primitives.dll",
  6944. "ref/netstandard1.0/System.Net.Primitives.xml",
  6945. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6946. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6947. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6948. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6949. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6950. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6951. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6952. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6953. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6954. "ref/netstandard1.1/System.Net.Primitives.dll",
  6955. "ref/netstandard1.1/System.Net.Primitives.xml",
  6956. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6957. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6958. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6959. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6960. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6961. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6962. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6963. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6964. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6965. "ref/netstandard1.3/System.Net.Primitives.dll",
  6966. "ref/netstandard1.3/System.Net.Primitives.xml",
  6967. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6968. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6969. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6970. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6971. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6972. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6973. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6974. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6975. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6976. "ref/portable-net45+win8+wp8+wpa81/_._",
  6977. "ref/win8/_._",
  6978. "ref/wp80/_._",
  6979. "ref/wpa81/_._",
  6980. "ref/xamarinios10/_._",
  6981. "ref/xamarinmac20/_._",
  6982. "ref/xamarintvos10/_._",
  6983. "ref/xamarinwatchos10/_._",
  6984. "system.net.primitives.4.3.1.nupkg.sha512",
  6985. "system.net.primitives.nuspec"
  6986. ]
  6987. },
  6988. "System.Net.Security/4.3.0": {
  6989. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6990. "type": "package",
  6991. "path": "system.net.security/4.3.0",
  6992. "files": [
  6993. ".nupkg.metadata",
  6994. ".signature.p7s",
  6995. "ThirdPartyNotices.txt",
  6996. "dotnet_library_license.txt",
  6997. "lib/MonoAndroid10/_._",
  6998. "lib/MonoTouch10/_._",
  6999. "lib/net46/System.Net.Security.dll",
  7000. "lib/xamarinios10/_._",
  7001. "lib/xamarinmac20/_._",
  7002. "lib/xamarintvos10/_._",
  7003. "lib/xamarinwatchos10/_._",
  7004. "ref/MonoAndroid10/_._",
  7005. "ref/MonoTouch10/_._",
  7006. "ref/net46/System.Net.Security.dll",
  7007. "ref/netstandard1.3/System.Net.Security.dll",
  7008. "ref/netstandard1.3/System.Net.Security.xml",
  7009. "ref/netstandard1.3/de/System.Net.Security.xml",
  7010. "ref/netstandard1.3/es/System.Net.Security.xml",
  7011. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7012. "ref/netstandard1.3/it/System.Net.Security.xml",
  7013. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7014. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7015. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7016. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7017. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7018. "ref/xamarinios10/_._",
  7019. "ref/xamarinmac20/_._",
  7020. "ref/xamarintvos10/_._",
  7021. "ref/xamarinwatchos10/_._",
  7022. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7023. "runtimes/win/lib/net46/System.Net.Security.dll",
  7024. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7025. "runtimes/win7/lib/netcore50/_._",
  7026. "system.net.security.4.3.0.nupkg.sha512",
  7027. "system.net.security.nuspec"
  7028. ]
  7029. },
  7030. "System.Net.Sockets/4.3.0": {
  7031. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7032. "type": "package",
  7033. "path": "system.net.sockets/4.3.0",
  7034. "files": [
  7035. ".nupkg.metadata",
  7036. ".signature.p7s",
  7037. "ThirdPartyNotices.txt",
  7038. "dotnet_library_license.txt",
  7039. "lib/MonoAndroid10/_._",
  7040. "lib/MonoTouch10/_._",
  7041. "lib/net46/System.Net.Sockets.dll",
  7042. "lib/xamarinios10/_._",
  7043. "lib/xamarinmac20/_._",
  7044. "lib/xamarintvos10/_._",
  7045. "lib/xamarinwatchos10/_._",
  7046. "ref/MonoAndroid10/_._",
  7047. "ref/MonoTouch10/_._",
  7048. "ref/net46/System.Net.Sockets.dll",
  7049. "ref/netstandard1.3/System.Net.Sockets.dll",
  7050. "ref/netstandard1.3/System.Net.Sockets.xml",
  7051. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7052. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7053. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7054. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7055. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7056. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7057. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7058. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7059. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7060. "ref/xamarinios10/_._",
  7061. "ref/xamarinmac20/_._",
  7062. "ref/xamarintvos10/_._",
  7063. "ref/xamarinwatchos10/_._",
  7064. "system.net.sockets.4.3.0.nupkg.sha512",
  7065. "system.net.sockets.nuspec"
  7066. ]
  7067. },
  7068. "System.ObjectModel/4.3.0": {
  7069. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7070. "type": "package",
  7071. "path": "system.objectmodel/4.3.0",
  7072. "files": [
  7073. ".nupkg.metadata",
  7074. ".signature.p7s",
  7075. "ThirdPartyNotices.txt",
  7076. "dotnet_library_license.txt",
  7077. "lib/MonoAndroid10/_._",
  7078. "lib/MonoTouch10/_._",
  7079. "lib/net45/_._",
  7080. "lib/netcore50/System.ObjectModel.dll",
  7081. "lib/netstandard1.3/System.ObjectModel.dll",
  7082. "lib/portable-net45+win8+wp8+wpa81/_._",
  7083. "lib/win8/_._",
  7084. "lib/wp80/_._",
  7085. "lib/wpa81/_._",
  7086. "lib/xamarinios10/_._",
  7087. "lib/xamarinmac20/_._",
  7088. "lib/xamarintvos10/_._",
  7089. "lib/xamarinwatchos10/_._",
  7090. "ref/MonoAndroid10/_._",
  7091. "ref/MonoTouch10/_._",
  7092. "ref/net45/_._",
  7093. "ref/netcore50/System.ObjectModel.dll",
  7094. "ref/netcore50/System.ObjectModel.xml",
  7095. "ref/netcore50/de/System.ObjectModel.xml",
  7096. "ref/netcore50/es/System.ObjectModel.xml",
  7097. "ref/netcore50/fr/System.ObjectModel.xml",
  7098. "ref/netcore50/it/System.ObjectModel.xml",
  7099. "ref/netcore50/ja/System.ObjectModel.xml",
  7100. "ref/netcore50/ko/System.ObjectModel.xml",
  7101. "ref/netcore50/ru/System.ObjectModel.xml",
  7102. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7103. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7104. "ref/netstandard1.0/System.ObjectModel.dll",
  7105. "ref/netstandard1.0/System.ObjectModel.xml",
  7106. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7107. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7108. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7109. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7110. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7111. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7112. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7113. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7114. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7115. "ref/netstandard1.3/System.ObjectModel.dll",
  7116. "ref/netstandard1.3/System.ObjectModel.xml",
  7117. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7118. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7119. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7120. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7121. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7122. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7123. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7124. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7125. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7126. "ref/portable-net45+win8+wp8+wpa81/_._",
  7127. "ref/win8/_._",
  7128. "ref/wp80/_._",
  7129. "ref/wpa81/_._",
  7130. "ref/xamarinios10/_._",
  7131. "ref/xamarinmac20/_._",
  7132. "ref/xamarintvos10/_._",
  7133. "ref/xamarinwatchos10/_._",
  7134. "system.objectmodel.4.3.0.nupkg.sha512",
  7135. "system.objectmodel.nuspec"
  7136. ]
  7137. },
  7138. "System.Reactive/6.0.1": {
  7139. "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
  7140. "type": "package",
  7141. "path": "system.reactive/6.0.1",
  7142. "files": [
  7143. ".nupkg.metadata",
  7144. ".signature.p7s",
  7145. "build/net6.0-windows10.0.19041/_._",
  7146. "build/net6.0/_._",
  7147. "buildTransitive/net6.0-windows10.0.19041/_._",
  7148. "buildTransitive/net6.0/_._",
  7149. "icon.png",
  7150. "lib/net472/System.Reactive.dll",
  7151. "lib/net472/System.Reactive.xml",
  7152. "lib/net6.0-windows10.0.19041/System.Reactive.dll",
  7153. "lib/net6.0-windows10.0.19041/System.Reactive.xml",
  7154. "lib/net6.0/System.Reactive.dll",
  7155. "lib/net6.0/System.Reactive.xml",
  7156. "lib/netstandard2.0/System.Reactive.dll",
  7157. "lib/netstandard2.0/System.Reactive.xml",
  7158. "lib/uap10.0.18362/System.Reactive.dll",
  7159. "lib/uap10.0.18362/System.Reactive.pri",
  7160. "lib/uap10.0.18362/System.Reactive.xml",
  7161. "readme.md",
  7162. "system.reactive.6.0.1.nupkg.sha512",
  7163. "system.reactive.nuspec"
  7164. ]
  7165. },
  7166. "System.Reflection/4.3.0": {
  7167. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7168. "type": "package",
  7169. "path": "system.reflection/4.3.0",
  7170. "files": [
  7171. ".nupkg.metadata",
  7172. ".signature.p7s",
  7173. "ThirdPartyNotices.txt",
  7174. "dotnet_library_license.txt",
  7175. "lib/MonoAndroid10/_._",
  7176. "lib/MonoTouch10/_._",
  7177. "lib/net45/_._",
  7178. "lib/net462/System.Reflection.dll",
  7179. "lib/portable-net45+win8+wp8+wpa81/_._",
  7180. "lib/win8/_._",
  7181. "lib/wp80/_._",
  7182. "lib/wpa81/_._",
  7183. "lib/xamarinios10/_._",
  7184. "lib/xamarinmac20/_._",
  7185. "lib/xamarintvos10/_._",
  7186. "lib/xamarinwatchos10/_._",
  7187. "ref/MonoAndroid10/_._",
  7188. "ref/MonoTouch10/_._",
  7189. "ref/net45/_._",
  7190. "ref/net462/System.Reflection.dll",
  7191. "ref/netcore50/System.Reflection.dll",
  7192. "ref/netcore50/System.Reflection.xml",
  7193. "ref/netcore50/de/System.Reflection.xml",
  7194. "ref/netcore50/es/System.Reflection.xml",
  7195. "ref/netcore50/fr/System.Reflection.xml",
  7196. "ref/netcore50/it/System.Reflection.xml",
  7197. "ref/netcore50/ja/System.Reflection.xml",
  7198. "ref/netcore50/ko/System.Reflection.xml",
  7199. "ref/netcore50/ru/System.Reflection.xml",
  7200. "ref/netcore50/zh-hans/System.Reflection.xml",
  7201. "ref/netcore50/zh-hant/System.Reflection.xml",
  7202. "ref/netstandard1.0/System.Reflection.dll",
  7203. "ref/netstandard1.0/System.Reflection.xml",
  7204. "ref/netstandard1.0/de/System.Reflection.xml",
  7205. "ref/netstandard1.0/es/System.Reflection.xml",
  7206. "ref/netstandard1.0/fr/System.Reflection.xml",
  7207. "ref/netstandard1.0/it/System.Reflection.xml",
  7208. "ref/netstandard1.0/ja/System.Reflection.xml",
  7209. "ref/netstandard1.0/ko/System.Reflection.xml",
  7210. "ref/netstandard1.0/ru/System.Reflection.xml",
  7211. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7212. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7213. "ref/netstandard1.3/System.Reflection.dll",
  7214. "ref/netstandard1.3/System.Reflection.xml",
  7215. "ref/netstandard1.3/de/System.Reflection.xml",
  7216. "ref/netstandard1.3/es/System.Reflection.xml",
  7217. "ref/netstandard1.3/fr/System.Reflection.xml",
  7218. "ref/netstandard1.3/it/System.Reflection.xml",
  7219. "ref/netstandard1.3/ja/System.Reflection.xml",
  7220. "ref/netstandard1.3/ko/System.Reflection.xml",
  7221. "ref/netstandard1.3/ru/System.Reflection.xml",
  7222. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7223. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7224. "ref/netstandard1.5/System.Reflection.dll",
  7225. "ref/netstandard1.5/System.Reflection.xml",
  7226. "ref/netstandard1.5/de/System.Reflection.xml",
  7227. "ref/netstandard1.5/es/System.Reflection.xml",
  7228. "ref/netstandard1.5/fr/System.Reflection.xml",
  7229. "ref/netstandard1.5/it/System.Reflection.xml",
  7230. "ref/netstandard1.5/ja/System.Reflection.xml",
  7231. "ref/netstandard1.5/ko/System.Reflection.xml",
  7232. "ref/netstandard1.5/ru/System.Reflection.xml",
  7233. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7234. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7235. "ref/portable-net45+win8+wp8+wpa81/_._",
  7236. "ref/win8/_._",
  7237. "ref/wp80/_._",
  7238. "ref/wpa81/_._",
  7239. "ref/xamarinios10/_._",
  7240. "ref/xamarinmac20/_._",
  7241. "ref/xamarintvos10/_._",
  7242. "ref/xamarinwatchos10/_._",
  7243. "system.reflection.4.3.0.nupkg.sha512",
  7244. "system.reflection.nuspec"
  7245. ]
  7246. },
  7247. "System.Reflection.Emit/4.3.0": {
  7248. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7249. "type": "package",
  7250. "path": "system.reflection.emit/4.3.0",
  7251. "files": [
  7252. ".nupkg.metadata",
  7253. ".signature.p7s",
  7254. "ThirdPartyNotices.txt",
  7255. "dotnet_library_license.txt",
  7256. "lib/MonoAndroid10/_._",
  7257. "lib/monotouch10/_._",
  7258. "lib/net45/_._",
  7259. "lib/netcore50/System.Reflection.Emit.dll",
  7260. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7261. "lib/xamarinios10/_._",
  7262. "lib/xamarinmac20/_._",
  7263. "lib/xamarintvos10/_._",
  7264. "lib/xamarinwatchos10/_._",
  7265. "ref/MonoAndroid10/_._",
  7266. "ref/net45/_._",
  7267. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7268. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7269. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7270. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7271. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7272. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7273. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7274. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7275. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7276. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7277. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7278. "ref/xamarinmac20/_._",
  7279. "system.reflection.emit.4.3.0.nupkg.sha512",
  7280. "system.reflection.emit.nuspec"
  7281. ]
  7282. },
  7283. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7284. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7285. "type": "package",
  7286. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7287. "files": [
  7288. ".nupkg.metadata",
  7289. ".signature.p7s",
  7290. "ThirdPartyNotices.txt",
  7291. "dotnet_library_license.txt",
  7292. "lib/MonoAndroid10/_._",
  7293. "lib/MonoTouch10/_._",
  7294. "lib/net45/_._",
  7295. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7296. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7297. "lib/portable-net45+wp8/_._",
  7298. "lib/wp80/_._",
  7299. "lib/xamarinios10/_._",
  7300. "lib/xamarinmac20/_._",
  7301. "lib/xamarintvos10/_._",
  7302. "lib/xamarinwatchos10/_._",
  7303. "ref/MonoAndroid10/_._",
  7304. "ref/MonoTouch10/_._",
  7305. "ref/net45/_._",
  7306. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7307. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7308. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7309. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7310. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7311. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7312. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7313. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7314. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7315. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7316. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7317. "ref/portable-net45+wp8/_._",
  7318. "ref/wp80/_._",
  7319. "ref/xamarinios10/_._",
  7320. "ref/xamarinmac20/_._",
  7321. "ref/xamarintvos10/_._",
  7322. "ref/xamarinwatchos10/_._",
  7323. "runtimes/aot/lib/netcore50/_._",
  7324. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7325. "system.reflection.emit.ilgeneration.nuspec"
  7326. ]
  7327. },
  7328. "System.Reflection.Emit.Lightweight/4.3.0": {
  7329. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7330. "type": "package",
  7331. "path": "system.reflection.emit.lightweight/4.3.0",
  7332. "files": [
  7333. ".nupkg.metadata",
  7334. ".signature.p7s",
  7335. "ThirdPartyNotices.txt",
  7336. "dotnet_library_license.txt",
  7337. "lib/MonoAndroid10/_._",
  7338. "lib/MonoTouch10/_._",
  7339. "lib/net45/_._",
  7340. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7341. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7342. "lib/portable-net45+wp8/_._",
  7343. "lib/wp80/_._",
  7344. "lib/xamarinios10/_._",
  7345. "lib/xamarinmac20/_._",
  7346. "lib/xamarintvos10/_._",
  7347. "lib/xamarinwatchos10/_._",
  7348. "ref/MonoAndroid10/_._",
  7349. "ref/MonoTouch10/_._",
  7350. "ref/net45/_._",
  7351. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7352. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7353. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7354. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7355. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7356. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7357. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7358. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7359. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7360. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7361. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7362. "ref/portable-net45+wp8/_._",
  7363. "ref/wp80/_._",
  7364. "ref/xamarinios10/_._",
  7365. "ref/xamarinmac20/_._",
  7366. "ref/xamarintvos10/_._",
  7367. "ref/xamarinwatchos10/_._",
  7368. "runtimes/aot/lib/netcore50/_._",
  7369. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7370. "system.reflection.emit.lightweight.nuspec"
  7371. ]
  7372. },
  7373. "System.Reflection.Extensions/4.3.0": {
  7374. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7375. "type": "package",
  7376. "path": "system.reflection.extensions/4.3.0",
  7377. "files": [
  7378. ".nupkg.metadata",
  7379. ".signature.p7s",
  7380. "ThirdPartyNotices.txt",
  7381. "dotnet_library_license.txt",
  7382. "lib/MonoAndroid10/_._",
  7383. "lib/MonoTouch10/_._",
  7384. "lib/net45/_._",
  7385. "lib/portable-net45+win8+wp8+wpa81/_._",
  7386. "lib/win8/_._",
  7387. "lib/wp80/_._",
  7388. "lib/wpa81/_._",
  7389. "lib/xamarinios10/_._",
  7390. "lib/xamarinmac20/_._",
  7391. "lib/xamarintvos10/_._",
  7392. "lib/xamarinwatchos10/_._",
  7393. "ref/MonoAndroid10/_._",
  7394. "ref/MonoTouch10/_._",
  7395. "ref/net45/_._",
  7396. "ref/netcore50/System.Reflection.Extensions.dll",
  7397. "ref/netcore50/System.Reflection.Extensions.xml",
  7398. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7399. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7400. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7401. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7402. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7403. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7404. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7405. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7406. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7407. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7408. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7409. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7410. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7411. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7412. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7413. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7414. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7415. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7416. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7417. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7418. "ref/portable-net45+win8+wp8+wpa81/_._",
  7419. "ref/win8/_._",
  7420. "ref/wp80/_._",
  7421. "ref/wpa81/_._",
  7422. "ref/xamarinios10/_._",
  7423. "ref/xamarinmac20/_._",
  7424. "ref/xamarintvos10/_._",
  7425. "ref/xamarinwatchos10/_._",
  7426. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7427. "system.reflection.extensions.nuspec"
  7428. ]
  7429. },
  7430. "System.Reflection.Primitives/4.3.0": {
  7431. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7432. "type": "package",
  7433. "path": "system.reflection.primitives/4.3.0",
  7434. "files": [
  7435. ".nupkg.metadata",
  7436. ".signature.p7s",
  7437. "ThirdPartyNotices.txt",
  7438. "dotnet_library_license.txt",
  7439. "lib/MonoAndroid10/_._",
  7440. "lib/MonoTouch10/_._",
  7441. "lib/net45/_._",
  7442. "lib/portable-net45+win8+wp8+wpa81/_._",
  7443. "lib/win8/_._",
  7444. "lib/wp80/_._",
  7445. "lib/wpa81/_._",
  7446. "lib/xamarinios10/_._",
  7447. "lib/xamarinmac20/_._",
  7448. "lib/xamarintvos10/_._",
  7449. "lib/xamarinwatchos10/_._",
  7450. "ref/MonoAndroid10/_._",
  7451. "ref/MonoTouch10/_._",
  7452. "ref/net45/_._",
  7453. "ref/netcore50/System.Reflection.Primitives.dll",
  7454. "ref/netcore50/System.Reflection.Primitives.xml",
  7455. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7456. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7457. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7458. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7459. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7460. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7461. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7462. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7463. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7464. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7465. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7466. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7467. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7468. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7469. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7470. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7471. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7472. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7473. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7474. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7475. "ref/portable-net45+win8+wp8+wpa81/_._",
  7476. "ref/win8/_._",
  7477. "ref/wp80/_._",
  7478. "ref/wpa81/_._",
  7479. "ref/xamarinios10/_._",
  7480. "ref/xamarinmac20/_._",
  7481. "ref/xamarintvos10/_._",
  7482. "ref/xamarinwatchos10/_._",
  7483. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7484. "system.reflection.primitives.nuspec"
  7485. ]
  7486. },
  7487. "System.Reflection.TypeExtensions/4.3.0": {
  7488. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7489. "type": "package",
  7490. "path": "system.reflection.typeextensions/4.3.0",
  7491. "files": [
  7492. ".nupkg.metadata",
  7493. ".signature.p7s",
  7494. "ThirdPartyNotices.txt",
  7495. "dotnet_library_license.txt",
  7496. "lib/MonoAndroid10/_._",
  7497. "lib/MonoTouch10/_._",
  7498. "lib/net46/System.Reflection.TypeExtensions.dll",
  7499. "lib/net462/System.Reflection.TypeExtensions.dll",
  7500. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7501. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7502. "lib/xamarinios10/_._",
  7503. "lib/xamarinmac20/_._",
  7504. "lib/xamarintvos10/_._",
  7505. "lib/xamarinwatchos10/_._",
  7506. "ref/MonoAndroid10/_._",
  7507. "ref/MonoTouch10/_._",
  7508. "ref/net46/System.Reflection.TypeExtensions.dll",
  7509. "ref/net462/System.Reflection.TypeExtensions.dll",
  7510. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7511. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7512. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7513. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7514. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7515. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7516. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7517. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7518. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7519. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7520. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7521. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7522. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7523. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7524. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7525. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7526. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7527. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7528. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7529. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7530. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7531. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7532. "ref/xamarinios10/_._",
  7533. "ref/xamarinmac20/_._",
  7534. "ref/xamarintvos10/_._",
  7535. "ref/xamarinwatchos10/_._",
  7536. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7537. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7538. "system.reflection.typeextensions.nuspec"
  7539. ]
  7540. },
  7541. "System.Resources.ResourceManager/4.3.0": {
  7542. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7543. "type": "package",
  7544. "path": "system.resources.resourcemanager/4.3.0",
  7545. "files": [
  7546. ".nupkg.metadata",
  7547. ".signature.p7s",
  7548. "ThirdPartyNotices.txt",
  7549. "dotnet_library_license.txt",
  7550. "lib/MonoAndroid10/_._",
  7551. "lib/MonoTouch10/_._",
  7552. "lib/net45/_._",
  7553. "lib/portable-net45+win8+wp8+wpa81/_._",
  7554. "lib/win8/_._",
  7555. "lib/wp80/_._",
  7556. "lib/wpa81/_._",
  7557. "lib/xamarinios10/_._",
  7558. "lib/xamarinmac20/_._",
  7559. "lib/xamarintvos10/_._",
  7560. "lib/xamarinwatchos10/_._",
  7561. "ref/MonoAndroid10/_._",
  7562. "ref/MonoTouch10/_._",
  7563. "ref/net45/_._",
  7564. "ref/netcore50/System.Resources.ResourceManager.dll",
  7565. "ref/netcore50/System.Resources.ResourceManager.xml",
  7566. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7567. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7568. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7569. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7570. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7571. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7572. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7573. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7574. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7575. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7576. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7577. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7578. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7579. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7580. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7581. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7582. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7583. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7584. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7585. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7586. "ref/portable-net45+win8+wp8+wpa81/_._",
  7587. "ref/win8/_._",
  7588. "ref/wp80/_._",
  7589. "ref/wpa81/_._",
  7590. "ref/xamarinios10/_._",
  7591. "ref/xamarinmac20/_._",
  7592. "ref/xamarintvos10/_._",
  7593. "ref/xamarinwatchos10/_._",
  7594. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7595. "system.resources.resourcemanager.nuspec"
  7596. ]
  7597. },
  7598. "System.Runtime/4.3.1": {
  7599. "sha512": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
  7600. "type": "package",
  7601. "path": "system.runtime/4.3.1",
  7602. "files": [
  7603. ".nupkg.metadata",
  7604. ".signature.p7s",
  7605. "ThirdPartyNotices.txt",
  7606. "dotnet_library_license.txt",
  7607. "lib/MonoAndroid10/_._",
  7608. "lib/MonoTouch10/_._",
  7609. "lib/net45/_._",
  7610. "lib/net462/System.Runtime.dll",
  7611. "lib/portable-net45+win8+wp80+wpa81/_._",
  7612. "lib/win8/_._",
  7613. "lib/wp80/_._",
  7614. "lib/wpa81/_._",
  7615. "lib/xamarinios10/_._",
  7616. "lib/xamarinmac20/_._",
  7617. "lib/xamarintvos10/_._",
  7618. "lib/xamarinwatchos10/_._",
  7619. "ref/MonoAndroid10/_._",
  7620. "ref/MonoTouch10/_._",
  7621. "ref/net45/_._",
  7622. "ref/net462/System.Runtime.dll",
  7623. "ref/netcore50/System.Runtime.dll",
  7624. "ref/netcore50/System.Runtime.xml",
  7625. "ref/netcore50/de/System.Runtime.xml",
  7626. "ref/netcore50/es/System.Runtime.xml",
  7627. "ref/netcore50/fr/System.Runtime.xml",
  7628. "ref/netcore50/it/System.Runtime.xml",
  7629. "ref/netcore50/ja/System.Runtime.xml",
  7630. "ref/netcore50/ko/System.Runtime.xml",
  7631. "ref/netcore50/ru/System.Runtime.xml",
  7632. "ref/netcore50/zh-hans/System.Runtime.xml",
  7633. "ref/netcore50/zh-hant/System.Runtime.xml",
  7634. "ref/netstandard1.0/System.Runtime.dll",
  7635. "ref/netstandard1.0/System.Runtime.xml",
  7636. "ref/netstandard1.0/de/System.Runtime.xml",
  7637. "ref/netstandard1.0/es/System.Runtime.xml",
  7638. "ref/netstandard1.0/fr/System.Runtime.xml",
  7639. "ref/netstandard1.0/it/System.Runtime.xml",
  7640. "ref/netstandard1.0/ja/System.Runtime.xml",
  7641. "ref/netstandard1.0/ko/System.Runtime.xml",
  7642. "ref/netstandard1.0/ru/System.Runtime.xml",
  7643. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7644. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7645. "ref/netstandard1.2/System.Runtime.dll",
  7646. "ref/netstandard1.2/System.Runtime.xml",
  7647. "ref/netstandard1.2/de/System.Runtime.xml",
  7648. "ref/netstandard1.2/es/System.Runtime.xml",
  7649. "ref/netstandard1.2/fr/System.Runtime.xml",
  7650. "ref/netstandard1.2/it/System.Runtime.xml",
  7651. "ref/netstandard1.2/ja/System.Runtime.xml",
  7652. "ref/netstandard1.2/ko/System.Runtime.xml",
  7653. "ref/netstandard1.2/ru/System.Runtime.xml",
  7654. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7655. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7656. "ref/netstandard1.3/System.Runtime.dll",
  7657. "ref/netstandard1.3/System.Runtime.xml",
  7658. "ref/netstandard1.3/de/System.Runtime.xml",
  7659. "ref/netstandard1.3/es/System.Runtime.xml",
  7660. "ref/netstandard1.3/fr/System.Runtime.xml",
  7661. "ref/netstandard1.3/it/System.Runtime.xml",
  7662. "ref/netstandard1.3/ja/System.Runtime.xml",
  7663. "ref/netstandard1.3/ko/System.Runtime.xml",
  7664. "ref/netstandard1.3/ru/System.Runtime.xml",
  7665. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7666. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7667. "ref/netstandard1.5/System.Runtime.dll",
  7668. "ref/netstandard1.5/System.Runtime.xml",
  7669. "ref/netstandard1.5/de/System.Runtime.xml",
  7670. "ref/netstandard1.5/es/System.Runtime.xml",
  7671. "ref/netstandard1.5/fr/System.Runtime.xml",
  7672. "ref/netstandard1.5/it/System.Runtime.xml",
  7673. "ref/netstandard1.5/ja/System.Runtime.xml",
  7674. "ref/netstandard1.5/ko/System.Runtime.xml",
  7675. "ref/netstandard1.5/ru/System.Runtime.xml",
  7676. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7677. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7678. "ref/portable-net45+win8+wp80+wpa81/_._",
  7679. "ref/win8/_._",
  7680. "ref/wp80/_._",
  7681. "ref/wpa81/_._",
  7682. "ref/xamarinios10/_._",
  7683. "ref/xamarinmac20/_._",
  7684. "ref/xamarintvos10/_._",
  7685. "ref/xamarinwatchos10/_._",
  7686. "system.runtime.4.3.1.nupkg.sha512",
  7687. "system.runtime.nuspec"
  7688. ]
  7689. },
  7690. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7691. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7692. "type": "package",
  7693. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7694. "files": [
  7695. ".nupkg.metadata",
  7696. ".signature.p7s",
  7697. "Icon.png",
  7698. "LICENSE.TXT",
  7699. "THIRD-PARTY-NOTICES.TXT",
  7700. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  7701. "buildTransitive/netcoreapp3.1/_._",
  7702. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7703. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7704. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  7705. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  7706. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  7707. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  7708. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7709. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7710. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  7711. "system.runtime.compilerservices.unsafe.nuspec",
  7712. "useSharedDesignerContext.txt"
  7713. ]
  7714. },
  7715. "System.Runtime.Extensions/4.3.0": {
  7716. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7717. "type": "package",
  7718. "path": "system.runtime.extensions/4.3.0",
  7719. "files": [
  7720. ".nupkg.metadata",
  7721. ".signature.p7s",
  7722. "ThirdPartyNotices.txt",
  7723. "dotnet_library_license.txt",
  7724. "lib/MonoAndroid10/_._",
  7725. "lib/MonoTouch10/_._",
  7726. "lib/net45/_._",
  7727. "lib/net462/System.Runtime.Extensions.dll",
  7728. "lib/portable-net45+win8+wp8+wpa81/_._",
  7729. "lib/win8/_._",
  7730. "lib/wp80/_._",
  7731. "lib/wpa81/_._",
  7732. "lib/xamarinios10/_._",
  7733. "lib/xamarinmac20/_._",
  7734. "lib/xamarintvos10/_._",
  7735. "lib/xamarinwatchos10/_._",
  7736. "ref/MonoAndroid10/_._",
  7737. "ref/MonoTouch10/_._",
  7738. "ref/net45/_._",
  7739. "ref/net462/System.Runtime.Extensions.dll",
  7740. "ref/netcore50/System.Runtime.Extensions.dll",
  7741. "ref/netcore50/System.Runtime.Extensions.xml",
  7742. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7743. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7744. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7745. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7746. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7747. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7748. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7749. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7750. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7751. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7752. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7753. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7754. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7755. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7756. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7757. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7758. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7759. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7760. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7761. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7762. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7763. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7764. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7765. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7766. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7767. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7768. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7769. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7770. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7771. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7772. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7773. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7774. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7775. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7776. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7777. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7778. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7779. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7780. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7781. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7782. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7783. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7784. "ref/portable-net45+win8+wp8+wpa81/_._",
  7785. "ref/win8/_._",
  7786. "ref/wp80/_._",
  7787. "ref/wpa81/_._",
  7788. "ref/xamarinios10/_._",
  7789. "ref/xamarinmac20/_._",
  7790. "ref/xamarintvos10/_._",
  7791. "ref/xamarinwatchos10/_._",
  7792. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7793. "system.runtime.extensions.nuspec"
  7794. ]
  7795. },
  7796. "System.Runtime.Handles/4.3.0": {
  7797. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7798. "type": "package",
  7799. "path": "system.runtime.handles/4.3.0",
  7800. "files": [
  7801. ".nupkg.metadata",
  7802. ".signature.p7s",
  7803. "ThirdPartyNotices.txt",
  7804. "dotnet_library_license.txt",
  7805. "lib/MonoAndroid10/_._",
  7806. "lib/MonoTouch10/_._",
  7807. "lib/net46/_._",
  7808. "lib/xamarinios10/_._",
  7809. "lib/xamarinmac20/_._",
  7810. "lib/xamarintvos10/_._",
  7811. "lib/xamarinwatchos10/_._",
  7812. "ref/MonoAndroid10/_._",
  7813. "ref/MonoTouch10/_._",
  7814. "ref/net46/_._",
  7815. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7816. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7817. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7818. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7819. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7820. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7821. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7822. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7823. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7824. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7825. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7826. "ref/xamarinios10/_._",
  7827. "ref/xamarinmac20/_._",
  7828. "ref/xamarintvos10/_._",
  7829. "ref/xamarinwatchos10/_._",
  7830. "system.runtime.handles.4.3.0.nupkg.sha512",
  7831. "system.runtime.handles.nuspec"
  7832. ]
  7833. },
  7834. "System.Runtime.InteropServices/4.3.0": {
  7835. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7836. "type": "package",
  7837. "path": "system.runtime.interopservices/4.3.0",
  7838. "files": [
  7839. ".nupkg.metadata",
  7840. ".signature.p7s",
  7841. "ThirdPartyNotices.txt",
  7842. "dotnet_library_license.txt",
  7843. "lib/MonoAndroid10/_._",
  7844. "lib/MonoTouch10/_._",
  7845. "lib/net45/_._",
  7846. "lib/net462/System.Runtime.InteropServices.dll",
  7847. "lib/net463/System.Runtime.InteropServices.dll",
  7848. "lib/portable-net45+win8+wpa81/_._",
  7849. "lib/win8/_._",
  7850. "lib/wpa81/_._",
  7851. "lib/xamarinios10/_._",
  7852. "lib/xamarinmac20/_._",
  7853. "lib/xamarintvos10/_._",
  7854. "lib/xamarinwatchos10/_._",
  7855. "ref/MonoAndroid10/_._",
  7856. "ref/MonoTouch10/_._",
  7857. "ref/net45/_._",
  7858. "ref/net462/System.Runtime.InteropServices.dll",
  7859. "ref/net463/System.Runtime.InteropServices.dll",
  7860. "ref/netcore50/System.Runtime.InteropServices.dll",
  7861. "ref/netcore50/System.Runtime.InteropServices.xml",
  7862. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7863. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7864. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7865. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7866. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7867. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7868. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7869. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7870. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7871. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7872. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7873. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7874. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7875. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7876. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7877. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7878. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7879. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7880. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7881. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7882. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7883. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7884. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7885. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7886. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7887. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7888. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7889. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7890. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7891. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7892. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7893. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7894. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7895. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7896. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7897. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7898. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7899. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7900. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7901. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7902. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7903. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7904. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7905. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7906. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7907. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7908. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7909. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7910. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7911. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7912. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7913. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7914. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7915. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7916. "ref/portable-net45+win8+wpa81/_._",
  7917. "ref/win8/_._",
  7918. "ref/wpa81/_._",
  7919. "ref/xamarinios10/_._",
  7920. "ref/xamarinmac20/_._",
  7921. "ref/xamarintvos10/_._",
  7922. "ref/xamarinwatchos10/_._",
  7923. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7924. "system.runtime.interopservices.nuspec"
  7925. ]
  7926. },
  7927. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7928. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7929. "type": "package",
  7930. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7931. "files": [
  7932. ".nupkg.metadata",
  7933. ".signature.p7s",
  7934. "ThirdPartyNotices.txt",
  7935. "dotnet_library_license.txt",
  7936. "lib/MonoAndroid10/_._",
  7937. "lib/MonoTouch10/_._",
  7938. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7939. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7940. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7941. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7942. "lib/xamarinios10/_._",
  7943. "lib/xamarinmac20/_._",
  7944. "lib/xamarintvos10/_._",
  7945. "lib/xamarinwatchos10/_._",
  7946. "ref/MonoAndroid10/_._",
  7947. "ref/MonoTouch10/_._",
  7948. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7949. "ref/xamarinios10/_._",
  7950. "ref/xamarinmac20/_._",
  7951. "ref/xamarintvos10/_._",
  7952. "ref/xamarinwatchos10/_._",
  7953. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7954. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7955. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7956. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7957. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7958. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7959. "system.runtime.interopservices.runtimeinformation.nuspec"
  7960. ]
  7961. },
  7962. "System.Runtime.Numerics/4.3.0": {
  7963. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7964. "type": "package",
  7965. "path": "system.runtime.numerics/4.3.0",
  7966. "files": [
  7967. ".nupkg.metadata",
  7968. ".signature.p7s",
  7969. "ThirdPartyNotices.txt",
  7970. "dotnet_library_license.txt",
  7971. "lib/MonoAndroid10/_._",
  7972. "lib/MonoTouch10/_._",
  7973. "lib/net45/_._",
  7974. "lib/netcore50/System.Runtime.Numerics.dll",
  7975. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7976. "lib/portable-net45+win8+wpa81/_._",
  7977. "lib/win8/_._",
  7978. "lib/wpa81/_._",
  7979. "lib/xamarinios10/_._",
  7980. "lib/xamarinmac20/_._",
  7981. "lib/xamarintvos10/_._",
  7982. "lib/xamarinwatchos10/_._",
  7983. "ref/MonoAndroid10/_._",
  7984. "ref/MonoTouch10/_._",
  7985. "ref/net45/_._",
  7986. "ref/netcore50/System.Runtime.Numerics.dll",
  7987. "ref/netcore50/System.Runtime.Numerics.xml",
  7988. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7989. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7990. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7991. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7992. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7993. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7994. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7995. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7996. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7997. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7998. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7999. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8000. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8001. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8002. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8003. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8004. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8005. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8006. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8007. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8008. "ref/portable-net45+win8+wpa81/_._",
  8009. "ref/win8/_._",
  8010. "ref/wpa81/_._",
  8011. "ref/xamarinios10/_._",
  8012. "ref/xamarinmac20/_._",
  8013. "ref/xamarintvos10/_._",
  8014. "ref/xamarinwatchos10/_._",
  8015. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8016. "system.runtime.numerics.nuspec"
  8017. ]
  8018. },
  8019. "System.Runtime.Serialization.Primitives/4.3.0": {
  8020. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8021. "type": "package",
  8022. "path": "system.runtime.serialization.primitives/4.3.0",
  8023. "files": [
  8024. ".nupkg.metadata",
  8025. ".signature.p7s",
  8026. "ThirdPartyNotices.txt",
  8027. "dotnet_library_license.txt",
  8028. "lib/MonoAndroid10/_._",
  8029. "lib/MonoTouch10/_._",
  8030. "lib/net45/_._",
  8031. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8032. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8033. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8034. "lib/portable-net45+win8+wp8+wpa81/_._",
  8035. "lib/win8/_._",
  8036. "lib/wp80/_._",
  8037. "lib/wpa81/_._",
  8038. "lib/xamarinios10/_._",
  8039. "lib/xamarinmac20/_._",
  8040. "lib/xamarintvos10/_._",
  8041. "lib/xamarinwatchos10/_._",
  8042. "ref/MonoAndroid10/_._",
  8043. "ref/MonoTouch10/_._",
  8044. "ref/net45/_._",
  8045. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8046. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8047. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8048. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8049. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8050. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8051. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8052. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8053. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8054. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8055. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8056. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8057. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8058. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8059. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8060. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8061. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8062. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8063. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8064. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8065. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8066. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8067. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8068. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8069. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8070. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8071. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8072. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8073. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8074. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8075. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8076. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8077. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8078. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8079. "ref/portable-net45+win8+wp8+wpa81/_._",
  8080. "ref/win8/_._",
  8081. "ref/wp80/_._",
  8082. "ref/wpa81/_._",
  8083. "ref/xamarinios10/_._",
  8084. "ref/xamarinmac20/_._",
  8085. "ref/xamarintvos10/_._",
  8086. "ref/xamarinwatchos10/_._",
  8087. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8088. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8089. "system.runtime.serialization.primitives.nuspec"
  8090. ]
  8091. },
  8092. "System.Security.AccessControl/4.7.0": {
  8093. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8094. "type": "package",
  8095. "path": "system.security.accesscontrol/4.7.0",
  8096. "files": [
  8097. ".nupkg.metadata",
  8098. ".signature.p7s",
  8099. "LICENSE.TXT",
  8100. "THIRD-PARTY-NOTICES.TXT",
  8101. "lib/net46/System.Security.AccessControl.dll",
  8102. "lib/net461/System.Security.AccessControl.dll",
  8103. "lib/net461/System.Security.AccessControl.xml",
  8104. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8105. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8106. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8107. "lib/uap10.0.16299/_._",
  8108. "ref/net46/System.Security.AccessControl.dll",
  8109. "ref/net461/System.Security.AccessControl.dll",
  8110. "ref/net461/System.Security.AccessControl.xml",
  8111. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8112. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8113. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8114. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8115. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8116. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8117. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8118. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8119. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8120. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8121. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8122. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8123. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8124. "ref/uap10.0.16299/_._",
  8125. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8126. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8127. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8128. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8129. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8130. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8131. "runtimes/win/lib/uap10.0.16299/_._",
  8132. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8133. "system.security.accesscontrol.nuspec",
  8134. "useSharedDesignerContext.txt",
  8135. "version.txt"
  8136. ]
  8137. },
  8138. "System.Security.Claims/4.3.0": {
  8139. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8140. "type": "package",
  8141. "path": "system.security.claims/4.3.0",
  8142. "files": [
  8143. ".nupkg.metadata",
  8144. ".signature.p7s",
  8145. "ThirdPartyNotices.txt",
  8146. "dotnet_library_license.txt",
  8147. "lib/MonoAndroid10/_._",
  8148. "lib/MonoTouch10/_._",
  8149. "lib/net46/System.Security.Claims.dll",
  8150. "lib/netstandard1.3/System.Security.Claims.dll",
  8151. "lib/xamarinios10/_._",
  8152. "lib/xamarinmac20/_._",
  8153. "lib/xamarintvos10/_._",
  8154. "lib/xamarinwatchos10/_._",
  8155. "ref/MonoAndroid10/_._",
  8156. "ref/MonoTouch10/_._",
  8157. "ref/net46/System.Security.Claims.dll",
  8158. "ref/netstandard1.3/System.Security.Claims.dll",
  8159. "ref/netstandard1.3/System.Security.Claims.xml",
  8160. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8161. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8162. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8163. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8164. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8165. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8166. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8167. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8168. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8169. "ref/xamarinios10/_._",
  8170. "ref/xamarinmac20/_._",
  8171. "ref/xamarintvos10/_._",
  8172. "ref/xamarinwatchos10/_._",
  8173. "system.security.claims.4.3.0.nupkg.sha512",
  8174. "system.security.claims.nuspec"
  8175. ]
  8176. },
  8177. "System.Security.Cryptography.Algorithms/4.3.1": {
  8178. "sha512": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  8179. "type": "package",
  8180. "path": "system.security.cryptography.algorithms/4.3.1",
  8181. "files": [
  8182. ".nupkg.metadata",
  8183. ".signature.p7s",
  8184. "ThirdPartyNotices.txt",
  8185. "dotnet_library_license.txt",
  8186. "lib/MonoAndroid10/_._",
  8187. "lib/MonoTouch10/_._",
  8188. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8189. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8190. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8191. "lib/xamarinios10/_._",
  8192. "lib/xamarinmac20/_._",
  8193. "lib/xamarintvos10/_._",
  8194. "lib/xamarinwatchos10/_._",
  8195. "ref/MonoAndroid10/_._",
  8196. "ref/MonoTouch10/_._",
  8197. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8198. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8199. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8200. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8201. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8202. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8203. "ref/xamarinios10/_._",
  8204. "ref/xamarinmac20/_._",
  8205. "ref/xamarintvos10/_._",
  8206. "ref/xamarinwatchos10/_._",
  8207. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8208. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8209. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8210. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8211. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8212. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8213. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8214. "system.security.cryptography.algorithms.4.3.1.nupkg.sha512",
  8215. "system.security.cryptography.algorithms.nuspec"
  8216. ]
  8217. },
  8218. "System.Security.Cryptography.Cng/4.3.0": {
  8219. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  8220. "type": "package",
  8221. "path": "system.security.cryptography.cng/4.3.0",
  8222. "files": [
  8223. ".nupkg.metadata",
  8224. ".signature.p7s",
  8225. "ThirdPartyNotices.txt",
  8226. "dotnet_library_license.txt",
  8227. "lib/net46/System.Security.Cryptography.Cng.dll",
  8228. "lib/net461/System.Security.Cryptography.Cng.dll",
  8229. "lib/net463/System.Security.Cryptography.Cng.dll",
  8230. "ref/net46/System.Security.Cryptography.Cng.dll",
  8231. "ref/net461/System.Security.Cryptography.Cng.dll",
  8232. "ref/net463/System.Security.Cryptography.Cng.dll",
  8233. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8234. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8235. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8236. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8237. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8238. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8239. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8240. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8241. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8242. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8243. "system.security.cryptography.cng.nuspec"
  8244. ]
  8245. },
  8246. "System.Security.Cryptography.Csp/4.3.0": {
  8247. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8248. "type": "package",
  8249. "path": "system.security.cryptography.csp/4.3.0",
  8250. "files": [
  8251. ".nupkg.metadata",
  8252. ".signature.p7s",
  8253. "ThirdPartyNotices.txt",
  8254. "dotnet_library_license.txt",
  8255. "lib/MonoAndroid10/_._",
  8256. "lib/MonoTouch10/_._",
  8257. "lib/net46/System.Security.Cryptography.Csp.dll",
  8258. "lib/xamarinios10/_._",
  8259. "lib/xamarinmac20/_._",
  8260. "lib/xamarintvos10/_._",
  8261. "lib/xamarinwatchos10/_._",
  8262. "ref/MonoAndroid10/_._",
  8263. "ref/MonoTouch10/_._",
  8264. "ref/net46/System.Security.Cryptography.Csp.dll",
  8265. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8266. "ref/xamarinios10/_._",
  8267. "ref/xamarinmac20/_._",
  8268. "ref/xamarintvos10/_._",
  8269. "ref/xamarinwatchos10/_._",
  8270. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8271. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8272. "runtimes/win/lib/netcore50/_._",
  8273. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8274. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8275. "system.security.cryptography.csp.nuspec"
  8276. ]
  8277. },
  8278. "System.Security.Cryptography.Encoding/4.3.0": {
  8279. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8280. "type": "package",
  8281. "path": "system.security.cryptography.encoding/4.3.0",
  8282. "files": [
  8283. ".nupkg.metadata",
  8284. ".signature.p7s",
  8285. "ThirdPartyNotices.txt",
  8286. "dotnet_library_license.txt",
  8287. "lib/MonoAndroid10/_._",
  8288. "lib/MonoTouch10/_._",
  8289. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8290. "lib/xamarinios10/_._",
  8291. "lib/xamarinmac20/_._",
  8292. "lib/xamarintvos10/_._",
  8293. "lib/xamarinwatchos10/_._",
  8294. "ref/MonoAndroid10/_._",
  8295. "ref/MonoTouch10/_._",
  8296. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8297. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8298. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8299. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8300. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8301. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8302. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8303. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8304. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8305. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8306. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8307. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8308. "ref/xamarinios10/_._",
  8309. "ref/xamarinmac20/_._",
  8310. "ref/xamarintvos10/_._",
  8311. "ref/xamarinwatchos10/_._",
  8312. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8313. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8314. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8315. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8316. "system.security.cryptography.encoding.nuspec"
  8317. ]
  8318. },
  8319. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8320. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8321. "type": "package",
  8322. "path": "system.security.cryptography.openssl/4.3.0",
  8323. "files": [
  8324. ".nupkg.metadata",
  8325. ".signature.p7s",
  8326. "ThirdPartyNotices.txt",
  8327. "dotnet_library_license.txt",
  8328. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8329. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8330. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8331. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8332. "system.security.cryptography.openssl.nuspec"
  8333. ]
  8334. },
  8335. "System.Security.Cryptography.Primitives/4.3.0": {
  8336. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8337. "type": "package",
  8338. "path": "system.security.cryptography.primitives/4.3.0",
  8339. "files": [
  8340. ".nupkg.metadata",
  8341. ".signature.p7s",
  8342. "ThirdPartyNotices.txt",
  8343. "dotnet_library_license.txt",
  8344. "lib/MonoAndroid10/_._",
  8345. "lib/MonoTouch10/_._",
  8346. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8347. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8348. "lib/xamarinios10/_._",
  8349. "lib/xamarinmac20/_._",
  8350. "lib/xamarintvos10/_._",
  8351. "lib/xamarinwatchos10/_._",
  8352. "ref/MonoAndroid10/_._",
  8353. "ref/MonoTouch10/_._",
  8354. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8355. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8356. "ref/xamarinios10/_._",
  8357. "ref/xamarinmac20/_._",
  8358. "ref/xamarintvos10/_._",
  8359. "ref/xamarinwatchos10/_._",
  8360. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8361. "system.security.cryptography.primitives.nuspec"
  8362. ]
  8363. },
  8364. "System.Security.Cryptography.ProtectedData/4.5.0": {
  8365. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  8366. "type": "package",
  8367. "path": "system.security.cryptography.protecteddata/4.5.0",
  8368. "files": [
  8369. ".nupkg.metadata",
  8370. ".signature.p7s",
  8371. "LICENSE.TXT",
  8372. "THIRD-PARTY-NOTICES.TXT",
  8373. "lib/MonoAndroid10/_._",
  8374. "lib/MonoTouch10/_._",
  8375. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8376. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8377. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8378. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8379. "lib/xamarinios10/_._",
  8380. "lib/xamarinmac20/_._",
  8381. "lib/xamarintvos10/_._",
  8382. "lib/xamarinwatchos10/_._",
  8383. "ref/MonoAndroid10/_._",
  8384. "ref/MonoTouch10/_._",
  8385. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8386. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8387. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8388. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8389. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8390. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8391. "ref/xamarinios10/_._",
  8392. "ref/xamarinmac20/_._",
  8393. "ref/xamarintvos10/_._",
  8394. "ref/xamarinwatchos10/_._",
  8395. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8396. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8397. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8398. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8399. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8400. "system.security.cryptography.protecteddata.nuspec",
  8401. "useSharedDesignerContext.txt",
  8402. "version.txt"
  8403. ]
  8404. },
  8405. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8406. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8407. "type": "package",
  8408. "path": "system.security.cryptography.x509certificates/4.3.0",
  8409. "files": [
  8410. ".nupkg.metadata",
  8411. ".signature.p7s",
  8412. "ThirdPartyNotices.txt",
  8413. "dotnet_library_license.txt",
  8414. "lib/MonoAndroid10/_._",
  8415. "lib/MonoTouch10/_._",
  8416. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8417. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8418. "lib/xamarinios10/_._",
  8419. "lib/xamarinmac20/_._",
  8420. "lib/xamarintvos10/_._",
  8421. "lib/xamarinwatchos10/_._",
  8422. "ref/MonoAndroid10/_._",
  8423. "ref/MonoTouch10/_._",
  8424. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8425. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8426. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8427. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8428. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8429. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8430. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8431. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8432. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8433. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8434. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8435. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8436. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8437. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8438. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8439. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8440. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8441. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8442. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8443. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8444. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8445. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8446. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8447. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8448. "ref/xamarinios10/_._",
  8449. "ref/xamarinmac20/_._",
  8450. "ref/xamarintvos10/_._",
  8451. "ref/xamarinwatchos10/_._",
  8452. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8453. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8454. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8455. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8456. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8457. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8458. "system.security.cryptography.x509certificates.nuspec"
  8459. ]
  8460. },
  8461. "System.Security.Permissions/4.7.0": {
  8462. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8463. "type": "package",
  8464. "path": "system.security.permissions/4.7.0",
  8465. "files": [
  8466. ".nupkg.metadata",
  8467. ".signature.p7s",
  8468. "LICENSE.TXT",
  8469. "THIRD-PARTY-NOTICES.TXT",
  8470. "lib/net461/System.Security.Permissions.dll",
  8471. "lib/net461/System.Security.Permissions.xml",
  8472. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8473. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8474. "lib/netstandard2.0/System.Security.Permissions.dll",
  8475. "lib/netstandard2.0/System.Security.Permissions.xml",
  8476. "ref/net461/System.Security.Permissions.dll",
  8477. "ref/net461/System.Security.Permissions.xml",
  8478. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8479. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8480. "ref/netstandard2.0/System.Security.Permissions.dll",
  8481. "ref/netstandard2.0/System.Security.Permissions.xml",
  8482. "system.security.permissions.4.7.0.nupkg.sha512",
  8483. "system.security.permissions.nuspec",
  8484. "useSharedDesignerContext.txt",
  8485. "version.txt"
  8486. ]
  8487. },
  8488. "System.Security.Principal/4.3.0": {
  8489. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8490. "type": "package",
  8491. "path": "system.security.principal/4.3.0",
  8492. "files": [
  8493. ".nupkg.metadata",
  8494. ".signature.p7s",
  8495. "ThirdPartyNotices.txt",
  8496. "dotnet_library_license.txt",
  8497. "lib/MonoAndroid10/_._",
  8498. "lib/MonoTouch10/_._",
  8499. "lib/net45/_._",
  8500. "lib/netcore50/System.Security.Principal.dll",
  8501. "lib/netstandard1.0/System.Security.Principal.dll",
  8502. "lib/portable-net45+win8+wp8+wpa81/_._",
  8503. "lib/win8/_._",
  8504. "lib/wp80/_._",
  8505. "lib/wpa81/_._",
  8506. "lib/xamarinios10/_._",
  8507. "lib/xamarinmac20/_._",
  8508. "lib/xamarintvos10/_._",
  8509. "lib/xamarinwatchos10/_._",
  8510. "ref/MonoAndroid10/_._",
  8511. "ref/MonoTouch10/_._",
  8512. "ref/net45/_._",
  8513. "ref/netcore50/System.Security.Principal.dll",
  8514. "ref/netcore50/System.Security.Principal.xml",
  8515. "ref/netcore50/de/System.Security.Principal.xml",
  8516. "ref/netcore50/es/System.Security.Principal.xml",
  8517. "ref/netcore50/fr/System.Security.Principal.xml",
  8518. "ref/netcore50/it/System.Security.Principal.xml",
  8519. "ref/netcore50/ja/System.Security.Principal.xml",
  8520. "ref/netcore50/ko/System.Security.Principal.xml",
  8521. "ref/netcore50/ru/System.Security.Principal.xml",
  8522. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8523. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8524. "ref/netstandard1.0/System.Security.Principal.dll",
  8525. "ref/netstandard1.0/System.Security.Principal.xml",
  8526. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8527. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8528. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8529. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8530. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8531. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8532. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8533. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8534. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8535. "ref/portable-net45+win8+wp8+wpa81/_._",
  8536. "ref/win8/_._",
  8537. "ref/wp80/_._",
  8538. "ref/wpa81/_._",
  8539. "ref/xamarinios10/_._",
  8540. "ref/xamarinmac20/_._",
  8541. "ref/xamarintvos10/_._",
  8542. "ref/xamarinwatchos10/_._",
  8543. "system.security.principal.4.3.0.nupkg.sha512",
  8544. "system.security.principal.nuspec"
  8545. ]
  8546. },
  8547. "System.Security.Principal.Windows/4.7.0": {
  8548. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8549. "type": "package",
  8550. "path": "system.security.principal.windows/4.7.0",
  8551. "files": [
  8552. ".nupkg.metadata",
  8553. ".signature.p7s",
  8554. "LICENSE.TXT",
  8555. "THIRD-PARTY-NOTICES.TXT",
  8556. "lib/net46/System.Security.Principal.Windows.dll",
  8557. "lib/net461/System.Security.Principal.Windows.dll",
  8558. "lib/net461/System.Security.Principal.Windows.xml",
  8559. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8560. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8561. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8562. "lib/uap10.0.16299/_._",
  8563. "ref/net46/System.Security.Principal.Windows.dll",
  8564. "ref/net461/System.Security.Principal.Windows.dll",
  8565. "ref/net461/System.Security.Principal.Windows.xml",
  8566. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8567. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8568. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8569. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8570. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8571. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8572. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8573. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8574. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8575. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8576. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8577. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8578. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8579. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8580. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8581. "ref/uap10.0.16299/_._",
  8582. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8583. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8584. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8585. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8586. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8587. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8588. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8589. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8590. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8591. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8592. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8593. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8594. "runtimes/win/lib/uap10.0.16299/_._",
  8595. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8596. "system.security.principal.windows.nuspec",
  8597. "useSharedDesignerContext.txt",
  8598. "version.txt"
  8599. ]
  8600. },
  8601. "System.Text.Encoding/4.3.0": {
  8602. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8603. "type": "package",
  8604. "path": "system.text.encoding/4.3.0",
  8605. "files": [
  8606. ".nupkg.metadata",
  8607. ".signature.p7s",
  8608. "ThirdPartyNotices.txt",
  8609. "dotnet_library_license.txt",
  8610. "lib/MonoAndroid10/_._",
  8611. "lib/MonoTouch10/_._",
  8612. "lib/net45/_._",
  8613. "lib/portable-net45+win8+wp8+wpa81/_._",
  8614. "lib/win8/_._",
  8615. "lib/wp80/_._",
  8616. "lib/wpa81/_._",
  8617. "lib/xamarinios10/_._",
  8618. "lib/xamarinmac20/_._",
  8619. "lib/xamarintvos10/_._",
  8620. "lib/xamarinwatchos10/_._",
  8621. "ref/MonoAndroid10/_._",
  8622. "ref/MonoTouch10/_._",
  8623. "ref/net45/_._",
  8624. "ref/netcore50/System.Text.Encoding.dll",
  8625. "ref/netcore50/System.Text.Encoding.xml",
  8626. "ref/netcore50/de/System.Text.Encoding.xml",
  8627. "ref/netcore50/es/System.Text.Encoding.xml",
  8628. "ref/netcore50/fr/System.Text.Encoding.xml",
  8629. "ref/netcore50/it/System.Text.Encoding.xml",
  8630. "ref/netcore50/ja/System.Text.Encoding.xml",
  8631. "ref/netcore50/ko/System.Text.Encoding.xml",
  8632. "ref/netcore50/ru/System.Text.Encoding.xml",
  8633. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8634. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8635. "ref/netstandard1.0/System.Text.Encoding.dll",
  8636. "ref/netstandard1.0/System.Text.Encoding.xml",
  8637. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8638. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8639. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8640. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8641. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8642. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8643. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8644. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8645. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8646. "ref/netstandard1.3/System.Text.Encoding.dll",
  8647. "ref/netstandard1.3/System.Text.Encoding.xml",
  8648. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8649. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8650. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8651. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8652. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8653. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8654. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8655. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8656. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8657. "ref/portable-net45+win8+wp8+wpa81/_._",
  8658. "ref/win8/_._",
  8659. "ref/wp80/_._",
  8660. "ref/wpa81/_._",
  8661. "ref/xamarinios10/_._",
  8662. "ref/xamarinmac20/_._",
  8663. "ref/xamarintvos10/_._",
  8664. "ref/xamarinwatchos10/_._",
  8665. "system.text.encoding.4.3.0.nupkg.sha512",
  8666. "system.text.encoding.nuspec"
  8667. ]
  8668. },
  8669. "System.Text.Encoding.CodePages/5.0.0": {
  8670. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8671. "type": "package",
  8672. "path": "system.text.encoding.codepages/5.0.0",
  8673. "files": [
  8674. ".nupkg.metadata",
  8675. ".signature.p7s",
  8676. "Icon.png",
  8677. "LICENSE.TXT",
  8678. "THIRD-PARTY-NOTICES.TXT",
  8679. "lib/MonoAndroid10/_._",
  8680. "lib/MonoTouch10/_._",
  8681. "lib/net46/System.Text.Encoding.CodePages.dll",
  8682. "lib/net461/System.Text.Encoding.CodePages.dll",
  8683. "lib/net461/System.Text.Encoding.CodePages.xml",
  8684. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8685. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8686. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8687. "lib/xamarinios10/_._",
  8688. "lib/xamarinmac20/_._",
  8689. "lib/xamarintvos10/_._",
  8690. "lib/xamarinwatchos10/_._",
  8691. "ref/MonoAndroid10/_._",
  8692. "ref/MonoTouch10/_._",
  8693. "ref/xamarinios10/_._",
  8694. "ref/xamarinmac20/_._",
  8695. "ref/xamarintvos10/_._",
  8696. "ref/xamarinwatchos10/_._",
  8697. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8698. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8699. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8700. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8701. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8702. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8703. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8704. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8705. "system.text.encoding.codepages.nuspec",
  8706. "useSharedDesignerContext.txt",
  8707. "version.txt"
  8708. ]
  8709. },
  8710. "System.Text.Encoding.Extensions/4.3.0": {
  8711. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8712. "type": "package",
  8713. "path": "system.text.encoding.extensions/4.3.0",
  8714. "files": [
  8715. ".nupkg.metadata",
  8716. ".signature.p7s",
  8717. "ThirdPartyNotices.txt",
  8718. "dotnet_library_license.txt",
  8719. "lib/MonoAndroid10/_._",
  8720. "lib/MonoTouch10/_._",
  8721. "lib/net45/_._",
  8722. "lib/portable-net45+win8+wp8+wpa81/_._",
  8723. "lib/win8/_._",
  8724. "lib/wp80/_._",
  8725. "lib/wpa81/_._",
  8726. "lib/xamarinios10/_._",
  8727. "lib/xamarinmac20/_._",
  8728. "lib/xamarintvos10/_._",
  8729. "lib/xamarinwatchos10/_._",
  8730. "ref/MonoAndroid10/_._",
  8731. "ref/MonoTouch10/_._",
  8732. "ref/net45/_._",
  8733. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8734. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8735. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8736. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8737. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8738. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8739. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8740. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8741. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8742. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8743. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8744. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8745. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8746. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8747. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8748. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8749. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8750. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8751. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8752. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8753. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8754. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8755. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8756. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8757. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8758. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8759. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8760. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8761. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8762. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8763. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8764. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8765. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8766. "ref/portable-net45+win8+wp8+wpa81/_._",
  8767. "ref/win8/_._",
  8768. "ref/wp80/_._",
  8769. "ref/wpa81/_._",
  8770. "ref/xamarinios10/_._",
  8771. "ref/xamarinmac20/_._",
  8772. "ref/xamarintvos10/_._",
  8773. "ref/xamarinwatchos10/_._",
  8774. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8775. "system.text.encoding.extensions.nuspec"
  8776. ]
  8777. },
  8778. "System.Text.Encodings.Web/9.0.1": {
  8779. "sha512": "XkspqduP2t1e1x2vBUAD/xZ5ZDvmywuUwsmB93MvyQLospJfqtX0GsR/kU0vUL2h4kmvf777z3txV2W4NrQ9Qg==",
  8780. "type": "package",
  8781. "path": "system.text.encodings.web/9.0.1",
  8782. "files": [
  8783. ".nupkg.metadata",
  8784. ".signature.p7s",
  8785. "Icon.png",
  8786. "LICENSE.TXT",
  8787. "PACKAGE.md",
  8788. "THIRD-PARTY-NOTICES.TXT",
  8789. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  8790. "buildTransitive/net462/_._",
  8791. "buildTransitive/net8.0/_._",
  8792. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  8793. "lib/net462/System.Text.Encodings.Web.dll",
  8794. "lib/net462/System.Text.Encodings.Web.xml",
  8795. "lib/net8.0/System.Text.Encodings.Web.dll",
  8796. "lib/net8.0/System.Text.Encodings.Web.xml",
  8797. "lib/net9.0/System.Text.Encodings.Web.dll",
  8798. "lib/net9.0/System.Text.Encodings.Web.xml",
  8799. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8800. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8801. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  8802. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  8803. "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll",
  8804. "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml",
  8805. "system.text.encodings.web.9.0.1.nupkg.sha512",
  8806. "system.text.encodings.web.nuspec",
  8807. "useSharedDesignerContext.txt"
  8808. ]
  8809. },
  8810. "System.Text.Json/9.0.1": {
  8811. "sha512": "eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA==",
  8812. "type": "package",
  8813. "path": "system.text.json/9.0.1",
  8814. "files": [
  8815. ".nupkg.metadata",
  8816. ".signature.p7s",
  8817. "Icon.png",
  8818. "LICENSE.TXT",
  8819. "PACKAGE.md",
  8820. "THIRD-PARTY-NOTICES.TXT",
  8821. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  8822. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8823. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8824. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8825. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8826. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8827. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8828. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8829. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8830. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8831. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8832. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8833. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8834. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8835. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  8836. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8837. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8838. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8839. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8840. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8841. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8842. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8843. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8844. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8845. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8846. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8847. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8848. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8849. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  8850. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8851. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8852. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8853. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8854. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8855. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8856. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8857. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8858. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8859. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8860. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8861. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8862. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8863. "buildTransitive/net461/System.Text.Json.targets",
  8864. "buildTransitive/net462/System.Text.Json.targets",
  8865. "buildTransitive/net8.0/System.Text.Json.targets",
  8866. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  8867. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  8868. "lib/net462/System.Text.Json.dll",
  8869. "lib/net462/System.Text.Json.xml",
  8870. "lib/net8.0/System.Text.Json.dll",
  8871. "lib/net8.0/System.Text.Json.xml",
  8872. "lib/net9.0/System.Text.Json.dll",
  8873. "lib/net9.0/System.Text.Json.xml",
  8874. "lib/netstandard2.0/System.Text.Json.dll",
  8875. "lib/netstandard2.0/System.Text.Json.xml",
  8876. "system.text.json.9.0.1.nupkg.sha512",
  8877. "system.text.json.nuspec",
  8878. "useSharedDesignerContext.txt"
  8879. ]
  8880. },
  8881. "System.Text.RegularExpressions/4.3.0": {
  8882. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8883. "type": "package",
  8884. "path": "system.text.regularexpressions/4.3.0",
  8885. "files": [
  8886. ".nupkg.metadata",
  8887. ".signature.p7s",
  8888. "ThirdPartyNotices.txt",
  8889. "dotnet_library_license.txt",
  8890. "lib/MonoAndroid10/_._",
  8891. "lib/MonoTouch10/_._",
  8892. "lib/net45/_._",
  8893. "lib/net463/System.Text.RegularExpressions.dll",
  8894. "lib/netcore50/System.Text.RegularExpressions.dll",
  8895. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8896. "lib/portable-net45+win8+wp8+wpa81/_._",
  8897. "lib/win8/_._",
  8898. "lib/wp80/_._",
  8899. "lib/wpa81/_._",
  8900. "lib/xamarinios10/_._",
  8901. "lib/xamarinmac20/_._",
  8902. "lib/xamarintvos10/_._",
  8903. "lib/xamarinwatchos10/_._",
  8904. "ref/MonoAndroid10/_._",
  8905. "ref/MonoTouch10/_._",
  8906. "ref/net45/_._",
  8907. "ref/net463/System.Text.RegularExpressions.dll",
  8908. "ref/netcore50/System.Text.RegularExpressions.dll",
  8909. "ref/netcore50/System.Text.RegularExpressions.xml",
  8910. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8911. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8912. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8913. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8914. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8915. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8916. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8917. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8918. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8919. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8920. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8921. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8922. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8923. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8924. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8925. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8926. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8927. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8928. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8929. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8930. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8931. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8932. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8933. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8934. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8935. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8936. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8937. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8938. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8939. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8940. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8941. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8942. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8943. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8944. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8945. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8946. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8947. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8948. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8949. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8950. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8951. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8952. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8953. "ref/portable-net45+win8+wp8+wpa81/_._",
  8954. "ref/win8/_._",
  8955. "ref/wp80/_._",
  8956. "ref/wpa81/_._",
  8957. "ref/xamarinios10/_._",
  8958. "ref/xamarinmac20/_._",
  8959. "ref/xamarintvos10/_._",
  8960. "ref/xamarinwatchos10/_._",
  8961. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8962. "system.text.regularexpressions.nuspec"
  8963. ]
  8964. },
  8965. "System.Threading/4.3.0": {
  8966. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8967. "type": "package",
  8968. "path": "system.threading/4.3.0",
  8969. "files": [
  8970. ".nupkg.metadata",
  8971. ".signature.p7s",
  8972. "ThirdPartyNotices.txt",
  8973. "dotnet_library_license.txt",
  8974. "lib/MonoAndroid10/_._",
  8975. "lib/MonoTouch10/_._",
  8976. "lib/net45/_._",
  8977. "lib/netcore50/System.Threading.dll",
  8978. "lib/netstandard1.3/System.Threading.dll",
  8979. "lib/portable-net45+win8+wp8+wpa81/_._",
  8980. "lib/win8/_._",
  8981. "lib/wp80/_._",
  8982. "lib/wpa81/_._",
  8983. "lib/xamarinios10/_._",
  8984. "lib/xamarinmac20/_._",
  8985. "lib/xamarintvos10/_._",
  8986. "lib/xamarinwatchos10/_._",
  8987. "ref/MonoAndroid10/_._",
  8988. "ref/MonoTouch10/_._",
  8989. "ref/net45/_._",
  8990. "ref/netcore50/System.Threading.dll",
  8991. "ref/netcore50/System.Threading.xml",
  8992. "ref/netcore50/de/System.Threading.xml",
  8993. "ref/netcore50/es/System.Threading.xml",
  8994. "ref/netcore50/fr/System.Threading.xml",
  8995. "ref/netcore50/it/System.Threading.xml",
  8996. "ref/netcore50/ja/System.Threading.xml",
  8997. "ref/netcore50/ko/System.Threading.xml",
  8998. "ref/netcore50/ru/System.Threading.xml",
  8999. "ref/netcore50/zh-hans/System.Threading.xml",
  9000. "ref/netcore50/zh-hant/System.Threading.xml",
  9001. "ref/netstandard1.0/System.Threading.dll",
  9002. "ref/netstandard1.0/System.Threading.xml",
  9003. "ref/netstandard1.0/de/System.Threading.xml",
  9004. "ref/netstandard1.0/es/System.Threading.xml",
  9005. "ref/netstandard1.0/fr/System.Threading.xml",
  9006. "ref/netstandard1.0/it/System.Threading.xml",
  9007. "ref/netstandard1.0/ja/System.Threading.xml",
  9008. "ref/netstandard1.0/ko/System.Threading.xml",
  9009. "ref/netstandard1.0/ru/System.Threading.xml",
  9010. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9011. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9012. "ref/netstandard1.3/System.Threading.dll",
  9013. "ref/netstandard1.3/System.Threading.xml",
  9014. "ref/netstandard1.3/de/System.Threading.xml",
  9015. "ref/netstandard1.3/es/System.Threading.xml",
  9016. "ref/netstandard1.3/fr/System.Threading.xml",
  9017. "ref/netstandard1.3/it/System.Threading.xml",
  9018. "ref/netstandard1.3/ja/System.Threading.xml",
  9019. "ref/netstandard1.3/ko/System.Threading.xml",
  9020. "ref/netstandard1.3/ru/System.Threading.xml",
  9021. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9022. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9023. "ref/portable-net45+win8+wp8+wpa81/_._",
  9024. "ref/win8/_._",
  9025. "ref/wp80/_._",
  9026. "ref/wpa81/_._",
  9027. "ref/xamarinios10/_._",
  9028. "ref/xamarinmac20/_._",
  9029. "ref/xamarintvos10/_._",
  9030. "ref/xamarinwatchos10/_._",
  9031. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9032. "system.threading.4.3.0.nupkg.sha512",
  9033. "system.threading.nuspec"
  9034. ]
  9035. },
  9036. "System.Threading.Channels/7.0.0": {
  9037. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  9038. "type": "package",
  9039. "path": "system.threading.channels/7.0.0",
  9040. "files": [
  9041. ".nupkg.metadata",
  9042. ".signature.p7s",
  9043. "Icon.png",
  9044. "LICENSE.TXT",
  9045. "THIRD-PARTY-NOTICES.TXT",
  9046. "buildTransitive/net461/System.Threading.Channels.targets",
  9047. "buildTransitive/net462/_._",
  9048. "buildTransitive/net6.0/_._",
  9049. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  9050. "lib/net462/System.Threading.Channels.dll",
  9051. "lib/net462/System.Threading.Channels.xml",
  9052. "lib/net6.0/System.Threading.Channels.dll",
  9053. "lib/net6.0/System.Threading.Channels.xml",
  9054. "lib/net7.0/System.Threading.Channels.dll",
  9055. "lib/net7.0/System.Threading.Channels.xml",
  9056. "lib/netstandard2.0/System.Threading.Channels.dll",
  9057. "lib/netstandard2.0/System.Threading.Channels.xml",
  9058. "lib/netstandard2.1/System.Threading.Channels.dll",
  9059. "lib/netstandard2.1/System.Threading.Channels.xml",
  9060. "system.threading.channels.7.0.0.nupkg.sha512",
  9061. "system.threading.channels.nuspec",
  9062. "useSharedDesignerContext.txt"
  9063. ]
  9064. },
  9065. "System.Threading.Tasks/4.3.0": {
  9066. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9067. "type": "package",
  9068. "path": "system.threading.tasks/4.3.0",
  9069. "files": [
  9070. ".nupkg.metadata",
  9071. ".signature.p7s",
  9072. "ThirdPartyNotices.txt",
  9073. "dotnet_library_license.txt",
  9074. "lib/MonoAndroid10/_._",
  9075. "lib/MonoTouch10/_._",
  9076. "lib/net45/_._",
  9077. "lib/portable-net45+win8+wp8+wpa81/_._",
  9078. "lib/win8/_._",
  9079. "lib/wp80/_._",
  9080. "lib/wpa81/_._",
  9081. "lib/xamarinios10/_._",
  9082. "lib/xamarinmac20/_._",
  9083. "lib/xamarintvos10/_._",
  9084. "lib/xamarinwatchos10/_._",
  9085. "ref/MonoAndroid10/_._",
  9086. "ref/MonoTouch10/_._",
  9087. "ref/net45/_._",
  9088. "ref/netcore50/System.Threading.Tasks.dll",
  9089. "ref/netcore50/System.Threading.Tasks.xml",
  9090. "ref/netcore50/de/System.Threading.Tasks.xml",
  9091. "ref/netcore50/es/System.Threading.Tasks.xml",
  9092. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9093. "ref/netcore50/it/System.Threading.Tasks.xml",
  9094. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9095. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9096. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9097. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9098. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9099. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9100. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9101. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9102. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9103. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9104. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9105. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9106. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9107. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9108. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9109. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9110. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9111. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9112. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9113. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9114. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9115. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9116. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9117. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9118. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9119. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9120. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9121. "ref/portable-net45+win8+wp8+wpa81/_._",
  9122. "ref/win8/_._",
  9123. "ref/wp80/_._",
  9124. "ref/wpa81/_._",
  9125. "ref/xamarinios10/_._",
  9126. "ref/xamarinmac20/_._",
  9127. "ref/xamarintvos10/_._",
  9128. "ref/xamarinwatchos10/_._",
  9129. "system.threading.tasks.4.3.0.nupkg.sha512",
  9130. "system.threading.tasks.nuspec"
  9131. ]
  9132. },
  9133. "System.Threading.Tasks.Extensions/4.6.0": {
  9134. "sha512": "I5G6Y8jb0xRtGUC9Lahy7FUvlYlnGMMkbuKAQBy8Jb7Y6Yn8OlBEiUOY0PqZ0hy6Ua8poVA1ui1tAIiXNxGdsg==",
  9135. "type": "package",
  9136. "path": "system.threading.tasks.extensions/4.6.0",
  9137. "files": [
  9138. ".nupkg.metadata",
  9139. ".signature.p7s",
  9140. "Icon.png",
  9141. "PACKAGE.md",
  9142. "buildTransitive/net461/System.Threading.Tasks.Extensions.targets",
  9143. "buildTransitive/net462/_._",
  9144. "lib/net462/System.Threading.Tasks.Extensions.dll",
  9145. "lib/net462/System.Threading.Tasks.Extensions.xml",
  9146. "lib/netcoreapp2.1/_._",
  9147. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9148. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9149. "system.threading.tasks.extensions.4.6.0.nupkg.sha512",
  9150. "system.threading.tasks.extensions.nuspec"
  9151. ]
  9152. },
  9153. "System.Threading.Thread/4.3.0": {
  9154. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9155. "type": "package",
  9156. "path": "system.threading.thread/4.3.0",
  9157. "files": [
  9158. ".nupkg.metadata",
  9159. ".signature.p7s",
  9160. "ThirdPartyNotices.txt",
  9161. "dotnet_library_license.txt",
  9162. "lib/MonoAndroid10/_._",
  9163. "lib/MonoTouch10/_._",
  9164. "lib/net46/System.Threading.Thread.dll",
  9165. "lib/netcore50/_._",
  9166. "lib/netstandard1.3/System.Threading.Thread.dll",
  9167. "lib/xamarinios10/_._",
  9168. "lib/xamarinmac20/_._",
  9169. "lib/xamarintvos10/_._",
  9170. "lib/xamarinwatchos10/_._",
  9171. "ref/MonoAndroid10/_._",
  9172. "ref/MonoTouch10/_._",
  9173. "ref/net46/System.Threading.Thread.dll",
  9174. "ref/netstandard1.3/System.Threading.Thread.dll",
  9175. "ref/netstandard1.3/System.Threading.Thread.xml",
  9176. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9177. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9178. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9179. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9180. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9181. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9182. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9183. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9184. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9185. "ref/xamarinios10/_._",
  9186. "ref/xamarinmac20/_._",
  9187. "ref/xamarintvos10/_._",
  9188. "ref/xamarinwatchos10/_._",
  9189. "system.threading.thread.4.3.0.nupkg.sha512",
  9190. "system.threading.thread.nuspec"
  9191. ]
  9192. },
  9193. "System.Threading.ThreadPool/4.3.0": {
  9194. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  9195. "type": "package",
  9196. "path": "system.threading.threadpool/4.3.0",
  9197. "files": [
  9198. ".nupkg.metadata",
  9199. ".signature.p7s",
  9200. "ThirdPartyNotices.txt",
  9201. "dotnet_library_license.txt",
  9202. "lib/MonoAndroid10/_._",
  9203. "lib/MonoTouch10/_._",
  9204. "lib/net46/System.Threading.ThreadPool.dll",
  9205. "lib/netcore50/_._",
  9206. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9207. "lib/xamarinios10/_._",
  9208. "lib/xamarinmac20/_._",
  9209. "lib/xamarintvos10/_._",
  9210. "lib/xamarinwatchos10/_._",
  9211. "ref/MonoAndroid10/_._",
  9212. "ref/MonoTouch10/_._",
  9213. "ref/net46/System.Threading.ThreadPool.dll",
  9214. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9215. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9216. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9217. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9218. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9219. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9220. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9221. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9222. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9223. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9224. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9225. "ref/xamarinios10/_._",
  9226. "ref/xamarinmac20/_._",
  9227. "ref/xamarintvos10/_._",
  9228. "ref/xamarinwatchos10/_._",
  9229. "system.threading.threadpool.4.3.0.nupkg.sha512",
  9230. "system.threading.threadpool.nuspec"
  9231. ]
  9232. },
  9233. "System.Threading.Timer/4.3.0": {
  9234. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9235. "type": "package",
  9236. "path": "system.threading.timer/4.3.0",
  9237. "files": [
  9238. ".nupkg.metadata",
  9239. ".signature.p7s",
  9240. "ThirdPartyNotices.txt",
  9241. "dotnet_library_license.txt",
  9242. "lib/MonoAndroid10/_._",
  9243. "lib/MonoTouch10/_._",
  9244. "lib/net451/_._",
  9245. "lib/portable-net451+win81+wpa81/_._",
  9246. "lib/win81/_._",
  9247. "lib/wpa81/_._",
  9248. "lib/xamarinios10/_._",
  9249. "lib/xamarinmac20/_._",
  9250. "lib/xamarintvos10/_._",
  9251. "lib/xamarinwatchos10/_._",
  9252. "ref/MonoAndroid10/_._",
  9253. "ref/MonoTouch10/_._",
  9254. "ref/net451/_._",
  9255. "ref/netcore50/System.Threading.Timer.dll",
  9256. "ref/netcore50/System.Threading.Timer.xml",
  9257. "ref/netcore50/de/System.Threading.Timer.xml",
  9258. "ref/netcore50/es/System.Threading.Timer.xml",
  9259. "ref/netcore50/fr/System.Threading.Timer.xml",
  9260. "ref/netcore50/it/System.Threading.Timer.xml",
  9261. "ref/netcore50/ja/System.Threading.Timer.xml",
  9262. "ref/netcore50/ko/System.Threading.Timer.xml",
  9263. "ref/netcore50/ru/System.Threading.Timer.xml",
  9264. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9265. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9266. "ref/netstandard1.2/System.Threading.Timer.dll",
  9267. "ref/netstandard1.2/System.Threading.Timer.xml",
  9268. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9269. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9270. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9271. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9272. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9273. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9274. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9275. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9276. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9277. "ref/portable-net451+win81+wpa81/_._",
  9278. "ref/win81/_._",
  9279. "ref/wpa81/_._",
  9280. "ref/xamarinios10/_._",
  9281. "ref/xamarinmac20/_._",
  9282. "ref/xamarintvos10/_._",
  9283. "ref/xamarinwatchos10/_._",
  9284. "system.threading.timer.4.3.0.nupkg.sha512",
  9285. "system.threading.timer.nuspec"
  9286. ]
  9287. },
  9288. "System.ValueTuple/4.5.0": {
  9289. "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
  9290. "type": "package",
  9291. "path": "system.valuetuple/4.5.0",
  9292. "files": [
  9293. ".nupkg.metadata",
  9294. ".signature.p7s",
  9295. "LICENSE.TXT",
  9296. "THIRD-PARTY-NOTICES.TXT",
  9297. "lib/MonoAndroid10/_._",
  9298. "lib/MonoTouch10/_._",
  9299. "lib/net461/System.ValueTuple.dll",
  9300. "lib/net461/System.ValueTuple.xml",
  9301. "lib/net47/System.ValueTuple.dll",
  9302. "lib/net47/System.ValueTuple.xml",
  9303. "lib/netcoreapp2.0/_._",
  9304. "lib/netstandard1.0/System.ValueTuple.dll",
  9305. "lib/netstandard1.0/System.ValueTuple.xml",
  9306. "lib/netstandard2.0/_._",
  9307. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  9308. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
  9309. "lib/uap10.0.16299/_._",
  9310. "lib/xamarinios10/_._",
  9311. "lib/xamarinmac20/_._",
  9312. "lib/xamarintvos10/_._",
  9313. "lib/xamarinwatchos10/_._",
  9314. "ref/MonoAndroid10/_._",
  9315. "ref/MonoTouch10/_._",
  9316. "ref/net461/System.ValueTuple.dll",
  9317. "ref/net47/System.ValueTuple.dll",
  9318. "ref/netcoreapp2.0/_._",
  9319. "ref/netstandard2.0/_._",
  9320. "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  9321. "ref/uap10.0.16299/_._",
  9322. "ref/xamarinios10/_._",
  9323. "ref/xamarinmac20/_._",
  9324. "ref/xamarintvos10/_._",
  9325. "ref/xamarinwatchos10/_._",
  9326. "system.valuetuple.4.5.0.nupkg.sha512",
  9327. "system.valuetuple.nuspec",
  9328. "useSharedDesignerContext.txt",
  9329. "version.txt"
  9330. ]
  9331. },
  9332. "System.Windows.Extensions/4.7.0": {
  9333. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9334. "type": "package",
  9335. "path": "system.windows.extensions/4.7.0",
  9336. "files": [
  9337. ".nupkg.metadata",
  9338. ".signature.p7s",
  9339. "LICENSE.TXT",
  9340. "THIRD-PARTY-NOTICES.TXT",
  9341. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9342. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9343. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9344. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9345. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9346. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9347. "system.windows.extensions.4.7.0.nupkg.sha512",
  9348. "system.windows.extensions.nuspec",
  9349. "useSharedDesignerContext.txt",
  9350. "version.txt"
  9351. ]
  9352. },
  9353. "System.Xml.ReaderWriter/4.3.0": {
  9354. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9355. "type": "package",
  9356. "path": "system.xml.readerwriter/4.3.0",
  9357. "files": [
  9358. ".nupkg.metadata",
  9359. ".signature.p7s",
  9360. "ThirdPartyNotices.txt",
  9361. "dotnet_library_license.txt",
  9362. "lib/MonoAndroid10/_._",
  9363. "lib/MonoTouch10/_._",
  9364. "lib/net45/_._",
  9365. "lib/net46/System.Xml.ReaderWriter.dll",
  9366. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9367. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9368. "lib/portable-net45+win8+wp8+wpa81/_._",
  9369. "lib/win8/_._",
  9370. "lib/wp80/_._",
  9371. "lib/wpa81/_._",
  9372. "lib/xamarinios10/_._",
  9373. "lib/xamarinmac20/_._",
  9374. "lib/xamarintvos10/_._",
  9375. "lib/xamarinwatchos10/_._",
  9376. "ref/MonoAndroid10/_._",
  9377. "ref/MonoTouch10/_._",
  9378. "ref/net45/_._",
  9379. "ref/net46/System.Xml.ReaderWriter.dll",
  9380. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9381. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9382. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9383. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9384. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9385. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9386. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9387. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9388. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9389. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9390. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9391. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9392. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9393. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9394. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9395. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9396. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9397. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9398. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9399. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9400. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9401. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9402. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9403. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9404. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9405. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9406. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9407. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9408. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9409. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9410. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9411. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9412. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9413. "ref/portable-net45+win8+wp8+wpa81/_._",
  9414. "ref/win8/_._",
  9415. "ref/wp80/_._",
  9416. "ref/wpa81/_._",
  9417. "ref/xamarinios10/_._",
  9418. "ref/xamarinmac20/_._",
  9419. "ref/xamarintvos10/_._",
  9420. "ref/xamarinwatchos10/_._",
  9421. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9422. "system.xml.readerwriter.nuspec"
  9423. ]
  9424. },
  9425. "System.Xml.XDocument/4.3.0": {
  9426. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9427. "type": "package",
  9428. "path": "system.xml.xdocument/4.3.0",
  9429. "files": [
  9430. ".nupkg.metadata",
  9431. ".signature.p7s",
  9432. "ThirdPartyNotices.txt",
  9433. "dotnet_library_license.txt",
  9434. "lib/MonoAndroid10/_._",
  9435. "lib/MonoTouch10/_._",
  9436. "lib/net45/_._",
  9437. "lib/netcore50/System.Xml.XDocument.dll",
  9438. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9439. "lib/portable-net45+win8+wp8+wpa81/_._",
  9440. "lib/win8/_._",
  9441. "lib/wp80/_._",
  9442. "lib/wpa81/_._",
  9443. "lib/xamarinios10/_._",
  9444. "lib/xamarinmac20/_._",
  9445. "lib/xamarintvos10/_._",
  9446. "lib/xamarinwatchos10/_._",
  9447. "ref/MonoAndroid10/_._",
  9448. "ref/MonoTouch10/_._",
  9449. "ref/net45/_._",
  9450. "ref/netcore50/System.Xml.XDocument.dll",
  9451. "ref/netcore50/System.Xml.XDocument.xml",
  9452. "ref/netcore50/de/System.Xml.XDocument.xml",
  9453. "ref/netcore50/es/System.Xml.XDocument.xml",
  9454. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9455. "ref/netcore50/it/System.Xml.XDocument.xml",
  9456. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9457. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9458. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9459. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9460. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9461. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9462. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9463. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9464. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9465. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9466. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9467. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9468. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9469. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9470. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9471. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9472. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9473. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9474. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9475. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9476. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9477. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9478. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9479. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9480. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9481. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9482. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9483. "ref/portable-net45+win8+wp8+wpa81/_._",
  9484. "ref/win8/_._",
  9485. "ref/wp80/_._",
  9486. "ref/wpa81/_._",
  9487. "ref/xamarinios10/_._",
  9488. "ref/xamarinmac20/_._",
  9489. "ref/xamarintvos10/_._",
  9490. "ref/xamarinwatchos10/_._",
  9491. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9492. "system.xml.xdocument.nuspec"
  9493. ]
  9494. },
  9495. "ToolGood.Words/3.1.0.2": {
  9496. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  9497. "type": "package",
  9498. "path": "toolgood.words/3.1.0.2",
  9499. "files": [
  9500. ".nupkg.metadata",
  9501. ".signature.p7s",
  9502. "LICENSE",
  9503. "lib/net6.0/ToolGood.Words.dll",
  9504. "lib/net6.0/ToolGood.Words.xml",
  9505. "lib/net8.0/ToolGood.Words.dll",
  9506. "lib/net8.0/ToolGood.Words.xml",
  9507. "lib/net9.0/ToolGood.Words.dll",
  9508. "lib/net9.0/ToolGood.Words.xml",
  9509. "lib/netstandard2.1/ToolGood.Words.dll",
  9510. "lib/netstandard2.1/ToolGood.Words.xml",
  9511. "toolgood.words.3.1.0.2.nupkg.sha512",
  9512. "toolgood.words.nuspec"
  9513. ]
  9514. },
  9515. "Ulid/1.4.1": {
  9516. "sha512": "V6crLJ8a29raWeNwxYGfH9RTKA3H0nR0D9LAGzN3KtEsbiiaWkUjDor6OT5Oz7pxCK+NaY2hu2FLoYEOa8oCkA==",
  9517. "type": "package",
  9518. "path": "ulid/1.4.1",
  9519. "files": [
  9520. ".nupkg.metadata",
  9521. ".signature.p7s",
  9522. "Icon.png",
  9523. "lib/net6.0/Ulid.dll",
  9524. "lib/net6.0/Ulid.xml",
  9525. "lib/net7.0/Ulid.dll",
  9526. "lib/net7.0/Ulid.xml",
  9527. "lib/net8.0/Ulid.dll",
  9528. "lib/net8.0/Ulid.xml",
  9529. "lib/netstandard2.0/Ulid.dll",
  9530. "lib/netstandard2.0/Ulid.xml",
  9531. "lib/netstandard2.1/Ulid.dll",
  9532. "lib/netstandard2.1/Ulid.xml",
  9533. "ulid.1.4.1.nupkg.sha512",
  9534. "ulid.nuspec"
  9535. ]
  9536. },
  9537. "ZXing.Net/0.16.9": {
  9538. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9539. "type": "package",
  9540. "path": "zxing.net/0.16.9",
  9541. "files": [
  9542. ".nupkg.metadata",
  9543. ".signature.p7s",
  9544. "lib/native/zxing.XML",
  9545. "lib/native/zxing.pri",
  9546. "lib/native/zxing.winmd",
  9547. "lib/net20-cf/zxing.ce2.0.dll",
  9548. "lib/net20-cf/zxing.ce2.0.xml",
  9549. "lib/net20/zxing.XML",
  9550. "lib/net20/zxing.dll",
  9551. "lib/net35-cf/zxing.ce3.5.dll",
  9552. "lib/net35-cf/zxing.ce3.5.xml",
  9553. "lib/net35/zxing.XML",
  9554. "lib/net35/zxing.dll",
  9555. "lib/net40/zxing.XML",
  9556. "lib/net40/zxing.dll",
  9557. "lib/net40/zxing.presentation.XML",
  9558. "lib/net40/zxing.presentation.dll",
  9559. "lib/net45/zxing.XML",
  9560. "lib/net45/zxing.dll",
  9561. "lib/net45/zxing.presentation.XML",
  9562. "lib/net45/zxing.presentation.dll",
  9563. "lib/net461/zxing.XML",
  9564. "lib/net461/zxing.dll",
  9565. "lib/net461/zxing.presentation.XML",
  9566. "lib/net461/zxing.presentation.dll",
  9567. "lib/net47/zxing.XML",
  9568. "lib/net47/zxing.dll",
  9569. "lib/net47/zxing.presentation.XML",
  9570. "lib/net47/zxing.presentation.dll",
  9571. "lib/net48/zxing.XML",
  9572. "lib/net48/zxing.dll",
  9573. "lib/net48/zxing.presentation.XML",
  9574. "lib/net48/zxing.presentation.dll",
  9575. "lib/net5.0/zxing.XML",
  9576. "lib/net5.0/zxing.dll",
  9577. "lib/net6.0/zxing.XML",
  9578. "lib/net6.0/zxing.dll",
  9579. "lib/net7.0/zxing.XML",
  9580. "lib/net7.0/zxing.dll",
  9581. "lib/netcoreapp3.0/zxing.dll",
  9582. "lib/netcoreapp3.0/zxing.xml",
  9583. "lib/netcoreapp3.1/zxing.dll",
  9584. "lib/netcoreapp3.1/zxing.xml",
  9585. "lib/netstandard1.0/zxing.dll",
  9586. "lib/netstandard1.0/zxing.xml",
  9587. "lib/netstandard1.1/zxing.dll",
  9588. "lib/netstandard1.1/zxing.xml",
  9589. "lib/netstandard1.3/zxing.dll",
  9590. "lib/netstandard1.3/zxing.xml",
  9591. "lib/netstandard2.0/zxing.dll",
  9592. "lib/netstandard2.0/zxing.xml",
  9593. "lib/netstandard2.1/zxing.dll",
  9594. "lib/netstandard2.1/zxing.xml",
  9595. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9596. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9597. "lib/sl3-wp/zxing.wp7.0.XML",
  9598. "lib/sl3-wp/zxing.wp7.0.dll",
  9599. "lib/sl4-wp71/zxing.wp7.1.XML",
  9600. "lib/sl4-wp71/zxing.wp7.1.dll",
  9601. "lib/sl4/zxing.sl4.XML",
  9602. "lib/sl4/zxing.sl4.dll",
  9603. "lib/sl5/zxing.sl5.XML",
  9604. "lib/sl5/zxing.sl5.dll",
  9605. "lib/uap10/zxing.dll",
  9606. "lib/uap10/zxing.pri",
  9607. "lib/uap10/zxing.xml",
  9608. "lib/windows8-managed/zxing.winrt.XML",
  9609. "lib/windows8-managed/zxing.winrt.dll",
  9610. "lib/windows8/zxing.XML",
  9611. "lib/windows8/zxing.pri",
  9612. "lib/windows8/zxing.winmd",
  9613. "lib/wp8/zxing.wp8.0.XML",
  9614. "lib/wp8/zxing.wp8.0.dll",
  9615. "logo.jpg",
  9616. "zxing.net.0.16.9.nupkg.sha512",
  9617. "zxing.net.nuspec"
  9618. ]
  9619. },
  9620. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9621. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9622. "type": "package",
  9623. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9624. "files": [
  9625. ".nupkg.metadata",
  9626. ".signature.p7s",
  9627. "lib/net472/ZXing.ImageSharp.V2.dll",
  9628. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9629. "lib/net472/ZXing.ImageSharp.V2.xml",
  9630. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9631. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9632. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9633. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9634. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9635. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9636. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9637. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9638. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9639. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9640. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9641. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9642. "logo.jpg",
  9643. "readme.md",
  9644. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9645. "zxing.net.bindings.imagesharp.v2.nuspec"
  9646. ]
  9647. },
  9648. "Ropin.Core.Common/1.0.0": {
  9649. "type": "project",
  9650. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9651. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9652. },
  9653. "Ropin.Inspection.Common/1.0.0": {
  9654. "type": "project",
  9655. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9656. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9657. },
  9658. "Ropin.Inspection.Model/1.0.0": {
  9659. "type": "project",
  9660. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9661. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9662. },
  9663. "Ropin.Inspection.Repository/1.0.0": {
  9664. "type": "project",
  9665. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9666. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9667. }
  9668. },
  9669. "projectFileDependencyGroups": {
  9670. "net7.0": [
  9671. "FBoxClientDriver >= 1.2.0",
  9672. "InitQ >= 1.0.0.14",
  9673. "Microsoft.Bcl.AsyncInterfaces >= 9.0.8",
  9674. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9675. "Minio >= 6.0.5",
  9676. "RabbitMQ.Client >= 6.8.1",
  9677. "Ropin.Core.Common >= 1.0.0",
  9678. "Ropin.Inspection.Common >= 1.0.0",
  9679. "Ropin.Inspection.Model >= 1.0.0",
  9680. "Ropin.Inspection.Repository >= 1.0.0",
  9681. "Swashbuckle.AspNetCore >= 5.6.3",
  9682. "log4net >= 2.0.17"
  9683. ]
  9684. },
  9685. "packageFolders": {
  9686. "D:\\.nuget\\packages": {},
  9687. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9688. },
  9689. "project": {
  9690. "version": "1.0.0",
  9691. "restore": {
  9692. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\Ropin.Environmentally.VideoService.csproj",
  9693. "projectName": "Ropin.Environmentally.VideoService",
  9694. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\Ropin.Environmentally.VideoService.csproj",
  9695. "packagesPath": "D:\\.nuget\\packages",
  9696. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\obj\\",
  9697. "projectStyle": "PackageReference",
  9698. "fallbackFolders": [
  9699. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9700. ],
  9701. "configFilePaths": [
  9702. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9703. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9704. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9705. ],
  9706. "originalTargetFrameworks": [
  9707. "net7.0"
  9708. ],
  9709. "sources": {
  9710. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9711. "C:\\Program Files\\dotnet\\library-packs": {},
  9712. "https://api.nuget.org/v3/index.json": {}
  9713. },
  9714. "frameworks": {
  9715. "net7.0": {
  9716. "targetAlias": "net7.0",
  9717. "projectReferences": {
  9718. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9719. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9720. },
  9721. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9722. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9723. },
  9724. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9725. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9726. },
  9727. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9728. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9729. }
  9730. }
  9731. }
  9732. },
  9733. "warningProperties": {
  9734. "warnAsError": [
  9735. "NU1605"
  9736. ]
  9737. }
  9738. },
  9739. "frameworks": {
  9740. "net7.0": {
  9741. "targetAlias": "net7.0",
  9742. "dependencies": {
  9743. "FBoxClientDriver": {
  9744. "target": "Package",
  9745. "version": "[1.2.0, )"
  9746. },
  9747. "InitQ": {
  9748. "target": "Package",
  9749. "version": "[1.0.0.14, )"
  9750. },
  9751. "Microsoft.Bcl.AsyncInterfaces": {
  9752. "target": "Package",
  9753. "version": "[9.0.8, )"
  9754. },
  9755. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9756. "target": "Package",
  9757. "version": "[1.17.2, )"
  9758. },
  9759. "Minio": {
  9760. "target": "Package",
  9761. "version": "[6.0.5, )"
  9762. },
  9763. "RabbitMQ.Client": {
  9764. "target": "Package",
  9765. "version": "[6.8.1, )"
  9766. },
  9767. "Swashbuckle.AspNetCore": {
  9768. "target": "Package",
  9769. "version": "[5.6.3, )"
  9770. },
  9771. "log4net": {
  9772. "target": "Package",
  9773. "version": "[2.0.17, )"
  9774. }
  9775. },
  9776. "imports": [
  9777. "net461",
  9778. "net462",
  9779. "net47",
  9780. "net471",
  9781. "net472",
  9782. "net48",
  9783. "net481"
  9784. ],
  9785. "assetTargetFallback": true,
  9786. "warn": true,
  9787. "frameworkReferences": {
  9788. "Microsoft.AspNetCore.App": {
  9789. "privateAssets": "none"
  9790. },
  9791. "Microsoft.NETCore.App": {
  9792. "privateAssets": "all"
  9793. }
  9794. },
  9795. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9796. }
  9797. }
  9798. }
  9799. }