project.assets.json 380 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.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. "Coravel/4.2.1": {
  32. "type": "package",
  33. "dependencies": {
  34. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  35. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  36. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  37. },
  38. "compile": {
  39. "lib/netstandard2.0/Coravel.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/netstandard2.0/Coravel.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "FBoxClientDriver/1.2.0": {
  50. "type": "package",
  51. "dependencies": {
  52. "FBoxClientDriver.Contract": "1.2.0",
  53. "IdentityModel": "4.3.1",
  54. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  55. "Microsoft.CSharp": "4.5.0",
  56. "Microsoft.Extensions.Logging": "3.1.5",
  57. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  58. "Newtonsoft.Json": "12.0.3",
  59. "Nito.AsyncEx.Coordination": "5.0.0",
  60. "NodaTime": "2.4.7",
  61. "System.ComponentModel.EventBasedAsync": "4.3.0",
  62. "System.IO.FileSystem": "4.3.0",
  63. "System.Net.Http": "4.3.2",
  64. "System.Reactive": "4.4.1",
  65. "System.Runtime.Serialization.Primitives": "4.3.0",
  66. "System.Threading.Thread": "4.3.0"
  67. },
  68. "compile": {
  69. "lib/netstandard2.0/FBoxClientDriver.dll": {
  70. "related": ".xml"
  71. }
  72. },
  73. "runtime": {
  74. "lib/netstandard2.0/FBoxClientDriver.dll": {
  75. "related": ".xml"
  76. }
  77. }
  78. },
  79. "FBoxClientDriver.Contract/1.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Newtonsoft.Json": "12.0.3",
  83. "System.ComponentModel.Primitives": "4.3.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  87. "related": ".xml"
  88. }
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  92. "related": ".xml"
  93. }
  94. }
  95. },
  96. "FluentEmail.Core/3.0.2": {
  97. "type": "package",
  98. "dependencies": {
  99. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  103. },
  104. "runtime": {
  105. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  106. }
  107. },
  108. "FluentEmail.Smtp/3.0.2": {
  109. "type": "package",
  110. "dependencies": {
  111. "FluentEmail.Core": "3.0.2"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  115. },
  116. "runtime": {
  117. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  118. }
  119. },
  120. "Google.Protobuf/3.11.4": {
  121. "type": "package",
  122. "dependencies": {
  123. "System.Memory": "4.5.2"
  124. },
  125. "compile": {
  126. "lib/netstandard2.0/Google.Protobuf.dll": {
  127. "related": ".pdb;.xml"
  128. }
  129. },
  130. "runtime": {
  131. "lib/netstandard2.0/Google.Protobuf.dll": {
  132. "related": ".pdb;.xml"
  133. }
  134. }
  135. },
  136. "IdentityModel/4.3.1": {
  137. "type": "package",
  138. "dependencies": {
  139. "Newtonsoft.Json": "11.0.2",
  140. "System.Text.Encodings.Web": "4.7.0"
  141. },
  142. "compile": {
  143. "lib/netstandard2.0/IdentityModel.dll": {
  144. "related": ".pdb;.xml"
  145. }
  146. },
  147. "runtime": {
  148. "lib/netstandard2.0/IdentityModel.dll": {
  149. "related": ".pdb;.xml"
  150. }
  151. }
  152. },
  153. "InfluxData.Net/8.0.1": {
  154. "type": "package",
  155. "dependencies": {
  156. "Newtonsoft.Json": "10.0.3",
  157. "System.Net.Http": "4.3.2"
  158. },
  159. "compile": {
  160. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  161. "related": ".dll.config;.pdb"
  162. },
  163. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  164. "related": ".dll.config;.pdb"
  165. },
  166. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  167. "related": ".dll.config;.pdb"
  168. },
  169. "lib/netstandard2.0/InfluxData.Net.dll": {
  170. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  171. }
  172. },
  173. "runtime": {
  174. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  175. "related": ".dll.config;.pdb"
  176. },
  177. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  178. "related": ".dll.config;.pdb"
  179. },
  180. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  181. "related": ".dll.config;.pdb"
  182. },
  183. "lib/netstandard2.0/InfluxData.Net.dll": {
  184. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  185. }
  186. }
  187. },
  188. "InitQ/1.0.0.14": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  192. "Microsoft.Extensions.Hosting": "2.1.0",
  193. "Newtonsoft.Json": "13.0.1",
  194. "StackExchange.Redis": "1.2.4"
  195. },
  196. "compile": {
  197. "lib/netcoreapp2.1/InitQ.dll": {}
  198. },
  199. "runtime": {
  200. "lib/netcoreapp2.1/InitQ.dll": {}
  201. }
  202. },
  203. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  204. "type": "package",
  205. "dependencies": {
  206. "AdvancedStringBuilder": "0.1.0",
  207. "JavaScriptEngineSwitcher.Core": "3.21.0"
  208. },
  209. "compile": {
  210. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  211. "related": ".xml"
  212. }
  213. },
  214. "runtime": {
  215. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  216. "related": ".xml"
  217. }
  218. },
  219. "resource": {
  220. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  221. "locale": "ru-RU"
  222. }
  223. }
  224. },
  225. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  226. "type": "package",
  227. "runtimeTargets": {
  228. "runtimes/linux-x64/native/libChakraCore.so": {
  229. "assetType": "native",
  230. "rid": "linux-x64"
  231. }
  232. }
  233. },
  234. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  235. "type": "package",
  236. "build": {
  237. "build/_._": {}
  238. },
  239. "runtimeTargets": {
  240. "runtimes/win-x64/native/ChakraCore.dll": {
  241. "assetType": "native",
  242. "rid": "win-x64"
  243. }
  244. }
  245. },
  246. "JavaScriptEngineSwitcher.Core/3.21.0": {
  247. "type": "package",
  248. "dependencies": {
  249. "AdvancedStringBuilder": "0.1.0"
  250. },
  251. "compile": {
  252. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  253. "related": ".xml"
  254. }
  255. },
  256. "runtime": {
  257. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  258. "related": ".xml"
  259. }
  260. },
  261. "resource": {
  262. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  263. "locale": "ru-RU"
  264. }
  265. }
  266. },
  267. "K4os.Compression.LZ4/1.1.11": {
  268. "type": "package",
  269. "dependencies": {
  270. "System.Memory": "4.5.3"
  271. },
  272. "compile": {
  273. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  274. "related": ".xml"
  275. }
  276. },
  277. "runtime": {
  278. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  279. "related": ".xml"
  280. }
  281. }
  282. },
  283. "K4os.Compression.LZ4.Streams/1.1.11": {
  284. "type": "package",
  285. "dependencies": {
  286. "K4os.Compression.LZ4": "1.1.11",
  287. "K4os.Hash.xxHash": "1.0.6"
  288. },
  289. "compile": {
  290. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  291. "related": ".xml"
  292. }
  293. },
  294. "runtime": {
  295. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  296. "related": ".xml"
  297. }
  298. }
  299. },
  300. "K4os.Hash.xxHash/1.0.6": {
  301. "type": "package",
  302. "dependencies": {
  303. "System.Memory": "4.5.3"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  307. "related": ".xml"
  308. }
  309. },
  310. "runtime": {
  311. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  312. "related": ".xml"
  313. }
  314. }
  315. },
  316. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  317. "type": "package",
  318. "dependencies": {
  319. "Microsoft.EntityFrameworkCore": "5.0.0"
  320. },
  321. "compile": {
  322. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  323. "related": ".xml"
  324. }
  325. },
  326. "runtime": {
  327. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  328. "related": ".xml"
  329. }
  330. }
  331. },
  332. "log4net/2.0.17": {
  333. "type": "package",
  334. "dependencies": {
  335. "System.Configuration.ConfigurationManager": "4.5.0"
  336. },
  337. "compile": {
  338. "lib/netstandard2.0/log4net.dll": {
  339. "related": ".xml"
  340. }
  341. },
  342. "runtime": {
  343. "lib/netstandard2.0/log4net.dll": {
  344. "related": ".xml"
  345. }
  346. }
  347. },
  348. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  349. "type": "package",
  350. "dependencies": {
  351. "Newtonsoft.Json": "11.0.2"
  352. },
  353. "compile": {
  354. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  355. "related": ".pdb;.xml"
  356. }
  357. },
  358. "runtime": {
  359. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  360. "related": ".pdb;.xml"
  361. }
  362. }
  363. },
  364. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  365. "type": "package",
  366. "dependencies": {
  367. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  368. "System.Text.Encodings.Web": "4.5.0"
  369. },
  370. "compile": {
  371. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  377. "related": ".xml"
  378. }
  379. }
  380. },
  381. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  382. "type": "package",
  383. "dependencies": {
  384. "Microsoft.Extensions.Primitives": "5.0.0",
  385. "System.IO.Pipelines": "5.0.0"
  386. },
  387. "compile": {
  388. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  389. "related": ".xml"
  390. }
  391. },
  392. "runtime": {
  393. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  394. "related": ".xml"
  395. }
  396. }
  397. },
  398. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  399. "type": "package",
  400. "dependencies": {
  401. "Microsoft.Extensions.Logging.Console": "3.1.30",
  402. "Newtonsoft.Json": "13.0.1"
  403. },
  404. "compile": {
  405. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  406. },
  407. "runtime": {
  408. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  409. },
  410. "frameworkReferences": [
  411. "Microsoft.AspNetCore.App"
  412. ]
  413. },
  414. "Microsoft.CSharp/4.5.0": {
  415. "type": "package",
  416. "compile": {
  417. "ref/netcoreapp2.0/_._": {}
  418. },
  419. "runtime": {
  420. "lib/netcoreapp2.0/_._": {}
  421. }
  422. },
  423. "Microsoft.EntityFrameworkCore/5.0.0": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  427. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  428. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  429. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  430. "Microsoft.Extensions.Logging": "5.0.0",
  431. "System.Collections.Immutable": "5.0.0",
  432. "System.ComponentModel.Annotations": "5.0.0",
  433. "System.Diagnostics.DiagnosticSource": "5.0.0"
  434. },
  435. "compile": {
  436. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  437. "related": ".xml"
  438. }
  439. },
  440. "runtime": {
  441. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  442. "related": ".xml"
  443. }
  444. }
  445. },
  446. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  447. "type": "package",
  448. "compile": {
  449. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  450. "related": ".xml"
  451. }
  452. },
  453. "runtime": {
  454. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  455. "related": ".xml"
  456. }
  457. }
  458. },
  459. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  460. "type": "package",
  461. "compile": {
  462. "lib/netstandard2.0/_._": {}
  463. },
  464. "runtime": {
  465. "lib/netstandard2.0/_._": {}
  466. }
  467. },
  468. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  469. "type": "package",
  470. "dependencies": {
  471. "Microsoft.EntityFrameworkCore": "5.0.0",
  472. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  473. },
  474. "compile": {
  475. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  476. "related": ".xml"
  477. }
  478. },
  479. "runtime": {
  480. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  481. "related": ".xml"
  482. }
  483. }
  484. },
  485. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  486. "type": "package",
  487. "build": {
  488. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  489. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  490. },
  491. "buildMultiTargeting": {
  492. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  493. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  494. }
  495. },
  496. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  497. "type": "package",
  498. "dependencies": {
  499. "Microsoft.Extensions.Primitives": "5.0.0"
  500. },
  501. "compile": {
  502. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  503. "related": ".xml"
  504. }
  505. },
  506. "runtime": {
  507. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  508. "related": ".xml"
  509. }
  510. }
  511. },
  512. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  513. "type": "package",
  514. "dependencies": {
  515. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  516. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  517. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  518. "Microsoft.Extensions.Options": "5.0.0",
  519. "Microsoft.Extensions.Primitives": "5.0.0"
  520. },
  521. "compile": {
  522. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  523. "related": ".xml"
  524. }
  525. },
  526. "runtime": {
  527. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  528. "related": ".xml"
  529. }
  530. }
  531. },
  532. "Microsoft.Extensions.Configuration/5.0.0": {
  533. "type": "package",
  534. "dependencies": {
  535. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  536. "Microsoft.Extensions.Primitives": "5.0.0"
  537. },
  538. "compile": {
  539. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  540. "related": ".xml"
  541. }
  542. },
  543. "runtime": {
  544. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  545. "related": ".xml"
  546. }
  547. }
  548. },
  549. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  550. "type": "package",
  551. "dependencies": {
  552. "Microsoft.Extensions.Primitives": "5.0.0"
  553. },
  554. "compile": {
  555. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  556. "related": ".xml"
  557. }
  558. },
  559. "runtime": {
  560. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  561. "related": ".xml"
  562. }
  563. }
  564. },
  565. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  566. "type": "package",
  567. "dependencies": {
  568. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  569. },
  570. "compile": {
  571. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  572. "related": ".xml"
  573. }
  574. },
  575. "runtime": {
  576. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  577. "related": ".xml"
  578. }
  579. }
  580. },
  581. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  582. "type": "package",
  583. "dependencies": {
  584. "Microsoft.Extensions.Configuration": "5.0.0",
  585. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  586. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  587. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  588. "Microsoft.Extensions.Primitives": "5.0.0"
  589. },
  590. "compile": {
  591. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  592. "related": ".xml"
  593. }
  594. },
  595. "runtime": {
  596. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  597. "related": ".xml"
  598. }
  599. }
  600. },
  601. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  602. "type": "package",
  603. "dependencies": {
  604. "Microsoft.Extensions.Configuration": "5.0.0",
  605. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  606. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  607. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  608. },
  609. "compile": {
  610. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  611. "related": ".xml"
  612. }
  613. },
  614. "runtime": {
  615. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  616. "related": ".xml"
  617. }
  618. }
  619. },
  620. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  621. "type": "package",
  622. "dependencies": {
  623. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  624. },
  625. "compile": {
  626. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  627. "related": ".xml"
  628. }
  629. },
  630. "runtime": {
  631. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  632. "related": ".xml"
  633. }
  634. }
  635. },
  636. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  637. "type": "package",
  638. "compile": {
  639. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "runtime": {
  644. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  645. "related": ".xml"
  646. }
  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/5.0.0": {
  755. "type": "package",
  756. "dependencies": {
  757. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  758. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  759. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  760. "Microsoft.Extensions.Options": "5.0.0"
  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. },
  773. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  774. "type": "package",
  775. "compile": {
  776. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  777. "related": ".xml"
  778. }
  779. },
  780. "runtime": {
  781. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  782. "related": ".xml"
  783. }
  784. }
  785. },
  786. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.Logging": "3.1.30",
  790. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  791. },
  792. "compile": {
  793. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  794. "related": ".xml"
  795. }
  796. },
  797. "runtime": {
  798. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  799. "related": ".xml"
  800. }
  801. }
  802. },
  803. "Microsoft.Extensions.Logging.Console/3.1.30": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  807. "Microsoft.Extensions.Logging": "3.1.30",
  808. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  809. },
  810. "compile": {
  811. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  812. "related": ".xml"
  813. }
  814. },
  815. "runtime": {
  816. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  817. "related": ".xml"
  818. }
  819. }
  820. },
  821. "Microsoft.Extensions.Options/5.0.0": {
  822. "type": "package",
  823. "dependencies": {
  824. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  825. "Microsoft.Extensions.Primitives": "5.0.0"
  826. },
  827. "compile": {
  828. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  829. "related": ".xml"
  830. }
  831. },
  832. "runtime": {
  833. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  834. "related": ".xml"
  835. }
  836. }
  837. },
  838. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  839. "type": "package",
  840. "dependencies": {
  841. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  842. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  843. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  844. "Microsoft.Extensions.Options": "3.1.30"
  845. },
  846. "compile": {
  847. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  848. "related": ".xml"
  849. }
  850. },
  851. "runtime": {
  852. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  853. "related": ".xml"
  854. }
  855. }
  856. },
  857. "Microsoft.Extensions.Primitives/5.0.0": {
  858. "type": "package",
  859. "compile": {
  860. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  861. "related": ".xml"
  862. }
  863. },
  864. "runtime": {
  865. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  866. "related": ".xml"
  867. }
  868. }
  869. },
  870. "Microsoft.NETCore.Platforms/5.0.0": {
  871. "type": "package",
  872. "compile": {
  873. "lib/netstandard1.0/_._": {}
  874. },
  875. "runtime": {
  876. "lib/netstandard1.0/_._": {}
  877. }
  878. },
  879. "Microsoft.NETCore.Targets/1.1.0": {
  880. "type": "package",
  881. "compile": {
  882. "lib/netstandard1.0/_._": {}
  883. },
  884. "runtime": {
  885. "lib/netstandard1.0/_._": {}
  886. }
  887. },
  888. "Microsoft.OpenApi/1.2.3": {
  889. "type": "package",
  890. "compile": {
  891. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  892. "related": ".pdb;.xml"
  893. }
  894. },
  895. "runtime": {
  896. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  897. "related": ".pdb;.xml"
  898. }
  899. }
  900. },
  901. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  902. "type": "package",
  903. "build": {
  904. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  905. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  906. }
  907. },
  908. "Microsoft.Win32.Primitives/4.3.0": {
  909. "type": "package",
  910. "dependencies": {
  911. "Microsoft.NETCore.Platforms": "1.1.0",
  912. "Microsoft.NETCore.Targets": "1.1.0",
  913. "System.Runtime": "4.3.0"
  914. },
  915. "compile": {
  916. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  917. "related": ".xml"
  918. }
  919. }
  920. },
  921. "Microsoft.Win32.SystemEvents/5.0.0": {
  922. "type": "package",
  923. "dependencies": {
  924. "Microsoft.NETCore.Platforms": "5.0.0"
  925. },
  926. "compile": {
  927. "ref/netstandard2.0/_._": {
  928. "related": ".xml"
  929. }
  930. },
  931. "runtime": {
  932. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  933. "related": ".xml"
  934. }
  935. },
  936. "runtimeTargets": {
  937. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  938. "assetType": "runtime",
  939. "rid": "win"
  940. }
  941. }
  942. },
  943. "MQTTnet/4.3.7.1207": {
  944. "type": "package",
  945. "compile": {
  946. "lib/net5.0/MQTTnet.dll": {
  947. "related": ".xml"
  948. }
  949. },
  950. "runtime": {
  951. "lib/net5.0/MQTTnet.dll": {
  952. "related": ".xml"
  953. }
  954. }
  955. },
  956. "MQTTnet.AspNetCore/4.3.7.1207": {
  957. "type": "package",
  958. "dependencies": {
  959. "MQTTnet": "4.3.7.1207"
  960. },
  961. "compile": {
  962. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  963. "related": ".xml"
  964. }
  965. },
  966. "runtime": {
  967. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  968. "related": ".xml"
  969. }
  970. },
  971. "frameworkReferences": [
  972. "Microsoft.AspNetCore.App"
  973. ]
  974. },
  975. "MySql.Data/8.0.23": {
  976. "type": "package",
  977. "dependencies": {
  978. "BouncyCastle.NetCore": "1.8.5",
  979. "Google.Protobuf": "3.11.4",
  980. "K4os.Compression.LZ4": "1.1.11",
  981. "K4os.Compression.LZ4.Streams": "1.1.11",
  982. "K4os.Hash.xxHash": "1.0.6",
  983. "SSH.NET": "2020.0.0-beta1",
  984. "System.Buffers": "4.5.1",
  985. "System.Configuration.ConfigurationManager": "4.4.1",
  986. "System.Security.Permissions": "4.7.0",
  987. "System.Text.Encoding.CodePages": "4.4.0"
  988. },
  989. "compile": {
  990. "lib/net5.0/MySql.Data.dll": {
  991. "related": ".xml"
  992. },
  993. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  994. "lib/net5.0/Zstandard.Net.dll": {}
  995. },
  996. "runtime": {
  997. "lib/net5.0/MySql.Data.dll": {
  998. "related": ".xml"
  999. },
  1000. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1001. "lib/net5.0/Zstandard.Net.dll": {}
  1002. }
  1003. },
  1004. "MySqlConnector/1.1.0": {
  1005. "type": "package",
  1006. "compile": {
  1007. "lib/net5.0/MySqlConnector.dll": {
  1008. "related": ".xml"
  1009. }
  1010. },
  1011. "runtime": {
  1012. "lib/net5.0/MySqlConnector.dll": {
  1013. "related": ".xml"
  1014. }
  1015. }
  1016. },
  1017. "NETStandard.Library/1.6.1": {
  1018. "type": "package",
  1019. "dependencies": {
  1020. "Microsoft.NETCore.Platforms": "1.1.0",
  1021. "Microsoft.Win32.Primitives": "4.3.0",
  1022. "System.AppContext": "4.3.0",
  1023. "System.Collections": "4.3.0",
  1024. "System.Collections.Concurrent": "4.3.0",
  1025. "System.Console": "4.3.0",
  1026. "System.Diagnostics.Debug": "4.3.0",
  1027. "System.Diagnostics.Tools": "4.3.0",
  1028. "System.Diagnostics.Tracing": "4.3.0",
  1029. "System.Globalization": "4.3.0",
  1030. "System.Globalization.Calendars": "4.3.0",
  1031. "System.IO": "4.3.0",
  1032. "System.IO.Compression": "4.3.0",
  1033. "System.IO.Compression.ZipFile": "4.3.0",
  1034. "System.IO.FileSystem": "4.3.0",
  1035. "System.IO.FileSystem.Primitives": "4.3.0",
  1036. "System.Linq": "4.3.0",
  1037. "System.Linq.Expressions": "4.3.0",
  1038. "System.Net.Http": "4.3.0",
  1039. "System.Net.Primitives": "4.3.0",
  1040. "System.Net.Sockets": "4.3.0",
  1041. "System.ObjectModel": "4.3.0",
  1042. "System.Reflection": "4.3.0",
  1043. "System.Reflection.Extensions": "4.3.0",
  1044. "System.Reflection.Primitives": "4.3.0",
  1045. "System.Resources.ResourceManager": "4.3.0",
  1046. "System.Runtime": "4.3.0",
  1047. "System.Runtime.Extensions": "4.3.0",
  1048. "System.Runtime.Handles": "4.3.0",
  1049. "System.Runtime.InteropServices": "4.3.0",
  1050. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1051. "System.Runtime.Numerics": "4.3.0",
  1052. "System.Security.Cryptography.Algorithms": "4.3.0",
  1053. "System.Security.Cryptography.Encoding": "4.3.0",
  1054. "System.Security.Cryptography.Primitives": "4.3.0",
  1055. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1056. "System.Text.Encoding": "4.3.0",
  1057. "System.Text.Encoding.Extensions": "4.3.0",
  1058. "System.Text.RegularExpressions": "4.3.0",
  1059. "System.Threading": "4.3.0",
  1060. "System.Threading.Tasks": "4.3.0",
  1061. "System.Threading.Timer": "4.3.0",
  1062. "System.Xml.ReaderWriter": "4.3.0",
  1063. "System.Xml.XDocument": "4.3.0"
  1064. }
  1065. },
  1066. "Newtonsoft.Json/13.0.1": {
  1067. "type": "package",
  1068. "compile": {
  1069. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1070. "related": ".xml"
  1071. }
  1072. },
  1073. "runtime": {
  1074. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1075. "related": ".xml"
  1076. }
  1077. }
  1078. },
  1079. "Nito.AsyncEx.Coordination/5.0.0": {
  1080. "type": "package",
  1081. "dependencies": {
  1082. "Nito.AsyncEx.Tasks": "5.0.0",
  1083. "Nito.Collections.Deque": "1.0.4",
  1084. "Nito.Disposables": "2.0.0"
  1085. },
  1086. "compile": {
  1087. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1088. "related": ".xml"
  1089. }
  1090. },
  1091. "runtime": {
  1092. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1093. "related": ".xml"
  1094. }
  1095. }
  1096. },
  1097. "Nito.AsyncEx.Tasks/5.0.0": {
  1098. "type": "package",
  1099. "dependencies": {
  1100. "Nito.Disposables": "2.0.0"
  1101. },
  1102. "compile": {
  1103. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1104. "related": ".xml"
  1105. }
  1106. },
  1107. "runtime": {
  1108. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1109. "related": ".xml"
  1110. }
  1111. }
  1112. },
  1113. "Nito.Collections.Deque/1.0.4": {
  1114. "type": "package",
  1115. "compile": {
  1116. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1117. "related": ".xml"
  1118. }
  1119. },
  1120. "runtime": {
  1121. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1122. "related": ".xml"
  1123. }
  1124. }
  1125. },
  1126. "Nito.Disposables/2.0.0": {
  1127. "type": "package",
  1128. "dependencies": {
  1129. "System.Collections.Immutable": "1.4.0"
  1130. },
  1131. "compile": {
  1132. "lib/netstandard2.0/Nito.Disposables.dll": {
  1133. "related": ".pdb;.xml"
  1134. }
  1135. },
  1136. "runtime": {
  1137. "lib/netstandard2.0/Nito.Disposables.dll": {
  1138. "related": ".pdb;.xml"
  1139. }
  1140. }
  1141. },
  1142. "NodaTime/2.4.7": {
  1143. "type": "package",
  1144. "compile": {
  1145. "lib/netstandard2.0/NodaTime.dll": {
  1146. "related": ".pdb;.xml"
  1147. }
  1148. },
  1149. "runtime": {
  1150. "lib/netstandard2.0/NodaTime.dll": {
  1151. "related": ".pdb;.xml"
  1152. }
  1153. }
  1154. },
  1155. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1156. "type": "package",
  1157. "dependencies": {
  1158. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1159. "MySqlConnector": "1.1.0"
  1160. },
  1161. "compile": {
  1162. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1163. "related": ".xml"
  1164. }
  1165. },
  1166. "runtime": {
  1167. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1168. "related": ".xml"
  1169. }
  1170. }
  1171. },
  1172. "QRCoder/1.4.3": {
  1173. "type": "package",
  1174. "dependencies": {
  1175. "System.Drawing.Common": "5.0.3"
  1176. },
  1177. "compile": {
  1178. "lib/net5.0/QRCoder.dll": {}
  1179. },
  1180. "runtime": {
  1181. "lib/net5.0/QRCoder.dll": {}
  1182. }
  1183. },
  1184. "RabbitMQ.Client/6.8.1": {
  1185. "type": "package",
  1186. "dependencies": {
  1187. "System.Memory": "4.5.5",
  1188. "System.Threading.Channels": "7.0.0"
  1189. },
  1190. "compile": {
  1191. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1192. "related": ".xml"
  1193. }
  1194. },
  1195. "runtime": {
  1196. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1197. "related": ".xml"
  1198. }
  1199. }
  1200. },
  1201. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1202. "type": "package",
  1203. "runtimeTargets": {
  1204. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1205. "assetType": "native",
  1206. "rid": "debian.8-x64"
  1207. }
  1208. }
  1209. },
  1210. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1211. "type": "package",
  1212. "runtimeTargets": {
  1213. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1214. "assetType": "native",
  1215. "rid": "fedora.23-x64"
  1216. }
  1217. }
  1218. },
  1219. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1220. "type": "package",
  1221. "runtimeTargets": {
  1222. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1223. "assetType": "native",
  1224. "rid": "fedora.24-x64"
  1225. }
  1226. }
  1227. },
  1228. "runtime.native.System/4.3.0": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.NETCore.Platforms": "1.1.0",
  1232. "Microsoft.NETCore.Targets": "1.1.0"
  1233. },
  1234. "compile": {
  1235. "lib/netstandard1.0/_._": {}
  1236. },
  1237. "runtime": {
  1238. "lib/netstandard1.0/_._": {}
  1239. }
  1240. },
  1241. "runtime.native.System.IO.Compression/4.3.0": {
  1242. "type": "package",
  1243. "dependencies": {
  1244. "Microsoft.NETCore.Platforms": "1.1.0",
  1245. "Microsoft.NETCore.Targets": "1.1.0"
  1246. },
  1247. "compile": {
  1248. "lib/netstandard1.0/_._": {}
  1249. },
  1250. "runtime": {
  1251. "lib/netstandard1.0/_._": {}
  1252. }
  1253. },
  1254. "runtime.native.System.Net.Http/4.3.0": {
  1255. "type": "package",
  1256. "dependencies": {
  1257. "Microsoft.NETCore.Platforms": "1.1.0",
  1258. "Microsoft.NETCore.Targets": "1.1.0"
  1259. },
  1260. "compile": {
  1261. "lib/netstandard1.0/_._": {}
  1262. },
  1263. "runtime": {
  1264. "lib/netstandard1.0/_._": {}
  1265. }
  1266. },
  1267. "runtime.native.System.Net.Security/4.3.0": {
  1268. "type": "package",
  1269. "dependencies": {
  1270. "Microsoft.NETCore.Platforms": "1.1.0",
  1271. "Microsoft.NETCore.Targets": "1.1.0"
  1272. },
  1273. "compile": {
  1274. "lib/netstandard1.0/_._": {}
  1275. },
  1276. "runtime": {
  1277. "lib/netstandard1.0/_._": {}
  1278. }
  1279. },
  1280. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1281. "type": "package",
  1282. "dependencies": {
  1283. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1284. },
  1285. "compile": {
  1286. "lib/netstandard1.0/_._": {}
  1287. },
  1288. "runtime": {
  1289. "lib/netstandard1.0/_._": {}
  1290. }
  1291. },
  1292. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1293. "type": "package",
  1294. "dependencies": {
  1295. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1296. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1297. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1298. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1299. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1300. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1301. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1302. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1303. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1304. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1305. },
  1306. "compile": {
  1307. "lib/netstandard1.0/_._": {}
  1308. },
  1309. "runtime": {
  1310. "lib/netstandard1.0/_._": {}
  1311. }
  1312. },
  1313. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1314. "type": "package",
  1315. "runtimeTargets": {
  1316. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1317. "assetType": "native",
  1318. "rid": "opensuse.13.2-x64"
  1319. }
  1320. }
  1321. },
  1322. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1323. "type": "package",
  1324. "runtimeTargets": {
  1325. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1326. "assetType": "native",
  1327. "rid": "opensuse.42.1-x64"
  1328. }
  1329. }
  1330. },
  1331. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1332. "type": "package",
  1333. "runtimeTargets": {
  1334. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1335. "assetType": "native",
  1336. "rid": "osx.10.10-x64"
  1337. }
  1338. }
  1339. },
  1340. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1341. "type": "package",
  1342. "runtimeTargets": {
  1343. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1344. "assetType": "native",
  1345. "rid": "osx.10.10-x64"
  1346. }
  1347. }
  1348. },
  1349. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1350. "type": "package",
  1351. "runtimeTargets": {
  1352. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1353. "assetType": "native",
  1354. "rid": "rhel.7-x64"
  1355. }
  1356. }
  1357. },
  1358. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1359. "type": "package",
  1360. "runtimeTargets": {
  1361. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1362. "assetType": "native",
  1363. "rid": "ubuntu.14.04-x64"
  1364. }
  1365. }
  1366. },
  1367. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1368. "type": "package",
  1369. "runtimeTargets": {
  1370. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1371. "assetType": "native",
  1372. "rid": "ubuntu.16.04-x64"
  1373. }
  1374. }
  1375. },
  1376. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1377. "type": "package",
  1378. "runtimeTargets": {
  1379. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1380. "assetType": "native",
  1381. "rid": "ubuntu.16.10-x64"
  1382. }
  1383. }
  1384. },
  1385. "SixLabors.ImageSharp/2.1.6": {
  1386. "type": "package",
  1387. "dependencies": {
  1388. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1389. "System.Text.Encoding.CodePages": "5.0.0"
  1390. },
  1391. "compile": {
  1392. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1393. "related": ".xml"
  1394. }
  1395. },
  1396. "runtime": {
  1397. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1398. "related": ".xml"
  1399. }
  1400. }
  1401. },
  1402. "SSH.NET/2020.0.0-beta1": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "SshNet.Security.Cryptography": "[1.3.0]"
  1406. },
  1407. "compile": {
  1408. "lib/netstandard2.0/Renci.SshNet.dll": {
  1409. "related": ".xml"
  1410. }
  1411. },
  1412. "runtime": {
  1413. "lib/netstandard2.0/Renci.SshNet.dll": {
  1414. "related": ".xml"
  1415. }
  1416. }
  1417. },
  1418. "SshNet.Security.Cryptography/1.3.0": {
  1419. "type": "package",
  1420. "compile": {
  1421. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1422. "related": ".xml"
  1423. }
  1424. },
  1425. "runtime": {
  1426. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1427. "related": ".xml"
  1428. }
  1429. }
  1430. },
  1431. "StackExchange.Redis/1.2.4": {
  1432. "type": "package",
  1433. "dependencies": {
  1434. "NETStandard.Library": "1.6.1",
  1435. "System.Collections": "4.3.0",
  1436. "System.Collections.Concurrent": "4.3.0",
  1437. "System.Collections.NonGeneric": "4.3.0",
  1438. "System.Diagnostics.Tools": "4.3.0",
  1439. "System.IO.Compression": "4.3.0",
  1440. "System.IO.FileSystem": "4.3.0",
  1441. "System.Linq": "4.3.0",
  1442. "System.Net.NameResolution": "4.3.0",
  1443. "System.Net.Security": "4.3.0",
  1444. "System.Net.Sockets": "4.3.0",
  1445. "System.Reflection.Emit": "4.3.0",
  1446. "System.Reflection.Emit.Lightweight": "4.3.0",
  1447. "System.Reflection.TypeExtensions": "4.3.0",
  1448. "System.Runtime.Extensions": "4.3.0",
  1449. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1450. "System.Security.Cryptography.Algorithms": "4.3.0",
  1451. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1452. "System.Text.RegularExpressions": "4.3.0",
  1453. "System.Threading": "4.3.0",
  1454. "System.Threading.Thread": "4.3.0",
  1455. "System.Threading.ThreadPool": "4.3.0",
  1456. "System.Threading.Timer": "4.3.0"
  1457. },
  1458. "compile": {
  1459. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1460. "related": ".xml"
  1461. }
  1462. },
  1463. "runtime": {
  1464. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1465. "related": ".xml"
  1466. }
  1467. }
  1468. },
  1469. "Swashbuckle.AspNetCore/5.6.3": {
  1470. "type": "package",
  1471. "dependencies": {
  1472. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1473. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1474. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1475. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1476. },
  1477. "build": {
  1478. "build/Swashbuckle.AspNetCore.props": {}
  1479. }
  1480. },
  1481. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1482. "type": "package",
  1483. "dependencies": {
  1484. "Microsoft.OpenApi": "1.2.3"
  1485. },
  1486. "compile": {
  1487. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1488. "related": ".pdb;.xml"
  1489. }
  1490. },
  1491. "runtime": {
  1492. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1493. "related": ".pdb;.xml"
  1494. }
  1495. },
  1496. "frameworkReferences": [
  1497. "Microsoft.AspNetCore.App"
  1498. ]
  1499. },
  1500. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1501. "type": "package",
  1502. "dependencies": {
  1503. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1504. },
  1505. "compile": {
  1506. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1507. "related": ".pdb;.xml"
  1508. }
  1509. },
  1510. "runtime": {
  1511. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1512. "related": ".pdb;.xml"
  1513. }
  1514. },
  1515. "frameworkReferences": [
  1516. "Microsoft.AspNetCore.App"
  1517. ]
  1518. },
  1519. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1520. "type": "package",
  1521. "compile": {
  1522. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1523. "related": ".pdb;.xml"
  1524. }
  1525. },
  1526. "runtime": {
  1527. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1528. "related": ".pdb;.xml"
  1529. }
  1530. },
  1531. "frameworkReferences": [
  1532. "Microsoft.AspNetCore.App"
  1533. ]
  1534. },
  1535. "System.AppContext/4.3.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "System.Runtime": "4.3.0"
  1539. },
  1540. "compile": {
  1541. "ref/netstandard1.6/System.AppContext.dll": {
  1542. "related": ".xml"
  1543. }
  1544. },
  1545. "runtime": {
  1546. "lib/netstandard1.6/System.AppContext.dll": {}
  1547. }
  1548. },
  1549. "System.Buffers/4.5.1": {
  1550. "type": "package",
  1551. "compile": {
  1552. "ref/netcoreapp2.0/_._": {}
  1553. },
  1554. "runtime": {
  1555. "lib/netcoreapp2.0/_._": {}
  1556. }
  1557. },
  1558. "System.Collections/4.3.0": {
  1559. "type": "package",
  1560. "dependencies": {
  1561. "Microsoft.NETCore.Platforms": "1.1.0",
  1562. "Microsoft.NETCore.Targets": "1.1.0",
  1563. "System.Runtime": "4.3.0"
  1564. },
  1565. "compile": {
  1566. "ref/netstandard1.3/System.Collections.dll": {
  1567. "related": ".xml"
  1568. }
  1569. }
  1570. },
  1571. "System.Collections.Concurrent/4.3.0": {
  1572. "type": "package",
  1573. "dependencies": {
  1574. "System.Collections": "4.3.0",
  1575. "System.Diagnostics.Debug": "4.3.0",
  1576. "System.Diagnostics.Tracing": "4.3.0",
  1577. "System.Globalization": "4.3.0",
  1578. "System.Reflection": "4.3.0",
  1579. "System.Resources.ResourceManager": "4.3.0",
  1580. "System.Runtime": "4.3.0",
  1581. "System.Runtime.Extensions": "4.3.0",
  1582. "System.Threading": "4.3.0",
  1583. "System.Threading.Tasks": "4.3.0"
  1584. },
  1585. "compile": {
  1586. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1587. "related": ".xml"
  1588. }
  1589. },
  1590. "runtime": {
  1591. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1592. }
  1593. },
  1594. "System.Collections.Immutable/5.0.0": {
  1595. "type": "package",
  1596. "compile": {
  1597. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1598. "related": ".xml"
  1599. }
  1600. },
  1601. "runtime": {
  1602. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1603. "related": ".xml"
  1604. }
  1605. }
  1606. },
  1607. "System.Collections.NonGeneric/4.3.0": {
  1608. "type": "package",
  1609. "dependencies": {
  1610. "System.Diagnostics.Debug": "4.3.0",
  1611. "System.Globalization": "4.3.0",
  1612. "System.Resources.ResourceManager": "4.3.0",
  1613. "System.Runtime": "4.3.0",
  1614. "System.Runtime.Extensions": "4.3.0",
  1615. "System.Threading": "4.3.0"
  1616. },
  1617. "compile": {
  1618. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1619. "related": ".xml"
  1620. }
  1621. },
  1622. "runtime": {
  1623. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1624. }
  1625. },
  1626. "System.ComponentModel/4.3.0": {
  1627. "type": "package",
  1628. "dependencies": {
  1629. "System.Runtime": "4.3.0"
  1630. },
  1631. "compile": {
  1632. "ref/netstandard1.0/System.ComponentModel.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1638. }
  1639. },
  1640. "System.ComponentModel.Annotations/5.0.0": {
  1641. "type": "package",
  1642. "compile": {
  1643. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1644. "related": ".xml"
  1645. }
  1646. },
  1647. "runtime": {
  1648. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1649. "related": ".xml"
  1650. }
  1651. }
  1652. },
  1653. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "System.Resources.ResourceManager": "4.3.0",
  1657. "System.Runtime": "4.3.0",
  1658. "System.Threading": "4.3.0",
  1659. "System.Threading.Tasks": "4.3.0"
  1660. },
  1661. "compile": {
  1662. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1663. "related": ".xml"
  1664. }
  1665. },
  1666. "runtime": {
  1667. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1668. }
  1669. },
  1670. "System.ComponentModel.Primitives/4.3.0": {
  1671. "type": "package",
  1672. "dependencies": {
  1673. "System.ComponentModel": "4.3.0",
  1674. "System.Resources.ResourceManager": "4.3.0",
  1675. "System.Runtime": "4.3.0"
  1676. },
  1677. "compile": {
  1678. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1679. "related": ".xml"
  1680. }
  1681. },
  1682. "runtime": {
  1683. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1684. }
  1685. },
  1686. "System.Configuration.ConfigurationManager/4.5.0": {
  1687. "type": "package",
  1688. "dependencies": {
  1689. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1690. "System.Security.Permissions": "4.5.0"
  1691. },
  1692. "compile": {
  1693. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1694. "related": ".xml"
  1695. }
  1696. },
  1697. "runtime": {
  1698. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1699. }
  1700. },
  1701. "System.Console/4.3.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.NETCore.Platforms": "1.1.0",
  1705. "Microsoft.NETCore.Targets": "1.1.0",
  1706. "System.IO": "4.3.0",
  1707. "System.Runtime": "4.3.0",
  1708. "System.Text.Encoding": "4.3.0"
  1709. },
  1710. "compile": {
  1711. "ref/netstandard1.3/System.Console.dll": {
  1712. "related": ".xml"
  1713. }
  1714. }
  1715. },
  1716. "System.Diagnostics.Debug/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "Microsoft.NETCore.Platforms": "1.1.0",
  1720. "Microsoft.NETCore.Targets": "1.1.0",
  1721. "System.Runtime": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1725. "related": ".xml"
  1726. }
  1727. }
  1728. },
  1729. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1730. "type": "package",
  1731. "compile": {
  1732. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1733. "related": ".xml"
  1734. }
  1735. },
  1736. "runtime": {
  1737. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1738. "related": ".xml"
  1739. }
  1740. }
  1741. },
  1742. "System.Diagnostics.Tools/4.3.0": {
  1743. "type": "package",
  1744. "dependencies": {
  1745. "Microsoft.NETCore.Platforms": "1.1.0",
  1746. "Microsoft.NETCore.Targets": "1.1.0",
  1747. "System.Runtime": "4.3.0"
  1748. },
  1749. "compile": {
  1750. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1751. "related": ".xml"
  1752. }
  1753. }
  1754. },
  1755. "System.Diagnostics.Tracing/4.3.0": {
  1756. "type": "package",
  1757. "dependencies": {
  1758. "Microsoft.NETCore.Platforms": "1.1.0",
  1759. "Microsoft.NETCore.Targets": "1.1.0",
  1760. "System.Runtime": "4.3.0"
  1761. },
  1762. "compile": {
  1763. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1764. "related": ".xml"
  1765. }
  1766. }
  1767. },
  1768. "System.Drawing.Common/5.0.3": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "Microsoft.Win32.SystemEvents": "5.0.0"
  1772. },
  1773. "compile": {
  1774. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1775. "related": ".xml"
  1776. }
  1777. },
  1778. "runtime": {
  1779. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1780. "related": ".xml"
  1781. }
  1782. },
  1783. "runtimeTargets": {
  1784. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1785. "assetType": "runtime",
  1786. "rid": "unix"
  1787. },
  1788. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1789. "assetType": "runtime",
  1790. "rid": "win"
  1791. }
  1792. }
  1793. },
  1794. "System.Globalization/4.3.0": {
  1795. "type": "package",
  1796. "dependencies": {
  1797. "Microsoft.NETCore.Platforms": "1.1.0",
  1798. "Microsoft.NETCore.Targets": "1.1.0",
  1799. "System.Runtime": "4.3.0"
  1800. },
  1801. "compile": {
  1802. "ref/netstandard1.3/System.Globalization.dll": {
  1803. "related": ".xml"
  1804. }
  1805. }
  1806. },
  1807. "System.Globalization.Calendars/4.3.0": {
  1808. "type": "package",
  1809. "dependencies": {
  1810. "Microsoft.NETCore.Platforms": "1.1.0",
  1811. "Microsoft.NETCore.Targets": "1.1.0",
  1812. "System.Globalization": "4.3.0",
  1813. "System.Runtime": "4.3.0"
  1814. },
  1815. "compile": {
  1816. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1817. "related": ".xml"
  1818. }
  1819. }
  1820. },
  1821. "System.Globalization.Extensions/4.3.0": {
  1822. "type": "package",
  1823. "dependencies": {
  1824. "Microsoft.NETCore.Platforms": "1.1.0",
  1825. "System.Globalization": "4.3.0",
  1826. "System.Resources.ResourceManager": "4.3.0",
  1827. "System.Runtime": "4.3.0",
  1828. "System.Runtime.Extensions": "4.3.0",
  1829. "System.Runtime.InteropServices": "4.3.0"
  1830. },
  1831. "compile": {
  1832. "ref/netstandard1.3/_._": {
  1833. "related": ".xml"
  1834. }
  1835. },
  1836. "runtimeTargets": {
  1837. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1838. "assetType": "runtime",
  1839. "rid": "unix"
  1840. },
  1841. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1842. "assetType": "runtime",
  1843. "rid": "win"
  1844. }
  1845. }
  1846. },
  1847. "System.IO/4.3.0": {
  1848. "type": "package",
  1849. "dependencies": {
  1850. "Microsoft.NETCore.Platforms": "1.1.0",
  1851. "Microsoft.NETCore.Targets": "1.1.0",
  1852. "System.Runtime": "4.3.0",
  1853. "System.Text.Encoding": "4.3.0",
  1854. "System.Threading.Tasks": "4.3.0"
  1855. },
  1856. "compile": {
  1857. "ref/netstandard1.5/System.IO.dll": {
  1858. "related": ".xml"
  1859. }
  1860. }
  1861. },
  1862. "System.IO.Compression/4.3.0": {
  1863. "type": "package",
  1864. "dependencies": {
  1865. "Microsoft.NETCore.Platforms": "1.1.0",
  1866. "System.Buffers": "4.3.0",
  1867. "System.Collections": "4.3.0",
  1868. "System.Diagnostics.Debug": "4.3.0",
  1869. "System.IO": "4.3.0",
  1870. "System.Resources.ResourceManager": "4.3.0",
  1871. "System.Runtime": "4.3.0",
  1872. "System.Runtime.Extensions": "4.3.0",
  1873. "System.Runtime.Handles": "4.3.0",
  1874. "System.Runtime.InteropServices": "4.3.0",
  1875. "System.Text.Encoding": "4.3.0",
  1876. "System.Threading": "4.3.0",
  1877. "System.Threading.Tasks": "4.3.0",
  1878. "runtime.native.System": "4.3.0",
  1879. "runtime.native.System.IO.Compression": "4.3.0"
  1880. },
  1881. "compile": {
  1882. "ref/netstandard1.3/System.IO.Compression.dll": {
  1883. "related": ".xml"
  1884. }
  1885. },
  1886. "runtimeTargets": {
  1887. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1888. "assetType": "runtime",
  1889. "rid": "unix"
  1890. },
  1891. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1892. "assetType": "runtime",
  1893. "rid": "win"
  1894. }
  1895. }
  1896. },
  1897. "System.IO.Compression.ZipFile/4.3.0": {
  1898. "type": "package",
  1899. "dependencies": {
  1900. "System.Buffers": "4.3.0",
  1901. "System.IO": "4.3.0",
  1902. "System.IO.Compression": "4.3.0",
  1903. "System.IO.FileSystem": "4.3.0",
  1904. "System.IO.FileSystem.Primitives": "4.3.0",
  1905. "System.Resources.ResourceManager": "4.3.0",
  1906. "System.Runtime": "4.3.0",
  1907. "System.Runtime.Extensions": "4.3.0",
  1908. "System.Text.Encoding": "4.3.0"
  1909. },
  1910. "compile": {
  1911. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1912. "related": ".xml"
  1913. }
  1914. },
  1915. "runtime": {
  1916. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1917. }
  1918. },
  1919. "System.IO.FileSystem/4.3.0": {
  1920. "type": "package",
  1921. "dependencies": {
  1922. "Microsoft.NETCore.Platforms": "1.1.0",
  1923. "Microsoft.NETCore.Targets": "1.1.0",
  1924. "System.IO": "4.3.0",
  1925. "System.IO.FileSystem.Primitives": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Runtime.Handles": "4.3.0",
  1928. "System.Text.Encoding": "4.3.0",
  1929. "System.Threading.Tasks": "4.3.0"
  1930. },
  1931. "compile": {
  1932. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1933. "related": ".xml"
  1934. }
  1935. }
  1936. },
  1937. "System.IO.FileSystem.Primitives/4.3.0": {
  1938. "type": "package",
  1939. "dependencies": {
  1940. "System.Runtime": "4.3.0"
  1941. },
  1942. "compile": {
  1943. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1944. "related": ".xml"
  1945. }
  1946. },
  1947. "runtime": {
  1948. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1949. }
  1950. },
  1951. "System.IO.Pipelines/5.0.0": {
  1952. "type": "package",
  1953. "compile": {
  1954. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1955. "related": ".xml"
  1956. }
  1957. },
  1958. "runtime": {
  1959. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1960. "related": ".xml"
  1961. }
  1962. }
  1963. },
  1964. "System.Linq/4.3.0": {
  1965. "type": "package",
  1966. "dependencies": {
  1967. "System.Collections": "4.3.0",
  1968. "System.Diagnostics.Debug": "4.3.0",
  1969. "System.Resources.ResourceManager": "4.3.0",
  1970. "System.Runtime": "4.3.0",
  1971. "System.Runtime.Extensions": "4.3.0"
  1972. },
  1973. "compile": {
  1974. "ref/netstandard1.6/System.Linq.dll": {
  1975. "related": ".xml"
  1976. }
  1977. },
  1978. "runtime": {
  1979. "lib/netstandard1.6/System.Linq.dll": {}
  1980. }
  1981. },
  1982. "System.Linq.Expressions/4.3.0": {
  1983. "type": "package",
  1984. "dependencies": {
  1985. "System.Collections": "4.3.0",
  1986. "System.Diagnostics.Debug": "4.3.0",
  1987. "System.Globalization": "4.3.0",
  1988. "System.IO": "4.3.0",
  1989. "System.Linq": "4.3.0",
  1990. "System.ObjectModel": "4.3.0",
  1991. "System.Reflection": "4.3.0",
  1992. "System.Reflection.Emit": "4.3.0",
  1993. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1994. "System.Reflection.Emit.Lightweight": "4.3.0",
  1995. "System.Reflection.Extensions": "4.3.0",
  1996. "System.Reflection.Primitives": "4.3.0",
  1997. "System.Reflection.TypeExtensions": "4.3.0",
  1998. "System.Resources.ResourceManager": "4.3.0",
  1999. "System.Runtime": "4.3.0",
  2000. "System.Runtime.Extensions": "4.3.0",
  2001. "System.Threading": "4.3.0"
  2002. },
  2003. "compile": {
  2004. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "runtime": {
  2009. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2010. }
  2011. },
  2012. "System.Memory/4.5.5": {
  2013. "type": "package",
  2014. "compile": {
  2015. "ref/netcoreapp2.1/_._": {}
  2016. },
  2017. "runtime": {
  2018. "lib/netcoreapp2.1/_._": {}
  2019. }
  2020. },
  2021. "System.Net.Http/4.3.2": {
  2022. "type": "package",
  2023. "dependencies": {
  2024. "Microsoft.NETCore.Platforms": "1.1.0",
  2025. "System.Collections": "4.3.0",
  2026. "System.Diagnostics.Debug": "4.3.0",
  2027. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2028. "System.Diagnostics.Tracing": "4.3.0",
  2029. "System.Globalization": "4.3.0",
  2030. "System.Globalization.Extensions": "4.3.0",
  2031. "System.IO": "4.3.0",
  2032. "System.IO.FileSystem": "4.3.0",
  2033. "System.Net.Primitives": "4.3.0",
  2034. "System.Resources.ResourceManager": "4.3.0",
  2035. "System.Runtime": "4.3.0",
  2036. "System.Runtime.Extensions": "4.3.0",
  2037. "System.Runtime.Handles": "4.3.0",
  2038. "System.Runtime.InteropServices": "4.3.0",
  2039. "System.Security.Cryptography.Algorithms": "4.3.0",
  2040. "System.Security.Cryptography.Encoding": "4.3.0",
  2041. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2042. "System.Security.Cryptography.Primitives": "4.3.0",
  2043. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2044. "System.Text.Encoding": "4.3.0",
  2045. "System.Threading": "4.3.0",
  2046. "System.Threading.Tasks": "4.3.0",
  2047. "runtime.native.System": "4.3.0",
  2048. "runtime.native.System.Net.Http": "4.3.0",
  2049. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard1.3/System.Net.Http.dll": {}
  2053. },
  2054. "runtimeTargets": {
  2055. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2056. "assetType": "runtime",
  2057. "rid": "unix"
  2058. },
  2059. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2060. "assetType": "runtime",
  2061. "rid": "win"
  2062. }
  2063. }
  2064. },
  2065. "System.Net.NameResolution/4.3.0": {
  2066. "type": "package",
  2067. "dependencies": {
  2068. "Microsoft.NETCore.Platforms": "1.1.0",
  2069. "System.Collections": "4.3.0",
  2070. "System.Diagnostics.Tracing": "4.3.0",
  2071. "System.Globalization": "4.3.0",
  2072. "System.Net.Primitives": "4.3.0",
  2073. "System.Resources.ResourceManager": "4.3.0",
  2074. "System.Runtime": "4.3.0",
  2075. "System.Runtime.Extensions": "4.3.0",
  2076. "System.Runtime.Handles": "4.3.0",
  2077. "System.Runtime.InteropServices": "4.3.0",
  2078. "System.Security.Principal.Windows": "4.3.0",
  2079. "System.Threading": "4.3.0",
  2080. "System.Threading.Tasks": "4.3.0",
  2081. "runtime.native.System": "4.3.0"
  2082. },
  2083. "compile": {
  2084. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2085. "related": ".xml"
  2086. }
  2087. },
  2088. "runtimeTargets": {
  2089. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2090. "assetType": "runtime",
  2091. "rid": "unix"
  2092. },
  2093. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2094. "assetType": "runtime",
  2095. "rid": "win"
  2096. }
  2097. }
  2098. },
  2099. "System.Net.Primitives/4.3.0": {
  2100. "type": "package",
  2101. "dependencies": {
  2102. "Microsoft.NETCore.Platforms": "1.1.0",
  2103. "Microsoft.NETCore.Targets": "1.1.0",
  2104. "System.Runtime": "4.3.0",
  2105. "System.Runtime.Handles": "4.3.0"
  2106. },
  2107. "compile": {
  2108. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2109. "related": ".xml"
  2110. }
  2111. }
  2112. },
  2113. "System.Net.Security/4.3.0": {
  2114. "type": "package",
  2115. "dependencies": {
  2116. "Microsoft.NETCore.Platforms": "1.1.0",
  2117. "Microsoft.Win32.Primitives": "4.3.0",
  2118. "System.Collections": "4.3.0",
  2119. "System.Collections.Concurrent": "4.3.0",
  2120. "System.Diagnostics.Tracing": "4.3.0",
  2121. "System.Globalization": "4.3.0",
  2122. "System.Globalization.Extensions": "4.3.0",
  2123. "System.IO": "4.3.0",
  2124. "System.Net.Primitives": "4.3.0",
  2125. "System.Resources.ResourceManager": "4.3.0",
  2126. "System.Runtime": "4.3.0",
  2127. "System.Runtime.Extensions": "4.3.0",
  2128. "System.Runtime.Handles": "4.3.0",
  2129. "System.Runtime.InteropServices": "4.3.0",
  2130. "System.Security.Claims": "4.3.0",
  2131. "System.Security.Cryptography.Algorithms": "4.3.0",
  2132. "System.Security.Cryptography.Encoding": "4.3.0",
  2133. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2134. "System.Security.Cryptography.Primitives": "4.3.0",
  2135. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2136. "System.Security.Principal": "4.3.0",
  2137. "System.Text.Encoding": "4.3.0",
  2138. "System.Threading": "4.3.0",
  2139. "System.Threading.Tasks": "4.3.0",
  2140. "System.Threading.ThreadPool": "4.3.0",
  2141. "runtime.native.System": "4.3.0",
  2142. "runtime.native.System.Net.Security": "4.3.0",
  2143. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2144. },
  2145. "compile": {
  2146. "ref/netstandard1.3/System.Net.Security.dll": {
  2147. "related": ".xml"
  2148. }
  2149. },
  2150. "runtimeTargets": {
  2151. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2152. "assetType": "runtime",
  2153. "rid": "unix"
  2154. },
  2155. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2156. "assetType": "runtime",
  2157. "rid": "win"
  2158. }
  2159. }
  2160. },
  2161. "System.Net.Sockets/4.3.0": {
  2162. "type": "package",
  2163. "dependencies": {
  2164. "Microsoft.NETCore.Platforms": "1.1.0",
  2165. "Microsoft.NETCore.Targets": "1.1.0",
  2166. "System.IO": "4.3.0",
  2167. "System.Net.Primitives": "4.3.0",
  2168. "System.Runtime": "4.3.0",
  2169. "System.Threading.Tasks": "4.3.0"
  2170. },
  2171. "compile": {
  2172. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2173. "related": ".xml"
  2174. }
  2175. }
  2176. },
  2177. "System.ObjectModel/4.3.0": {
  2178. "type": "package",
  2179. "dependencies": {
  2180. "System.Collections": "4.3.0",
  2181. "System.Diagnostics.Debug": "4.3.0",
  2182. "System.Resources.ResourceManager": "4.3.0",
  2183. "System.Runtime": "4.3.0",
  2184. "System.Threading": "4.3.0"
  2185. },
  2186. "compile": {
  2187. "ref/netstandard1.3/System.ObjectModel.dll": {
  2188. "related": ".xml"
  2189. }
  2190. },
  2191. "runtime": {
  2192. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2193. }
  2194. },
  2195. "System.Reactive/4.4.1": {
  2196. "type": "package",
  2197. "compile": {
  2198. "lib/netcoreapp3.0/_._": {}
  2199. },
  2200. "runtime": {
  2201. "lib/netcoreapp3.0/_._": {}
  2202. },
  2203. "build": {
  2204. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2205. }
  2206. },
  2207. "System.Reflection/4.3.0": {
  2208. "type": "package",
  2209. "dependencies": {
  2210. "Microsoft.NETCore.Platforms": "1.1.0",
  2211. "Microsoft.NETCore.Targets": "1.1.0",
  2212. "System.IO": "4.3.0",
  2213. "System.Reflection.Primitives": "4.3.0",
  2214. "System.Runtime": "4.3.0"
  2215. },
  2216. "compile": {
  2217. "ref/netstandard1.5/System.Reflection.dll": {
  2218. "related": ".xml"
  2219. }
  2220. }
  2221. },
  2222. "System.Reflection.Emit/4.3.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "System.IO": "4.3.0",
  2226. "System.Reflection": "4.3.0",
  2227. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2228. "System.Reflection.Primitives": "4.3.0",
  2229. "System.Runtime": "4.3.0"
  2230. },
  2231. "compile": {
  2232. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2233. "related": ".xml"
  2234. }
  2235. },
  2236. "runtime": {
  2237. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2238. }
  2239. },
  2240. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2241. "type": "package",
  2242. "dependencies": {
  2243. "System.Reflection": "4.3.0",
  2244. "System.Reflection.Primitives": "4.3.0",
  2245. "System.Runtime": "4.3.0"
  2246. },
  2247. "compile": {
  2248. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2249. "related": ".xml"
  2250. }
  2251. },
  2252. "runtime": {
  2253. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2254. }
  2255. },
  2256. "System.Reflection.Emit.Lightweight/4.3.0": {
  2257. "type": "package",
  2258. "dependencies": {
  2259. "System.Reflection": "4.3.0",
  2260. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2261. "System.Reflection.Primitives": "4.3.0",
  2262. "System.Runtime": "4.3.0"
  2263. },
  2264. "compile": {
  2265. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2266. "related": ".xml"
  2267. }
  2268. },
  2269. "runtime": {
  2270. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2271. }
  2272. },
  2273. "System.Reflection.Extensions/4.3.0": {
  2274. "type": "package",
  2275. "dependencies": {
  2276. "Microsoft.NETCore.Platforms": "1.1.0",
  2277. "Microsoft.NETCore.Targets": "1.1.0",
  2278. "System.Reflection": "4.3.0",
  2279. "System.Runtime": "4.3.0"
  2280. },
  2281. "compile": {
  2282. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2283. "related": ".xml"
  2284. }
  2285. }
  2286. },
  2287. "System.Reflection.Primitives/4.3.0": {
  2288. "type": "package",
  2289. "dependencies": {
  2290. "Microsoft.NETCore.Platforms": "1.1.0",
  2291. "Microsoft.NETCore.Targets": "1.1.0",
  2292. "System.Runtime": "4.3.0"
  2293. },
  2294. "compile": {
  2295. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2296. "related": ".xml"
  2297. }
  2298. }
  2299. },
  2300. "System.Reflection.TypeExtensions/4.3.0": {
  2301. "type": "package",
  2302. "dependencies": {
  2303. "System.Reflection": "4.3.0",
  2304. "System.Runtime": "4.3.0"
  2305. },
  2306. "compile": {
  2307. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2308. "related": ".xml"
  2309. }
  2310. },
  2311. "runtime": {
  2312. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2313. }
  2314. },
  2315. "System.Resources.ResourceManager/4.3.0": {
  2316. "type": "package",
  2317. "dependencies": {
  2318. "Microsoft.NETCore.Platforms": "1.1.0",
  2319. "Microsoft.NETCore.Targets": "1.1.0",
  2320. "System.Globalization": "4.3.0",
  2321. "System.Reflection": "4.3.0",
  2322. "System.Runtime": "4.3.0"
  2323. },
  2324. "compile": {
  2325. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2326. "related": ".xml"
  2327. }
  2328. }
  2329. },
  2330. "System.Runtime/4.3.0": {
  2331. "type": "package",
  2332. "dependencies": {
  2333. "Microsoft.NETCore.Platforms": "1.1.0",
  2334. "Microsoft.NETCore.Targets": "1.1.0"
  2335. },
  2336. "compile": {
  2337. "ref/netstandard1.5/System.Runtime.dll": {
  2338. "related": ".xml"
  2339. }
  2340. }
  2341. },
  2342. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2343. "type": "package",
  2344. "compile": {
  2345. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2346. "related": ".xml"
  2347. }
  2348. },
  2349. "runtime": {
  2350. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2351. "related": ".xml"
  2352. }
  2353. }
  2354. },
  2355. "System.Runtime.Extensions/4.3.0": {
  2356. "type": "package",
  2357. "dependencies": {
  2358. "Microsoft.NETCore.Platforms": "1.1.0",
  2359. "Microsoft.NETCore.Targets": "1.1.0",
  2360. "System.Runtime": "4.3.0"
  2361. },
  2362. "compile": {
  2363. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2364. "related": ".xml"
  2365. }
  2366. }
  2367. },
  2368. "System.Runtime.Handles/4.3.0": {
  2369. "type": "package",
  2370. "dependencies": {
  2371. "Microsoft.NETCore.Platforms": "1.1.0",
  2372. "Microsoft.NETCore.Targets": "1.1.0",
  2373. "System.Runtime": "4.3.0"
  2374. },
  2375. "compile": {
  2376. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2377. "related": ".xml"
  2378. }
  2379. }
  2380. },
  2381. "System.Runtime.InteropServices/4.3.0": {
  2382. "type": "package",
  2383. "dependencies": {
  2384. "Microsoft.NETCore.Platforms": "1.1.0",
  2385. "Microsoft.NETCore.Targets": "1.1.0",
  2386. "System.Reflection": "4.3.0",
  2387. "System.Reflection.Primitives": "4.3.0",
  2388. "System.Runtime": "4.3.0",
  2389. "System.Runtime.Handles": "4.3.0"
  2390. },
  2391. "compile": {
  2392. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2393. }
  2394. },
  2395. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2396. "type": "package",
  2397. "dependencies": {
  2398. "System.Reflection": "4.3.0",
  2399. "System.Reflection.Extensions": "4.3.0",
  2400. "System.Resources.ResourceManager": "4.3.0",
  2401. "System.Runtime": "4.3.0",
  2402. "System.Runtime.InteropServices": "4.3.0",
  2403. "System.Threading": "4.3.0",
  2404. "runtime.native.System": "4.3.0"
  2405. },
  2406. "compile": {
  2407. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2408. },
  2409. "runtime": {
  2410. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2411. },
  2412. "runtimeTargets": {
  2413. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2414. "assetType": "runtime",
  2415. "rid": "unix"
  2416. },
  2417. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2418. "assetType": "runtime",
  2419. "rid": "win"
  2420. }
  2421. }
  2422. },
  2423. "System.Runtime.Numerics/4.3.0": {
  2424. "type": "package",
  2425. "dependencies": {
  2426. "System.Globalization": "4.3.0",
  2427. "System.Resources.ResourceManager": "4.3.0",
  2428. "System.Runtime": "4.3.0",
  2429. "System.Runtime.Extensions": "4.3.0"
  2430. },
  2431. "compile": {
  2432. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2433. "related": ".xml"
  2434. }
  2435. },
  2436. "runtime": {
  2437. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2438. }
  2439. },
  2440. "System.Runtime.Serialization.Primitives/4.3.0": {
  2441. "type": "package",
  2442. "dependencies": {
  2443. "System.Resources.ResourceManager": "4.3.0",
  2444. "System.Runtime": "4.3.0"
  2445. },
  2446. "compile": {
  2447. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2448. "related": ".xml"
  2449. }
  2450. },
  2451. "runtime": {
  2452. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2453. }
  2454. },
  2455. "System.Security.AccessControl/4.7.0": {
  2456. "type": "package",
  2457. "dependencies": {
  2458. "Microsoft.NETCore.Platforms": "3.1.0",
  2459. "System.Security.Principal.Windows": "4.7.0"
  2460. },
  2461. "compile": {
  2462. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2463. "related": ".xml"
  2464. }
  2465. },
  2466. "runtime": {
  2467. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2468. "related": ".xml"
  2469. }
  2470. },
  2471. "runtimeTargets": {
  2472. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2473. "assetType": "runtime",
  2474. "rid": "win"
  2475. }
  2476. }
  2477. },
  2478. "System.Security.Claims/4.3.0": {
  2479. "type": "package",
  2480. "dependencies": {
  2481. "System.Collections": "4.3.0",
  2482. "System.Globalization": "4.3.0",
  2483. "System.IO": "4.3.0",
  2484. "System.Resources.ResourceManager": "4.3.0",
  2485. "System.Runtime": "4.3.0",
  2486. "System.Runtime.Extensions": "4.3.0",
  2487. "System.Security.Principal": "4.3.0"
  2488. },
  2489. "compile": {
  2490. "ref/netstandard1.3/_._": {
  2491. "related": ".xml"
  2492. }
  2493. },
  2494. "runtime": {
  2495. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2496. }
  2497. },
  2498. "System.Security.Cryptography.Algorithms/4.3.0": {
  2499. "type": "package",
  2500. "dependencies": {
  2501. "Microsoft.NETCore.Platforms": "1.1.0",
  2502. "System.Collections": "4.3.0",
  2503. "System.IO": "4.3.0",
  2504. "System.Resources.ResourceManager": "4.3.0",
  2505. "System.Runtime": "4.3.0",
  2506. "System.Runtime.Extensions": "4.3.0",
  2507. "System.Runtime.Handles": "4.3.0",
  2508. "System.Runtime.InteropServices": "4.3.0",
  2509. "System.Runtime.Numerics": "4.3.0",
  2510. "System.Security.Cryptography.Encoding": "4.3.0",
  2511. "System.Security.Cryptography.Primitives": "4.3.0",
  2512. "System.Text.Encoding": "4.3.0",
  2513. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2514. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2515. },
  2516. "compile": {
  2517. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2518. },
  2519. "runtimeTargets": {
  2520. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2521. "assetType": "runtime",
  2522. "rid": "osx"
  2523. },
  2524. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2525. "assetType": "runtime",
  2526. "rid": "unix"
  2527. },
  2528. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2529. "assetType": "runtime",
  2530. "rid": "win"
  2531. }
  2532. }
  2533. },
  2534. "System.Security.Cryptography.Cng/4.3.0": {
  2535. "type": "package",
  2536. "dependencies": {
  2537. "Microsoft.NETCore.Platforms": "1.1.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.Runtime.Handles": "4.3.0",
  2543. "System.Runtime.InteropServices": "4.3.0",
  2544. "System.Security.Cryptography.Algorithms": "4.3.0",
  2545. "System.Security.Cryptography.Encoding": "4.3.0",
  2546. "System.Security.Cryptography.Primitives": "4.3.0",
  2547. "System.Text.Encoding": "4.3.0"
  2548. },
  2549. "compile": {
  2550. "ref/netstandard1.6/_._": {}
  2551. },
  2552. "runtimeTargets": {
  2553. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2554. "assetType": "runtime",
  2555. "rid": "unix"
  2556. },
  2557. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2558. "assetType": "runtime",
  2559. "rid": "win"
  2560. }
  2561. }
  2562. },
  2563. "System.Security.Cryptography.Csp/4.3.0": {
  2564. "type": "package",
  2565. "dependencies": {
  2566. "Microsoft.NETCore.Platforms": "1.1.0",
  2567. "System.IO": "4.3.0",
  2568. "System.Reflection": "4.3.0",
  2569. "System.Resources.ResourceManager": "4.3.0",
  2570. "System.Runtime": "4.3.0",
  2571. "System.Runtime.Extensions": "4.3.0",
  2572. "System.Runtime.Handles": "4.3.0",
  2573. "System.Runtime.InteropServices": "4.3.0",
  2574. "System.Security.Cryptography.Algorithms": "4.3.0",
  2575. "System.Security.Cryptography.Encoding": "4.3.0",
  2576. "System.Security.Cryptography.Primitives": "4.3.0",
  2577. "System.Text.Encoding": "4.3.0",
  2578. "System.Threading": "4.3.0"
  2579. },
  2580. "compile": {
  2581. "ref/netstandard1.3/_._": {}
  2582. },
  2583. "runtimeTargets": {
  2584. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2585. "assetType": "runtime",
  2586. "rid": "unix"
  2587. },
  2588. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2589. "assetType": "runtime",
  2590. "rid": "win"
  2591. }
  2592. }
  2593. },
  2594. "System.Security.Cryptography.Encoding/4.3.0": {
  2595. "type": "package",
  2596. "dependencies": {
  2597. "Microsoft.NETCore.Platforms": "1.1.0",
  2598. "System.Collections": "4.3.0",
  2599. "System.Collections.Concurrent": "4.3.0",
  2600. "System.Linq": "4.3.0",
  2601. "System.Resources.ResourceManager": "4.3.0",
  2602. "System.Runtime": "4.3.0",
  2603. "System.Runtime.Extensions": "4.3.0",
  2604. "System.Runtime.Handles": "4.3.0",
  2605. "System.Runtime.InteropServices": "4.3.0",
  2606. "System.Security.Cryptography.Primitives": "4.3.0",
  2607. "System.Text.Encoding": "4.3.0",
  2608. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2609. },
  2610. "compile": {
  2611. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2612. "related": ".xml"
  2613. }
  2614. },
  2615. "runtimeTargets": {
  2616. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2617. "assetType": "runtime",
  2618. "rid": "unix"
  2619. },
  2620. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2621. "assetType": "runtime",
  2622. "rid": "win"
  2623. }
  2624. }
  2625. },
  2626. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2627. "type": "package",
  2628. "dependencies": {
  2629. "System.Collections": "4.3.0",
  2630. "System.IO": "4.3.0",
  2631. "System.Resources.ResourceManager": "4.3.0",
  2632. "System.Runtime": "4.3.0",
  2633. "System.Runtime.Extensions": "4.3.0",
  2634. "System.Runtime.Handles": "4.3.0",
  2635. "System.Runtime.InteropServices": "4.3.0",
  2636. "System.Runtime.Numerics": "4.3.0",
  2637. "System.Security.Cryptography.Algorithms": "4.3.0",
  2638. "System.Security.Cryptography.Encoding": "4.3.0",
  2639. "System.Security.Cryptography.Primitives": "4.3.0",
  2640. "System.Text.Encoding": "4.3.0",
  2641. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2642. },
  2643. "compile": {
  2644. "ref/netstandard1.6/_._": {}
  2645. },
  2646. "runtime": {
  2647. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2648. },
  2649. "runtimeTargets": {
  2650. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2651. "assetType": "runtime",
  2652. "rid": "unix"
  2653. }
  2654. }
  2655. },
  2656. "System.Security.Cryptography.Primitives/4.3.0": {
  2657. "type": "package",
  2658. "dependencies": {
  2659. "System.Diagnostics.Debug": "4.3.0",
  2660. "System.Globalization": "4.3.0",
  2661. "System.IO": "4.3.0",
  2662. "System.Resources.ResourceManager": "4.3.0",
  2663. "System.Runtime": "4.3.0",
  2664. "System.Threading": "4.3.0",
  2665. "System.Threading.Tasks": "4.3.0"
  2666. },
  2667. "compile": {
  2668. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2669. },
  2670. "runtime": {
  2671. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2672. }
  2673. },
  2674. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2675. "type": "package",
  2676. "compile": {
  2677. "ref/netstandard2.0/_._": {
  2678. "related": ".xml"
  2679. }
  2680. },
  2681. "runtime": {
  2682. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2683. },
  2684. "runtimeTargets": {
  2685. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2686. "assetType": "runtime",
  2687. "rid": "win"
  2688. }
  2689. }
  2690. },
  2691. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "Microsoft.NETCore.Platforms": "1.1.0",
  2695. "System.Collections": "4.3.0",
  2696. "System.Diagnostics.Debug": "4.3.0",
  2697. "System.Globalization": "4.3.0",
  2698. "System.Globalization.Calendars": "4.3.0",
  2699. "System.IO": "4.3.0",
  2700. "System.IO.FileSystem": "4.3.0",
  2701. "System.IO.FileSystem.Primitives": "4.3.0",
  2702. "System.Resources.ResourceManager": "4.3.0",
  2703. "System.Runtime": "4.3.0",
  2704. "System.Runtime.Extensions": "4.3.0",
  2705. "System.Runtime.Handles": "4.3.0",
  2706. "System.Runtime.InteropServices": "4.3.0",
  2707. "System.Runtime.Numerics": "4.3.0",
  2708. "System.Security.Cryptography.Algorithms": "4.3.0",
  2709. "System.Security.Cryptography.Cng": "4.3.0",
  2710. "System.Security.Cryptography.Csp": "4.3.0",
  2711. "System.Security.Cryptography.Encoding": "4.3.0",
  2712. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2713. "System.Security.Cryptography.Primitives": "4.3.0",
  2714. "System.Text.Encoding": "4.3.0",
  2715. "System.Threading": "4.3.0",
  2716. "runtime.native.System": "4.3.0",
  2717. "runtime.native.System.Net.Http": "4.3.0",
  2718. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2719. },
  2720. "compile": {
  2721. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2722. "related": ".xml"
  2723. }
  2724. },
  2725. "runtimeTargets": {
  2726. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2727. "assetType": "runtime",
  2728. "rid": "unix"
  2729. },
  2730. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2731. "assetType": "runtime",
  2732. "rid": "win"
  2733. }
  2734. }
  2735. },
  2736. "System.Security.Permissions/4.7.0": {
  2737. "type": "package",
  2738. "dependencies": {
  2739. "System.Security.AccessControl": "4.7.0",
  2740. "System.Windows.Extensions": "4.7.0"
  2741. },
  2742. "compile": {
  2743. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2744. "related": ".xml"
  2745. }
  2746. },
  2747. "runtime": {
  2748. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2749. "related": ".xml"
  2750. }
  2751. }
  2752. },
  2753. "System.Security.Principal/4.3.0": {
  2754. "type": "package",
  2755. "dependencies": {
  2756. "System.Runtime": "4.3.0"
  2757. },
  2758. "compile": {
  2759. "ref/netstandard1.0/System.Security.Principal.dll": {
  2760. "related": ".xml"
  2761. }
  2762. },
  2763. "runtime": {
  2764. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2765. }
  2766. },
  2767. "System.Security.Principal.Windows/4.7.0": {
  2768. "type": "package",
  2769. "compile": {
  2770. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2771. "related": ".xml"
  2772. }
  2773. },
  2774. "runtime": {
  2775. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2776. "related": ".xml"
  2777. }
  2778. },
  2779. "runtimeTargets": {
  2780. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2781. "assetType": "runtime",
  2782. "rid": "unix"
  2783. },
  2784. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2785. "assetType": "runtime",
  2786. "rid": "win"
  2787. }
  2788. }
  2789. },
  2790. "System.Text.Encoding/4.3.0": {
  2791. "type": "package",
  2792. "dependencies": {
  2793. "Microsoft.NETCore.Platforms": "1.1.0",
  2794. "Microsoft.NETCore.Targets": "1.1.0",
  2795. "System.Runtime": "4.3.0"
  2796. },
  2797. "compile": {
  2798. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2799. "related": ".xml"
  2800. }
  2801. }
  2802. },
  2803. "System.Text.Encoding.CodePages/5.0.0": {
  2804. "type": "package",
  2805. "dependencies": {
  2806. "Microsoft.NETCore.Platforms": "5.0.0"
  2807. },
  2808. "compile": {
  2809. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2810. "related": ".xml"
  2811. }
  2812. },
  2813. "runtime": {
  2814. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2815. "related": ".xml"
  2816. }
  2817. },
  2818. "runtimeTargets": {
  2819. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2820. "assetType": "runtime",
  2821. "rid": "win"
  2822. }
  2823. }
  2824. },
  2825. "System.Text.Encoding.Extensions/4.3.0": {
  2826. "type": "package",
  2827. "dependencies": {
  2828. "Microsoft.NETCore.Platforms": "1.1.0",
  2829. "Microsoft.NETCore.Targets": "1.1.0",
  2830. "System.Runtime": "4.3.0",
  2831. "System.Text.Encoding": "4.3.0"
  2832. },
  2833. "compile": {
  2834. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2835. "related": ".xml"
  2836. }
  2837. }
  2838. },
  2839. "System.Text.Encodings.Web/4.7.0": {
  2840. "type": "package",
  2841. "compile": {
  2842. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2843. "related": ".xml"
  2844. }
  2845. },
  2846. "runtime": {
  2847. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2848. "related": ".xml"
  2849. }
  2850. }
  2851. },
  2852. "System.Text.RegularExpressions/4.3.0": {
  2853. "type": "package",
  2854. "dependencies": {
  2855. "System.Runtime": "4.3.0"
  2856. },
  2857. "compile": {
  2858. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2859. },
  2860. "runtime": {
  2861. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2862. }
  2863. },
  2864. "System.Threading/4.3.0": {
  2865. "type": "package",
  2866. "dependencies": {
  2867. "System.Runtime": "4.3.0",
  2868. "System.Threading.Tasks": "4.3.0"
  2869. },
  2870. "compile": {
  2871. "ref/netstandard1.3/System.Threading.dll": {
  2872. "related": ".xml"
  2873. }
  2874. },
  2875. "runtime": {
  2876. "lib/netstandard1.3/System.Threading.dll": {}
  2877. }
  2878. },
  2879. "System.Threading.Channels/7.0.0": {
  2880. "type": "package",
  2881. "compile": {
  2882. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2883. "related": ".xml"
  2884. }
  2885. },
  2886. "runtime": {
  2887. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2888. "related": ".xml"
  2889. }
  2890. },
  2891. "build": {
  2892. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2893. }
  2894. },
  2895. "System.Threading.Tasks/4.3.0": {
  2896. "type": "package",
  2897. "dependencies": {
  2898. "Microsoft.NETCore.Platforms": "1.1.0",
  2899. "Microsoft.NETCore.Targets": "1.1.0",
  2900. "System.Runtime": "4.3.0"
  2901. },
  2902. "compile": {
  2903. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2904. "related": ".xml"
  2905. }
  2906. }
  2907. },
  2908. "System.Threading.Tasks.Extensions/4.3.0": {
  2909. "type": "package",
  2910. "dependencies": {
  2911. "System.Collections": "4.3.0",
  2912. "System.Runtime": "4.3.0",
  2913. "System.Threading.Tasks": "4.3.0"
  2914. },
  2915. "compile": {
  2916. "lib/netstandard1.0/_._": {
  2917. "related": ".xml"
  2918. }
  2919. },
  2920. "runtime": {
  2921. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2922. "related": ".xml"
  2923. }
  2924. }
  2925. },
  2926. "System.Threading.Thread/4.3.0": {
  2927. "type": "package",
  2928. "dependencies": {
  2929. "System.Runtime": "4.3.0"
  2930. },
  2931. "compile": {
  2932. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2933. "related": ".xml"
  2934. }
  2935. },
  2936. "runtime": {
  2937. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2938. }
  2939. },
  2940. "System.Threading.ThreadPool/4.3.0": {
  2941. "type": "package",
  2942. "dependencies": {
  2943. "System.Runtime": "4.3.0",
  2944. "System.Runtime.Handles": "4.3.0"
  2945. },
  2946. "compile": {
  2947. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2948. "related": ".xml"
  2949. }
  2950. },
  2951. "runtime": {
  2952. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2953. }
  2954. },
  2955. "System.Threading.Timer/4.3.0": {
  2956. "type": "package",
  2957. "dependencies": {
  2958. "Microsoft.NETCore.Platforms": "1.1.0",
  2959. "Microsoft.NETCore.Targets": "1.1.0",
  2960. "System.Runtime": "4.3.0"
  2961. },
  2962. "compile": {
  2963. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2964. "related": ".xml"
  2965. }
  2966. }
  2967. },
  2968. "System.Windows.Extensions/4.7.0": {
  2969. "type": "package",
  2970. "dependencies": {
  2971. "System.Drawing.Common": "4.7.0"
  2972. },
  2973. "compile": {
  2974. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2975. "related": ".xml"
  2976. }
  2977. },
  2978. "runtime": {
  2979. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2980. "related": ".xml"
  2981. }
  2982. },
  2983. "runtimeTargets": {
  2984. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2985. "assetType": "runtime",
  2986. "rid": "win"
  2987. }
  2988. }
  2989. },
  2990. "System.Xml.ReaderWriter/4.3.0": {
  2991. "type": "package",
  2992. "dependencies": {
  2993. "System.Collections": "4.3.0",
  2994. "System.Diagnostics.Debug": "4.3.0",
  2995. "System.Globalization": "4.3.0",
  2996. "System.IO": "4.3.0",
  2997. "System.IO.FileSystem": "4.3.0",
  2998. "System.IO.FileSystem.Primitives": "4.3.0",
  2999. "System.Resources.ResourceManager": "4.3.0",
  3000. "System.Runtime": "4.3.0",
  3001. "System.Runtime.Extensions": "4.3.0",
  3002. "System.Runtime.InteropServices": "4.3.0",
  3003. "System.Text.Encoding": "4.3.0",
  3004. "System.Text.Encoding.Extensions": "4.3.0",
  3005. "System.Text.RegularExpressions": "4.3.0",
  3006. "System.Threading.Tasks": "4.3.0",
  3007. "System.Threading.Tasks.Extensions": "4.3.0"
  3008. },
  3009. "compile": {
  3010. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3011. "related": ".xml"
  3012. }
  3013. },
  3014. "runtime": {
  3015. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3016. }
  3017. },
  3018. "System.Xml.XDocument/4.3.0": {
  3019. "type": "package",
  3020. "dependencies": {
  3021. "System.Collections": "4.3.0",
  3022. "System.Diagnostics.Debug": "4.3.0",
  3023. "System.Diagnostics.Tools": "4.3.0",
  3024. "System.Globalization": "4.3.0",
  3025. "System.IO": "4.3.0",
  3026. "System.Reflection": "4.3.0",
  3027. "System.Resources.ResourceManager": "4.3.0",
  3028. "System.Runtime": "4.3.0",
  3029. "System.Runtime.Extensions": "4.3.0",
  3030. "System.Text.Encoding": "4.3.0",
  3031. "System.Threading": "4.3.0",
  3032. "System.Xml.ReaderWriter": "4.3.0"
  3033. },
  3034. "compile": {
  3035. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3036. "related": ".xml"
  3037. }
  3038. },
  3039. "runtime": {
  3040. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3041. }
  3042. },
  3043. "ZXing.Net/0.16.9": {
  3044. "type": "package",
  3045. "compile": {
  3046. "lib/net5.0/zxing.dll": {
  3047. "related": ".XML"
  3048. }
  3049. },
  3050. "runtime": {
  3051. "lib/net5.0/zxing.dll": {
  3052. "related": ".XML"
  3053. }
  3054. }
  3055. },
  3056. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3057. "type": "package",
  3058. "dependencies": {
  3059. "SixLabors.ImageSharp": "2.1.3",
  3060. "ZXing.Net": "0.16.9"
  3061. },
  3062. "compile": {
  3063. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3064. "related": ".pdb;.xml"
  3065. }
  3066. },
  3067. "runtime": {
  3068. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3069. "related": ".pdb;.xml"
  3070. }
  3071. }
  3072. },
  3073. "Ropin.Core.Common/1.0.0": {
  3074. "type": "project",
  3075. "framework": ".NETCoreApp,Version=v5.0",
  3076. "dependencies": {
  3077. "Coravel": "4.2.1",
  3078. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3079. "Newtonsoft.Json": "13.0.1",
  3080. "QRCoder": "1.4.3",
  3081. "SixLabors.ImageSharp": "2.1.6",
  3082. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3083. },
  3084. "compile": {
  3085. "bin/placeholder/Ropin.Core.Common.dll": {}
  3086. },
  3087. "runtime": {
  3088. "bin/placeholder/Ropin.Core.Common.dll": {}
  3089. }
  3090. },
  3091. "Ropin.Inspection.Common/1.0.0": {
  3092. "type": "project",
  3093. "framework": ".NETCoreApp,Version=v5.0",
  3094. "dependencies": {
  3095. "FluentEmail.Smtp": "3.0.2",
  3096. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3097. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3098. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3099. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3100. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3101. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3102. "Microsoft.Extensions.Configuration": "5.0.0",
  3103. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3104. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3105. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3106. "Microsoft.Extensions.Http": "5.0.0",
  3107. "Newtonsoft.Json": "13.0.1",
  3108. "RabbitMQ.Client": "6.8.1",
  3109. "log4net": "2.0.17"
  3110. },
  3111. "compile": {
  3112. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3113. },
  3114. "runtime": {
  3115. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3116. }
  3117. },
  3118. "Ropin.Inspection.Model/1.0.0": {
  3119. "type": "project",
  3120. "framework": ".NETCoreApp,Version=v5.0",
  3121. "dependencies": {
  3122. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3123. "Microsoft.EntityFrameworkCore": "5.0.0",
  3124. "MySql.Data": "8.0.23",
  3125. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3126. "Ropin.Inspection.Common": "1.0.0"
  3127. },
  3128. "compile": {
  3129. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3130. },
  3131. "runtime": {
  3132. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3133. }
  3134. },
  3135. "Ropin.Inspection.Repository/1.0.0": {
  3136. "type": "project",
  3137. "framework": ".NETCoreApp,Version=v5.0",
  3138. "dependencies": {
  3139. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3140. "Microsoft.EntityFrameworkCore": "5.0.0",
  3141. "Ropin.Inspection.Model": "1.0.0"
  3142. },
  3143. "compile": {
  3144. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3145. },
  3146. "runtime": {
  3147. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3148. }
  3149. }
  3150. }
  3151. },
  3152. "libraries": {
  3153. "AdvancedStringBuilder/0.1.0": {
  3154. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3155. "type": "package",
  3156. "path": "advancedstringbuilder/0.1.0",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3161. "advancedstringbuilder.nuspec",
  3162. "lib/net40-client/AdvancedStringBuilder.dll",
  3163. "lib/net40-client/AdvancedStringBuilder.xml",
  3164. "lib/net45/AdvancedStringBuilder.dll",
  3165. "lib/net45/AdvancedStringBuilder.xml",
  3166. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3167. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3168. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3169. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3170. ]
  3171. },
  3172. "BouncyCastle.NetCore/1.8.5": {
  3173. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3174. "type": "package",
  3175. "path": "bouncycastle.netcore/1.8.5",
  3176. "files": [
  3177. ".nupkg.metadata",
  3178. ".signature.p7s",
  3179. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3180. "bouncycastle.netcore.nuspec",
  3181. "lib/Mono/BouncyCastle.Crypto.dll",
  3182. "lib/Mono/BouncyCastle.Crypto.xml",
  3183. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3184. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3185. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3186. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3187. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3188. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3189. "lib/net20/BouncyCastle.Crypto.dll",
  3190. "lib/net20/BouncyCastle.Crypto.xml",
  3191. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3192. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3193. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3194. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3195. ]
  3196. },
  3197. "Coravel/4.2.1": {
  3198. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3199. "type": "package",
  3200. "path": "coravel/4.2.1",
  3201. "files": [
  3202. ".nupkg.metadata",
  3203. ".signature.p7s",
  3204. "coravel.4.2.1.nupkg.sha512",
  3205. "coravel.nuspec",
  3206. "lib/netstandard2.0/Coravel.dll",
  3207. "lib/netstandard2.0/Coravel.xml",
  3208. "logo.png",
  3209. "readme.md"
  3210. ]
  3211. },
  3212. "FBoxClientDriver/1.2.0": {
  3213. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3214. "type": "package",
  3215. "path": "fboxclientdriver/1.2.0",
  3216. "files": [
  3217. ".nupkg.metadata",
  3218. ".signature.p7s",
  3219. "fboxclientdriver.1.2.0.nupkg.sha512",
  3220. "fboxclientdriver.nuspec",
  3221. "lib/netstandard2.0/FBoxClientDriver.dll",
  3222. "lib/netstandard2.0/FBoxClientDriver.xml"
  3223. ]
  3224. },
  3225. "FBoxClientDriver.Contract/1.2.0": {
  3226. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3227. "type": "package",
  3228. "path": "fboxclientdriver.contract/1.2.0",
  3229. "files": [
  3230. ".nupkg.metadata",
  3231. ".signature.p7s",
  3232. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3233. "fboxclientdriver.contract.nuspec",
  3234. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3235. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3236. ]
  3237. },
  3238. "FluentEmail.Core/3.0.2": {
  3239. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3240. "type": "package",
  3241. "path": "fluentemail.core/3.0.2",
  3242. "files": [
  3243. ".nupkg.metadata",
  3244. ".signature.p7s",
  3245. "fluentemail.core.3.0.2.nupkg.sha512",
  3246. "fluentemail.core.nuspec",
  3247. "fluentemail_logo_64x64.png",
  3248. "lib/netstandard2.0/FluentEmail.Core.dll"
  3249. ]
  3250. },
  3251. "FluentEmail.Smtp/3.0.2": {
  3252. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3253. "type": "package",
  3254. "path": "fluentemail.smtp/3.0.2",
  3255. "files": [
  3256. ".nupkg.metadata",
  3257. ".signature.p7s",
  3258. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3259. "fluentemail.smtp.nuspec",
  3260. "fluentemail_logo_64x64.png",
  3261. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3262. ]
  3263. },
  3264. "Google.Protobuf/3.11.4": {
  3265. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3266. "type": "package",
  3267. "path": "google.protobuf/3.11.4",
  3268. "files": [
  3269. ".nupkg.metadata",
  3270. ".signature.p7s",
  3271. "google.protobuf.3.11.4.nupkg.sha512",
  3272. "google.protobuf.nuspec",
  3273. "lib/net45/Google.Protobuf.dll",
  3274. "lib/net45/Google.Protobuf.pdb",
  3275. "lib/net45/Google.Protobuf.xml",
  3276. "lib/netstandard1.0/Google.Protobuf.dll",
  3277. "lib/netstandard1.0/Google.Protobuf.pdb",
  3278. "lib/netstandard1.0/Google.Protobuf.xml",
  3279. "lib/netstandard2.0/Google.Protobuf.dll",
  3280. "lib/netstandard2.0/Google.Protobuf.pdb",
  3281. "lib/netstandard2.0/Google.Protobuf.xml"
  3282. ]
  3283. },
  3284. "IdentityModel/4.3.1": {
  3285. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3286. "type": "package",
  3287. "path": "identitymodel/4.3.1",
  3288. "files": [
  3289. ".nupkg.metadata",
  3290. ".signature.p7s",
  3291. "icon.jpg",
  3292. "identitymodel.4.3.1.nupkg.sha512",
  3293. "identitymodel.nuspec",
  3294. "lib/net461/IdentityModel.dll",
  3295. "lib/net461/IdentityModel.pdb",
  3296. "lib/net461/IdentityModel.xml",
  3297. "lib/net472/IdentityModel.dll",
  3298. "lib/net472/IdentityModel.pdb",
  3299. "lib/net472/IdentityModel.xml",
  3300. "lib/netstandard2.0/IdentityModel.dll",
  3301. "lib/netstandard2.0/IdentityModel.pdb",
  3302. "lib/netstandard2.0/IdentityModel.xml"
  3303. ]
  3304. },
  3305. "InfluxData.Net/8.0.1": {
  3306. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3307. "type": "package",
  3308. "path": "influxdata.net/8.0.1",
  3309. "files": [
  3310. ".nupkg.metadata",
  3311. ".signature.p7s",
  3312. "influxdata.net.8.0.1.nupkg.sha512",
  3313. "influxdata.net.nuspec",
  3314. "lib/net461/InfluxData.Net.Common.dll",
  3315. "lib/net461/InfluxData.Net.Common.dll.config",
  3316. "lib/net461/InfluxData.Net.Common.pdb",
  3317. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3318. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3319. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3320. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3321. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3322. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3323. "lib/net461/InfluxData.Net.dll",
  3324. "lib/net461/InfluxData.Net.dll.config",
  3325. "lib/net461/InfluxData.Net.pdb",
  3326. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3327. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3328. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3329. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3330. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3331. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3332. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3333. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3334. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3335. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3336. "lib/netstandard2.0/InfluxData.Net.dll",
  3337. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3338. "lib/netstandard2.0/InfluxData.Net.pdb"
  3339. ]
  3340. },
  3341. "InitQ/1.0.0.14": {
  3342. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3343. "type": "package",
  3344. "path": "initq/1.0.0.14",
  3345. "files": [
  3346. ".nupkg.metadata",
  3347. ".signature.p7s",
  3348. "initq.1.0.0.14.nupkg.sha512",
  3349. "initq.nuspec",
  3350. "lib/netcoreapp2.1/InitQ.dll"
  3351. ]
  3352. },
  3353. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3354. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3355. "type": "package",
  3356. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "LICENSE.txt",
  3361. "advanced-string-builder-license.txt",
  3362. "chakra-samples-license.txt",
  3363. "icon.png",
  3364. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3365. "javascriptengineswitcher.chakracore.nuspec",
  3366. "jsrt-dotnet-license.txt",
  3367. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3368. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3369. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3370. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3371. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3372. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3373. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3374. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3375. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3376. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3377. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3378. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3379. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3380. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3381. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3382. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3383. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3384. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3385. "polyfills-for-old-dot-net-license.txt",
  3386. "readme.txt"
  3387. ]
  3388. },
  3389. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3390. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3391. "type": "package",
  3392. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3393. "files": [
  3394. ".nupkg.metadata",
  3395. ".signature.p7s",
  3396. "LICENSE.txt",
  3397. "chakra-core-license.txt",
  3398. "icon.png",
  3399. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3400. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3401. "readme.txt",
  3402. "runtimes/linux-x64/native/libChakraCore.so"
  3403. ]
  3404. },
  3405. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3406. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3407. "type": "package",
  3408. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3409. "hasTools": true,
  3410. "files": [
  3411. ".nupkg.metadata",
  3412. ".signature.p7s",
  3413. "LICENSE.txt",
  3414. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3415. "chakra-core-license.txt",
  3416. "icon.png",
  3417. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3418. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3419. "readme.txt",
  3420. "runtimes/win-x64/native/ChakraCore.dll",
  3421. "tools/Install.ps1",
  3422. "tools/Uninstall.ps1"
  3423. ]
  3424. },
  3425. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3426. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3427. "type": "package",
  3428. "path": "javascriptengineswitcher.core/3.21.0",
  3429. "files": [
  3430. ".nupkg.metadata",
  3431. ".signature.p7s",
  3432. "LICENSE.txt",
  3433. "advanced-string-builder-license.txt",
  3434. "icon.png",
  3435. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3436. "javascriptengineswitcher.core.nuspec",
  3437. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3438. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3439. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3440. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3441. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3442. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3443. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3444. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3445. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3446. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3447. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3448. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3449. "readme.txt"
  3450. ]
  3451. },
  3452. "K4os.Compression.LZ4/1.1.11": {
  3453. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3454. "type": "package",
  3455. "path": "k4os.compression.lz4/1.1.11",
  3456. "files": [
  3457. ".nupkg.metadata",
  3458. ".signature.p7s",
  3459. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3460. "k4os.compression.lz4.nuspec",
  3461. "lib/net45/K4os.Compression.LZ4.dll",
  3462. "lib/net45/K4os.Compression.LZ4.xml",
  3463. "lib/net46/K4os.Compression.LZ4.dll",
  3464. "lib/net46/K4os.Compression.LZ4.xml",
  3465. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3466. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3467. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3468. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3469. ]
  3470. },
  3471. "K4os.Compression.LZ4.Streams/1.1.11": {
  3472. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3473. "type": "package",
  3474. "path": "k4os.compression.lz4.streams/1.1.11",
  3475. "files": [
  3476. ".nupkg.metadata",
  3477. ".signature.p7s",
  3478. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3479. "k4os.compression.lz4.streams.nuspec",
  3480. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3481. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3482. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3483. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3484. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3485. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3486. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3487. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3488. ]
  3489. },
  3490. "K4os.Hash.xxHash/1.0.6": {
  3491. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3492. "type": "package",
  3493. "path": "k4os.hash.xxhash/1.0.6",
  3494. "files": [
  3495. ".nupkg.metadata",
  3496. ".signature.p7s",
  3497. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3498. "k4os.hash.xxhash.nuspec",
  3499. "lib/net45/K4os.Hash.xxHash.dll",
  3500. "lib/net45/K4os.Hash.xxHash.xml",
  3501. "lib/net46/K4os.Hash.xxHash.dll",
  3502. "lib/net46/K4os.Hash.xxHash.xml",
  3503. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3504. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3505. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3506. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3507. ]
  3508. },
  3509. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3510. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3511. "type": "package",
  3512. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3513. "files": [
  3514. ".nupkg.metadata",
  3515. ".signature.p7s",
  3516. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3517. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3518. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3519. "linqkit.microsoft.entityframeworkcore.nuspec"
  3520. ]
  3521. },
  3522. "log4net/2.0.17": {
  3523. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3524. "type": "package",
  3525. "path": "log4net/2.0.17",
  3526. "files": [
  3527. ".nupkg.metadata",
  3528. ".signature.p7s",
  3529. "lib/net20/log4net.dll",
  3530. "lib/net20/log4net.xml",
  3531. "lib/net35/log4net.dll",
  3532. "lib/net35/log4net.xml",
  3533. "lib/net40-client/log4net.dll",
  3534. "lib/net40-client/log4net.xml",
  3535. "lib/net40/log4net.dll",
  3536. "lib/net40/log4net.xml",
  3537. "lib/net45/log4net.dll",
  3538. "lib/net45/log4net.xml",
  3539. "lib/netstandard1.3/log4net.dll",
  3540. "lib/netstandard1.3/log4net.xml",
  3541. "lib/netstandard2.0/log4net.dll",
  3542. "lib/netstandard2.0/log4net.xml",
  3543. "log4net.2.0.17.nupkg.sha512",
  3544. "log4net.nuspec",
  3545. "package-icon.png"
  3546. ]
  3547. },
  3548. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3549. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3550. "type": "package",
  3551. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3552. "files": [
  3553. ".nupkg.metadata",
  3554. ".signature.p7s",
  3555. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3556. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3557. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3558. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3559. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3560. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3561. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3562. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3563. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3564. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3565. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3566. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3567. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3568. "microsoft.aspnet.signalr.client.nuspec"
  3569. ]
  3570. },
  3571. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3572. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3573. "type": "package",
  3574. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3575. "files": [
  3576. ".nupkg.metadata",
  3577. ".signature.p7s",
  3578. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3579. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3580. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3581. "microsoft.aspnetcore.http.abstractions.nuspec"
  3582. ]
  3583. },
  3584. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3585. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3586. "type": "package",
  3587. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3588. "files": [
  3589. ".nupkg.metadata",
  3590. ".signature.p7s",
  3591. "Icon.png",
  3592. "THIRD-PARTY-NOTICES.TXT",
  3593. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3594. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3595. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3596. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3597. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3598. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3599. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3600. "microsoft.aspnetcore.http.features.nuspec"
  3601. ]
  3602. },
  3603. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3604. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3605. "type": "package",
  3606. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3607. "files": [
  3608. ".nupkg.metadata",
  3609. ".signature.p7s",
  3610. "Icon.png",
  3611. "THIRD-PARTY-NOTICES.TXT",
  3612. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3613. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3614. "microsoft.aspnetcore.nodeservices.nuspec"
  3615. ]
  3616. },
  3617. "Microsoft.CSharp/4.5.0": {
  3618. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3619. "type": "package",
  3620. "path": "microsoft.csharp/4.5.0",
  3621. "files": [
  3622. ".nupkg.metadata",
  3623. ".signature.p7s",
  3624. "LICENSE.TXT",
  3625. "THIRD-PARTY-NOTICES.TXT",
  3626. "lib/MonoAndroid10/_._",
  3627. "lib/MonoTouch10/_._",
  3628. "lib/net45/_._",
  3629. "lib/netcore50/Microsoft.CSharp.dll",
  3630. "lib/netcoreapp2.0/_._",
  3631. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3632. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3633. "lib/portable-net45+win8+wp8+wpa81/_._",
  3634. "lib/uap10.0.16299/_._",
  3635. "lib/win8/_._",
  3636. "lib/wp80/_._",
  3637. "lib/wpa81/_._",
  3638. "lib/xamarinios10/_._",
  3639. "lib/xamarinmac20/_._",
  3640. "lib/xamarintvos10/_._",
  3641. "lib/xamarinwatchos10/_._",
  3642. "microsoft.csharp.4.5.0.nupkg.sha512",
  3643. "microsoft.csharp.nuspec",
  3644. "ref/MonoAndroid10/_._",
  3645. "ref/MonoTouch10/_._",
  3646. "ref/net45/_._",
  3647. "ref/netcore50/Microsoft.CSharp.dll",
  3648. "ref/netcore50/Microsoft.CSharp.xml",
  3649. "ref/netcore50/de/Microsoft.CSharp.xml",
  3650. "ref/netcore50/es/Microsoft.CSharp.xml",
  3651. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3652. "ref/netcore50/it/Microsoft.CSharp.xml",
  3653. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3654. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3655. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3656. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3657. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3658. "ref/netcoreapp2.0/_._",
  3659. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3660. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3661. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3662. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3663. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3664. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3665. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3666. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3667. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3668. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3669. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3670. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3671. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3672. "ref/portable-net45+win8+wp8+wpa81/_._",
  3673. "ref/uap10.0.16299/_._",
  3674. "ref/win8/_._",
  3675. "ref/wp80/_._",
  3676. "ref/wpa81/_._",
  3677. "ref/xamarinios10/_._",
  3678. "ref/xamarinmac20/_._",
  3679. "ref/xamarintvos10/_._",
  3680. "ref/xamarinwatchos10/_._",
  3681. "useSharedDesignerContext.txt",
  3682. "version.txt"
  3683. ]
  3684. },
  3685. "Microsoft.EntityFrameworkCore/5.0.0": {
  3686. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3687. "type": "package",
  3688. "path": "microsoft.entityframeworkcore/5.0.0",
  3689. "files": [
  3690. ".nupkg.metadata",
  3691. ".signature.p7s",
  3692. "Icon.png",
  3693. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3694. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3695. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3696. "microsoft.entityframeworkcore.nuspec"
  3697. ]
  3698. },
  3699. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3700. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3701. "type": "package",
  3702. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3703. "files": [
  3704. ".nupkg.metadata",
  3705. ".signature.p7s",
  3706. "Icon.png",
  3707. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3708. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3709. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3710. "microsoft.entityframeworkcore.abstractions.nuspec"
  3711. ]
  3712. },
  3713. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3714. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3715. "type": "package",
  3716. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3717. "files": [
  3718. ".nupkg.metadata",
  3719. ".signature.p7s",
  3720. "Icon.png",
  3721. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3722. "lib/netstandard2.0/_._",
  3723. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3724. "microsoft.entityframeworkcore.analyzers.nuspec"
  3725. ]
  3726. },
  3727. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3728. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3729. "type": "package",
  3730. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3731. "files": [
  3732. ".nupkg.metadata",
  3733. ".signature.p7s",
  3734. "Icon.png",
  3735. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3736. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3737. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3738. "microsoft.entityframeworkcore.relational.nuspec"
  3739. ]
  3740. },
  3741. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3742. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3743. "type": "package",
  3744. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3745. "hasTools": true,
  3746. "files": [
  3747. ".nupkg.metadata",
  3748. ".signature.p7s",
  3749. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3750. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3751. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3752. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3753. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3754. "microsoft.extensions.apidescription.server.nuspec",
  3755. "tools/Newtonsoft.Json.dll",
  3756. "tools/dotnet-getdocument.deps.json",
  3757. "tools/dotnet-getdocument.dll",
  3758. "tools/dotnet-getdocument.runtimeconfig.json",
  3759. "tools/net461-x86/GetDocument.Insider.exe",
  3760. "tools/net461-x86/GetDocument.Insider.exe.config",
  3761. "tools/net461/GetDocument.Insider.exe",
  3762. "tools/net461/GetDocument.Insider.exe.config",
  3763. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3764. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3765. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3766. ]
  3767. },
  3768. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3769. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3770. "type": "package",
  3771. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3772. "files": [
  3773. ".nupkg.metadata",
  3774. ".signature.p7s",
  3775. "Icon.png",
  3776. "LICENSE.TXT",
  3777. "THIRD-PARTY-NOTICES.TXT",
  3778. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3779. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3780. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3781. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3782. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3783. "microsoft.extensions.caching.abstractions.nuspec",
  3784. "useSharedDesignerContext.txt",
  3785. "version.txt"
  3786. ]
  3787. },
  3788. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3789. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3790. "type": "package",
  3791. "path": "microsoft.extensions.caching.memory/5.0.0",
  3792. "files": [
  3793. ".nupkg.metadata",
  3794. ".signature.p7s",
  3795. "Icon.png",
  3796. "LICENSE.TXT",
  3797. "THIRD-PARTY-NOTICES.TXT",
  3798. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3799. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3800. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3801. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3802. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3803. "microsoft.extensions.caching.memory.nuspec",
  3804. "useSharedDesignerContext.txt",
  3805. "version.txt"
  3806. ]
  3807. },
  3808. "Microsoft.Extensions.Configuration/5.0.0": {
  3809. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3810. "type": "package",
  3811. "path": "microsoft.extensions.configuration/5.0.0",
  3812. "files": [
  3813. ".nupkg.metadata",
  3814. ".signature.p7s",
  3815. "Icon.png",
  3816. "LICENSE.TXT",
  3817. "THIRD-PARTY-NOTICES.TXT",
  3818. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3819. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3820. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3821. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3822. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3823. "microsoft.extensions.configuration.nuspec",
  3824. "useSharedDesignerContext.txt",
  3825. "version.txt"
  3826. ]
  3827. },
  3828. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3829. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3830. "type": "package",
  3831. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3832. "files": [
  3833. ".nupkg.metadata",
  3834. ".signature.p7s",
  3835. "Icon.png",
  3836. "LICENSE.TXT",
  3837. "THIRD-PARTY-NOTICES.TXT",
  3838. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3839. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3840. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3841. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3842. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3843. "microsoft.extensions.configuration.abstractions.nuspec",
  3844. "useSharedDesignerContext.txt",
  3845. "version.txt"
  3846. ]
  3847. },
  3848. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3849. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3850. "type": "package",
  3851. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3852. "files": [
  3853. ".nupkg.metadata",
  3854. ".signature.p7s",
  3855. "Icon.png",
  3856. "LICENSE.TXT",
  3857. "THIRD-PARTY-NOTICES.TXT",
  3858. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3859. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3860. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3861. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3862. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3863. "microsoft.extensions.configuration.binder.nuspec",
  3864. "useSharedDesignerContext.txt",
  3865. "version.txt"
  3866. ]
  3867. },
  3868. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3869. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3870. "type": "package",
  3871. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3872. "files": [
  3873. ".nupkg.metadata",
  3874. ".signature.p7s",
  3875. "Icon.png",
  3876. "LICENSE.TXT",
  3877. "THIRD-PARTY-NOTICES.TXT",
  3878. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3879. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3880. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3881. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3882. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3883. "microsoft.extensions.configuration.fileextensions.nuspec",
  3884. "useSharedDesignerContext.txt",
  3885. "version.txt"
  3886. ]
  3887. },
  3888. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3889. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3890. "type": "package",
  3891. "path": "microsoft.extensions.configuration.json/5.0.0",
  3892. "files": [
  3893. ".nupkg.metadata",
  3894. ".signature.p7s",
  3895. "Icon.png",
  3896. "LICENSE.TXT",
  3897. "THIRD-PARTY-NOTICES.TXT",
  3898. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3899. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3900. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3901. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3902. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3903. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3904. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3905. "microsoft.extensions.configuration.json.nuspec",
  3906. "useSharedDesignerContext.txt",
  3907. "version.txt"
  3908. ]
  3909. },
  3910. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3911. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3912. "type": "package",
  3913. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3914. "files": [
  3915. ".nupkg.metadata",
  3916. ".signature.p7s",
  3917. "Icon.png",
  3918. "LICENSE.TXT",
  3919. "THIRD-PARTY-NOTICES.TXT",
  3920. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3921. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3922. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3923. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3924. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3925. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3926. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3927. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3928. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3929. "microsoft.extensions.dependencyinjection.nuspec",
  3930. "useSharedDesignerContext.txt",
  3931. "version.txt"
  3932. ]
  3933. },
  3934. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3935. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3936. "type": "package",
  3937. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3938. "files": [
  3939. ".nupkg.metadata",
  3940. ".signature.p7s",
  3941. "Icon.png",
  3942. "LICENSE.TXT",
  3943. "THIRD-PARTY-NOTICES.TXT",
  3944. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3945. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3946. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3947. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3948. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3949. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3950. "useSharedDesignerContext.txt",
  3951. "version.txt"
  3952. ]
  3953. },
  3954. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3955. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3956. "type": "package",
  3957. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3958. "files": [
  3959. ".nupkg.metadata",
  3960. ".signature.p7s",
  3961. "Icon.png",
  3962. "LICENSE.TXT",
  3963. "THIRD-PARTY-NOTICES.TXT",
  3964. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3965. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3966. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3967. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3968. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3969. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3970. "useSharedDesignerContext.txt",
  3971. "version.txt"
  3972. ]
  3973. },
  3974. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3975. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3976. "type": "package",
  3977. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3978. "files": [
  3979. ".nupkg.metadata",
  3980. ".signature.p7s",
  3981. "Icon.png",
  3982. "LICENSE.TXT",
  3983. "THIRD-PARTY-NOTICES.TXT",
  3984. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3985. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3986. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3987. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3988. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3989. "microsoft.extensions.fileproviders.physical.nuspec",
  3990. "useSharedDesignerContext.txt",
  3991. "version.txt"
  3992. ]
  3993. },
  3994. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3995. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3996. "type": "package",
  3997. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3998. "files": [
  3999. ".nupkg.metadata",
  4000. ".signature.p7s",
  4001. "Icon.png",
  4002. "LICENSE.TXT",
  4003. "THIRD-PARTY-NOTICES.TXT",
  4004. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4005. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4006. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4007. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4008. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4009. "microsoft.extensions.filesystemglobbing.nuspec",
  4010. "useSharedDesignerContext.txt",
  4011. "version.txt"
  4012. ]
  4013. },
  4014. "Microsoft.Extensions.Hosting/2.1.0": {
  4015. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4016. "type": "package",
  4017. "path": "microsoft.extensions.hosting/2.1.0",
  4018. "files": [
  4019. ".nupkg.metadata",
  4020. ".signature.p7s",
  4021. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4022. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4023. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4024. "microsoft.extensions.hosting.nuspec"
  4025. ]
  4026. },
  4027. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4028. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4029. "type": "package",
  4030. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4031. "files": [
  4032. ".nupkg.metadata",
  4033. ".signature.p7s",
  4034. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4035. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4036. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4037. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4038. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4039. "microsoft.extensions.hosting.abstractions.nuspec",
  4040. "packageIcon.png"
  4041. ]
  4042. },
  4043. "Microsoft.Extensions.Http/5.0.0": {
  4044. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4045. "type": "package",
  4046. "path": "microsoft.extensions.http/5.0.0",
  4047. "files": [
  4048. ".nupkg.metadata",
  4049. ".signature.p7s",
  4050. "Icon.png",
  4051. "LICENSE.TXT",
  4052. "THIRD-PARTY-NOTICES.TXT",
  4053. "lib/net461/Microsoft.Extensions.Http.dll",
  4054. "lib/net461/Microsoft.Extensions.Http.xml",
  4055. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4056. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4057. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4058. "microsoft.extensions.http.nuspec",
  4059. "useSharedDesignerContext.txt",
  4060. "version.txt"
  4061. ]
  4062. },
  4063. "Microsoft.Extensions.Logging/5.0.0": {
  4064. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4065. "type": "package",
  4066. "path": "microsoft.extensions.logging/5.0.0",
  4067. "files": [
  4068. ".nupkg.metadata",
  4069. ".signature.p7s",
  4070. "Icon.png",
  4071. "LICENSE.TXT",
  4072. "THIRD-PARTY-NOTICES.TXT",
  4073. "lib/net461/Microsoft.Extensions.Logging.dll",
  4074. "lib/net461/Microsoft.Extensions.Logging.xml",
  4075. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4076. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4077. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4078. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4079. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4080. "microsoft.extensions.logging.nuspec",
  4081. "useSharedDesignerContext.txt",
  4082. "version.txt"
  4083. ]
  4084. },
  4085. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4086. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4087. "type": "package",
  4088. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4089. "files": [
  4090. ".nupkg.metadata",
  4091. ".signature.p7s",
  4092. "Icon.png",
  4093. "LICENSE.TXT",
  4094. "THIRD-PARTY-NOTICES.TXT",
  4095. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4096. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4097. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4098. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4099. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4100. "microsoft.extensions.logging.abstractions.nuspec",
  4101. "useSharedDesignerContext.txt",
  4102. "version.txt"
  4103. ]
  4104. },
  4105. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4106. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4107. "type": "package",
  4108. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4109. "files": [
  4110. ".nupkg.metadata",
  4111. ".signature.p7s",
  4112. "Icon.png",
  4113. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4114. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4115. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4116. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4117. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4118. "microsoft.extensions.logging.configuration.nuspec"
  4119. ]
  4120. },
  4121. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4122. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4123. "type": "package",
  4124. "path": "microsoft.extensions.logging.console/3.1.30",
  4125. "files": [
  4126. ".nupkg.metadata",
  4127. ".signature.p7s",
  4128. "Icon.png",
  4129. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4130. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4131. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4132. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4133. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4134. "microsoft.extensions.logging.console.nuspec"
  4135. ]
  4136. },
  4137. "Microsoft.Extensions.Options/5.0.0": {
  4138. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4139. "type": "package",
  4140. "path": "microsoft.extensions.options/5.0.0",
  4141. "files": [
  4142. ".nupkg.metadata",
  4143. ".signature.p7s",
  4144. "Icon.png",
  4145. "LICENSE.TXT",
  4146. "THIRD-PARTY-NOTICES.TXT",
  4147. "lib/net461/Microsoft.Extensions.Options.dll",
  4148. "lib/net461/Microsoft.Extensions.Options.xml",
  4149. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4150. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4151. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4152. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4153. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4154. "microsoft.extensions.options.nuspec",
  4155. "useSharedDesignerContext.txt",
  4156. "version.txt"
  4157. ]
  4158. },
  4159. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4160. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4161. "type": "package",
  4162. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4163. "files": [
  4164. ".nupkg.metadata",
  4165. ".signature.p7s",
  4166. "Icon.png",
  4167. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4168. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4169. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4170. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4171. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4172. "microsoft.extensions.options.configurationextensions.nuspec"
  4173. ]
  4174. },
  4175. "Microsoft.Extensions.Primitives/5.0.0": {
  4176. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4177. "type": "package",
  4178. "path": "microsoft.extensions.primitives/5.0.0",
  4179. "files": [
  4180. ".nupkg.metadata",
  4181. ".signature.p7s",
  4182. "Icon.png",
  4183. "LICENSE.TXT",
  4184. "THIRD-PARTY-NOTICES.TXT",
  4185. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4186. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4187. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4188. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4189. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4190. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4191. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4192. "microsoft.extensions.primitives.nuspec",
  4193. "useSharedDesignerContext.txt",
  4194. "version.txt"
  4195. ]
  4196. },
  4197. "Microsoft.NETCore.Platforms/5.0.0": {
  4198. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4199. "type": "package",
  4200. "path": "microsoft.netcore.platforms/5.0.0",
  4201. "files": [
  4202. ".nupkg.metadata",
  4203. ".signature.p7s",
  4204. "Icon.png",
  4205. "LICENSE.TXT",
  4206. "THIRD-PARTY-NOTICES.TXT",
  4207. "lib/netstandard1.0/_._",
  4208. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4209. "microsoft.netcore.platforms.nuspec",
  4210. "runtime.json",
  4211. "useSharedDesignerContext.txt",
  4212. "version.txt"
  4213. ]
  4214. },
  4215. "Microsoft.NETCore.Targets/1.1.0": {
  4216. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4217. "type": "package",
  4218. "path": "microsoft.netcore.targets/1.1.0",
  4219. "files": [
  4220. ".nupkg.metadata",
  4221. ".signature.p7s",
  4222. "ThirdPartyNotices.txt",
  4223. "dotnet_library_license.txt",
  4224. "lib/netstandard1.0/_._",
  4225. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4226. "microsoft.netcore.targets.nuspec",
  4227. "runtime.json"
  4228. ]
  4229. },
  4230. "Microsoft.OpenApi/1.2.3": {
  4231. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4232. "type": "package",
  4233. "path": "microsoft.openapi/1.2.3",
  4234. "files": [
  4235. ".nupkg.metadata",
  4236. ".signature.p7s",
  4237. "lib/net46/Microsoft.OpenApi.dll",
  4238. "lib/net46/Microsoft.OpenApi.pdb",
  4239. "lib/net46/Microsoft.OpenApi.xml",
  4240. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4241. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4242. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4243. "microsoft.openapi.1.2.3.nupkg.sha512",
  4244. "microsoft.openapi.nuspec"
  4245. ]
  4246. },
  4247. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4248. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4249. "type": "package",
  4250. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4251. "hasTools": true,
  4252. "files": [
  4253. ".nupkg.metadata",
  4254. ".signature.p7s",
  4255. "CHANGELOG.md",
  4256. "EULA.md",
  4257. "ThirdPartyNotices.txt",
  4258. "build/Container.props",
  4259. "build/Container.targets",
  4260. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4261. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4262. "build/Rules/GeneralBrowseObject.xaml",
  4263. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4264. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4265. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4266. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4267. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4268. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4269. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4270. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4271. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4272. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4273. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4274. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4275. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4276. "build/ToolsTarget.props",
  4277. "build/ToolsTarget.targets",
  4278. "icon.png",
  4279. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4280. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4281. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4282. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4283. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4284. "tools/Newtonsoft.Json.dll",
  4285. "tools/System.Security.Principal.Windows.dll",
  4286. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4287. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4288. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4289. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4290. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4291. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4292. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4293. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4294. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4295. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4296. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4297. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4298. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4299. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4300. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4301. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4302. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4303. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4304. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4305. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4306. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4307. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4308. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4309. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4310. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4311. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4312. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4313. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4314. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4315. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4316. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4317. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4318. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4319. "tools/utils/KillProcess.exe",
  4320. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4321. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4322. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4323. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4324. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4325. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4326. ]
  4327. },
  4328. "Microsoft.Win32.Primitives/4.3.0": {
  4329. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4330. "type": "package",
  4331. "path": "microsoft.win32.primitives/4.3.0",
  4332. "files": [
  4333. ".nupkg.metadata",
  4334. ".signature.p7s",
  4335. "ThirdPartyNotices.txt",
  4336. "dotnet_library_license.txt",
  4337. "lib/MonoAndroid10/_._",
  4338. "lib/MonoTouch10/_._",
  4339. "lib/net46/Microsoft.Win32.Primitives.dll",
  4340. "lib/xamarinios10/_._",
  4341. "lib/xamarinmac20/_._",
  4342. "lib/xamarintvos10/_._",
  4343. "lib/xamarinwatchos10/_._",
  4344. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4345. "microsoft.win32.primitives.nuspec",
  4346. "ref/MonoAndroid10/_._",
  4347. "ref/MonoTouch10/_._",
  4348. "ref/net46/Microsoft.Win32.Primitives.dll",
  4349. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4350. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4351. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4352. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4353. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4354. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4355. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4356. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4357. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4358. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4359. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4360. "ref/xamarinios10/_._",
  4361. "ref/xamarinmac20/_._",
  4362. "ref/xamarintvos10/_._",
  4363. "ref/xamarinwatchos10/_._"
  4364. ]
  4365. },
  4366. "Microsoft.Win32.SystemEvents/5.0.0": {
  4367. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4368. "type": "package",
  4369. "path": "microsoft.win32.systemevents/5.0.0",
  4370. "files": [
  4371. ".nupkg.metadata",
  4372. ".signature.p7s",
  4373. "Icon.png",
  4374. "LICENSE.TXT",
  4375. "THIRD-PARTY-NOTICES.TXT",
  4376. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4377. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4378. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4379. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4380. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4381. "microsoft.win32.systemevents.nuspec",
  4382. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4383. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4384. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4385. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4386. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4387. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4388. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4389. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4390. "useSharedDesignerContext.txt",
  4391. "version.txt"
  4392. ]
  4393. },
  4394. "MQTTnet/4.3.7.1207": {
  4395. "sha512": "ah7aHXoedWp5m5a4zy2u4phOEVj0QFYzOb5tFKQeV8RRBrxp+1QREF4ymZuG8D+hzB2dhtrrG81WxTFv0PzOeQ==",
  4396. "type": "package",
  4397. "path": "mqttnet/4.3.7.1207",
  4398. "files": [
  4399. ".nupkg.metadata",
  4400. ".signature.p7s",
  4401. "lib/net452/MQTTnet.dll",
  4402. "lib/net452/MQTTnet.xml",
  4403. "lib/net461/MQTTnet.dll",
  4404. "lib/net461/MQTTnet.xml",
  4405. "lib/net48/MQTTnet.dll",
  4406. "lib/net48/MQTTnet.xml",
  4407. "lib/net5.0/MQTTnet.dll",
  4408. "lib/net5.0/MQTTnet.xml",
  4409. "lib/net6.0/MQTTnet.dll",
  4410. "lib/net6.0/MQTTnet.xml",
  4411. "lib/net7.0/MQTTnet.dll",
  4412. "lib/net7.0/MQTTnet.xml",
  4413. "lib/netcoreapp3.1/MQTTnet.dll",
  4414. "lib/netcoreapp3.1/MQTTnet.xml",
  4415. "lib/netstandard1.3/MQTTnet.dll",
  4416. "lib/netstandard1.3/MQTTnet.xml",
  4417. "lib/netstandard2.0/MQTTnet.dll",
  4418. "lib/netstandard2.0/MQTTnet.xml",
  4419. "lib/netstandard2.1/MQTTnet.dll",
  4420. "lib/netstandard2.1/MQTTnet.xml",
  4421. "lib/uap10.0.10240/MQTTnet.dll",
  4422. "lib/uap10.0.10240/MQTTnet.pri",
  4423. "lib/uap10.0.10240/MQTTnet.xml",
  4424. "mqttnet.4.3.7.1207.nupkg.sha512",
  4425. "mqttnet.nuspec",
  4426. "nuget.png"
  4427. ]
  4428. },
  4429. "MQTTnet.AspNetCore/4.3.7.1207": {
  4430. "sha512": "aDtlDjDv65kK0J3/SeagD9h1/xAzxSjbIMEQOzwChyv9mZt79KRRX0TIHQ03SyXfsRC6yyOcyqJxIp8K7FON1A==",
  4431. "type": "package",
  4432. "path": "mqttnet.aspnetcore/4.3.7.1207",
  4433. "files": [
  4434. ".nupkg.metadata",
  4435. ".signature.p7s",
  4436. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4437. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4438. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4439. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4440. "lib/net7.0/MQTTnet.AspNetCore.dll",
  4441. "lib/net7.0/MQTTnet.AspNetCore.xml",
  4442. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4443. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4444. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4445. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4446. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4447. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4448. "mqttnet.aspnetcore.4.3.7.1207.nupkg.sha512",
  4449. "mqttnet.aspnetcore.nuspec",
  4450. "nuget.png"
  4451. ]
  4452. },
  4453. "MySql.Data/8.0.23": {
  4454. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4455. "type": "package",
  4456. "path": "mysql.data/8.0.23",
  4457. "files": [
  4458. ".nupkg.metadata",
  4459. ".signature.p7s",
  4460. "lib/net452/MySql.Data.dll",
  4461. "lib/net452/MySql.Data.xml",
  4462. "lib/net452/Ubiety.Dns.Core.dll",
  4463. "lib/net452/Zstandard.Net.dll",
  4464. "lib/net48/MySql.Data.dll",
  4465. "lib/net48/MySql.Data.xml",
  4466. "lib/net48/Ubiety.Dns.Core.dll",
  4467. "lib/net48/Zstandard.Net.dll",
  4468. "lib/net5.0/MySql.Data.dll",
  4469. "lib/net5.0/MySql.Data.xml",
  4470. "lib/net5.0/Ubiety.Dns.Core.dll",
  4471. "lib/net5.0/Zstandard.Net.dll",
  4472. "lib/netstandard2.0/MySql.Data.dll",
  4473. "lib/netstandard2.0/MySql.Data.xml",
  4474. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4475. "lib/netstandard2.0/Zstandard.Net.dll",
  4476. "lib/netstandard2.1/MySql.Data.dll",
  4477. "lib/netstandard2.1/MySql.Data.xml",
  4478. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4479. "lib/netstandard2.1/Zstandard.Net.dll",
  4480. "mysql.data.8.0.23.nupkg.sha512",
  4481. "mysql.data.nuspec"
  4482. ]
  4483. },
  4484. "MySqlConnector/1.1.0": {
  4485. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4486. "type": "package",
  4487. "path": "mysqlconnector/1.1.0",
  4488. "files": [
  4489. ".nupkg.metadata",
  4490. ".signature.p7s",
  4491. "lib/net45/MySqlConnector.dll",
  4492. "lib/net45/MySqlConnector.xml",
  4493. "lib/net461/MySqlConnector.dll",
  4494. "lib/net461/MySqlConnector.xml",
  4495. "lib/net471/MySqlConnector.dll",
  4496. "lib/net471/MySqlConnector.xml",
  4497. "lib/net5.0/MySqlConnector.dll",
  4498. "lib/net5.0/MySqlConnector.xml",
  4499. "lib/netcoreapp2.1/MySqlConnector.dll",
  4500. "lib/netcoreapp2.1/MySqlConnector.xml",
  4501. "lib/netcoreapp3.1/MySqlConnector.dll",
  4502. "lib/netcoreapp3.1/MySqlConnector.xml",
  4503. "lib/netstandard1.3/MySqlConnector.dll",
  4504. "lib/netstandard1.3/MySqlConnector.xml",
  4505. "lib/netstandard2.0/MySqlConnector.dll",
  4506. "lib/netstandard2.0/MySqlConnector.xml",
  4507. "lib/netstandard2.1/MySqlConnector.dll",
  4508. "lib/netstandard2.1/MySqlConnector.xml",
  4509. "logo.png",
  4510. "mysqlconnector.1.1.0.nupkg.sha512",
  4511. "mysqlconnector.nuspec"
  4512. ]
  4513. },
  4514. "NETStandard.Library/1.6.1": {
  4515. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4516. "type": "package",
  4517. "path": "netstandard.library/1.6.1",
  4518. "files": [
  4519. ".nupkg.metadata",
  4520. ".signature.p7s",
  4521. "ThirdPartyNotices.txt",
  4522. "dotnet_library_license.txt",
  4523. "netstandard.library.1.6.1.nupkg.sha512",
  4524. "netstandard.library.nuspec"
  4525. ]
  4526. },
  4527. "Newtonsoft.Json/13.0.1": {
  4528. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4529. "type": "package",
  4530. "path": "newtonsoft.json/13.0.1",
  4531. "files": [
  4532. ".nupkg.metadata",
  4533. ".signature.p7s",
  4534. "LICENSE.md",
  4535. "lib/net20/Newtonsoft.Json.dll",
  4536. "lib/net20/Newtonsoft.Json.xml",
  4537. "lib/net35/Newtonsoft.Json.dll",
  4538. "lib/net35/Newtonsoft.Json.xml",
  4539. "lib/net40/Newtonsoft.Json.dll",
  4540. "lib/net40/Newtonsoft.Json.xml",
  4541. "lib/net45/Newtonsoft.Json.dll",
  4542. "lib/net45/Newtonsoft.Json.xml",
  4543. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4544. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4545. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4546. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4547. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4548. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4549. "newtonsoft.json.13.0.1.nupkg.sha512",
  4550. "newtonsoft.json.nuspec",
  4551. "packageIcon.png"
  4552. ]
  4553. },
  4554. "Nito.AsyncEx.Coordination/5.0.0": {
  4555. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4556. "type": "package",
  4557. "path": "nito.asyncex.coordination/5.0.0",
  4558. "files": [
  4559. ".nupkg.metadata",
  4560. ".signature.p7s",
  4561. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4562. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4563. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4564. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4565. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4566. "nito.asyncex.coordination.nuspec"
  4567. ]
  4568. },
  4569. "Nito.AsyncEx.Tasks/5.0.0": {
  4570. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4571. "type": "package",
  4572. "path": "nito.asyncex.tasks/5.0.0",
  4573. "files": [
  4574. ".nupkg.metadata",
  4575. ".signature.p7s",
  4576. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4577. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4578. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4579. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4580. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4581. "nito.asyncex.tasks.nuspec"
  4582. ]
  4583. },
  4584. "Nito.Collections.Deque/1.0.4": {
  4585. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4586. "type": "package",
  4587. "path": "nito.collections.deque/1.0.4",
  4588. "files": [
  4589. ".nupkg.metadata",
  4590. ".signature.p7s",
  4591. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4592. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4593. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4594. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4595. "nito.collections.deque.1.0.4.nupkg.sha512",
  4596. "nito.collections.deque.nuspec"
  4597. ]
  4598. },
  4599. "Nito.Disposables/2.0.0": {
  4600. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4601. "type": "package",
  4602. "path": "nito.disposables/2.0.0",
  4603. "files": [
  4604. ".nupkg.metadata",
  4605. ".signature.p7s",
  4606. "lib/netstandard1.0/Nito.Disposables.dll",
  4607. "lib/netstandard1.0/Nito.Disposables.pdb",
  4608. "lib/netstandard1.0/Nito.Disposables.xml",
  4609. "lib/netstandard2.0/Nito.Disposables.dll",
  4610. "lib/netstandard2.0/Nito.Disposables.pdb",
  4611. "lib/netstandard2.0/Nito.Disposables.xml",
  4612. "nito.disposables.2.0.0.nupkg.sha512",
  4613. "nito.disposables.nuspec"
  4614. ]
  4615. },
  4616. "NodaTime/2.4.7": {
  4617. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4618. "type": "package",
  4619. "path": "nodatime/2.4.7",
  4620. "files": [
  4621. ".nupkg.metadata",
  4622. ".signature.p7s",
  4623. "lib/net45/NodaTime.dll",
  4624. "lib/net45/NodaTime.pdb",
  4625. "lib/net45/NodaTime.xml",
  4626. "lib/netstandard1.3/NodaTime.dll",
  4627. "lib/netstandard1.3/NodaTime.pdb",
  4628. "lib/netstandard1.3/NodaTime.xml",
  4629. "lib/netstandard2.0/NodaTime.dll",
  4630. "lib/netstandard2.0/NodaTime.pdb",
  4631. "lib/netstandard2.0/NodaTime.xml",
  4632. "nodatime.2.4.7.nupkg.sha512",
  4633. "nodatime.nuspec"
  4634. ]
  4635. },
  4636. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4637. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4638. "type": "package",
  4639. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4640. "files": [
  4641. ".nupkg.metadata",
  4642. ".signature.p7s",
  4643. "icon.png",
  4644. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4645. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4646. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4647. "pomelo.entityframeworkcore.mysql.nuspec"
  4648. ]
  4649. },
  4650. "QRCoder/1.4.3": {
  4651. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4652. "type": "package",
  4653. "path": "qrcoder/1.4.3",
  4654. "files": [
  4655. ".nupkg.metadata",
  4656. ".signature.p7s",
  4657. "lib/net35/QRCoder.dll",
  4658. "lib/net40/QRCoder.dll",
  4659. "lib/net5.0-windows7.0/QRCoder.dll",
  4660. "lib/net5.0/QRCoder.dll",
  4661. "lib/net6.0-windows7.0/QRCoder.dll",
  4662. "lib/net6.0/QRCoder.dll",
  4663. "lib/netstandard1.3/QRCoder.dll",
  4664. "lib/netstandard2.0/QRCoder.dll",
  4665. "nuget-icon.png",
  4666. "nuget-readme.md",
  4667. "qrcoder.1.4.3.nupkg.sha512",
  4668. "qrcoder.nuspec"
  4669. ]
  4670. },
  4671. "RabbitMQ.Client/6.8.1": {
  4672. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4673. "type": "package",
  4674. "path": "rabbitmq.client/6.8.1",
  4675. "files": [
  4676. ".nupkg.metadata",
  4677. ".signature.p7s",
  4678. "README.md",
  4679. "icon.png",
  4680. "lib/net462/RabbitMQ.Client.dll",
  4681. "lib/net462/RabbitMQ.Client.xml",
  4682. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4683. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4684. "rabbitmq.client.6.8.1.nupkg.sha512",
  4685. "rabbitmq.client.nuspec"
  4686. ]
  4687. },
  4688. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4689. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4690. "type": "package",
  4691. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4692. "files": [
  4693. ".nupkg.metadata",
  4694. ".signature.p7s",
  4695. "ThirdPartyNotices.txt",
  4696. "dotnet_library_license.txt",
  4697. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4698. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4699. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4700. ]
  4701. },
  4702. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4703. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4704. "type": "package",
  4705. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4706. "files": [
  4707. ".nupkg.metadata",
  4708. ".signature.p7s",
  4709. "ThirdPartyNotices.txt",
  4710. "dotnet_library_license.txt",
  4711. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4712. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4713. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4714. ]
  4715. },
  4716. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4717. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4718. "type": "package",
  4719. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4720. "files": [
  4721. ".nupkg.metadata",
  4722. ".signature.p7s",
  4723. "ThirdPartyNotices.txt",
  4724. "dotnet_library_license.txt",
  4725. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4726. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4727. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4728. ]
  4729. },
  4730. "runtime.native.System/4.3.0": {
  4731. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4732. "type": "package",
  4733. "path": "runtime.native.system/4.3.0",
  4734. "files": [
  4735. ".nupkg.metadata",
  4736. ".signature.p7s",
  4737. "ThirdPartyNotices.txt",
  4738. "dotnet_library_license.txt",
  4739. "lib/netstandard1.0/_._",
  4740. "runtime.native.system.4.3.0.nupkg.sha512",
  4741. "runtime.native.system.nuspec"
  4742. ]
  4743. },
  4744. "runtime.native.System.IO.Compression/4.3.0": {
  4745. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4746. "type": "package",
  4747. "path": "runtime.native.system.io.compression/4.3.0",
  4748. "files": [
  4749. ".nupkg.metadata",
  4750. ".signature.p7s",
  4751. "ThirdPartyNotices.txt",
  4752. "dotnet_library_license.txt",
  4753. "lib/netstandard1.0/_._",
  4754. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4755. "runtime.native.system.io.compression.nuspec"
  4756. ]
  4757. },
  4758. "runtime.native.System.Net.Http/4.3.0": {
  4759. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4760. "type": "package",
  4761. "path": "runtime.native.system.net.http/4.3.0",
  4762. "files": [
  4763. ".nupkg.metadata",
  4764. ".signature.p7s",
  4765. "ThirdPartyNotices.txt",
  4766. "dotnet_library_license.txt",
  4767. "lib/netstandard1.0/_._",
  4768. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4769. "runtime.native.system.net.http.nuspec"
  4770. ]
  4771. },
  4772. "runtime.native.System.Net.Security/4.3.0": {
  4773. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4774. "type": "package",
  4775. "path": "runtime.native.system.net.security/4.3.0",
  4776. "files": [
  4777. ".nupkg.metadata",
  4778. ".signature.p7s",
  4779. "ThirdPartyNotices.txt",
  4780. "dotnet_library_license.txt",
  4781. "lib/netstandard1.0/_._",
  4782. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4783. "runtime.native.system.net.security.nuspec"
  4784. ]
  4785. },
  4786. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4787. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4788. "type": "package",
  4789. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4790. "files": [
  4791. ".nupkg.metadata",
  4792. ".signature.p7s",
  4793. "ThirdPartyNotices.txt",
  4794. "dotnet_library_license.txt",
  4795. "lib/netstandard1.0/_._",
  4796. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4797. "runtime.native.system.security.cryptography.apple.nuspec"
  4798. ]
  4799. },
  4800. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4801. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4802. "type": "package",
  4803. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4804. "files": [
  4805. ".nupkg.metadata",
  4806. ".signature.p7s",
  4807. "ThirdPartyNotices.txt",
  4808. "dotnet_library_license.txt",
  4809. "lib/netstandard1.0/_._",
  4810. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4811. "runtime.native.system.security.cryptography.openssl.nuspec"
  4812. ]
  4813. },
  4814. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4815. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4816. "type": "package",
  4817. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4818. "files": [
  4819. ".nupkg.metadata",
  4820. ".signature.p7s",
  4821. "ThirdPartyNotices.txt",
  4822. "dotnet_library_license.txt",
  4823. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4824. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4825. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4826. ]
  4827. },
  4828. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4829. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4830. "type": "package",
  4831. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4832. "files": [
  4833. ".nupkg.metadata",
  4834. ".signature.p7s",
  4835. "ThirdPartyNotices.txt",
  4836. "dotnet_library_license.txt",
  4837. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4838. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4839. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4840. ]
  4841. },
  4842. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4843. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4844. "type": "package",
  4845. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4846. "files": [
  4847. ".nupkg.metadata",
  4848. ".signature.p7s",
  4849. "ThirdPartyNotices.txt",
  4850. "dotnet_library_license.txt",
  4851. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4852. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4853. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4854. ]
  4855. },
  4856. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4857. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4858. "type": "package",
  4859. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4860. "files": [
  4861. ".nupkg.metadata",
  4862. ".signature.p7s",
  4863. "ThirdPartyNotices.txt",
  4864. "dotnet_library_license.txt",
  4865. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4866. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4867. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4868. ]
  4869. },
  4870. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4871. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4872. "type": "package",
  4873. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4874. "files": [
  4875. ".nupkg.metadata",
  4876. ".signature.p7s",
  4877. "ThirdPartyNotices.txt",
  4878. "dotnet_library_license.txt",
  4879. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4880. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4881. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4882. ]
  4883. },
  4884. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4885. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4886. "type": "package",
  4887. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4888. "files": [
  4889. ".nupkg.metadata",
  4890. ".signature.p7s",
  4891. "ThirdPartyNotices.txt",
  4892. "dotnet_library_license.txt",
  4893. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4894. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4895. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4896. ]
  4897. },
  4898. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4899. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4900. "type": "package",
  4901. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4902. "files": [
  4903. ".nupkg.metadata",
  4904. ".signature.p7s",
  4905. "ThirdPartyNotices.txt",
  4906. "dotnet_library_license.txt",
  4907. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4908. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4909. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4910. ]
  4911. },
  4912. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4913. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4914. "type": "package",
  4915. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4916. "files": [
  4917. ".nupkg.metadata",
  4918. ".signature.p7s",
  4919. "ThirdPartyNotices.txt",
  4920. "dotnet_library_license.txt",
  4921. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4922. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4923. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4924. ]
  4925. },
  4926. "SixLabors.ImageSharp/2.1.6": {
  4927. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4928. "type": "package",
  4929. "path": "sixlabors.imagesharp/2.1.6",
  4930. "files": [
  4931. ".nupkg.metadata",
  4932. ".signature.p7s",
  4933. "lib/net472/SixLabors.ImageSharp.dll",
  4934. "lib/net472/SixLabors.ImageSharp.xml",
  4935. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4936. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4937. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4938. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4939. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4940. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4941. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4942. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4943. "sixlabors.imagesharp.128.png",
  4944. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4945. "sixlabors.imagesharp.nuspec"
  4946. ]
  4947. },
  4948. "SSH.NET/2020.0.0-beta1": {
  4949. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4950. "type": "package",
  4951. "path": "ssh.net/2020.0.0-beta1",
  4952. "files": [
  4953. ".nupkg.metadata",
  4954. ".signature.p7s",
  4955. "lib/net35/Renci.SshNet.dll",
  4956. "lib/net35/Renci.SshNet.xml",
  4957. "lib/net40/Renci.SshNet.dll",
  4958. "lib/net40/Renci.SshNet.xml",
  4959. "lib/netstandard1.3/Renci.SshNet.dll",
  4960. "lib/netstandard1.3/Renci.SshNet.xml",
  4961. "lib/netstandard2.0/Renci.SshNet.dll",
  4962. "lib/netstandard2.0/Renci.SshNet.xml",
  4963. "lib/sl4/Renci.SshNet.dll",
  4964. "lib/sl4/Renci.SshNet.xml",
  4965. "lib/sl5/Renci.SshNet.dll",
  4966. "lib/sl5/Renci.SshNet.xml",
  4967. "lib/uap10/Renci.SshNet.dll",
  4968. "lib/uap10/Renci.SshNet.xml",
  4969. "lib/wp71/Renci.SshNet.dll",
  4970. "lib/wp71/Renci.SshNet.xml",
  4971. "lib/wp8/Renci.SshNet.dll",
  4972. "lib/wp8/Renci.SshNet.xml",
  4973. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4974. "ssh.net.nuspec"
  4975. ]
  4976. },
  4977. "SshNet.Security.Cryptography/1.3.0": {
  4978. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4979. "type": "package",
  4980. "path": "sshnet.security.cryptography/1.3.0",
  4981. "files": [
  4982. ".nupkg.metadata",
  4983. ".signature.p7s",
  4984. "lib/net20/SshNet.Security.Cryptography.dll",
  4985. "lib/net20/SshNet.Security.Cryptography.xml",
  4986. "lib/net40/SshNet.Security.Cryptography.dll",
  4987. "lib/net40/SshNet.Security.Cryptography.xml",
  4988. "lib/net45/SshNet.Security.Cryptography.dll",
  4989. "lib/net45/SshNet.Security.Cryptography.xml",
  4990. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4991. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4992. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4993. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4994. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4995. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4996. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4997. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4998. "lib/sl4/SshNet.Security.Cryptography.dll",
  4999. "lib/sl4/SshNet.Security.Cryptography.xml",
  5000. "lib/sl5/SshNet.Security.Cryptography.dll",
  5001. "lib/sl5/SshNet.Security.Cryptography.xml",
  5002. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5003. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5004. "lib/wp71/SshNet.Security.Cryptography.dll",
  5005. "lib/wp71/SshNet.Security.Cryptography.xml",
  5006. "lib/wp8/SshNet.Security.Cryptography.dll",
  5007. "lib/wp8/SshNet.Security.Cryptography.xml",
  5008. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5009. "sshnet.security.cryptography.nuspec"
  5010. ]
  5011. },
  5012. "StackExchange.Redis/1.2.4": {
  5013. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5014. "type": "package",
  5015. "path": "stackexchange.redis/1.2.4",
  5016. "files": [
  5017. ".nupkg.metadata",
  5018. ".signature.p7s",
  5019. "lib/net45/StackExchange.Redis.dll",
  5020. "lib/net45/StackExchange.Redis.xml",
  5021. "lib/net46/StackExchange.Redis.dll",
  5022. "lib/net46/StackExchange.Redis.xml",
  5023. "lib/netstandard1.5/StackExchange.Redis.dll",
  5024. "lib/netstandard1.5/StackExchange.Redis.xml",
  5025. "stackexchange.redis.1.2.4.nupkg.sha512",
  5026. "stackexchange.redis.nuspec"
  5027. ]
  5028. },
  5029. "Swashbuckle.AspNetCore/5.6.3": {
  5030. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5031. "type": "package",
  5032. "path": "swashbuckle.aspnetcore/5.6.3",
  5033. "files": [
  5034. ".nupkg.metadata",
  5035. ".signature.p7s",
  5036. "build/Swashbuckle.AspNetCore.props",
  5037. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5038. "swashbuckle.aspnetcore.nuspec"
  5039. ]
  5040. },
  5041. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5042. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5043. "type": "package",
  5044. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5045. "files": [
  5046. ".nupkg.metadata",
  5047. ".signature.p7s",
  5048. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5049. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5050. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5051. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5052. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5053. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5054. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5055. "swashbuckle.aspnetcore.swagger.nuspec"
  5056. ]
  5057. },
  5058. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5059. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5060. "type": "package",
  5061. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5062. "files": [
  5063. ".nupkg.metadata",
  5064. ".signature.p7s",
  5065. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5066. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5067. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5068. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5069. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5070. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5071. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5072. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5073. ]
  5074. },
  5075. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5076. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5077. "type": "package",
  5078. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5079. "files": [
  5080. ".nupkg.metadata",
  5081. ".signature.p7s",
  5082. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5083. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5084. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5085. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5086. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5087. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5088. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5089. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5090. ]
  5091. },
  5092. "System.AppContext/4.3.0": {
  5093. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5094. "type": "package",
  5095. "path": "system.appcontext/4.3.0",
  5096. "files": [
  5097. ".nupkg.metadata",
  5098. ".signature.p7s",
  5099. "ThirdPartyNotices.txt",
  5100. "dotnet_library_license.txt",
  5101. "lib/MonoAndroid10/_._",
  5102. "lib/MonoTouch10/_._",
  5103. "lib/net46/System.AppContext.dll",
  5104. "lib/net463/System.AppContext.dll",
  5105. "lib/netcore50/System.AppContext.dll",
  5106. "lib/netstandard1.6/System.AppContext.dll",
  5107. "lib/xamarinios10/_._",
  5108. "lib/xamarinmac20/_._",
  5109. "lib/xamarintvos10/_._",
  5110. "lib/xamarinwatchos10/_._",
  5111. "ref/MonoAndroid10/_._",
  5112. "ref/MonoTouch10/_._",
  5113. "ref/net46/System.AppContext.dll",
  5114. "ref/net463/System.AppContext.dll",
  5115. "ref/netstandard/_._",
  5116. "ref/netstandard1.3/System.AppContext.dll",
  5117. "ref/netstandard1.3/System.AppContext.xml",
  5118. "ref/netstandard1.3/de/System.AppContext.xml",
  5119. "ref/netstandard1.3/es/System.AppContext.xml",
  5120. "ref/netstandard1.3/fr/System.AppContext.xml",
  5121. "ref/netstandard1.3/it/System.AppContext.xml",
  5122. "ref/netstandard1.3/ja/System.AppContext.xml",
  5123. "ref/netstandard1.3/ko/System.AppContext.xml",
  5124. "ref/netstandard1.3/ru/System.AppContext.xml",
  5125. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5126. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5127. "ref/netstandard1.6/System.AppContext.dll",
  5128. "ref/netstandard1.6/System.AppContext.xml",
  5129. "ref/netstandard1.6/de/System.AppContext.xml",
  5130. "ref/netstandard1.6/es/System.AppContext.xml",
  5131. "ref/netstandard1.6/fr/System.AppContext.xml",
  5132. "ref/netstandard1.6/it/System.AppContext.xml",
  5133. "ref/netstandard1.6/ja/System.AppContext.xml",
  5134. "ref/netstandard1.6/ko/System.AppContext.xml",
  5135. "ref/netstandard1.6/ru/System.AppContext.xml",
  5136. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5137. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5138. "ref/xamarinios10/_._",
  5139. "ref/xamarinmac20/_._",
  5140. "ref/xamarintvos10/_._",
  5141. "ref/xamarinwatchos10/_._",
  5142. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5143. "system.appcontext.4.3.0.nupkg.sha512",
  5144. "system.appcontext.nuspec"
  5145. ]
  5146. },
  5147. "System.Buffers/4.5.1": {
  5148. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5149. "type": "package",
  5150. "path": "system.buffers/4.5.1",
  5151. "files": [
  5152. ".nupkg.metadata",
  5153. ".signature.p7s",
  5154. "LICENSE.TXT",
  5155. "THIRD-PARTY-NOTICES.TXT",
  5156. "lib/net461/System.Buffers.dll",
  5157. "lib/net461/System.Buffers.xml",
  5158. "lib/netcoreapp2.0/_._",
  5159. "lib/netstandard1.1/System.Buffers.dll",
  5160. "lib/netstandard1.1/System.Buffers.xml",
  5161. "lib/netstandard2.0/System.Buffers.dll",
  5162. "lib/netstandard2.0/System.Buffers.xml",
  5163. "lib/uap10.0.16299/_._",
  5164. "ref/net45/System.Buffers.dll",
  5165. "ref/net45/System.Buffers.xml",
  5166. "ref/netcoreapp2.0/_._",
  5167. "ref/netstandard1.1/System.Buffers.dll",
  5168. "ref/netstandard1.1/System.Buffers.xml",
  5169. "ref/netstandard2.0/System.Buffers.dll",
  5170. "ref/netstandard2.0/System.Buffers.xml",
  5171. "ref/uap10.0.16299/_._",
  5172. "system.buffers.4.5.1.nupkg.sha512",
  5173. "system.buffers.nuspec",
  5174. "useSharedDesignerContext.txt",
  5175. "version.txt"
  5176. ]
  5177. },
  5178. "System.Collections/4.3.0": {
  5179. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5180. "type": "package",
  5181. "path": "system.collections/4.3.0",
  5182. "files": [
  5183. ".nupkg.metadata",
  5184. ".signature.p7s",
  5185. "ThirdPartyNotices.txt",
  5186. "dotnet_library_license.txt",
  5187. "lib/MonoAndroid10/_._",
  5188. "lib/MonoTouch10/_._",
  5189. "lib/net45/_._",
  5190. "lib/portable-net45+win8+wp8+wpa81/_._",
  5191. "lib/win8/_._",
  5192. "lib/wp80/_._",
  5193. "lib/wpa81/_._",
  5194. "lib/xamarinios10/_._",
  5195. "lib/xamarinmac20/_._",
  5196. "lib/xamarintvos10/_._",
  5197. "lib/xamarinwatchos10/_._",
  5198. "ref/MonoAndroid10/_._",
  5199. "ref/MonoTouch10/_._",
  5200. "ref/net45/_._",
  5201. "ref/netcore50/System.Collections.dll",
  5202. "ref/netcore50/System.Collections.xml",
  5203. "ref/netcore50/de/System.Collections.xml",
  5204. "ref/netcore50/es/System.Collections.xml",
  5205. "ref/netcore50/fr/System.Collections.xml",
  5206. "ref/netcore50/it/System.Collections.xml",
  5207. "ref/netcore50/ja/System.Collections.xml",
  5208. "ref/netcore50/ko/System.Collections.xml",
  5209. "ref/netcore50/ru/System.Collections.xml",
  5210. "ref/netcore50/zh-hans/System.Collections.xml",
  5211. "ref/netcore50/zh-hant/System.Collections.xml",
  5212. "ref/netstandard1.0/System.Collections.dll",
  5213. "ref/netstandard1.0/System.Collections.xml",
  5214. "ref/netstandard1.0/de/System.Collections.xml",
  5215. "ref/netstandard1.0/es/System.Collections.xml",
  5216. "ref/netstandard1.0/fr/System.Collections.xml",
  5217. "ref/netstandard1.0/it/System.Collections.xml",
  5218. "ref/netstandard1.0/ja/System.Collections.xml",
  5219. "ref/netstandard1.0/ko/System.Collections.xml",
  5220. "ref/netstandard1.0/ru/System.Collections.xml",
  5221. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5222. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5223. "ref/netstandard1.3/System.Collections.dll",
  5224. "ref/netstandard1.3/System.Collections.xml",
  5225. "ref/netstandard1.3/de/System.Collections.xml",
  5226. "ref/netstandard1.3/es/System.Collections.xml",
  5227. "ref/netstandard1.3/fr/System.Collections.xml",
  5228. "ref/netstandard1.3/it/System.Collections.xml",
  5229. "ref/netstandard1.3/ja/System.Collections.xml",
  5230. "ref/netstandard1.3/ko/System.Collections.xml",
  5231. "ref/netstandard1.3/ru/System.Collections.xml",
  5232. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5233. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5234. "ref/portable-net45+win8+wp8+wpa81/_._",
  5235. "ref/win8/_._",
  5236. "ref/wp80/_._",
  5237. "ref/wpa81/_._",
  5238. "ref/xamarinios10/_._",
  5239. "ref/xamarinmac20/_._",
  5240. "ref/xamarintvos10/_._",
  5241. "ref/xamarinwatchos10/_._",
  5242. "system.collections.4.3.0.nupkg.sha512",
  5243. "system.collections.nuspec"
  5244. ]
  5245. },
  5246. "System.Collections.Concurrent/4.3.0": {
  5247. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5248. "type": "package",
  5249. "path": "system.collections.concurrent/4.3.0",
  5250. "files": [
  5251. ".nupkg.metadata",
  5252. ".signature.p7s",
  5253. "ThirdPartyNotices.txt",
  5254. "dotnet_library_license.txt",
  5255. "lib/MonoAndroid10/_._",
  5256. "lib/MonoTouch10/_._",
  5257. "lib/net45/_._",
  5258. "lib/netcore50/System.Collections.Concurrent.dll",
  5259. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5260. "lib/portable-net45+win8+wpa81/_._",
  5261. "lib/win8/_._",
  5262. "lib/wpa81/_._",
  5263. "lib/xamarinios10/_._",
  5264. "lib/xamarinmac20/_._",
  5265. "lib/xamarintvos10/_._",
  5266. "lib/xamarinwatchos10/_._",
  5267. "ref/MonoAndroid10/_._",
  5268. "ref/MonoTouch10/_._",
  5269. "ref/net45/_._",
  5270. "ref/netcore50/System.Collections.Concurrent.dll",
  5271. "ref/netcore50/System.Collections.Concurrent.xml",
  5272. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5273. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5274. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5275. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5276. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5277. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5278. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5279. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5280. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5281. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5282. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5283. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5284. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5285. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5286. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5287. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5288. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5289. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5290. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5291. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5292. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5293. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5294. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5295. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5296. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5297. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5298. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5299. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5300. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5301. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5302. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5303. "ref/portable-net45+win8+wpa81/_._",
  5304. "ref/win8/_._",
  5305. "ref/wpa81/_._",
  5306. "ref/xamarinios10/_._",
  5307. "ref/xamarinmac20/_._",
  5308. "ref/xamarintvos10/_._",
  5309. "ref/xamarinwatchos10/_._",
  5310. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5311. "system.collections.concurrent.nuspec"
  5312. ]
  5313. },
  5314. "System.Collections.Immutable/5.0.0": {
  5315. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5316. "type": "package",
  5317. "path": "system.collections.immutable/5.0.0",
  5318. "files": [
  5319. ".nupkg.metadata",
  5320. ".signature.p7s",
  5321. "Icon.png",
  5322. "LICENSE.TXT",
  5323. "THIRD-PARTY-NOTICES.TXT",
  5324. "lib/net461/System.Collections.Immutable.dll",
  5325. "lib/net461/System.Collections.Immutable.xml",
  5326. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5327. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5328. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5329. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5330. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5331. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5332. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5333. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5334. "system.collections.immutable.5.0.0.nupkg.sha512",
  5335. "system.collections.immutable.nuspec",
  5336. "useSharedDesignerContext.txt",
  5337. "version.txt"
  5338. ]
  5339. },
  5340. "System.Collections.NonGeneric/4.3.0": {
  5341. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5342. "type": "package",
  5343. "path": "system.collections.nongeneric/4.3.0",
  5344. "files": [
  5345. ".nupkg.metadata",
  5346. ".signature.p7s",
  5347. "ThirdPartyNotices.txt",
  5348. "dotnet_library_license.txt",
  5349. "lib/MonoAndroid10/_._",
  5350. "lib/MonoTouch10/_._",
  5351. "lib/net46/System.Collections.NonGeneric.dll",
  5352. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5353. "lib/xamarinios10/_._",
  5354. "lib/xamarinmac20/_._",
  5355. "lib/xamarintvos10/_._",
  5356. "lib/xamarinwatchos10/_._",
  5357. "ref/MonoAndroid10/_._",
  5358. "ref/MonoTouch10/_._",
  5359. "ref/net46/System.Collections.NonGeneric.dll",
  5360. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5361. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5362. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5363. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5364. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5365. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5366. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5367. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5368. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5369. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5370. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5371. "ref/xamarinios10/_._",
  5372. "ref/xamarinmac20/_._",
  5373. "ref/xamarintvos10/_._",
  5374. "ref/xamarinwatchos10/_._",
  5375. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5376. "system.collections.nongeneric.nuspec"
  5377. ]
  5378. },
  5379. "System.ComponentModel/4.3.0": {
  5380. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5381. "type": "package",
  5382. "path": "system.componentmodel/4.3.0",
  5383. "files": [
  5384. ".nupkg.metadata",
  5385. ".signature.p7s",
  5386. "ThirdPartyNotices.txt",
  5387. "dotnet_library_license.txt",
  5388. "lib/MonoAndroid10/_._",
  5389. "lib/MonoTouch10/_._",
  5390. "lib/net45/_._",
  5391. "lib/netcore50/System.ComponentModel.dll",
  5392. "lib/netstandard1.3/System.ComponentModel.dll",
  5393. "lib/portable-net45+win8+wp8+wpa81/_._",
  5394. "lib/win8/_._",
  5395. "lib/wp80/_._",
  5396. "lib/wpa81/_._",
  5397. "lib/xamarinios10/_._",
  5398. "lib/xamarinmac20/_._",
  5399. "lib/xamarintvos10/_._",
  5400. "lib/xamarinwatchos10/_._",
  5401. "ref/MonoAndroid10/_._",
  5402. "ref/MonoTouch10/_._",
  5403. "ref/net45/_._",
  5404. "ref/netcore50/System.ComponentModel.dll",
  5405. "ref/netcore50/System.ComponentModel.xml",
  5406. "ref/netcore50/de/System.ComponentModel.xml",
  5407. "ref/netcore50/es/System.ComponentModel.xml",
  5408. "ref/netcore50/fr/System.ComponentModel.xml",
  5409. "ref/netcore50/it/System.ComponentModel.xml",
  5410. "ref/netcore50/ja/System.ComponentModel.xml",
  5411. "ref/netcore50/ko/System.ComponentModel.xml",
  5412. "ref/netcore50/ru/System.ComponentModel.xml",
  5413. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5414. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5415. "ref/netstandard1.0/System.ComponentModel.dll",
  5416. "ref/netstandard1.0/System.ComponentModel.xml",
  5417. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5418. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5419. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5420. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5421. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5422. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5423. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5424. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5425. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5426. "ref/portable-net45+win8+wp8+wpa81/_._",
  5427. "ref/win8/_._",
  5428. "ref/wp80/_._",
  5429. "ref/wpa81/_._",
  5430. "ref/xamarinios10/_._",
  5431. "ref/xamarinmac20/_._",
  5432. "ref/xamarintvos10/_._",
  5433. "ref/xamarinwatchos10/_._",
  5434. "system.componentmodel.4.3.0.nupkg.sha512",
  5435. "system.componentmodel.nuspec"
  5436. ]
  5437. },
  5438. "System.ComponentModel.Annotations/5.0.0": {
  5439. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5440. "type": "package",
  5441. "path": "system.componentmodel.annotations/5.0.0",
  5442. "files": [
  5443. ".nupkg.metadata",
  5444. ".signature.p7s",
  5445. "Icon.png",
  5446. "LICENSE.TXT",
  5447. "THIRD-PARTY-NOTICES.TXT",
  5448. "lib/MonoAndroid10/_._",
  5449. "lib/MonoTouch10/_._",
  5450. "lib/net45/_._",
  5451. "lib/net461/System.ComponentModel.Annotations.dll",
  5452. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5453. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5454. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5455. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5456. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5457. "lib/portable-net45+win8/_._",
  5458. "lib/win8/_._",
  5459. "lib/xamarinios10/_._",
  5460. "lib/xamarinmac20/_._",
  5461. "lib/xamarintvos10/_._",
  5462. "lib/xamarinwatchos10/_._",
  5463. "ref/MonoAndroid10/_._",
  5464. "ref/MonoTouch10/_._",
  5465. "ref/net45/_._",
  5466. "ref/net461/System.ComponentModel.Annotations.dll",
  5467. "ref/net461/System.ComponentModel.Annotations.xml",
  5468. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5469. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5470. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5471. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5472. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5473. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5474. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5475. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5476. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5477. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5478. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5479. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5480. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5481. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5482. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5483. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5484. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5485. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5486. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5487. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5488. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5489. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5490. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5491. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5492. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5493. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5494. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5495. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5496. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5497. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5498. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5499. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5500. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5501. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5502. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5503. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5504. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5505. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5506. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5507. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5508. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5509. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5510. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5511. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5512. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5513. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5514. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5515. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5516. "ref/portable-net45+win8/_._",
  5517. "ref/win8/_._",
  5518. "ref/xamarinios10/_._",
  5519. "ref/xamarinmac20/_._",
  5520. "ref/xamarintvos10/_._",
  5521. "ref/xamarinwatchos10/_._",
  5522. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5523. "system.componentmodel.annotations.nuspec",
  5524. "useSharedDesignerContext.txt",
  5525. "version.txt"
  5526. ]
  5527. },
  5528. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5529. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5530. "type": "package",
  5531. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5532. "files": [
  5533. ".nupkg.metadata",
  5534. ".signature.p7s",
  5535. "ThirdPartyNotices.txt",
  5536. "dotnet_library_license.txt",
  5537. "lib/MonoAndroid10/_._",
  5538. "lib/MonoTouch10/_._",
  5539. "lib/net45/_._",
  5540. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5541. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5542. "lib/portable-net45+win8+wp8+wpa81/_._",
  5543. "lib/win8/_._",
  5544. "lib/wp80/_._",
  5545. "lib/wpa81/_._",
  5546. "lib/xamarinios10/_._",
  5547. "lib/xamarinmac20/_._",
  5548. "lib/xamarintvos10/_._",
  5549. "lib/xamarinwatchos10/_._",
  5550. "ref/MonoAndroid10/_._",
  5551. "ref/MonoTouch10/_._",
  5552. "ref/net45/_._",
  5553. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5554. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5555. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5556. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5557. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5558. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5559. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5560. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5561. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5562. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5563. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5564. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5565. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5566. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5567. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5568. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5569. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5570. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5571. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5572. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5573. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5574. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5575. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5576. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5577. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5578. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5579. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5580. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5581. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5582. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5583. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5584. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5585. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5586. "ref/portable-net45+win8+wp8+wpa81/_._",
  5587. "ref/win8/_._",
  5588. "ref/wp80/_._",
  5589. "ref/wpa81/_._",
  5590. "ref/xamarinios10/_._",
  5591. "ref/xamarinmac20/_._",
  5592. "ref/xamarintvos10/_._",
  5593. "ref/xamarinwatchos10/_._",
  5594. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5595. "system.componentmodel.eventbasedasync.nuspec"
  5596. ]
  5597. },
  5598. "System.ComponentModel.Primitives/4.3.0": {
  5599. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5600. "type": "package",
  5601. "path": "system.componentmodel.primitives/4.3.0",
  5602. "files": [
  5603. ".nupkg.metadata",
  5604. ".signature.p7s",
  5605. "ThirdPartyNotices.txt",
  5606. "dotnet_library_license.txt",
  5607. "lib/MonoAndroid10/_._",
  5608. "lib/MonoTouch10/_._",
  5609. "lib/net45/System.ComponentModel.Primitives.dll",
  5610. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5611. "lib/xamarinios10/_._",
  5612. "lib/xamarinmac20/_._",
  5613. "lib/xamarintvos10/_._",
  5614. "lib/xamarinwatchos10/_._",
  5615. "ref/MonoAndroid10/_._",
  5616. "ref/MonoTouch10/_._",
  5617. "ref/net45/System.ComponentModel.Primitives.dll",
  5618. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5619. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5620. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5621. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5622. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5623. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5624. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5625. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5626. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5627. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5628. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5629. "ref/xamarinios10/_._",
  5630. "ref/xamarinmac20/_._",
  5631. "ref/xamarintvos10/_._",
  5632. "ref/xamarinwatchos10/_._",
  5633. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5634. "system.componentmodel.primitives.nuspec"
  5635. ]
  5636. },
  5637. "System.Configuration.ConfigurationManager/4.5.0": {
  5638. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5639. "type": "package",
  5640. "path": "system.configuration.configurationmanager/4.5.0",
  5641. "files": [
  5642. ".nupkg.metadata",
  5643. ".signature.p7s",
  5644. "LICENSE.TXT",
  5645. "THIRD-PARTY-NOTICES.TXT",
  5646. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5647. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5648. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5649. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5650. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5651. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5652. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5653. "system.configuration.configurationmanager.nuspec",
  5654. "useSharedDesignerContext.txt",
  5655. "version.txt"
  5656. ]
  5657. },
  5658. "System.Console/4.3.0": {
  5659. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5660. "type": "package",
  5661. "path": "system.console/4.3.0",
  5662. "files": [
  5663. ".nupkg.metadata",
  5664. ".signature.p7s",
  5665. "ThirdPartyNotices.txt",
  5666. "dotnet_library_license.txt",
  5667. "lib/MonoAndroid10/_._",
  5668. "lib/MonoTouch10/_._",
  5669. "lib/net46/System.Console.dll",
  5670. "lib/xamarinios10/_._",
  5671. "lib/xamarinmac20/_._",
  5672. "lib/xamarintvos10/_._",
  5673. "lib/xamarinwatchos10/_._",
  5674. "ref/MonoAndroid10/_._",
  5675. "ref/MonoTouch10/_._",
  5676. "ref/net46/System.Console.dll",
  5677. "ref/netstandard1.3/System.Console.dll",
  5678. "ref/netstandard1.3/System.Console.xml",
  5679. "ref/netstandard1.3/de/System.Console.xml",
  5680. "ref/netstandard1.3/es/System.Console.xml",
  5681. "ref/netstandard1.3/fr/System.Console.xml",
  5682. "ref/netstandard1.3/it/System.Console.xml",
  5683. "ref/netstandard1.3/ja/System.Console.xml",
  5684. "ref/netstandard1.3/ko/System.Console.xml",
  5685. "ref/netstandard1.3/ru/System.Console.xml",
  5686. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5687. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5688. "ref/xamarinios10/_._",
  5689. "ref/xamarinmac20/_._",
  5690. "ref/xamarintvos10/_._",
  5691. "ref/xamarinwatchos10/_._",
  5692. "system.console.4.3.0.nupkg.sha512",
  5693. "system.console.nuspec"
  5694. ]
  5695. },
  5696. "System.Diagnostics.Debug/4.3.0": {
  5697. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5698. "type": "package",
  5699. "path": "system.diagnostics.debug/4.3.0",
  5700. "files": [
  5701. ".nupkg.metadata",
  5702. ".signature.p7s",
  5703. "ThirdPartyNotices.txt",
  5704. "dotnet_library_license.txt",
  5705. "lib/MonoAndroid10/_._",
  5706. "lib/MonoTouch10/_._",
  5707. "lib/net45/_._",
  5708. "lib/portable-net45+win8+wp8+wpa81/_._",
  5709. "lib/win8/_._",
  5710. "lib/wp80/_._",
  5711. "lib/wpa81/_._",
  5712. "lib/xamarinios10/_._",
  5713. "lib/xamarinmac20/_._",
  5714. "lib/xamarintvos10/_._",
  5715. "lib/xamarinwatchos10/_._",
  5716. "ref/MonoAndroid10/_._",
  5717. "ref/MonoTouch10/_._",
  5718. "ref/net45/_._",
  5719. "ref/netcore50/System.Diagnostics.Debug.dll",
  5720. "ref/netcore50/System.Diagnostics.Debug.xml",
  5721. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5722. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5723. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5724. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5725. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5726. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5727. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5728. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5729. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5730. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5731. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5732. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5733. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5734. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5735. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5736. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5737. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5738. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5739. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5740. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5741. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5742. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5743. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5744. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5745. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5746. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5747. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5748. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5749. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5750. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5751. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5752. "ref/portable-net45+win8+wp8+wpa81/_._",
  5753. "ref/win8/_._",
  5754. "ref/wp80/_._",
  5755. "ref/wpa81/_._",
  5756. "ref/xamarinios10/_._",
  5757. "ref/xamarinmac20/_._",
  5758. "ref/xamarintvos10/_._",
  5759. "ref/xamarinwatchos10/_._",
  5760. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5761. "system.diagnostics.debug.nuspec"
  5762. ]
  5763. },
  5764. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5765. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5766. "type": "package",
  5767. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5768. "files": [
  5769. ".nupkg.metadata",
  5770. ".signature.p7s",
  5771. "Icon.png",
  5772. "LICENSE.TXT",
  5773. "THIRD-PARTY-NOTICES.TXT",
  5774. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5775. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5776. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5777. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5778. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5779. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5780. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5781. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5782. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5783. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5784. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5785. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5786. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5787. "system.diagnostics.diagnosticsource.nuspec",
  5788. "useSharedDesignerContext.txt",
  5789. "version.txt"
  5790. ]
  5791. },
  5792. "System.Diagnostics.Tools/4.3.0": {
  5793. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5794. "type": "package",
  5795. "path": "system.diagnostics.tools/4.3.0",
  5796. "files": [
  5797. ".nupkg.metadata",
  5798. ".signature.p7s",
  5799. "ThirdPartyNotices.txt",
  5800. "dotnet_library_license.txt",
  5801. "lib/MonoAndroid10/_._",
  5802. "lib/MonoTouch10/_._",
  5803. "lib/net45/_._",
  5804. "lib/portable-net45+win8+wp8+wpa81/_._",
  5805. "lib/win8/_._",
  5806. "lib/wp80/_._",
  5807. "lib/wpa81/_._",
  5808. "lib/xamarinios10/_._",
  5809. "lib/xamarinmac20/_._",
  5810. "lib/xamarintvos10/_._",
  5811. "lib/xamarinwatchos10/_._",
  5812. "ref/MonoAndroid10/_._",
  5813. "ref/MonoTouch10/_._",
  5814. "ref/net45/_._",
  5815. "ref/netcore50/System.Diagnostics.Tools.dll",
  5816. "ref/netcore50/System.Diagnostics.Tools.xml",
  5817. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5818. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5819. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5820. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5821. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5822. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5823. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5824. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5825. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5826. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5827. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5828. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5829. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5830. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5831. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5832. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5833. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5834. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5835. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5836. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5837. "ref/portable-net45+win8+wp8+wpa81/_._",
  5838. "ref/win8/_._",
  5839. "ref/wp80/_._",
  5840. "ref/wpa81/_._",
  5841. "ref/xamarinios10/_._",
  5842. "ref/xamarinmac20/_._",
  5843. "ref/xamarintvos10/_._",
  5844. "ref/xamarinwatchos10/_._",
  5845. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5846. "system.diagnostics.tools.nuspec"
  5847. ]
  5848. },
  5849. "System.Diagnostics.Tracing/4.3.0": {
  5850. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5851. "type": "package",
  5852. "path": "system.diagnostics.tracing/4.3.0",
  5853. "files": [
  5854. ".nupkg.metadata",
  5855. ".signature.p7s",
  5856. "ThirdPartyNotices.txt",
  5857. "dotnet_library_license.txt",
  5858. "lib/MonoAndroid10/_._",
  5859. "lib/MonoTouch10/_._",
  5860. "lib/net45/_._",
  5861. "lib/net462/System.Diagnostics.Tracing.dll",
  5862. "lib/portable-net45+win8+wpa81/_._",
  5863. "lib/win8/_._",
  5864. "lib/wpa81/_._",
  5865. "lib/xamarinios10/_._",
  5866. "lib/xamarinmac20/_._",
  5867. "lib/xamarintvos10/_._",
  5868. "lib/xamarinwatchos10/_._",
  5869. "ref/MonoAndroid10/_._",
  5870. "ref/MonoTouch10/_._",
  5871. "ref/net45/_._",
  5872. "ref/net462/System.Diagnostics.Tracing.dll",
  5873. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5874. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5875. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5876. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5877. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5878. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5879. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5880. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5881. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5882. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5883. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5884. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5885. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5886. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5887. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5888. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5889. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5890. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5891. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5892. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5893. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5894. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5895. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5896. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5897. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5898. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5899. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5900. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5901. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5902. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5903. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5904. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5905. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5906. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5907. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5908. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5909. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5910. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5911. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5912. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5913. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5914. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5915. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5916. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5917. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5918. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5919. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5920. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5921. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5922. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5923. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5924. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5925. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5926. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5927. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5928. "ref/portable-net45+win8+wpa81/_._",
  5929. "ref/win8/_._",
  5930. "ref/wpa81/_._",
  5931. "ref/xamarinios10/_._",
  5932. "ref/xamarinmac20/_._",
  5933. "ref/xamarintvos10/_._",
  5934. "ref/xamarinwatchos10/_._",
  5935. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5936. "system.diagnostics.tracing.nuspec"
  5937. ]
  5938. },
  5939. "System.Drawing.Common/5.0.3": {
  5940. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5941. "type": "package",
  5942. "path": "system.drawing.common/5.0.3",
  5943. "files": [
  5944. ".nupkg.metadata",
  5945. ".signature.p7s",
  5946. "Icon.png",
  5947. "LICENSE.TXT",
  5948. "THIRD-PARTY-NOTICES.TXT",
  5949. "lib/MonoAndroid10/_._",
  5950. "lib/MonoTouch10/_._",
  5951. "lib/net461/System.Drawing.Common.dll",
  5952. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5953. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5954. "lib/netstandard2.0/System.Drawing.Common.dll",
  5955. "lib/xamarinios10/_._",
  5956. "lib/xamarinmac20/_._",
  5957. "lib/xamarintvos10/_._",
  5958. "lib/xamarinwatchos10/_._",
  5959. "ref/MonoAndroid10/_._",
  5960. "ref/MonoTouch10/_._",
  5961. "ref/net461/System.Drawing.Common.dll",
  5962. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5963. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5964. "ref/netstandard2.0/System.Drawing.Common.dll",
  5965. "ref/xamarinios10/_._",
  5966. "ref/xamarinmac20/_._",
  5967. "ref/xamarintvos10/_._",
  5968. "ref/xamarinwatchos10/_._",
  5969. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5970. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5971. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5972. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5973. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5974. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5975. "system.drawing.common.5.0.3.nupkg.sha512",
  5976. "system.drawing.common.nuspec",
  5977. "useSharedDesignerContext.txt",
  5978. "version.txt"
  5979. ]
  5980. },
  5981. "System.Globalization/4.3.0": {
  5982. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5983. "type": "package",
  5984. "path": "system.globalization/4.3.0",
  5985. "files": [
  5986. ".nupkg.metadata",
  5987. ".signature.p7s",
  5988. "ThirdPartyNotices.txt",
  5989. "dotnet_library_license.txt",
  5990. "lib/MonoAndroid10/_._",
  5991. "lib/MonoTouch10/_._",
  5992. "lib/net45/_._",
  5993. "lib/portable-net45+win8+wp8+wpa81/_._",
  5994. "lib/win8/_._",
  5995. "lib/wp80/_._",
  5996. "lib/wpa81/_._",
  5997. "lib/xamarinios10/_._",
  5998. "lib/xamarinmac20/_._",
  5999. "lib/xamarintvos10/_._",
  6000. "lib/xamarinwatchos10/_._",
  6001. "ref/MonoAndroid10/_._",
  6002. "ref/MonoTouch10/_._",
  6003. "ref/net45/_._",
  6004. "ref/netcore50/System.Globalization.dll",
  6005. "ref/netcore50/System.Globalization.xml",
  6006. "ref/netcore50/de/System.Globalization.xml",
  6007. "ref/netcore50/es/System.Globalization.xml",
  6008. "ref/netcore50/fr/System.Globalization.xml",
  6009. "ref/netcore50/it/System.Globalization.xml",
  6010. "ref/netcore50/ja/System.Globalization.xml",
  6011. "ref/netcore50/ko/System.Globalization.xml",
  6012. "ref/netcore50/ru/System.Globalization.xml",
  6013. "ref/netcore50/zh-hans/System.Globalization.xml",
  6014. "ref/netcore50/zh-hant/System.Globalization.xml",
  6015. "ref/netstandard1.0/System.Globalization.dll",
  6016. "ref/netstandard1.0/System.Globalization.xml",
  6017. "ref/netstandard1.0/de/System.Globalization.xml",
  6018. "ref/netstandard1.0/es/System.Globalization.xml",
  6019. "ref/netstandard1.0/fr/System.Globalization.xml",
  6020. "ref/netstandard1.0/it/System.Globalization.xml",
  6021. "ref/netstandard1.0/ja/System.Globalization.xml",
  6022. "ref/netstandard1.0/ko/System.Globalization.xml",
  6023. "ref/netstandard1.0/ru/System.Globalization.xml",
  6024. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6025. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6026. "ref/netstandard1.3/System.Globalization.dll",
  6027. "ref/netstandard1.3/System.Globalization.xml",
  6028. "ref/netstandard1.3/de/System.Globalization.xml",
  6029. "ref/netstandard1.3/es/System.Globalization.xml",
  6030. "ref/netstandard1.3/fr/System.Globalization.xml",
  6031. "ref/netstandard1.3/it/System.Globalization.xml",
  6032. "ref/netstandard1.3/ja/System.Globalization.xml",
  6033. "ref/netstandard1.3/ko/System.Globalization.xml",
  6034. "ref/netstandard1.3/ru/System.Globalization.xml",
  6035. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6036. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6037. "ref/portable-net45+win8+wp8+wpa81/_._",
  6038. "ref/win8/_._",
  6039. "ref/wp80/_._",
  6040. "ref/wpa81/_._",
  6041. "ref/xamarinios10/_._",
  6042. "ref/xamarinmac20/_._",
  6043. "ref/xamarintvos10/_._",
  6044. "ref/xamarinwatchos10/_._",
  6045. "system.globalization.4.3.0.nupkg.sha512",
  6046. "system.globalization.nuspec"
  6047. ]
  6048. },
  6049. "System.Globalization.Calendars/4.3.0": {
  6050. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6051. "type": "package",
  6052. "path": "system.globalization.calendars/4.3.0",
  6053. "files": [
  6054. ".nupkg.metadata",
  6055. ".signature.p7s",
  6056. "ThirdPartyNotices.txt",
  6057. "dotnet_library_license.txt",
  6058. "lib/MonoAndroid10/_._",
  6059. "lib/MonoTouch10/_._",
  6060. "lib/net46/System.Globalization.Calendars.dll",
  6061. "lib/xamarinios10/_._",
  6062. "lib/xamarinmac20/_._",
  6063. "lib/xamarintvos10/_._",
  6064. "lib/xamarinwatchos10/_._",
  6065. "ref/MonoAndroid10/_._",
  6066. "ref/MonoTouch10/_._",
  6067. "ref/net46/System.Globalization.Calendars.dll",
  6068. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6069. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6070. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6071. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6072. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6073. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6074. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6075. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6076. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6077. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6078. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6079. "ref/xamarinios10/_._",
  6080. "ref/xamarinmac20/_._",
  6081. "ref/xamarintvos10/_._",
  6082. "ref/xamarinwatchos10/_._",
  6083. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6084. "system.globalization.calendars.nuspec"
  6085. ]
  6086. },
  6087. "System.Globalization.Extensions/4.3.0": {
  6088. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6089. "type": "package",
  6090. "path": "system.globalization.extensions/4.3.0",
  6091. "files": [
  6092. ".nupkg.metadata",
  6093. ".signature.p7s",
  6094. "ThirdPartyNotices.txt",
  6095. "dotnet_library_license.txt",
  6096. "lib/MonoAndroid10/_._",
  6097. "lib/MonoTouch10/_._",
  6098. "lib/net46/System.Globalization.Extensions.dll",
  6099. "lib/xamarinios10/_._",
  6100. "lib/xamarinmac20/_._",
  6101. "lib/xamarintvos10/_._",
  6102. "lib/xamarinwatchos10/_._",
  6103. "ref/MonoAndroid10/_._",
  6104. "ref/MonoTouch10/_._",
  6105. "ref/net46/System.Globalization.Extensions.dll",
  6106. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6107. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6108. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6109. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6110. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6111. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6112. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6113. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6114. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6115. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6116. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6117. "ref/xamarinios10/_._",
  6118. "ref/xamarinmac20/_._",
  6119. "ref/xamarintvos10/_._",
  6120. "ref/xamarinwatchos10/_._",
  6121. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6122. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6123. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6124. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6125. "system.globalization.extensions.nuspec"
  6126. ]
  6127. },
  6128. "System.IO/4.3.0": {
  6129. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6130. "type": "package",
  6131. "path": "system.io/4.3.0",
  6132. "files": [
  6133. ".nupkg.metadata",
  6134. ".signature.p7s",
  6135. "ThirdPartyNotices.txt",
  6136. "dotnet_library_license.txt",
  6137. "lib/MonoAndroid10/_._",
  6138. "lib/MonoTouch10/_._",
  6139. "lib/net45/_._",
  6140. "lib/net462/System.IO.dll",
  6141. "lib/portable-net45+win8+wp8+wpa81/_._",
  6142. "lib/win8/_._",
  6143. "lib/wp80/_._",
  6144. "lib/wpa81/_._",
  6145. "lib/xamarinios10/_._",
  6146. "lib/xamarinmac20/_._",
  6147. "lib/xamarintvos10/_._",
  6148. "lib/xamarinwatchos10/_._",
  6149. "ref/MonoAndroid10/_._",
  6150. "ref/MonoTouch10/_._",
  6151. "ref/net45/_._",
  6152. "ref/net462/System.IO.dll",
  6153. "ref/netcore50/System.IO.dll",
  6154. "ref/netcore50/System.IO.xml",
  6155. "ref/netcore50/de/System.IO.xml",
  6156. "ref/netcore50/es/System.IO.xml",
  6157. "ref/netcore50/fr/System.IO.xml",
  6158. "ref/netcore50/it/System.IO.xml",
  6159. "ref/netcore50/ja/System.IO.xml",
  6160. "ref/netcore50/ko/System.IO.xml",
  6161. "ref/netcore50/ru/System.IO.xml",
  6162. "ref/netcore50/zh-hans/System.IO.xml",
  6163. "ref/netcore50/zh-hant/System.IO.xml",
  6164. "ref/netstandard1.0/System.IO.dll",
  6165. "ref/netstandard1.0/System.IO.xml",
  6166. "ref/netstandard1.0/de/System.IO.xml",
  6167. "ref/netstandard1.0/es/System.IO.xml",
  6168. "ref/netstandard1.0/fr/System.IO.xml",
  6169. "ref/netstandard1.0/it/System.IO.xml",
  6170. "ref/netstandard1.0/ja/System.IO.xml",
  6171. "ref/netstandard1.0/ko/System.IO.xml",
  6172. "ref/netstandard1.0/ru/System.IO.xml",
  6173. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6174. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6175. "ref/netstandard1.3/System.IO.dll",
  6176. "ref/netstandard1.3/System.IO.xml",
  6177. "ref/netstandard1.3/de/System.IO.xml",
  6178. "ref/netstandard1.3/es/System.IO.xml",
  6179. "ref/netstandard1.3/fr/System.IO.xml",
  6180. "ref/netstandard1.3/it/System.IO.xml",
  6181. "ref/netstandard1.3/ja/System.IO.xml",
  6182. "ref/netstandard1.3/ko/System.IO.xml",
  6183. "ref/netstandard1.3/ru/System.IO.xml",
  6184. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6185. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6186. "ref/netstandard1.5/System.IO.dll",
  6187. "ref/netstandard1.5/System.IO.xml",
  6188. "ref/netstandard1.5/de/System.IO.xml",
  6189. "ref/netstandard1.5/es/System.IO.xml",
  6190. "ref/netstandard1.5/fr/System.IO.xml",
  6191. "ref/netstandard1.5/it/System.IO.xml",
  6192. "ref/netstandard1.5/ja/System.IO.xml",
  6193. "ref/netstandard1.5/ko/System.IO.xml",
  6194. "ref/netstandard1.5/ru/System.IO.xml",
  6195. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6196. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6197. "ref/portable-net45+win8+wp8+wpa81/_._",
  6198. "ref/win8/_._",
  6199. "ref/wp80/_._",
  6200. "ref/wpa81/_._",
  6201. "ref/xamarinios10/_._",
  6202. "ref/xamarinmac20/_._",
  6203. "ref/xamarintvos10/_._",
  6204. "ref/xamarinwatchos10/_._",
  6205. "system.io.4.3.0.nupkg.sha512",
  6206. "system.io.nuspec"
  6207. ]
  6208. },
  6209. "System.IO.Compression/4.3.0": {
  6210. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6211. "type": "package",
  6212. "path": "system.io.compression/4.3.0",
  6213. "files": [
  6214. ".nupkg.metadata",
  6215. ".signature.p7s",
  6216. "ThirdPartyNotices.txt",
  6217. "dotnet_library_license.txt",
  6218. "lib/MonoAndroid10/_._",
  6219. "lib/MonoTouch10/_._",
  6220. "lib/net45/_._",
  6221. "lib/net46/System.IO.Compression.dll",
  6222. "lib/portable-net45+win8+wpa81/_._",
  6223. "lib/win8/_._",
  6224. "lib/wpa81/_._",
  6225. "lib/xamarinios10/_._",
  6226. "lib/xamarinmac20/_._",
  6227. "lib/xamarintvos10/_._",
  6228. "lib/xamarinwatchos10/_._",
  6229. "ref/MonoAndroid10/_._",
  6230. "ref/MonoTouch10/_._",
  6231. "ref/net45/_._",
  6232. "ref/net46/System.IO.Compression.dll",
  6233. "ref/netcore50/System.IO.Compression.dll",
  6234. "ref/netcore50/System.IO.Compression.xml",
  6235. "ref/netcore50/de/System.IO.Compression.xml",
  6236. "ref/netcore50/es/System.IO.Compression.xml",
  6237. "ref/netcore50/fr/System.IO.Compression.xml",
  6238. "ref/netcore50/it/System.IO.Compression.xml",
  6239. "ref/netcore50/ja/System.IO.Compression.xml",
  6240. "ref/netcore50/ko/System.IO.Compression.xml",
  6241. "ref/netcore50/ru/System.IO.Compression.xml",
  6242. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6243. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6244. "ref/netstandard1.1/System.IO.Compression.dll",
  6245. "ref/netstandard1.1/System.IO.Compression.xml",
  6246. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6247. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6248. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6249. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6250. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6251. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6252. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6253. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6254. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6255. "ref/netstandard1.3/System.IO.Compression.dll",
  6256. "ref/netstandard1.3/System.IO.Compression.xml",
  6257. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6258. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6259. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6260. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6261. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6262. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6263. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6264. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6265. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6266. "ref/portable-net45+win8+wpa81/_._",
  6267. "ref/win8/_._",
  6268. "ref/wpa81/_._",
  6269. "ref/xamarinios10/_._",
  6270. "ref/xamarinmac20/_._",
  6271. "ref/xamarintvos10/_._",
  6272. "ref/xamarinwatchos10/_._",
  6273. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6274. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6275. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6276. "system.io.compression.4.3.0.nupkg.sha512",
  6277. "system.io.compression.nuspec"
  6278. ]
  6279. },
  6280. "System.IO.Compression.ZipFile/4.3.0": {
  6281. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6282. "type": "package",
  6283. "path": "system.io.compression.zipfile/4.3.0",
  6284. "files": [
  6285. ".nupkg.metadata",
  6286. ".signature.p7s",
  6287. "ThirdPartyNotices.txt",
  6288. "dotnet_library_license.txt",
  6289. "lib/MonoAndroid10/_._",
  6290. "lib/MonoTouch10/_._",
  6291. "lib/net46/System.IO.Compression.ZipFile.dll",
  6292. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6293. "lib/xamarinios10/_._",
  6294. "lib/xamarinmac20/_._",
  6295. "lib/xamarintvos10/_._",
  6296. "lib/xamarinwatchos10/_._",
  6297. "ref/MonoAndroid10/_._",
  6298. "ref/MonoTouch10/_._",
  6299. "ref/net46/System.IO.Compression.ZipFile.dll",
  6300. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6301. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6302. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6303. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6304. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6305. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6306. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6307. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6308. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6309. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6310. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6311. "ref/xamarinios10/_._",
  6312. "ref/xamarinmac20/_._",
  6313. "ref/xamarintvos10/_._",
  6314. "ref/xamarinwatchos10/_._",
  6315. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6316. "system.io.compression.zipfile.nuspec"
  6317. ]
  6318. },
  6319. "System.IO.FileSystem/4.3.0": {
  6320. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6321. "type": "package",
  6322. "path": "system.io.filesystem/4.3.0",
  6323. "files": [
  6324. ".nupkg.metadata",
  6325. ".signature.p7s",
  6326. "ThirdPartyNotices.txt",
  6327. "dotnet_library_license.txt",
  6328. "lib/MonoAndroid10/_._",
  6329. "lib/MonoTouch10/_._",
  6330. "lib/net46/System.IO.FileSystem.dll",
  6331. "lib/xamarinios10/_._",
  6332. "lib/xamarinmac20/_._",
  6333. "lib/xamarintvos10/_._",
  6334. "lib/xamarinwatchos10/_._",
  6335. "ref/MonoAndroid10/_._",
  6336. "ref/MonoTouch10/_._",
  6337. "ref/net46/System.IO.FileSystem.dll",
  6338. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6339. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6340. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6341. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6342. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6343. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6344. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6345. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6346. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6347. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6348. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6349. "ref/xamarinios10/_._",
  6350. "ref/xamarinmac20/_._",
  6351. "ref/xamarintvos10/_._",
  6352. "ref/xamarinwatchos10/_._",
  6353. "system.io.filesystem.4.3.0.nupkg.sha512",
  6354. "system.io.filesystem.nuspec"
  6355. ]
  6356. },
  6357. "System.IO.FileSystem.Primitives/4.3.0": {
  6358. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6359. "type": "package",
  6360. "path": "system.io.filesystem.primitives/4.3.0",
  6361. "files": [
  6362. ".nupkg.metadata",
  6363. ".signature.p7s",
  6364. "ThirdPartyNotices.txt",
  6365. "dotnet_library_license.txt",
  6366. "lib/MonoAndroid10/_._",
  6367. "lib/MonoTouch10/_._",
  6368. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6369. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6370. "lib/xamarinios10/_._",
  6371. "lib/xamarinmac20/_._",
  6372. "lib/xamarintvos10/_._",
  6373. "lib/xamarinwatchos10/_._",
  6374. "ref/MonoAndroid10/_._",
  6375. "ref/MonoTouch10/_._",
  6376. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6377. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6378. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6379. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6380. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6381. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6382. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6383. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6384. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6385. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6386. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6387. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6388. "ref/xamarinios10/_._",
  6389. "ref/xamarinmac20/_._",
  6390. "ref/xamarintvos10/_._",
  6391. "ref/xamarinwatchos10/_._",
  6392. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6393. "system.io.filesystem.primitives.nuspec"
  6394. ]
  6395. },
  6396. "System.IO.Pipelines/5.0.0": {
  6397. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6398. "type": "package",
  6399. "path": "system.io.pipelines/5.0.0",
  6400. "files": [
  6401. ".nupkg.metadata",
  6402. ".signature.p7s",
  6403. "Icon.png",
  6404. "LICENSE.TXT",
  6405. "THIRD-PARTY-NOTICES.TXT",
  6406. "lib/net461/System.IO.Pipelines.dll",
  6407. "lib/net461/System.IO.Pipelines.xml",
  6408. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6409. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6410. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6411. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6412. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6413. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6414. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6415. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6416. "system.io.pipelines.5.0.0.nupkg.sha512",
  6417. "system.io.pipelines.nuspec",
  6418. "useSharedDesignerContext.txt",
  6419. "version.txt"
  6420. ]
  6421. },
  6422. "System.Linq/4.3.0": {
  6423. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6424. "type": "package",
  6425. "path": "system.linq/4.3.0",
  6426. "files": [
  6427. ".nupkg.metadata",
  6428. ".signature.p7s",
  6429. "ThirdPartyNotices.txt",
  6430. "dotnet_library_license.txt",
  6431. "lib/MonoAndroid10/_._",
  6432. "lib/MonoTouch10/_._",
  6433. "lib/net45/_._",
  6434. "lib/net463/System.Linq.dll",
  6435. "lib/netcore50/System.Linq.dll",
  6436. "lib/netstandard1.6/System.Linq.dll",
  6437. "lib/portable-net45+win8+wp8+wpa81/_._",
  6438. "lib/win8/_._",
  6439. "lib/wp80/_._",
  6440. "lib/wpa81/_._",
  6441. "lib/xamarinios10/_._",
  6442. "lib/xamarinmac20/_._",
  6443. "lib/xamarintvos10/_._",
  6444. "lib/xamarinwatchos10/_._",
  6445. "ref/MonoAndroid10/_._",
  6446. "ref/MonoTouch10/_._",
  6447. "ref/net45/_._",
  6448. "ref/net463/System.Linq.dll",
  6449. "ref/netcore50/System.Linq.dll",
  6450. "ref/netcore50/System.Linq.xml",
  6451. "ref/netcore50/de/System.Linq.xml",
  6452. "ref/netcore50/es/System.Linq.xml",
  6453. "ref/netcore50/fr/System.Linq.xml",
  6454. "ref/netcore50/it/System.Linq.xml",
  6455. "ref/netcore50/ja/System.Linq.xml",
  6456. "ref/netcore50/ko/System.Linq.xml",
  6457. "ref/netcore50/ru/System.Linq.xml",
  6458. "ref/netcore50/zh-hans/System.Linq.xml",
  6459. "ref/netcore50/zh-hant/System.Linq.xml",
  6460. "ref/netstandard1.0/System.Linq.dll",
  6461. "ref/netstandard1.0/System.Linq.xml",
  6462. "ref/netstandard1.0/de/System.Linq.xml",
  6463. "ref/netstandard1.0/es/System.Linq.xml",
  6464. "ref/netstandard1.0/fr/System.Linq.xml",
  6465. "ref/netstandard1.0/it/System.Linq.xml",
  6466. "ref/netstandard1.0/ja/System.Linq.xml",
  6467. "ref/netstandard1.0/ko/System.Linq.xml",
  6468. "ref/netstandard1.0/ru/System.Linq.xml",
  6469. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6470. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6471. "ref/netstandard1.6/System.Linq.dll",
  6472. "ref/netstandard1.6/System.Linq.xml",
  6473. "ref/netstandard1.6/de/System.Linq.xml",
  6474. "ref/netstandard1.6/es/System.Linq.xml",
  6475. "ref/netstandard1.6/fr/System.Linq.xml",
  6476. "ref/netstandard1.6/it/System.Linq.xml",
  6477. "ref/netstandard1.6/ja/System.Linq.xml",
  6478. "ref/netstandard1.6/ko/System.Linq.xml",
  6479. "ref/netstandard1.6/ru/System.Linq.xml",
  6480. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6481. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6482. "ref/portable-net45+win8+wp8+wpa81/_._",
  6483. "ref/win8/_._",
  6484. "ref/wp80/_._",
  6485. "ref/wpa81/_._",
  6486. "ref/xamarinios10/_._",
  6487. "ref/xamarinmac20/_._",
  6488. "ref/xamarintvos10/_._",
  6489. "ref/xamarinwatchos10/_._",
  6490. "system.linq.4.3.0.nupkg.sha512",
  6491. "system.linq.nuspec"
  6492. ]
  6493. },
  6494. "System.Linq.Expressions/4.3.0": {
  6495. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6496. "type": "package",
  6497. "path": "system.linq.expressions/4.3.0",
  6498. "files": [
  6499. ".nupkg.metadata",
  6500. ".signature.p7s",
  6501. "ThirdPartyNotices.txt",
  6502. "dotnet_library_license.txt",
  6503. "lib/MonoAndroid10/_._",
  6504. "lib/MonoTouch10/_._",
  6505. "lib/net45/_._",
  6506. "lib/net463/System.Linq.Expressions.dll",
  6507. "lib/netcore50/System.Linq.Expressions.dll",
  6508. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6509. "lib/portable-net45+win8+wp8+wpa81/_._",
  6510. "lib/win8/_._",
  6511. "lib/wp80/_._",
  6512. "lib/wpa81/_._",
  6513. "lib/xamarinios10/_._",
  6514. "lib/xamarinmac20/_._",
  6515. "lib/xamarintvos10/_._",
  6516. "lib/xamarinwatchos10/_._",
  6517. "ref/MonoAndroid10/_._",
  6518. "ref/MonoTouch10/_._",
  6519. "ref/net45/_._",
  6520. "ref/net463/System.Linq.Expressions.dll",
  6521. "ref/netcore50/System.Linq.Expressions.dll",
  6522. "ref/netcore50/System.Linq.Expressions.xml",
  6523. "ref/netcore50/de/System.Linq.Expressions.xml",
  6524. "ref/netcore50/es/System.Linq.Expressions.xml",
  6525. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6526. "ref/netcore50/it/System.Linq.Expressions.xml",
  6527. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6528. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6529. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6530. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6531. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6532. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6533. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6534. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6535. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6536. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6537. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6538. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6539. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6540. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6541. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6542. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6543. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6544. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6545. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6546. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6547. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6548. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6549. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6550. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6551. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6552. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6553. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6554. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6555. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6556. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6557. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6558. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6559. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6560. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6561. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6562. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6563. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6564. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6565. "ref/portable-net45+win8+wp8+wpa81/_._",
  6566. "ref/win8/_._",
  6567. "ref/wp80/_._",
  6568. "ref/wpa81/_._",
  6569. "ref/xamarinios10/_._",
  6570. "ref/xamarinmac20/_._",
  6571. "ref/xamarintvos10/_._",
  6572. "ref/xamarinwatchos10/_._",
  6573. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6574. "system.linq.expressions.4.3.0.nupkg.sha512",
  6575. "system.linq.expressions.nuspec"
  6576. ]
  6577. },
  6578. "System.Memory/4.5.5": {
  6579. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6580. "type": "package",
  6581. "path": "system.memory/4.5.5",
  6582. "files": [
  6583. ".nupkg.metadata",
  6584. ".signature.p7s",
  6585. "LICENSE.TXT",
  6586. "THIRD-PARTY-NOTICES.TXT",
  6587. "lib/net461/System.Memory.dll",
  6588. "lib/net461/System.Memory.xml",
  6589. "lib/netcoreapp2.1/_._",
  6590. "lib/netstandard1.1/System.Memory.dll",
  6591. "lib/netstandard1.1/System.Memory.xml",
  6592. "lib/netstandard2.0/System.Memory.dll",
  6593. "lib/netstandard2.0/System.Memory.xml",
  6594. "ref/netcoreapp2.1/_._",
  6595. "system.memory.4.5.5.nupkg.sha512",
  6596. "system.memory.nuspec",
  6597. "useSharedDesignerContext.txt",
  6598. "version.txt"
  6599. ]
  6600. },
  6601. "System.Net.Http/4.3.2": {
  6602. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  6603. "type": "package",
  6604. "path": "system.net.http/4.3.2",
  6605. "files": [
  6606. ".nupkg.metadata",
  6607. ".signature.p7s",
  6608. "ThirdPartyNotices.txt",
  6609. "dotnet_library_license.txt",
  6610. "lib/Xamarinmac20/_._",
  6611. "lib/monoandroid10/_._",
  6612. "lib/monotouch10/_._",
  6613. "lib/net45/_._",
  6614. "lib/net46/System.Net.Http.dll",
  6615. "lib/portable-net45+win8+wpa81/_._",
  6616. "lib/win8/_._",
  6617. "lib/wpa81/_._",
  6618. "lib/xamarinios10/_._",
  6619. "lib/xamarintvos10/_._",
  6620. "lib/xamarinwatchos10/_._",
  6621. "ref/Xamarinmac20/_._",
  6622. "ref/monoandroid10/_._",
  6623. "ref/monotouch10/_._",
  6624. "ref/net45/_._",
  6625. "ref/net46/System.Net.Http.dll",
  6626. "ref/netcore50/System.Net.Http.dll",
  6627. "ref/netstandard1.1/System.Net.Http.dll",
  6628. "ref/netstandard1.3/System.Net.Http.dll",
  6629. "ref/portable-net45+win8+wpa81/_._",
  6630. "ref/win8/_._",
  6631. "ref/wpa81/_._",
  6632. "ref/xamarinios10/_._",
  6633. "ref/xamarintvos10/_._",
  6634. "ref/xamarinwatchos10/_._",
  6635. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6636. "runtimes/win/lib/net46/System.Net.Http.dll",
  6637. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6638. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6639. "system.net.http.4.3.2.nupkg.sha512",
  6640. "system.net.http.nuspec"
  6641. ]
  6642. },
  6643. "System.Net.NameResolution/4.3.0": {
  6644. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6645. "type": "package",
  6646. "path": "system.net.nameresolution/4.3.0",
  6647. "files": [
  6648. ".nupkg.metadata",
  6649. ".signature.p7s",
  6650. "ThirdPartyNotices.txt",
  6651. "dotnet_library_license.txt",
  6652. "lib/MonoAndroid10/_._",
  6653. "lib/MonoTouch10/_._",
  6654. "lib/net46/System.Net.NameResolution.dll",
  6655. "lib/xamarinios10/_._",
  6656. "lib/xamarinmac20/_._",
  6657. "lib/xamarintvos10/_._",
  6658. "lib/xamarinwatchos10/_._",
  6659. "ref/MonoAndroid10/_._",
  6660. "ref/MonoTouch10/_._",
  6661. "ref/net46/System.Net.NameResolution.dll",
  6662. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6663. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6664. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6665. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6666. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6667. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6668. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6669. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6670. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6671. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6672. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6673. "ref/xamarinios10/_._",
  6674. "ref/xamarinmac20/_._",
  6675. "ref/xamarintvos10/_._",
  6676. "ref/xamarinwatchos10/_._",
  6677. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6678. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6679. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6680. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6681. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6682. "system.net.nameresolution.nuspec"
  6683. ]
  6684. },
  6685. "System.Net.Primitives/4.3.0": {
  6686. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6687. "type": "package",
  6688. "path": "system.net.primitives/4.3.0",
  6689. "files": [
  6690. ".nupkg.metadata",
  6691. ".signature.p7s",
  6692. "ThirdPartyNotices.txt",
  6693. "dotnet_library_license.txt",
  6694. "lib/MonoAndroid10/_._",
  6695. "lib/MonoTouch10/_._",
  6696. "lib/net45/_._",
  6697. "lib/portable-net45+win8+wp8+wpa81/_._",
  6698. "lib/win8/_._",
  6699. "lib/wp80/_._",
  6700. "lib/wpa81/_._",
  6701. "lib/xamarinios10/_._",
  6702. "lib/xamarinmac20/_._",
  6703. "lib/xamarintvos10/_._",
  6704. "lib/xamarinwatchos10/_._",
  6705. "ref/MonoAndroid10/_._",
  6706. "ref/MonoTouch10/_._",
  6707. "ref/net45/_._",
  6708. "ref/netcore50/System.Net.Primitives.dll",
  6709. "ref/netcore50/System.Net.Primitives.xml",
  6710. "ref/netcore50/de/System.Net.Primitives.xml",
  6711. "ref/netcore50/es/System.Net.Primitives.xml",
  6712. "ref/netcore50/fr/System.Net.Primitives.xml",
  6713. "ref/netcore50/it/System.Net.Primitives.xml",
  6714. "ref/netcore50/ja/System.Net.Primitives.xml",
  6715. "ref/netcore50/ko/System.Net.Primitives.xml",
  6716. "ref/netcore50/ru/System.Net.Primitives.xml",
  6717. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6718. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6719. "ref/netstandard1.0/System.Net.Primitives.dll",
  6720. "ref/netstandard1.0/System.Net.Primitives.xml",
  6721. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6722. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6723. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6724. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6725. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6726. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6727. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6728. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6729. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6730. "ref/netstandard1.1/System.Net.Primitives.dll",
  6731. "ref/netstandard1.1/System.Net.Primitives.xml",
  6732. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6733. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6734. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6735. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6736. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6737. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6738. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6739. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6740. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6741. "ref/netstandard1.3/System.Net.Primitives.dll",
  6742. "ref/netstandard1.3/System.Net.Primitives.xml",
  6743. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6744. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6745. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6746. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6747. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6748. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6749. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6750. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6751. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6752. "ref/portable-net45+win8+wp8+wpa81/_._",
  6753. "ref/win8/_._",
  6754. "ref/wp80/_._",
  6755. "ref/wpa81/_._",
  6756. "ref/xamarinios10/_._",
  6757. "ref/xamarinmac20/_._",
  6758. "ref/xamarintvos10/_._",
  6759. "ref/xamarinwatchos10/_._",
  6760. "system.net.primitives.4.3.0.nupkg.sha512",
  6761. "system.net.primitives.nuspec"
  6762. ]
  6763. },
  6764. "System.Net.Security/4.3.0": {
  6765. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6766. "type": "package",
  6767. "path": "system.net.security/4.3.0",
  6768. "files": [
  6769. ".nupkg.metadata",
  6770. ".signature.p7s",
  6771. "ThirdPartyNotices.txt",
  6772. "dotnet_library_license.txt",
  6773. "lib/MonoAndroid10/_._",
  6774. "lib/MonoTouch10/_._",
  6775. "lib/net46/System.Net.Security.dll",
  6776. "lib/xamarinios10/_._",
  6777. "lib/xamarinmac20/_._",
  6778. "lib/xamarintvos10/_._",
  6779. "lib/xamarinwatchos10/_._",
  6780. "ref/MonoAndroid10/_._",
  6781. "ref/MonoTouch10/_._",
  6782. "ref/net46/System.Net.Security.dll",
  6783. "ref/netstandard1.3/System.Net.Security.dll",
  6784. "ref/netstandard1.3/System.Net.Security.xml",
  6785. "ref/netstandard1.3/de/System.Net.Security.xml",
  6786. "ref/netstandard1.3/es/System.Net.Security.xml",
  6787. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6788. "ref/netstandard1.3/it/System.Net.Security.xml",
  6789. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6790. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6791. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6792. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6793. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6794. "ref/xamarinios10/_._",
  6795. "ref/xamarinmac20/_._",
  6796. "ref/xamarintvos10/_._",
  6797. "ref/xamarinwatchos10/_._",
  6798. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6799. "runtimes/win/lib/net46/System.Net.Security.dll",
  6800. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6801. "runtimes/win7/lib/netcore50/_._",
  6802. "system.net.security.4.3.0.nupkg.sha512",
  6803. "system.net.security.nuspec"
  6804. ]
  6805. },
  6806. "System.Net.Sockets/4.3.0": {
  6807. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6808. "type": "package",
  6809. "path": "system.net.sockets/4.3.0",
  6810. "files": [
  6811. ".nupkg.metadata",
  6812. ".signature.p7s",
  6813. "ThirdPartyNotices.txt",
  6814. "dotnet_library_license.txt",
  6815. "lib/MonoAndroid10/_._",
  6816. "lib/MonoTouch10/_._",
  6817. "lib/net46/System.Net.Sockets.dll",
  6818. "lib/xamarinios10/_._",
  6819. "lib/xamarinmac20/_._",
  6820. "lib/xamarintvos10/_._",
  6821. "lib/xamarinwatchos10/_._",
  6822. "ref/MonoAndroid10/_._",
  6823. "ref/MonoTouch10/_._",
  6824. "ref/net46/System.Net.Sockets.dll",
  6825. "ref/netstandard1.3/System.Net.Sockets.dll",
  6826. "ref/netstandard1.3/System.Net.Sockets.xml",
  6827. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6828. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6829. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6830. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6831. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6832. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6833. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6834. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6835. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6836. "ref/xamarinios10/_._",
  6837. "ref/xamarinmac20/_._",
  6838. "ref/xamarintvos10/_._",
  6839. "ref/xamarinwatchos10/_._",
  6840. "system.net.sockets.4.3.0.nupkg.sha512",
  6841. "system.net.sockets.nuspec"
  6842. ]
  6843. },
  6844. "System.ObjectModel/4.3.0": {
  6845. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6846. "type": "package",
  6847. "path": "system.objectmodel/4.3.0",
  6848. "files": [
  6849. ".nupkg.metadata",
  6850. ".signature.p7s",
  6851. "ThirdPartyNotices.txt",
  6852. "dotnet_library_license.txt",
  6853. "lib/MonoAndroid10/_._",
  6854. "lib/MonoTouch10/_._",
  6855. "lib/net45/_._",
  6856. "lib/netcore50/System.ObjectModel.dll",
  6857. "lib/netstandard1.3/System.ObjectModel.dll",
  6858. "lib/portable-net45+win8+wp8+wpa81/_._",
  6859. "lib/win8/_._",
  6860. "lib/wp80/_._",
  6861. "lib/wpa81/_._",
  6862. "lib/xamarinios10/_._",
  6863. "lib/xamarinmac20/_._",
  6864. "lib/xamarintvos10/_._",
  6865. "lib/xamarinwatchos10/_._",
  6866. "ref/MonoAndroid10/_._",
  6867. "ref/MonoTouch10/_._",
  6868. "ref/net45/_._",
  6869. "ref/netcore50/System.ObjectModel.dll",
  6870. "ref/netcore50/System.ObjectModel.xml",
  6871. "ref/netcore50/de/System.ObjectModel.xml",
  6872. "ref/netcore50/es/System.ObjectModel.xml",
  6873. "ref/netcore50/fr/System.ObjectModel.xml",
  6874. "ref/netcore50/it/System.ObjectModel.xml",
  6875. "ref/netcore50/ja/System.ObjectModel.xml",
  6876. "ref/netcore50/ko/System.ObjectModel.xml",
  6877. "ref/netcore50/ru/System.ObjectModel.xml",
  6878. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6879. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6880. "ref/netstandard1.0/System.ObjectModel.dll",
  6881. "ref/netstandard1.0/System.ObjectModel.xml",
  6882. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6883. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6884. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6885. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6886. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6887. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6888. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6889. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6890. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6891. "ref/netstandard1.3/System.ObjectModel.dll",
  6892. "ref/netstandard1.3/System.ObjectModel.xml",
  6893. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6894. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6895. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6896. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6897. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6898. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6899. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6900. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6901. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6902. "ref/portable-net45+win8+wp8+wpa81/_._",
  6903. "ref/win8/_._",
  6904. "ref/wp80/_._",
  6905. "ref/wpa81/_._",
  6906. "ref/xamarinios10/_._",
  6907. "ref/xamarinmac20/_._",
  6908. "ref/xamarintvos10/_._",
  6909. "ref/xamarinwatchos10/_._",
  6910. "system.objectmodel.4.3.0.nupkg.sha512",
  6911. "system.objectmodel.nuspec"
  6912. ]
  6913. },
  6914. "System.Reactive/4.4.1": {
  6915. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  6916. "type": "package",
  6917. "path": "system.reactive/4.4.1",
  6918. "files": [
  6919. ".nupkg.metadata",
  6920. ".signature.p7s",
  6921. "build/netcoreapp3.0/System.Reactive.dll",
  6922. "build/netcoreapp3.0/System.Reactive.targets",
  6923. "build/netcoreapp3.0/System.Reactive.xml",
  6924. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  6925. "lib/net46/System.Reactive.dll",
  6926. "lib/net46/System.Reactive.xml",
  6927. "lib/netcoreapp3.0/_._",
  6928. "lib/netstandard2.0/System.Reactive.dll",
  6929. "lib/netstandard2.0/System.Reactive.xml",
  6930. "lib/uap10.0.16299/System.Reactive.dll",
  6931. "lib/uap10.0.16299/System.Reactive.pri",
  6932. "lib/uap10.0.16299/System.Reactive.xml",
  6933. "lib/uap10.0/System.Reactive.dll",
  6934. "lib/uap10.0/System.Reactive.pri",
  6935. "lib/uap10.0/System.Reactive.xml",
  6936. "system.reactive.4.4.1.nupkg.sha512",
  6937. "system.reactive.nuspec"
  6938. ]
  6939. },
  6940. "System.Reflection/4.3.0": {
  6941. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6942. "type": "package",
  6943. "path": "system.reflection/4.3.0",
  6944. "files": [
  6945. ".nupkg.metadata",
  6946. ".signature.p7s",
  6947. "ThirdPartyNotices.txt",
  6948. "dotnet_library_license.txt",
  6949. "lib/MonoAndroid10/_._",
  6950. "lib/MonoTouch10/_._",
  6951. "lib/net45/_._",
  6952. "lib/net462/System.Reflection.dll",
  6953. "lib/portable-net45+win8+wp8+wpa81/_._",
  6954. "lib/win8/_._",
  6955. "lib/wp80/_._",
  6956. "lib/wpa81/_._",
  6957. "lib/xamarinios10/_._",
  6958. "lib/xamarinmac20/_._",
  6959. "lib/xamarintvos10/_._",
  6960. "lib/xamarinwatchos10/_._",
  6961. "ref/MonoAndroid10/_._",
  6962. "ref/MonoTouch10/_._",
  6963. "ref/net45/_._",
  6964. "ref/net462/System.Reflection.dll",
  6965. "ref/netcore50/System.Reflection.dll",
  6966. "ref/netcore50/System.Reflection.xml",
  6967. "ref/netcore50/de/System.Reflection.xml",
  6968. "ref/netcore50/es/System.Reflection.xml",
  6969. "ref/netcore50/fr/System.Reflection.xml",
  6970. "ref/netcore50/it/System.Reflection.xml",
  6971. "ref/netcore50/ja/System.Reflection.xml",
  6972. "ref/netcore50/ko/System.Reflection.xml",
  6973. "ref/netcore50/ru/System.Reflection.xml",
  6974. "ref/netcore50/zh-hans/System.Reflection.xml",
  6975. "ref/netcore50/zh-hant/System.Reflection.xml",
  6976. "ref/netstandard1.0/System.Reflection.dll",
  6977. "ref/netstandard1.0/System.Reflection.xml",
  6978. "ref/netstandard1.0/de/System.Reflection.xml",
  6979. "ref/netstandard1.0/es/System.Reflection.xml",
  6980. "ref/netstandard1.0/fr/System.Reflection.xml",
  6981. "ref/netstandard1.0/it/System.Reflection.xml",
  6982. "ref/netstandard1.0/ja/System.Reflection.xml",
  6983. "ref/netstandard1.0/ko/System.Reflection.xml",
  6984. "ref/netstandard1.0/ru/System.Reflection.xml",
  6985. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6986. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6987. "ref/netstandard1.3/System.Reflection.dll",
  6988. "ref/netstandard1.3/System.Reflection.xml",
  6989. "ref/netstandard1.3/de/System.Reflection.xml",
  6990. "ref/netstandard1.3/es/System.Reflection.xml",
  6991. "ref/netstandard1.3/fr/System.Reflection.xml",
  6992. "ref/netstandard1.3/it/System.Reflection.xml",
  6993. "ref/netstandard1.3/ja/System.Reflection.xml",
  6994. "ref/netstandard1.3/ko/System.Reflection.xml",
  6995. "ref/netstandard1.3/ru/System.Reflection.xml",
  6996. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6997. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6998. "ref/netstandard1.5/System.Reflection.dll",
  6999. "ref/netstandard1.5/System.Reflection.xml",
  7000. "ref/netstandard1.5/de/System.Reflection.xml",
  7001. "ref/netstandard1.5/es/System.Reflection.xml",
  7002. "ref/netstandard1.5/fr/System.Reflection.xml",
  7003. "ref/netstandard1.5/it/System.Reflection.xml",
  7004. "ref/netstandard1.5/ja/System.Reflection.xml",
  7005. "ref/netstandard1.5/ko/System.Reflection.xml",
  7006. "ref/netstandard1.5/ru/System.Reflection.xml",
  7007. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7008. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7009. "ref/portable-net45+win8+wp8+wpa81/_._",
  7010. "ref/win8/_._",
  7011. "ref/wp80/_._",
  7012. "ref/wpa81/_._",
  7013. "ref/xamarinios10/_._",
  7014. "ref/xamarinmac20/_._",
  7015. "ref/xamarintvos10/_._",
  7016. "ref/xamarinwatchos10/_._",
  7017. "system.reflection.4.3.0.nupkg.sha512",
  7018. "system.reflection.nuspec"
  7019. ]
  7020. },
  7021. "System.Reflection.Emit/4.3.0": {
  7022. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7023. "type": "package",
  7024. "path": "system.reflection.emit/4.3.0",
  7025. "files": [
  7026. ".nupkg.metadata",
  7027. ".signature.p7s",
  7028. "ThirdPartyNotices.txt",
  7029. "dotnet_library_license.txt",
  7030. "lib/MonoAndroid10/_._",
  7031. "lib/monotouch10/_._",
  7032. "lib/net45/_._",
  7033. "lib/netcore50/System.Reflection.Emit.dll",
  7034. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7035. "lib/xamarinios10/_._",
  7036. "lib/xamarinmac20/_._",
  7037. "lib/xamarintvos10/_._",
  7038. "lib/xamarinwatchos10/_._",
  7039. "ref/MonoAndroid10/_._",
  7040. "ref/net45/_._",
  7041. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7042. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7043. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7044. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7045. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7046. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7047. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7048. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7049. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7050. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7051. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7052. "ref/xamarinmac20/_._",
  7053. "system.reflection.emit.4.3.0.nupkg.sha512",
  7054. "system.reflection.emit.nuspec"
  7055. ]
  7056. },
  7057. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7058. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7059. "type": "package",
  7060. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7061. "files": [
  7062. ".nupkg.metadata",
  7063. ".signature.p7s",
  7064. "ThirdPartyNotices.txt",
  7065. "dotnet_library_license.txt",
  7066. "lib/MonoAndroid10/_._",
  7067. "lib/MonoTouch10/_._",
  7068. "lib/net45/_._",
  7069. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7070. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7071. "lib/portable-net45+wp8/_._",
  7072. "lib/wp80/_._",
  7073. "lib/xamarinios10/_._",
  7074. "lib/xamarinmac20/_._",
  7075. "lib/xamarintvos10/_._",
  7076. "lib/xamarinwatchos10/_._",
  7077. "ref/MonoAndroid10/_._",
  7078. "ref/MonoTouch10/_._",
  7079. "ref/net45/_._",
  7080. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7081. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7082. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7083. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7084. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7085. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7086. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7087. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7088. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7089. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7090. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7091. "ref/portable-net45+wp8/_._",
  7092. "ref/wp80/_._",
  7093. "ref/xamarinios10/_._",
  7094. "ref/xamarinmac20/_._",
  7095. "ref/xamarintvos10/_._",
  7096. "ref/xamarinwatchos10/_._",
  7097. "runtimes/aot/lib/netcore50/_._",
  7098. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7099. "system.reflection.emit.ilgeneration.nuspec"
  7100. ]
  7101. },
  7102. "System.Reflection.Emit.Lightweight/4.3.0": {
  7103. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7104. "type": "package",
  7105. "path": "system.reflection.emit.lightweight/4.3.0",
  7106. "files": [
  7107. ".nupkg.metadata",
  7108. ".signature.p7s",
  7109. "ThirdPartyNotices.txt",
  7110. "dotnet_library_license.txt",
  7111. "lib/MonoAndroid10/_._",
  7112. "lib/MonoTouch10/_._",
  7113. "lib/net45/_._",
  7114. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7115. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7116. "lib/portable-net45+wp8/_._",
  7117. "lib/wp80/_._",
  7118. "lib/xamarinios10/_._",
  7119. "lib/xamarinmac20/_._",
  7120. "lib/xamarintvos10/_._",
  7121. "lib/xamarinwatchos10/_._",
  7122. "ref/MonoAndroid10/_._",
  7123. "ref/MonoTouch10/_._",
  7124. "ref/net45/_._",
  7125. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7126. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7127. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7128. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7129. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7130. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7131. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7132. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7133. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7134. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7135. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7136. "ref/portable-net45+wp8/_._",
  7137. "ref/wp80/_._",
  7138. "ref/xamarinios10/_._",
  7139. "ref/xamarinmac20/_._",
  7140. "ref/xamarintvos10/_._",
  7141. "ref/xamarinwatchos10/_._",
  7142. "runtimes/aot/lib/netcore50/_._",
  7143. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7144. "system.reflection.emit.lightweight.nuspec"
  7145. ]
  7146. },
  7147. "System.Reflection.Extensions/4.3.0": {
  7148. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7149. "type": "package",
  7150. "path": "system.reflection.extensions/4.3.0",
  7151. "files": [
  7152. ".nupkg.metadata",
  7153. ".signature.p7s",
  7154. "ThirdPartyNotices.txt",
  7155. "dotnet_library_license.txt",
  7156. "lib/MonoAndroid10/_._",
  7157. "lib/MonoTouch10/_._",
  7158. "lib/net45/_._",
  7159. "lib/portable-net45+win8+wp8+wpa81/_._",
  7160. "lib/win8/_._",
  7161. "lib/wp80/_._",
  7162. "lib/wpa81/_._",
  7163. "lib/xamarinios10/_._",
  7164. "lib/xamarinmac20/_._",
  7165. "lib/xamarintvos10/_._",
  7166. "lib/xamarinwatchos10/_._",
  7167. "ref/MonoAndroid10/_._",
  7168. "ref/MonoTouch10/_._",
  7169. "ref/net45/_._",
  7170. "ref/netcore50/System.Reflection.Extensions.dll",
  7171. "ref/netcore50/System.Reflection.Extensions.xml",
  7172. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7173. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7174. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7175. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7176. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7177. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7178. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7179. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7180. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7181. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7182. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7183. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7184. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7185. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7186. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7187. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7188. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7189. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7190. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7191. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7192. "ref/portable-net45+win8+wp8+wpa81/_._",
  7193. "ref/win8/_._",
  7194. "ref/wp80/_._",
  7195. "ref/wpa81/_._",
  7196. "ref/xamarinios10/_._",
  7197. "ref/xamarinmac20/_._",
  7198. "ref/xamarintvos10/_._",
  7199. "ref/xamarinwatchos10/_._",
  7200. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7201. "system.reflection.extensions.nuspec"
  7202. ]
  7203. },
  7204. "System.Reflection.Primitives/4.3.0": {
  7205. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7206. "type": "package",
  7207. "path": "system.reflection.primitives/4.3.0",
  7208. "files": [
  7209. ".nupkg.metadata",
  7210. ".signature.p7s",
  7211. "ThirdPartyNotices.txt",
  7212. "dotnet_library_license.txt",
  7213. "lib/MonoAndroid10/_._",
  7214. "lib/MonoTouch10/_._",
  7215. "lib/net45/_._",
  7216. "lib/portable-net45+win8+wp8+wpa81/_._",
  7217. "lib/win8/_._",
  7218. "lib/wp80/_._",
  7219. "lib/wpa81/_._",
  7220. "lib/xamarinios10/_._",
  7221. "lib/xamarinmac20/_._",
  7222. "lib/xamarintvos10/_._",
  7223. "lib/xamarinwatchos10/_._",
  7224. "ref/MonoAndroid10/_._",
  7225. "ref/MonoTouch10/_._",
  7226. "ref/net45/_._",
  7227. "ref/netcore50/System.Reflection.Primitives.dll",
  7228. "ref/netcore50/System.Reflection.Primitives.xml",
  7229. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7230. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7231. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7232. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7233. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7234. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7235. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7236. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7237. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7238. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7239. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7240. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7241. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7242. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7243. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7244. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7245. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7246. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7247. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7248. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7249. "ref/portable-net45+win8+wp8+wpa81/_._",
  7250. "ref/win8/_._",
  7251. "ref/wp80/_._",
  7252. "ref/wpa81/_._",
  7253. "ref/xamarinios10/_._",
  7254. "ref/xamarinmac20/_._",
  7255. "ref/xamarintvos10/_._",
  7256. "ref/xamarinwatchos10/_._",
  7257. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7258. "system.reflection.primitives.nuspec"
  7259. ]
  7260. },
  7261. "System.Reflection.TypeExtensions/4.3.0": {
  7262. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7263. "type": "package",
  7264. "path": "system.reflection.typeextensions/4.3.0",
  7265. "files": [
  7266. ".nupkg.metadata",
  7267. ".signature.p7s",
  7268. "ThirdPartyNotices.txt",
  7269. "dotnet_library_license.txt",
  7270. "lib/MonoAndroid10/_._",
  7271. "lib/MonoTouch10/_._",
  7272. "lib/net46/System.Reflection.TypeExtensions.dll",
  7273. "lib/net462/System.Reflection.TypeExtensions.dll",
  7274. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7275. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7276. "lib/xamarinios10/_._",
  7277. "lib/xamarinmac20/_._",
  7278. "lib/xamarintvos10/_._",
  7279. "lib/xamarinwatchos10/_._",
  7280. "ref/MonoAndroid10/_._",
  7281. "ref/MonoTouch10/_._",
  7282. "ref/net46/System.Reflection.TypeExtensions.dll",
  7283. "ref/net462/System.Reflection.TypeExtensions.dll",
  7284. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7285. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7286. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7287. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7288. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7289. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7290. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7291. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7292. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7293. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7294. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7295. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7296. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7297. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7298. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7299. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7300. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7301. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7302. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7303. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7304. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7305. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7306. "ref/xamarinios10/_._",
  7307. "ref/xamarinmac20/_._",
  7308. "ref/xamarintvos10/_._",
  7309. "ref/xamarinwatchos10/_._",
  7310. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7311. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7312. "system.reflection.typeextensions.nuspec"
  7313. ]
  7314. },
  7315. "System.Resources.ResourceManager/4.3.0": {
  7316. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7317. "type": "package",
  7318. "path": "system.resources.resourcemanager/4.3.0",
  7319. "files": [
  7320. ".nupkg.metadata",
  7321. ".signature.p7s",
  7322. "ThirdPartyNotices.txt",
  7323. "dotnet_library_license.txt",
  7324. "lib/MonoAndroid10/_._",
  7325. "lib/MonoTouch10/_._",
  7326. "lib/net45/_._",
  7327. "lib/portable-net45+win8+wp8+wpa81/_._",
  7328. "lib/win8/_._",
  7329. "lib/wp80/_._",
  7330. "lib/wpa81/_._",
  7331. "lib/xamarinios10/_._",
  7332. "lib/xamarinmac20/_._",
  7333. "lib/xamarintvos10/_._",
  7334. "lib/xamarinwatchos10/_._",
  7335. "ref/MonoAndroid10/_._",
  7336. "ref/MonoTouch10/_._",
  7337. "ref/net45/_._",
  7338. "ref/netcore50/System.Resources.ResourceManager.dll",
  7339. "ref/netcore50/System.Resources.ResourceManager.xml",
  7340. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7341. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7342. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7343. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7344. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7345. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7346. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7347. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7348. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7349. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7350. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7351. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7352. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7353. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7354. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7355. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7356. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7357. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7358. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7359. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7360. "ref/portable-net45+win8+wp8+wpa81/_._",
  7361. "ref/win8/_._",
  7362. "ref/wp80/_._",
  7363. "ref/wpa81/_._",
  7364. "ref/xamarinios10/_._",
  7365. "ref/xamarinmac20/_._",
  7366. "ref/xamarintvos10/_._",
  7367. "ref/xamarinwatchos10/_._",
  7368. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7369. "system.resources.resourcemanager.nuspec"
  7370. ]
  7371. },
  7372. "System.Runtime/4.3.0": {
  7373. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7374. "type": "package",
  7375. "path": "system.runtime/4.3.0",
  7376. "files": [
  7377. ".nupkg.metadata",
  7378. ".signature.p7s",
  7379. "ThirdPartyNotices.txt",
  7380. "dotnet_library_license.txt",
  7381. "lib/MonoAndroid10/_._",
  7382. "lib/MonoTouch10/_._",
  7383. "lib/net45/_._",
  7384. "lib/net462/System.Runtime.dll",
  7385. "lib/portable-net45+win8+wp80+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/net462/System.Runtime.dll",
  7397. "ref/netcore50/System.Runtime.dll",
  7398. "ref/netcore50/System.Runtime.xml",
  7399. "ref/netcore50/de/System.Runtime.xml",
  7400. "ref/netcore50/es/System.Runtime.xml",
  7401. "ref/netcore50/fr/System.Runtime.xml",
  7402. "ref/netcore50/it/System.Runtime.xml",
  7403. "ref/netcore50/ja/System.Runtime.xml",
  7404. "ref/netcore50/ko/System.Runtime.xml",
  7405. "ref/netcore50/ru/System.Runtime.xml",
  7406. "ref/netcore50/zh-hans/System.Runtime.xml",
  7407. "ref/netcore50/zh-hant/System.Runtime.xml",
  7408. "ref/netstandard1.0/System.Runtime.dll",
  7409. "ref/netstandard1.0/System.Runtime.xml",
  7410. "ref/netstandard1.0/de/System.Runtime.xml",
  7411. "ref/netstandard1.0/es/System.Runtime.xml",
  7412. "ref/netstandard1.0/fr/System.Runtime.xml",
  7413. "ref/netstandard1.0/it/System.Runtime.xml",
  7414. "ref/netstandard1.0/ja/System.Runtime.xml",
  7415. "ref/netstandard1.0/ko/System.Runtime.xml",
  7416. "ref/netstandard1.0/ru/System.Runtime.xml",
  7417. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7418. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7419. "ref/netstandard1.2/System.Runtime.dll",
  7420. "ref/netstandard1.2/System.Runtime.xml",
  7421. "ref/netstandard1.2/de/System.Runtime.xml",
  7422. "ref/netstandard1.2/es/System.Runtime.xml",
  7423. "ref/netstandard1.2/fr/System.Runtime.xml",
  7424. "ref/netstandard1.2/it/System.Runtime.xml",
  7425. "ref/netstandard1.2/ja/System.Runtime.xml",
  7426. "ref/netstandard1.2/ko/System.Runtime.xml",
  7427. "ref/netstandard1.2/ru/System.Runtime.xml",
  7428. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7429. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7430. "ref/netstandard1.3/System.Runtime.dll",
  7431. "ref/netstandard1.3/System.Runtime.xml",
  7432. "ref/netstandard1.3/de/System.Runtime.xml",
  7433. "ref/netstandard1.3/es/System.Runtime.xml",
  7434. "ref/netstandard1.3/fr/System.Runtime.xml",
  7435. "ref/netstandard1.3/it/System.Runtime.xml",
  7436. "ref/netstandard1.3/ja/System.Runtime.xml",
  7437. "ref/netstandard1.3/ko/System.Runtime.xml",
  7438. "ref/netstandard1.3/ru/System.Runtime.xml",
  7439. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7440. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7441. "ref/netstandard1.5/System.Runtime.dll",
  7442. "ref/netstandard1.5/System.Runtime.xml",
  7443. "ref/netstandard1.5/de/System.Runtime.xml",
  7444. "ref/netstandard1.5/es/System.Runtime.xml",
  7445. "ref/netstandard1.5/fr/System.Runtime.xml",
  7446. "ref/netstandard1.5/it/System.Runtime.xml",
  7447. "ref/netstandard1.5/ja/System.Runtime.xml",
  7448. "ref/netstandard1.5/ko/System.Runtime.xml",
  7449. "ref/netstandard1.5/ru/System.Runtime.xml",
  7450. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7451. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7452. "ref/portable-net45+win8+wp80+wpa81/_._",
  7453. "ref/win8/_._",
  7454. "ref/wp80/_._",
  7455. "ref/wpa81/_._",
  7456. "ref/xamarinios10/_._",
  7457. "ref/xamarinmac20/_._",
  7458. "ref/xamarintvos10/_._",
  7459. "ref/xamarinwatchos10/_._",
  7460. "system.runtime.4.3.0.nupkg.sha512",
  7461. "system.runtime.nuspec"
  7462. ]
  7463. },
  7464. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7465. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7466. "type": "package",
  7467. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7468. "files": [
  7469. ".nupkg.metadata",
  7470. ".signature.p7s",
  7471. "Icon.png",
  7472. "LICENSE.TXT",
  7473. "THIRD-PARTY-NOTICES.TXT",
  7474. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7475. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7476. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7477. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7478. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7479. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7480. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7481. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7482. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7483. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7484. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7485. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7486. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7487. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7488. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7489. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7490. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7491. "system.runtime.compilerservices.unsafe.nuspec",
  7492. "useSharedDesignerContext.txt",
  7493. "version.txt"
  7494. ]
  7495. },
  7496. "System.Runtime.Extensions/4.3.0": {
  7497. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7498. "type": "package",
  7499. "path": "system.runtime.extensions/4.3.0",
  7500. "files": [
  7501. ".nupkg.metadata",
  7502. ".signature.p7s",
  7503. "ThirdPartyNotices.txt",
  7504. "dotnet_library_license.txt",
  7505. "lib/MonoAndroid10/_._",
  7506. "lib/MonoTouch10/_._",
  7507. "lib/net45/_._",
  7508. "lib/net462/System.Runtime.Extensions.dll",
  7509. "lib/portable-net45+win8+wp8+wpa81/_._",
  7510. "lib/win8/_._",
  7511. "lib/wp80/_._",
  7512. "lib/wpa81/_._",
  7513. "lib/xamarinios10/_._",
  7514. "lib/xamarinmac20/_._",
  7515. "lib/xamarintvos10/_._",
  7516. "lib/xamarinwatchos10/_._",
  7517. "ref/MonoAndroid10/_._",
  7518. "ref/MonoTouch10/_._",
  7519. "ref/net45/_._",
  7520. "ref/net462/System.Runtime.Extensions.dll",
  7521. "ref/netcore50/System.Runtime.Extensions.dll",
  7522. "ref/netcore50/System.Runtime.Extensions.xml",
  7523. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7524. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7525. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7526. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7527. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7528. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7529. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7530. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7531. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7532. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7533. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7534. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7535. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7536. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7537. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7538. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7539. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7540. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7541. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7542. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7543. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7544. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7545. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7546. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7547. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7548. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7549. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7550. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7551. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7552. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7553. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7554. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7555. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7556. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7557. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7558. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7559. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7560. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7561. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7562. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7563. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7564. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7565. "ref/portable-net45+win8+wp8+wpa81/_._",
  7566. "ref/win8/_._",
  7567. "ref/wp80/_._",
  7568. "ref/wpa81/_._",
  7569. "ref/xamarinios10/_._",
  7570. "ref/xamarinmac20/_._",
  7571. "ref/xamarintvos10/_._",
  7572. "ref/xamarinwatchos10/_._",
  7573. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7574. "system.runtime.extensions.nuspec"
  7575. ]
  7576. },
  7577. "System.Runtime.Handles/4.3.0": {
  7578. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7579. "type": "package",
  7580. "path": "system.runtime.handles/4.3.0",
  7581. "files": [
  7582. ".nupkg.metadata",
  7583. ".signature.p7s",
  7584. "ThirdPartyNotices.txt",
  7585. "dotnet_library_license.txt",
  7586. "lib/MonoAndroid10/_._",
  7587. "lib/MonoTouch10/_._",
  7588. "lib/net46/_._",
  7589. "lib/xamarinios10/_._",
  7590. "lib/xamarinmac20/_._",
  7591. "lib/xamarintvos10/_._",
  7592. "lib/xamarinwatchos10/_._",
  7593. "ref/MonoAndroid10/_._",
  7594. "ref/MonoTouch10/_._",
  7595. "ref/net46/_._",
  7596. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7597. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7598. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7599. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7600. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7601. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7602. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7603. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7604. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7605. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7606. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7607. "ref/xamarinios10/_._",
  7608. "ref/xamarinmac20/_._",
  7609. "ref/xamarintvos10/_._",
  7610. "ref/xamarinwatchos10/_._",
  7611. "system.runtime.handles.4.3.0.nupkg.sha512",
  7612. "system.runtime.handles.nuspec"
  7613. ]
  7614. },
  7615. "System.Runtime.InteropServices/4.3.0": {
  7616. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7617. "type": "package",
  7618. "path": "system.runtime.interopservices/4.3.0",
  7619. "files": [
  7620. ".nupkg.metadata",
  7621. ".signature.p7s",
  7622. "ThirdPartyNotices.txt",
  7623. "dotnet_library_license.txt",
  7624. "lib/MonoAndroid10/_._",
  7625. "lib/MonoTouch10/_._",
  7626. "lib/net45/_._",
  7627. "lib/net462/System.Runtime.InteropServices.dll",
  7628. "lib/net463/System.Runtime.InteropServices.dll",
  7629. "lib/portable-net45+win8+wpa81/_._",
  7630. "lib/win8/_._",
  7631. "lib/wpa81/_._",
  7632. "lib/xamarinios10/_._",
  7633. "lib/xamarinmac20/_._",
  7634. "lib/xamarintvos10/_._",
  7635. "lib/xamarinwatchos10/_._",
  7636. "ref/MonoAndroid10/_._",
  7637. "ref/MonoTouch10/_._",
  7638. "ref/net45/_._",
  7639. "ref/net462/System.Runtime.InteropServices.dll",
  7640. "ref/net463/System.Runtime.InteropServices.dll",
  7641. "ref/netcore50/System.Runtime.InteropServices.dll",
  7642. "ref/netcore50/System.Runtime.InteropServices.xml",
  7643. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7644. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7645. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7646. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7647. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7648. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7649. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7650. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7651. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7652. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7653. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7654. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7655. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7656. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7657. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7658. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7659. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7660. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7661. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7662. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7663. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7664. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7665. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7666. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7667. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7668. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7669. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7670. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7671. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7672. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7673. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7674. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7675. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7676. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7677. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7678. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7679. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7680. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7681. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7682. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7683. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7684. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7685. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7686. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7687. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7688. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7689. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7690. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7691. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7692. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7693. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7694. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7695. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7696. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7697. "ref/portable-net45+win8+wpa81/_._",
  7698. "ref/win8/_._",
  7699. "ref/wpa81/_._",
  7700. "ref/xamarinios10/_._",
  7701. "ref/xamarinmac20/_._",
  7702. "ref/xamarintvos10/_._",
  7703. "ref/xamarinwatchos10/_._",
  7704. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7705. "system.runtime.interopservices.nuspec"
  7706. ]
  7707. },
  7708. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7709. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7710. "type": "package",
  7711. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7712. "files": [
  7713. ".nupkg.metadata",
  7714. ".signature.p7s",
  7715. "ThirdPartyNotices.txt",
  7716. "dotnet_library_license.txt",
  7717. "lib/MonoAndroid10/_._",
  7718. "lib/MonoTouch10/_._",
  7719. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7720. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7721. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7722. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7723. "lib/xamarinios10/_._",
  7724. "lib/xamarinmac20/_._",
  7725. "lib/xamarintvos10/_._",
  7726. "lib/xamarinwatchos10/_._",
  7727. "ref/MonoAndroid10/_._",
  7728. "ref/MonoTouch10/_._",
  7729. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7730. "ref/xamarinios10/_._",
  7731. "ref/xamarinmac20/_._",
  7732. "ref/xamarintvos10/_._",
  7733. "ref/xamarinwatchos10/_._",
  7734. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7735. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7736. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7737. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7738. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7739. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7740. "system.runtime.interopservices.runtimeinformation.nuspec"
  7741. ]
  7742. },
  7743. "System.Runtime.Numerics/4.3.0": {
  7744. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7745. "type": "package",
  7746. "path": "system.runtime.numerics/4.3.0",
  7747. "files": [
  7748. ".nupkg.metadata",
  7749. ".signature.p7s",
  7750. "ThirdPartyNotices.txt",
  7751. "dotnet_library_license.txt",
  7752. "lib/MonoAndroid10/_._",
  7753. "lib/MonoTouch10/_._",
  7754. "lib/net45/_._",
  7755. "lib/netcore50/System.Runtime.Numerics.dll",
  7756. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7757. "lib/portable-net45+win8+wpa81/_._",
  7758. "lib/win8/_._",
  7759. "lib/wpa81/_._",
  7760. "lib/xamarinios10/_._",
  7761. "lib/xamarinmac20/_._",
  7762. "lib/xamarintvos10/_._",
  7763. "lib/xamarinwatchos10/_._",
  7764. "ref/MonoAndroid10/_._",
  7765. "ref/MonoTouch10/_._",
  7766. "ref/net45/_._",
  7767. "ref/netcore50/System.Runtime.Numerics.dll",
  7768. "ref/netcore50/System.Runtime.Numerics.xml",
  7769. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7770. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7771. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7772. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7773. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7774. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7775. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7776. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7777. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7778. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7779. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7780. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7781. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7782. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7783. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7784. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7785. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7786. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7787. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7788. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7789. "ref/portable-net45+win8+wpa81/_._",
  7790. "ref/win8/_._",
  7791. "ref/wpa81/_._",
  7792. "ref/xamarinios10/_._",
  7793. "ref/xamarinmac20/_._",
  7794. "ref/xamarintvos10/_._",
  7795. "ref/xamarinwatchos10/_._",
  7796. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7797. "system.runtime.numerics.nuspec"
  7798. ]
  7799. },
  7800. "System.Runtime.Serialization.Primitives/4.3.0": {
  7801. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7802. "type": "package",
  7803. "path": "system.runtime.serialization.primitives/4.3.0",
  7804. "files": [
  7805. ".nupkg.metadata",
  7806. ".signature.p7s",
  7807. "ThirdPartyNotices.txt",
  7808. "dotnet_library_license.txt",
  7809. "lib/MonoAndroid10/_._",
  7810. "lib/MonoTouch10/_._",
  7811. "lib/net45/_._",
  7812. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7813. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7814. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7815. "lib/portable-net45+win8+wp8+wpa81/_._",
  7816. "lib/win8/_._",
  7817. "lib/wp80/_._",
  7818. "lib/wpa81/_._",
  7819. "lib/xamarinios10/_._",
  7820. "lib/xamarinmac20/_._",
  7821. "lib/xamarintvos10/_._",
  7822. "lib/xamarinwatchos10/_._",
  7823. "ref/MonoAndroid10/_._",
  7824. "ref/MonoTouch10/_._",
  7825. "ref/net45/_._",
  7826. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7827. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7828. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7829. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7830. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7831. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7832. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7833. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7834. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7835. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7836. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7837. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7838. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7839. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7840. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7841. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7842. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7843. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7844. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7845. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7846. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7847. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7848. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7849. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7850. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7851. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7852. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7853. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7854. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7855. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7856. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7857. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7858. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7859. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7860. "ref/portable-net45+win8+wp8+wpa81/_._",
  7861. "ref/win8/_._",
  7862. "ref/wp80/_._",
  7863. "ref/wpa81/_._",
  7864. "ref/xamarinios10/_._",
  7865. "ref/xamarinmac20/_._",
  7866. "ref/xamarintvos10/_._",
  7867. "ref/xamarinwatchos10/_._",
  7868. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7869. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7870. "system.runtime.serialization.primitives.nuspec"
  7871. ]
  7872. },
  7873. "System.Security.AccessControl/4.7.0": {
  7874. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7875. "type": "package",
  7876. "path": "system.security.accesscontrol/4.7.0",
  7877. "files": [
  7878. ".nupkg.metadata",
  7879. ".signature.p7s",
  7880. "LICENSE.TXT",
  7881. "THIRD-PARTY-NOTICES.TXT",
  7882. "lib/net46/System.Security.AccessControl.dll",
  7883. "lib/net461/System.Security.AccessControl.dll",
  7884. "lib/net461/System.Security.AccessControl.xml",
  7885. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7886. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7887. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7888. "lib/uap10.0.16299/_._",
  7889. "ref/net46/System.Security.AccessControl.dll",
  7890. "ref/net461/System.Security.AccessControl.dll",
  7891. "ref/net461/System.Security.AccessControl.xml",
  7892. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7893. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7894. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7895. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7896. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7897. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7898. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7899. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7900. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7901. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7902. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7903. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7904. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7905. "ref/uap10.0.16299/_._",
  7906. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7907. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7908. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7909. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7910. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7911. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7912. "runtimes/win/lib/uap10.0.16299/_._",
  7913. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7914. "system.security.accesscontrol.nuspec",
  7915. "useSharedDesignerContext.txt",
  7916. "version.txt"
  7917. ]
  7918. },
  7919. "System.Security.Claims/4.3.0": {
  7920. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7921. "type": "package",
  7922. "path": "system.security.claims/4.3.0",
  7923. "files": [
  7924. ".nupkg.metadata",
  7925. ".signature.p7s",
  7926. "ThirdPartyNotices.txt",
  7927. "dotnet_library_license.txt",
  7928. "lib/MonoAndroid10/_._",
  7929. "lib/MonoTouch10/_._",
  7930. "lib/net46/System.Security.Claims.dll",
  7931. "lib/netstandard1.3/System.Security.Claims.dll",
  7932. "lib/xamarinios10/_._",
  7933. "lib/xamarinmac20/_._",
  7934. "lib/xamarintvos10/_._",
  7935. "lib/xamarinwatchos10/_._",
  7936. "ref/MonoAndroid10/_._",
  7937. "ref/MonoTouch10/_._",
  7938. "ref/net46/System.Security.Claims.dll",
  7939. "ref/netstandard1.3/System.Security.Claims.dll",
  7940. "ref/netstandard1.3/System.Security.Claims.xml",
  7941. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7942. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7943. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7944. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7945. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7946. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7947. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7948. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7949. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7950. "ref/xamarinios10/_._",
  7951. "ref/xamarinmac20/_._",
  7952. "ref/xamarintvos10/_._",
  7953. "ref/xamarinwatchos10/_._",
  7954. "system.security.claims.4.3.0.nupkg.sha512",
  7955. "system.security.claims.nuspec"
  7956. ]
  7957. },
  7958. "System.Security.Cryptography.Algorithms/4.3.0": {
  7959. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7960. "type": "package",
  7961. "path": "system.security.cryptography.algorithms/4.3.0",
  7962. "files": [
  7963. ".nupkg.metadata",
  7964. ".signature.p7s",
  7965. "ThirdPartyNotices.txt",
  7966. "dotnet_library_license.txt",
  7967. "lib/MonoAndroid10/_._",
  7968. "lib/MonoTouch10/_._",
  7969. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7970. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7971. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7972. "lib/xamarinios10/_._",
  7973. "lib/xamarinmac20/_._",
  7974. "lib/xamarintvos10/_._",
  7975. "lib/xamarinwatchos10/_._",
  7976. "ref/MonoAndroid10/_._",
  7977. "ref/MonoTouch10/_._",
  7978. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7979. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7980. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7981. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7982. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7983. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7984. "ref/xamarinios10/_._",
  7985. "ref/xamarinmac20/_._",
  7986. "ref/xamarintvos10/_._",
  7987. "ref/xamarinwatchos10/_._",
  7988. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7989. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7990. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7991. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7992. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7993. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7994. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7995. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7996. "system.security.cryptography.algorithms.nuspec"
  7997. ]
  7998. },
  7999. "System.Security.Cryptography.Cng/4.3.0": {
  8000. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  8001. "type": "package",
  8002. "path": "system.security.cryptography.cng/4.3.0",
  8003. "files": [
  8004. ".nupkg.metadata",
  8005. ".signature.p7s",
  8006. "ThirdPartyNotices.txt",
  8007. "dotnet_library_license.txt",
  8008. "lib/net46/System.Security.Cryptography.Cng.dll",
  8009. "lib/net461/System.Security.Cryptography.Cng.dll",
  8010. "lib/net463/System.Security.Cryptography.Cng.dll",
  8011. "ref/net46/System.Security.Cryptography.Cng.dll",
  8012. "ref/net461/System.Security.Cryptography.Cng.dll",
  8013. "ref/net463/System.Security.Cryptography.Cng.dll",
  8014. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8015. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8016. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8017. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8018. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8019. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8020. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8021. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8022. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8023. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8024. "system.security.cryptography.cng.nuspec"
  8025. ]
  8026. },
  8027. "System.Security.Cryptography.Csp/4.3.0": {
  8028. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8029. "type": "package",
  8030. "path": "system.security.cryptography.csp/4.3.0",
  8031. "files": [
  8032. ".nupkg.metadata",
  8033. ".signature.p7s",
  8034. "ThirdPartyNotices.txt",
  8035. "dotnet_library_license.txt",
  8036. "lib/MonoAndroid10/_._",
  8037. "lib/MonoTouch10/_._",
  8038. "lib/net46/System.Security.Cryptography.Csp.dll",
  8039. "lib/xamarinios10/_._",
  8040. "lib/xamarinmac20/_._",
  8041. "lib/xamarintvos10/_._",
  8042. "lib/xamarinwatchos10/_._",
  8043. "ref/MonoAndroid10/_._",
  8044. "ref/MonoTouch10/_._",
  8045. "ref/net46/System.Security.Cryptography.Csp.dll",
  8046. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8047. "ref/xamarinios10/_._",
  8048. "ref/xamarinmac20/_._",
  8049. "ref/xamarintvos10/_._",
  8050. "ref/xamarinwatchos10/_._",
  8051. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8052. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8053. "runtimes/win/lib/netcore50/_._",
  8054. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8055. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8056. "system.security.cryptography.csp.nuspec"
  8057. ]
  8058. },
  8059. "System.Security.Cryptography.Encoding/4.3.0": {
  8060. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8061. "type": "package",
  8062. "path": "system.security.cryptography.encoding/4.3.0",
  8063. "files": [
  8064. ".nupkg.metadata",
  8065. ".signature.p7s",
  8066. "ThirdPartyNotices.txt",
  8067. "dotnet_library_license.txt",
  8068. "lib/MonoAndroid10/_._",
  8069. "lib/MonoTouch10/_._",
  8070. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8071. "lib/xamarinios10/_._",
  8072. "lib/xamarinmac20/_._",
  8073. "lib/xamarintvos10/_._",
  8074. "lib/xamarinwatchos10/_._",
  8075. "ref/MonoAndroid10/_._",
  8076. "ref/MonoTouch10/_._",
  8077. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8078. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8079. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8080. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8081. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8082. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8083. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8084. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8085. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8086. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8087. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8088. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8089. "ref/xamarinios10/_._",
  8090. "ref/xamarinmac20/_._",
  8091. "ref/xamarintvos10/_._",
  8092. "ref/xamarinwatchos10/_._",
  8093. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8094. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8095. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8096. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8097. "system.security.cryptography.encoding.nuspec"
  8098. ]
  8099. },
  8100. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8101. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8102. "type": "package",
  8103. "path": "system.security.cryptography.openssl/4.3.0",
  8104. "files": [
  8105. ".nupkg.metadata",
  8106. ".signature.p7s",
  8107. "ThirdPartyNotices.txt",
  8108. "dotnet_library_license.txt",
  8109. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8110. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8111. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8112. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8113. "system.security.cryptography.openssl.nuspec"
  8114. ]
  8115. },
  8116. "System.Security.Cryptography.Primitives/4.3.0": {
  8117. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8118. "type": "package",
  8119. "path": "system.security.cryptography.primitives/4.3.0",
  8120. "files": [
  8121. ".nupkg.metadata",
  8122. ".signature.p7s",
  8123. "ThirdPartyNotices.txt",
  8124. "dotnet_library_license.txt",
  8125. "lib/MonoAndroid10/_._",
  8126. "lib/MonoTouch10/_._",
  8127. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8128. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8129. "lib/xamarinios10/_._",
  8130. "lib/xamarinmac20/_._",
  8131. "lib/xamarintvos10/_._",
  8132. "lib/xamarinwatchos10/_._",
  8133. "ref/MonoAndroid10/_._",
  8134. "ref/MonoTouch10/_._",
  8135. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8136. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8137. "ref/xamarinios10/_._",
  8138. "ref/xamarinmac20/_._",
  8139. "ref/xamarintvos10/_._",
  8140. "ref/xamarinwatchos10/_._",
  8141. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8142. "system.security.cryptography.primitives.nuspec"
  8143. ]
  8144. },
  8145. "System.Security.Cryptography.ProtectedData/4.5.0": {
  8146. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  8147. "type": "package",
  8148. "path": "system.security.cryptography.protecteddata/4.5.0",
  8149. "files": [
  8150. ".nupkg.metadata",
  8151. ".signature.p7s",
  8152. "LICENSE.TXT",
  8153. "THIRD-PARTY-NOTICES.TXT",
  8154. "lib/MonoAndroid10/_._",
  8155. "lib/MonoTouch10/_._",
  8156. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8157. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8158. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8159. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8160. "lib/xamarinios10/_._",
  8161. "lib/xamarinmac20/_._",
  8162. "lib/xamarintvos10/_._",
  8163. "lib/xamarinwatchos10/_._",
  8164. "ref/MonoAndroid10/_._",
  8165. "ref/MonoTouch10/_._",
  8166. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8167. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8168. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8169. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8170. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8171. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8172. "ref/xamarinios10/_._",
  8173. "ref/xamarinmac20/_._",
  8174. "ref/xamarintvos10/_._",
  8175. "ref/xamarinwatchos10/_._",
  8176. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8177. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8178. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8179. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8180. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8181. "system.security.cryptography.protecteddata.nuspec",
  8182. "useSharedDesignerContext.txt",
  8183. "version.txt"
  8184. ]
  8185. },
  8186. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8187. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8188. "type": "package",
  8189. "path": "system.security.cryptography.x509certificates/4.3.0",
  8190. "files": [
  8191. ".nupkg.metadata",
  8192. ".signature.p7s",
  8193. "ThirdPartyNotices.txt",
  8194. "dotnet_library_license.txt",
  8195. "lib/MonoAndroid10/_._",
  8196. "lib/MonoTouch10/_._",
  8197. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8198. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8199. "lib/xamarinios10/_._",
  8200. "lib/xamarinmac20/_._",
  8201. "lib/xamarintvos10/_._",
  8202. "lib/xamarinwatchos10/_._",
  8203. "ref/MonoAndroid10/_._",
  8204. "ref/MonoTouch10/_._",
  8205. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8206. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8207. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8208. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8209. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8210. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8211. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8212. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8213. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8214. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8215. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8216. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8217. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8218. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8219. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8220. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8221. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8222. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8223. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8224. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8225. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8226. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8227. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8228. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8229. "ref/xamarinios10/_._",
  8230. "ref/xamarinmac20/_._",
  8231. "ref/xamarintvos10/_._",
  8232. "ref/xamarinwatchos10/_._",
  8233. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8234. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8235. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8236. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8237. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8238. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8239. "system.security.cryptography.x509certificates.nuspec"
  8240. ]
  8241. },
  8242. "System.Security.Permissions/4.7.0": {
  8243. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8244. "type": "package",
  8245. "path": "system.security.permissions/4.7.0",
  8246. "files": [
  8247. ".nupkg.metadata",
  8248. ".signature.p7s",
  8249. "LICENSE.TXT",
  8250. "THIRD-PARTY-NOTICES.TXT",
  8251. "lib/net461/System.Security.Permissions.dll",
  8252. "lib/net461/System.Security.Permissions.xml",
  8253. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8254. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8255. "lib/netstandard2.0/System.Security.Permissions.dll",
  8256. "lib/netstandard2.0/System.Security.Permissions.xml",
  8257. "ref/net461/System.Security.Permissions.dll",
  8258. "ref/net461/System.Security.Permissions.xml",
  8259. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8260. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8261. "ref/netstandard2.0/System.Security.Permissions.dll",
  8262. "ref/netstandard2.0/System.Security.Permissions.xml",
  8263. "system.security.permissions.4.7.0.nupkg.sha512",
  8264. "system.security.permissions.nuspec",
  8265. "useSharedDesignerContext.txt",
  8266. "version.txt"
  8267. ]
  8268. },
  8269. "System.Security.Principal/4.3.0": {
  8270. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8271. "type": "package",
  8272. "path": "system.security.principal/4.3.0",
  8273. "files": [
  8274. ".nupkg.metadata",
  8275. ".signature.p7s",
  8276. "ThirdPartyNotices.txt",
  8277. "dotnet_library_license.txt",
  8278. "lib/MonoAndroid10/_._",
  8279. "lib/MonoTouch10/_._",
  8280. "lib/net45/_._",
  8281. "lib/netcore50/System.Security.Principal.dll",
  8282. "lib/netstandard1.0/System.Security.Principal.dll",
  8283. "lib/portable-net45+win8+wp8+wpa81/_._",
  8284. "lib/win8/_._",
  8285. "lib/wp80/_._",
  8286. "lib/wpa81/_._",
  8287. "lib/xamarinios10/_._",
  8288. "lib/xamarinmac20/_._",
  8289. "lib/xamarintvos10/_._",
  8290. "lib/xamarinwatchos10/_._",
  8291. "ref/MonoAndroid10/_._",
  8292. "ref/MonoTouch10/_._",
  8293. "ref/net45/_._",
  8294. "ref/netcore50/System.Security.Principal.dll",
  8295. "ref/netcore50/System.Security.Principal.xml",
  8296. "ref/netcore50/de/System.Security.Principal.xml",
  8297. "ref/netcore50/es/System.Security.Principal.xml",
  8298. "ref/netcore50/fr/System.Security.Principal.xml",
  8299. "ref/netcore50/it/System.Security.Principal.xml",
  8300. "ref/netcore50/ja/System.Security.Principal.xml",
  8301. "ref/netcore50/ko/System.Security.Principal.xml",
  8302. "ref/netcore50/ru/System.Security.Principal.xml",
  8303. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8304. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8305. "ref/netstandard1.0/System.Security.Principal.dll",
  8306. "ref/netstandard1.0/System.Security.Principal.xml",
  8307. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8308. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8309. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8310. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8311. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8312. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8313. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8314. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8315. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8316. "ref/portable-net45+win8+wp8+wpa81/_._",
  8317. "ref/win8/_._",
  8318. "ref/wp80/_._",
  8319. "ref/wpa81/_._",
  8320. "ref/xamarinios10/_._",
  8321. "ref/xamarinmac20/_._",
  8322. "ref/xamarintvos10/_._",
  8323. "ref/xamarinwatchos10/_._",
  8324. "system.security.principal.4.3.0.nupkg.sha512",
  8325. "system.security.principal.nuspec"
  8326. ]
  8327. },
  8328. "System.Security.Principal.Windows/4.7.0": {
  8329. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8330. "type": "package",
  8331. "path": "system.security.principal.windows/4.7.0",
  8332. "files": [
  8333. ".nupkg.metadata",
  8334. ".signature.p7s",
  8335. "LICENSE.TXT",
  8336. "THIRD-PARTY-NOTICES.TXT",
  8337. "lib/net46/System.Security.Principal.Windows.dll",
  8338. "lib/net461/System.Security.Principal.Windows.dll",
  8339. "lib/net461/System.Security.Principal.Windows.xml",
  8340. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8341. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8342. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8343. "lib/uap10.0.16299/_._",
  8344. "ref/net46/System.Security.Principal.Windows.dll",
  8345. "ref/net461/System.Security.Principal.Windows.dll",
  8346. "ref/net461/System.Security.Principal.Windows.xml",
  8347. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8348. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8349. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8350. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8351. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8352. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8353. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8354. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8355. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8356. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8357. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8358. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8359. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8360. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8361. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8362. "ref/uap10.0.16299/_._",
  8363. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8364. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8365. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8366. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8367. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8368. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8369. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8370. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8371. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8372. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8373. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8374. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8375. "runtimes/win/lib/uap10.0.16299/_._",
  8376. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8377. "system.security.principal.windows.nuspec",
  8378. "useSharedDesignerContext.txt",
  8379. "version.txt"
  8380. ]
  8381. },
  8382. "System.Text.Encoding/4.3.0": {
  8383. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8384. "type": "package",
  8385. "path": "system.text.encoding/4.3.0",
  8386. "files": [
  8387. ".nupkg.metadata",
  8388. ".signature.p7s",
  8389. "ThirdPartyNotices.txt",
  8390. "dotnet_library_license.txt",
  8391. "lib/MonoAndroid10/_._",
  8392. "lib/MonoTouch10/_._",
  8393. "lib/net45/_._",
  8394. "lib/portable-net45+win8+wp8+wpa81/_._",
  8395. "lib/win8/_._",
  8396. "lib/wp80/_._",
  8397. "lib/wpa81/_._",
  8398. "lib/xamarinios10/_._",
  8399. "lib/xamarinmac20/_._",
  8400. "lib/xamarintvos10/_._",
  8401. "lib/xamarinwatchos10/_._",
  8402. "ref/MonoAndroid10/_._",
  8403. "ref/MonoTouch10/_._",
  8404. "ref/net45/_._",
  8405. "ref/netcore50/System.Text.Encoding.dll",
  8406. "ref/netcore50/System.Text.Encoding.xml",
  8407. "ref/netcore50/de/System.Text.Encoding.xml",
  8408. "ref/netcore50/es/System.Text.Encoding.xml",
  8409. "ref/netcore50/fr/System.Text.Encoding.xml",
  8410. "ref/netcore50/it/System.Text.Encoding.xml",
  8411. "ref/netcore50/ja/System.Text.Encoding.xml",
  8412. "ref/netcore50/ko/System.Text.Encoding.xml",
  8413. "ref/netcore50/ru/System.Text.Encoding.xml",
  8414. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8415. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8416. "ref/netstandard1.0/System.Text.Encoding.dll",
  8417. "ref/netstandard1.0/System.Text.Encoding.xml",
  8418. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8419. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8420. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8421. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8422. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8423. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8424. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8425. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8426. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8427. "ref/netstandard1.3/System.Text.Encoding.dll",
  8428. "ref/netstandard1.3/System.Text.Encoding.xml",
  8429. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8430. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8431. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8432. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8433. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8434. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8435. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8436. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8437. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8438. "ref/portable-net45+win8+wp8+wpa81/_._",
  8439. "ref/win8/_._",
  8440. "ref/wp80/_._",
  8441. "ref/wpa81/_._",
  8442. "ref/xamarinios10/_._",
  8443. "ref/xamarinmac20/_._",
  8444. "ref/xamarintvos10/_._",
  8445. "ref/xamarinwatchos10/_._",
  8446. "system.text.encoding.4.3.0.nupkg.sha512",
  8447. "system.text.encoding.nuspec"
  8448. ]
  8449. },
  8450. "System.Text.Encoding.CodePages/5.0.0": {
  8451. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8452. "type": "package",
  8453. "path": "system.text.encoding.codepages/5.0.0",
  8454. "files": [
  8455. ".nupkg.metadata",
  8456. ".signature.p7s",
  8457. "Icon.png",
  8458. "LICENSE.TXT",
  8459. "THIRD-PARTY-NOTICES.TXT",
  8460. "lib/MonoAndroid10/_._",
  8461. "lib/MonoTouch10/_._",
  8462. "lib/net46/System.Text.Encoding.CodePages.dll",
  8463. "lib/net461/System.Text.Encoding.CodePages.dll",
  8464. "lib/net461/System.Text.Encoding.CodePages.xml",
  8465. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8466. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8467. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8468. "lib/xamarinios10/_._",
  8469. "lib/xamarinmac20/_._",
  8470. "lib/xamarintvos10/_._",
  8471. "lib/xamarinwatchos10/_._",
  8472. "ref/MonoAndroid10/_._",
  8473. "ref/MonoTouch10/_._",
  8474. "ref/xamarinios10/_._",
  8475. "ref/xamarinmac20/_._",
  8476. "ref/xamarintvos10/_._",
  8477. "ref/xamarinwatchos10/_._",
  8478. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8479. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8480. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8481. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8482. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8483. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8484. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8485. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8486. "system.text.encoding.codepages.nuspec",
  8487. "useSharedDesignerContext.txt",
  8488. "version.txt"
  8489. ]
  8490. },
  8491. "System.Text.Encoding.Extensions/4.3.0": {
  8492. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8493. "type": "package",
  8494. "path": "system.text.encoding.extensions/4.3.0",
  8495. "files": [
  8496. ".nupkg.metadata",
  8497. ".signature.p7s",
  8498. "ThirdPartyNotices.txt",
  8499. "dotnet_library_license.txt",
  8500. "lib/MonoAndroid10/_._",
  8501. "lib/MonoTouch10/_._",
  8502. "lib/net45/_._",
  8503. "lib/portable-net45+win8+wp8+wpa81/_._",
  8504. "lib/win8/_._",
  8505. "lib/wp80/_._",
  8506. "lib/wpa81/_._",
  8507. "lib/xamarinios10/_._",
  8508. "lib/xamarinmac20/_._",
  8509. "lib/xamarintvos10/_._",
  8510. "lib/xamarinwatchos10/_._",
  8511. "ref/MonoAndroid10/_._",
  8512. "ref/MonoTouch10/_._",
  8513. "ref/net45/_._",
  8514. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8515. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8516. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8517. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8518. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8519. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8520. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8521. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8522. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8523. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8524. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8525. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8526. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8527. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8528. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8529. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8530. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8531. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8532. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8533. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8534. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8535. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8536. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8537. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8538. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8539. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8540. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8541. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8542. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8543. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8544. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8545. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8546. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8547. "ref/portable-net45+win8+wp8+wpa81/_._",
  8548. "ref/win8/_._",
  8549. "ref/wp80/_._",
  8550. "ref/wpa81/_._",
  8551. "ref/xamarinios10/_._",
  8552. "ref/xamarinmac20/_._",
  8553. "ref/xamarintvos10/_._",
  8554. "ref/xamarinwatchos10/_._",
  8555. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8556. "system.text.encoding.extensions.nuspec"
  8557. ]
  8558. },
  8559. "System.Text.Encodings.Web/4.7.0": {
  8560. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  8561. "type": "package",
  8562. "path": "system.text.encodings.web/4.7.0",
  8563. "files": [
  8564. ".nupkg.metadata",
  8565. ".signature.p7s",
  8566. "LICENSE.TXT",
  8567. "THIRD-PARTY-NOTICES.TXT",
  8568. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8569. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8570. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8571. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8572. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  8573. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  8574. "system.text.encodings.web.4.7.0.nupkg.sha512",
  8575. "system.text.encodings.web.nuspec",
  8576. "useSharedDesignerContext.txt",
  8577. "version.txt"
  8578. ]
  8579. },
  8580. "System.Text.RegularExpressions/4.3.0": {
  8581. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8582. "type": "package",
  8583. "path": "system.text.regularexpressions/4.3.0",
  8584. "files": [
  8585. ".nupkg.metadata",
  8586. ".signature.p7s",
  8587. "ThirdPartyNotices.txt",
  8588. "dotnet_library_license.txt",
  8589. "lib/MonoAndroid10/_._",
  8590. "lib/MonoTouch10/_._",
  8591. "lib/net45/_._",
  8592. "lib/net463/System.Text.RegularExpressions.dll",
  8593. "lib/netcore50/System.Text.RegularExpressions.dll",
  8594. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8595. "lib/portable-net45+win8+wp8+wpa81/_._",
  8596. "lib/win8/_._",
  8597. "lib/wp80/_._",
  8598. "lib/wpa81/_._",
  8599. "lib/xamarinios10/_._",
  8600. "lib/xamarinmac20/_._",
  8601. "lib/xamarintvos10/_._",
  8602. "lib/xamarinwatchos10/_._",
  8603. "ref/MonoAndroid10/_._",
  8604. "ref/MonoTouch10/_._",
  8605. "ref/net45/_._",
  8606. "ref/net463/System.Text.RegularExpressions.dll",
  8607. "ref/netcore50/System.Text.RegularExpressions.dll",
  8608. "ref/netcore50/System.Text.RegularExpressions.xml",
  8609. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8610. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8611. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8612. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8613. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8614. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8615. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8616. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8617. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8618. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8619. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8620. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8621. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8622. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8623. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8624. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8625. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8626. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8627. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8628. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8629. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8630. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8631. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8632. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8633. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8634. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8635. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8636. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8637. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8638. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8639. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8640. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8641. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8642. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8643. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8644. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8645. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8646. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8647. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8648. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8649. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8650. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8651. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8652. "ref/portable-net45+win8+wp8+wpa81/_._",
  8653. "ref/win8/_._",
  8654. "ref/wp80/_._",
  8655. "ref/wpa81/_._",
  8656. "ref/xamarinios10/_._",
  8657. "ref/xamarinmac20/_._",
  8658. "ref/xamarintvos10/_._",
  8659. "ref/xamarinwatchos10/_._",
  8660. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8661. "system.text.regularexpressions.nuspec"
  8662. ]
  8663. },
  8664. "System.Threading/4.3.0": {
  8665. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8666. "type": "package",
  8667. "path": "system.threading/4.3.0",
  8668. "files": [
  8669. ".nupkg.metadata",
  8670. ".signature.p7s",
  8671. "ThirdPartyNotices.txt",
  8672. "dotnet_library_license.txt",
  8673. "lib/MonoAndroid10/_._",
  8674. "lib/MonoTouch10/_._",
  8675. "lib/net45/_._",
  8676. "lib/netcore50/System.Threading.dll",
  8677. "lib/netstandard1.3/System.Threading.dll",
  8678. "lib/portable-net45+win8+wp8+wpa81/_._",
  8679. "lib/win8/_._",
  8680. "lib/wp80/_._",
  8681. "lib/wpa81/_._",
  8682. "lib/xamarinios10/_._",
  8683. "lib/xamarinmac20/_._",
  8684. "lib/xamarintvos10/_._",
  8685. "lib/xamarinwatchos10/_._",
  8686. "ref/MonoAndroid10/_._",
  8687. "ref/MonoTouch10/_._",
  8688. "ref/net45/_._",
  8689. "ref/netcore50/System.Threading.dll",
  8690. "ref/netcore50/System.Threading.xml",
  8691. "ref/netcore50/de/System.Threading.xml",
  8692. "ref/netcore50/es/System.Threading.xml",
  8693. "ref/netcore50/fr/System.Threading.xml",
  8694. "ref/netcore50/it/System.Threading.xml",
  8695. "ref/netcore50/ja/System.Threading.xml",
  8696. "ref/netcore50/ko/System.Threading.xml",
  8697. "ref/netcore50/ru/System.Threading.xml",
  8698. "ref/netcore50/zh-hans/System.Threading.xml",
  8699. "ref/netcore50/zh-hant/System.Threading.xml",
  8700. "ref/netstandard1.0/System.Threading.dll",
  8701. "ref/netstandard1.0/System.Threading.xml",
  8702. "ref/netstandard1.0/de/System.Threading.xml",
  8703. "ref/netstandard1.0/es/System.Threading.xml",
  8704. "ref/netstandard1.0/fr/System.Threading.xml",
  8705. "ref/netstandard1.0/it/System.Threading.xml",
  8706. "ref/netstandard1.0/ja/System.Threading.xml",
  8707. "ref/netstandard1.0/ko/System.Threading.xml",
  8708. "ref/netstandard1.0/ru/System.Threading.xml",
  8709. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8710. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8711. "ref/netstandard1.3/System.Threading.dll",
  8712. "ref/netstandard1.3/System.Threading.xml",
  8713. "ref/netstandard1.3/de/System.Threading.xml",
  8714. "ref/netstandard1.3/es/System.Threading.xml",
  8715. "ref/netstandard1.3/fr/System.Threading.xml",
  8716. "ref/netstandard1.3/it/System.Threading.xml",
  8717. "ref/netstandard1.3/ja/System.Threading.xml",
  8718. "ref/netstandard1.3/ko/System.Threading.xml",
  8719. "ref/netstandard1.3/ru/System.Threading.xml",
  8720. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8721. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8722. "ref/portable-net45+win8+wp8+wpa81/_._",
  8723. "ref/win8/_._",
  8724. "ref/wp80/_._",
  8725. "ref/wpa81/_._",
  8726. "ref/xamarinios10/_._",
  8727. "ref/xamarinmac20/_._",
  8728. "ref/xamarintvos10/_._",
  8729. "ref/xamarinwatchos10/_._",
  8730. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8731. "system.threading.4.3.0.nupkg.sha512",
  8732. "system.threading.nuspec"
  8733. ]
  8734. },
  8735. "System.Threading.Channels/7.0.0": {
  8736. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8737. "type": "package",
  8738. "path": "system.threading.channels/7.0.0",
  8739. "files": [
  8740. ".nupkg.metadata",
  8741. ".signature.p7s",
  8742. "Icon.png",
  8743. "LICENSE.TXT",
  8744. "THIRD-PARTY-NOTICES.TXT",
  8745. "buildTransitive/net461/System.Threading.Channels.targets",
  8746. "buildTransitive/net462/_._",
  8747. "buildTransitive/net6.0/_._",
  8748. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8749. "lib/net462/System.Threading.Channels.dll",
  8750. "lib/net462/System.Threading.Channels.xml",
  8751. "lib/net6.0/System.Threading.Channels.dll",
  8752. "lib/net6.0/System.Threading.Channels.xml",
  8753. "lib/net7.0/System.Threading.Channels.dll",
  8754. "lib/net7.0/System.Threading.Channels.xml",
  8755. "lib/netstandard2.0/System.Threading.Channels.dll",
  8756. "lib/netstandard2.0/System.Threading.Channels.xml",
  8757. "lib/netstandard2.1/System.Threading.Channels.dll",
  8758. "lib/netstandard2.1/System.Threading.Channels.xml",
  8759. "system.threading.channels.7.0.0.nupkg.sha512",
  8760. "system.threading.channels.nuspec",
  8761. "useSharedDesignerContext.txt"
  8762. ]
  8763. },
  8764. "System.Threading.Tasks/4.3.0": {
  8765. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8766. "type": "package",
  8767. "path": "system.threading.tasks/4.3.0",
  8768. "files": [
  8769. ".nupkg.metadata",
  8770. ".signature.p7s",
  8771. "ThirdPartyNotices.txt",
  8772. "dotnet_library_license.txt",
  8773. "lib/MonoAndroid10/_._",
  8774. "lib/MonoTouch10/_._",
  8775. "lib/net45/_._",
  8776. "lib/portable-net45+win8+wp8+wpa81/_._",
  8777. "lib/win8/_._",
  8778. "lib/wp80/_._",
  8779. "lib/wpa81/_._",
  8780. "lib/xamarinios10/_._",
  8781. "lib/xamarinmac20/_._",
  8782. "lib/xamarintvos10/_._",
  8783. "lib/xamarinwatchos10/_._",
  8784. "ref/MonoAndroid10/_._",
  8785. "ref/MonoTouch10/_._",
  8786. "ref/net45/_._",
  8787. "ref/netcore50/System.Threading.Tasks.dll",
  8788. "ref/netcore50/System.Threading.Tasks.xml",
  8789. "ref/netcore50/de/System.Threading.Tasks.xml",
  8790. "ref/netcore50/es/System.Threading.Tasks.xml",
  8791. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8792. "ref/netcore50/it/System.Threading.Tasks.xml",
  8793. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8794. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8795. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8796. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8797. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8798. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8799. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8800. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8801. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8802. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8803. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8804. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8805. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8806. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8807. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8808. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8809. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8810. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8811. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8812. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8813. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8814. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8815. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8816. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8817. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8818. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8819. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8820. "ref/portable-net45+win8+wp8+wpa81/_._",
  8821. "ref/win8/_._",
  8822. "ref/wp80/_._",
  8823. "ref/wpa81/_._",
  8824. "ref/xamarinios10/_._",
  8825. "ref/xamarinmac20/_._",
  8826. "ref/xamarintvos10/_._",
  8827. "ref/xamarinwatchos10/_._",
  8828. "system.threading.tasks.4.3.0.nupkg.sha512",
  8829. "system.threading.tasks.nuspec"
  8830. ]
  8831. },
  8832. "System.Threading.Tasks.Extensions/4.3.0": {
  8833. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8834. "type": "package",
  8835. "path": "system.threading.tasks.extensions/4.3.0",
  8836. "files": [
  8837. ".nupkg.metadata",
  8838. ".signature.p7s",
  8839. "ThirdPartyNotices.txt",
  8840. "dotnet_library_license.txt",
  8841. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8842. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8843. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8844. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8845. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8846. "system.threading.tasks.extensions.nuspec"
  8847. ]
  8848. },
  8849. "System.Threading.Thread/4.3.0": {
  8850. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8851. "type": "package",
  8852. "path": "system.threading.thread/4.3.0",
  8853. "files": [
  8854. ".nupkg.metadata",
  8855. ".signature.p7s",
  8856. "ThirdPartyNotices.txt",
  8857. "dotnet_library_license.txt",
  8858. "lib/MonoAndroid10/_._",
  8859. "lib/MonoTouch10/_._",
  8860. "lib/net46/System.Threading.Thread.dll",
  8861. "lib/netcore50/_._",
  8862. "lib/netstandard1.3/System.Threading.Thread.dll",
  8863. "lib/xamarinios10/_._",
  8864. "lib/xamarinmac20/_._",
  8865. "lib/xamarintvos10/_._",
  8866. "lib/xamarinwatchos10/_._",
  8867. "ref/MonoAndroid10/_._",
  8868. "ref/MonoTouch10/_._",
  8869. "ref/net46/System.Threading.Thread.dll",
  8870. "ref/netstandard1.3/System.Threading.Thread.dll",
  8871. "ref/netstandard1.3/System.Threading.Thread.xml",
  8872. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8873. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8874. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8875. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8876. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8877. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8878. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8879. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8880. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8881. "ref/xamarinios10/_._",
  8882. "ref/xamarinmac20/_._",
  8883. "ref/xamarintvos10/_._",
  8884. "ref/xamarinwatchos10/_._",
  8885. "system.threading.thread.4.3.0.nupkg.sha512",
  8886. "system.threading.thread.nuspec"
  8887. ]
  8888. },
  8889. "System.Threading.ThreadPool/4.3.0": {
  8890. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8891. "type": "package",
  8892. "path": "system.threading.threadpool/4.3.0",
  8893. "files": [
  8894. ".nupkg.metadata",
  8895. ".signature.p7s",
  8896. "ThirdPartyNotices.txt",
  8897. "dotnet_library_license.txt",
  8898. "lib/MonoAndroid10/_._",
  8899. "lib/MonoTouch10/_._",
  8900. "lib/net46/System.Threading.ThreadPool.dll",
  8901. "lib/netcore50/_._",
  8902. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8903. "lib/xamarinios10/_._",
  8904. "lib/xamarinmac20/_._",
  8905. "lib/xamarintvos10/_._",
  8906. "lib/xamarinwatchos10/_._",
  8907. "ref/MonoAndroid10/_._",
  8908. "ref/MonoTouch10/_._",
  8909. "ref/net46/System.Threading.ThreadPool.dll",
  8910. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8911. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8912. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8913. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8914. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8915. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8916. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8917. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8918. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8919. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8920. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8921. "ref/xamarinios10/_._",
  8922. "ref/xamarinmac20/_._",
  8923. "ref/xamarintvos10/_._",
  8924. "ref/xamarinwatchos10/_._",
  8925. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8926. "system.threading.threadpool.nuspec"
  8927. ]
  8928. },
  8929. "System.Threading.Timer/4.3.0": {
  8930. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8931. "type": "package",
  8932. "path": "system.threading.timer/4.3.0",
  8933. "files": [
  8934. ".nupkg.metadata",
  8935. ".signature.p7s",
  8936. "ThirdPartyNotices.txt",
  8937. "dotnet_library_license.txt",
  8938. "lib/MonoAndroid10/_._",
  8939. "lib/MonoTouch10/_._",
  8940. "lib/net451/_._",
  8941. "lib/portable-net451+win81+wpa81/_._",
  8942. "lib/win81/_._",
  8943. "lib/wpa81/_._",
  8944. "lib/xamarinios10/_._",
  8945. "lib/xamarinmac20/_._",
  8946. "lib/xamarintvos10/_._",
  8947. "lib/xamarinwatchos10/_._",
  8948. "ref/MonoAndroid10/_._",
  8949. "ref/MonoTouch10/_._",
  8950. "ref/net451/_._",
  8951. "ref/netcore50/System.Threading.Timer.dll",
  8952. "ref/netcore50/System.Threading.Timer.xml",
  8953. "ref/netcore50/de/System.Threading.Timer.xml",
  8954. "ref/netcore50/es/System.Threading.Timer.xml",
  8955. "ref/netcore50/fr/System.Threading.Timer.xml",
  8956. "ref/netcore50/it/System.Threading.Timer.xml",
  8957. "ref/netcore50/ja/System.Threading.Timer.xml",
  8958. "ref/netcore50/ko/System.Threading.Timer.xml",
  8959. "ref/netcore50/ru/System.Threading.Timer.xml",
  8960. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8961. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8962. "ref/netstandard1.2/System.Threading.Timer.dll",
  8963. "ref/netstandard1.2/System.Threading.Timer.xml",
  8964. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8965. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8966. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8967. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8968. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8969. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8970. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8971. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8972. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8973. "ref/portable-net451+win81+wpa81/_._",
  8974. "ref/win81/_._",
  8975. "ref/wpa81/_._",
  8976. "ref/xamarinios10/_._",
  8977. "ref/xamarinmac20/_._",
  8978. "ref/xamarintvos10/_._",
  8979. "ref/xamarinwatchos10/_._",
  8980. "system.threading.timer.4.3.0.nupkg.sha512",
  8981. "system.threading.timer.nuspec"
  8982. ]
  8983. },
  8984. "System.Windows.Extensions/4.7.0": {
  8985. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8986. "type": "package",
  8987. "path": "system.windows.extensions/4.7.0",
  8988. "files": [
  8989. ".nupkg.metadata",
  8990. ".signature.p7s",
  8991. "LICENSE.TXT",
  8992. "THIRD-PARTY-NOTICES.TXT",
  8993. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8994. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8995. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8996. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8997. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8998. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8999. "system.windows.extensions.4.7.0.nupkg.sha512",
  9000. "system.windows.extensions.nuspec",
  9001. "useSharedDesignerContext.txt",
  9002. "version.txt"
  9003. ]
  9004. },
  9005. "System.Xml.ReaderWriter/4.3.0": {
  9006. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9007. "type": "package",
  9008. "path": "system.xml.readerwriter/4.3.0",
  9009. "files": [
  9010. ".nupkg.metadata",
  9011. ".signature.p7s",
  9012. "ThirdPartyNotices.txt",
  9013. "dotnet_library_license.txt",
  9014. "lib/MonoAndroid10/_._",
  9015. "lib/MonoTouch10/_._",
  9016. "lib/net45/_._",
  9017. "lib/net46/System.Xml.ReaderWriter.dll",
  9018. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9019. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9020. "lib/portable-net45+win8+wp8+wpa81/_._",
  9021. "lib/win8/_._",
  9022. "lib/wp80/_._",
  9023. "lib/wpa81/_._",
  9024. "lib/xamarinios10/_._",
  9025. "lib/xamarinmac20/_._",
  9026. "lib/xamarintvos10/_._",
  9027. "lib/xamarinwatchos10/_._",
  9028. "ref/MonoAndroid10/_._",
  9029. "ref/MonoTouch10/_._",
  9030. "ref/net45/_._",
  9031. "ref/net46/System.Xml.ReaderWriter.dll",
  9032. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9033. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9034. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9035. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9036. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9037. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9038. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9039. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9040. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9041. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9042. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9043. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9044. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9045. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9046. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9047. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9048. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9049. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9050. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9051. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9052. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9053. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9054. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9055. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9056. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9057. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9058. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9059. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9060. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9061. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9062. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9063. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9064. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9065. "ref/portable-net45+win8+wp8+wpa81/_._",
  9066. "ref/win8/_._",
  9067. "ref/wp80/_._",
  9068. "ref/wpa81/_._",
  9069. "ref/xamarinios10/_._",
  9070. "ref/xamarinmac20/_._",
  9071. "ref/xamarintvos10/_._",
  9072. "ref/xamarinwatchos10/_._",
  9073. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9074. "system.xml.readerwriter.nuspec"
  9075. ]
  9076. },
  9077. "System.Xml.XDocument/4.3.0": {
  9078. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9079. "type": "package",
  9080. "path": "system.xml.xdocument/4.3.0",
  9081. "files": [
  9082. ".nupkg.metadata",
  9083. ".signature.p7s",
  9084. "ThirdPartyNotices.txt",
  9085. "dotnet_library_license.txt",
  9086. "lib/MonoAndroid10/_._",
  9087. "lib/MonoTouch10/_._",
  9088. "lib/net45/_._",
  9089. "lib/netcore50/System.Xml.XDocument.dll",
  9090. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9091. "lib/portable-net45+win8+wp8+wpa81/_._",
  9092. "lib/win8/_._",
  9093. "lib/wp80/_._",
  9094. "lib/wpa81/_._",
  9095. "lib/xamarinios10/_._",
  9096. "lib/xamarinmac20/_._",
  9097. "lib/xamarintvos10/_._",
  9098. "lib/xamarinwatchos10/_._",
  9099. "ref/MonoAndroid10/_._",
  9100. "ref/MonoTouch10/_._",
  9101. "ref/net45/_._",
  9102. "ref/netcore50/System.Xml.XDocument.dll",
  9103. "ref/netcore50/System.Xml.XDocument.xml",
  9104. "ref/netcore50/de/System.Xml.XDocument.xml",
  9105. "ref/netcore50/es/System.Xml.XDocument.xml",
  9106. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9107. "ref/netcore50/it/System.Xml.XDocument.xml",
  9108. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9109. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9110. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9111. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9112. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9113. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9114. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9115. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9116. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9117. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9118. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9119. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9120. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9121. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9122. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9123. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9124. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9125. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9126. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9127. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9128. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9129. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9130. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9131. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9132. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9133. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9134. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9135. "ref/portable-net45+win8+wp8+wpa81/_._",
  9136. "ref/win8/_._",
  9137. "ref/wp80/_._",
  9138. "ref/wpa81/_._",
  9139. "ref/xamarinios10/_._",
  9140. "ref/xamarinmac20/_._",
  9141. "ref/xamarintvos10/_._",
  9142. "ref/xamarinwatchos10/_._",
  9143. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9144. "system.xml.xdocument.nuspec"
  9145. ]
  9146. },
  9147. "ZXing.Net/0.16.9": {
  9148. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9149. "type": "package",
  9150. "path": "zxing.net/0.16.9",
  9151. "files": [
  9152. ".nupkg.metadata",
  9153. ".signature.p7s",
  9154. "lib/native/zxing.XML",
  9155. "lib/native/zxing.pri",
  9156. "lib/native/zxing.winmd",
  9157. "lib/net20-cf/zxing.ce2.0.dll",
  9158. "lib/net20-cf/zxing.ce2.0.xml",
  9159. "lib/net20/zxing.XML",
  9160. "lib/net20/zxing.dll",
  9161. "lib/net35-cf/zxing.ce3.5.dll",
  9162. "lib/net35-cf/zxing.ce3.5.xml",
  9163. "lib/net35/zxing.XML",
  9164. "lib/net35/zxing.dll",
  9165. "lib/net40/zxing.XML",
  9166. "lib/net40/zxing.dll",
  9167. "lib/net40/zxing.presentation.XML",
  9168. "lib/net40/zxing.presentation.dll",
  9169. "lib/net45/zxing.XML",
  9170. "lib/net45/zxing.dll",
  9171. "lib/net45/zxing.presentation.XML",
  9172. "lib/net45/zxing.presentation.dll",
  9173. "lib/net461/zxing.XML",
  9174. "lib/net461/zxing.dll",
  9175. "lib/net461/zxing.presentation.XML",
  9176. "lib/net461/zxing.presentation.dll",
  9177. "lib/net47/zxing.XML",
  9178. "lib/net47/zxing.dll",
  9179. "lib/net47/zxing.presentation.XML",
  9180. "lib/net47/zxing.presentation.dll",
  9181. "lib/net48/zxing.XML",
  9182. "lib/net48/zxing.dll",
  9183. "lib/net48/zxing.presentation.XML",
  9184. "lib/net48/zxing.presentation.dll",
  9185. "lib/net5.0/zxing.XML",
  9186. "lib/net5.0/zxing.dll",
  9187. "lib/net6.0/zxing.XML",
  9188. "lib/net6.0/zxing.dll",
  9189. "lib/net7.0/zxing.XML",
  9190. "lib/net7.0/zxing.dll",
  9191. "lib/netcoreapp3.0/zxing.dll",
  9192. "lib/netcoreapp3.0/zxing.xml",
  9193. "lib/netcoreapp3.1/zxing.dll",
  9194. "lib/netcoreapp3.1/zxing.xml",
  9195. "lib/netstandard1.0/zxing.dll",
  9196. "lib/netstandard1.0/zxing.xml",
  9197. "lib/netstandard1.1/zxing.dll",
  9198. "lib/netstandard1.1/zxing.xml",
  9199. "lib/netstandard1.3/zxing.dll",
  9200. "lib/netstandard1.3/zxing.xml",
  9201. "lib/netstandard2.0/zxing.dll",
  9202. "lib/netstandard2.0/zxing.xml",
  9203. "lib/netstandard2.1/zxing.dll",
  9204. "lib/netstandard2.1/zxing.xml",
  9205. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9206. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9207. "lib/sl3-wp/zxing.wp7.0.XML",
  9208. "lib/sl3-wp/zxing.wp7.0.dll",
  9209. "lib/sl4-wp71/zxing.wp7.1.XML",
  9210. "lib/sl4-wp71/zxing.wp7.1.dll",
  9211. "lib/sl4/zxing.sl4.XML",
  9212. "lib/sl4/zxing.sl4.dll",
  9213. "lib/sl5/zxing.sl5.XML",
  9214. "lib/sl5/zxing.sl5.dll",
  9215. "lib/uap10/zxing.dll",
  9216. "lib/uap10/zxing.pri",
  9217. "lib/uap10/zxing.xml",
  9218. "lib/windows8-managed/zxing.winrt.XML",
  9219. "lib/windows8-managed/zxing.winrt.dll",
  9220. "lib/windows8/zxing.XML",
  9221. "lib/windows8/zxing.pri",
  9222. "lib/windows8/zxing.winmd",
  9223. "lib/wp8/zxing.wp8.0.XML",
  9224. "lib/wp8/zxing.wp8.0.dll",
  9225. "logo.jpg",
  9226. "zxing.net.0.16.9.nupkg.sha512",
  9227. "zxing.net.nuspec"
  9228. ]
  9229. },
  9230. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9231. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9232. "type": "package",
  9233. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9234. "files": [
  9235. ".nupkg.metadata",
  9236. ".signature.p7s",
  9237. "lib/net472/ZXing.ImageSharp.V2.dll",
  9238. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9239. "lib/net472/ZXing.ImageSharp.V2.xml",
  9240. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9241. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9242. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9243. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9244. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9245. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9246. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9247. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9248. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9249. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9250. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9251. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9252. "logo.jpg",
  9253. "readme.md",
  9254. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9255. "zxing.net.bindings.imagesharp.v2.nuspec"
  9256. ]
  9257. },
  9258. "Ropin.Core.Common/1.0.0": {
  9259. "type": "project",
  9260. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9261. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9262. },
  9263. "Ropin.Inspection.Common/1.0.0": {
  9264. "type": "project",
  9265. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9266. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9267. },
  9268. "Ropin.Inspection.Model/1.0.0": {
  9269. "type": "project",
  9270. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9271. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9272. },
  9273. "Ropin.Inspection.Repository/1.0.0": {
  9274. "type": "project",
  9275. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9276. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9277. }
  9278. },
  9279. "projectFileDependencyGroups": {
  9280. "net5.0": [
  9281. "FBoxClientDriver >= 1.2.0",
  9282. "InfluxData.Net >= 8.0.1",
  9283. "InitQ >= 1.0.0.14",
  9284. "MQTTnet.AspNetCore >= 4.3.7.1207",
  9285. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9286. "RabbitMQ.Client >= 6.8.1",
  9287. "Ropin.Core.Common >= 1.0.0",
  9288. "Ropin.Inspection.Common >= 1.0.0",
  9289. "Ropin.Inspection.Model >= 1.0.0",
  9290. "Ropin.Inspection.Repository >= 1.0.0",
  9291. "Swashbuckle.AspNetCore >= 5.6.3",
  9292. "log4net >= 2.0.17"
  9293. ]
  9294. },
  9295. "packageFolders": {
  9296. "D:\\.nuget\\packages": {},
  9297. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9298. },
  9299. "project": {
  9300. "version": "1.0.0",
  9301. "restore": {
  9302. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\Ropin.Environmentally.DcsService.csproj",
  9303. "projectName": "Ropin.Environmentally.DcsService",
  9304. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\Ropin.Environmentally.DcsService.csproj",
  9305. "packagesPath": "D:\\.nuget\\packages",
  9306. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\obj\\",
  9307. "projectStyle": "PackageReference",
  9308. "fallbackFolders": [
  9309. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9310. ],
  9311. "configFilePaths": [
  9312. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9313. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9314. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9315. ],
  9316. "originalTargetFrameworks": [
  9317. "net5.0"
  9318. ],
  9319. "sources": {
  9320. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9321. "C:\\Program Files\\dotnet\\library-packs": {},
  9322. "https://api.nuget.org/v3/index.json": {}
  9323. },
  9324. "frameworks": {
  9325. "net5.0": {
  9326. "targetAlias": "net5.0",
  9327. "projectReferences": {
  9328. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9329. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9330. },
  9331. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9332. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9333. },
  9334. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9335. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9336. },
  9337. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9338. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9339. }
  9340. }
  9341. }
  9342. },
  9343. "warningProperties": {
  9344. "warnAsError": [
  9345. "NU1605"
  9346. ]
  9347. }
  9348. },
  9349. "frameworks": {
  9350. "net5.0": {
  9351. "targetAlias": "net5.0",
  9352. "dependencies": {
  9353. "FBoxClientDriver": {
  9354. "target": "Package",
  9355. "version": "[1.2.0, )"
  9356. },
  9357. "InfluxData.Net": {
  9358. "target": "Package",
  9359. "version": "[8.0.1, )"
  9360. },
  9361. "InitQ": {
  9362. "target": "Package",
  9363. "version": "[1.0.0.14, )"
  9364. },
  9365. "MQTTnet.AspNetCore": {
  9366. "target": "Package",
  9367. "version": "[4.3.7.1207, )"
  9368. },
  9369. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9370. "target": "Package",
  9371. "version": "[1.17.2, )"
  9372. },
  9373. "RabbitMQ.Client": {
  9374. "target": "Package",
  9375. "version": "[6.8.1, )"
  9376. },
  9377. "Swashbuckle.AspNetCore": {
  9378. "target": "Package",
  9379. "version": "[5.6.3, )"
  9380. },
  9381. "log4net": {
  9382. "target": "Package",
  9383. "version": "[2.0.17, )"
  9384. }
  9385. },
  9386. "imports": [
  9387. "net461",
  9388. "net462",
  9389. "net47",
  9390. "net471",
  9391. "net472",
  9392. "net48",
  9393. "net481"
  9394. ],
  9395. "assetTargetFallback": true,
  9396. "warn": true,
  9397. "frameworkReferences": {
  9398. "Microsoft.AspNetCore.App": {
  9399. "privateAssets": "none"
  9400. },
  9401. "Microsoft.NETCore.App": {
  9402. "privateAssets": "all"
  9403. }
  9404. },
  9405. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9406. }
  9407. }
  9408. }
  9409. }