project.assets.json 433 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811
  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. "Autofac/6.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/net5.0/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/net5.0/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "Autofac.Extras.DynamicProxy/6.0.0": {
  52. "type": "package",
  53. "dependencies": {
  54. "Autofac": "6.0.0",
  55. "Castle.Core": "4.4.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  59. "related": ".pdb;.xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  64. "related": ".pdb;.xml"
  65. }
  66. }
  67. },
  68. "AutoMapper/10.1.1": {
  69. "type": "package",
  70. "dependencies": {
  71. "Microsoft.CSharp": "4.7.0",
  72. "System.Reflection.Emit": "4.7.0"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/AutoMapper.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/netstandard2.0/AutoMapper.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "BouncyCastle.NetCore/1.8.5": {
  86. "type": "package",
  87. "compile": {
  88. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  89. "related": ".xml"
  90. }
  91. },
  92. "runtime": {
  93. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  94. "related": ".xml"
  95. }
  96. }
  97. },
  98. "Castle.Core/4.4.0": {
  99. "type": "package",
  100. "dependencies": {
  101. "NETStandard.Library": "1.6.1",
  102. "System.Collections.Specialized": "4.3.0",
  103. "System.ComponentModel": "4.3.0",
  104. "System.ComponentModel.TypeConverter": "4.3.0",
  105. "System.Diagnostics.TraceSource": "4.3.0",
  106. "System.Dynamic.Runtime": "4.3.0",
  107. "System.Reflection": "4.3.0",
  108. "System.Reflection.Emit": "4.3.0",
  109. "System.Reflection.TypeExtensions": "4.3.0",
  110. "System.Xml.XmlDocument": "4.3.0"
  111. },
  112. "compile": {
  113. "lib/netstandard1.5/Castle.Core.dll": {
  114. "related": ".xml"
  115. }
  116. },
  117. "runtime": {
  118. "lib/netstandard1.5/Castle.Core.dll": {
  119. "related": ".xml"
  120. }
  121. }
  122. },
  123. "Coravel/4.2.1": {
  124. "type": "package",
  125. "dependencies": {
  126. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  127. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  128. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  129. },
  130. "compile": {
  131. "lib/netstandard2.0/Coravel.dll": {
  132. "related": ".xml"
  133. }
  134. },
  135. "runtime": {
  136. "lib/netstandard2.0/Coravel.dll": {
  137. "related": ".xml"
  138. }
  139. }
  140. },
  141. "FBoxClientDriver/1.2.0": {
  142. "type": "package",
  143. "dependencies": {
  144. "FBoxClientDriver.Contract": "1.2.0",
  145. "IdentityModel": "4.3.1",
  146. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  147. "Microsoft.CSharp": "4.5.0",
  148. "Microsoft.Extensions.Logging": "3.1.5",
  149. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  150. "Newtonsoft.Json": "12.0.3",
  151. "Nito.AsyncEx.Coordination": "5.0.0",
  152. "NodaTime": "2.4.7",
  153. "System.ComponentModel.EventBasedAsync": "4.3.0",
  154. "System.IO.FileSystem": "4.3.0",
  155. "System.Net.Http": "4.3.2",
  156. "System.Reactive": "4.4.1",
  157. "System.Runtime.Serialization.Primitives": "4.3.0",
  158. "System.Threading.Thread": "4.3.0"
  159. },
  160. "compile": {
  161. "lib/netstandard2.0/FBoxClientDriver.dll": {
  162. "related": ".xml"
  163. }
  164. },
  165. "runtime": {
  166. "lib/netstandard2.0/FBoxClientDriver.dll": {
  167. "related": ".xml"
  168. }
  169. }
  170. },
  171. "FBoxClientDriver.Contract/1.2.0": {
  172. "type": "package",
  173. "dependencies": {
  174. "Newtonsoft.Json": "12.0.3",
  175. "System.ComponentModel.Primitives": "4.3.0"
  176. },
  177. "compile": {
  178. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  179. "related": ".xml"
  180. }
  181. },
  182. "runtime": {
  183. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  184. "related": ".xml"
  185. }
  186. }
  187. },
  188. "FluentEmail.Core/3.0.2": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  192. },
  193. "compile": {
  194. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  195. },
  196. "runtime": {
  197. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  198. }
  199. },
  200. "FluentEmail.Smtp/3.0.2": {
  201. "type": "package",
  202. "dependencies": {
  203. "FluentEmail.Core": "3.0.2"
  204. },
  205. "compile": {
  206. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  207. },
  208. "runtime": {
  209. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  210. }
  211. },
  212. "Google.Protobuf/3.11.4": {
  213. "type": "package",
  214. "dependencies": {
  215. "System.Memory": "4.5.2"
  216. },
  217. "compile": {
  218. "lib/netstandard2.0/Google.Protobuf.dll": {
  219. "related": ".pdb;.xml"
  220. }
  221. },
  222. "runtime": {
  223. "lib/netstandard2.0/Google.Protobuf.dll": {
  224. "related": ".pdb;.xml"
  225. }
  226. }
  227. },
  228. "IdentityModel/4.3.1": {
  229. "type": "package",
  230. "dependencies": {
  231. "Newtonsoft.Json": "11.0.2",
  232. "System.Text.Encodings.Web": "4.7.0"
  233. },
  234. "compile": {
  235. "lib/netstandard2.0/IdentityModel.dll": {
  236. "related": ".pdb;.xml"
  237. }
  238. },
  239. "runtime": {
  240. "lib/netstandard2.0/IdentityModel.dll": {
  241. "related": ".pdb;.xml"
  242. }
  243. }
  244. },
  245. "InfluxData.Net/8.0.1": {
  246. "type": "package",
  247. "dependencies": {
  248. "Newtonsoft.Json": "10.0.3",
  249. "System.Net.Http": "4.3.2"
  250. },
  251. "compile": {
  252. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  253. "related": ".dll.config;.pdb"
  254. },
  255. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  256. "related": ".dll.config;.pdb"
  257. },
  258. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  259. "related": ".dll.config;.pdb"
  260. },
  261. "lib/netstandard2.0/InfluxData.Net.dll": {
  262. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  263. }
  264. },
  265. "runtime": {
  266. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  267. "related": ".dll.config;.pdb"
  268. },
  269. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  270. "related": ".dll.config;.pdb"
  271. },
  272. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  273. "related": ".dll.config;.pdb"
  274. },
  275. "lib/netstandard2.0/InfluxData.Net.dll": {
  276. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  277. }
  278. }
  279. },
  280. "InitQ/1.0.0.14": {
  281. "type": "package",
  282. "dependencies": {
  283. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  284. "Microsoft.Extensions.Hosting": "2.1.0",
  285. "Newtonsoft.Json": "13.0.1",
  286. "StackExchange.Redis": "1.2.4"
  287. },
  288. "compile": {
  289. "lib/netcoreapp2.1/InitQ.dll": {}
  290. },
  291. "runtime": {
  292. "lib/netcoreapp2.1/InitQ.dll": {}
  293. }
  294. },
  295. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  296. "type": "package",
  297. "dependencies": {
  298. "AdvancedStringBuilder": "0.1.0",
  299. "JavaScriptEngineSwitcher.Core": "3.21.0"
  300. },
  301. "compile": {
  302. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  303. "related": ".xml"
  304. }
  305. },
  306. "runtime": {
  307. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  308. "related": ".xml"
  309. }
  310. },
  311. "resource": {
  312. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  313. "locale": "ru-RU"
  314. }
  315. }
  316. },
  317. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  318. "type": "package",
  319. "runtimeTargets": {
  320. "runtimes/linux-x64/native/libChakraCore.so": {
  321. "assetType": "native",
  322. "rid": "linux-x64"
  323. }
  324. }
  325. },
  326. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  327. "type": "package",
  328. "build": {
  329. "build/_._": {}
  330. },
  331. "runtimeTargets": {
  332. "runtimes/win-x64/native/ChakraCore.dll": {
  333. "assetType": "native",
  334. "rid": "win-x64"
  335. }
  336. }
  337. },
  338. "JavaScriptEngineSwitcher.Core/3.21.0": {
  339. "type": "package",
  340. "dependencies": {
  341. "AdvancedStringBuilder": "0.1.0"
  342. },
  343. "compile": {
  344. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  345. "related": ".xml"
  346. }
  347. },
  348. "runtime": {
  349. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  350. "related": ".xml"
  351. }
  352. },
  353. "resource": {
  354. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  355. "locale": "ru-RU"
  356. }
  357. }
  358. },
  359. "K4os.Compression.LZ4/1.1.11": {
  360. "type": "package",
  361. "dependencies": {
  362. "System.Memory": "4.5.3"
  363. },
  364. "compile": {
  365. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  366. "related": ".xml"
  367. }
  368. },
  369. "runtime": {
  370. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  371. "related": ".xml"
  372. }
  373. }
  374. },
  375. "K4os.Compression.LZ4.Streams/1.1.11": {
  376. "type": "package",
  377. "dependencies": {
  378. "K4os.Compression.LZ4": "1.1.11",
  379. "K4os.Hash.xxHash": "1.0.6"
  380. },
  381. "compile": {
  382. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  383. "related": ".xml"
  384. }
  385. },
  386. "runtime": {
  387. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  388. "related": ".xml"
  389. }
  390. }
  391. },
  392. "K4os.Hash.xxHash/1.0.6": {
  393. "type": "package",
  394. "dependencies": {
  395. "System.Memory": "4.5.3"
  396. },
  397. "compile": {
  398. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  399. "related": ".xml"
  400. }
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  404. "related": ".xml"
  405. }
  406. }
  407. },
  408. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  409. "type": "package",
  410. "dependencies": {
  411. "Microsoft.EntityFrameworkCore": "5.0.0"
  412. },
  413. "compile": {
  414. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  415. "related": ".xml"
  416. }
  417. },
  418. "runtime": {
  419. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  420. "related": ".xml"
  421. }
  422. }
  423. },
  424. "log4net/2.0.17": {
  425. "type": "package",
  426. "dependencies": {
  427. "System.Configuration.ConfigurationManager": "4.5.0"
  428. },
  429. "compile": {
  430. "lib/netstandard2.0/log4net.dll": {
  431. "related": ".xml"
  432. }
  433. },
  434. "runtime": {
  435. "lib/netstandard2.0/log4net.dll": {
  436. "related": ".xml"
  437. }
  438. }
  439. },
  440. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  441. "type": "package",
  442. "dependencies": {
  443. "Newtonsoft.Json": "11.0.2"
  444. },
  445. "compile": {
  446. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  447. "related": ".pdb;.xml"
  448. }
  449. },
  450. "runtime": {
  451. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  452. "related": ".pdb;.xml"
  453. }
  454. }
  455. },
  456. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  460. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  461. "Microsoft.Extensions.Options": "2.2.0"
  462. },
  463. "compile": {
  464. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  465. "related": ".xml"
  466. }
  467. },
  468. "runtime": {
  469. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  470. "related": ".xml"
  471. }
  472. }
  473. },
  474. "Microsoft.AspNetCore.Authorization/2.2.0": {
  475. "type": "package",
  476. "dependencies": {
  477. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  478. "Microsoft.Extensions.Options": "2.2.0"
  479. },
  480. "compile": {
  481. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  482. "related": ".xml"
  483. }
  484. },
  485. "runtime": {
  486. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  487. "related": ".xml"
  488. }
  489. }
  490. },
  491. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  492. "type": "package",
  493. "dependencies": {
  494. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  495. "Microsoft.AspNetCore.Authorization": "2.2.0"
  496. },
  497. "compile": {
  498. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  499. "related": ".xml"
  500. }
  501. },
  502. "runtime": {
  503. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  504. "related": ".xml"
  505. }
  506. }
  507. },
  508. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  509. "type": "package",
  510. "dependencies": {
  511. "Microsoft.AspNetCore.Http.Features": "3.1.20",
  512. "System.IO.Pipelines": "4.7.4"
  513. },
  514. "compile": {
  515. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  516. "related": ".xml"
  517. }
  518. },
  519. "runtime": {
  520. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  521. "related": ".xml"
  522. }
  523. }
  524. },
  525. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  526. "type": "package",
  527. "dependencies": {
  528. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  529. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  530. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  531. },
  532. "compile": {
  533. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  534. "related": ".xml"
  535. }
  536. },
  537. "runtime": {
  538. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  539. "related": ".xml"
  540. }
  541. }
  542. },
  543. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  544. "type": "package",
  545. "dependencies": {
  546. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  547. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  548. },
  549. "compile": {
  550. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  551. "related": ".xml"
  552. }
  553. },
  554. "runtime": {
  555. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  556. "related": ".xml"
  557. }
  558. }
  559. },
  560. "Microsoft.AspNetCore.Http/2.2.0": {
  561. "type": "package",
  562. "dependencies": {
  563. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  564. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  565. "Microsoft.Extensions.ObjectPool": "2.2.0",
  566. "Microsoft.Extensions.Options": "2.2.0",
  567. "Microsoft.Net.Http.Headers": "2.2.0"
  568. },
  569. "compile": {
  570. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  571. "related": ".xml"
  572. }
  573. },
  574. "runtime": {
  575. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  576. "related": ".xml"
  577. }
  578. }
  579. },
  580. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  581. "type": "package",
  582. "dependencies": {
  583. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  584. "System.Text.Encodings.Web": "4.5.0"
  585. },
  586. "compile": {
  587. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  588. "related": ".xml"
  589. }
  590. },
  591. "runtime": {
  592. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  593. "related": ".xml"
  594. }
  595. }
  596. },
  597. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  598. "type": "package",
  599. "dependencies": {
  600. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  601. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  602. "Microsoft.AspNetCore.Http": "2.2.0",
  603. "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0",
  604. "Microsoft.AspNetCore.Routing": "2.2.0",
  605. "Microsoft.AspNetCore.WebSockets": "2.2.0",
  606. "Newtonsoft.Json": "11.0.2",
  607. "System.Security.Principal.Windows": "4.5.0"
  608. },
  609. "compile": {
  610. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  611. "related": ".xml"
  612. }
  613. },
  614. "runtime": {
  615. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  616. "related": ".xml"
  617. }
  618. }
  619. },
  620. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  621. "type": "package",
  622. "dependencies": {
  623. "Microsoft.AspNetCore.Http.Connections.Common": "3.1.20",
  624. "Microsoft.Extensions.Logging.Abstractions": "3.1.20",
  625. "Microsoft.Extensions.Options": "3.1.20"
  626. },
  627. "compile": {
  628. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  629. "related": ".xml"
  630. }
  631. },
  632. "runtime": {
  633. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  634. "related": ".xml"
  635. }
  636. }
  637. },
  638. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  639. "type": "package",
  640. "dependencies": {
  641. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20"
  642. },
  643. "compile": {
  644. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  645. "related": ".xml"
  646. }
  647. },
  648. "runtime": {
  649. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  650. "related": ".xml"
  651. }
  652. }
  653. },
  654. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  655. "type": "package",
  656. "dependencies": {
  657. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  658. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  659. "Microsoft.Net.Http.Headers": "2.2.0",
  660. "System.Buffers": "4.5.0"
  661. },
  662. "compile": {
  663. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  664. "related": ".xml"
  665. }
  666. },
  667. "runtime": {
  668. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  669. "related": ".xml"
  670. }
  671. }
  672. },
  673. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  674. "type": "package",
  675. "dependencies": {
  676. "Microsoft.Extensions.Primitives": "5.0.0",
  677. "System.IO.Pipelines": "5.0.0"
  678. },
  679. "compile": {
  680. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  681. "related": ".xml"
  682. }
  683. },
  684. "runtime": {
  685. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  686. "related": ".xml"
  687. }
  688. }
  689. },
  690. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  691. "type": "package",
  692. "dependencies": {
  693. "Microsoft.Extensions.Logging.Console": "3.1.30",
  694. "Newtonsoft.Json": "13.0.1"
  695. },
  696. "compile": {
  697. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  698. },
  699. "runtime": {
  700. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  701. },
  702. "frameworkReferences": [
  703. "Microsoft.AspNetCore.App"
  704. ]
  705. },
  706. "Microsoft.AspNetCore.Routing/2.2.0": {
  707. "type": "package",
  708. "dependencies": {
  709. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  710. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  711. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  712. "Microsoft.Extensions.ObjectPool": "2.2.0",
  713. "Microsoft.Extensions.Options": "2.2.0"
  714. },
  715. "compile": {
  716. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  717. "related": ".xml"
  718. }
  719. },
  720. "runtime": {
  721. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  722. "related": ".xml"
  723. }
  724. }
  725. },
  726. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  727. "type": "package",
  728. "dependencies": {
  729. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  730. },
  731. "compile": {
  732. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  733. "related": ".xml"
  734. }
  735. },
  736. "runtime": {
  737. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  738. "related": ".xml"
  739. }
  740. }
  741. },
  742. "Microsoft.AspNetCore.SignalR/1.1.0": {
  743. "type": "package",
  744. "dependencies": {
  745. "Microsoft.AspNetCore.Http.Connections": "1.1.0",
  746. "Microsoft.AspNetCore.SignalR.Core": "1.1.0"
  747. },
  748. "compile": {
  749. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  750. "related": ".xml"
  751. }
  752. },
  753. "runtime": {
  754. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  755. "related": ".xml"
  756. }
  757. }
  758. },
  759. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  760. "type": "package",
  761. "dependencies": {
  762. "Microsoft.AspNetCore.Http.Connections.Client": "3.1.20",
  763. "Microsoft.AspNetCore.SignalR.Client.Core": "3.1.20"
  764. },
  765. "compile": {
  766. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  767. "related": ".xml"
  768. }
  769. },
  770. "runtime": {
  771. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  772. "related": ".xml"
  773. }
  774. }
  775. },
  776. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  777. "type": "package",
  778. "dependencies": {
  779. "Microsoft.AspNetCore.SignalR.Common": "3.1.20",
  780. "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.20",
  781. "Microsoft.Extensions.DependencyInjection": "3.1.20",
  782. "Microsoft.Extensions.Logging": "3.1.20",
  783. "System.Threading.Channels": "4.7.1"
  784. },
  785. "compile": {
  786. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  787. "related": ".xml"
  788. }
  789. },
  790. "runtime": {
  791. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  792. "related": ".xml"
  793. }
  794. }
  795. },
  796. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  797. "type": "package",
  798. "dependencies": {
  799. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20",
  800. "Microsoft.Extensions.Options": "3.1.20"
  801. },
  802. "compile": {
  803. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  804. "related": ".xml"
  805. }
  806. },
  807. "runtime": {
  808. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  809. "related": ".xml"
  810. }
  811. }
  812. },
  813. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  814. "type": "package",
  815. "dependencies": {
  816. "Microsoft.AspNetCore.Authorization": "2.2.0",
  817. "Microsoft.AspNetCore.SignalR.Common": "1.1.0",
  818. "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0",
  819. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  820. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  821. "System.Reflection.Emit": "4.3.0",
  822. "System.Threading.Channels": "4.5.0"
  823. },
  824. "compile": {
  825. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  826. "related": ".xml"
  827. }
  828. },
  829. "runtime": {
  830. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  831. "related": ".xml"
  832. }
  833. }
  834. },
  835. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  836. "type": "package",
  837. "dependencies": {
  838. "Microsoft.AspNetCore.SignalR.Common": "3.1.20"
  839. },
  840. "compile": {
  841. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  842. "related": ".xml"
  843. }
  844. },
  845. "runtime": {
  846. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  847. "related": ".xml"
  848. }
  849. }
  850. },
  851. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  855. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  856. "Microsoft.Extensions.Options": "2.2.0",
  857. "System.Net.WebSockets.WebSocketProtocol": "4.5.1"
  858. },
  859. "compile": {
  860. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  861. "related": ".xml"
  862. }
  863. },
  864. "runtime": {
  865. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  866. "related": ".xml"
  867. }
  868. }
  869. },
  870. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  871. "type": "package",
  872. "dependencies": {
  873. "Microsoft.Net.Http.Headers": "2.2.0",
  874. "System.Text.Encodings.Web": "4.5.0"
  875. },
  876. "compile": {
  877. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  878. "related": ".xml"
  879. }
  880. },
  881. "runtime": {
  882. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  883. "related": ".xml"
  884. }
  885. }
  886. },
  887. "Microsoft.CSharp/4.7.0": {
  888. "type": "package",
  889. "compile": {
  890. "ref/netcoreapp2.0/_._": {}
  891. },
  892. "runtime": {
  893. "lib/netcoreapp2.0/_._": {}
  894. }
  895. },
  896. "Microsoft.EntityFrameworkCore/5.0.0": {
  897. "type": "package",
  898. "dependencies": {
  899. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  900. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  901. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  902. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  903. "Microsoft.Extensions.Logging": "5.0.0",
  904. "System.Collections.Immutable": "5.0.0",
  905. "System.ComponentModel.Annotations": "5.0.0",
  906. "System.Diagnostics.DiagnosticSource": "5.0.0"
  907. },
  908. "compile": {
  909. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  910. "related": ".xml"
  911. }
  912. },
  913. "runtime": {
  914. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  915. "related": ".xml"
  916. }
  917. }
  918. },
  919. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  920. "type": "package",
  921. "compile": {
  922. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  923. "related": ".xml"
  924. }
  925. },
  926. "runtime": {
  927. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  928. "related": ".xml"
  929. }
  930. }
  931. },
  932. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  933. "type": "package",
  934. "compile": {
  935. "lib/netstandard2.0/_._": {}
  936. },
  937. "runtime": {
  938. "lib/netstandard2.0/_._": {}
  939. }
  940. },
  941. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.EntityFrameworkCore": "5.0.0",
  945. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  946. },
  947. "compile": {
  948. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  949. "related": ".xml"
  950. }
  951. },
  952. "runtime": {
  953. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  954. "related": ".xml"
  955. }
  956. }
  957. },
  958. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  959. "type": "package",
  960. "dependencies": {
  961. "Microsoft.Extensions.Primitives": "5.0.0"
  962. },
  963. "compile": {
  964. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  965. "related": ".xml"
  966. }
  967. },
  968. "runtime": {
  969. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  970. "related": ".xml"
  971. }
  972. }
  973. },
  974. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  975. "type": "package",
  976. "dependencies": {
  977. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  978. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  979. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  980. "Microsoft.Extensions.Options": "5.0.0",
  981. "Microsoft.Extensions.Primitives": "5.0.0"
  982. },
  983. "compile": {
  984. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  985. "related": ".xml"
  986. }
  987. },
  988. "runtime": {
  989. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  990. "related": ".xml"
  991. }
  992. }
  993. },
  994. "Microsoft.Extensions.Configuration/5.0.0": {
  995. "type": "package",
  996. "dependencies": {
  997. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  998. "Microsoft.Extensions.Primitives": "5.0.0"
  999. },
  1000. "compile": {
  1001. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1002. "related": ".xml"
  1003. }
  1004. },
  1005. "runtime": {
  1006. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1007. "related": ".xml"
  1008. }
  1009. }
  1010. },
  1011. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  1012. "type": "package",
  1013. "dependencies": {
  1014. "Microsoft.Extensions.Primitives": "5.0.0"
  1015. },
  1016. "compile": {
  1017. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1018. "related": ".xml"
  1019. }
  1020. },
  1021. "runtime": {
  1022. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1023. "related": ".xml"
  1024. }
  1025. }
  1026. },
  1027. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  1028. "type": "package",
  1029. "dependencies": {
  1030. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  1031. },
  1032. "compile": {
  1033. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1034. "related": ".xml"
  1035. }
  1036. },
  1037. "runtime": {
  1038. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1039. "related": ".xml"
  1040. }
  1041. }
  1042. },
  1043. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  1044. "type": "package",
  1045. "dependencies": {
  1046. "Microsoft.Extensions.Configuration": "5.0.0",
  1047. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1048. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1049. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  1050. "Microsoft.Extensions.Primitives": "5.0.0"
  1051. },
  1052. "compile": {
  1053. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1054. "related": ".xml"
  1055. }
  1056. },
  1057. "runtime": {
  1058. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1059. "related": ".xml"
  1060. }
  1061. }
  1062. },
  1063. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  1064. "type": "package",
  1065. "dependencies": {
  1066. "Microsoft.Extensions.Configuration": "5.0.0",
  1067. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1068. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  1069. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  1070. },
  1071. "compile": {
  1072. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1073. "related": ".xml"
  1074. }
  1075. },
  1076. "runtime": {
  1077. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1078. "related": ".xml"
  1079. }
  1080. }
  1081. },
  1082. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  1083. "type": "package",
  1084. "dependencies": {
  1085. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  1086. },
  1087. "compile": {
  1088. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1089. "related": ".xml"
  1090. }
  1091. },
  1092. "runtime": {
  1093. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1094. "related": ".xml"
  1095. }
  1096. }
  1097. },
  1098. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1099. "type": "package",
  1100. "compile": {
  1101. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1102. "related": ".xml"
  1103. }
  1104. },
  1105. "runtime": {
  1106. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1107. "related": ".xml"
  1108. }
  1109. }
  1110. },
  1111. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  1112. "type": "package",
  1113. "dependencies": {
  1114. "Microsoft.Extensions.Primitives": "5.0.0"
  1115. },
  1116. "compile": {
  1117. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1118. "related": ".xml"
  1119. }
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1123. "related": ".xml"
  1124. }
  1125. }
  1126. },
  1127. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1131. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  1132. "Microsoft.Extensions.Primitives": "5.0.0"
  1133. },
  1134. "compile": {
  1135. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1136. "related": ".xml"
  1137. }
  1138. },
  1139. "runtime": {
  1140. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1141. "related": ".xml"
  1142. }
  1143. }
  1144. },
  1145. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  1146. "type": "package",
  1147. "compile": {
  1148. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1149. "related": ".xml"
  1150. }
  1151. },
  1152. "runtime": {
  1153. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1154. "related": ".xml"
  1155. }
  1156. }
  1157. },
  1158. "Microsoft.Extensions.Hosting/2.1.0": {
  1159. "type": "package",
  1160. "dependencies": {
  1161. "Microsoft.Extensions.Configuration": "2.1.0",
  1162. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1163. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  1164. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  1165. "Microsoft.Extensions.Logging": "2.1.0"
  1166. },
  1167. "compile": {
  1168. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1169. "related": ".xml"
  1170. }
  1171. },
  1172. "runtime": {
  1173. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1174. "related": ".xml"
  1175. }
  1176. }
  1177. },
  1178. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  1179. "type": "package",
  1180. "dependencies": {
  1181. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  1182. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  1183. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  1184. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  1185. },
  1186. "compile": {
  1187. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1188. "related": ".xml"
  1189. }
  1190. },
  1191. "runtime": {
  1192. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1193. "related": ".xml"
  1194. }
  1195. }
  1196. },
  1197. "Microsoft.Extensions.Http/5.0.0": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1201. "Microsoft.Extensions.Logging": "5.0.0",
  1202. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1203. "Microsoft.Extensions.Options": "5.0.0"
  1204. },
  1205. "compile": {
  1206. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1207. "related": ".xml"
  1208. }
  1209. },
  1210. "runtime": {
  1211. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1212. "related": ".xml"
  1213. }
  1214. }
  1215. },
  1216. "Microsoft.Extensions.Logging/5.0.0": {
  1217. "type": "package",
  1218. "dependencies": {
  1219. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1220. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1221. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1222. "Microsoft.Extensions.Options": "5.0.0"
  1223. },
  1224. "compile": {
  1225. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1226. "related": ".xml"
  1227. }
  1228. },
  1229. "runtime": {
  1230. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1231. "related": ".xml"
  1232. }
  1233. }
  1234. },
  1235. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1236. "type": "package",
  1237. "compile": {
  1238. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1239. "related": ".xml"
  1240. }
  1241. },
  1242. "runtime": {
  1243. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1244. "related": ".xml"
  1245. }
  1246. }
  1247. },
  1248. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  1249. "type": "package",
  1250. "dependencies": {
  1251. "Microsoft.Extensions.Logging": "3.1.30",
  1252. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  1253. },
  1254. "compile": {
  1255. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1256. "related": ".xml"
  1257. }
  1258. },
  1259. "runtime": {
  1260. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1261. "related": ".xml"
  1262. }
  1263. }
  1264. },
  1265. "Microsoft.Extensions.Logging.Console/3.1.30": {
  1266. "type": "package",
  1267. "dependencies": {
  1268. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1269. "Microsoft.Extensions.Logging": "3.1.30",
  1270. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  1271. },
  1272. "compile": {
  1273. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1274. "related": ".xml"
  1275. }
  1276. },
  1277. "runtime": {
  1278. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1279. "related": ".xml"
  1280. }
  1281. }
  1282. },
  1283. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1284. "type": "package",
  1285. "compile": {
  1286. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1287. "related": ".xml"
  1288. }
  1289. },
  1290. "runtime": {
  1291. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1292. "related": ".xml"
  1293. }
  1294. }
  1295. },
  1296. "Microsoft.Extensions.Options/5.0.0": {
  1297. "type": "package",
  1298. "dependencies": {
  1299. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1300. "Microsoft.Extensions.Primitives": "5.0.0"
  1301. },
  1302. "compile": {
  1303. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1304. "related": ".xml"
  1305. }
  1306. },
  1307. "runtime": {
  1308. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1309. "related": ".xml"
  1310. }
  1311. }
  1312. },
  1313. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1314. "type": "package",
  1315. "dependencies": {
  1316. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1317. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1318. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1319. "Microsoft.Extensions.Options": "3.1.30"
  1320. },
  1321. "compile": {
  1322. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1323. "related": ".xml"
  1324. }
  1325. },
  1326. "runtime": {
  1327. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1328. "related": ".xml"
  1329. }
  1330. }
  1331. },
  1332. "Microsoft.Extensions.Primitives/5.0.0": {
  1333. "type": "package",
  1334. "compile": {
  1335. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1336. "related": ".xml"
  1337. }
  1338. },
  1339. "runtime": {
  1340. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1341. "related": ".xml"
  1342. }
  1343. }
  1344. },
  1345. "Microsoft.Net.Http.Headers/2.2.0": {
  1346. "type": "package",
  1347. "dependencies": {
  1348. "Microsoft.Extensions.Primitives": "2.2.0",
  1349. "System.Buffers": "4.5.0"
  1350. },
  1351. "compile": {
  1352. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1353. "related": ".xml"
  1354. }
  1355. },
  1356. "runtime": {
  1357. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1358. "related": ".xml"
  1359. }
  1360. }
  1361. },
  1362. "Microsoft.NETCore.Platforms/5.0.0": {
  1363. "type": "package",
  1364. "compile": {
  1365. "lib/netstandard1.0/_._": {}
  1366. },
  1367. "runtime": {
  1368. "lib/netstandard1.0/_._": {}
  1369. }
  1370. },
  1371. "Microsoft.NETCore.Targets/1.1.0": {
  1372. "type": "package",
  1373. "compile": {
  1374. "lib/netstandard1.0/_._": {}
  1375. },
  1376. "runtime": {
  1377. "lib/netstandard1.0/_._": {}
  1378. }
  1379. },
  1380. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  1381. "type": "package",
  1382. "build": {
  1383. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1384. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1385. }
  1386. },
  1387. "Microsoft.Win32.Primitives/4.3.0": {
  1388. "type": "package",
  1389. "dependencies": {
  1390. "Microsoft.NETCore.Platforms": "1.1.0",
  1391. "Microsoft.NETCore.Targets": "1.1.0",
  1392. "System.Runtime": "4.3.0"
  1393. },
  1394. "compile": {
  1395. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1396. "related": ".xml"
  1397. }
  1398. }
  1399. },
  1400. "Microsoft.Win32.SystemEvents/5.0.0": {
  1401. "type": "package",
  1402. "dependencies": {
  1403. "Microsoft.NETCore.Platforms": "5.0.0"
  1404. },
  1405. "compile": {
  1406. "ref/netstandard2.0/_._": {
  1407. "related": ".xml"
  1408. }
  1409. },
  1410. "runtime": {
  1411. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1412. "related": ".xml"
  1413. }
  1414. },
  1415. "runtimeTargets": {
  1416. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1417. "assetType": "runtime",
  1418. "rid": "win"
  1419. }
  1420. }
  1421. },
  1422. "MySql.Data/8.0.23": {
  1423. "type": "package",
  1424. "dependencies": {
  1425. "BouncyCastle.NetCore": "1.8.5",
  1426. "Google.Protobuf": "3.11.4",
  1427. "K4os.Compression.LZ4": "1.1.11",
  1428. "K4os.Compression.LZ4.Streams": "1.1.11",
  1429. "K4os.Hash.xxHash": "1.0.6",
  1430. "SSH.NET": "2020.0.0-beta1",
  1431. "System.Buffers": "4.5.1",
  1432. "System.Configuration.ConfigurationManager": "4.4.1",
  1433. "System.Security.Permissions": "4.7.0",
  1434. "System.Text.Encoding.CodePages": "4.4.0"
  1435. },
  1436. "compile": {
  1437. "lib/net5.0/MySql.Data.dll": {
  1438. "related": ".xml"
  1439. },
  1440. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1441. "lib/net5.0/Zstandard.Net.dll": {}
  1442. },
  1443. "runtime": {
  1444. "lib/net5.0/MySql.Data.dll": {
  1445. "related": ".xml"
  1446. },
  1447. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1448. "lib/net5.0/Zstandard.Net.dll": {}
  1449. }
  1450. },
  1451. "MySqlConnector/1.1.0": {
  1452. "type": "package",
  1453. "compile": {
  1454. "lib/net5.0/MySqlConnector.dll": {
  1455. "related": ".xml"
  1456. }
  1457. },
  1458. "runtime": {
  1459. "lib/net5.0/MySqlConnector.dll": {
  1460. "related": ".xml"
  1461. }
  1462. }
  1463. },
  1464. "NETStandard.Library/1.6.1": {
  1465. "type": "package",
  1466. "dependencies": {
  1467. "Microsoft.NETCore.Platforms": "1.1.0",
  1468. "Microsoft.Win32.Primitives": "4.3.0",
  1469. "System.AppContext": "4.3.0",
  1470. "System.Collections": "4.3.0",
  1471. "System.Collections.Concurrent": "4.3.0",
  1472. "System.Console": "4.3.0",
  1473. "System.Diagnostics.Debug": "4.3.0",
  1474. "System.Diagnostics.Tools": "4.3.0",
  1475. "System.Diagnostics.Tracing": "4.3.0",
  1476. "System.Globalization": "4.3.0",
  1477. "System.Globalization.Calendars": "4.3.0",
  1478. "System.IO": "4.3.0",
  1479. "System.IO.Compression": "4.3.0",
  1480. "System.IO.Compression.ZipFile": "4.3.0",
  1481. "System.IO.FileSystem": "4.3.0",
  1482. "System.IO.FileSystem.Primitives": "4.3.0",
  1483. "System.Linq": "4.3.0",
  1484. "System.Linq.Expressions": "4.3.0",
  1485. "System.Net.Http": "4.3.0",
  1486. "System.Net.Primitives": "4.3.0",
  1487. "System.Net.Sockets": "4.3.0",
  1488. "System.ObjectModel": "4.3.0",
  1489. "System.Reflection": "4.3.0",
  1490. "System.Reflection.Extensions": "4.3.0",
  1491. "System.Reflection.Primitives": "4.3.0",
  1492. "System.Resources.ResourceManager": "4.3.0",
  1493. "System.Runtime": "4.3.0",
  1494. "System.Runtime.Extensions": "4.3.0",
  1495. "System.Runtime.Handles": "4.3.0",
  1496. "System.Runtime.InteropServices": "4.3.0",
  1497. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1498. "System.Runtime.Numerics": "4.3.0",
  1499. "System.Security.Cryptography.Algorithms": "4.3.0",
  1500. "System.Security.Cryptography.Encoding": "4.3.0",
  1501. "System.Security.Cryptography.Primitives": "4.3.0",
  1502. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1503. "System.Text.Encoding": "4.3.0",
  1504. "System.Text.Encoding.Extensions": "4.3.0",
  1505. "System.Text.RegularExpressions": "4.3.0",
  1506. "System.Threading": "4.3.0",
  1507. "System.Threading.Tasks": "4.3.0",
  1508. "System.Threading.Timer": "4.3.0",
  1509. "System.Xml.ReaderWriter": "4.3.0",
  1510. "System.Xml.XDocument": "4.3.0"
  1511. }
  1512. },
  1513. "Newtonsoft.Json/13.0.1": {
  1514. "type": "package",
  1515. "compile": {
  1516. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1517. "related": ".xml"
  1518. }
  1519. },
  1520. "runtime": {
  1521. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1522. "related": ".xml"
  1523. }
  1524. }
  1525. },
  1526. "Nito.AsyncEx.Coordination/5.0.0": {
  1527. "type": "package",
  1528. "dependencies": {
  1529. "Nito.AsyncEx.Tasks": "5.0.0",
  1530. "Nito.Collections.Deque": "1.0.4",
  1531. "Nito.Disposables": "2.0.0"
  1532. },
  1533. "compile": {
  1534. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1535. "related": ".xml"
  1536. }
  1537. },
  1538. "runtime": {
  1539. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1540. "related": ".xml"
  1541. }
  1542. }
  1543. },
  1544. "Nito.AsyncEx.Tasks/5.0.0": {
  1545. "type": "package",
  1546. "dependencies": {
  1547. "Nito.Disposables": "2.0.0"
  1548. },
  1549. "compile": {
  1550. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1551. "related": ".xml"
  1552. }
  1553. },
  1554. "runtime": {
  1555. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1556. "related": ".xml"
  1557. }
  1558. }
  1559. },
  1560. "Nito.Collections.Deque/1.0.4": {
  1561. "type": "package",
  1562. "compile": {
  1563. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1564. "related": ".xml"
  1565. }
  1566. },
  1567. "runtime": {
  1568. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1569. "related": ".xml"
  1570. }
  1571. }
  1572. },
  1573. "Nito.Disposables/2.0.0": {
  1574. "type": "package",
  1575. "dependencies": {
  1576. "System.Collections.Immutable": "1.4.0"
  1577. },
  1578. "compile": {
  1579. "lib/netstandard2.0/Nito.Disposables.dll": {
  1580. "related": ".pdb;.xml"
  1581. }
  1582. },
  1583. "runtime": {
  1584. "lib/netstandard2.0/Nito.Disposables.dll": {
  1585. "related": ".pdb;.xml"
  1586. }
  1587. }
  1588. },
  1589. "NLog/4.7.7": {
  1590. "type": "package",
  1591. "compile": {
  1592. "lib/netstandard2.0/NLog.dll": {
  1593. "related": ".xml"
  1594. }
  1595. },
  1596. "runtime": {
  1597. "lib/netstandard2.0/NLog.dll": {
  1598. "related": ".xml"
  1599. }
  1600. }
  1601. },
  1602. "NodaTime/2.4.7": {
  1603. "type": "package",
  1604. "compile": {
  1605. "lib/netstandard2.0/NodaTime.dll": {
  1606. "related": ".pdb;.xml"
  1607. }
  1608. },
  1609. "runtime": {
  1610. "lib/netstandard2.0/NodaTime.dll": {
  1611. "related": ".pdb;.xml"
  1612. }
  1613. }
  1614. },
  1615. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1619. "MySqlConnector": "1.1.0"
  1620. },
  1621. "compile": {
  1622. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1623. "related": ".xml"
  1624. }
  1625. },
  1626. "runtime": {
  1627. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1628. "related": ".xml"
  1629. }
  1630. }
  1631. },
  1632. "QRCoder/1.4.3": {
  1633. "type": "package",
  1634. "dependencies": {
  1635. "System.Drawing.Common": "5.0.3"
  1636. },
  1637. "compile": {
  1638. "lib/net5.0/QRCoder.dll": {}
  1639. },
  1640. "runtime": {
  1641. "lib/net5.0/QRCoder.dll": {}
  1642. }
  1643. },
  1644. "Quartz/3.3.3": {
  1645. "type": "package",
  1646. "dependencies": {
  1647. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1648. "System.Configuration.ConfigurationManager": "4.7.0",
  1649. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1650. },
  1651. "compile": {
  1652. "lib/netstandard2.0/Quartz.dll": {
  1653. "related": ".xml"
  1654. }
  1655. },
  1656. "runtime": {
  1657. "lib/netstandard2.0/Quartz.dll": {
  1658. "related": ".xml"
  1659. }
  1660. }
  1661. },
  1662. "RabbitMQ.Client/6.8.1": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "System.Memory": "4.5.5",
  1666. "System.Threading.Channels": "7.0.0"
  1667. },
  1668. "compile": {
  1669. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1670. "related": ".xml"
  1671. }
  1672. },
  1673. "runtime": {
  1674. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1675. "related": ".xml"
  1676. }
  1677. }
  1678. },
  1679. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1680. "type": "package",
  1681. "runtimeTargets": {
  1682. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1683. "assetType": "native",
  1684. "rid": "debian.8-x64"
  1685. }
  1686. }
  1687. },
  1688. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1689. "type": "package",
  1690. "runtimeTargets": {
  1691. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1692. "assetType": "native",
  1693. "rid": "fedora.23-x64"
  1694. }
  1695. }
  1696. },
  1697. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1698. "type": "package",
  1699. "runtimeTargets": {
  1700. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1701. "assetType": "native",
  1702. "rid": "fedora.24-x64"
  1703. }
  1704. }
  1705. },
  1706. "runtime.native.System/4.3.0": {
  1707. "type": "package",
  1708. "dependencies": {
  1709. "Microsoft.NETCore.Platforms": "1.1.0",
  1710. "Microsoft.NETCore.Targets": "1.1.0"
  1711. },
  1712. "compile": {
  1713. "lib/netstandard1.0/_._": {}
  1714. },
  1715. "runtime": {
  1716. "lib/netstandard1.0/_._": {}
  1717. }
  1718. },
  1719. "runtime.native.System.IO.Compression/4.3.0": {
  1720. "type": "package",
  1721. "dependencies": {
  1722. "Microsoft.NETCore.Platforms": "1.1.0",
  1723. "Microsoft.NETCore.Targets": "1.1.0"
  1724. },
  1725. "compile": {
  1726. "lib/netstandard1.0/_._": {}
  1727. },
  1728. "runtime": {
  1729. "lib/netstandard1.0/_._": {}
  1730. }
  1731. },
  1732. "runtime.native.System.Net.Http/4.3.0": {
  1733. "type": "package",
  1734. "dependencies": {
  1735. "Microsoft.NETCore.Platforms": "1.1.0",
  1736. "Microsoft.NETCore.Targets": "1.1.0"
  1737. },
  1738. "compile": {
  1739. "lib/netstandard1.0/_._": {}
  1740. },
  1741. "runtime": {
  1742. "lib/netstandard1.0/_._": {}
  1743. }
  1744. },
  1745. "runtime.native.System.Net.Security/4.3.0": {
  1746. "type": "package",
  1747. "dependencies": {
  1748. "Microsoft.NETCore.Platforms": "1.1.0",
  1749. "Microsoft.NETCore.Targets": "1.1.0"
  1750. },
  1751. "compile": {
  1752. "lib/netstandard1.0/_._": {}
  1753. },
  1754. "runtime": {
  1755. "lib/netstandard1.0/_._": {}
  1756. }
  1757. },
  1758. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1759. "type": "package",
  1760. "dependencies": {
  1761. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1762. },
  1763. "compile": {
  1764. "lib/netstandard1.0/_._": {}
  1765. },
  1766. "runtime": {
  1767. "lib/netstandard1.0/_._": {}
  1768. }
  1769. },
  1770. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1771. "type": "package",
  1772. "dependencies": {
  1773. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1774. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1775. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1776. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1777. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1778. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1779. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1780. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1781. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1782. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1783. },
  1784. "compile": {
  1785. "lib/netstandard1.0/_._": {}
  1786. },
  1787. "runtime": {
  1788. "lib/netstandard1.0/_._": {}
  1789. }
  1790. },
  1791. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1792. "type": "package",
  1793. "runtimeTargets": {
  1794. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1795. "assetType": "native",
  1796. "rid": "opensuse.13.2-x64"
  1797. }
  1798. }
  1799. },
  1800. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1801. "type": "package",
  1802. "runtimeTargets": {
  1803. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1804. "assetType": "native",
  1805. "rid": "opensuse.42.1-x64"
  1806. }
  1807. }
  1808. },
  1809. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1810. "type": "package",
  1811. "runtimeTargets": {
  1812. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1813. "assetType": "native",
  1814. "rid": "osx.10.10-x64"
  1815. }
  1816. }
  1817. },
  1818. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1819. "type": "package",
  1820. "runtimeTargets": {
  1821. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1822. "assetType": "native",
  1823. "rid": "osx.10.10-x64"
  1824. }
  1825. }
  1826. },
  1827. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1828. "type": "package",
  1829. "runtimeTargets": {
  1830. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1831. "assetType": "native",
  1832. "rid": "rhel.7-x64"
  1833. }
  1834. }
  1835. },
  1836. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1837. "type": "package",
  1838. "runtimeTargets": {
  1839. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1840. "assetType": "native",
  1841. "rid": "ubuntu.14.04-x64"
  1842. }
  1843. }
  1844. },
  1845. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1846. "type": "package",
  1847. "runtimeTargets": {
  1848. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1849. "assetType": "native",
  1850. "rid": "ubuntu.16.04-x64"
  1851. }
  1852. }
  1853. },
  1854. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1855. "type": "package",
  1856. "runtimeTargets": {
  1857. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1858. "assetType": "native",
  1859. "rid": "ubuntu.16.10-x64"
  1860. }
  1861. }
  1862. },
  1863. "Serilog/2.11.0": {
  1864. "type": "package",
  1865. "compile": {
  1866. "lib/net5.0/Serilog.dll": {
  1867. "related": ".xml"
  1868. }
  1869. },
  1870. "runtime": {
  1871. "lib/net5.0/Serilog.dll": {
  1872. "related": ".xml"
  1873. }
  1874. }
  1875. },
  1876. "Serilog.Sinks.Console/4.0.1": {
  1877. "type": "package",
  1878. "dependencies": {
  1879. "Serilog": "2.10.0"
  1880. },
  1881. "compile": {
  1882. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1883. "related": ".xml"
  1884. }
  1885. },
  1886. "runtime": {
  1887. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1888. "related": ".xml"
  1889. }
  1890. }
  1891. },
  1892. "Serilog.Sinks.File/5.0.0": {
  1893. "type": "package",
  1894. "dependencies": {
  1895. "Serilog": "2.10.0"
  1896. },
  1897. "compile": {
  1898. "lib/net5.0/Serilog.Sinks.File.dll": {
  1899. "related": ".pdb;.xml"
  1900. }
  1901. },
  1902. "runtime": {
  1903. "lib/net5.0/Serilog.Sinks.File.dll": {
  1904. "related": ".pdb;.xml"
  1905. }
  1906. }
  1907. },
  1908. "SixLabors.ImageSharp/2.1.6": {
  1909. "type": "package",
  1910. "dependencies": {
  1911. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1912. "System.Text.Encoding.CodePages": "5.0.0"
  1913. },
  1914. "compile": {
  1915. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1916. "related": ".xml"
  1917. }
  1918. },
  1919. "runtime": {
  1920. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1921. "related": ".xml"
  1922. }
  1923. }
  1924. },
  1925. "SSH.NET/2020.0.0-beta1": {
  1926. "type": "package",
  1927. "dependencies": {
  1928. "SshNet.Security.Cryptography": "[1.3.0]"
  1929. },
  1930. "compile": {
  1931. "lib/netstandard2.0/Renci.SshNet.dll": {
  1932. "related": ".xml"
  1933. }
  1934. },
  1935. "runtime": {
  1936. "lib/netstandard2.0/Renci.SshNet.dll": {
  1937. "related": ".xml"
  1938. }
  1939. }
  1940. },
  1941. "SshNet.Security.Cryptography/1.3.0": {
  1942. "type": "package",
  1943. "compile": {
  1944. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1945. "related": ".xml"
  1946. }
  1947. },
  1948. "runtime": {
  1949. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1950. "related": ".xml"
  1951. }
  1952. }
  1953. },
  1954. "StackExchange.Redis/1.2.4": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "NETStandard.Library": "1.6.1",
  1958. "System.Collections": "4.3.0",
  1959. "System.Collections.Concurrent": "4.3.0",
  1960. "System.Collections.NonGeneric": "4.3.0",
  1961. "System.Diagnostics.Tools": "4.3.0",
  1962. "System.IO.Compression": "4.3.0",
  1963. "System.IO.FileSystem": "4.3.0",
  1964. "System.Linq": "4.3.0",
  1965. "System.Net.NameResolution": "4.3.0",
  1966. "System.Net.Security": "4.3.0",
  1967. "System.Net.Sockets": "4.3.0",
  1968. "System.Reflection.Emit": "4.3.0",
  1969. "System.Reflection.Emit.Lightweight": "4.3.0",
  1970. "System.Reflection.TypeExtensions": "4.3.0",
  1971. "System.Runtime.Extensions": "4.3.0",
  1972. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1973. "System.Security.Cryptography.Algorithms": "4.3.0",
  1974. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1975. "System.Text.RegularExpressions": "4.3.0",
  1976. "System.Threading": "4.3.0",
  1977. "System.Threading.Thread": "4.3.0",
  1978. "System.Threading.ThreadPool": "4.3.0",
  1979. "System.Threading.Timer": "4.3.0"
  1980. },
  1981. "compile": {
  1982. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1983. "related": ".xml"
  1984. }
  1985. },
  1986. "runtime": {
  1987. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1988. "related": ".xml"
  1989. }
  1990. }
  1991. },
  1992. "System.AppContext/4.3.0": {
  1993. "type": "package",
  1994. "dependencies": {
  1995. "System.Runtime": "4.3.0"
  1996. },
  1997. "compile": {
  1998. "ref/netstandard1.6/System.AppContext.dll": {
  1999. "related": ".xml"
  2000. }
  2001. },
  2002. "runtime": {
  2003. "lib/netstandard1.6/System.AppContext.dll": {}
  2004. }
  2005. },
  2006. "System.Buffers/4.5.1": {
  2007. "type": "package",
  2008. "compile": {
  2009. "ref/netcoreapp2.0/_._": {}
  2010. },
  2011. "runtime": {
  2012. "lib/netcoreapp2.0/_._": {}
  2013. }
  2014. },
  2015. "System.Collections/4.3.0": {
  2016. "type": "package",
  2017. "dependencies": {
  2018. "Microsoft.NETCore.Platforms": "1.1.0",
  2019. "Microsoft.NETCore.Targets": "1.1.0",
  2020. "System.Runtime": "4.3.0"
  2021. },
  2022. "compile": {
  2023. "ref/netstandard1.3/System.Collections.dll": {
  2024. "related": ".xml"
  2025. }
  2026. }
  2027. },
  2028. "System.Collections.Concurrent/4.3.0": {
  2029. "type": "package",
  2030. "dependencies": {
  2031. "System.Collections": "4.3.0",
  2032. "System.Diagnostics.Debug": "4.3.0",
  2033. "System.Diagnostics.Tracing": "4.3.0",
  2034. "System.Globalization": "4.3.0",
  2035. "System.Reflection": "4.3.0",
  2036. "System.Resources.ResourceManager": "4.3.0",
  2037. "System.Runtime": "4.3.0",
  2038. "System.Runtime.Extensions": "4.3.0",
  2039. "System.Threading": "4.3.0",
  2040. "System.Threading.Tasks": "4.3.0"
  2041. },
  2042. "compile": {
  2043. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  2044. "related": ".xml"
  2045. }
  2046. },
  2047. "runtime": {
  2048. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2049. }
  2050. },
  2051. "System.Collections.Immutable/5.0.0": {
  2052. "type": "package",
  2053. "compile": {
  2054. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2055. "related": ".xml"
  2056. }
  2057. },
  2058. "runtime": {
  2059. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2060. "related": ".xml"
  2061. }
  2062. }
  2063. },
  2064. "System.Collections.NonGeneric/4.3.0": {
  2065. "type": "package",
  2066. "dependencies": {
  2067. "System.Diagnostics.Debug": "4.3.0",
  2068. "System.Globalization": "4.3.0",
  2069. "System.Resources.ResourceManager": "4.3.0",
  2070. "System.Runtime": "4.3.0",
  2071. "System.Runtime.Extensions": "4.3.0",
  2072. "System.Threading": "4.3.0"
  2073. },
  2074. "compile": {
  2075. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  2076. "related": ".xml"
  2077. }
  2078. },
  2079. "runtime": {
  2080. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2081. }
  2082. },
  2083. "System.Collections.Specialized/4.3.0": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "System.Collections.NonGeneric": "4.3.0",
  2087. "System.Globalization": "4.3.0",
  2088. "System.Globalization.Extensions": "4.3.0",
  2089. "System.Resources.ResourceManager": "4.3.0",
  2090. "System.Runtime": "4.3.0",
  2091. "System.Runtime.Extensions": "4.3.0",
  2092. "System.Threading": "4.3.0"
  2093. },
  2094. "compile": {
  2095. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  2096. "related": ".xml"
  2097. }
  2098. },
  2099. "runtime": {
  2100. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  2101. }
  2102. },
  2103. "System.ComponentModel/4.3.0": {
  2104. "type": "package",
  2105. "dependencies": {
  2106. "System.Runtime": "4.3.0"
  2107. },
  2108. "compile": {
  2109. "ref/netstandard1.0/System.ComponentModel.dll": {
  2110. "related": ".xml"
  2111. }
  2112. },
  2113. "runtime": {
  2114. "lib/netstandard1.3/System.ComponentModel.dll": {}
  2115. }
  2116. },
  2117. "System.ComponentModel.Annotations/5.0.0": {
  2118. "type": "package",
  2119. "compile": {
  2120. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2121. "related": ".xml"
  2122. }
  2123. },
  2124. "runtime": {
  2125. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2126. "related": ".xml"
  2127. }
  2128. }
  2129. },
  2130. "System.ComponentModel.EventBasedAsync/4.3.0": {
  2131. "type": "package",
  2132. "dependencies": {
  2133. "System.Resources.ResourceManager": "4.3.0",
  2134. "System.Runtime": "4.3.0",
  2135. "System.Threading": "4.3.0",
  2136. "System.Threading.Tasks": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  2140. "related": ".xml"
  2141. }
  2142. },
  2143. "runtime": {
  2144. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  2145. }
  2146. },
  2147. "System.ComponentModel.Primitives/4.3.0": {
  2148. "type": "package",
  2149. "dependencies": {
  2150. "System.ComponentModel": "4.3.0",
  2151. "System.Resources.ResourceManager": "4.3.0",
  2152. "System.Runtime": "4.3.0"
  2153. },
  2154. "compile": {
  2155. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  2156. "related": ".xml"
  2157. }
  2158. },
  2159. "runtime": {
  2160. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2161. }
  2162. },
  2163. "System.ComponentModel.TypeConverter/4.3.0": {
  2164. "type": "package",
  2165. "dependencies": {
  2166. "System.Collections": "4.3.0",
  2167. "System.Collections.NonGeneric": "4.3.0",
  2168. "System.Collections.Specialized": "4.3.0",
  2169. "System.ComponentModel": "4.3.0",
  2170. "System.ComponentModel.Primitives": "4.3.0",
  2171. "System.Globalization": "4.3.0",
  2172. "System.Linq": "4.3.0",
  2173. "System.Reflection": "4.3.0",
  2174. "System.Reflection.Extensions": "4.3.0",
  2175. "System.Reflection.Primitives": "4.3.0",
  2176. "System.Reflection.TypeExtensions": "4.3.0",
  2177. "System.Resources.ResourceManager": "4.3.0",
  2178. "System.Runtime": "4.3.0",
  2179. "System.Runtime.Extensions": "4.3.0",
  2180. "System.Threading": "4.3.0"
  2181. },
  2182. "compile": {
  2183. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  2184. "related": ".xml"
  2185. }
  2186. },
  2187. "runtime": {
  2188. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  2189. }
  2190. },
  2191. "System.Configuration.ConfigurationManager/4.7.0": {
  2192. "type": "package",
  2193. "dependencies": {
  2194. "System.Security.Cryptography.ProtectedData": "4.7.0",
  2195. "System.Security.Permissions": "4.7.0"
  2196. },
  2197. "compile": {
  2198. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2199. "related": ".xml"
  2200. }
  2201. },
  2202. "runtime": {
  2203. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2204. "related": ".xml"
  2205. }
  2206. }
  2207. },
  2208. "System.Console/4.3.0": {
  2209. "type": "package",
  2210. "dependencies": {
  2211. "Microsoft.NETCore.Platforms": "1.1.0",
  2212. "Microsoft.NETCore.Targets": "1.1.0",
  2213. "System.IO": "4.3.0",
  2214. "System.Runtime": "4.3.0",
  2215. "System.Text.Encoding": "4.3.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard1.3/System.Console.dll": {
  2219. "related": ".xml"
  2220. }
  2221. }
  2222. },
  2223. "System.Diagnostics.Debug/4.3.0": {
  2224. "type": "package",
  2225. "dependencies": {
  2226. "Microsoft.NETCore.Platforms": "1.1.0",
  2227. "Microsoft.NETCore.Targets": "1.1.0",
  2228. "System.Runtime": "4.3.0"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2232. "related": ".xml"
  2233. }
  2234. }
  2235. },
  2236. "System.Diagnostics.DiagnosticSource/5.0.0": {
  2237. "type": "package",
  2238. "compile": {
  2239. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2240. "related": ".xml"
  2241. }
  2242. },
  2243. "runtime": {
  2244. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2245. "related": ".xml"
  2246. }
  2247. }
  2248. },
  2249. "System.Diagnostics.Tools/4.3.0": {
  2250. "type": "package",
  2251. "dependencies": {
  2252. "Microsoft.NETCore.Platforms": "1.1.0",
  2253. "Microsoft.NETCore.Targets": "1.1.0",
  2254. "System.Runtime": "4.3.0"
  2255. },
  2256. "compile": {
  2257. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2258. "related": ".xml"
  2259. }
  2260. }
  2261. },
  2262. "System.Diagnostics.TraceSource/4.3.0": {
  2263. "type": "package",
  2264. "dependencies": {
  2265. "Microsoft.NETCore.Platforms": "1.1.0",
  2266. "System.Collections": "4.3.0",
  2267. "System.Diagnostics.Debug": "4.3.0",
  2268. "System.Globalization": "4.3.0",
  2269. "System.Resources.ResourceManager": "4.3.0",
  2270. "System.Runtime": "4.3.0",
  2271. "System.Runtime.Extensions": "4.3.0",
  2272. "System.Threading": "4.3.0",
  2273. "runtime.native.System": "4.3.0"
  2274. },
  2275. "compile": {
  2276. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2277. "related": ".xml"
  2278. }
  2279. },
  2280. "runtimeTargets": {
  2281. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2282. "assetType": "runtime",
  2283. "rid": "unix"
  2284. },
  2285. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2286. "assetType": "runtime",
  2287. "rid": "win"
  2288. }
  2289. }
  2290. },
  2291. "System.Diagnostics.Tracing/4.3.0": {
  2292. "type": "package",
  2293. "dependencies": {
  2294. "Microsoft.NETCore.Platforms": "1.1.0",
  2295. "Microsoft.NETCore.Targets": "1.1.0",
  2296. "System.Runtime": "4.3.0"
  2297. },
  2298. "compile": {
  2299. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2300. "related": ".xml"
  2301. }
  2302. }
  2303. },
  2304. "System.Drawing.Common/5.0.3": {
  2305. "type": "package",
  2306. "dependencies": {
  2307. "Microsoft.Win32.SystemEvents": "5.0.0"
  2308. },
  2309. "compile": {
  2310. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  2311. "related": ".xml"
  2312. }
  2313. },
  2314. "runtime": {
  2315. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2316. "related": ".xml"
  2317. }
  2318. },
  2319. "runtimeTargets": {
  2320. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2321. "assetType": "runtime",
  2322. "rid": "unix"
  2323. },
  2324. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2325. "assetType": "runtime",
  2326. "rid": "win"
  2327. }
  2328. }
  2329. },
  2330. "System.Dynamic.Runtime/4.3.0": {
  2331. "type": "package",
  2332. "dependencies": {
  2333. "System.Collections": "4.3.0",
  2334. "System.Diagnostics.Debug": "4.3.0",
  2335. "System.Linq": "4.3.0",
  2336. "System.Linq.Expressions": "4.3.0",
  2337. "System.ObjectModel": "4.3.0",
  2338. "System.Reflection": "4.3.0",
  2339. "System.Reflection.Emit": "4.3.0",
  2340. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2341. "System.Reflection.Primitives": "4.3.0",
  2342. "System.Reflection.TypeExtensions": "4.3.0",
  2343. "System.Resources.ResourceManager": "4.3.0",
  2344. "System.Runtime": "4.3.0",
  2345. "System.Runtime.Extensions": "4.3.0",
  2346. "System.Threading": "4.3.0"
  2347. },
  2348. "compile": {
  2349. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2350. "related": ".xml"
  2351. }
  2352. },
  2353. "runtime": {
  2354. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2355. }
  2356. },
  2357. "System.Globalization/4.3.0": {
  2358. "type": "package",
  2359. "dependencies": {
  2360. "Microsoft.NETCore.Platforms": "1.1.0",
  2361. "Microsoft.NETCore.Targets": "1.1.0",
  2362. "System.Runtime": "4.3.0"
  2363. },
  2364. "compile": {
  2365. "ref/netstandard1.3/System.Globalization.dll": {
  2366. "related": ".xml"
  2367. }
  2368. }
  2369. },
  2370. "System.Globalization.Calendars/4.3.0": {
  2371. "type": "package",
  2372. "dependencies": {
  2373. "Microsoft.NETCore.Platforms": "1.1.0",
  2374. "Microsoft.NETCore.Targets": "1.1.0",
  2375. "System.Globalization": "4.3.0",
  2376. "System.Runtime": "4.3.0"
  2377. },
  2378. "compile": {
  2379. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2380. "related": ".xml"
  2381. }
  2382. }
  2383. },
  2384. "System.Globalization.Extensions/4.3.0": {
  2385. "type": "package",
  2386. "dependencies": {
  2387. "Microsoft.NETCore.Platforms": "1.1.0",
  2388. "System.Globalization": "4.3.0",
  2389. "System.Resources.ResourceManager": "4.3.0",
  2390. "System.Runtime": "4.3.0",
  2391. "System.Runtime.Extensions": "4.3.0",
  2392. "System.Runtime.InteropServices": "4.3.0"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard1.3/_._": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtimeTargets": {
  2400. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2401. "assetType": "runtime",
  2402. "rid": "unix"
  2403. },
  2404. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2405. "assetType": "runtime",
  2406. "rid": "win"
  2407. }
  2408. }
  2409. },
  2410. "System.IO/4.3.0": {
  2411. "type": "package",
  2412. "dependencies": {
  2413. "Microsoft.NETCore.Platforms": "1.1.0",
  2414. "Microsoft.NETCore.Targets": "1.1.0",
  2415. "System.Runtime": "4.3.0",
  2416. "System.Text.Encoding": "4.3.0",
  2417. "System.Threading.Tasks": "4.3.0"
  2418. },
  2419. "compile": {
  2420. "ref/netstandard1.5/System.IO.dll": {
  2421. "related": ".xml"
  2422. }
  2423. }
  2424. },
  2425. "System.IO.Compression/4.3.0": {
  2426. "type": "package",
  2427. "dependencies": {
  2428. "Microsoft.NETCore.Platforms": "1.1.0",
  2429. "System.Buffers": "4.3.0",
  2430. "System.Collections": "4.3.0",
  2431. "System.Diagnostics.Debug": "4.3.0",
  2432. "System.IO": "4.3.0",
  2433. "System.Resources.ResourceManager": "4.3.0",
  2434. "System.Runtime": "4.3.0",
  2435. "System.Runtime.Extensions": "4.3.0",
  2436. "System.Runtime.Handles": "4.3.0",
  2437. "System.Runtime.InteropServices": "4.3.0",
  2438. "System.Text.Encoding": "4.3.0",
  2439. "System.Threading": "4.3.0",
  2440. "System.Threading.Tasks": "4.3.0",
  2441. "runtime.native.System": "4.3.0",
  2442. "runtime.native.System.IO.Compression": "4.3.0"
  2443. },
  2444. "compile": {
  2445. "ref/netstandard1.3/System.IO.Compression.dll": {
  2446. "related": ".xml"
  2447. }
  2448. },
  2449. "runtimeTargets": {
  2450. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2451. "assetType": "runtime",
  2452. "rid": "unix"
  2453. },
  2454. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2455. "assetType": "runtime",
  2456. "rid": "win"
  2457. }
  2458. }
  2459. },
  2460. "System.IO.Compression.ZipFile/4.3.0": {
  2461. "type": "package",
  2462. "dependencies": {
  2463. "System.Buffers": "4.3.0",
  2464. "System.IO": "4.3.0",
  2465. "System.IO.Compression": "4.3.0",
  2466. "System.IO.FileSystem": "4.3.0",
  2467. "System.IO.FileSystem.Primitives": "4.3.0",
  2468. "System.Resources.ResourceManager": "4.3.0",
  2469. "System.Runtime": "4.3.0",
  2470. "System.Runtime.Extensions": "4.3.0",
  2471. "System.Text.Encoding": "4.3.0"
  2472. },
  2473. "compile": {
  2474. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2475. "related": ".xml"
  2476. }
  2477. },
  2478. "runtime": {
  2479. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2480. }
  2481. },
  2482. "System.IO.FileSystem/4.3.0": {
  2483. "type": "package",
  2484. "dependencies": {
  2485. "Microsoft.NETCore.Platforms": "1.1.0",
  2486. "Microsoft.NETCore.Targets": "1.1.0",
  2487. "System.IO": "4.3.0",
  2488. "System.IO.FileSystem.Primitives": "4.3.0",
  2489. "System.Runtime": "4.3.0",
  2490. "System.Runtime.Handles": "4.3.0",
  2491. "System.Text.Encoding": "4.3.0",
  2492. "System.Threading.Tasks": "4.3.0"
  2493. },
  2494. "compile": {
  2495. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2496. "related": ".xml"
  2497. }
  2498. }
  2499. },
  2500. "System.IO.FileSystem.Primitives/4.3.0": {
  2501. "type": "package",
  2502. "dependencies": {
  2503. "System.Runtime": "4.3.0"
  2504. },
  2505. "compile": {
  2506. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2507. "related": ".xml"
  2508. }
  2509. },
  2510. "runtime": {
  2511. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2512. }
  2513. },
  2514. "System.IO.Pipelines/5.0.0": {
  2515. "type": "package",
  2516. "compile": {
  2517. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2518. "related": ".xml"
  2519. }
  2520. },
  2521. "runtime": {
  2522. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2523. "related": ".xml"
  2524. }
  2525. }
  2526. },
  2527. "System.Linq/4.3.0": {
  2528. "type": "package",
  2529. "dependencies": {
  2530. "System.Collections": "4.3.0",
  2531. "System.Diagnostics.Debug": "4.3.0",
  2532. "System.Resources.ResourceManager": "4.3.0",
  2533. "System.Runtime": "4.3.0",
  2534. "System.Runtime.Extensions": "4.3.0"
  2535. },
  2536. "compile": {
  2537. "ref/netstandard1.6/System.Linq.dll": {
  2538. "related": ".xml"
  2539. }
  2540. },
  2541. "runtime": {
  2542. "lib/netstandard1.6/System.Linq.dll": {}
  2543. }
  2544. },
  2545. "System.Linq.Expressions/4.3.0": {
  2546. "type": "package",
  2547. "dependencies": {
  2548. "System.Collections": "4.3.0",
  2549. "System.Diagnostics.Debug": "4.3.0",
  2550. "System.Globalization": "4.3.0",
  2551. "System.IO": "4.3.0",
  2552. "System.Linq": "4.3.0",
  2553. "System.ObjectModel": "4.3.0",
  2554. "System.Reflection": "4.3.0",
  2555. "System.Reflection.Emit": "4.3.0",
  2556. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2557. "System.Reflection.Emit.Lightweight": "4.3.0",
  2558. "System.Reflection.Extensions": "4.3.0",
  2559. "System.Reflection.Primitives": "4.3.0",
  2560. "System.Reflection.TypeExtensions": "4.3.0",
  2561. "System.Resources.ResourceManager": "4.3.0",
  2562. "System.Runtime": "4.3.0",
  2563. "System.Runtime.Extensions": "4.3.0",
  2564. "System.Threading": "4.3.0"
  2565. },
  2566. "compile": {
  2567. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2568. "related": ".xml"
  2569. }
  2570. },
  2571. "runtime": {
  2572. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2573. }
  2574. },
  2575. "System.Memory/4.5.5": {
  2576. "type": "package",
  2577. "compile": {
  2578. "ref/netcoreapp2.1/_._": {}
  2579. },
  2580. "runtime": {
  2581. "lib/netcoreapp2.1/_._": {}
  2582. }
  2583. },
  2584. "System.Net.Http/4.3.2": {
  2585. "type": "package",
  2586. "dependencies": {
  2587. "Microsoft.NETCore.Platforms": "1.1.0",
  2588. "System.Collections": "4.3.0",
  2589. "System.Diagnostics.Debug": "4.3.0",
  2590. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2591. "System.Diagnostics.Tracing": "4.3.0",
  2592. "System.Globalization": "4.3.0",
  2593. "System.Globalization.Extensions": "4.3.0",
  2594. "System.IO": "4.3.0",
  2595. "System.IO.FileSystem": "4.3.0",
  2596. "System.Net.Primitives": "4.3.0",
  2597. "System.Resources.ResourceManager": "4.3.0",
  2598. "System.Runtime": "4.3.0",
  2599. "System.Runtime.Extensions": "4.3.0",
  2600. "System.Runtime.Handles": "4.3.0",
  2601. "System.Runtime.InteropServices": "4.3.0",
  2602. "System.Security.Cryptography.Algorithms": "4.3.0",
  2603. "System.Security.Cryptography.Encoding": "4.3.0",
  2604. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2605. "System.Security.Cryptography.Primitives": "4.3.0",
  2606. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2607. "System.Text.Encoding": "4.3.0",
  2608. "System.Threading": "4.3.0",
  2609. "System.Threading.Tasks": "4.3.0",
  2610. "runtime.native.System": "4.3.0",
  2611. "runtime.native.System.Net.Http": "4.3.0",
  2612. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2613. },
  2614. "compile": {
  2615. "ref/netstandard1.3/System.Net.Http.dll": {}
  2616. },
  2617. "runtimeTargets": {
  2618. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2619. "assetType": "runtime",
  2620. "rid": "unix"
  2621. },
  2622. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2623. "assetType": "runtime",
  2624. "rid": "win"
  2625. }
  2626. }
  2627. },
  2628. "System.Net.NameResolution/4.3.0": {
  2629. "type": "package",
  2630. "dependencies": {
  2631. "Microsoft.NETCore.Platforms": "1.1.0",
  2632. "System.Collections": "4.3.0",
  2633. "System.Diagnostics.Tracing": "4.3.0",
  2634. "System.Globalization": "4.3.0",
  2635. "System.Net.Primitives": "4.3.0",
  2636. "System.Resources.ResourceManager": "4.3.0",
  2637. "System.Runtime": "4.3.0",
  2638. "System.Runtime.Extensions": "4.3.0",
  2639. "System.Runtime.Handles": "4.3.0",
  2640. "System.Runtime.InteropServices": "4.3.0",
  2641. "System.Security.Principal.Windows": "4.3.0",
  2642. "System.Threading": "4.3.0",
  2643. "System.Threading.Tasks": "4.3.0",
  2644. "runtime.native.System": "4.3.0"
  2645. },
  2646. "compile": {
  2647. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2648. "related": ".xml"
  2649. }
  2650. },
  2651. "runtimeTargets": {
  2652. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2653. "assetType": "runtime",
  2654. "rid": "unix"
  2655. },
  2656. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2657. "assetType": "runtime",
  2658. "rid": "win"
  2659. }
  2660. }
  2661. },
  2662. "System.Net.Primitives/4.3.0": {
  2663. "type": "package",
  2664. "dependencies": {
  2665. "Microsoft.NETCore.Platforms": "1.1.0",
  2666. "Microsoft.NETCore.Targets": "1.1.0",
  2667. "System.Runtime": "4.3.0",
  2668. "System.Runtime.Handles": "4.3.0"
  2669. },
  2670. "compile": {
  2671. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2672. "related": ".xml"
  2673. }
  2674. }
  2675. },
  2676. "System.Net.Security/4.3.0": {
  2677. "type": "package",
  2678. "dependencies": {
  2679. "Microsoft.NETCore.Platforms": "1.1.0",
  2680. "Microsoft.Win32.Primitives": "4.3.0",
  2681. "System.Collections": "4.3.0",
  2682. "System.Collections.Concurrent": "4.3.0",
  2683. "System.Diagnostics.Tracing": "4.3.0",
  2684. "System.Globalization": "4.3.0",
  2685. "System.Globalization.Extensions": "4.3.0",
  2686. "System.IO": "4.3.0",
  2687. "System.Net.Primitives": "4.3.0",
  2688. "System.Resources.ResourceManager": "4.3.0",
  2689. "System.Runtime": "4.3.0",
  2690. "System.Runtime.Extensions": "4.3.0",
  2691. "System.Runtime.Handles": "4.3.0",
  2692. "System.Runtime.InteropServices": "4.3.0",
  2693. "System.Security.Claims": "4.3.0",
  2694. "System.Security.Cryptography.Algorithms": "4.3.0",
  2695. "System.Security.Cryptography.Encoding": "4.3.0",
  2696. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2697. "System.Security.Cryptography.Primitives": "4.3.0",
  2698. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2699. "System.Security.Principal": "4.3.0",
  2700. "System.Text.Encoding": "4.3.0",
  2701. "System.Threading": "4.3.0",
  2702. "System.Threading.Tasks": "4.3.0",
  2703. "System.Threading.ThreadPool": "4.3.0",
  2704. "runtime.native.System": "4.3.0",
  2705. "runtime.native.System.Net.Security": "4.3.0",
  2706. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2707. },
  2708. "compile": {
  2709. "ref/netstandard1.3/System.Net.Security.dll": {
  2710. "related": ".xml"
  2711. }
  2712. },
  2713. "runtimeTargets": {
  2714. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2715. "assetType": "runtime",
  2716. "rid": "unix"
  2717. },
  2718. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2719. "assetType": "runtime",
  2720. "rid": "win"
  2721. }
  2722. }
  2723. },
  2724. "System.Net.Sockets/4.3.0": {
  2725. "type": "package",
  2726. "dependencies": {
  2727. "Microsoft.NETCore.Platforms": "1.1.0",
  2728. "Microsoft.NETCore.Targets": "1.1.0",
  2729. "System.IO": "4.3.0",
  2730. "System.Net.Primitives": "4.3.0",
  2731. "System.Runtime": "4.3.0",
  2732. "System.Threading.Tasks": "4.3.0"
  2733. },
  2734. "compile": {
  2735. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2736. "related": ".xml"
  2737. }
  2738. }
  2739. },
  2740. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  2741. "type": "package",
  2742. "compile": {
  2743. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2744. },
  2745. "runtime": {
  2746. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2747. }
  2748. },
  2749. "System.ObjectModel/4.3.0": {
  2750. "type": "package",
  2751. "dependencies": {
  2752. "System.Collections": "4.3.0",
  2753. "System.Diagnostics.Debug": "4.3.0",
  2754. "System.Resources.ResourceManager": "4.3.0",
  2755. "System.Runtime": "4.3.0",
  2756. "System.Threading": "4.3.0"
  2757. },
  2758. "compile": {
  2759. "ref/netstandard1.3/System.ObjectModel.dll": {
  2760. "related": ".xml"
  2761. }
  2762. },
  2763. "runtime": {
  2764. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2765. }
  2766. },
  2767. "System.Reactive/4.4.1": {
  2768. "type": "package",
  2769. "compile": {
  2770. "lib/netcoreapp3.0/_._": {}
  2771. },
  2772. "runtime": {
  2773. "lib/netcoreapp3.0/_._": {}
  2774. },
  2775. "build": {
  2776. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2777. }
  2778. },
  2779. "System.Reflection/4.3.0": {
  2780. "type": "package",
  2781. "dependencies": {
  2782. "Microsoft.NETCore.Platforms": "1.1.0",
  2783. "Microsoft.NETCore.Targets": "1.1.0",
  2784. "System.IO": "4.3.0",
  2785. "System.Reflection.Primitives": "4.3.0",
  2786. "System.Runtime": "4.3.0"
  2787. },
  2788. "compile": {
  2789. "ref/netstandard1.5/System.Reflection.dll": {
  2790. "related": ".xml"
  2791. }
  2792. }
  2793. },
  2794. "System.Reflection.Emit/4.7.0": {
  2795. "type": "package",
  2796. "compile": {
  2797. "ref/netcoreapp2.0/_._": {}
  2798. },
  2799. "runtime": {
  2800. "lib/netcoreapp2.0/_._": {}
  2801. }
  2802. },
  2803. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2804. "type": "package",
  2805. "dependencies": {
  2806. "System.Reflection": "4.3.0",
  2807. "System.Reflection.Primitives": "4.3.0",
  2808. "System.Runtime": "4.3.0"
  2809. },
  2810. "compile": {
  2811. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2812. "related": ".xml"
  2813. }
  2814. },
  2815. "runtime": {
  2816. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2817. }
  2818. },
  2819. "System.Reflection.Emit.Lightweight/4.3.0": {
  2820. "type": "package",
  2821. "dependencies": {
  2822. "System.Reflection": "4.3.0",
  2823. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2824. "System.Reflection.Primitives": "4.3.0",
  2825. "System.Runtime": "4.3.0"
  2826. },
  2827. "compile": {
  2828. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2829. "related": ".xml"
  2830. }
  2831. },
  2832. "runtime": {
  2833. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2834. }
  2835. },
  2836. "System.Reflection.Extensions/4.3.0": {
  2837. "type": "package",
  2838. "dependencies": {
  2839. "Microsoft.NETCore.Platforms": "1.1.0",
  2840. "Microsoft.NETCore.Targets": "1.1.0",
  2841. "System.Reflection": "4.3.0",
  2842. "System.Runtime": "4.3.0"
  2843. },
  2844. "compile": {
  2845. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2846. "related": ".xml"
  2847. }
  2848. }
  2849. },
  2850. "System.Reflection.Primitives/4.3.0": {
  2851. "type": "package",
  2852. "dependencies": {
  2853. "Microsoft.NETCore.Platforms": "1.1.0",
  2854. "Microsoft.NETCore.Targets": "1.1.0",
  2855. "System.Runtime": "4.3.0"
  2856. },
  2857. "compile": {
  2858. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2859. "related": ".xml"
  2860. }
  2861. }
  2862. },
  2863. "System.Reflection.TypeExtensions/4.3.0": {
  2864. "type": "package",
  2865. "dependencies": {
  2866. "System.Reflection": "4.3.0",
  2867. "System.Runtime": "4.3.0"
  2868. },
  2869. "compile": {
  2870. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2871. "related": ".xml"
  2872. }
  2873. },
  2874. "runtime": {
  2875. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2876. }
  2877. },
  2878. "System.Resources.ResourceManager/4.3.0": {
  2879. "type": "package",
  2880. "dependencies": {
  2881. "Microsoft.NETCore.Platforms": "1.1.0",
  2882. "Microsoft.NETCore.Targets": "1.1.0",
  2883. "System.Globalization": "4.3.0",
  2884. "System.Reflection": "4.3.0",
  2885. "System.Runtime": "4.3.0"
  2886. },
  2887. "compile": {
  2888. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2889. "related": ".xml"
  2890. }
  2891. }
  2892. },
  2893. "System.Runtime/4.3.0": {
  2894. "type": "package",
  2895. "dependencies": {
  2896. "Microsoft.NETCore.Platforms": "1.1.0",
  2897. "Microsoft.NETCore.Targets": "1.1.0"
  2898. },
  2899. "compile": {
  2900. "ref/netstandard1.5/System.Runtime.dll": {
  2901. "related": ".xml"
  2902. }
  2903. }
  2904. },
  2905. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2906. "type": "package",
  2907. "compile": {
  2908. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2909. "related": ".xml"
  2910. }
  2911. },
  2912. "runtime": {
  2913. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2914. "related": ".xml"
  2915. }
  2916. }
  2917. },
  2918. "System.Runtime.Extensions/4.3.0": {
  2919. "type": "package",
  2920. "dependencies": {
  2921. "Microsoft.NETCore.Platforms": "1.1.0",
  2922. "Microsoft.NETCore.Targets": "1.1.0",
  2923. "System.Runtime": "4.3.0"
  2924. },
  2925. "compile": {
  2926. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2927. "related": ".xml"
  2928. }
  2929. }
  2930. },
  2931. "System.Runtime.Handles/4.3.0": {
  2932. "type": "package",
  2933. "dependencies": {
  2934. "Microsoft.NETCore.Platforms": "1.1.0",
  2935. "Microsoft.NETCore.Targets": "1.1.0",
  2936. "System.Runtime": "4.3.0"
  2937. },
  2938. "compile": {
  2939. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2940. "related": ".xml"
  2941. }
  2942. }
  2943. },
  2944. "System.Runtime.InteropServices/4.3.0": {
  2945. "type": "package",
  2946. "dependencies": {
  2947. "Microsoft.NETCore.Platforms": "1.1.0",
  2948. "Microsoft.NETCore.Targets": "1.1.0",
  2949. "System.Reflection": "4.3.0",
  2950. "System.Reflection.Primitives": "4.3.0",
  2951. "System.Runtime": "4.3.0",
  2952. "System.Runtime.Handles": "4.3.0"
  2953. },
  2954. "compile": {
  2955. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2956. }
  2957. },
  2958. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2959. "type": "package",
  2960. "dependencies": {
  2961. "System.Reflection": "4.3.0",
  2962. "System.Reflection.Extensions": "4.3.0",
  2963. "System.Resources.ResourceManager": "4.3.0",
  2964. "System.Runtime": "4.3.0",
  2965. "System.Runtime.InteropServices": "4.3.0",
  2966. "System.Threading": "4.3.0",
  2967. "runtime.native.System": "4.3.0"
  2968. },
  2969. "compile": {
  2970. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2971. },
  2972. "runtime": {
  2973. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2974. },
  2975. "runtimeTargets": {
  2976. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2977. "assetType": "runtime",
  2978. "rid": "unix"
  2979. },
  2980. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2981. "assetType": "runtime",
  2982. "rid": "win"
  2983. }
  2984. }
  2985. },
  2986. "System.Runtime.Numerics/4.3.0": {
  2987. "type": "package",
  2988. "dependencies": {
  2989. "System.Globalization": "4.3.0",
  2990. "System.Resources.ResourceManager": "4.3.0",
  2991. "System.Runtime": "4.3.0",
  2992. "System.Runtime.Extensions": "4.3.0"
  2993. },
  2994. "compile": {
  2995. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2996. "related": ".xml"
  2997. }
  2998. },
  2999. "runtime": {
  3000. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3001. }
  3002. },
  3003. "System.Runtime.Serialization.Primitives/4.3.0": {
  3004. "type": "package",
  3005. "dependencies": {
  3006. "System.Resources.ResourceManager": "4.3.0",
  3007. "System.Runtime": "4.3.0"
  3008. },
  3009. "compile": {
  3010. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  3011. "related": ".xml"
  3012. }
  3013. },
  3014. "runtime": {
  3015. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3016. }
  3017. },
  3018. "System.Security.AccessControl/4.7.0": {
  3019. "type": "package",
  3020. "dependencies": {
  3021. "Microsoft.NETCore.Platforms": "3.1.0",
  3022. "System.Security.Principal.Windows": "4.7.0"
  3023. },
  3024. "compile": {
  3025. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  3026. "related": ".xml"
  3027. }
  3028. },
  3029. "runtime": {
  3030. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  3031. "related": ".xml"
  3032. }
  3033. },
  3034. "runtimeTargets": {
  3035. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  3036. "assetType": "runtime",
  3037. "rid": "win"
  3038. }
  3039. }
  3040. },
  3041. "System.Security.Claims/4.3.0": {
  3042. "type": "package",
  3043. "dependencies": {
  3044. "System.Collections": "4.3.0",
  3045. "System.Globalization": "4.3.0",
  3046. "System.IO": "4.3.0",
  3047. "System.Resources.ResourceManager": "4.3.0",
  3048. "System.Runtime": "4.3.0",
  3049. "System.Runtime.Extensions": "4.3.0",
  3050. "System.Security.Principal": "4.3.0"
  3051. },
  3052. "compile": {
  3053. "ref/netstandard1.3/_._": {
  3054. "related": ".xml"
  3055. }
  3056. },
  3057. "runtime": {
  3058. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3059. }
  3060. },
  3061. "System.Security.Cryptography.Algorithms/4.3.0": {
  3062. "type": "package",
  3063. "dependencies": {
  3064. "Microsoft.NETCore.Platforms": "1.1.0",
  3065. "System.Collections": "4.3.0",
  3066. "System.IO": "4.3.0",
  3067. "System.Resources.ResourceManager": "4.3.0",
  3068. "System.Runtime": "4.3.0",
  3069. "System.Runtime.Extensions": "4.3.0",
  3070. "System.Runtime.Handles": "4.3.0",
  3071. "System.Runtime.InteropServices": "4.3.0",
  3072. "System.Runtime.Numerics": "4.3.0",
  3073. "System.Security.Cryptography.Encoding": "4.3.0",
  3074. "System.Security.Cryptography.Primitives": "4.3.0",
  3075. "System.Text.Encoding": "4.3.0",
  3076. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3077. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3078. },
  3079. "compile": {
  3080. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3081. },
  3082. "runtimeTargets": {
  3083. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3084. "assetType": "runtime",
  3085. "rid": "osx"
  3086. },
  3087. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3088. "assetType": "runtime",
  3089. "rid": "unix"
  3090. },
  3091. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3092. "assetType": "runtime",
  3093. "rid": "win"
  3094. }
  3095. }
  3096. },
  3097. "System.Security.Cryptography.Cng/4.3.0": {
  3098. "type": "package",
  3099. "dependencies": {
  3100. "Microsoft.NETCore.Platforms": "1.1.0",
  3101. "System.IO": "4.3.0",
  3102. "System.Resources.ResourceManager": "4.3.0",
  3103. "System.Runtime": "4.3.0",
  3104. "System.Runtime.Extensions": "4.3.0",
  3105. "System.Runtime.Handles": "4.3.0",
  3106. "System.Runtime.InteropServices": "4.3.0",
  3107. "System.Security.Cryptography.Algorithms": "4.3.0",
  3108. "System.Security.Cryptography.Encoding": "4.3.0",
  3109. "System.Security.Cryptography.Primitives": "4.3.0",
  3110. "System.Text.Encoding": "4.3.0"
  3111. },
  3112. "compile": {
  3113. "ref/netstandard1.6/_._": {}
  3114. },
  3115. "runtimeTargets": {
  3116. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3117. "assetType": "runtime",
  3118. "rid": "unix"
  3119. },
  3120. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3121. "assetType": "runtime",
  3122. "rid": "win"
  3123. }
  3124. }
  3125. },
  3126. "System.Security.Cryptography.Csp/4.3.0": {
  3127. "type": "package",
  3128. "dependencies": {
  3129. "Microsoft.NETCore.Platforms": "1.1.0",
  3130. "System.IO": "4.3.0",
  3131. "System.Reflection": "4.3.0",
  3132. "System.Resources.ResourceManager": "4.3.0",
  3133. "System.Runtime": "4.3.0",
  3134. "System.Runtime.Extensions": "4.3.0",
  3135. "System.Runtime.Handles": "4.3.0",
  3136. "System.Runtime.InteropServices": "4.3.0",
  3137. "System.Security.Cryptography.Algorithms": "4.3.0",
  3138. "System.Security.Cryptography.Encoding": "4.3.0",
  3139. "System.Security.Cryptography.Primitives": "4.3.0",
  3140. "System.Text.Encoding": "4.3.0",
  3141. "System.Threading": "4.3.0"
  3142. },
  3143. "compile": {
  3144. "ref/netstandard1.3/_._": {}
  3145. },
  3146. "runtimeTargets": {
  3147. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3148. "assetType": "runtime",
  3149. "rid": "unix"
  3150. },
  3151. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3152. "assetType": "runtime",
  3153. "rid": "win"
  3154. }
  3155. }
  3156. },
  3157. "System.Security.Cryptography.Encoding/4.3.0": {
  3158. "type": "package",
  3159. "dependencies": {
  3160. "Microsoft.NETCore.Platforms": "1.1.0",
  3161. "System.Collections": "4.3.0",
  3162. "System.Collections.Concurrent": "4.3.0",
  3163. "System.Linq": "4.3.0",
  3164. "System.Resources.ResourceManager": "4.3.0",
  3165. "System.Runtime": "4.3.0",
  3166. "System.Runtime.Extensions": "4.3.0",
  3167. "System.Runtime.Handles": "4.3.0",
  3168. "System.Runtime.InteropServices": "4.3.0",
  3169. "System.Security.Cryptography.Primitives": "4.3.0",
  3170. "System.Text.Encoding": "4.3.0",
  3171. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3172. },
  3173. "compile": {
  3174. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3175. "related": ".xml"
  3176. }
  3177. },
  3178. "runtimeTargets": {
  3179. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3180. "assetType": "runtime",
  3181. "rid": "unix"
  3182. },
  3183. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3184. "assetType": "runtime",
  3185. "rid": "win"
  3186. }
  3187. }
  3188. },
  3189. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3190. "type": "package",
  3191. "dependencies": {
  3192. "System.Collections": "4.3.0",
  3193. "System.IO": "4.3.0",
  3194. "System.Resources.ResourceManager": "4.3.0",
  3195. "System.Runtime": "4.3.0",
  3196. "System.Runtime.Extensions": "4.3.0",
  3197. "System.Runtime.Handles": "4.3.0",
  3198. "System.Runtime.InteropServices": "4.3.0",
  3199. "System.Runtime.Numerics": "4.3.0",
  3200. "System.Security.Cryptography.Algorithms": "4.3.0",
  3201. "System.Security.Cryptography.Encoding": "4.3.0",
  3202. "System.Security.Cryptography.Primitives": "4.3.0",
  3203. "System.Text.Encoding": "4.3.0",
  3204. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3205. },
  3206. "compile": {
  3207. "ref/netstandard1.6/_._": {}
  3208. },
  3209. "runtime": {
  3210. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3211. },
  3212. "runtimeTargets": {
  3213. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3214. "assetType": "runtime",
  3215. "rid": "unix"
  3216. }
  3217. }
  3218. },
  3219. "System.Security.Cryptography.Primitives/4.3.0": {
  3220. "type": "package",
  3221. "dependencies": {
  3222. "System.Diagnostics.Debug": "4.3.0",
  3223. "System.Globalization": "4.3.0",
  3224. "System.IO": "4.3.0",
  3225. "System.Resources.ResourceManager": "4.3.0",
  3226. "System.Runtime": "4.3.0",
  3227. "System.Threading": "4.3.0",
  3228. "System.Threading.Tasks": "4.3.0"
  3229. },
  3230. "compile": {
  3231. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3232. },
  3233. "runtime": {
  3234. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3235. }
  3236. },
  3237. "System.Security.Cryptography.ProtectedData/4.7.0": {
  3238. "type": "package",
  3239. "compile": {
  3240. "ref/netstandard2.0/_._": {
  3241. "related": ".xml"
  3242. }
  3243. },
  3244. "runtime": {
  3245. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3246. "related": ".xml"
  3247. }
  3248. },
  3249. "runtimeTargets": {
  3250. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3251. "assetType": "runtime",
  3252. "rid": "win"
  3253. }
  3254. }
  3255. },
  3256. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3257. "type": "package",
  3258. "dependencies": {
  3259. "Microsoft.NETCore.Platforms": "1.1.0",
  3260. "System.Collections": "4.3.0",
  3261. "System.Diagnostics.Debug": "4.3.0",
  3262. "System.Globalization": "4.3.0",
  3263. "System.Globalization.Calendars": "4.3.0",
  3264. "System.IO": "4.3.0",
  3265. "System.IO.FileSystem": "4.3.0",
  3266. "System.IO.FileSystem.Primitives": "4.3.0",
  3267. "System.Resources.ResourceManager": "4.3.0",
  3268. "System.Runtime": "4.3.0",
  3269. "System.Runtime.Extensions": "4.3.0",
  3270. "System.Runtime.Handles": "4.3.0",
  3271. "System.Runtime.InteropServices": "4.3.0",
  3272. "System.Runtime.Numerics": "4.3.0",
  3273. "System.Security.Cryptography.Algorithms": "4.3.0",
  3274. "System.Security.Cryptography.Cng": "4.3.0",
  3275. "System.Security.Cryptography.Csp": "4.3.0",
  3276. "System.Security.Cryptography.Encoding": "4.3.0",
  3277. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3278. "System.Security.Cryptography.Primitives": "4.3.0",
  3279. "System.Text.Encoding": "4.3.0",
  3280. "System.Threading": "4.3.0",
  3281. "runtime.native.System": "4.3.0",
  3282. "runtime.native.System.Net.Http": "4.3.0",
  3283. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3284. },
  3285. "compile": {
  3286. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3287. "related": ".xml"
  3288. }
  3289. },
  3290. "runtimeTargets": {
  3291. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3292. "assetType": "runtime",
  3293. "rid": "unix"
  3294. },
  3295. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3296. "assetType": "runtime",
  3297. "rid": "win"
  3298. }
  3299. }
  3300. },
  3301. "System.Security.Permissions/4.7.0": {
  3302. "type": "package",
  3303. "dependencies": {
  3304. "System.Security.AccessControl": "4.7.0",
  3305. "System.Windows.Extensions": "4.7.0"
  3306. },
  3307. "compile": {
  3308. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3309. "related": ".xml"
  3310. }
  3311. },
  3312. "runtime": {
  3313. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3314. "related": ".xml"
  3315. }
  3316. }
  3317. },
  3318. "System.Security.Principal/4.3.0": {
  3319. "type": "package",
  3320. "dependencies": {
  3321. "System.Runtime": "4.3.0"
  3322. },
  3323. "compile": {
  3324. "ref/netstandard1.0/System.Security.Principal.dll": {
  3325. "related": ".xml"
  3326. }
  3327. },
  3328. "runtime": {
  3329. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3330. }
  3331. },
  3332. "System.Security.Principal.Windows/4.7.0": {
  3333. "type": "package",
  3334. "compile": {
  3335. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3336. "related": ".xml"
  3337. }
  3338. },
  3339. "runtime": {
  3340. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3341. "related": ".xml"
  3342. }
  3343. },
  3344. "runtimeTargets": {
  3345. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3346. "assetType": "runtime",
  3347. "rid": "unix"
  3348. },
  3349. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3350. "assetType": "runtime",
  3351. "rid": "win"
  3352. }
  3353. }
  3354. },
  3355. "System.Text.Encoding/4.3.0": {
  3356. "type": "package",
  3357. "dependencies": {
  3358. "Microsoft.NETCore.Platforms": "1.1.0",
  3359. "Microsoft.NETCore.Targets": "1.1.0",
  3360. "System.Runtime": "4.3.0"
  3361. },
  3362. "compile": {
  3363. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3364. "related": ".xml"
  3365. }
  3366. }
  3367. },
  3368. "System.Text.Encoding.CodePages/5.0.0": {
  3369. "type": "package",
  3370. "dependencies": {
  3371. "Microsoft.NETCore.Platforms": "5.0.0"
  3372. },
  3373. "compile": {
  3374. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3375. "related": ".xml"
  3376. }
  3377. },
  3378. "runtime": {
  3379. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3380. "related": ".xml"
  3381. }
  3382. },
  3383. "runtimeTargets": {
  3384. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3385. "assetType": "runtime",
  3386. "rid": "win"
  3387. }
  3388. }
  3389. },
  3390. "System.Text.Encoding.Extensions/4.3.0": {
  3391. "type": "package",
  3392. "dependencies": {
  3393. "Microsoft.NETCore.Platforms": "1.1.0",
  3394. "Microsoft.NETCore.Targets": "1.1.0",
  3395. "System.Runtime": "4.3.0",
  3396. "System.Text.Encoding": "4.3.0"
  3397. },
  3398. "compile": {
  3399. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3400. "related": ".xml"
  3401. }
  3402. }
  3403. },
  3404. "System.Text.Encodings.Web/4.7.0": {
  3405. "type": "package",
  3406. "compile": {
  3407. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3408. "related": ".xml"
  3409. }
  3410. },
  3411. "runtime": {
  3412. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3413. "related": ".xml"
  3414. }
  3415. }
  3416. },
  3417. "System.Text.RegularExpressions/4.3.0": {
  3418. "type": "package",
  3419. "dependencies": {
  3420. "System.Runtime": "4.3.0"
  3421. },
  3422. "compile": {
  3423. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3424. },
  3425. "runtime": {
  3426. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3427. }
  3428. },
  3429. "System.Threading/4.3.0": {
  3430. "type": "package",
  3431. "dependencies": {
  3432. "System.Runtime": "4.3.0",
  3433. "System.Threading.Tasks": "4.3.0"
  3434. },
  3435. "compile": {
  3436. "ref/netstandard1.3/System.Threading.dll": {
  3437. "related": ".xml"
  3438. }
  3439. },
  3440. "runtime": {
  3441. "lib/netstandard1.3/System.Threading.dll": {}
  3442. }
  3443. },
  3444. "System.Threading.Channels/7.0.0": {
  3445. "type": "package",
  3446. "compile": {
  3447. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3448. "related": ".xml"
  3449. }
  3450. },
  3451. "runtime": {
  3452. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3453. "related": ".xml"
  3454. }
  3455. },
  3456. "build": {
  3457. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3458. }
  3459. },
  3460. "System.Threading.Tasks/4.3.0": {
  3461. "type": "package",
  3462. "dependencies": {
  3463. "Microsoft.NETCore.Platforms": "1.1.0",
  3464. "Microsoft.NETCore.Targets": "1.1.0",
  3465. "System.Runtime": "4.3.0"
  3466. },
  3467. "compile": {
  3468. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3469. "related": ".xml"
  3470. }
  3471. }
  3472. },
  3473. "System.Threading.Tasks.Extensions/4.3.0": {
  3474. "type": "package",
  3475. "dependencies": {
  3476. "System.Collections": "4.3.0",
  3477. "System.Runtime": "4.3.0",
  3478. "System.Threading.Tasks": "4.3.0"
  3479. },
  3480. "compile": {
  3481. "lib/netstandard1.0/_._": {
  3482. "related": ".xml"
  3483. }
  3484. },
  3485. "runtime": {
  3486. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  3487. "related": ".xml"
  3488. }
  3489. }
  3490. },
  3491. "System.Threading.Thread/4.3.0": {
  3492. "type": "package",
  3493. "dependencies": {
  3494. "System.Runtime": "4.3.0"
  3495. },
  3496. "compile": {
  3497. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3498. "related": ".xml"
  3499. }
  3500. },
  3501. "runtime": {
  3502. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3503. }
  3504. },
  3505. "System.Threading.ThreadPool/4.3.0": {
  3506. "type": "package",
  3507. "dependencies": {
  3508. "System.Runtime": "4.3.0",
  3509. "System.Runtime.Handles": "4.3.0"
  3510. },
  3511. "compile": {
  3512. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3513. "related": ".xml"
  3514. }
  3515. },
  3516. "runtime": {
  3517. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3518. }
  3519. },
  3520. "System.Threading.Timer/4.3.0": {
  3521. "type": "package",
  3522. "dependencies": {
  3523. "Microsoft.NETCore.Platforms": "1.1.0",
  3524. "Microsoft.NETCore.Targets": "1.1.0",
  3525. "System.Runtime": "4.3.0"
  3526. },
  3527. "compile": {
  3528. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3529. "related": ".xml"
  3530. }
  3531. }
  3532. },
  3533. "System.Windows.Extensions/4.7.0": {
  3534. "type": "package",
  3535. "dependencies": {
  3536. "System.Drawing.Common": "4.7.0"
  3537. },
  3538. "compile": {
  3539. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3540. "related": ".xml"
  3541. }
  3542. },
  3543. "runtime": {
  3544. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3545. "related": ".xml"
  3546. }
  3547. },
  3548. "runtimeTargets": {
  3549. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3550. "assetType": "runtime",
  3551. "rid": "win"
  3552. }
  3553. }
  3554. },
  3555. "System.Xml.ReaderWriter/4.3.0": {
  3556. "type": "package",
  3557. "dependencies": {
  3558. "System.Collections": "4.3.0",
  3559. "System.Diagnostics.Debug": "4.3.0",
  3560. "System.Globalization": "4.3.0",
  3561. "System.IO": "4.3.0",
  3562. "System.IO.FileSystem": "4.3.0",
  3563. "System.IO.FileSystem.Primitives": "4.3.0",
  3564. "System.Resources.ResourceManager": "4.3.0",
  3565. "System.Runtime": "4.3.0",
  3566. "System.Runtime.Extensions": "4.3.0",
  3567. "System.Runtime.InteropServices": "4.3.0",
  3568. "System.Text.Encoding": "4.3.0",
  3569. "System.Text.Encoding.Extensions": "4.3.0",
  3570. "System.Text.RegularExpressions": "4.3.0",
  3571. "System.Threading.Tasks": "4.3.0",
  3572. "System.Threading.Tasks.Extensions": "4.3.0"
  3573. },
  3574. "compile": {
  3575. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3576. "related": ".xml"
  3577. }
  3578. },
  3579. "runtime": {
  3580. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3581. }
  3582. },
  3583. "System.Xml.XDocument/4.3.0": {
  3584. "type": "package",
  3585. "dependencies": {
  3586. "System.Collections": "4.3.0",
  3587. "System.Diagnostics.Debug": "4.3.0",
  3588. "System.Diagnostics.Tools": "4.3.0",
  3589. "System.Globalization": "4.3.0",
  3590. "System.IO": "4.3.0",
  3591. "System.Reflection": "4.3.0",
  3592. "System.Resources.ResourceManager": "4.3.0",
  3593. "System.Runtime": "4.3.0",
  3594. "System.Runtime.Extensions": "4.3.0",
  3595. "System.Text.Encoding": "4.3.0",
  3596. "System.Threading": "4.3.0",
  3597. "System.Xml.ReaderWriter": "4.3.0"
  3598. },
  3599. "compile": {
  3600. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3601. "related": ".xml"
  3602. }
  3603. },
  3604. "runtime": {
  3605. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3606. }
  3607. },
  3608. "System.Xml.XmlDocument/4.3.0": {
  3609. "type": "package",
  3610. "dependencies": {
  3611. "System.Collections": "4.3.0",
  3612. "System.Diagnostics.Debug": "4.3.0",
  3613. "System.Globalization": "4.3.0",
  3614. "System.IO": "4.3.0",
  3615. "System.Resources.ResourceManager": "4.3.0",
  3616. "System.Runtime": "4.3.0",
  3617. "System.Runtime.Extensions": "4.3.0",
  3618. "System.Text.Encoding": "4.3.0",
  3619. "System.Threading": "4.3.0",
  3620. "System.Xml.ReaderWriter": "4.3.0"
  3621. },
  3622. "compile": {
  3623. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3624. "related": ".xml"
  3625. }
  3626. },
  3627. "runtime": {
  3628. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3629. }
  3630. },
  3631. "ToolGood.Words/3.1.0.2": {
  3632. "type": "package",
  3633. "compile": {
  3634. "lib/netstandard2.1/ToolGood.Words.dll": {
  3635. "related": ".xml"
  3636. }
  3637. },
  3638. "runtime": {
  3639. "lib/netstandard2.1/ToolGood.Words.dll": {
  3640. "related": ".xml"
  3641. }
  3642. }
  3643. },
  3644. "ZXing.Net/0.16.9": {
  3645. "type": "package",
  3646. "compile": {
  3647. "lib/net5.0/zxing.dll": {
  3648. "related": ".XML"
  3649. }
  3650. },
  3651. "runtime": {
  3652. "lib/net5.0/zxing.dll": {
  3653. "related": ".XML"
  3654. }
  3655. }
  3656. },
  3657. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3658. "type": "package",
  3659. "dependencies": {
  3660. "SixLabors.ImageSharp": "2.1.3",
  3661. "ZXing.Net": "0.16.9"
  3662. },
  3663. "compile": {
  3664. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3665. "related": ".pdb;.xml"
  3666. }
  3667. },
  3668. "runtime": {
  3669. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3670. "related": ".pdb;.xml"
  3671. }
  3672. }
  3673. },
  3674. "Ropin.Core.Common/1.0.0": {
  3675. "type": "project",
  3676. "framework": ".NETCoreApp,Version=v5.0",
  3677. "dependencies": {
  3678. "Coravel": "4.2.1",
  3679. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3680. "Newtonsoft.Json": "13.0.1",
  3681. "QRCoder": "1.4.3",
  3682. "SixLabors.ImageSharp": "2.1.6",
  3683. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3684. },
  3685. "compile": {
  3686. "bin/placeholder/Ropin.Core.Common.dll": {}
  3687. },
  3688. "runtime": {
  3689. "bin/placeholder/Ropin.Core.Common.dll": {}
  3690. }
  3691. },
  3692. "Ropin.Core.Extensions/1.0.0": {
  3693. "type": "project",
  3694. "framework": ".NETCoreApp,Version=v5.0",
  3695. "dependencies": {
  3696. "Autofac": "6.2.0",
  3697. "Autofac.Extras.DynamicProxy": "6.0.0",
  3698. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3699. "Ropin.Core.Common": "1.0.0",
  3700. "Ropin.Inspection.Common": "1.0.0",
  3701. "Ropin.Inspection.Service": "1.0.0",
  3702. "Ropin.Inspection.Tasks": "1.0.0",
  3703. "StackExchange.Redis": "1.2.4",
  3704. "log4net": "2.0.17"
  3705. },
  3706. "compile": {
  3707. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3708. },
  3709. "runtime": {
  3710. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3711. }
  3712. },
  3713. "Ropin.Inspection.Common/1.0.0": {
  3714. "type": "project",
  3715. "framework": ".NETCoreApp,Version=v5.0",
  3716. "dependencies": {
  3717. "FluentEmail.Smtp": "3.0.2",
  3718. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3719. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3720. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3721. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3722. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3723. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3724. "Microsoft.Extensions.Configuration": "5.0.0",
  3725. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3726. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3727. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3728. "Microsoft.Extensions.Http": "5.0.0",
  3729. "Newtonsoft.Json": "13.0.1",
  3730. "RabbitMQ.Client": "6.8.1",
  3731. "ToolGood.Words": "3.1.0.2",
  3732. "log4net": "2.0.17"
  3733. },
  3734. "compile": {
  3735. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3736. },
  3737. "runtime": {
  3738. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3739. }
  3740. },
  3741. "Ropin.Inspection.Model/1.0.0": {
  3742. "type": "project",
  3743. "framework": ".NETCoreApp,Version=v5.0",
  3744. "dependencies": {
  3745. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3746. "Microsoft.EntityFrameworkCore": "5.0.0",
  3747. "MySql.Data": "8.0.23",
  3748. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3749. "Ropin.Inspection.Common": "1.0.0"
  3750. },
  3751. "compile": {
  3752. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3753. },
  3754. "runtime": {
  3755. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3756. }
  3757. },
  3758. "Ropin.Inspection.Repository/1.0.0": {
  3759. "type": "project",
  3760. "framework": ".NETCoreApp,Version=v5.0",
  3761. "dependencies": {
  3762. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3763. "Microsoft.EntityFrameworkCore": "5.0.0",
  3764. "Ropin.Inspection.Model": "1.0.0"
  3765. },
  3766. "compile": {
  3767. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3768. },
  3769. "runtime": {
  3770. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3771. }
  3772. },
  3773. "Ropin.Inspection.Service/1.0.0": {
  3774. "type": "project",
  3775. "framework": ".NETCoreApp,Version=v5.0",
  3776. "dependencies": {
  3777. "AutoMapper": "10.1.1",
  3778. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3779. "Newtonsoft.Json": "13.0.1",
  3780. "Ropin.Core.Common": "1.0.0",
  3781. "Ropin.Inspection.Common": "1.0.0",
  3782. "Ropin.Inspection.Model": "1.0.0",
  3783. "Ropin.Inspection.Repository": "1.0.0",
  3784. "log4net": "2.0.17"
  3785. },
  3786. "compile": {
  3787. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3788. },
  3789. "runtime": {
  3790. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3791. }
  3792. },
  3793. "Ropin.Inspection.Tasks/1.0.0": {
  3794. "type": "project",
  3795. "framework": ".NETCoreApp,Version=v5.0",
  3796. "dependencies": {
  3797. "Quartz": "3.3.3",
  3798. "Ropin.Inspection.Common": "1.0.0",
  3799. "Ropin.Inspection.Model": "1.0.0",
  3800. "Ropin.Inspection.Service": "1.0.0"
  3801. },
  3802. "compile": {
  3803. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3804. },
  3805. "runtime": {
  3806. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3807. }
  3808. }
  3809. }
  3810. },
  3811. "libraries": {
  3812. "AdvancedStringBuilder/0.1.0": {
  3813. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3814. "type": "package",
  3815. "path": "advancedstringbuilder/0.1.0",
  3816. "files": [
  3817. ".nupkg.metadata",
  3818. ".signature.p7s",
  3819. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3820. "advancedstringbuilder.nuspec",
  3821. "lib/net40-client/AdvancedStringBuilder.dll",
  3822. "lib/net40-client/AdvancedStringBuilder.xml",
  3823. "lib/net45/AdvancedStringBuilder.dll",
  3824. "lib/net45/AdvancedStringBuilder.xml",
  3825. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3826. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3827. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3828. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3829. ]
  3830. },
  3831. "Autofac/6.2.0": {
  3832. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3833. "type": "package",
  3834. "path": "autofac/6.2.0",
  3835. "files": [
  3836. ".nupkg.metadata",
  3837. ".signature.p7s",
  3838. "autofac.6.2.0.nupkg.sha512",
  3839. "autofac.nuspec",
  3840. "icon.png",
  3841. "lib/net5.0/Autofac.dll",
  3842. "lib/net5.0/Autofac.pdb",
  3843. "lib/net5.0/Autofac.xml",
  3844. "lib/netstandard2.0/Autofac.dll",
  3845. "lib/netstandard2.0/Autofac.pdb",
  3846. "lib/netstandard2.0/Autofac.xml",
  3847. "lib/netstandard2.1/Autofac.dll",
  3848. "lib/netstandard2.1/Autofac.pdb",
  3849. "lib/netstandard2.1/Autofac.xml"
  3850. ]
  3851. },
  3852. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3853. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3854. "type": "package",
  3855. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3856. "files": [
  3857. ".nupkg.metadata",
  3858. ".signature.p7s",
  3859. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3860. "autofac.extensions.dependencyinjection.nuspec",
  3861. "icon.png",
  3862. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3863. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3864. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3865. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3866. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3867. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3868. ]
  3869. },
  3870. "Autofac.Extras.DynamicProxy/6.0.0": {
  3871. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3872. "type": "package",
  3873. "path": "autofac.extras.dynamicproxy/6.0.0",
  3874. "files": [
  3875. ".nupkg.metadata",
  3876. ".signature.p7s",
  3877. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3878. "autofac.extras.dynamicproxy.nuspec",
  3879. "icon.png",
  3880. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3881. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3882. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3883. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3884. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3885. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3886. ]
  3887. },
  3888. "AutoMapper/10.1.1": {
  3889. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3890. "type": "package",
  3891. "path": "automapper/10.1.1",
  3892. "files": [
  3893. ".nupkg.metadata",
  3894. ".signature.p7s",
  3895. "automapper.10.1.1.nupkg.sha512",
  3896. "automapper.nuspec",
  3897. "icon.png",
  3898. "lib/net461/AutoMapper.dll",
  3899. "lib/net461/AutoMapper.xml",
  3900. "lib/netstandard2.0/AutoMapper.dll",
  3901. "lib/netstandard2.0/AutoMapper.xml"
  3902. ]
  3903. },
  3904. "BouncyCastle.NetCore/1.8.5": {
  3905. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3906. "type": "package",
  3907. "path": "bouncycastle.netcore/1.8.5",
  3908. "files": [
  3909. ".nupkg.metadata",
  3910. ".signature.p7s",
  3911. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3912. "bouncycastle.netcore.nuspec",
  3913. "lib/Mono/BouncyCastle.Crypto.dll",
  3914. "lib/Mono/BouncyCastle.Crypto.xml",
  3915. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3916. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3917. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3918. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3919. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3920. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3921. "lib/net20/BouncyCastle.Crypto.dll",
  3922. "lib/net20/BouncyCastle.Crypto.xml",
  3923. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3924. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3925. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3926. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3927. ]
  3928. },
  3929. "Castle.Core/4.4.0": {
  3930. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3931. "type": "package",
  3932. "path": "castle.core/4.4.0",
  3933. "files": [
  3934. ".nupkg.metadata",
  3935. ".signature.p7s",
  3936. "ASL - Apache Software Foundation License.txt",
  3937. "CHANGELOG.md",
  3938. "LICENSE",
  3939. "castle.core.4.4.0.nupkg.sha512",
  3940. "castle.core.nuspec",
  3941. "lib/net35/Castle.Core.dll",
  3942. "lib/net35/Castle.Core.xml",
  3943. "lib/net40/Castle.Core.dll",
  3944. "lib/net40/Castle.Core.xml",
  3945. "lib/net45/Castle.Core.dll",
  3946. "lib/net45/Castle.Core.xml",
  3947. "lib/netstandard1.3/Castle.Core.dll",
  3948. "lib/netstandard1.3/Castle.Core.xml",
  3949. "lib/netstandard1.5/Castle.Core.dll",
  3950. "lib/netstandard1.5/Castle.Core.xml",
  3951. "readme.txt"
  3952. ]
  3953. },
  3954. "Coravel/4.2.1": {
  3955. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3956. "type": "package",
  3957. "path": "coravel/4.2.1",
  3958. "files": [
  3959. ".nupkg.metadata",
  3960. ".signature.p7s",
  3961. "coravel.4.2.1.nupkg.sha512",
  3962. "coravel.nuspec",
  3963. "lib/netstandard2.0/Coravel.dll",
  3964. "lib/netstandard2.0/Coravel.xml",
  3965. "logo.png",
  3966. "readme.md"
  3967. ]
  3968. },
  3969. "FBoxClientDriver/1.2.0": {
  3970. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3971. "type": "package",
  3972. "path": "fboxclientdriver/1.2.0",
  3973. "files": [
  3974. ".nupkg.metadata",
  3975. ".signature.p7s",
  3976. "fboxclientdriver.1.2.0.nupkg.sha512",
  3977. "fboxclientdriver.nuspec",
  3978. "lib/netstandard2.0/FBoxClientDriver.dll",
  3979. "lib/netstandard2.0/FBoxClientDriver.xml"
  3980. ]
  3981. },
  3982. "FBoxClientDriver.Contract/1.2.0": {
  3983. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3984. "type": "package",
  3985. "path": "fboxclientdriver.contract/1.2.0",
  3986. "files": [
  3987. ".nupkg.metadata",
  3988. ".signature.p7s",
  3989. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3990. "fboxclientdriver.contract.nuspec",
  3991. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3992. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3993. ]
  3994. },
  3995. "FluentEmail.Core/3.0.2": {
  3996. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3997. "type": "package",
  3998. "path": "fluentemail.core/3.0.2",
  3999. "files": [
  4000. ".nupkg.metadata",
  4001. ".signature.p7s",
  4002. "fluentemail.core.3.0.2.nupkg.sha512",
  4003. "fluentemail.core.nuspec",
  4004. "fluentemail_logo_64x64.png",
  4005. "lib/netstandard2.0/FluentEmail.Core.dll"
  4006. ]
  4007. },
  4008. "FluentEmail.Smtp/3.0.2": {
  4009. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  4010. "type": "package",
  4011. "path": "fluentemail.smtp/3.0.2",
  4012. "files": [
  4013. ".nupkg.metadata",
  4014. ".signature.p7s",
  4015. "fluentemail.smtp.3.0.2.nupkg.sha512",
  4016. "fluentemail.smtp.nuspec",
  4017. "fluentemail_logo_64x64.png",
  4018. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  4019. ]
  4020. },
  4021. "Google.Protobuf/3.11.4": {
  4022. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  4023. "type": "package",
  4024. "path": "google.protobuf/3.11.4",
  4025. "files": [
  4026. ".nupkg.metadata",
  4027. ".signature.p7s",
  4028. "google.protobuf.3.11.4.nupkg.sha512",
  4029. "google.protobuf.nuspec",
  4030. "lib/net45/Google.Protobuf.dll",
  4031. "lib/net45/Google.Protobuf.pdb",
  4032. "lib/net45/Google.Protobuf.xml",
  4033. "lib/netstandard1.0/Google.Protobuf.dll",
  4034. "lib/netstandard1.0/Google.Protobuf.pdb",
  4035. "lib/netstandard1.0/Google.Protobuf.xml",
  4036. "lib/netstandard2.0/Google.Protobuf.dll",
  4037. "lib/netstandard2.0/Google.Protobuf.pdb",
  4038. "lib/netstandard2.0/Google.Protobuf.xml"
  4039. ]
  4040. },
  4041. "IdentityModel/4.3.1": {
  4042. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  4043. "type": "package",
  4044. "path": "identitymodel/4.3.1",
  4045. "files": [
  4046. ".nupkg.metadata",
  4047. ".signature.p7s",
  4048. "icon.jpg",
  4049. "identitymodel.4.3.1.nupkg.sha512",
  4050. "identitymodel.nuspec",
  4051. "lib/net461/IdentityModel.dll",
  4052. "lib/net461/IdentityModel.pdb",
  4053. "lib/net461/IdentityModel.xml",
  4054. "lib/net472/IdentityModel.dll",
  4055. "lib/net472/IdentityModel.pdb",
  4056. "lib/net472/IdentityModel.xml",
  4057. "lib/netstandard2.0/IdentityModel.dll",
  4058. "lib/netstandard2.0/IdentityModel.pdb",
  4059. "lib/netstandard2.0/IdentityModel.xml"
  4060. ]
  4061. },
  4062. "InfluxData.Net/8.0.1": {
  4063. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  4064. "type": "package",
  4065. "path": "influxdata.net/8.0.1",
  4066. "files": [
  4067. ".nupkg.metadata",
  4068. ".signature.p7s",
  4069. "influxdata.net.8.0.1.nupkg.sha512",
  4070. "influxdata.net.nuspec",
  4071. "lib/net461/InfluxData.Net.Common.dll",
  4072. "lib/net461/InfluxData.Net.Common.dll.config",
  4073. "lib/net461/InfluxData.Net.Common.pdb",
  4074. "lib/net461/InfluxData.Net.InfluxDb.dll",
  4075. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  4076. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  4077. "lib/net461/InfluxData.Net.Kapacitor.dll",
  4078. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  4079. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  4080. "lib/net461/InfluxData.Net.dll",
  4081. "lib/net461/InfluxData.Net.dll.config",
  4082. "lib/net461/InfluxData.Net.pdb",
  4083. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  4084. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  4085. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  4086. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  4087. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  4088. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  4089. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  4090. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  4091. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  4092. "lib/netstandard2.0/InfluxData.Net.deps.json",
  4093. "lib/netstandard2.0/InfluxData.Net.dll",
  4094. "lib/netstandard2.0/InfluxData.Net.dll.config",
  4095. "lib/netstandard2.0/InfluxData.Net.pdb"
  4096. ]
  4097. },
  4098. "InitQ/1.0.0.14": {
  4099. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  4100. "type": "package",
  4101. "path": "initq/1.0.0.14",
  4102. "files": [
  4103. ".nupkg.metadata",
  4104. ".signature.p7s",
  4105. "initq.1.0.0.14.nupkg.sha512",
  4106. "initq.nuspec",
  4107. "lib/netcoreapp2.1/InitQ.dll"
  4108. ]
  4109. },
  4110. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  4111. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  4112. "type": "package",
  4113. "path": "javascriptengineswitcher.chakracore/3.21.0",
  4114. "files": [
  4115. ".nupkg.metadata",
  4116. ".signature.p7s",
  4117. "LICENSE.txt",
  4118. "advanced-string-builder-license.txt",
  4119. "chakra-samples-license.txt",
  4120. "icon.png",
  4121. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  4122. "javascriptengineswitcher.chakracore.nuspec",
  4123. "jsrt-dotnet-license.txt",
  4124. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  4125. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  4126. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4127. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  4128. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  4129. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4130. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  4131. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  4132. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4133. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  4134. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  4135. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4136. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  4137. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  4138. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4139. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  4140. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  4141. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4142. "polyfills-for-old-dot-net-license.txt",
  4143. "readme.txt"
  4144. ]
  4145. },
  4146. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  4147. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  4148. "type": "package",
  4149. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  4150. "files": [
  4151. ".nupkg.metadata",
  4152. ".signature.p7s",
  4153. "LICENSE.txt",
  4154. "chakra-core-license.txt",
  4155. "icon.png",
  4156. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  4157. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  4158. "readme.txt",
  4159. "runtimes/linux-x64/native/libChakraCore.so"
  4160. ]
  4161. },
  4162. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  4163. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  4164. "type": "package",
  4165. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  4166. "hasTools": true,
  4167. "files": [
  4168. ".nupkg.metadata",
  4169. ".signature.p7s",
  4170. "LICENSE.txt",
  4171. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  4172. "chakra-core-license.txt",
  4173. "icon.png",
  4174. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  4175. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  4176. "readme.txt",
  4177. "runtimes/win-x64/native/ChakraCore.dll",
  4178. "tools/Install.ps1",
  4179. "tools/Uninstall.ps1"
  4180. ]
  4181. },
  4182. "JavaScriptEngineSwitcher.Core/3.21.0": {
  4183. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  4184. "type": "package",
  4185. "path": "javascriptengineswitcher.core/3.21.0",
  4186. "files": [
  4187. ".nupkg.metadata",
  4188. ".signature.p7s",
  4189. "LICENSE.txt",
  4190. "advanced-string-builder-license.txt",
  4191. "icon.png",
  4192. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  4193. "javascriptengineswitcher.core.nuspec",
  4194. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  4195. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  4196. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4197. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  4198. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  4199. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4200. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  4201. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  4202. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4203. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  4204. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  4205. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4206. "readme.txt"
  4207. ]
  4208. },
  4209. "K4os.Compression.LZ4/1.1.11": {
  4210. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  4211. "type": "package",
  4212. "path": "k4os.compression.lz4/1.1.11",
  4213. "files": [
  4214. ".nupkg.metadata",
  4215. ".signature.p7s",
  4216. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  4217. "k4os.compression.lz4.nuspec",
  4218. "lib/net45/K4os.Compression.LZ4.dll",
  4219. "lib/net45/K4os.Compression.LZ4.xml",
  4220. "lib/net46/K4os.Compression.LZ4.dll",
  4221. "lib/net46/K4os.Compression.LZ4.xml",
  4222. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4223. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4224. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4225. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4226. ]
  4227. },
  4228. "K4os.Compression.LZ4.Streams/1.1.11": {
  4229. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4230. "type": "package",
  4231. "path": "k4os.compression.lz4.streams/1.1.11",
  4232. "files": [
  4233. ".nupkg.metadata",
  4234. ".signature.p7s",
  4235. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4236. "k4os.compression.lz4.streams.nuspec",
  4237. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4238. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4239. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4240. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4241. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4242. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4243. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4244. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4245. ]
  4246. },
  4247. "K4os.Hash.xxHash/1.0.6": {
  4248. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4249. "type": "package",
  4250. "path": "k4os.hash.xxhash/1.0.6",
  4251. "files": [
  4252. ".nupkg.metadata",
  4253. ".signature.p7s",
  4254. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4255. "k4os.hash.xxhash.nuspec",
  4256. "lib/net45/K4os.Hash.xxHash.dll",
  4257. "lib/net45/K4os.Hash.xxHash.xml",
  4258. "lib/net46/K4os.Hash.xxHash.dll",
  4259. "lib/net46/K4os.Hash.xxHash.xml",
  4260. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4261. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4262. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4263. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4264. ]
  4265. },
  4266. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4267. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4268. "type": "package",
  4269. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4270. "files": [
  4271. ".nupkg.metadata",
  4272. ".signature.p7s",
  4273. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4274. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4275. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4276. "linqkit.microsoft.entityframeworkcore.nuspec"
  4277. ]
  4278. },
  4279. "log4net/2.0.17": {
  4280. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4281. "type": "package",
  4282. "path": "log4net/2.0.17",
  4283. "files": [
  4284. ".nupkg.metadata",
  4285. ".signature.p7s",
  4286. "lib/net20/log4net.dll",
  4287. "lib/net20/log4net.xml",
  4288. "lib/net35/log4net.dll",
  4289. "lib/net35/log4net.xml",
  4290. "lib/net40-client/log4net.dll",
  4291. "lib/net40-client/log4net.xml",
  4292. "lib/net40/log4net.dll",
  4293. "lib/net40/log4net.xml",
  4294. "lib/net45/log4net.dll",
  4295. "lib/net45/log4net.xml",
  4296. "lib/netstandard1.3/log4net.dll",
  4297. "lib/netstandard1.3/log4net.xml",
  4298. "lib/netstandard2.0/log4net.dll",
  4299. "lib/netstandard2.0/log4net.xml",
  4300. "log4net.2.0.17.nupkg.sha512",
  4301. "log4net.nuspec",
  4302. "package-icon.png"
  4303. ]
  4304. },
  4305. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  4306. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  4307. "type": "package",
  4308. "path": "microsoft.aspnet.signalr.client/2.4.1",
  4309. "files": [
  4310. ".nupkg.metadata",
  4311. ".signature.p7s",
  4312. "Microsoft.AspNet.SignalR.Client.2.4.1.nupkg.sha512",
  4313. "Microsoft.AspNet.SignalR.Client.nuspec",
  4314. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  4315. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  4316. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  4317. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  4318. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  4319. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  4320. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  4321. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  4322. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  4323. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  4324. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  4325. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml"
  4326. ]
  4327. },
  4328. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  4329. "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  4330. "type": "package",
  4331. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  4332. "files": [
  4333. ".nupkg.metadata",
  4334. ".signature.p7s",
  4335. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  4336. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  4337. "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
  4338. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  4339. ]
  4340. },
  4341. "Microsoft.AspNetCore.Authorization/2.2.0": {
  4342. "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
  4343. "type": "package",
  4344. "path": "microsoft.aspnetcore.authorization/2.2.0",
  4345. "files": [
  4346. ".nupkg.metadata",
  4347. ".signature.p7s",
  4348. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  4349. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  4350. "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
  4351. "microsoft.aspnetcore.authorization.nuspec"
  4352. ]
  4353. },
  4354. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  4355. "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
  4356. "type": "package",
  4357. "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
  4358. "files": [
  4359. ".nupkg.metadata",
  4360. ".signature.p7s",
  4361. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  4362. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  4363. "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
  4364. "microsoft.aspnetcore.authorization.policy.nuspec"
  4365. ]
  4366. },
  4367. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  4368. "sha512": "9bpgnQRo2/dKhUUnKjULeTTXPAsQ/OMGar5HV+MDU8ukArEXmu/cvNo2aWReyf2CHTbUOEE496v8cVgUoDXu6Q==",
  4369. "type": "package",
  4370. "path": "microsoft.aspnetcore.connections.abstractions/3.1.20",
  4371. "files": [
  4372. ".nupkg.metadata",
  4373. ".signature.p7s",
  4374. "Icon.png",
  4375. "THIRD-PARTY-NOTICES.TXT",
  4376. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4377. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4378. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4379. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4380. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4381. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4382. "microsoft.aspnetcore.connections.abstractions.3.1.20.nupkg.sha512",
  4383. "microsoft.aspnetcore.connections.abstractions.nuspec"
  4384. ]
  4385. },
  4386. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  4387. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  4388. "type": "package",
  4389. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  4390. "files": [
  4391. ".nupkg.metadata",
  4392. ".signature.p7s",
  4393. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4394. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4395. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  4396. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  4397. ]
  4398. },
  4399. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  4400. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  4401. "type": "package",
  4402. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  4403. "files": [
  4404. ".nupkg.metadata",
  4405. ".signature.p7s",
  4406. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4407. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4408. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  4409. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  4410. ]
  4411. },
  4412. "Microsoft.AspNetCore.Http/2.2.0": {
  4413. "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  4414. "type": "package",
  4415. "path": "microsoft.aspnetcore.http/2.2.0",
  4416. "files": [
  4417. ".nupkg.metadata",
  4418. ".signature.p7s",
  4419. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  4420. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  4421. "microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
  4422. "microsoft.aspnetcore.http.nuspec"
  4423. ]
  4424. },
  4425. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4426. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4427. "type": "package",
  4428. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4429. "files": [
  4430. ".nupkg.metadata",
  4431. ".signature.p7s",
  4432. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4433. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4434. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4435. "microsoft.aspnetcore.http.abstractions.nuspec"
  4436. ]
  4437. },
  4438. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  4439. "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==",
  4440. "type": "package",
  4441. "path": "microsoft.aspnetcore.http.connections/1.1.0",
  4442. "files": [
  4443. ".nupkg.metadata",
  4444. ".signature.p7s",
  4445. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll",
  4446. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml",
  4447. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll",
  4448. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml",
  4449. "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512",
  4450. "microsoft.aspnetcore.http.connections.nuspec"
  4451. ]
  4452. },
  4453. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  4454. "sha512": "MLAS2LJeid3Bck1Q5AUfjD5tstqXV6KuVNDD+rJXAz/PYqD4TvYJ1PvUIwMEjQo8OMdoxNQl0xpXcSfz4Fod5A==",
  4455. "type": "package",
  4456. "path": "microsoft.aspnetcore.http.connections.client/3.1.20",
  4457. "files": [
  4458. ".nupkg.metadata",
  4459. ".signature.p7s",
  4460. "Icon.png",
  4461. "THIRD-PARTY-NOTICES.TXT",
  4462. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4463. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4464. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4465. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4466. "microsoft.aspnetcore.http.connections.client.3.1.20.nupkg.sha512",
  4467. "microsoft.aspnetcore.http.connections.client.nuspec"
  4468. ]
  4469. },
  4470. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  4471. "sha512": "HEScvniD1E2Uv1t9Sfpu36u+FYnAQQPc/2obAARWolrOsdUPlSHPT6sXajrAic9JSnpWM9AVIMB22Nb+k/NuEg==",
  4472. "type": "package",
  4473. "path": "microsoft.aspnetcore.http.connections.common/3.1.20",
  4474. "files": [
  4475. ".nupkg.metadata",
  4476. ".signature.p7s",
  4477. "Icon.png",
  4478. "THIRD-PARTY-NOTICES.TXT",
  4479. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4480. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4481. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4482. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4483. "microsoft.aspnetcore.http.connections.common.3.1.20.nupkg.sha512",
  4484. "microsoft.aspnetcore.http.connections.common.nuspec"
  4485. ]
  4486. },
  4487. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  4488. "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  4489. "type": "package",
  4490. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  4491. "files": [
  4492. ".nupkg.metadata",
  4493. ".signature.p7s",
  4494. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  4495. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  4496. "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
  4497. "microsoft.aspnetcore.http.extensions.nuspec"
  4498. ]
  4499. },
  4500. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4501. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4502. "type": "package",
  4503. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4504. "files": [
  4505. ".nupkg.metadata",
  4506. ".signature.p7s",
  4507. "Icon.png",
  4508. "THIRD-PARTY-NOTICES.TXT",
  4509. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4510. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4511. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4512. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4513. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4514. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4515. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4516. "microsoft.aspnetcore.http.features.nuspec"
  4517. ]
  4518. },
  4519. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4520. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4521. "type": "package",
  4522. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4523. "files": [
  4524. ".nupkg.metadata",
  4525. ".signature.p7s",
  4526. "Icon.png",
  4527. "THIRD-PARTY-NOTICES.TXT",
  4528. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4529. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4530. "microsoft.aspnetcore.nodeservices.nuspec"
  4531. ]
  4532. },
  4533. "Microsoft.AspNetCore.Routing/2.2.0": {
  4534. "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  4535. "type": "package",
  4536. "path": "microsoft.aspnetcore.routing/2.2.0",
  4537. "files": [
  4538. ".nupkg.metadata",
  4539. ".signature.p7s",
  4540. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
  4541. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
  4542. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  4543. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  4544. "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
  4545. "microsoft.aspnetcore.routing.nuspec"
  4546. ]
  4547. },
  4548. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4549. "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  4550. "type": "package",
  4551. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  4552. "files": [
  4553. ".nupkg.metadata",
  4554. ".signature.p7s",
  4555. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4556. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4557. "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
  4558. "microsoft.aspnetcore.routing.abstractions.nuspec"
  4559. ]
  4560. },
  4561. "Microsoft.AspNetCore.SignalR/1.1.0": {
  4562. "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==",
  4563. "type": "package",
  4564. "path": "microsoft.aspnetcore.signalr/1.1.0",
  4565. "files": [
  4566. ".nupkg.metadata",
  4567. ".signature.p7s",
  4568. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll",
  4569. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml",
  4570. "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512",
  4571. "microsoft.aspnetcore.signalr.nuspec"
  4572. ]
  4573. },
  4574. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  4575. "sha512": "Sq8a6+hIAvaYQOPDDfIiEkeZmDYROfecRu/qvRE8e3tWVMFhBTxp2I21ywNNNUj95TSRGX93/X5BbFgnPVDMGQ==",
  4576. "type": "package",
  4577. "path": "microsoft.aspnetcore.signalr.client/3.1.20",
  4578. "files": [
  4579. ".nupkg.metadata",
  4580. ".signature.p7s",
  4581. "Icon.png",
  4582. "THIRD-PARTY-NOTICES.TXT",
  4583. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll",
  4584. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.xml",
  4585. "microsoft.aspnetcore.signalr.client.3.1.20.nupkg.sha512",
  4586. "microsoft.aspnetcore.signalr.client.nuspec"
  4587. ]
  4588. },
  4589. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  4590. "sha512": "ZB2tpDtuLUbYJaG+R/lOpZ3QeQc1J5zCz57sgNtzhxnNQ8iZQmHRdfTsRyFNANTvwbthN0U7YDEGIfXzyh7s7g==",
  4591. "type": "package",
  4592. "path": "microsoft.aspnetcore.signalr.client.core/3.1.20",
  4593. "files": [
  4594. ".nupkg.metadata",
  4595. ".signature.p7s",
  4596. "Icon.png",
  4597. "THIRD-PARTY-NOTICES.TXT",
  4598. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4599. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4600. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4601. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4602. "microsoft.aspnetcore.signalr.client.core.3.1.20.nupkg.sha512",
  4603. "microsoft.aspnetcore.signalr.client.core.nuspec"
  4604. ]
  4605. },
  4606. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  4607. "sha512": "20KE+/GPxmgcKEvHpqg589Tye56WTvhMkh9zLg5JDnvueiXTfsLSr8izc9AceUGhfjBloug2pzwU2glOnhn8Pw==",
  4608. "type": "package",
  4609. "path": "microsoft.aspnetcore.signalr.common/3.1.20",
  4610. "files": [
  4611. ".nupkg.metadata",
  4612. ".signature.p7s",
  4613. "Icon.png",
  4614. "THIRD-PARTY-NOTICES.TXT",
  4615. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll",
  4616. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.xml",
  4617. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll",
  4618. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml",
  4619. "microsoft.aspnetcore.signalr.common.3.1.20.nupkg.sha512",
  4620. "microsoft.aspnetcore.signalr.common.nuspec"
  4621. ]
  4622. },
  4623. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  4624. "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==",
  4625. "type": "package",
  4626. "path": "microsoft.aspnetcore.signalr.core/1.1.0",
  4627. "files": [
  4628. ".nupkg.metadata",
  4629. ".signature.p7s",
  4630. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll",
  4631. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml",
  4632. "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512",
  4633. "microsoft.aspnetcore.signalr.core.nuspec"
  4634. ]
  4635. },
  4636. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  4637. "sha512": "PlEyHZBxyO9OK+v0fHNFvI330EYtz3NQNp3Y7BtKWnZEotNrNtP/iB0GDkgUTRxfy5/P5lXDmd0wgFgefSzcwA==",
  4638. "type": "package",
  4639. "path": "microsoft.aspnetcore.signalr.protocols.json/3.1.20",
  4640. "files": [
  4641. ".nupkg.metadata",
  4642. ".signature.p7s",
  4643. "Icon.png",
  4644. "THIRD-PARTY-NOTICES.TXT",
  4645. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4646. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4647. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4648. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4649. "microsoft.aspnetcore.signalr.protocols.json.3.1.20.nupkg.sha512",
  4650. "microsoft.aspnetcore.signalr.protocols.json.nuspec"
  4651. ]
  4652. },
  4653. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  4654. "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==",
  4655. "type": "package",
  4656. "path": "microsoft.aspnetcore.websockets/2.2.0",
  4657. "files": [
  4658. ".nupkg.metadata",
  4659. ".signature.p7s",
  4660. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll",
  4661. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml",
  4662. "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512",
  4663. "microsoft.aspnetcore.websockets.nuspec"
  4664. ]
  4665. },
  4666. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  4667. "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  4668. "type": "package",
  4669. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  4674. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  4675. "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
  4676. "microsoft.aspnetcore.webutilities.nuspec"
  4677. ]
  4678. },
  4679. "Microsoft.CSharp/4.7.0": {
  4680. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4681. "type": "package",
  4682. "path": "microsoft.csharp/4.7.0",
  4683. "files": [
  4684. ".nupkg.metadata",
  4685. ".signature.p7s",
  4686. "LICENSE.TXT",
  4687. "THIRD-PARTY-NOTICES.TXT",
  4688. "lib/MonoAndroid10/_._",
  4689. "lib/MonoTouch10/_._",
  4690. "lib/net45/_._",
  4691. "lib/netcore50/Microsoft.CSharp.dll",
  4692. "lib/netcoreapp2.0/_._",
  4693. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4694. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4695. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4696. "lib/portable-net45+win8+wp8+wpa81/_._",
  4697. "lib/uap10.0.16299/_._",
  4698. "lib/win8/_._",
  4699. "lib/wp80/_._",
  4700. "lib/wpa81/_._",
  4701. "lib/xamarinios10/_._",
  4702. "lib/xamarinmac20/_._",
  4703. "lib/xamarintvos10/_._",
  4704. "lib/xamarinwatchos10/_._",
  4705. "microsoft.csharp.4.7.0.nupkg.sha512",
  4706. "microsoft.csharp.nuspec",
  4707. "ref/MonoAndroid10/_._",
  4708. "ref/MonoTouch10/_._",
  4709. "ref/net45/_._",
  4710. "ref/netcore50/Microsoft.CSharp.dll",
  4711. "ref/netcore50/Microsoft.CSharp.xml",
  4712. "ref/netcore50/de/Microsoft.CSharp.xml",
  4713. "ref/netcore50/es/Microsoft.CSharp.xml",
  4714. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4715. "ref/netcore50/it/Microsoft.CSharp.xml",
  4716. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4717. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4718. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4719. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4720. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4721. "ref/netcoreapp2.0/_._",
  4722. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4723. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4724. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4725. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4726. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4727. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4728. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4729. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4730. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4731. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4732. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4733. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4734. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4735. "ref/portable-net45+win8+wp8+wpa81/_._",
  4736. "ref/uap10.0.16299/_._",
  4737. "ref/win8/_._",
  4738. "ref/wp80/_._",
  4739. "ref/wpa81/_._",
  4740. "ref/xamarinios10/_._",
  4741. "ref/xamarinmac20/_._",
  4742. "ref/xamarintvos10/_._",
  4743. "ref/xamarinwatchos10/_._",
  4744. "useSharedDesignerContext.txt",
  4745. "version.txt"
  4746. ]
  4747. },
  4748. "Microsoft.EntityFrameworkCore/5.0.0": {
  4749. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4750. "type": "package",
  4751. "path": "microsoft.entityframeworkcore/5.0.0",
  4752. "files": [
  4753. ".nupkg.metadata",
  4754. ".signature.p7s",
  4755. "Icon.png",
  4756. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4757. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4758. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4759. "microsoft.entityframeworkcore.nuspec"
  4760. ]
  4761. },
  4762. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4763. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4764. "type": "package",
  4765. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4766. "files": [
  4767. ".nupkg.metadata",
  4768. ".signature.p7s",
  4769. "Icon.png",
  4770. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4771. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4772. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4773. "microsoft.entityframeworkcore.abstractions.nuspec"
  4774. ]
  4775. },
  4776. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4777. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4778. "type": "package",
  4779. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "Icon.png",
  4784. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4785. "lib/netstandard2.0/_._",
  4786. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4787. "microsoft.entityframeworkcore.analyzers.nuspec"
  4788. ]
  4789. },
  4790. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4791. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4792. "type": "package",
  4793. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4794. "files": [
  4795. ".nupkg.metadata",
  4796. ".signature.p7s",
  4797. "Icon.png",
  4798. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4799. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4800. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4801. "microsoft.entityframeworkcore.relational.nuspec"
  4802. ]
  4803. },
  4804. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4805. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4806. "type": "package",
  4807. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4808. "files": [
  4809. ".nupkg.metadata",
  4810. ".signature.p7s",
  4811. "Icon.png",
  4812. "LICENSE.TXT",
  4813. "THIRD-PARTY-NOTICES.TXT",
  4814. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4815. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4816. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4817. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4818. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4819. "microsoft.extensions.caching.abstractions.nuspec",
  4820. "useSharedDesignerContext.txt",
  4821. "version.txt"
  4822. ]
  4823. },
  4824. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4825. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4826. "type": "package",
  4827. "path": "microsoft.extensions.caching.memory/5.0.0",
  4828. "files": [
  4829. ".nupkg.metadata",
  4830. ".signature.p7s",
  4831. "Icon.png",
  4832. "LICENSE.TXT",
  4833. "THIRD-PARTY-NOTICES.TXT",
  4834. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4835. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4836. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4837. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4838. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4839. "microsoft.extensions.caching.memory.nuspec",
  4840. "useSharedDesignerContext.txt",
  4841. "version.txt"
  4842. ]
  4843. },
  4844. "Microsoft.Extensions.Configuration/5.0.0": {
  4845. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4846. "type": "package",
  4847. "path": "microsoft.extensions.configuration/5.0.0",
  4848. "files": [
  4849. ".nupkg.metadata",
  4850. ".signature.p7s",
  4851. "Icon.png",
  4852. "LICENSE.TXT",
  4853. "THIRD-PARTY-NOTICES.TXT",
  4854. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4855. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4856. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4857. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4858. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4859. "microsoft.extensions.configuration.nuspec",
  4860. "useSharedDesignerContext.txt",
  4861. "version.txt"
  4862. ]
  4863. },
  4864. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4865. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4866. "type": "package",
  4867. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4868. "files": [
  4869. ".nupkg.metadata",
  4870. ".signature.p7s",
  4871. "Icon.png",
  4872. "LICENSE.TXT",
  4873. "THIRD-PARTY-NOTICES.TXT",
  4874. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4875. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4876. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4877. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4878. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4879. "microsoft.extensions.configuration.abstractions.nuspec",
  4880. "useSharedDesignerContext.txt",
  4881. "version.txt"
  4882. ]
  4883. },
  4884. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4885. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4886. "type": "package",
  4887. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4888. "files": [
  4889. ".nupkg.metadata",
  4890. ".signature.p7s",
  4891. "Icon.png",
  4892. "LICENSE.TXT",
  4893. "THIRD-PARTY-NOTICES.TXT",
  4894. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4895. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4896. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4897. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4898. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4899. "microsoft.extensions.configuration.binder.nuspec",
  4900. "useSharedDesignerContext.txt",
  4901. "version.txt"
  4902. ]
  4903. },
  4904. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4905. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4906. "type": "package",
  4907. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4908. "files": [
  4909. ".nupkg.metadata",
  4910. ".signature.p7s",
  4911. "Icon.png",
  4912. "LICENSE.TXT",
  4913. "THIRD-PARTY-NOTICES.TXT",
  4914. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4915. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4916. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4917. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4918. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4919. "microsoft.extensions.configuration.fileextensions.nuspec",
  4920. "useSharedDesignerContext.txt",
  4921. "version.txt"
  4922. ]
  4923. },
  4924. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4925. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4926. "type": "package",
  4927. "path": "microsoft.extensions.configuration.json/5.0.0",
  4928. "files": [
  4929. ".nupkg.metadata",
  4930. ".signature.p7s",
  4931. "Icon.png",
  4932. "LICENSE.TXT",
  4933. "THIRD-PARTY-NOTICES.TXT",
  4934. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4935. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4936. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4937. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4938. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4939. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4940. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4941. "microsoft.extensions.configuration.json.nuspec",
  4942. "useSharedDesignerContext.txt",
  4943. "version.txt"
  4944. ]
  4945. },
  4946. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4947. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4948. "type": "package",
  4949. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4950. "files": [
  4951. ".nupkg.metadata",
  4952. ".signature.p7s",
  4953. "Icon.png",
  4954. "LICENSE.TXT",
  4955. "THIRD-PARTY-NOTICES.TXT",
  4956. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4957. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4958. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4959. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4960. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4961. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4962. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4963. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4964. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  4965. "microsoft.extensions.dependencyinjection.nuspec",
  4966. "useSharedDesignerContext.txt",
  4967. "version.txt"
  4968. ]
  4969. },
  4970. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4971. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4972. "type": "package",
  4973. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4974. "files": [
  4975. ".nupkg.metadata",
  4976. ".signature.p7s",
  4977. "Icon.png",
  4978. "LICENSE.TXT",
  4979. "THIRD-PARTY-NOTICES.TXT",
  4980. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4981. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4982. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4983. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4984. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4985. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4986. "useSharedDesignerContext.txt",
  4987. "version.txt"
  4988. ]
  4989. },
  4990. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4991. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4992. "type": "package",
  4993. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4994. "files": [
  4995. ".nupkg.metadata",
  4996. ".signature.p7s",
  4997. "Icon.png",
  4998. "LICENSE.TXT",
  4999. "THIRD-PARTY-NOTICES.TXT",
  5000. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5001. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5002. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5003. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5004. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  5005. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5006. "useSharedDesignerContext.txt",
  5007. "version.txt"
  5008. ]
  5009. },
  5010. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  5011. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  5012. "type": "package",
  5013. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  5014. "files": [
  5015. ".nupkg.metadata",
  5016. ".signature.p7s",
  5017. "Icon.png",
  5018. "LICENSE.TXT",
  5019. "THIRD-PARTY-NOTICES.TXT",
  5020. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5021. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5022. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5023. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5024. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  5025. "microsoft.extensions.fileproviders.physical.nuspec",
  5026. "useSharedDesignerContext.txt",
  5027. "version.txt"
  5028. ]
  5029. },
  5030. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  5031. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  5032. "type": "package",
  5033. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  5034. "files": [
  5035. ".nupkg.metadata",
  5036. ".signature.p7s",
  5037. "Icon.png",
  5038. "LICENSE.TXT",
  5039. "THIRD-PARTY-NOTICES.TXT",
  5040. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5041. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5042. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5043. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5044. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  5045. "microsoft.extensions.filesystemglobbing.nuspec",
  5046. "useSharedDesignerContext.txt",
  5047. "version.txt"
  5048. ]
  5049. },
  5050. "Microsoft.Extensions.Hosting/2.1.0": {
  5051. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  5052. "type": "package",
  5053. "path": "microsoft.extensions.hosting/2.1.0",
  5054. "files": [
  5055. ".nupkg.metadata",
  5056. ".signature.p7s",
  5057. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  5058. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  5059. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  5060. "microsoft.extensions.hosting.nuspec"
  5061. ]
  5062. },
  5063. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  5064. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  5065. "type": "package",
  5066. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  5067. "files": [
  5068. ".nupkg.metadata",
  5069. ".signature.p7s",
  5070. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5071. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5072. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5073. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5074. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  5075. "microsoft.extensions.hosting.abstractions.nuspec",
  5076. "packageIcon.png"
  5077. ]
  5078. },
  5079. "Microsoft.Extensions.Http/5.0.0": {
  5080. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  5081. "type": "package",
  5082. "path": "microsoft.extensions.http/5.0.0",
  5083. "files": [
  5084. ".nupkg.metadata",
  5085. ".signature.p7s",
  5086. "Icon.png",
  5087. "LICENSE.TXT",
  5088. "THIRD-PARTY-NOTICES.TXT",
  5089. "lib/net461/Microsoft.Extensions.Http.dll",
  5090. "lib/net461/Microsoft.Extensions.Http.xml",
  5091. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  5092. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  5093. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  5094. "microsoft.extensions.http.nuspec",
  5095. "useSharedDesignerContext.txt",
  5096. "version.txt"
  5097. ]
  5098. },
  5099. "Microsoft.Extensions.Logging/5.0.0": {
  5100. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  5101. "type": "package",
  5102. "path": "microsoft.extensions.logging/5.0.0",
  5103. "files": [
  5104. ".nupkg.metadata",
  5105. ".signature.p7s",
  5106. "Icon.png",
  5107. "LICENSE.TXT",
  5108. "THIRD-PARTY-NOTICES.TXT",
  5109. "lib/net461/Microsoft.Extensions.Logging.dll",
  5110. "lib/net461/Microsoft.Extensions.Logging.xml",
  5111. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5112. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5113. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5114. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5115. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  5116. "microsoft.extensions.logging.nuspec",
  5117. "useSharedDesignerContext.txt",
  5118. "version.txt"
  5119. ]
  5120. },
  5121. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  5122. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  5123. "type": "package",
  5124. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  5125. "files": [
  5126. ".nupkg.metadata",
  5127. ".signature.p7s",
  5128. "Icon.png",
  5129. "LICENSE.TXT",
  5130. "THIRD-PARTY-NOTICES.TXT",
  5131. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5132. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5133. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5134. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5135. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  5136. "microsoft.extensions.logging.abstractions.nuspec",
  5137. "useSharedDesignerContext.txt",
  5138. "version.txt"
  5139. ]
  5140. },
  5141. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  5142. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  5143. "type": "package",
  5144. "path": "microsoft.extensions.logging.configuration/3.1.30",
  5145. "files": [
  5146. ".nupkg.metadata",
  5147. ".signature.p7s",
  5148. "Icon.png",
  5149. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  5150. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  5151. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  5152. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  5153. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  5154. "microsoft.extensions.logging.configuration.nuspec"
  5155. ]
  5156. },
  5157. "Microsoft.Extensions.Logging.Console/3.1.30": {
  5158. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  5159. "type": "package",
  5160. "path": "microsoft.extensions.logging.console/3.1.30",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. ".signature.p7s",
  5164. "Icon.png",
  5165. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  5166. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  5167. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  5168. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  5169. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  5170. "microsoft.extensions.logging.console.nuspec"
  5171. ]
  5172. },
  5173. "Microsoft.Extensions.ObjectPool/2.2.0": {
  5174. "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  5175. "type": "package",
  5176. "path": "microsoft.extensions.objectpool/2.2.0",
  5177. "files": [
  5178. ".nupkg.metadata",
  5179. ".signature.p7s",
  5180. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  5181. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  5182. "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
  5183. "microsoft.extensions.objectpool.nuspec"
  5184. ]
  5185. },
  5186. "Microsoft.Extensions.Options/5.0.0": {
  5187. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  5188. "type": "package",
  5189. "path": "microsoft.extensions.options/5.0.0",
  5190. "files": [
  5191. ".nupkg.metadata",
  5192. ".signature.p7s",
  5193. "Icon.png",
  5194. "LICENSE.TXT",
  5195. "THIRD-PARTY-NOTICES.TXT",
  5196. "lib/net461/Microsoft.Extensions.Options.dll",
  5197. "lib/net461/Microsoft.Extensions.Options.xml",
  5198. "lib/net5.0/Microsoft.Extensions.Options.dll",
  5199. "lib/net5.0/Microsoft.Extensions.Options.xml",
  5200. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5201. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5202. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  5203. "microsoft.extensions.options.nuspec",
  5204. "useSharedDesignerContext.txt",
  5205. "version.txt"
  5206. ]
  5207. },
  5208. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  5209. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  5210. "type": "package",
  5211. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  5212. "files": [
  5213. ".nupkg.metadata",
  5214. ".signature.p7s",
  5215. "Icon.png",
  5216. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5217. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5218. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5219. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5220. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  5221. "microsoft.extensions.options.configurationextensions.nuspec"
  5222. ]
  5223. },
  5224. "Microsoft.Extensions.Primitives/5.0.0": {
  5225. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  5226. "type": "package",
  5227. "path": "microsoft.extensions.primitives/5.0.0",
  5228. "files": [
  5229. ".nupkg.metadata",
  5230. ".signature.p7s",
  5231. "Icon.png",
  5232. "LICENSE.TXT",
  5233. "THIRD-PARTY-NOTICES.TXT",
  5234. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5235. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5236. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  5237. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  5238. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5239. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5240. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  5241. "microsoft.extensions.primitives.nuspec",
  5242. "useSharedDesignerContext.txt",
  5243. "version.txt"
  5244. ]
  5245. },
  5246. "Microsoft.Net.Http.Headers/2.2.0": {
  5247. "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  5248. "type": "package",
  5249. "path": "microsoft.net.http.headers/2.2.0",
  5250. "files": [
  5251. ".nupkg.metadata",
  5252. ".signature.p7s",
  5253. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  5254. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  5255. "microsoft.net.http.headers.2.2.0.nupkg.sha512",
  5256. "microsoft.net.http.headers.nuspec"
  5257. ]
  5258. },
  5259. "Microsoft.NETCore.Platforms/5.0.0": {
  5260. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5261. "type": "package",
  5262. "path": "microsoft.netcore.platforms/5.0.0",
  5263. "files": [
  5264. ".nupkg.metadata",
  5265. ".signature.p7s",
  5266. "Icon.png",
  5267. "LICENSE.TXT",
  5268. "THIRD-PARTY-NOTICES.TXT",
  5269. "lib/netstandard1.0/_._",
  5270. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5271. "microsoft.netcore.platforms.nuspec",
  5272. "runtime.json",
  5273. "useSharedDesignerContext.txt",
  5274. "version.txt"
  5275. ]
  5276. },
  5277. "Microsoft.NETCore.Targets/1.1.0": {
  5278. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5279. "type": "package",
  5280. "path": "microsoft.netcore.targets/1.1.0",
  5281. "files": [
  5282. ".nupkg.metadata",
  5283. ".signature.p7s",
  5284. "ThirdPartyNotices.txt",
  5285. "dotnet_library_license.txt",
  5286. "lib/netstandard1.0/_._",
  5287. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5288. "microsoft.netcore.targets.nuspec",
  5289. "runtime.json"
  5290. ]
  5291. },
  5292. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  5293. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  5294. "type": "package",
  5295. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  5296. "hasTools": true,
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "CHANGELOG.md",
  5301. "EULA.md",
  5302. "ThirdPartyNotices.txt",
  5303. "build/Container.props",
  5304. "build/Container.targets",
  5305. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  5306. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  5307. "build/Rules/GeneralBrowseObject.xaml",
  5308. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  5309. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  5310. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  5311. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  5312. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  5313. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  5314. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  5315. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  5316. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  5317. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  5318. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  5319. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  5320. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  5321. "build/ToolsTarget.props",
  5322. "build/ToolsTarget.targets",
  5323. "icon.png",
  5324. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  5325. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  5326. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  5327. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  5328. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5329. "tools/Newtonsoft.Json.dll",
  5330. "tools/System.Security.Principal.Windows.dll",
  5331. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5332. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5333. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5334. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5335. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5336. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5337. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5338. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5339. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5340. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5341. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5342. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5343. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5344. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5345. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5346. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5347. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5348. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5349. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5350. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5351. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5352. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5353. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5354. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5355. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5356. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5357. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5358. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5359. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5360. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5361. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5362. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5363. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5364. "tools/utils/KillProcess.exe",
  5365. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5366. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5367. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5368. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5369. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5370. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5371. ]
  5372. },
  5373. "Microsoft.Win32.Primitives/4.3.0": {
  5374. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5375. "type": "package",
  5376. "path": "microsoft.win32.primitives/4.3.0",
  5377. "files": [
  5378. ".nupkg.metadata",
  5379. ".signature.p7s",
  5380. "ThirdPartyNotices.txt",
  5381. "dotnet_library_license.txt",
  5382. "lib/MonoAndroid10/_._",
  5383. "lib/MonoTouch10/_._",
  5384. "lib/net46/Microsoft.Win32.Primitives.dll",
  5385. "lib/xamarinios10/_._",
  5386. "lib/xamarinmac20/_._",
  5387. "lib/xamarintvos10/_._",
  5388. "lib/xamarinwatchos10/_._",
  5389. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5390. "microsoft.win32.primitives.nuspec",
  5391. "ref/MonoAndroid10/_._",
  5392. "ref/MonoTouch10/_._",
  5393. "ref/net46/Microsoft.Win32.Primitives.dll",
  5394. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5395. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5396. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5397. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5398. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5399. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5400. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5401. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5402. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5403. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5404. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5405. "ref/xamarinios10/_._",
  5406. "ref/xamarinmac20/_._",
  5407. "ref/xamarintvos10/_._",
  5408. "ref/xamarinwatchos10/_._"
  5409. ]
  5410. },
  5411. "Microsoft.Win32.SystemEvents/5.0.0": {
  5412. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  5413. "type": "package",
  5414. "path": "microsoft.win32.systemevents/5.0.0",
  5415. "files": [
  5416. ".nupkg.metadata",
  5417. ".signature.p7s",
  5418. "Icon.png",
  5419. "LICENSE.TXT",
  5420. "THIRD-PARTY-NOTICES.TXT",
  5421. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5422. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5423. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5424. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5425. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5426. "microsoft.win32.systemevents.nuspec",
  5427. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5428. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5429. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5430. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5431. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5432. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5433. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5434. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5435. "useSharedDesignerContext.txt",
  5436. "version.txt"
  5437. ]
  5438. },
  5439. "MySql.Data/8.0.23": {
  5440. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5441. "type": "package",
  5442. "path": "mysql.data/8.0.23",
  5443. "files": [
  5444. ".nupkg.metadata",
  5445. ".signature.p7s",
  5446. "lib/net452/MySql.Data.dll",
  5447. "lib/net452/MySql.Data.xml",
  5448. "lib/net452/Ubiety.Dns.Core.dll",
  5449. "lib/net452/Zstandard.Net.dll",
  5450. "lib/net48/MySql.Data.dll",
  5451. "lib/net48/MySql.Data.xml",
  5452. "lib/net48/Ubiety.Dns.Core.dll",
  5453. "lib/net48/Zstandard.Net.dll",
  5454. "lib/net5.0/MySql.Data.dll",
  5455. "lib/net5.0/MySql.Data.xml",
  5456. "lib/net5.0/Ubiety.Dns.Core.dll",
  5457. "lib/net5.0/Zstandard.Net.dll",
  5458. "lib/netstandard2.0/MySql.Data.dll",
  5459. "lib/netstandard2.0/MySql.Data.xml",
  5460. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5461. "lib/netstandard2.0/Zstandard.Net.dll",
  5462. "lib/netstandard2.1/MySql.Data.dll",
  5463. "lib/netstandard2.1/MySql.Data.xml",
  5464. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5465. "lib/netstandard2.1/Zstandard.Net.dll",
  5466. "mysql.data.8.0.23.nupkg.sha512",
  5467. "mysql.data.nuspec"
  5468. ]
  5469. },
  5470. "MySqlConnector/1.1.0": {
  5471. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5472. "type": "package",
  5473. "path": "mysqlconnector/1.1.0",
  5474. "files": [
  5475. ".nupkg.metadata",
  5476. ".signature.p7s",
  5477. "lib/net45/MySqlConnector.dll",
  5478. "lib/net45/MySqlConnector.xml",
  5479. "lib/net461/MySqlConnector.dll",
  5480. "lib/net461/MySqlConnector.xml",
  5481. "lib/net471/MySqlConnector.dll",
  5482. "lib/net471/MySqlConnector.xml",
  5483. "lib/net5.0/MySqlConnector.dll",
  5484. "lib/net5.0/MySqlConnector.xml",
  5485. "lib/netcoreapp2.1/MySqlConnector.dll",
  5486. "lib/netcoreapp2.1/MySqlConnector.xml",
  5487. "lib/netcoreapp3.1/MySqlConnector.dll",
  5488. "lib/netcoreapp3.1/MySqlConnector.xml",
  5489. "lib/netstandard1.3/MySqlConnector.dll",
  5490. "lib/netstandard1.3/MySqlConnector.xml",
  5491. "lib/netstandard2.0/MySqlConnector.dll",
  5492. "lib/netstandard2.0/MySqlConnector.xml",
  5493. "lib/netstandard2.1/MySqlConnector.dll",
  5494. "lib/netstandard2.1/MySqlConnector.xml",
  5495. "logo.png",
  5496. "mysqlconnector.1.1.0.nupkg.sha512",
  5497. "mysqlconnector.nuspec"
  5498. ]
  5499. },
  5500. "NETStandard.Library/1.6.1": {
  5501. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5502. "type": "package",
  5503. "path": "netstandard.library/1.6.1",
  5504. "files": [
  5505. ".nupkg.metadata",
  5506. ".signature.p7s",
  5507. "ThirdPartyNotices.txt",
  5508. "dotnet_library_license.txt",
  5509. "netstandard.library.1.6.1.nupkg.sha512",
  5510. "netstandard.library.nuspec"
  5511. ]
  5512. },
  5513. "Newtonsoft.Json/13.0.1": {
  5514. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5515. "type": "package",
  5516. "path": "newtonsoft.json/13.0.1",
  5517. "files": [
  5518. ".nupkg.metadata",
  5519. ".signature.p7s",
  5520. "LICENSE.md",
  5521. "lib/net20/Newtonsoft.Json.dll",
  5522. "lib/net20/Newtonsoft.Json.xml",
  5523. "lib/net35/Newtonsoft.Json.dll",
  5524. "lib/net35/Newtonsoft.Json.xml",
  5525. "lib/net40/Newtonsoft.Json.dll",
  5526. "lib/net40/Newtonsoft.Json.xml",
  5527. "lib/net45/Newtonsoft.Json.dll",
  5528. "lib/net45/Newtonsoft.Json.xml",
  5529. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5530. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5531. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5532. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5533. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5534. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5535. "newtonsoft.json.13.0.1.nupkg.sha512",
  5536. "newtonsoft.json.nuspec",
  5537. "packageIcon.png"
  5538. ]
  5539. },
  5540. "Nito.AsyncEx.Coordination/5.0.0": {
  5541. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  5542. "type": "package",
  5543. "path": "nito.asyncex.coordination/5.0.0",
  5544. "files": [
  5545. ".nupkg.metadata",
  5546. ".signature.p7s",
  5547. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5548. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5549. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5550. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5551. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  5552. "nito.asyncex.coordination.nuspec"
  5553. ]
  5554. },
  5555. "Nito.AsyncEx.Tasks/5.0.0": {
  5556. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  5557. "type": "package",
  5558. "path": "nito.asyncex.tasks/5.0.0",
  5559. "files": [
  5560. ".nupkg.metadata",
  5561. ".signature.p7s",
  5562. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5563. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5564. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5565. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5566. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  5567. "nito.asyncex.tasks.nuspec"
  5568. ]
  5569. },
  5570. "Nito.Collections.Deque/1.0.4": {
  5571. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  5572. "type": "package",
  5573. "path": "nito.collections.deque/1.0.4",
  5574. "files": [
  5575. ".nupkg.metadata",
  5576. ".signature.p7s",
  5577. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5578. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5579. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5580. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5581. "nito.collections.deque.1.0.4.nupkg.sha512",
  5582. "nito.collections.deque.nuspec"
  5583. ]
  5584. },
  5585. "Nito.Disposables/2.0.0": {
  5586. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  5587. "type": "package",
  5588. "path": "nito.disposables/2.0.0",
  5589. "files": [
  5590. ".nupkg.metadata",
  5591. ".signature.p7s",
  5592. "lib/netstandard1.0/Nito.Disposables.dll",
  5593. "lib/netstandard1.0/Nito.Disposables.pdb",
  5594. "lib/netstandard1.0/Nito.Disposables.xml",
  5595. "lib/netstandard2.0/Nito.Disposables.dll",
  5596. "lib/netstandard2.0/Nito.Disposables.pdb",
  5597. "lib/netstandard2.0/Nito.Disposables.xml",
  5598. "nito.disposables.2.0.0.nupkg.sha512",
  5599. "nito.disposables.nuspec"
  5600. ]
  5601. },
  5602. "NLog/4.7.7": {
  5603. "sha512": "lCfAaKel4trne8Suf4/0aR9YPKDFLWKgqBupnHKNYx+cIjutF2BsVxfF2fAb+ObaYN3m5hDjx/ToVS15ouB+SA==",
  5604. "type": "package",
  5605. "path": "nlog/4.7.7",
  5606. "files": [
  5607. ".nupkg.metadata",
  5608. ".signature.p7s",
  5609. "lib/monoandroid44/NLog.dll",
  5610. "lib/monoandroid44/NLog.xml",
  5611. "lib/net35/NLog.dll",
  5612. "lib/net35/NLog.xml",
  5613. "lib/net40-client/NLog.dll",
  5614. "lib/net40-client/NLog.xml",
  5615. "lib/net45/NLog.dll",
  5616. "lib/net45/NLog.xml",
  5617. "lib/netstandard1.3/NLog.dll",
  5618. "lib/netstandard1.3/NLog.xml",
  5619. "lib/netstandard1.5/NLog.dll",
  5620. "lib/netstandard1.5/NLog.xml",
  5621. "lib/netstandard2.0/NLog.dll",
  5622. "lib/netstandard2.0/NLog.xml",
  5623. "lib/sl4/NLog.dll",
  5624. "lib/sl4/NLog.xml",
  5625. "lib/sl5/NLog.dll",
  5626. "lib/sl5/NLog.xml",
  5627. "lib/wp8/NLog.dll",
  5628. "lib/wp8/NLog.xml",
  5629. "lib/xamarinios10/NLog.dll",
  5630. "lib/xamarinios10/NLog.xml",
  5631. "nlog.4.7.7.nupkg.sha512",
  5632. "nlog.nuspec"
  5633. ]
  5634. },
  5635. "NodaTime/2.4.7": {
  5636. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  5637. "type": "package",
  5638. "path": "nodatime/2.4.7",
  5639. "files": [
  5640. ".nupkg.metadata",
  5641. ".signature.p7s",
  5642. "lib/net45/NodaTime.dll",
  5643. "lib/net45/NodaTime.pdb",
  5644. "lib/net45/NodaTime.xml",
  5645. "lib/netstandard1.3/NodaTime.dll",
  5646. "lib/netstandard1.3/NodaTime.pdb",
  5647. "lib/netstandard1.3/NodaTime.xml",
  5648. "lib/netstandard2.0/NodaTime.dll",
  5649. "lib/netstandard2.0/NodaTime.pdb",
  5650. "lib/netstandard2.0/NodaTime.xml",
  5651. "nodatime.2.4.7.nupkg.sha512",
  5652. "nodatime.nuspec"
  5653. ]
  5654. },
  5655. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5656. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5657. "type": "package",
  5658. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5659. "files": [
  5660. ".nupkg.metadata",
  5661. ".signature.p7s",
  5662. "icon.png",
  5663. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5664. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5665. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5666. "pomelo.entityframeworkcore.mysql.nuspec"
  5667. ]
  5668. },
  5669. "QRCoder/1.4.3": {
  5670. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5671. "type": "package",
  5672. "path": "qrcoder/1.4.3",
  5673. "files": [
  5674. ".nupkg.metadata",
  5675. ".signature.p7s",
  5676. "lib/net35/QRCoder.dll",
  5677. "lib/net40/QRCoder.dll",
  5678. "lib/net5.0-windows7.0/QRCoder.dll",
  5679. "lib/net5.0/QRCoder.dll",
  5680. "lib/net6.0-windows7.0/QRCoder.dll",
  5681. "lib/net6.0/QRCoder.dll",
  5682. "lib/netstandard1.3/QRCoder.dll",
  5683. "lib/netstandard2.0/QRCoder.dll",
  5684. "nuget-icon.png",
  5685. "nuget-readme.md",
  5686. "qrcoder.1.4.3.nupkg.sha512",
  5687. "qrcoder.nuspec"
  5688. ]
  5689. },
  5690. "Quartz/3.3.3": {
  5691. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5692. "type": "package",
  5693. "path": "quartz/3.3.3",
  5694. "files": [
  5695. ".nupkg.metadata",
  5696. ".signature.p7s",
  5697. "lib/net461/Quartz.dll",
  5698. "lib/net461/Quartz.xml",
  5699. "lib/net472/Quartz.dll",
  5700. "lib/net472/Quartz.xml",
  5701. "lib/netstandard2.0/Quartz.dll",
  5702. "lib/netstandard2.0/Quartz.xml",
  5703. "quartz-logo-small.png",
  5704. "quartz.3.3.3.nupkg.sha512",
  5705. "quartz.nuspec"
  5706. ]
  5707. },
  5708. "RabbitMQ.Client/6.8.1": {
  5709. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5710. "type": "package",
  5711. "path": "rabbitmq.client/6.8.1",
  5712. "files": [
  5713. ".nupkg.metadata",
  5714. ".signature.p7s",
  5715. "README.md",
  5716. "icon.png",
  5717. "lib/net462/RabbitMQ.Client.dll",
  5718. "lib/net462/RabbitMQ.Client.xml",
  5719. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5720. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5721. "rabbitmq.client.6.8.1.nupkg.sha512",
  5722. "rabbitmq.client.nuspec"
  5723. ]
  5724. },
  5725. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5726. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5727. "type": "package",
  5728. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5729. "files": [
  5730. ".nupkg.metadata",
  5731. ".signature.p7s",
  5732. "ThirdPartyNotices.txt",
  5733. "dotnet_library_license.txt",
  5734. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5735. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5736. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5737. ]
  5738. },
  5739. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5740. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5741. "type": "package",
  5742. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5743. "files": [
  5744. ".nupkg.metadata",
  5745. ".signature.p7s",
  5746. "ThirdPartyNotices.txt",
  5747. "dotnet_library_license.txt",
  5748. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5749. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5750. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5751. ]
  5752. },
  5753. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5754. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5755. "type": "package",
  5756. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5757. "files": [
  5758. ".nupkg.metadata",
  5759. ".signature.p7s",
  5760. "ThirdPartyNotices.txt",
  5761. "dotnet_library_license.txt",
  5762. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5763. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5764. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5765. ]
  5766. },
  5767. "runtime.native.System/4.3.0": {
  5768. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5769. "type": "package",
  5770. "path": "runtime.native.system/4.3.0",
  5771. "files": [
  5772. ".nupkg.metadata",
  5773. ".signature.p7s",
  5774. "ThirdPartyNotices.txt",
  5775. "dotnet_library_license.txt",
  5776. "lib/netstandard1.0/_._",
  5777. "runtime.native.system.4.3.0.nupkg.sha512",
  5778. "runtime.native.system.nuspec"
  5779. ]
  5780. },
  5781. "runtime.native.System.IO.Compression/4.3.0": {
  5782. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5783. "type": "package",
  5784. "path": "runtime.native.system.io.compression/4.3.0",
  5785. "files": [
  5786. ".nupkg.metadata",
  5787. ".signature.p7s",
  5788. "ThirdPartyNotices.txt",
  5789. "dotnet_library_license.txt",
  5790. "lib/netstandard1.0/_._",
  5791. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5792. "runtime.native.system.io.compression.nuspec"
  5793. ]
  5794. },
  5795. "runtime.native.System.Net.Http/4.3.0": {
  5796. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5797. "type": "package",
  5798. "path": "runtime.native.system.net.http/4.3.0",
  5799. "files": [
  5800. ".nupkg.metadata",
  5801. ".signature.p7s",
  5802. "ThirdPartyNotices.txt",
  5803. "dotnet_library_license.txt",
  5804. "lib/netstandard1.0/_._",
  5805. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5806. "runtime.native.system.net.http.nuspec"
  5807. ]
  5808. },
  5809. "runtime.native.System.Net.Security/4.3.0": {
  5810. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5811. "type": "package",
  5812. "path": "runtime.native.system.net.security/4.3.0",
  5813. "files": [
  5814. ".nupkg.metadata",
  5815. ".signature.p7s",
  5816. "ThirdPartyNotices.txt",
  5817. "dotnet_library_license.txt",
  5818. "lib/netstandard1.0/_._",
  5819. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5820. "runtime.native.system.net.security.nuspec"
  5821. ]
  5822. },
  5823. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5824. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5825. "type": "package",
  5826. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5827. "files": [
  5828. ".nupkg.metadata",
  5829. ".signature.p7s",
  5830. "ThirdPartyNotices.txt",
  5831. "dotnet_library_license.txt",
  5832. "lib/netstandard1.0/_._",
  5833. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5834. "runtime.native.system.security.cryptography.apple.nuspec"
  5835. ]
  5836. },
  5837. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5838. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5839. "type": "package",
  5840. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5841. "files": [
  5842. ".nupkg.metadata",
  5843. ".signature.p7s",
  5844. "ThirdPartyNotices.txt",
  5845. "dotnet_library_license.txt",
  5846. "lib/netstandard1.0/_._",
  5847. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5848. "runtime.native.system.security.cryptography.openssl.nuspec"
  5849. ]
  5850. },
  5851. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5852. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5853. "type": "package",
  5854. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5855. "files": [
  5856. ".nupkg.metadata",
  5857. ".signature.p7s",
  5858. "ThirdPartyNotices.txt",
  5859. "dotnet_library_license.txt",
  5860. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5861. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5862. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5863. ]
  5864. },
  5865. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5866. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5867. "type": "package",
  5868. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5869. "files": [
  5870. ".nupkg.metadata",
  5871. ".signature.p7s",
  5872. "ThirdPartyNotices.txt",
  5873. "dotnet_library_license.txt",
  5874. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5875. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5876. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5877. ]
  5878. },
  5879. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5880. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5881. "type": "package",
  5882. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5883. "files": [
  5884. ".nupkg.metadata",
  5885. ".signature.p7s",
  5886. "ThirdPartyNotices.txt",
  5887. "dotnet_library_license.txt",
  5888. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5889. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5890. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5891. ]
  5892. },
  5893. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5894. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5895. "type": "package",
  5896. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5897. "files": [
  5898. ".nupkg.metadata",
  5899. ".signature.p7s",
  5900. "ThirdPartyNotices.txt",
  5901. "dotnet_library_license.txt",
  5902. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5903. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5904. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5905. ]
  5906. },
  5907. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5908. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5909. "type": "package",
  5910. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5911. "files": [
  5912. ".nupkg.metadata",
  5913. ".signature.p7s",
  5914. "ThirdPartyNotices.txt",
  5915. "dotnet_library_license.txt",
  5916. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5917. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5918. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5919. ]
  5920. },
  5921. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5922. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5923. "type": "package",
  5924. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5925. "files": [
  5926. ".nupkg.metadata",
  5927. ".signature.p7s",
  5928. "ThirdPartyNotices.txt",
  5929. "dotnet_library_license.txt",
  5930. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5931. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5932. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5933. ]
  5934. },
  5935. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5936. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5937. "type": "package",
  5938. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5939. "files": [
  5940. ".nupkg.metadata",
  5941. ".signature.p7s",
  5942. "ThirdPartyNotices.txt",
  5943. "dotnet_library_license.txt",
  5944. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5945. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5946. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5947. ]
  5948. },
  5949. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5950. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5951. "type": "package",
  5952. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5953. "files": [
  5954. ".nupkg.metadata",
  5955. ".signature.p7s",
  5956. "ThirdPartyNotices.txt",
  5957. "dotnet_library_license.txt",
  5958. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5959. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5960. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5961. ]
  5962. },
  5963. "Serilog/2.11.0": {
  5964. "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  5965. "type": "package",
  5966. "path": "serilog/2.11.0",
  5967. "files": [
  5968. ".nupkg.metadata",
  5969. ".signature.p7s",
  5970. "icon.png",
  5971. "lib/net45/Serilog.dll",
  5972. "lib/net45/Serilog.xml",
  5973. "lib/net46/Serilog.dll",
  5974. "lib/net46/Serilog.xml",
  5975. "lib/net5.0/Serilog.dll",
  5976. "lib/net5.0/Serilog.xml",
  5977. "lib/netstandard1.0/Serilog.dll",
  5978. "lib/netstandard1.0/Serilog.xml",
  5979. "lib/netstandard1.3/Serilog.dll",
  5980. "lib/netstandard1.3/Serilog.xml",
  5981. "lib/netstandard2.0/Serilog.dll",
  5982. "lib/netstandard2.0/Serilog.xml",
  5983. "lib/netstandard2.1/Serilog.dll",
  5984. "lib/netstandard2.1/Serilog.xml",
  5985. "serilog.2.11.0.nupkg.sha512",
  5986. "serilog.nuspec"
  5987. ]
  5988. },
  5989. "Serilog.Sinks.Console/4.0.1": {
  5990. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  5991. "type": "package",
  5992. "path": "serilog.sinks.console/4.0.1",
  5993. "files": [
  5994. ".nupkg.metadata",
  5995. ".signature.p7s",
  5996. "icon.png",
  5997. "lib/net45/Serilog.Sinks.Console.dll",
  5998. "lib/net45/Serilog.Sinks.Console.xml",
  5999. "lib/net5.0/Serilog.Sinks.Console.dll",
  6000. "lib/net5.0/Serilog.Sinks.Console.xml",
  6001. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  6002. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  6003. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  6004. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  6005. "serilog.sinks.console.4.0.1.nupkg.sha512",
  6006. "serilog.sinks.console.nuspec"
  6007. ]
  6008. },
  6009. "Serilog.Sinks.File/5.0.0": {
  6010. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  6011. "type": "package",
  6012. "path": "serilog.sinks.file/5.0.0",
  6013. "files": [
  6014. ".nupkg.metadata",
  6015. ".signature.p7s",
  6016. "images/icon.png",
  6017. "lib/net45/Serilog.Sinks.File.dll",
  6018. "lib/net45/Serilog.Sinks.File.pdb",
  6019. "lib/net45/Serilog.Sinks.File.xml",
  6020. "lib/net5.0/Serilog.Sinks.File.dll",
  6021. "lib/net5.0/Serilog.Sinks.File.pdb",
  6022. "lib/net5.0/Serilog.Sinks.File.xml",
  6023. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  6024. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  6025. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  6026. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  6027. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  6028. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  6029. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  6030. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  6031. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  6032. "serilog.sinks.file.5.0.0.nupkg.sha512",
  6033. "serilog.sinks.file.nuspec"
  6034. ]
  6035. },
  6036. "SixLabors.ImageSharp/2.1.6": {
  6037. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  6038. "type": "package",
  6039. "path": "sixlabors.imagesharp/2.1.6",
  6040. "files": [
  6041. ".nupkg.metadata",
  6042. ".signature.p7s",
  6043. "lib/net472/SixLabors.ImageSharp.dll",
  6044. "lib/net472/SixLabors.ImageSharp.xml",
  6045. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  6046. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  6047. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  6048. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  6049. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  6050. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  6051. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  6052. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  6053. "sixlabors.imagesharp.128.png",
  6054. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  6055. "sixlabors.imagesharp.nuspec"
  6056. ]
  6057. },
  6058. "SSH.NET/2020.0.0-beta1": {
  6059. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  6060. "type": "package",
  6061. "path": "ssh.net/2020.0.0-beta1",
  6062. "files": [
  6063. ".nupkg.metadata",
  6064. ".signature.p7s",
  6065. "lib/net35/Renci.SshNet.dll",
  6066. "lib/net35/Renci.SshNet.xml",
  6067. "lib/net40/Renci.SshNet.dll",
  6068. "lib/net40/Renci.SshNet.xml",
  6069. "lib/netstandard1.3/Renci.SshNet.dll",
  6070. "lib/netstandard1.3/Renci.SshNet.xml",
  6071. "lib/netstandard2.0/Renci.SshNet.dll",
  6072. "lib/netstandard2.0/Renci.SshNet.xml",
  6073. "lib/sl4/Renci.SshNet.dll",
  6074. "lib/sl4/Renci.SshNet.xml",
  6075. "lib/sl5/Renci.SshNet.dll",
  6076. "lib/sl5/Renci.SshNet.xml",
  6077. "lib/uap10/Renci.SshNet.dll",
  6078. "lib/uap10/Renci.SshNet.xml",
  6079. "lib/wp71/Renci.SshNet.dll",
  6080. "lib/wp71/Renci.SshNet.xml",
  6081. "lib/wp8/Renci.SshNet.dll",
  6082. "lib/wp8/Renci.SshNet.xml",
  6083. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  6084. "ssh.net.nuspec"
  6085. ]
  6086. },
  6087. "SshNet.Security.Cryptography/1.3.0": {
  6088. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  6089. "type": "package",
  6090. "path": "sshnet.security.cryptography/1.3.0",
  6091. "files": [
  6092. ".nupkg.metadata",
  6093. ".signature.p7s",
  6094. "lib/net20/SshNet.Security.Cryptography.dll",
  6095. "lib/net20/SshNet.Security.Cryptography.xml",
  6096. "lib/net40/SshNet.Security.Cryptography.dll",
  6097. "lib/net40/SshNet.Security.Cryptography.xml",
  6098. "lib/net45/SshNet.Security.Cryptography.dll",
  6099. "lib/net45/SshNet.Security.Cryptography.xml",
  6100. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  6101. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  6102. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  6103. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  6104. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  6105. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  6106. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  6107. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  6108. "lib/sl4/SshNet.Security.Cryptography.dll",
  6109. "lib/sl4/SshNet.Security.Cryptography.xml",
  6110. "lib/sl5/SshNet.Security.Cryptography.dll",
  6111. "lib/sl5/SshNet.Security.Cryptography.xml",
  6112. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  6113. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  6114. "lib/wp71/SshNet.Security.Cryptography.dll",
  6115. "lib/wp71/SshNet.Security.Cryptography.xml",
  6116. "lib/wp8/SshNet.Security.Cryptography.dll",
  6117. "lib/wp8/SshNet.Security.Cryptography.xml",
  6118. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  6119. "sshnet.security.cryptography.nuspec"
  6120. ]
  6121. },
  6122. "StackExchange.Redis/1.2.4": {
  6123. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  6124. "type": "package",
  6125. "path": "stackexchange.redis/1.2.4",
  6126. "files": [
  6127. ".nupkg.metadata",
  6128. ".signature.p7s",
  6129. "lib/net45/StackExchange.Redis.dll",
  6130. "lib/net45/StackExchange.Redis.xml",
  6131. "lib/net46/StackExchange.Redis.dll",
  6132. "lib/net46/StackExchange.Redis.xml",
  6133. "lib/netstandard1.5/StackExchange.Redis.dll",
  6134. "lib/netstandard1.5/StackExchange.Redis.xml",
  6135. "stackexchange.redis.1.2.4.nupkg.sha512",
  6136. "stackexchange.redis.nuspec"
  6137. ]
  6138. },
  6139. "System.AppContext/4.3.0": {
  6140. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  6141. "type": "package",
  6142. "path": "system.appcontext/4.3.0",
  6143. "files": [
  6144. ".nupkg.metadata",
  6145. ".signature.p7s",
  6146. "ThirdPartyNotices.txt",
  6147. "dotnet_library_license.txt",
  6148. "lib/MonoAndroid10/_._",
  6149. "lib/MonoTouch10/_._",
  6150. "lib/net46/System.AppContext.dll",
  6151. "lib/net463/System.AppContext.dll",
  6152. "lib/netcore50/System.AppContext.dll",
  6153. "lib/netstandard1.6/System.AppContext.dll",
  6154. "lib/xamarinios10/_._",
  6155. "lib/xamarinmac20/_._",
  6156. "lib/xamarintvos10/_._",
  6157. "lib/xamarinwatchos10/_._",
  6158. "ref/MonoAndroid10/_._",
  6159. "ref/MonoTouch10/_._",
  6160. "ref/net46/System.AppContext.dll",
  6161. "ref/net463/System.AppContext.dll",
  6162. "ref/netstandard/_._",
  6163. "ref/netstandard1.3/System.AppContext.dll",
  6164. "ref/netstandard1.3/System.AppContext.xml",
  6165. "ref/netstandard1.3/de/System.AppContext.xml",
  6166. "ref/netstandard1.3/es/System.AppContext.xml",
  6167. "ref/netstandard1.3/fr/System.AppContext.xml",
  6168. "ref/netstandard1.3/it/System.AppContext.xml",
  6169. "ref/netstandard1.3/ja/System.AppContext.xml",
  6170. "ref/netstandard1.3/ko/System.AppContext.xml",
  6171. "ref/netstandard1.3/ru/System.AppContext.xml",
  6172. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  6173. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  6174. "ref/netstandard1.6/System.AppContext.dll",
  6175. "ref/netstandard1.6/System.AppContext.xml",
  6176. "ref/netstandard1.6/de/System.AppContext.xml",
  6177. "ref/netstandard1.6/es/System.AppContext.xml",
  6178. "ref/netstandard1.6/fr/System.AppContext.xml",
  6179. "ref/netstandard1.6/it/System.AppContext.xml",
  6180. "ref/netstandard1.6/ja/System.AppContext.xml",
  6181. "ref/netstandard1.6/ko/System.AppContext.xml",
  6182. "ref/netstandard1.6/ru/System.AppContext.xml",
  6183. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  6184. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  6185. "ref/xamarinios10/_._",
  6186. "ref/xamarinmac20/_._",
  6187. "ref/xamarintvos10/_._",
  6188. "ref/xamarinwatchos10/_._",
  6189. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  6190. "system.appcontext.4.3.0.nupkg.sha512",
  6191. "system.appcontext.nuspec"
  6192. ]
  6193. },
  6194. "System.Buffers/4.5.1": {
  6195. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  6196. "type": "package",
  6197. "path": "system.buffers/4.5.1",
  6198. "files": [
  6199. ".nupkg.metadata",
  6200. ".signature.p7s",
  6201. "LICENSE.TXT",
  6202. "THIRD-PARTY-NOTICES.TXT",
  6203. "lib/net461/System.Buffers.dll",
  6204. "lib/net461/System.Buffers.xml",
  6205. "lib/netcoreapp2.0/_._",
  6206. "lib/netstandard1.1/System.Buffers.dll",
  6207. "lib/netstandard1.1/System.Buffers.xml",
  6208. "lib/netstandard2.0/System.Buffers.dll",
  6209. "lib/netstandard2.0/System.Buffers.xml",
  6210. "lib/uap10.0.16299/_._",
  6211. "ref/net45/System.Buffers.dll",
  6212. "ref/net45/System.Buffers.xml",
  6213. "ref/netcoreapp2.0/_._",
  6214. "ref/netstandard1.1/System.Buffers.dll",
  6215. "ref/netstandard1.1/System.Buffers.xml",
  6216. "ref/netstandard2.0/System.Buffers.dll",
  6217. "ref/netstandard2.0/System.Buffers.xml",
  6218. "ref/uap10.0.16299/_._",
  6219. "system.buffers.4.5.1.nupkg.sha512",
  6220. "system.buffers.nuspec",
  6221. "useSharedDesignerContext.txt",
  6222. "version.txt"
  6223. ]
  6224. },
  6225. "System.Collections/4.3.0": {
  6226. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6227. "type": "package",
  6228. "path": "system.collections/4.3.0",
  6229. "files": [
  6230. ".nupkg.metadata",
  6231. ".signature.p7s",
  6232. "ThirdPartyNotices.txt",
  6233. "dotnet_library_license.txt",
  6234. "lib/MonoAndroid10/_._",
  6235. "lib/MonoTouch10/_._",
  6236. "lib/net45/_._",
  6237. "lib/portable-net45+win8+wp8+wpa81/_._",
  6238. "lib/win8/_._",
  6239. "lib/wp80/_._",
  6240. "lib/wpa81/_._",
  6241. "lib/xamarinios10/_._",
  6242. "lib/xamarinmac20/_._",
  6243. "lib/xamarintvos10/_._",
  6244. "lib/xamarinwatchos10/_._",
  6245. "ref/MonoAndroid10/_._",
  6246. "ref/MonoTouch10/_._",
  6247. "ref/net45/_._",
  6248. "ref/netcore50/System.Collections.dll",
  6249. "ref/netcore50/System.Collections.xml",
  6250. "ref/netcore50/de/System.Collections.xml",
  6251. "ref/netcore50/es/System.Collections.xml",
  6252. "ref/netcore50/fr/System.Collections.xml",
  6253. "ref/netcore50/it/System.Collections.xml",
  6254. "ref/netcore50/ja/System.Collections.xml",
  6255. "ref/netcore50/ko/System.Collections.xml",
  6256. "ref/netcore50/ru/System.Collections.xml",
  6257. "ref/netcore50/zh-hans/System.Collections.xml",
  6258. "ref/netcore50/zh-hant/System.Collections.xml",
  6259. "ref/netstandard1.0/System.Collections.dll",
  6260. "ref/netstandard1.0/System.Collections.xml",
  6261. "ref/netstandard1.0/de/System.Collections.xml",
  6262. "ref/netstandard1.0/es/System.Collections.xml",
  6263. "ref/netstandard1.0/fr/System.Collections.xml",
  6264. "ref/netstandard1.0/it/System.Collections.xml",
  6265. "ref/netstandard1.0/ja/System.Collections.xml",
  6266. "ref/netstandard1.0/ko/System.Collections.xml",
  6267. "ref/netstandard1.0/ru/System.Collections.xml",
  6268. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6269. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6270. "ref/netstandard1.3/System.Collections.dll",
  6271. "ref/netstandard1.3/System.Collections.xml",
  6272. "ref/netstandard1.3/de/System.Collections.xml",
  6273. "ref/netstandard1.3/es/System.Collections.xml",
  6274. "ref/netstandard1.3/fr/System.Collections.xml",
  6275. "ref/netstandard1.3/it/System.Collections.xml",
  6276. "ref/netstandard1.3/ja/System.Collections.xml",
  6277. "ref/netstandard1.3/ko/System.Collections.xml",
  6278. "ref/netstandard1.3/ru/System.Collections.xml",
  6279. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6280. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6281. "ref/portable-net45+win8+wp8+wpa81/_._",
  6282. "ref/win8/_._",
  6283. "ref/wp80/_._",
  6284. "ref/wpa81/_._",
  6285. "ref/xamarinios10/_._",
  6286. "ref/xamarinmac20/_._",
  6287. "ref/xamarintvos10/_._",
  6288. "ref/xamarinwatchos10/_._",
  6289. "system.collections.4.3.0.nupkg.sha512",
  6290. "system.collections.nuspec"
  6291. ]
  6292. },
  6293. "System.Collections.Concurrent/4.3.0": {
  6294. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6295. "type": "package",
  6296. "path": "system.collections.concurrent/4.3.0",
  6297. "files": [
  6298. ".nupkg.metadata",
  6299. ".signature.p7s",
  6300. "ThirdPartyNotices.txt",
  6301. "dotnet_library_license.txt",
  6302. "lib/MonoAndroid10/_._",
  6303. "lib/MonoTouch10/_._",
  6304. "lib/net45/_._",
  6305. "lib/netcore50/System.Collections.Concurrent.dll",
  6306. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6307. "lib/portable-net45+win8+wpa81/_._",
  6308. "lib/win8/_._",
  6309. "lib/wpa81/_._",
  6310. "lib/xamarinios10/_._",
  6311. "lib/xamarinmac20/_._",
  6312. "lib/xamarintvos10/_._",
  6313. "lib/xamarinwatchos10/_._",
  6314. "ref/MonoAndroid10/_._",
  6315. "ref/MonoTouch10/_._",
  6316. "ref/net45/_._",
  6317. "ref/netcore50/System.Collections.Concurrent.dll",
  6318. "ref/netcore50/System.Collections.Concurrent.xml",
  6319. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6320. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6321. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6322. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6323. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6324. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6325. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6326. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6327. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6328. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6329. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6330. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6331. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6332. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6333. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6334. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6335. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6336. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6337. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6338. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6339. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6340. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6341. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6342. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6343. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6344. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6345. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6346. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6347. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6348. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6349. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6350. "ref/portable-net45+win8+wpa81/_._",
  6351. "ref/win8/_._",
  6352. "ref/wpa81/_._",
  6353. "ref/xamarinios10/_._",
  6354. "ref/xamarinmac20/_._",
  6355. "ref/xamarintvos10/_._",
  6356. "ref/xamarinwatchos10/_._",
  6357. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6358. "system.collections.concurrent.nuspec"
  6359. ]
  6360. },
  6361. "System.Collections.Immutable/5.0.0": {
  6362. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6363. "type": "package",
  6364. "path": "system.collections.immutable/5.0.0",
  6365. "files": [
  6366. ".nupkg.metadata",
  6367. ".signature.p7s",
  6368. "Icon.png",
  6369. "LICENSE.TXT",
  6370. "THIRD-PARTY-NOTICES.TXT",
  6371. "lib/net461/System.Collections.Immutable.dll",
  6372. "lib/net461/System.Collections.Immutable.xml",
  6373. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6374. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6375. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6376. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6377. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6378. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6379. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6380. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6381. "system.collections.immutable.5.0.0.nupkg.sha512",
  6382. "system.collections.immutable.nuspec",
  6383. "useSharedDesignerContext.txt",
  6384. "version.txt"
  6385. ]
  6386. },
  6387. "System.Collections.NonGeneric/4.3.0": {
  6388. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6389. "type": "package",
  6390. "path": "system.collections.nongeneric/4.3.0",
  6391. "files": [
  6392. ".nupkg.metadata",
  6393. ".signature.p7s",
  6394. "ThirdPartyNotices.txt",
  6395. "dotnet_library_license.txt",
  6396. "lib/MonoAndroid10/_._",
  6397. "lib/MonoTouch10/_._",
  6398. "lib/net46/System.Collections.NonGeneric.dll",
  6399. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6400. "lib/xamarinios10/_._",
  6401. "lib/xamarinmac20/_._",
  6402. "lib/xamarintvos10/_._",
  6403. "lib/xamarinwatchos10/_._",
  6404. "ref/MonoAndroid10/_._",
  6405. "ref/MonoTouch10/_._",
  6406. "ref/net46/System.Collections.NonGeneric.dll",
  6407. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6408. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6409. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6410. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6411. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6412. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6413. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6414. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6415. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6416. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6417. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6418. "ref/xamarinios10/_._",
  6419. "ref/xamarinmac20/_._",
  6420. "ref/xamarintvos10/_._",
  6421. "ref/xamarinwatchos10/_._",
  6422. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6423. "system.collections.nongeneric.nuspec"
  6424. ]
  6425. },
  6426. "System.Collections.Specialized/4.3.0": {
  6427. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6428. "type": "package",
  6429. "path": "system.collections.specialized/4.3.0",
  6430. "files": [
  6431. ".nupkg.metadata",
  6432. ".signature.p7s",
  6433. "ThirdPartyNotices.txt",
  6434. "dotnet_library_license.txt",
  6435. "lib/MonoAndroid10/_._",
  6436. "lib/MonoTouch10/_._",
  6437. "lib/net46/System.Collections.Specialized.dll",
  6438. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6439. "lib/xamarinios10/_._",
  6440. "lib/xamarinmac20/_._",
  6441. "lib/xamarintvos10/_._",
  6442. "lib/xamarinwatchos10/_._",
  6443. "ref/MonoAndroid10/_._",
  6444. "ref/MonoTouch10/_._",
  6445. "ref/net46/System.Collections.Specialized.dll",
  6446. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6447. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6448. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6449. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6450. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6451. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6452. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6453. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6454. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6455. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6456. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6457. "ref/xamarinios10/_._",
  6458. "ref/xamarinmac20/_._",
  6459. "ref/xamarintvos10/_._",
  6460. "ref/xamarinwatchos10/_._",
  6461. "system.collections.specialized.4.3.0.nupkg.sha512",
  6462. "system.collections.specialized.nuspec"
  6463. ]
  6464. },
  6465. "System.ComponentModel/4.3.0": {
  6466. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6467. "type": "package",
  6468. "path": "system.componentmodel/4.3.0",
  6469. "files": [
  6470. ".nupkg.metadata",
  6471. ".signature.p7s",
  6472. "ThirdPartyNotices.txt",
  6473. "dotnet_library_license.txt",
  6474. "lib/MonoAndroid10/_._",
  6475. "lib/MonoTouch10/_._",
  6476. "lib/net45/_._",
  6477. "lib/netcore50/System.ComponentModel.dll",
  6478. "lib/netstandard1.3/System.ComponentModel.dll",
  6479. "lib/portable-net45+win8+wp8+wpa81/_._",
  6480. "lib/win8/_._",
  6481. "lib/wp80/_._",
  6482. "lib/wpa81/_._",
  6483. "lib/xamarinios10/_._",
  6484. "lib/xamarinmac20/_._",
  6485. "lib/xamarintvos10/_._",
  6486. "lib/xamarinwatchos10/_._",
  6487. "ref/MonoAndroid10/_._",
  6488. "ref/MonoTouch10/_._",
  6489. "ref/net45/_._",
  6490. "ref/netcore50/System.ComponentModel.dll",
  6491. "ref/netcore50/System.ComponentModel.xml",
  6492. "ref/netcore50/de/System.ComponentModel.xml",
  6493. "ref/netcore50/es/System.ComponentModel.xml",
  6494. "ref/netcore50/fr/System.ComponentModel.xml",
  6495. "ref/netcore50/it/System.ComponentModel.xml",
  6496. "ref/netcore50/ja/System.ComponentModel.xml",
  6497. "ref/netcore50/ko/System.ComponentModel.xml",
  6498. "ref/netcore50/ru/System.ComponentModel.xml",
  6499. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6500. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6501. "ref/netstandard1.0/System.ComponentModel.dll",
  6502. "ref/netstandard1.0/System.ComponentModel.xml",
  6503. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6504. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6505. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6506. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6507. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6508. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6509. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6510. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6511. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6512. "ref/portable-net45+win8+wp8+wpa81/_._",
  6513. "ref/win8/_._",
  6514. "ref/wp80/_._",
  6515. "ref/wpa81/_._",
  6516. "ref/xamarinios10/_._",
  6517. "ref/xamarinmac20/_._",
  6518. "ref/xamarintvos10/_._",
  6519. "ref/xamarinwatchos10/_._",
  6520. "system.componentmodel.4.3.0.nupkg.sha512",
  6521. "system.componentmodel.nuspec"
  6522. ]
  6523. },
  6524. "System.ComponentModel.Annotations/5.0.0": {
  6525. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6526. "type": "package",
  6527. "path": "system.componentmodel.annotations/5.0.0",
  6528. "files": [
  6529. ".nupkg.metadata",
  6530. ".signature.p7s",
  6531. "Icon.png",
  6532. "LICENSE.TXT",
  6533. "THIRD-PARTY-NOTICES.TXT",
  6534. "lib/MonoAndroid10/_._",
  6535. "lib/MonoTouch10/_._",
  6536. "lib/net45/_._",
  6537. "lib/net461/System.ComponentModel.Annotations.dll",
  6538. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6539. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6540. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6541. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6542. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6543. "lib/portable-net45+win8/_._",
  6544. "lib/win8/_._",
  6545. "lib/xamarinios10/_._",
  6546. "lib/xamarinmac20/_._",
  6547. "lib/xamarintvos10/_._",
  6548. "lib/xamarinwatchos10/_._",
  6549. "ref/MonoAndroid10/_._",
  6550. "ref/MonoTouch10/_._",
  6551. "ref/net45/_._",
  6552. "ref/net461/System.ComponentModel.Annotations.dll",
  6553. "ref/net461/System.ComponentModel.Annotations.xml",
  6554. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6555. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6556. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6557. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6558. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6559. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6560. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6561. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6562. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6563. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6564. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6565. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6566. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6567. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6568. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6569. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6570. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6571. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6572. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6573. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6574. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6575. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6576. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6577. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6578. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6579. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6580. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6581. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6582. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6583. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6584. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6585. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6586. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6587. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6588. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6589. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6590. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6591. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6592. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6593. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6594. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6595. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6596. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6597. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6598. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6599. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6600. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6601. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6602. "ref/portable-net45+win8/_._",
  6603. "ref/win8/_._",
  6604. "ref/xamarinios10/_._",
  6605. "ref/xamarinmac20/_._",
  6606. "ref/xamarintvos10/_._",
  6607. "ref/xamarinwatchos10/_._",
  6608. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6609. "system.componentmodel.annotations.nuspec",
  6610. "useSharedDesignerContext.txt",
  6611. "version.txt"
  6612. ]
  6613. },
  6614. "System.ComponentModel.EventBasedAsync/4.3.0": {
  6615. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  6616. "type": "package",
  6617. "path": "system.componentmodel.eventbasedasync/4.3.0",
  6618. "files": [
  6619. ".nupkg.metadata",
  6620. ".signature.p7s",
  6621. "ThirdPartyNotices.txt",
  6622. "dotnet_library_license.txt",
  6623. "lib/MonoAndroid10/_._",
  6624. "lib/MonoTouch10/_._",
  6625. "lib/net45/_._",
  6626. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6627. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6628. "lib/portable-net45+win8+wp8+wpa81/_._",
  6629. "lib/win8/_._",
  6630. "lib/wp80/_._",
  6631. "lib/wpa81/_._",
  6632. "lib/xamarinios10/_._",
  6633. "lib/xamarinmac20/_._",
  6634. "lib/xamarintvos10/_._",
  6635. "lib/xamarinwatchos10/_._",
  6636. "ref/MonoAndroid10/_._",
  6637. "ref/MonoTouch10/_._",
  6638. "ref/net45/_._",
  6639. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6640. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  6641. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  6642. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  6643. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  6644. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  6645. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  6646. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  6647. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  6648. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6649. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6650. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  6651. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  6652. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  6653. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  6654. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  6655. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  6656. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  6657. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  6658. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  6659. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6660. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6661. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6662. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  6663. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  6664. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  6665. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  6666. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  6667. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  6668. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  6669. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  6670. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6671. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6672. "ref/portable-net45+win8+wp8+wpa81/_._",
  6673. "ref/win8/_._",
  6674. "ref/wp80/_._",
  6675. "ref/wpa81/_._",
  6676. "ref/xamarinios10/_._",
  6677. "ref/xamarinmac20/_._",
  6678. "ref/xamarintvos10/_._",
  6679. "ref/xamarinwatchos10/_._",
  6680. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  6681. "system.componentmodel.eventbasedasync.nuspec"
  6682. ]
  6683. },
  6684. "System.ComponentModel.Primitives/4.3.0": {
  6685. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6686. "type": "package",
  6687. "path": "system.componentmodel.primitives/4.3.0",
  6688. "files": [
  6689. ".nupkg.metadata",
  6690. ".signature.p7s",
  6691. "ThirdPartyNotices.txt",
  6692. "dotnet_library_license.txt",
  6693. "lib/MonoAndroid10/_._",
  6694. "lib/MonoTouch10/_._",
  6695. "lib/net45/System.ComponentModel.Primitives.dll",
  6696. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6697. "lib/xamarinios10/_._",
  6698. "lib/xamarinmac20/_._",
  6699. "lib/xamarintvos10/_._",
  6700. "lib/xamarinwatchos10/_._",
  6701. "ref/MonoAndroid10/_._",
  6702. "ref/MonoTouch10/_._",
  6703. "ref/net45/System.ComponentModel.Primitives.dll",
  6704. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6705. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6706. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6707. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6708. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6709. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6710. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6711. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6712. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6713. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6714. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6715. "ref/xamarinios10/_._",
  6716. "ref/xamarinmac20/_._",
  6717. "ref/xamarintvos10/_._",
  6718. "ref/xamarinwatchos10/_._",
  6719. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6720. "system.componentmodel.primitives.nuspec"
  6721. ]
  6722. },
  6723. "System.ComponentModel.TypeConverter/4.3.0": {
  6724. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6725. "type": "package",
  6726. "path": "system.componentmodel.typeconverter/4.3.0",
  6727. "files": [
  6728. ".nupkg.metadata",
  6729. ".signature.p7s",
  6730. "ThirdPartyNotices.txt",
  6731. "dotnet_library_license.txt",
  6732. "lib/MonoAndroid10/_._",
  6733. "lib/MonoTouch10/_._",
  6734. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6735. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6736. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6737. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6738. "lib/xamarinios10/_._",
  6739. "lib/xamarinmac20/_._",
  6740. "lib/xamarintvos10/_._",
  6741. "lib/xamarinwatchos10/_._",
  6742. "ref/MonoAndroid10/_._",
  6743. "ref/MonoTouch10/_._",
  6744. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6745. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6746. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6747. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6748. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6749. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6750. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6751. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6752. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6753. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6754. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6755. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6756. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6757. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6758. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6759. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6760. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6761. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6762. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6763. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6764. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6765. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6766. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6767. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6768. "ref/xamarinios10/_._",
  6769. "ref/xamarinmac20/_._",
  6770. "ref/xamarintvos10/_._",
  6771. "ref/xamarinwatchos10/_._",
  6772. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6773. "system.componentmodel.typeconverter.nuspec"
  6774. ]
  6775. },
  6776. "System.Configuration.ConfigurationManager/4.7.0": {
  6777. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6778. "type": "package",
  6779. "path": "system.configuration.configurationmanager/4.7.0",
  6780. "files": [
  6781. ".nupkg.metadata",
  6782. ".signature.p7s",
  6783. "LICENSE.TXT",
  6784. "THIRD-PARTY-NOTICES.TXT",
  6785. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6786. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6787. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6788. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6789. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6790. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6791. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6792. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6793. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6794. "system.configuration.configurationmanager.nuspec",
  6795. "useSharedDesignerContext.txt",
  6796. "version.txt"
  6797. ]
  6798. },
  6799. "System.Console/4.3.0": {
  6800. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6801. "type": "package",
  6802. "path": "system.console/4.3.0",
  6803. "files": [
  6804. ".nupkg.metadata",
  6805. ".signature.p7s",
  6806. "ThirdPartyNotices.txt",
  6807. "dotnet_library_license.txt",
  6808. "lib/MonoAndroid10/_._",
  6809. "lib/MonoTouch10/_._",
  6810. "lib/net46/System.Console.dll",
  6811. "lib/xamarinios10/_._",
  6812. "lib/xamarinmac20/_._",
  6813. "lib/xamarintvos10/_._",
  6814. "lib/xamarinwatchos10/_._",
  6815. "ref/MonoAndroid10/_._",
  6816. "ref/MonoTouch10/_._",
  6817. "ref/net46/System.Console.dll",
  6818. "ref/netstandard1.3/System.Console.dll",
  6819. "ref/netstandard1.3/System.Console.xml",
  6820. "ref/netstandard1.3/de/System.Console.xml",
  6821. "ref/netstandard1.3/es/System.Console.xml",
  6822. "ref/netstandard1.3/fr/System.Console.xml",
  6823. "ref/netstandard1.3/it/System.Console.xml",
  6824. "ref/netstandard1.3/ja/System.Console.xml",
  6825. "ref/netstandard1.3/ko/System.Console.xml",
  6826. "ref/netstandard1.3/ru/System.Console.xml",
  6827. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6828. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6829. "ref/xamarinios10/_._",
  6830. "ref/xamarinmac20/_._",
  6831. "ref/xamarintvos10/_._",
  6832. "ref/xamarinwatchos10/_._",
  6833. "system.console.4.3.0.nupkg.sha512",
  6834. "system.console.nuspec"
  6835. ]
  6836. },
  6837. "System.Diagnostics.Debug/4.3.0": {
  6838. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6839. "type": "package",
  6840. "path": "system.diagnostics.debug/4.3.0",
  6841. "files": [
  6842. ".nupkg.metadata",
  6843. ".signature.p7s",
  6844. "ThirdPartyNotices.txt",
  6845. "dotnet_library_license.txt",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/net45/_._",
  6849. "lib/portable-net45+win8+wp8+wpa81/_._",
  6850. "lib/win8/_._",
  6851. "lib/wp80/_._",
  6852. "lib/wpa81/_._",
  6853. "lib/xamarinios10/_._",
  6854. "lib/xamarinmac20/_._",
  6855. "lib/xamarintvos10/_._",
  6856. "lib/xamarinwatchos10/_._",
  6857. "ref/MonoAndroid10/_._",
  6858. "ref/MonoTouch10/_._",
  6859. "ref/net45/_._",
  6860. "ref/netcore50/System.Diagnostics.Debug.dll",
  6861. "ref/netcore50/System.Diagnostics.Debug.xml",
  6862. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6863. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6864. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6865. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6866. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6867. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6868. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6869. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6870. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6871. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6872. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6873. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6874. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6875. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6876. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6877. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6878. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6879. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6880. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6881. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6882. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6883. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6884. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6885. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6886. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6887. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6888. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6889. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6890. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6891. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6892. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6893. "ref/portable-net45+win8+wp8+wpa81/_._",
  6894. "ref/win8/_._",
  6895. "ref/wp80/_._",
  6896. "ref/wpa81/_._",
  6897. "ref/xamarinios10/_._",
  6898. "ref/xamarinmac20/_._",
  6899. "ref/xamarintvos10/_._",
  6900. "ref/xamarinwatchos10/_._",
  6901. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6902. "system.diagnostics.debug.nuspec"
  6903. ]
  6904. },
  6905. "System.Diagnostics.DiagnosticSource/5.0.0": {
  6906. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  6907. "type": "package",
  6908. "path": "system.diagnostics.diagnosticsource/5.0.0",
  6909. "files": [
  6910. ".nupkg.metadata",
  6911. ".signature.p7s",
  6912. "Icon.png",
  6913. "LICENSE.TXT",
  6914. "THIRD-PARTY-NOTICES.TXT",
  6915. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6916. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6917. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6918. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6919. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6920. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6921. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6922. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6923. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6924. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6925. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6926. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6927. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  6928. "system.diagnostics.diagnosticsource.nuspec",
  6929. "useSharedDesignerContext.txt",
  6930. "version.txt"
  6931. ]
  6932. },
  6933. "System.Diagnostics.Tools/4.3.0": {
  6934. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6935. "type": "package",
  6936. "path": "system.diagnostics.tools/4.3.0",
  6937. "files": [
  6938. ".nupkg.metadata",
  6939. ".signature.p7s",
  6940. "ThirdPartyNotices.txt",
  6941. "dotnet_library_license.txt",
  6942. "lib/MonoAndroid10/_._",
  6943. "lib/MonoTouch10/_._",
  6944. "lib/net45/_._",
  6945. "lib/portable-net45+win8+wp8+wpa81/_._",
  6946. "lib/win8/_._",
  6947. "lib/wp80/_._",
  6948. "lib/wpa81/_._",
  6949. "lib/xamarinios10/_._",
  6950. "lib/xamarinmac20/_._",
  6951. "lib/xamarintvos10/_._",
  6952. "lib/xamarinwatchos10/_._",
  6953. "ref/MonoAndroid10/_._",
  6954. "ref/MonoTouch10/_._",
  6955. "ref/net45/_._",
  6956. "ref/netcore50/System.Diagnostics.Tools.dll",
  6957. "ref/netcore50/System.Diagnostics.Tools.xml",
  6958. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6959. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6960. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6961. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6962. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6963. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6964. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6965. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6966. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6967. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6968. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6969. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6970. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6971. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6972. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6973. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6974. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6975. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6976. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6977. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6978. "ref/portable-net45+win8+wp8+wpa81/_._",
  6979. "ref/win8/_._",
  6980. "ref/wp80/_._",
  6981. "ref/wpa81/_._",
  6982. "ref/xamarinios10/_._",
  6983. "ref/xamarinmac20/_._",
  6984. "ref/xamarintvos10/_._",
  6985. "ref/xamarinwatchos10/_._",
  6986. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6987. "system.diagnostics.tools.nuspec"
  6988. ]
  6989. },
  6990. "System.Diagnostics.TraceSource/4.3.0": {
  6991. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6992. "type": "package",
  6993. "path": "system.diagnostics.tracesource/4.3.0",
  6994. "files": [
  6995. ".nupkg.metadata",
  6996. ".signature.p7s",
  6997. "ThirdPartyNotices.txt",
  6998. "dotnet_library_license.txt",
  6999. "lib/MonoAndroid10/_._",
  7000. "lib/MonoTouch10/_._",
  7001. "lib/net46/System.Diagnostics.TraceSource.dll",
  7002. "lib/xamarinios10/_._",
  7003. "lib/xamarinmac20/_._",
  7004. "lib/xamarintvos10/_._",
  7005. "lib/xamarinwatchos10/_._",
  7006. "ref/MonoAndroid10/_._",
  7007. "ref/MonoTouch10/_._",
  7008. "ref/net46/System.Diagnostics.TraceSource.dll",
  7009. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7010. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  7011. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  7012. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  7013. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  7014. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  7015. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  7016. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  7017. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  7018. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  7019. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  7020. "ref/xamarinios10/_._",
  7021. "ref/xamarinmac20/_._",
  7022. "ref/xamarintvos10/_._",
  7023. "ref/xamarinwatchos10/_._",
  7024. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7025. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  7026. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7027. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  7028. "system.diagnostics.tracesource.nuspec"
  7029. ]
  7030. },
  7031. "System.Diagnostics.Tracing/4.3.0": {
  7032. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  7033. "type": "package",
  7034. "path": "system.diagnostics.tracing/4.3.0",
  7035. "files": [
  7036. ".nupkg.metadata",
  7037. ".signature.p7s",
  7038. "ThirdPartyNotices.txt",
  7039. "dotnet_library_license.txt",
  7040. "lib/MonoAndroid10/_._",
  7041. "lib/MonoTouch10/_._",
  7042. "lib/net45/_._",
  7043. "lib/net462/System.Diagnostics.Tracing.dll",
  7044. "lib/portable-net45+win8+wpa81/_._",
  7045. "lib/win8/_._",
  7046. "lib/wpa81/_._",
  7047. "lib/xamarinios10/_._",
  7048. "lib/xamarinmac20/_._",
  7049. "lib/xamarintvos10/_._",
  7050. "lib/xamarinwatchos10/_._",
  7051. "ref/MonoAndroid10/_._",
  7052. "ref/MonoTouch10/_._",
  7053. "ref/net45/_._",
  7054. "ref/net462/System.Diagnostics.Tracing.dll",
  7055. "ref/netcore50/System.Diagnostics.Tracing.dll",
  7056. "ref/netcore50/System.Diagnostics.Tracing.xml",
  7057. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  7058. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  7059. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  7060. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  7061. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  7062. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  7063. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  7064. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  7065. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  7066. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  7067. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  7068. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  7069. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  7070. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  7071. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  7072. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  7073. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  7074. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  7075. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  7076. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  7077. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  7078. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  7079. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  7080. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  7081. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  7082. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  7083. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  7084. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  7085. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  7086. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  7087. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  7088. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  7089. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  7090. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  7091. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  7092. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  7093. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  7094. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  7095. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  7096. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  7097. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  7098. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  7099. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  7100. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  7101. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  7102. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  7103. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  7104. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  7105. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  7106. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  7107. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  7108. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  7109. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  7110. "ref/portable-net45+win8+wpa81/_._",
  7111. "ref/win8/_._",
  7112. "ref/wpa81/_._",
  7113. "ref/xamarinios10/_._",
  7114. "ref/xamarinmac20/_._",
  7115. "ref/xamarintvos10/_._",
  7116. "ref/xamarinwatchos10/_._",
  7117. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  7118. "system.diagnostics.tracing.nuspec"
  7119. ]
  7120. },
  7121. "System.Drawing.Common/5.0.3": {
  7122. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  7123. "type": "package",
  7124. "path": "system.drawing.common/5.0.3",
  7125. "files": [
  7126. ".nupkg.metadata",
  7127. ".signature.p7s",
  7128. "Icon.png",
  7129. "LICENSE.TXT",
  7130. "THIRD-PARTY-NOTICES.TXT",
  7131. "lib/MonoAndroid10/_._",
  7132. "lib/MonoTouch10/_._",
  7133. "lib/net461/System.Drawing.Common.dll",
  7134. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  7135. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  7136. "lib/netstandard2.0/System.Drawing.Common.dll",
  7137. "lib/xamarinios10/_._",
  7138. "lib/xamarinmac20/_._",
  7139. "lib/xamarintvos10/_._",
  7140. "lib/xamarinwatchos10/_._",
  7141. "ref/MonoAndroid10/_._",
  7142. "ref/MonoTouch10/_._",
  7143. "ref/net461/System.Drawing.Common.dll",
  7144. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  7145. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  7146. "ref/netstandard2.0/System.Drawing.Common.dll",
  7147. "ref/xamarinios10/_._",
  7148. "ref/xamarinmac20/_._",
  7149. "ref/xamarintvos10/_._",
  7150. "ref/xamarinwatchos10/_._",
  7151. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7152. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7153. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7154. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7155. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7156. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7157. "system.drawing.common.5.0.3.nupkg.sha512",
  7158. "system.drawing.common.nuspec",
  7159. "useSharedDesignerContext.txt",
  7160. "version.txt"
  7161. ]
  7162. },
  7163. "System.Dynamic.Runtime/4.3.0": {
  7164. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  7165. "type": "package",
  7166. "path": "system.dynamic.runtime/4.3.0",
  7167. "files": [
  7168. ".nupkg.metadata",
  7169. ".signature.p7s",
  7170. "ThirdPartyNotices.txt",
  7171. "dotnet_library_license.txt",
  7172. "lib/MonoAndroid10/_._",
  7173. "lib/MonoTouch10/_._",
  7174. "lib/net45/_._",
  7175. "lib/netcore50/System.Dynamic.Runtime.dll",
  7176. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  7177. "lib/portable-net45+win8+wp8+wpa81/_._",
  7178. "lib/win8/_._",
  7179. "lib/wp80/_._",
  7180. "lib/wpa81/_._",
  7181. "lib/xamarinios10/_._",
  7182. "lib/xamarinmac20/_._",
  7183. "lib/xamarintvos10/_._",
  7184. "lib/xamarinwatchos10/_._",
  7185. "ref/MonoAndroid10/_._",
  7186. "ref/MonoTouch10/_._",
  7187. "ref/net45/_._",
  7188. "ref/netcore50/System.Dynamic.Runtime.dll",
  7189. "ref/netcore50/System.Dynamic.Runtime.xml",
  7190. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  7191. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  7192. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  7193. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  7194. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  7195. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  7196. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  7197. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  7198. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  7199. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  7200. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  7201. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  7202. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  7203. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  7204. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  7205. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  7206. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  7207. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  7208. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  7209. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  7210. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  7211. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  7212. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  7213. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  7214. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  7215. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  7216. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  7217. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  7218. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  7219. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  7220. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  7221. "ref/portable-net45+win8+wp8+wpa81/_._",
  7222. "ref/win8/_._",
  7223. "ref/wp80/_._",
  7224. "ref/wpa81/_._",
  7225. "ref/xamarinios10/_._",
  7226. "ref/xamarinmac20/_._",
  7227. "ref/xamarintvos10/_._",
  7228. "ref/xamarinwatchos10/_._",
  7229. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  7230. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  7231. "system.dynamic.runtime.nuspec"
  7232. ]
  7233. },
  7234. "System.Globalization/4.3.0": {
  7235. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7236. "type": "package",
  7237. "path": "system.globalization/4.3.0",
  7238. "files": [
  7239. ".nupkg.metadata",
  7240. ".signature.p7s",
  7241. "ThirdPartyNotices.txt",
  7242. "dotnet_library_license.txt",
  7243. "lib/MonoAndroid10/_._",
  7244. "lib/MonoTouch10/_._",
  7245. "lib/net45/_._",
  7246. "lib/portable-net45+win8+wp8+wpa81/_._",
  7247. "lib/win8/_._",
  7248. "lib/wp80/_._",
  7249. "lib/wpa81/_._",
  7250. "lib/xamarinios10/_._",
  7251. "lib/xamarinmac20/_._",
  7252. "lib/xamarintvos10/_._",
  7253. "lib/xamarinwatchos10/_._",
  7254. "ref/MonoAndroid10/_._",
  7255. "ref/MonoTouch10/_._",
  7256. "ref/net45/_._",
  7257. "ref/netcore50/System.Globalization.dll",
  7258. "ref/netcore50/System.Globalization.xml",
  7259. "ref/netcore50/de/System.Globalization.xml",
  7260. "ref/netcore50/es/System.Globalization.xml",
  7261. "ref/netcore50/fr/System.Globalization.xml",
  7262. "ref/netcore50/it/System.Globalization.xml",
  7263. "ref/netcore50/ja/System.Globalization.xml",
  7264. "ref/netcore50/ko/System.Globalization.xml",
  7265. "ref/netcore50/ru/System.Globalization.xml",
  7266. "ref/netcore50/zh-hans/System.Globalization.xml",
  7267. "ref/netcore50/zh-hant/System.Globalization.xml",
  7268. "ref/netstandard1.0/System.Globalization.dll",
  7269. "ref/netstandard1.0/System.Globalization.xml",
  7270. "ref/netstandard1.0/de/System.Globalization.xml",
  7271. "ref/netstandard1.0/es/System.Globalization.xml",
  7272. "ref/netstandard1.0/fr/System.Globalization.xml",
  7273. "ref/netstandard1.0/it/System.Globalization.xml",
  7274. "ref/netstandard1.0/ja/System.Globalization.xml",
  7275. "ref/netstandard1.0/ko/System.Globalization.xml",
  7276. "ref/netstandard1.0/ru/System.Globalization.xml",
  7277. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7278. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7279. "ref/netstandard1.3/System.Globalization.dll",
  7280. "ref/netstandard1.3/System.Globalization.xml",
  7281. "ref/netstandard1.3/de/System.Globalization.xml",
  7282. "ref/netstandard1.3/es/System.Globalization.xml",
  7283. "ref/netstandard1.3/fr/System.Globalization.xml",
  7284. "ref/netstandard1.3/it/System.Globalization.xml",
  7285. "ref/netstandard1.3/ja/System.Globalization.xml",
  7286. "ref/netstandard1.3/ko/System.Globalization.xml",
  7287. "ref/netstandard1.3/ru/System.Globalization.xml",
  7288. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7289. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7290. "ref/portable-net45+win8+wp8+wpa81/_._",
  7291. "ref/win8/_._",
  7292. "ref/wp80/_._",
  7293. "ref/wpa81/_._",
  7294. "ref/xamarinios10/_._",
  7295. "ref/xamarinmac20/_._",
  7296. "ref/xamarintvos10/_._",
  7297. "ref/xamarinwatchos10/_._",
  7298. "system.globalization.4.3.0.nupkg.sha512",
  7299. "system.globalization.nuspec"
  7300. ]
  7301. },
  7302. "System.Globalization.Calendars/4.3.0": {
  7303. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7304. "type": "package",
  7305. "path": "system.globalization.calendars/4.3.0",
  7306. "files": [
  7307. ".nupkg.metadata",
  7308. ".signature.p7s",
  7309. "ThirdPartyNotices.txt",
  7310. "dotnet_library_license.txt",
  7311. "lib/MonoAndroid10/_._",
  7312. "lib/MonoTouch10/_._",
  7313. "lib/net46/System.Globalization.Calendars.dll",
  7314. "lib/xamarinios10/_._",
  7315. "lib/xamarinmac20/_._",
  7316. "lib/xamarintvos10/_._",
  7317. "lib/xamarinwatchos10/_._",
  7318. "ref/MonoAndroid10/_._",
  7319. "ref/MonoTouch10/_._",
  7320. "ref/net46/System.Globalization.Calendars.dll",
  7321. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7322. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7323. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7324. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7325. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7326. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7327. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7328. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7329. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7330. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7331. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7332. "ref/xamarinios10/_._",
  7333. "ref/xamarinmac20/_._",
  7334. "ref/xamarintvos10/_._",
  7335. "ref/xamarinwatchos10/_._",
  7336. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7337. "system.globalization.calendars.nuspec"
  7338. ]
  7339. },
  7340. "System.Globalization.Extensions/4.3.0": {
  7341. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7342. "type": "package",
  7343. "path": "system.globalization.extensions/4.3.0",
  7344. "files": [
  7345. ".nupkg.metadata",
  7346. ".signature.p7s",
  7347. "ThirdPartyNotices.txt",
  7348. "dotnet_library_license.txt",
  7349. "lib/MonoAndroid10/_._",
  7350. "lib/MonoTouch10/_._",
  7351. "lib/net46/System.Globalization.Extensions.dll",
  7352. "lib/xamarinios10/_._",
  7353. "lib/xamarinmac20/_._",
  7354. "lib/xamarintvos10/_._",
  7355. "lib/xamarinwatchos10/_._",
  7356. "ref/MonoAndroid10/_._",
  7357. "ref/MonoTouch10/_._",
  7358. "ref/net46/System.Globalization.Extensions.dll",
  7359. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7360. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7361. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7362. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7363. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7364. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7365. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7366. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7367. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7368. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7369. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7370. "ref/xamarinios10/_._",
  7371. "ref/xamarinmac20/_._",
  7372. "ref/xamarintvos10/_._",
  7373. "ref/xamarinwatchos10/_._",
  7374. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7375. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7376. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7377. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7378. "system.globalization.extensions.nuspec"
  7379. ]
  7380. },
  7381. "System.IO/4.3.0": {
  7382. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7383. "type": "package",
  7384. "path": "system.io/4.3.0",
  7385. "files": [
  7386. ".nupkg.metadata",
  7387. ".signature.p7s",
  7388. "ThirdPartyNotices.txt",
  7389. "dotnet_library_license.txt",
  7390. "lib/MonoAndroid10/_._",
  7391. "lib/MonoTouch10/_._",
  7392. "lib/net45/_._",
  7393. "lib/net462/System.IO.dll",
  7394. "lib/portable-net45+win8+wp8+wpa81/_._",
  7395. "lib/win8/_._",
  7396. "lib/wp80/_._",
  7397. "lib/wpa81/_._",
  7398. "lib/xamarinios10/_._",
  7399. "lib/xamarinmac20/_._",
  7400. "lib/xamarintvos10/_._",
  7401. "lib/xamarinwatchos10/_._",
  7402. "ref/MonoAndroid10/_._",
  7403. "ref/MonoTouch10/_._",
  7404. "ref/net45/_._",
  7405. "ref/net462/System.IO.dll",
  7406. "ref/netcore50/System.IO.dll",
  7407. "ref/netcore50/System.IO.xml",
  7408. "ref/netcore50/de/System.IO.xml",
  7409. "ref/netcore50/es/System.IO.xml",
  7410. "ref/netcore50/fr/System.IO.xml",
  7411. "ref/netcore50/it/System.IO.xml",
  7412. "ref/netcore50/ja/System.IO.xml",
  7413. "ref/netcore50/ko/System.IO.xml",
  7414. "ref/netcore50/ru/System.IO.xml",
  7415. "ref/netcore50/zh-hans/System.IO.xml",
  7416. "ref/netcore50/zh-hant/System.IO.xml",
  7417. "ref/netstandard1.0/System.IO.dll",
  7418. "ref/netstandard1.0/System.IO.xml",
  7419. "ref/netstandard1.0/de/System.IO.xml",
  7420. "ref/netstandard1.0/es/System.IO.xml",
  7421. "ref/netstandard1.0/fr/System.IO.xml",
  7422. "ref/netstandard1.0/it/System.IO.xml",
  7423. "ref/netstandard1.0/ja/System.IO.xml",
  7424. "ref/netstandard1.0/ko/System.IO.xml",
  7425. "ref/netstandard1.0/ru/System.IO.xml",
  7426. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7427. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7428. "ref/netstandard1.3/System.IO.dll",
  7429. "ref/netstandard1.3/System.IO.xml",
  7430. "ref/netstandard1.3/de/System.IO.xml",
  7431. "ref/netstandard1.3/es/System.IO.xml",
  7432. "ref/netstandard1.3/fr/System.IO.xml",
  7433. "ref/netstandard1.3/it/System.IO.xml",
  7434. "ref/netstandard1.3/ja/System.IO.xml",
  7435. "ref/netstandard1.3/ko/System.IO.xml",
  7436. "ref/netstandard1.3/ru/System.IO.xml",
  7437. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7438. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7439. "ref/netstandard1.5/System.IO.dll",
  7440. "ref/netstandard1.5/System.IO.xml",
  7441. "ref/netstandard1.5/de/System.IO.xml",
  7442. "ref/netstandard1.5/es/System.IO.xml",
  7443. "ref/netstandard1.5/fr/System.IO.xml",
  7444. "ref/netstandard1.5/it/System.IO.xml",
  7445. "ref/netstandard1.5/ja/System.IO.xml",
  7446. "ref/netstandard1.5/ko/System.IO.xml",
  7447. "ref/netstandard1.5/ru/System.IO.xml",
  7448. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7449. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7450. "ref/portable-net45+win8+wp8+wpa81/_._",
  7451. "ref/win8/_._",
  7452. "ref/wp80/_._",
  7453. "ref/wpa81/_._",
  7454. "ref/xamarinios10/_._",
  7455. "ref/xamarinmac20/_._",
  7456. "ref/xamarintvos10/_._",
  7457. "ref/xamarinwatchos10/_._",
  7458. "system.io.4.3.0.nupkg.sha512",
  7459. "system.io.nuspec"
  7460. ]
  7461. },
  7462. "System.IO.Compression/4.3.0": {
  7463. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7464. "type": "package",
  7465. "path": "system.io.compression/4.3.0",
  7466. "files": [
  7467. ".nupkg.metadata",
  7468. ".signature.p7s",
  7469. "ThirdPartyNotices.txt",
  7470. "dotnet_library_license.txt",
  7471. "lib/MonoAndroid10/_._",
  7472. "lib/MonoTouch10/_._",
  7473. "lib/net45/_._",
  7474. "lib/net46/System.IO.Compression.dll",
  7475. "lib/portable-net45+win8+wpa81/_._",
  7476. "lib/win8/_._",
  7477. "lib/wpa81/_._",
  7478. "lib/xamarinios10/_._",
  7479. "lib/xamarinmac20/_._",
  7480. "lib/xamarintvos10/_._",
  7481. "lib/xamarinwatchos10/_._",
  7482. "ref/MonoAndroid10/_._",
  7483. "ref/MonoTouch10/_._",
  7484. "ref/net45/_._",
  7485. "ref/net46/System.IO.Compression.dll",
  7486. "ref/netcore50/System.IO.Compression.dll",
  7487. "ref/netcore50/System.IO.Compression.xml",
  7488. "ref/netcore50/de/System.IO.Compression.xml",
  7489. "ref/netcore50/es/System.IO.Compression.xml",
  7490. "ref/netcore50/fr/System.IO.Compression.xml",
  7491. "ref/netcore50/it/System.IO.Compression.xml",
  7492. "ref/netcore50/ja/System.IO.Compression.xml",
  7493. "ref/netcore50/ko/System.IO.Compression.xml",
  7494. "ref/netcore50/ru/System.IO.Compression.xml",
  7495. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7496. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7497. "ref/netstandard1.1/System.IO.Compression.dll",
  7498. "ref/netstandard1.1/System.IO.Compression.xml",
  7499. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7500. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7501. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7502. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7503. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7504. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7505. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7506. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7507. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7508. "ref/netstandard1.3/System.IO.Compression.dll",
  7509. "ref/netstandard1.3/System.IO.Compression.xml",
  7510. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7511. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7512. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7513. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7514. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7515. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7516. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7517. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7518. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7519. "ref/portable-net45+win8+wpa81/_._",
  7520. "ref/win8/_._",
  7521. "ref/wpa81/_._",
  7522. "ref/xamarinios10/_._",
  7523. "ref/xamarinmac20/_._",
  7524. "ref/xamarintvos10/_._",
  7525. "ref/xamarinwatchos10/_._",
  7526. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7527. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7528. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7529. "system.io.compression.4.3.0.nupkg.sha512",
  7530. "system.io.compression.nuspec"
  7531. ]
  7532. },
  7533. "System.IO.Compression.ZipFile/4.3.0": {
  7534. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7535. "type": "package",
  7536. "path": "system.io.compression.zipfile/4.3.0",
  7537. "files": [
  7538. ".nupkg.metadata",
  7539. ".signature.p7s",
  7540. "ThirdPartyNotices.txt",
  7541. "dotnet_library_license.txt",
  7542. "lib/MonoAndroid10/_._",
  7543. "lib/MonoTouch10/_._",
  7544. "lib/net46/System.IO.Compression.ZipFile.dll",
  7545. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7546. "lib/xamarinios10/_._",
  7547. "lib/xamarinmac20/_._",
  7548. "lib/xamarintvos10/_._",
  7549. "lib/xamarinwatchos10/_._",
  7550. "ref/MonoAndroid10/_._",
  7551. "ref/MonoTouch10/_._",
  7552. "ref/net46/System.IO.Compression.ZipFile.dll",
  7553. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7554. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7555. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7556. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7557. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7558. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7559. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7560. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7561. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7562. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7563. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7564. "ref/xamarinios10/_._",
  7565. "ref/xamarinmac20/_._",
  7566. "ref/xamarintvos10/_._",
  7567. "ref/xamarinwatchos10/_._",
  7568. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7569. "system.io.compression.zipfile.nuspec"
  7570. ]
  7571. },
  7572. "System.IO.FileSystem/4.3.0": {
  7573. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7574. "type": "package",
  7575. "path": "system.io.filesystem/4.3.0",
  7576. "files": [
  7577. ".nupkg.metadata",
  7578. ".signature.p7s",
  7579. "ThirdPartyNotices.txt",
  7580. "dotnet_library_license.txt",
  7581. "lib/MonoAndroid10/_._",
  7582. "lib/MonoTouch10/_._",
  7583. "lib/net46/System.IO.FileSystem.dll",
  7584. "lib/xamarinios10/_._",
  7585. "lib/xamarinmac20/_._",
  7586. "lib/xamarintvos10/_._",
  7587. "lib/xamarinwatchos10/_._",
  7588. "ref/MonoAndroid10/_._",
  7589. "ref/MonoTouch10/_._",
  7590. "ref/net46/System.IO.FileSystem.dll",
  7591. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7592. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7593. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7594. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7595. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7596. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7597. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7598. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7599. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7600. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7601. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7602. "ref/xamarinios10/_._",
  7603. "ref/xamarinmac20/_._",
  7604. "ref/xamarintvos10/_._",
  7605. "ref/xamarinwatchos10/_._",
  7606. "system.io.filesystem.4.3.0.nupkg.sha512",
  7607. "system.io.filesystem.nuspec"
  7608. ]
  7609. },
  7610. "System.IO.FileSystem.Primitives/4.3.0": {
  7611. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7612. "type": "package",
  7613. "path": "system.io.filesystem.primitives/4.3.0",
  7614. "files": [
  7615. ".nupkg.metadata",
  7616. ".signature.p7s",
  7617. "ThirdPartyNotices.txt",
  7618. "dotnet_library_license.txt",
  7619. "lib/MonoAndroid10/_._",
  7620. "lib/MonoTouch10/_._",
  7621. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7622. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7623. "lib/xamarinios10/_._",
  7624. "lib/xamarinmac20/_._",
  7625. "lib/xamarintvos10/_._",
  7626. "lib/xamarinwatchos10/_._",
  7627. "ref/MonoAndroid10/_._",
  7628. "ref/MonoTouch10/_._",
  7629. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7630. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7631. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7632. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7633. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7634. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7635. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7636. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7637. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7638. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7639. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7640. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7641. "ref/xamarinios10/_._",
  7642. "ref/xamarinmac20/_._",
  7643. "ref/xamarintvos10/_._",
  7644. "ref/xamarinwatchos10/_._",
  7645. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7646. "system.io.filesystem.primitives.nuspec"
  7647. ]
  7648. },
  7649. "System.IO.Pipelines/5.0.0": {
  7650. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7651. "type": "package",
  7652. "path": "system.io.pipelines/5.0.0",
  7653. "files": [
  7654. ".nupkg.metadata",
  7655. ".signature.p7s",
  7656. "Icon.png",
  7657. "LICENSE.TXT",
  7658. "THIRD-PARTY-NOTICES.TXT",
  7659. "lib/net461/System.IO.Pipelines.dll",
  7660. "lib/net461/System.IO.Pipelines.xml",
  7661. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7662. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7663. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7664. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7665. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7666. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7667. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7668. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7669. "system.io.pipelines.5.0.0.nupkg.sha512",
  7670. "system.io.pipelines.nuspec",
  7671. "useSharedDesignerContext.txt",
  7672. "version.txt"
  7673. ]
  7674. },
  7675. "System.Linq/4.3.0": {
  7676. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7677. "type": "package",
  7678. "path": "system.linq/4.3.0",
  7679. "files": [
  7680. ".nupkg.metadata",
  7681. ".signature.p7s",
  7682. "ThirdPartyNotices.txt",
  7683. "dotnet_library_license.txt",
  7684. "lib/MonoAndroid10/_._",
  7685. "lib/MonoTouch10/_._",
  7686. "lib/net45/_._",
  7687. "lib/net463/System.Linq.dll",
  7688. "lib/netcore50/System.Linq.dll",
  7689. "lib/netstandard1.6/System.Linq.dll",
  7690. "lib/portable-net45+win8+wp8+wpa81/_._",
  7691. "lib/win8/_._",
  7692. "lib/wp80/_._",
  7693. "lib/wpa81/_._",
  7694. "lib/xamarinios10/_._",
  7695. "lib/xamarinmac20/_._",
  7696. "lib/xamarintvos10/_._",
  7697. "lib/xamarinwatchos10/_._",
  7698. "ref/MonoAndroid10/_._",
  7699. "ref/MonoTouch10/_._",
  7700. "ref/net45/_._",
  7701. "ref/net463/System.Linq.dll",
  7702. "ref/netcore50/System.Linq.dll",
  7703. "ref/netcore50/System.Linq.xml",
  7704. "ref/netcore50/de/System.Linq.xml",
  7705. "ref/netcore50/es/System.Linq.xml",
  7706. "ref/netcore50/fr/System.Linq.xml",
  7707. "ref/netcore50/it/System.Linq.xml",
  7708. "ref/netcore50/ja/System.Linq.xml",
  7709. "ref/netcore50/ko/System.Linq.xml",
  7710. "ref/netcore50/ru/System.Linq.xml",
  7711. "ref/netcore50/zh-hans/System.Linq.xml",
  7712. "ref/netcore50/zh-hant/System.Linq.xml",
  7713. "ref/netstandard1.0/System.Linq.dll",
  7714. "ref/netstandard1.0/System.Linq.xml",
  7715. "ref/netstandard1.0/de/System.Linq.xml",
  7716. "ref/netstandard1.0/es/System.Linq.xml",
  7717. "ref/netstandard1.0/fr/System.Linq.xml",
  7718. "ref/netstandard1.0/it/System.Linq.xml",
  7719. "ref/netstandard1.0/ja/System.Linq.xml",
  7720. "ref/netstandard1.0/ko/System.Linq.xml",
  7721. "ref/netstandard1.0/ru/System.Linq.xml",
  7722. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7723. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7724. "ref/netstandard1.6/System.Linq.dll",
  7725. "ref/netstandard1.6/System.Linq.xml",
  7726. "ref/netstandard1.6/de/System.Linq.xml",
  7727. "ref/netstandard1.6/es/System.Linq.xml",
  7728. "ref/netstandard1.6/fr/System.Linq.xml",
  7729. "ref/netstandard1.6/it/System.Linq.xml",
  7730. "ref/netstandard1.6/ja/System.Linq.xml",
  7731. "ref/netstandard1.6/ko/System.Linq.xml",
  7732. "ref/netstandard1.6/ru/System.Linq.xml",
  7733. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7734. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7735. "ref/portable-net45+win8+wp8+wpa81/_._",
  7736. "ref/win8/_._",
  7737. "ref/wp80/_._",
  7738. "ref/wpa81/_._",
  7739. "ref/xamarinios10/_._",
  7740. "ref/xamarinmac20/_._",
  7741. "ref/xamarintvos10/_._",
  7742. "ref/xamarinwatchos10/_._",
  7743. "system.linq.4.3.0.nupkg.sha512",
  7744. "system.linq.nuspec"
  7745. ]
  7746. },
  7747. "System.Linq.Expressions/4.3.0": {
  7748. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7749. "type": "package",
  7750. "path": "system.linq.expressions/4.3.0",
  7751. "files": [
  7752. ".nupkg.metadata",
  7753. ".signature.p7s",
  7754. "ThirdPartyNotices.txt",
  7755. "dotnet_library_license.txt",
  7756. "lib/MonoAndroid10/_._",
  7757. "lib/MonoTouch10/_._",
  7758. "lib/net45/_._",
  7759. "lib/net463/System.Linq.Expressions.dll",
  7760. "lib/netcore50/System.Linq.Expressions.dll",
  7761. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7762. "lib/portable-net45+win8+wp8+wpa81/_._",
  7763. "lib/win8/_._",
  7764. "lib/wp80/_._",
  7765. "lib/wpa81/_._",
  7766. "lib/xamarinios10/_._",
  7767. "lib/xamarinmac20/_._",
  7768. "lib/xamarintvos10/_._",
  7769. "lib/xamarinwatchos10/_._",
  7770. "ref/MonoAndroid10/_._",
  7771. "ref/MonoTouch10/_._",
  7772. "ref/net45/_._",
  7773. "ref/net463/System.Linq.Expressions.dll",
  7774. "ref/netcore50/System.Linq.Expressions.dll",
  7775. "ref/netcore50/System.Linq.Expressions.xml",
  7776. "ref/netcore50/de/System.Linq.Expressions.xml",
  7777. "ref/netcore50/es/System.Linq.Expressions.xml",
  7778. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7779. "ref/netcore50/it/System.Linq.Expressions.xml",
  7780. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7781. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7782. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7783. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7784. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7785. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7786. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7787. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7788. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7789. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7790. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7791. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7792. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7793. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7794. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7795. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7796. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7797. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7798. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7799. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7800. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7801. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7802. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7803. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7804. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7805. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7806. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7807. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7808. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7809. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7810. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7811. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7812. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7813. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7814. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7815. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7816. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7817. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7818. "ref/portable-net45+win8+wp8+wpa81/_._",
  7819. "ref/win8/_._",
  7820. "ref/wp80/_._",
  7821. "ref/wpa81/_._",
  7822. "ref/xamarinios10/_._",
  7823. "ref/xamarinmac20/_._",
  7824. "ref/xamarintvos10/_._",
  7825. "ref/xamarinwatchos10/_._",
  7826. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7827. "system.linq.expressions.4.3.0.nupkg.sha512",
  7828. "system.linq.expressions.nuspec"
  7829. ]
  7830. },
  7831. "System.Memory/4.5.5": {
  7832. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7833. "type": "package",
  7834. "path": "system.memory/4.5.5",
  7835. "files": [
  7836. ".nupkg.metadata",
  7837. ".signature.p7s",
  7838. "LICENSE.TXT",
  7839. "THIRD-PARTY-NOTICES.TXT",
  7840. "lib/net461/System.Memory.dll",
  7841. "lib/net461/System.Memory.xml",
  7842. "lib/netcoreapp2.1/_._",
  7843. "lib/netstandard1.1/System.Memory.dll",
  7844. "lib/netstandard1.1/System.Memory.xml",
  7845. "lib/netstandard2.0/System.Memory.dll",
  7846. "lib/netstandard2.0/System.Memory.xml",
  7847. "ref/netcoreapp2.1/_._",
  7848. "system.memory.4.5.5.nupkg.sha512",
  7849. "system.memory.nuspec",
  7850. "useSharedDesignerContext.txt",
  7851. "version.txt"
  7852. ]
  7853. },
  7854. "System.Net.Http/4.3.2": {
  7855. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7856. "type": "package",
  7857. "path": "system.net.http/4.3.2",
  7858. "files": [
  7859. ".nupkg.metadata",
  7860. ".signature.p7s",
  7861. "ThirdPartyNotices.txt",
  7862. "dotnet_library_license.txt",
  7863. "lib/Xamarinmac20/_._",
  7864. "lib/monoandroid10/_._",
  7865. "lib/monotouch10/_._",
  7866. "lib/net45/_._",
  7867. "lib/net46/System.Net.Http.dll",
  7868. "lib/portable-net45+win8+wpa81/_._",
  7869. "lib/win8/_._",
  7870. "lib/wpa81/_._",
  7871. "lib/xamarinios10/_._",
  7872. "lib/xamarintvos10/_._",
  7873. "lib/xamarinwatchos10/_._",
  7874. "ref/Xamarinmac20/_._",
  7875. "ref/monoandroid10/_._",
  7876. "ref/monotouch10/_._",
  7877. "ref/net45/_._",
  7878. "ref/net46/System.Net.Http.dll",
  7879. "ref/netcore50/System.Net.Http.dll",
  7880. "ref/netstandard1.1/System.Net.Http.dll",
  7881. "ref/netstandard1.3/System.Net.Http.dll",
  7882. "ref/portable-net45+win8+wpa81/_._",
  7883. "ref/win8/_._",
  7884. "ref/wpa81/_._",
  7885. "ref/xamarinios10/_._",
  7886. "ref/xamarintvos10/_._",
  7887. "ref/xamarinwatchos10/_._",
  7888. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7889. "runtimes/win/lib/net46/System.Net.Http.dll",
  7890. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7891. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7892. "system.net.http.4.3.2.nupkg.sha512",
  7893. "system.net.http.nuspec"
  7894. ]
  7895. },
  7896. "System.Net.NameResolution/4.3.0": {
  7897. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7898. "type": "package",
  7899. "path": "system.net.nameresolution/4.3.0",
  7900. "files": [
  7901. ".nupkg.metadata",
  7902. ".signature.p7s",
  7903. "ThirdPartyNotices.txt",
  7904. "dotnet_library_license.txt",
  7905. "lib/MonoAndroid10/_._",
  7906. "lib/MonoTouch10/_._",
  7907. "lib/net46/System.Net.NameResolution.dll",
  7908. "lib/xamarinios10/_._",
  7909. "lib/xamarinmac20/_._",
  7910. "lib/xamarintvos10/_._",
  7911. "lib/xamarinwatchos10/_._",
  7912. "ref/MonoAndroid10/_._",
  7913. "ref/MonoTouch10/_._",
  7914. "ref/net46/System.Net.NameResolution.dll",
  7915. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7916. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7917. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7918. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7919. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7920. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7921. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7922. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7923. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7924. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7925. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7926. "ref/xamarinios10/_._",
  7927. "ref/xamarinmac20/_._",
  7928. "ref/xamarintvos10/_._",
  7929. "ref/xamarinwatchos10/_._",
  7930. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7931. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7932. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7933. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7934. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7935. "system.net.nameresolution.nuspec"
  7936. ]
  7937. },
  7938. "System.Net.Primitives/4.3.0": {
  7939. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7940. "type": "package",
  7941. "path": "system.net.primitives/4.3.0",
  7942. "files": [
  7943. ".nupkg.metadata",
  7944. ".signature.p7s",
  7945. "ThirdPartyNotices.txt",
  7946. "dotnet_library_license.txt",
  7947. "lib/MonoAndroid10/_._",
  7948. "lib/MonoTouch10/_._",
  7949. "lib/net45/_._",
  7950. "lib/portable-net45+win8+wp8+wpa81/_._",
  7951. "lib/win8/_._",
  7952. "lib/wp80/_._",
  7953. "lib/wpa81/_._",
  7954. "lib/xamarinios10/_._",
  7955. "lib/xamarinmac20/_._",
  7956. "lib/xamarintvos10/_._",
  7957. "lib/xamarinwatchos10/_._",
  7958. "ref/MonoAndroid10/_._",
  7959. "ref/MonoTouch10/_._",
  7960. "ref/net45/_._",
  7961. "ref/netcore50/System.Net.Primitives.dll",
  7962. "ref/netcore50/System.Net.Primitives.xml",
  7963. "ref/netcore50/de/System.Net.Primitives.xml",
  7964. "ref/netcore50/es/System.Net.Primitives.xml",
  7965. "ref/netcore50/fr/System.Net.Primitives.xml",
  7966. "ref/netcore50/it/System.Net.Primitives.xml",
  7967. "ref/netcore50/ja/System.Net.Primitives.xml",
  7968. "ref/netcore50/ko/System.Net.Primitives.xml",
  7969. "ref/netcore50/ru/System.Net.Primitives.xml",
  7970. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7971. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7972. "ref/netstandard1.0/System.Net.Primitives.dll",
  7973. "ref/netstandard1.0/System.Net.Primitives.xml",
  7974. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7975. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7976. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7977. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7978. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7979. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7980. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7981. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7982. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7983. "ref/netstandard1.1/System.Net.Primitives.dll",
  7984. "ref/netstandard1.1/System.Net.Primitives.xml",
  7985. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7986. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7987. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7988. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7989. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7990. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7991. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7992. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7993. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7994. "ref/netstandard1.3/System.Net.Primitives.dll",
  7995. "ref/netstandard1.3/System.Net.Primitives.xml",
  7996. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7997. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7998. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7999. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  8000. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  8001. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  8002. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  8003. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  8004. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  8005. "ref/portable-net45+win8+wp8+wpa81/_._",
  8006. "ref/win8/_._",
  8007. "ref/wp80/_._",
  8008. "ref/wpa81/_._",
  8009. "ref/xamarinios10/_._",
  8010. "ref/xamarinmac20/_._",
  8011. "ref/xamarintvos10/_._",
  8012. "ref/xamarinwatchos10/_._",
  8013. "system.net.primitives.4.3.0.nupkg.sha512",
  8014. "system.net.primitives.nuspec"
  8015. ]
  8016. },
  8017. "System.Net.Security/4.3.0": {
  8018. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  8019. "type": "package",
  8020. "path": "system.net.security/4.3.0",
  8021. "files": [
  8022. ".nupkg.metadata",
  8023. ".signature.p7s",
  8024. "ThirdPartyNotices.txt",
  8025. "dotnet_library_license.txt",
  8026. "lib/MonoAndroid10/_._",
  8027. "lib/MonoTouch10/_._",
  8028. "lib/net46/System.Net.Security.dll",
  8029. "lib/xamarinios10/_._",
  8030. "lib/xamarinmac20/_._",
  8031. "lib/xamarintvos10/_._",
  8032. "lib/xamarinwatchos10/_._",
  8033. "ref/MonoAndroid10/_._",
  8034. "ref/MonoTouch10/_._",
  8035. "ref/net46/System.Net.Security.dll",
  8036. "ref/netstandard1.3/System.Net.Security.dll",
  8037. "ref/netstandard1.3/System.Net.Security.xml",
  8038. "ref/netstandard1.3/de/System.Net.Security.xml",
  8039. "ref/netstandard1.3/es/System.Net.Security.xml",
  8040. "ref/netstandard1.3/fr/System.Net.Security.xml",
  8041. "ref/netstandard1.3/it/System.Net.Security.xml",
  8042. "ref/netstandard1.3/ja/System.Net.Security.xml",
  8043. "ref/netstandard1.3/ko/System.Net.Security.xml",
  8044. "ref/netstandard1.3/ru/System.Net.Security.xml",
  8045. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  8046. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  8047. "ref/xamarinios10/_._",
  8048. "ref/xamarinmac20/_._",
  8049. "ref/xamarintvos10/_._",
  8050. "ref/xamarinwatchos10/_._",
  8051. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  8052. "runtimes/win/lib/net46/System.Net.Security.dll",
  8053. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  8054. "runtimes/win7/lib/netcore50/_._",
  8055. "system.net.security.4.3.0.nupkg.sha512",
  8056. "system.net.security.nuspec"
  8057. ]
  8058. },
  8059. "System.Net.Sockets/4.3.0": {
  8060. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  8061. "type": "package",
  8062. "path": "system.net.sockets/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.Net.Sockets.dll",
  8071. "lib/xamarinios10/_._",
  8072. "lib/xamarinmac20/_._",
  8073. "lib/xamarintvos10/_._",
  8074. "lib/xamarinwatchos10/_._",
  8075. "ref/MonoAndroid10/_._",
  8076. "ref/MonoTouch10/_._",
  8077. "ref/net46/System.Net.Sockets.dll",
  8078. "ref/netstandard1.3/System.Net.Sockets.dll",
  8079. "ref/netstandard1.3/System.Net.Sockets.xml",
  8080. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  8081. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  8082. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  8083. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  8084. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  8085. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  8086. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  8087. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  8088. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  8089. "ref/xamarinios10/_._",
  8090. "ref/xamarinmac20/_._",
  8091. "ref/xamarintvos10/_._",
  8092. "ref/xamarinwatchos10/_._",
  8093. "system.net.sockets.4.3.0.nupkg.sha512",
  8094. "system.net.sockets.nuspec"
  8095. ]
  8096. },
  8097. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  8098. "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==",
  8099. "type": "package",
  8100. "path": "system.net.websockets.websocketprotocol/4.5.1",
  8101. "files": [
  8102. ".nupkg.metadata",
  8103. ".signature.p7s",
  8104. "LICENSE.TXT",
  8105. "THIRD-PARTY-NOTICES.TXT",
  8106. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll",
  8107. "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  8108. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  8109. "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512",
  8110. "system.net.websockets.websocketprotocol.nuspec",
  8111. "useSharedDesignerContext.txt",
  8112. "version.txt"
  8113. ]
  8114. },
  8115. "System.ObjectModel/4.3.0": {
  8116. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  8117. "type": "package",
  8118. "path": "system.objectmodel/4.3.0",
  8119. "files": [
  8120. ".nupkg.metadata",
  8121. ".signature.p7s",
  8122. "ThirdPartyNotices.txt",
  8123. "dotnet_library_license.txt",
  8124. "lib/MonoAndroid10/_._",
  8125. "lib/MonoTouch10/_._",
  8126. "lib/net45/_._",
  8127. "lib/netcore50/System.ObjectModel.dll",
  8128. "lib/netstandard1.3/System.ObjectModel.dll",
  8129. "lib/portable-net45+win8+wp8+wpa81/_._",
  8130. "lib/win8/_._",
  8131. "lib/wp80/_._",
  8132. "lib/wpa81/_._",
  8133. "lib/xamarinios10/_._",
  8134. "lib/xamarinmac20/_._",
  8135. "lib/xamarintvos10/_._",
  8136. "lib/xamarinwatchos10/_._",
  8137. "ref/MonoAndroid10/_._",
  8138. "ref/MonoTouch10/_._",
  8139. "ref/net45/_._",
  8140. "ref/netcore50/System.ObjectModel.dll",
  8141. "ref/netcore50/System.ObjectModel.xml",
  8142. "ref/netcore50/de/System.ObjectModel.xml",
  8143. "ref/netcore50/es/System.ObjectModel.xml",
  8144. "ref/netcore50/fr/System.ObjectModel.xml",
  8145. "ref/netcore50/it/System.ObjectModel.xml",
  8146. "ref/netcore50/ja/System.ObjectModel.xml",
  8147. "ref/netcore50/ko/System.ObjectModel.xml",
  8148. "ref/netcore50/ru/System.ObjectModel.xml",
  8149. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  8150. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  8151. "ref/netstandard1.0/System.ObjectModel.dll",
  8152. "ref/netstandard1.0/System.ObjectModel.xml",
  8153. "ref/netstandard1.0/de/System.ObjectModel.xml",
  8154. "ref/netstandard1.0/es/System.ObjectModel.xml",
  8155. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  8156. "ref/netstandard1.0/it/System.ObjectModel.xml",
  8157. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  8158. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  8159. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  8160. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  8161. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  8162. "ref/netstandard1.3/System.ObjectModel.dll",
  8163. "ref/netstandard1.3/System.ObjectModel.xml",
  8164. "ref/netstandard1.3/de/System.ObjectModel.xml",
  8165. "ref/netstandard1.3/es/System.ObjectModel.xml",
  8166. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  8167. "ref/netstandard1.3/it/System.ObjectModel.xml",
  8168. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  8169. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  8170. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  8171. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  8172. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  8173. "ref/portable-net45+win8+wp8+wpa81/_._",
  8174. "ref/win8/_._",
  8175. "ref/wp80/_._",
  8176. "ref/wpa81/_._",
  8177. "ref/xamarinios10/_._",
  8178. "ref/xamarinmac20/_._",
  8179. "ref/xamarintvos10/_._",
  8180. "ref/xamarinwatchos10/_._",
  8181. "system.objectmodel.4.3.0.nupkg.sha512",
  8182. "system.objectmodel.nuspec"
  8183. ]
  8184. },
  8185. "System.Reactive/4.4.1": {
  8186. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  8187. "type": "package",
  8188. "path": "system.reactive/4.4.1",
  8189. "files": [
  8190. ".nupkg.metadata",
  8191. ".signature.p7s",
  8192. "build/netcoreapp3.0/System.Reactive.dll",
  8193. "build/netcoreapp3.0/System.Reactive.targets",
  8194. "build/netcoreapp3.0/System.Reactive.xml",
  8195. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  8196. "lib/net46/System.Reactive.dll",
  8197. "lib/net46/System.Reactive.xml",
  8198. "lib/netcoreapp3.0/_._",
  8199. "lib/netstandard2.0/System.Reactive.dll",
  8200. "lib/netstandard2.0/System.Reactive.xml",
  8201. "lib/uap10.0.16299/System.Reactive.dll",
  8202. "lib/uap10.0.16299/System.Reactive.pri",
  8203. "lib/uap10.0.16299/System.Reactive.xml",
  8204. "lib/uap10.0/System.Reactive.dll",
  8205. "lib/uap10.0/System.Reactive.pri",
  8206. "lib/uap10.0/System.Reactive.xml",
  8207. "system.reactive.4.4.1.nupkg.sha512",
  8208. "system.reactive.nuspec"
  8209. ]
  8210. },
  8211. "System.Reflection/4.3.0": {
  8212. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  8213. "type": "package",
  8214. "path": "system.reflection/4.3.0",
  8215. "files": [
  8216. ".nupkg.metadata",
  8217. ".signature.p7s",
  8218. "ThirdPartyNotices.txt",
  8219. "dotnet_library_license.txt",
  8220. "lib/MonoAndroid10/_._",
  8221. "lib/MonoTouch10/_._",
  8222. "lib/net45/_._",
  8223. "lib/net462/System.Reflection.dll",
  8224. "lib/portable-net45+win8+wp8+wpa81/_._",
  8225. "lib/win8/_._",
  8226. "lib/wp80/_._",
  8227. "lib/wpa81/_._",
  8228. "lib/xamarinios10/_._",
  8229. "lib/xamarinmac20/_._",
  8230. "lib/xamarintvos10/_._",
  8231. "lib/xamarinwatchos10/_._",
  8232. "ref/MonoAndroid10/_._",
  8233. "ref/MonoTouch10/_._",
  8234. "ref/net45/_._",
  8235. "ref/net462/System.Reflection.dll",
  8236. "ref/netcore50/System.Reflection.dll",
  8237. "ref/netcore50/System.Reflection.xml",
  8238. "ref/netcore50/de/System.Reflection.xml",
  8239. "ref/netcore50/es/System.Reflection.xml",
  8240. "ref/netcore50/fr/System.Reflection.xml",
  8241. "ref/netcore50/it/System.Reflection.xml",
  8242. "ref/netcore50/ja/System.Reflection.xml",
  8243. "ref/netcore50/ko/System.Reflection.xml",
  8244. "ref/netcore50/ru/System.Reflection.xml",
  8245. "ref/netcore50/zh-hans/System.Reflection.xml",
  8246. "ref/netcore50/zh-hant/System.Reflection.xml",
  8247. "ref/netstandard1.0/System.Reflection.dll",
  8248. "ref/netstandard1.0/System.Reflection.xml",
  8249. "ref/netstandard1.0/de/System.Reflection.xml",
  8250. "ref/netstandard1.0/es/System.Reflection.xml",
  8251. "ref/netstandard1.0/fr/System.Reflection.xml",
  8252. "ref/netstandard1.0/it/System.Reflection.xml",
  8253. "ref/netstandard1.0/ja/System.Reflection.xml",
  8254. "ref/netstandard1.0/ko/System.Reflection.xml",
  8255. "ref/netstandard1.0/ru/System.Reflection.xml",
  8256. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  8257. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  8258. "ref/netstandard1.3/System.Reflection.dll",
  8259. "ref/netstandard1.3/System.Reflection.xml",
  8260. "ref/netstandard1.3/de/System.Reflection.xml",
  8261. "ref/netstandard1.3/es/System.Reflection.xml",
  8262. "ref/netstandard1.3/fr/System.Reflection.xml",
  8263. "ref/netstandard1.3/it/System.Reflection.xml",
  8264. "ref/netstandard1.3/ja/System.Reflection.xml",
  8265. "ref/netstandard1.3/ko/System.Reflection.xml",
  8266. "ref/netstandard1.3/ru/System.Reflection.xml",
  8267. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8268. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8269. "ref/netstandard1.5/System.Reflection.dll",
  8270. "ref/netstandard1.5/System.Reflection.xml",
  8271. "ref/netstandard1.5/de/System.Reflection.xml",
  8272. "ref/netstandard1.5/es/System.Reflection.xml",
  8273. "ref/netstandard1.5/fr/System.Reflection.xml",
  8274. "ref/netstandard1.5/it/System.Reflection.xml",
  8275. "ref/netstandard1.5/ja/System.Reflection.xml",
  8276. "ref/netstandard1.5/ko/System.Reflection.xml",
  8277. "ref/netstandard1.5/ru/System.Reflection.xml",
  8278. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8279. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8280. "ref/portable-net45+win8+wp8+wpa81/_._",
  8281. "ref/win8/_._",
  8282. "ref/wp80/_._",
  8283. "ref/wpa81/_._",
  8284. "ref/xamarinios10/_._",
  8285. "ref/xamarinmac20/_._",
  8286. "ref/xamarintvos10/_._",
  8287. "ref/xamarinwatchos10/_._",
  8288. "system.reflection.4.3.0.nupkg.sha512",
  8289. "system.reflection.nuspec"
  8290. ]
  8291. },
  8292. "System.Reflection.Emit/4.7.0": {
  8293. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  8294. "type": "package",
  8295. "path": "system.reflection.emit/4.7.0",
  8296. "files": [
  8297. ".nupkg.metadata",
  8298. ".signature.p7s",
  8299. "LICENSE.TXT",
  8300. "THIRD-PARTY-NOTICES.TXT",
  8301. "lib/MonoAndroid10/_._",
  8302. "lib/MonoTouch10/_._",
  8303. "lib/net45/_._",
  8304. "lib/netcore50/System.Reflection.Emit.dll",
  8305. "lib/netcoreapp2.0/_._",
  8306. "lib/netstandard1.1/System.Reflection.Emit.dll",
  8307. "lib/netstandard1.1/System.Reflection.Emit.xml",
  8308. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8309. "lib/netstandard2.0/System.Reflection.Emit.dll",
  8310. "lib/netstandard2.0/System.Reflection.Emit.xml",
  8311. "lib/netstandard2.1/_._",
  8312. "lib/xamarinios10/_._",
  8313. "lib/xamarinmac20/_._",
  8314. "lib/xamarintvos10/_._",
  8315. "lib/xamarinwatchos10/_._",
  8316. "ref/MonoAndroid10/_._",
  8317. "ref/MonoTouch10/_._",
  8318. "ref/net45/_._",
  8319. "ref/netcoreapp2.0/_._",
  8320. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8321. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8322. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8323. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8324. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8325. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8326. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8327. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8328. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8329. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8330. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8331. "ref/netstandard2.0/System.Reflection.Emit.dll",
  8332. "ref/netstandard2.0/System.Reflection.Emit.xml",
  8333. "ref/netstandard2.1/_._",
  8334. "ref/xamarinios10/_._",
  8335. "ref/xamarinmac20/_._",
  8336. "ref/xamarintvos10/_._",
  8337. "ref/xamarinwatchos10/_._",
  8338. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  8339. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  8340. "system.reflection.emit.4.7.0.nupkg.sha512",
  8341. "system.reflection.emit.nuspec",
  8342. "useSharedDesignerContext.txt",
  8343. "version.txt"
  8344. ]
  8345. },
  8346. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8347. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8348. "type": "package",
  8349. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8350. "files": [
  8351. ".nupkg.metadata",
  8352. ".signature.p7s",
  8353. "ThirdPartyNotices.txt",
  8354. "dotnet_library_license.txt",
  8355. "lib/MonoAndroid10/_._",
  8356. "lib/MonoTouch10/_._",
  8357. "lib/net45/_._",
  8358. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8359. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8360. "lib/portable-net45+wp8/_._",
  8361. "lib/wp80/_._",
  8362. "lib/xamarinios10/_._",
  8363. "lib/xamarinmac20/_._",
  8364. "lib/xamarintvos10/_._",
  8365. "lib/xamarinwatchos10/_._",
  8366. "ref/MonoAndroid10/_._",
  8367. "ref/MonoTouch10/_._",
  8368. "ref/net45/_._",
  8369. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8370. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8371. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8372. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8373. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8374. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8375. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8376. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8377. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8378. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8379. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8380. "ref/portable-net45+wp8/_._",
  8381. "ref/wp80/_._",
  8382. "ref/xamarinios10/_._",
  8383. "ref/xamarinmac20/_._",
  8384. "ref/xamarintvos10/_._",
  8385. "ref/xamarinwatchos10/_._",
  8386. "runtimes/aot/lib/netcore50/_._",
  8387. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8388. "system.reflection.emit.ilgeneration.nuspec"
  8389. ]
  8390. },
  8391. "System.Reflection.Emit.Lightweight/4.3.0": {
  8392. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8393. "type": "package",
  8394. "path": "system.reflection.emit.lightweight/4.3.0",
  8395. "files": [
  8396. ".nupkg.metadata",
  8397. ".signature.p7s",
  8398. "ThirdPartyNotices.txt",
  8399. "dotnet_library_license.txt",
  8400. "lib/MonoAndroid10/_._",
  8401. "lib/MonoTouch10/_._",
  8402. "lib/net45/_._",
  8403. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8404. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8405. "lib/portable-net45+wp8/_._",
  8406. "lib/wp80/_._",
  8407. "lib/xamarinios10/_._",
  8408. "lib/xamarinmac20/_._",
  8409. "lib/xamarintvos10/_._",
  8410. "lib/xamarinwatchos10/_._",
  8411. "ref/MonoAndroid10/_._",
  8412. "ref/MonoTouch10/_._",
  8413. "ref/net45/_._",
  8414. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8415. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8416. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8417. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8418. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8419. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8420. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8421. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8422. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8423. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8424. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8425. "ref/portable-net45+wp8/_._",
  8426. "ref/wp80/_._",
  8427. "ref/xamarinios10/_._",
  8428. "ref/xamarinmac20/_._",
  8429. "ref/xamarintvos10/_._",
  8430. "ref/xamarinwatchos10/_._",
  8431. "runtimes/aot/lib/netcore50/_._",
  8432. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8433. "system.reflection.emit.lightweight.nuspec"
  8434. ]
  8435. },
  8436. "System.Reflection.Extensions/4.3.0": {
  8437. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8438. "type": "package",
  8439. "path": "system.reflection.extensions/4.3.0",
  8440. "files": [
  8441. ".nupkg.metadata",
  8442. ".signature.p7s",
  8443. "ThirdPartyNotices.txt",
  8444. "dotnet_library_license.txt",
  8445. "lib/MonoAndroid10/_._",
  8446. "lib/MonoTouch10/_._",
  8447. "lib/net45/_._",
  8448. "lib/portable-net45+win8+wp8+wpa81/_._",
  8449. "lib/win8/_._",
  8450. "lib/wp80/_._",
  8451. "lib/wpa81/_._",
  8452. "lib/xamarinios10/_._",
  8453. "lib/xamarinmac20/_._",
  8454. "lib/xamarintvos10/_._",
  8455. "lib/xamarinwatchos10/_._",
  8456. "ref/MonoAndroid10/_._",
  8457. "ref/MonoTouch10/_._",
  8458. "ref/net45/_._",
  8459. "ref/netcore50/System.Reflection.Extensions.dll",
  8460. "ref/netcore50/System.Reflection.Extensions.xml",
  8461. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8462. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8463. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8464. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8465. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8466. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8467. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8468. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8469. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8470. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8471. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8472. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8473. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8474. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8475. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8476. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8477. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8478. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8479. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8480. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8481. "ref/portable-net45+win8+wp8+wpa81/_._",
  8482. "ref/win8/_._",
  8483. "ref/wp80/_._",
  8484. "ref/wpa81/_._",
  8485. "ref/xamarinios10/_._",
  8486. "ref/xamarinmac20/_._",
  8487. "ref/xamarintvos10/_._",
  8488. "ref/xamarinwatchos10/_._",
  8489. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8490. "system.reflection.extensions.nuspec"
  8491. ]
  8492. },
  8493. "System.Reflection.Primitives/4.3.0": {
  8494. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8495. "type": "package",
  8496. "path": "system.reflection.primitives/4.3.0",
  8497. "files": [
  8498. ".nupkg.metadata",
  8499. ".signature.p7s",
  8500. "ThirdPartyNotices.txt",
  8501. "dotnet_library_license.txt",
  8502. "lib/MonoAndroid10/_._",
  8503. "lib/MonoTouch10/_._",
  8504. "lib/net45/_._",
  8505. "lib/portable-net45+win8+wp8+wpa81/_._",
  8506. "lib/win8/_._",
  8507. "lib/wp80/_._",
  8508. "lib/wpa81/_._",
  8509. "lib/xamarinios10/_._",
  8510. "lib/xamarinmac20/_._",
  8511. "lib/xamarintvos10/_._",
  8512. "lib/xamarinwatchos10/_._",
  8513. "ref/MonoAndroid10/_._",
  8514. "ref/MonoTouch10/_._",
  8515. "ref/net45/_._",
  8516. "ref/netcore50/System.Reflection.Primitives.dll",
  8517. "ref/netcore50/System.Reflection.Primitives.xml",
  8518. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8519. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8520. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8521. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8522. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8523. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8524. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8525. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8526. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8527. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8528. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8529. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8530. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8531. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8532. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8533. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8534. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8535. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8536. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8537. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8538. "ref/portable-net45+win8+wp8+wpa81/_._",
  8539. "ref/win8/_._",
  8540. "ref/wp80/_._",
  8541. "ref/wpa81/_._",
  8542. "ref/xamarinios10/_._",
  8543. "ref/xamarinmac20/_._",
  8544. "ref/xamarintvos10/_._",
  8545. "ref/xamarinwatchos10/_._",
  8546. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8547. "system.reflection.primitives.nuspec"
  8548. ]
  8549. },
  8550. "System.Reflection.TypeExtensions/4.3.0": {
  8551. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8552. "type": "package",
  8553. "path": "system.reflection.typeextensions/4.3.0",
  8554. "files": [
  8555. ".nupkg.metadata",
  8556. ".signature.p7s",
  8557. "ThirdPartyNotices.txt",
  8558. "dotnet_library_license.txt",
  8559. "lib/MonoAndroid10/_._",
  8560. "lib/MonoTouch10/_._",
  8561. "lib/net46/System.Reflection.TypeExtensions.dll",
  8562. "lib/net462/System.Reflection.TypeExtensions.dll",
  8563. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8564. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8565. "lib/xamarinios10/_._",
  8566. "lib/xamarinmac20/_._",
  8567. "lib/xamarintvos10/_._",
  8568. "lib/xamarinwatchos10/_._",
  8569. "ref/MonoAndroid10/_._",
  8570. "ref/MonoTouch10/_._",
  8571. "ref/net46/System.Reflection.TypeExtensions.dll",
  8572. "ref/net462/System.Reflection.TypeExtensions.dll",
  8573. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8574. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8575. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8576. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8577. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8578. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8579. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8580. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8581. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8582. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8583. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8584. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8585. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8586. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8587. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8588. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8589. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8590. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8591. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8592. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8593. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8594. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8595. "ref/xamarinios10/_._",
  8596. "ref/xamarinmac20/_._",
  8597. "ref/xamarintvos10/_._",
  8598. "ref/xamarinwatchos10/_._",
  8599. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8600. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8601. "system.reflection.typeextensions.nuspec"
  8602. ]
  8603. },
  8604. "System.Resources.ResourceManager/4.3.0": {
  8605. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8606. "type": "package",
  8607. "path": "system.resources.resourcemanager/4.3.0",
  8608. "files": [
  8609. ".nupkg.metadata",
  8610. ".signature.p7s",
  8611. "ThirdPartyNotices.txt",
  8612. "dotnet_library_license.txt",
  8613. "lib/MonoAndroid10/_._",
  8614. "lib/MonoTouch10/_._",
  8615. "lib/net45/_._",
  8616. "lib/portable-net45+win8+wp8+wpa81/_._",
  8617. "lib/win8/_._",
  8618. "lib/wp80/_._",
  8619. "lib/wpa81/_._",
  8620. "lib/xamarinios10/_._",
  8621. "lib/xamarinmac20/_._",
  8622. "lib/xamarintvos10/_._",
  8623. "lib/xamarinwatchos10/_._",
  8624. "ref/MonoAndroid10/_._",
  8625. "ref/MonoTouch10/_._",
  8626. "ref/net45/_._",
  8627. "ref/netcore50/System.Resources.ResourceManager.dll",
  8628. "ref/netcore50/System.Resources.ResourceManager.xml",
  8629. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8630. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8631. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8632. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8633. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8634. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8635. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8636. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8637. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8638. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8639. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8640. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8641. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8642. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8643. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8644. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8645. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8646. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8647. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8648. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8649. "ref/portable-net45+win8+wp8+wpa81/_._",
  8650. "ref/win8/_._",
  8651. "ref/wp80/_._",
  8652. "ref/wpa81/_._",
  8653. "ref/xamarinios10/_._",
  8654. "ref/xamarinmac20/_._",
  8655. "ref/xamarintvos10/_._",
  8656. "ref/xamarinwatchos10/_._",
  8657. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8658. "system.resources.resourcemanager.nuspec"
  8659. ]
  8660. },
  8661. "System.Runtime/4.3.0": {
  8662. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8663. "type": "package",
  8664. "path": "system.runtime/4.3.0",
  8665. "files": [
  8666. ".nupkg.metadata",
  8667. ".signature.p7s",
  8668. "ThirdPartyNotices.txt",
  8669. "dotnet_library_license.txt",
  8670. "lib/MonoAndroid10/_._",
  8671. "lib/MonoTouch10/_._",
  8672. "lib/net45/_._",
  8673. "lib/net462/System.Runtime.dll",
  8674. "lib/portable-net45+win8+wp80+wpa81/_._",
  8675. "lib/win8/_._",
  8676. "lib/wp80/_._",
  8677. "lib/wpa81/_._",
  8678. "lib/xamarinios10/_._",
  8679. "lib/xamarinmac20/_._",
  8680. "lib/xamarintvos10/_._",
  8681. "lib/xamarinwatchos10/_._",
  8682. "ref/MonoAndroid10/_._",
  8683. "ref/MonoTouch10/_._",
  8684. "ref/net45/_._",
  8685. "ref/net462/System.Runtime.dll",
  8686. "ref/netcore50/System.Runtime.dll",
  8687. "ref/netcore50/System.Runtime.xml",
  8688. "ref/netcore50/de/System.Runtime.xml",
  8689. "ref/netcore50/es/System.Runtime.xml",
  8690. "ref/netcore50/fr/System.Runtime.xml",
  8691. "ref/netcore50/it/System.Runtime.xml",
  8692. "ref/netcore50/ja/System.Runtime.xml",
  8693. "ref/netcore50/ko/System.Runtime.xml",
  8694. "ref/netcore50/ru/System.Runtime.xml",
  8695. "ref/netcore50/zh-hans/System.Runtime.xml",
  8696. "ref/netcore50/zh-hant/System.Runtime.xml",
  8697. "ref/netstandard1.0/System.Runtime.dll",
  8698. "ref/netstandard1.0/System.Runtime.xml",
  8699. "ref/netstandard1.0/de/System.Runtime.xml",
  8700. "ref/netstandard1.0/es/System.Runtime.xml",
  8701. "ref/netstandard1.0/fr/System.Runtime.xml",
  8702. "ref/netstandard1.0/it/System.Runtime.xml",
  8703. "ref/netstandard1.0/ja/System.Runtime.xml",
  8704. "ref/netstandard1.0/ko/System.Runtime.xml",
  8705. "ref/netstandard1.0/ru/System.Runtime.xml",
  8706. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8707. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8708. "ref/netstandard1.2/System.Runtime.dll",
  8709. "ref/netstandard1.2/System.Runtime.xml",
  8710. "ref/netstandard1.2/de/System.Runtime.xml",
  8711. "ref/netstandard1.2/es/System.Runtime.xml",
  8712. "ref/netstandard1.2/fr/System.Runtime.xml",
  8713. "ref/netstandard1.2/it/System.Runtime.xml",
  8714. "ref/netstandard1.2/ja/System.Runtime.xml",
  8715. "ref/netstandard1.2/ko/System.Runtime.xml",
  8716. "ref/netstandard1.2/ru/System.Runtime.xml",
  8717. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8718. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8719. "ref/netstandard1.3/System.Runtime.dll",
  8720. "ref/netstandard1.3/System.Runtime.xml",
  8721. "ref/netstandard1.3/de/System.Runtime.xml",
  8722. "ref/netstandard1.3/es/System.Runtime.xml",
  8723. "ref/netstandard1.3/fr/System.Runtime.xml",
  8724. "ref/netstandard1.3/it/System.Runtime.xml",
  8725. "ref/netstandard1.3/ja/System.Runtime.xml",
  8726. "ref/netstandard1.3/ko/System.Runtime.xml",
  8727. "ref/netstandard1.3/ru/System.Runtime.xml",
  8728. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8729. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8730. "ref/netstandard1.5/System.Runtime.dll",
  8731. "ref/netstandard1.5/System.Runtime.xml",
  8732. "ref/netstandard1.5/de/System.Runtime.xml",
  8733. "ref/netstandard1.5/es/System.Runtime.xml",
  8734. "ref/netstandard1.5/fr/System.Runtime.xml",
  8735. "ref/netstandard1.5/it/System.Runtime.xml",
  8736. "ref/netstandard1.5/ja/System.Runtime.xml",
  8737. "ref/netstandard1.5/ko/System.Runtime.xml",
  8738. "ref/netstandard1.5/ru/System.Runtime.xml",
  8739. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8740. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8741. "ref/portable-net45+win8+wp80+wpa81/_._",
  8742. "ref/win8/_._",
  8743. "ref/wp80/_._",
  8744. "ref/wpa81/_._",
  8745. "ref/xamarinios10/_._",
  8746. "ref/xamarinmac20/_._",
  8747. "ref/xamarintvos10/_._",
  8748. "ref/xamarinwatchos10/_._",
  8749. "system.runtime.4.3.0.nupkg.sha512",
  8750. "system.runtime.nuspec"
  8751. ]
  8752. },
  8753. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  8754. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  8755. "type": "package",
  8756. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  8757. "files": [
  8758. ".nupkg.metadata",
  8759. ".signature.p7s",
  8760. "Icon.png",
  8761. "LICENSE.TXT",
  8762. "THIRD-PARTY-NOTICES.TXT",
  8763. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  8764. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  8765. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8766. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8767. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8768. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8769. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8770. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8771. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8772. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8773. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8774. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8775. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8776. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8777. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  8778. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  8779. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  8780. "system.runtime.compilerservices.unsafe.nuspec",
  8781. "useSharedDesignerContext.txt",
  8782. "version.txt"
  8783. ]
  8784. },
  8785. "System.Runtime.Extensions/4.3.0": {
  8786. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8787. "type": "package",
  8788. "path": "system.runtime.extensions/4.3.0",
  8789. "files": [
  8790. ".nupkg.metadata",
  8791. ".signature.p7s",
  8792. "ThirdPartyNotices.txt",
  8793. "dotnet_library_license.txt",
  8794. "lib/MonoAndroid10/_._",
  8795. "lib/MonoTouch10/_._",
  8796. "lib/net45/_._",
  8797. "lib/net462/System.Runtime.Extensions.dll",
  8798. "lib/portable-net45+win8+wp8+wpa81/_._",
  8799. "lib/win8/_._",
  8800. "lib/wp80/_._",
  8801. "lib/wpa81/_._",
  8802. "lib/xamarinios10/_._",
  8803. "lib/xamarinmac20/_._",
  8804. "lib/xamarintvos10/_._",
  8805. "lib/xamarinwatchos10/_._",
  8806. "ref/MonoAndroid10/_._",
  8807. "ref/MonoTouch10/_._",
  8808. "ref/net45/_._",
  8809. "ref/net462/System.Runtime.Extensions.dll",
  8810. "ref/netcore50/System.Runtime.Extensions.dll",
  8811. "ref/netcore50/System.Runtime.Extensions.xml",
  8812. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8813. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8814. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8815. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8816. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8817. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8818. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8819. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8820. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8821. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8822. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8823. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8824. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8825. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8826. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8827. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8828. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8829. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8830. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8831. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8832. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8833. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8834. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8835. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8836. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8837. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8838. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8839. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8840. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8841. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8842. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8843. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8844. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8845. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8846. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8847. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8848. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8849. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8850. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8851. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8852. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8853. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8854. "ref/portable-net45+win8+wp8+wpa81/_._",
  8855. "ref/win8/_._",
  8856. "ref/wp80/_._",
  8857. "ref/wpa81/_._",
  8858. "ref/xamarinios10/_._",
  8859. "ref/xamarinmac20/_._",
  8860. "ref/xamarintvos10/_._",
  8861. "ref/xamarinwatchos10/_._",
  8862. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8863. "system.runtime.extensions.nuspec"
  8864. ]
  8865. },
  8866. "System.Runtime.Handles/4.3.0": {
  8867. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8868. "type": "package",
  8869. "path": "system.runtime.handles/4.3.0",
  8870. "files": [
  8871. ".nupkg.metadata",
  8872. ".signature.p7s",
  8873. "ThirdPartyNotices.txt",
  8874. "dotnet_library_license.txt",
  8875. "lib/MonoAndroid10/_._",
  8876. "lib/MonoTouch10/_._",
  8877. "lib/net46/_._",
  8878. "lib/xamarinios10/_._",
  8879. "lib/xamarinmac20/_._",
  8880. "lib/xamarintvos10/_._",
  8881. "lib/xamarinwatchos10/_._",
  8882. "ref/MonoAndroid10/_._",
  8883. "ref/MonoTouch10/_._",
  8884. "ref/net46/_._",
  8885. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8886. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8887. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8888. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8889. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8890. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8891. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8892. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8893. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8894. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8895. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8896. "ref/xamarinios10/_._",
  8897. "ref/xamarinmac20/_._",
  8898. "ref/xamarintvos10/_._",
  8899. "ref/xamarinwatchos10/_._",
  8900. "system.runtime.handles.4.3.0.nupkg.sha512",
  8901. "system.runtime.handles.nuspec"
  8902. ]
  8903. },
  8904. "System.Runtime.InteropServices/4.3.0": {
  8905. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8906. "type": "package",
  8907. "path": "system.runtime.interopservices/4.3.0",
  8908. "files": [
  8909. ".nupkg.metadata",
  8910. ".signature.p7s",
  8911. "ThirdPartyNotices.txt",
  8912. "dotnet_library_license.txt",
  8913. "lib/MonoAndroid10/_._",
  8914. "lib/MonoTouch10/_._",
  8915. "lib/net45/_._",
  8916. "lib/net462/System.Runtime.InteropServices.dll",
  8917. "lib/net463/System.Runtime.InteropServices.dll",
  8918. "lib/portable-net45+win8+wpa81/_._",
  8919. "lib/win8/_._",
  8920. "lib/wpa81/_._",
  8921. "lib/xamarinios10/_._",
  8922. "lib/xamarinmac20/_._",
  8923. "lib/xamarintvos10/_._",
  8924. "lib/xamarinwatchos10/_._",
  8925. "ref/MonoAndroid10/_._",
  8926. "ref/MonoTouch10/_._",
  8927. "ref/net45/_._",
  8928. "ref/net462/System.Runtime.InteropServices.dll",
  8929. "ref/net463/System.Runtime.InteropServices.dll",
  8930. "ref/netcore50/System.Runtime.InteropServices.dll",
  8931. "ref/netcore50/System.Runtime.InteropServices.xml",
  8932. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8933. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8934. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8935. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8936. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8937. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8938. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8939. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8940. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8941. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8942. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8943. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8944. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8945. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8946. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8947. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8948. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8949. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8950. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8951. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8952. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8953. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8954. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8955. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8956. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8957. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8958. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8959. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8960. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8961. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8962. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8963. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8964. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8965. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8966. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8967. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8968. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8969. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8970. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8971. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8972. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8973. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8974. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8975. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8976. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8977. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8978. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8979. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8980. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8981. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8982. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8983. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8984. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8985. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8986. "ref/portable-net45+win8+wpa81/_._",
  8987. "ref/win8/_._",
  8988. "ref/wpa81/_._",
  8989. "ref/xamarinios10/_._",
  8990. "ref/xamarinmac20/_._",
  8991. "ref/xamarintvos10/_._",
  8992. "ref/xamarinwatchos10/_._",
  8993. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8994. "system.runtime.interopservices.nuspec"
  8995. ]
  8996. },
  8997. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8998. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8999. "type": "package",
  9000. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  9001. "files": [
  9002. ".nupkg.metadata",
  9003. ".signature.p7s",
  9004. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  9005. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  9006. "ThirdPartyNotices.txt",
  9007. "dotnet_library_license.txt",
  9008. "lib/MonoAndroid10/_._",
  9009. "lib/MonoTouch10/_._",
  9010. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9011. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9012. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  9013. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  9014. "lib/xamarinios10/_._",
  9015. "lib/xamarinmac20/_._",
  9016. "lib/xamarintvos10/_._",
  9017. "lib/xamarinwatchos10/_._",
  9018. "ref/MonoAndroid10/_._",
  9019. "ref/MonoTouch10/_._",
  9020. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9021. "ref/xamarinios10/_._",
  9022. "ref/xamarinmac20/_._",
  9023. "ref/xamarintvos10/_._",
  9024. "ref/xamarinwatchos10/_._",
  9025. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9026. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9027. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9028. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9029. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  9030. ]
  9031. },
  9032. "System.Runtime.Numerics/4.3.0": {
  9033. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  9034. "type": "package",
  9035. "path": "system.runtime.numerics/4.3.0",
  9036. "files": [
  9037. ".nupkg.metadata",
  9038. ".signature.p7s",
  9039. "ThirdPartyNotices.txt",
  9040. "dotnet_library_license.txt",
  9041. "lib/MonoAndroid10/_._",
  9042. "lib/MonoTouch10/_._",
  9043. "lib/net45/_._",
  9044. "lib/netcore50/System.Runtime.Numerics.dll",
  9045. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  9046. "lib/portable-net45+win8+wpa81/_._",
  9047. "lib/win8/_._",
  9048. "lib/wpa81/_._",
  9049. "lib/xamarinios10/_._",
  9050. "lib/xamarinmac20/_._",
  9051. "lib/xamarintvos10/_._",
  9052. "lib/xamarinwatchos10/_._",
  9053. "ref/MonoAndroid10/_._",
  9054. "ref/MonoTouch10/_._",
  9055. "ref/net45/_._",
  9056. "ref/netcore50/System.Runtime.Numerics.dll",
  9057. "ref/netcore50/System.Runtime.Numerics.xml",
  9058. "ref/netcore50/de/System.Runtime.Numerics.xml",
  9059. "ref/netcore50/es/System.Runtime.Numerics.xml",
  9060. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  9061. "ref/netcore50/it/System.Runtime.Numerics.xml",
  9062. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  9063. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  9064. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  9065. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  9066. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  9067. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  9068. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  9069. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  9070. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  9071. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  9072. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  9073. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  9074. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  9075. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  9076. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  9077. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  9078. "ref/portable-net45+win8+wpa81/_._",
  9079. "ref/win8/_._",
  9080. "ref/wpa81/_._",
  9081. "ref/xamarinios10/_._",
  9082. "ref/xamarinmac20/_._",
  9083. "ref/xamarintvos10/_._",
  9084. "ref/xamarinwatchos10/_._",
  9085. "system.runtime.numerics.4.3.0.nupkg.sha512",
  9086. "system.runtime.numerics.nuspec"
  9087. ]
  9088. },
  9089. "System.Runtime.Serialization.Primitives/4.3.0": {
  9090. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  9091. "type": "package",
  9092. "path": "system.runtime.serialization.primitives/4.3.0",
  9093. "files": [
  9094. ".nupkg.metadata",
  9095. ".signature.p7s",
  9096. "ThirdPartyNotices.txt",
  9097. "dotnet_library_license.txt",
  9098. "lib/MonoAndroid10/_._",
  9099. "lib/MonoTouch10/_._",
  9100. "lib/net45/_._",
  9101. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  9102. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9103. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9104. "lib/portable-net45+win8+wp8+wpa81/_._",
  9105. "lib/win8/_._",
  9106. "lib/wp80/_._",
  9107. "lib/wpa81/_._",
  9108. "lib/xamarinios10/_._",
  9109. "lib/xamarinmac20/_._",
  9110. "lib/xamarintvos10/_._",
  9111. "lib/xamarinwatchos10/_._",
  9112. "ref/MonoAndroid10/_._",
  9113. "ref/MonoTouch10/_._",
  9114. "ref/net45/_._",
  9115. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  9116. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  9117. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  9118. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  9119. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  9120. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  9121. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  9122. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  9123. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  9124. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  9125. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9126. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9127. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  9128. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  9129. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  9130. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  9131. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  9132. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  9133. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  9134. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  9135. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  9136. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9137. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9138. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9139. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  9140. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  9141. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  9142. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  9143. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  9144. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  9145. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  9146. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  9147. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9148. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9149. "ref/portable-net45+win8+wp8+wpa81/_._",
  9150. "ref/win8/_._",
  9151. "ref/wp80/_._",
  9152. "ref/wpa81/_._",
  9153. "ref/xamarinios10/_._",
  9154. "ref/xamarinmac20/_._",
  9155. "ref/xamarintvos10/_._",
  9156. "ref/xamarinwatchos10/_._",
  9157. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9158. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  9159. "system.runtime.serialization.primitives.nuspec"
  9160. ]
  9161. },
  9162. "System.Security.AccessControl/4.7.0": {
  9163. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  9164. "type": "package",
  9165. "path": "system.security.accesscontrol/4.7.0",
  9166. "files": [
  9167. ".nupkg.metadata",
  9168. ".signature.p7s",
  9169. "LICENSE.TXT",
  9170. "THIRD-PARTY-NOTICES.TXT",
  9171. "lib/net46/System.Security.AccessControl.dll",
  9172. "lib/net461/System.Security.AccessControl.dll",
  9173. "lib/net461/System.Security.AccessControl.xml",
  9174. "lib/netstandard1.3/System.Security.AccessControl.dll",
  9175. "lib/netstandard2.0/System.Security.AccessControl.dll",
  9176. "lib/netstandard2.0/System.Security.AccessControl.xml",
  9177. "lib/uap10.0.16299/_._",
  9178. "ref/net46/System.Security.AccessControl.dll",
  9179. "ref/net461/System.Security.AccessControl.dll",
  9180. "ref/net461/System.Security.AccessControl.xml",
  9181. "ref/netstandard1.3/System.Security.AccessControl.dll",
  9182. "ref/netstandard1.3/System.Security.AccessControl.xml",
  9183. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  9184. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  9185. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  9186. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  9187. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  9188. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  9189. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  9190. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  9191. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  9192. "ref/netstandard2.0/System.Security.AccessControl.dll",
  9193. "ref/netstandard2.0/System.Security.AccessControl.xml",
  9194. "ref/uap10.0.16299/_._",
  9195. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  9196. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  9197. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  9198. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  9199. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  9200. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  9201. "runtimes/win/lib/uap10.0.16299/_._",
  9202. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  9203. "system.security.accesscontrol.nuspec",
  9204. "useSharedDesignerContext.txt",
  9205. "version.txt"
  9206. ]
  9207. },
  9208. "System.Security.Claims/4.3.0": {
  9209. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  9210. "type": "package",
  9211. "path": "system.security.claims/4.3.0",
  9212. "files": [
  9213. ".nupkg.metadata",
  9214. ".signature.p7s",
  9215. "ThirdPartyNotices.txt",
  9216. "dotnet_library_license.txt",
  9217. "lib/MonoAndroid10/_._",
  9218. "lib/MonoTouch10/_._",
  9219. "lib/net46/System.Security.Claims.dll",
  9220. "lib/netstandard1.3/System.Security.Claims.dll",
  9221. "lib/xamarinios10/_._",
  9222. "lib/xamarinmac20/_._",
  9223. "lib/xamarintvos10/_._",
  9224. "lib/xamarinwatchos10/_._",
  9225. "ref/MonoAndroid10/_._",
  9226. "ref/MonoTouch10/_._",
  9227. "ref/net46/System.Security.Claims.dll",
  9228. "ref/netstandard1.3/System.Security.Claims.dll",
  9229. "ref/netstandard1.3/System.Security.Claims.xml",
  9230. "ref/netstandard1.3/de/System.Security.Claims.xml",
  9231. "ref/netstandard1.3/es/System.Security.Claims.xml",
  9232. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  9233. "ref/netstandard1.3/it/System.Security.Claims.xml",
  9234. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  9235. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  9236. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  9237. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  9238. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  9239. "ref/xamarinios10/_._",
  9240. "ref/xamarinmac20/_._",
  9241. "ref/xamarintvos10/_._",
  9242. "ref/xamarinwatchos10/_._",
  9243. "system.security.claims.4.3.0.nupkg.sha512",
  9244. "system.security.claims.nuspec"
  9245. ]
  9246. },
  9247. "System.Security.Cryptography.Algorithms/4.3.0": {
  9248. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  9249. "type": "package",
  9250. "path": "system.security.cryptography.algorithms/4.3.0",
  9251. "files": [
  9252. ".nupkg.metadata",
  9253. ".signature.p7s",
  9254. "ThirdPartyNotices.txt",
  9255. "dotnet_library_license.txt",
  9256. "lib/MonoAndroid10/_._",
  9257. "lib/MonoTouch10/_._",
  9258. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  9259. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  9260. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  9261. "lib/xamarinios10/_._",
  9262. "lib/xamarinmac20/_._",
  9263. "lib/xamarintvos10/_._",
  9264. "lib/xamarinwatchos10/_._",
  9265. "ref/MonoAndroid10/_._",
  9266. "ref/MonoTouch10/_._",
  9267. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  9268. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  9269. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  9270. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  9271. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  9272. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9273. "ref/xamarinios10/_._",
  9274. "ref/xamarinmac20/_._",
  9275. "ref/xamarintvos10/_._",
  9276. "ref/xamarinwatchos10/_._",
  9277. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9278. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9279. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  9280. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  9281. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  9282. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  9283. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9284. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  9285. "system.security.cryptography.algorithms.nuspec"
  9286. ]
  9287. },
  9288. "System.Security.Cryptography.Cng/4.3.0": {
  9289. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  9290. "type": "package",
  9291. "path": "system.security.cryptography.cng/4.3.0",
  9292. "files": [
  9293. ".nupkg.metadata",
  9294. ".signature.p7s",
  9295. "ThirdPartyNotices.txt",
  9296. "dotnet_library_license.txt",
  9297. "lib/net46/System.Security.Cryptography.Cng.dll",
  9298. "lib/net461/System.Security.Cryptography.Cng.dll",
  9299. "lib/net463/System.Security.Cryptography.Cng.dll",
  9300. "ref/net46/System.Security.Cryptography.Cng.dll",
  9301. "ref/net461/System.Security.Cryptography.Cng.dll",
  9302. "ref/net463/System.Security.Cryptography.Cng.dll",
  9303. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9304. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9305. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9306. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9307. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9308. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9309. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  9310. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9311. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9312. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  9313. "system.security.cryptography.cng.nuspec"
  9314. ]
  9315. },
  9316. "System.Security.Cryptography.Csp/4.3.0": {
  9317. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  9318. "type": "package",
  9319. "path": "system.security.cryptography.csp/4.3.0",
  9320. "files": [
  9321. ".nupkg.metadata",
  9322. ".signature.p7s",
  9323. "ThirdPartyNotices.txt",
  9324. "dotnet_library_license.txt",
  9325. "lib/MonoAndroid10/_._",
  9326. "lib/MonoTouch10/_._",
  9327. "lib/net46/System.Security.Cryptography.Csp.dll",
  9328. "lib/xamarinios10/_._",
  9329. "lib/xamarinmac20/_._",
  9330. "lib/xamarintvos10/_._",
  9331. "lib/xamarinwatchos10/_._",
  9332. "ref/MonoAndroid10/_._",
  9333. "ref/MonoTouch10/_._",
  9334. "ref/net46/System.Security.Cryptography.Csp.dll",
  9335. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9336. "ref/xamarinios10/_._",
  9337. "ref/xamarinmac20/_._",
  9338. "ref/xamarintvos10/_._",
  9339. "ref/xamarinwatchos10/_._",
  9340. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9341. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9342. "runtimes/win/lib/netcore50/_._",
  9343. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9344. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9345. "system.security.cryptography.csp.nuspec"
  9346. ]
  9347. },
  9348. "System.Security.Cryptography.Encoding/4.3.0": {
  9349. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9350. "type": "package",
  9351. "path": "system.security.cryptography.encoding/4.3.0",
  9352. "files": [
  9353. ".nupkg.metadata",
  9354. ".signature.p7s",
  9355. "ThirdPartyNotices.txt",
  9356. "dotnet_library_license.txt",
  9357. "lib/MonoAndroid10/_._",
  9358. "lib/MonoTouch10/_._",
  9359. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9360. "lib/xamarinios10/_._",
  9361. "lib/xamarinmac20/_._",
  9362. "lib/xamarintvos10/_._",
  9363. "lib/xamarinwatchos10/_._",
  9364. "ref/MonoAndroid10/_._",
  9365. "ref/MonoTouch10/_._",
  9366. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9367. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9368. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9369. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9370. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9371. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9372. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9373. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9374. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9375. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9376. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9377. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9378. "ref/xamarinios10/_._",
  9379. "ref/xamarinmac20/_._",
  9380. "ref/xamarintvos10/_._",
  9381. "ref/xamarinwatchos10/_._",
  9382. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9383. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9384. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9385. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9386. "system.security.cryptography.encoding.nuspec"
  9387. ]
  9388. },
  9389. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9390. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9391. "type": "package",
  9392. "path": "system.security.cryptography.openssl/4.3.0",
  9393. "files": [
  9394. ".nupkg.metadata",
  9395. ".signature.p7s",
  9396. "ThirdPartyNotices.txt",
  9397. "dotnet_library_license.txt",
  9398. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9399. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9400. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9401. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9402. "system.security.cryptography.openssl.nuspec"
  9403. ]
  9404. },
  9405. "System.Security.Cryptography.Primitives/4.3.0": {
  9406. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9407. "type": "package",
  9408. "path": "system.security.cryptography.primitives/4.3.0",
  9409. "files": [
  9410. ".nupkg.metadata",
  9411. ".signature.p7s",
  9412. "ThirdPartyNotices.txt",
  9413. "dotnet_library_license.txt",
  9414. "lib/MonoAndroid10/_._",
  9415. "lib/MonoTouch10/_._",
  9416. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9417. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9418. "lib/xamarinios10/_._",
  9419. "lib/xamarinmac20/_._",
  9420. "lib/xamarintvos10/_._",
  9421. "lib/xamarinwatchos10/_._",
  9422. "ref/MonoAndroid10/_._",
  9423. "ref/MonoTouch10/_._",
  9424. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9425. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9426. "ref/xamarinios10/_._",
  9427. "ref/xamarinmac20/_._",
  9428. "ref/xamarintvos10/_._",
  9429. "ref/xamarinwatchos10/_._",
  9430. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9431. "system.security.cryptography.primitives.nuspec"
  9432. ]
  9433. },
  9434. "System.Security.Cryptography.ProtectedData/4.7.0": {
  9435. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  9436. "type": "package",
  9437. "path": "system.security.cryptography.protecteddata/4.7.0",
  9438. "files": [
  9439. ".nupkg.metadata",
  9440. ".signature.p7s",
  9441. "LICENSE.TXT",
  9442. "THIRD-PARTY-NOTICES.TXT",
  9443. "lib/MonoAndroid10/_._",
  9444. "lib/MonoTouch10/_._",
  9445. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9446. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9447. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9448. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9449. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9450. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9451. "lib/xamarinios10/_._",
  9452. "lib/xamarinmac20/_._",
  9453. "lib/xamarintvos10/_._",
  9454. "lib/xamarinwatchos10/_._",
  9455. "ref/MonoAndroid10/_._",
  9456. "ref/MonoTouch10/_._",
  9457. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9458. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9459. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9460. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9461. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9462. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9463. "ref/xamarinios10/_._",
  9464. "ref/xamarinmac20/_._",
  9465. "ref/xamarintvos10/_._",
  9466. "ref/xamarinwatchos10/_._",
  9467. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9468. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9469. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9470. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9471. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9472. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9473. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  9474. "system.security.cryptography.protecteddata.nuspec",
  9475. "useSharedDesignerContext.txt",
  9476. "version.txt"
  9477. ]
  9478. },
  9479. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9480. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9481. "type": "package",
  9482. "path": "system.security.cryptography.x509certificates/4.3.0",
  9483. "files": [
  9484. ".nupkg.metadata",
  9485. ".signature.p7s",
  9486. "ThirdPartyNotices.txt",
  9487. "dotnet_library_license.txt",
  9488. "lib/MonoAndroid10/_._",
  9489. "lib/MonoTouch10/_._",
  9490. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9491. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9492. "lib/xamarinios10/_._",
  9493. "lib/xamarinmac20/_._",
  9494. "lib/xamarintvos10/_._",
  9495. "lib/xamarinwatchos10/_._",
  9496. "ref/MonoAndroid10/_._",
  9497. "ref/MonoTouch10/_._",
  9498. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9499. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9500. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9501. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9502. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9503. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9504. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9505. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9506. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9507. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9508. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9509. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9510. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9511. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9512. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9513. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9514. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9515. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9516. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9517. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9518. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9519. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9520. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9521. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9522. "ref/xamarinios10/_._",
  9523. "ref/xamarinmac20/_._",
  9524. "ref/xamarintvos10/_._",
  9525. "ref/xamarinwatchos10/_._",
  9526. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9527. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9528. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9529. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9530. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9531. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9532. "system.security.cryptography.x509certificates.nuspec"
  9533. ]
  9534. },
  9535. "System.Security.Permissions/4.7.0": {
  9536. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9537. "type": "package",
  9538. "path": "system.security.permissions/4.7.0",
  9539. "files": [
  9540. ".nupkg.metadata",
  9541. ".signature.p7s",
  9542. "LICENSE.TXT",
  9543. "THIRD-PARTY-NOTICES.TXT",
  9544. "lib/net461/System.Security.Permissions.dll",
  9545. "lib/net461/System.Security.Permissions.xml",
  9546. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9547. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9548. "lib/netstandard2.0/System.Security.Permissions.dll",
  9549. "lib/netstandard2.0/System.Security.Permissions.xml",
  9550. "ref/net461/System.Security.Permissions.dll",
  9551. "ref/net461/System.Security.Permissions.xml",
  9552. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9553. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9554. "ref/netstandard2.0/System.Security.Permissions.dll",
  9555. "ref/netstandard2.0/System.Security.Permissions.xml",
  9556. "system.security.permissions.4.7.0.nupkg.sha512",
  9557. "system.security.permissions.nuspec",
  9558. "useSharedDesignerContext.txt",
  9559. "version.txt"
  9560. ]
  9561. },
  9562. "System.Security.Principal/4.3.0": {
  9563. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9564. "type": "package",
  9565. "path": "system.security.principal/4.3.0",
  9566. "files": [
  9567. ".nupkg.metadata",
  9568. ".signature.p7s",
  9569. "ThirdPartyNotices.txt",
  9570. "dotnet_library_license.txt",
  9571. "lib/MonoAndroid10/_._",
  9572. "lib/MonoTouch10/_._",
  9573. "lib/net45/_._",
  9574. "lib/netcore50/System.Security.Principal.dll",
  9575. "lib/netstandard1.0/System.Security.Principal.dll",
  9576. "lib/portable-net45+win8+wp8+wpa81/_._",
  9577. "lib/win8/_._",
  9578. "lib/wp80/_._",
  9579. "lib/wpa81/_._",
  9580. "lib/xamarinios10/_._",
  9581. "lib/xamarinmac20/_._",
  9582. "lib/xamarintvos10/_._",
  9583. "lib/xamarinwatchos10/_._",
  9584. "ref/MonoAndroid10/_._",
  9585. "ref/MonoTouch10/_._",
  9586. "ref/net45/_._",
  9587. "ref/netcore50/System.Security.Principal.dll",
  9588. "ref/netcore50/System.Security.Principal.xml",
  9589. "ref/netcore50/de/System.Security.Principal.xml",
  9590. "ref/netcore50/es/System.Security.Principal.xml",
  9591. "ref/netcore50/fr/System.Security.Principal.xml",
  9592. "ref/netcore50/it/System.Security.Principal.xml",
  9593. "ref/netcore50/ja/System.Security.Principal.xml",
  9594. "ref/netcore50/ko/System.Security.Principal.xml",
  9595. "ref/netcore50/ru/System.Security.Principal.xml",
  9596. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9597. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9598. "ref/netstandard1.0/System.Security.Principal.dll",
  9599. "ref/netstandard1.0/System.Security.Principal.xml",
  9600. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9601. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9602. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9603. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9604. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9605. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9606. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9607. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9608. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9609. "ref/portable-net45+win8+wp8+wpa81/_._",
  9610. "ref/win8/_._",
  9611. "ref/wp80/_._",
  9612. "ref/wpa81/_._",
  9613. "ref/xamarinios10/_._",
  9614. "ref/xamarinmac20/_._",
  9615. "ref/xamarintvos10/_._",
  9616. "ref/xamarinwatchos10/_._",
  9617. "system.security.principal.4.3.0.nupkg.sha512",
  9618. "system.security.principal.nuspec"
  9619. ]
  9620. },
  9621. "System.Security.Principal.Windows/4.7.0": {
  9622. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  9623. "type": "package",
  9624. "path": "system.security.principal.windows/4.7.0",
  9625. "files": [
  9626. ".nupkg.metadata",
  9627. ".signature.p7s",
  9628. "LICENSE.TXT",
  9629. "THIRD-PARTY-NOTICES.TXT",
  9630. "lib/net46/System.Security.Principal.Windows.dll",
  9631. "lib/net461/System.Security.Principal.Windows.dll",
  9632. "lib/net461/System.Security.Principal.Windows.xml",
  9633. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9634. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9635. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9636. "lib/uap10.0.16299/_._",
  9637. "ref/net46/System.Security.Principal.Windows.dll",
  9638. "ref/net461/System.Security.Principal.Windows.dll",
  9639. "ref/net461/System.Security.Principal.Windows.xml",
  9640. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9641. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9642. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9643. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9644. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9645. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9646. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9647. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9648. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9649. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9650. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9651. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9652. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9653. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9654. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9655. "ref/uap10.0.16299/_._",
  9656. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9657. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9658. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9659. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9660. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9661. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9662. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9663. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9664. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9665. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9666. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9667. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9668. "runtimes/win/lib/uap10.0.16299/_._",
  9669. "system.security.principal.windows.4.7.0.nupkg.sha512",
  9670. "system.security.principal.windows.nuspec",
  9671. "useSharedDesignerContext.txt",
  9672. "version.txt"
  9673. ]
  9674. },
  9675. "System.Text.Encoding/4.3.0": {
  9676. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9677. "type": "package",
  9678. "path": "system.text.encoding/4.3.0",
  9679. "files": [
  9680. ".nupkg.metadata",
  9681. ".signature.p7s",
  9682. "ThirdPartyNotices.txt",
  9683. "dotnet_library_license.txt",
  9684. "lib/MonoAndroid10/_._",
  9685. "lib/MonoTouch10/_._",
  9686. "lib/net45/_._",
  9687. "lib/portable-net45+win8+wp8+wpa81/_._",
  9688. "lib/win8/_._",
  9689. "lib/wp80/_._",
  9690. "lib/wpa81/_._",
  9691. "lib/xamarinios10/_._",
  9692. "lib/xamarinmac20/_._",
  9693. "lib/xamarintvos10/_._",
  9694. "lib/xamarinwatchos10/_._",
  9695. "ref/MonoAndroid10/_._",
  9696. "ref/MonoTouch10/_._",
  9697. "ref/net45/_._",
  9698. "ref/netcore50/System.Text.Encoding.dll",
  9699. "ref/netcore50/System.Text.Encoding.xml",
  9700. "ref/netcore50/de/System.Text.Encoding.xml",
  9701. "ref/netcore50/es/System.Text.Encoding.xml",
  9702. "ref/netcore50/fr/System.Text.Encoding.xml",
  9703. "ref/netcore50/it/System.Text.Encoding.xml",
  9704. "ref/netcore50/ja/System.Text.Encoding.xml",
  9705. "ref/netcore50/ko/System.Text.Encoding.xml",
  9706. "ref/netcore50/ru/System.Text.Encoding.xml",
  9707. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9708. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9709. "ref/netstandard1.0/System.Text.Encoding.dll",
  9710. "ref/netstandard1.0/System.Text.Encoding.xml",
  9711. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9712. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9713. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9714. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9715. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9716. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9717. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9718. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9719. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9720. "ref/netstandard1.3/System.Text.Encoding.dll",
  9721. "ref/netstandard1.3/System.Text.Encoding.xml",
  9722. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9723. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9724. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9725. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9726. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9727. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9728. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9729. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9730. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9731. "ref/portable-net45+win8+wp8+wpa81/_._",
  9732. "ref/win8/_._",
  9733. "ref/wp80/_._",
  9734. "ref/wpa81/_._",
  9735. "ref/xamarinios10/_._",
  9736. "ref/xamarinmac20/_._",
  9737. "ref/xamarintvos10/_._",
  9738. "ref/xamarinwatchos10/_._",
  9739. "system.text.encoding.4.3.0.nupkg.sha512",
  9740. "system.text.encoding.nuspec"
  9741. ]
  9742. },
  9743. "System.Text.Encoding.CodePages/5.0.0": {
  9744. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9745. "type": "package",
  9746. "path": "system.text.encoding.codepages/5.0.0",
  9747. "files": [
  9748. ".nupkg.metadata",
  9749. ".signature.p7s",
  9750. "Icon.png",
  9751. "LICENSE.TXT",
  9752. "THIRD-PARTY-NOTICES.TXT",
  9753. "lib/MonoAndroid10/_._",
  9754. "lib/MonoTouch10/_._",
  9755. "lib/net46/System.Text.Encoding.CodePages.dll",
  9756. "lib/net461/System.Text.Encoding.CodePages.dll",
  9757. "lib/net461/System.Text.Encoding.CodePages.xml",
  9758. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9759. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9760. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9761. "lib/xamarinios10/_._",
  9762. "lib/xamarinmac20/_._",
  9763. "lib/xamarintvos10/_._",
  9764. "lib/xamarinwatchos10/_._",
  9765. "ref/MonoAndroid10/_._",
  9766. "ref/MonoTouch10/_._",
  9767. "ref/xamarinios10/_._",
  9768. "ref/xamarinmac20/_._",
  9769. "ref/xamarintvos10/_._",
  9770. "ref/xamarinwatchos10/_._",
  9771. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9772. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9773. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9774. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9775. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9776. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9777. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9778. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9779. "system.text.encoding.codepages.nuspec",
  9780. "useSharedDesignerContext.txt",
  9781. "version.txt"
  9782. ]
  9783. },
  9784. "System.Text.Encoding.Extensions/4.3.0": {
  9785. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9786. "type": "package",
  9787. "path": "system.text.encoding.extensions/4.3.0",
  9788. "files": [
  9789. ".nupkg.metadata",
  9790. ".signature.p7s",
  9791. "ThirdPartyNotices.txt",
  9792. "dotnet_library_license.txt",
  9793. "lib/MonoAndroid10/_._",
  9794. "lib/MonoTouch10/_._",
  9795. "lib/net45/_._",
  9796. "lib/portable-net45+win8+wp8+wpa81/_._",
  9797. "lib/win8/_._",
  9798. "lib/wp80/_._",
  9799. "lib/wpa81/_._",
  9800. "lib/xamarinios10/_._",
  9801. "lib/xamarinmac20/_._",
  9802. "lib/xamarintvos10/_._",
  9803. "lib/xamarinwatchos10/_._",
  9804. "ref/MonoAndroid10/_._",
  9805. "ref/MonoTouch10/_._",
  9806. "ref/net45/_._",
  9807. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9808. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9809. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9810. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9811. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9812. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9813. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9814. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9815. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9816. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9817. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9818. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9819. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9820. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9821. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9822. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9823. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9824. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9825. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9826. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9827. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9828. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9829. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9830. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9831. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9832. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9833. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9834. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9835. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9836. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9837. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9838. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9839. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9840. "ref/portable-net45+win8+wp8+wpa81/_._",
  9841. "ref/win8/_._",
  9842. "ref/wp80/_._",
  9843. "ref/wpa81/_._",
  9844. "ref/xamarinios10/_._",
  9845. "ref/xamarinmac20/_._",
  9846. "ref/xamarintvos10/_._",
  9847. "ref/xamarinwatchos10/_._",
  9848. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9849. "system.text.encoding.extensions.nuspec"
  9850. ]
  9851. },
  9852. "System.Text.Encodings.Web/4.7.0": {
  9853. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  9854. "type": "package",
  9855. "path": "system.text.encodings.web/4.7.0",
  9856. "files": [
  9857. ".nupkg.metadata",
  9858. ".signature.p7s",
  9859. "LICENSE.TXT",
  9860. "THIRD-PARTY-NOTICES.TXT",
  9861. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9862. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9863. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9864. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9865. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  9866. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  9867. "system.text.encodings.web.4.7.0.nupkg.sha512",
  9868. "system.text.encodings.web.nuspec",
  9869. "useSharedDesignerContext.txt",
  9870. "version.txt"
  9871. ]
  9872. },
  9873. "System.Text.RegularExpressions/4.3.0": {
  9874. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9875. "type": "package",
  9876. "path": "system.text.regularexpressions/4.3.0",
  9877. "files": [
  9878. ".nupkg.metadata",
  9879. ".signature.p7s",
  9880. "ThirdPartyNotices.txt",
  9881. "dotnet_library_license.txt",
  9882. "lib/MonoAndroid10/_._",
  9883. "lib/MonoTouch10/_._",
  9884. "lib/net45/_._",
  9885. "lib/net463/System.Text.RegularExpressions.dll",
  9886. "lib/netcore50/System.Text.RegularExpressions.dll",
  9887. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9888. "lib/portable-net45+win8+wp8+wpa81/_._",
  9889. "lib/win8/_._",
  9890. "lib/wp80/_._",
  9891. "lib/wpa81/_._",
  9892. "lib/xamarinios10/_._",
  9893. "lib/xamarinmac20/_._",
  9894. "lib/xamarintvos10/_._",
  9895. "lib/xamarinwatchos10/_._",
  9896. "ref/MonoAndroid10/_._",
  9897. "ref/MonoTouch10/_._",
  9898. "ref/net45/_._",
  9899. "ref/net463/System.Text.RegularExpressions.dll",
  9900. "ref/netcore50/System.Text.RegularExpressions.dll",
  9901. "ref/netcore50/System.Text.RegularExpressions.xml",
  9902. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9903. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9904. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9905. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9906. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9907. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9908. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9909. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9910. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9911. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9912. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9913. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9914. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9915. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9916. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9917. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9918. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9919. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9920. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9921. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9922. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9923. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9924. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9925. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9926. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9927. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9928. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9929. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9930. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9931. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9932. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9933. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9934. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9935. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9936. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9937. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9938. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9939. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9940. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9941. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9942. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9943. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9944. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9945. "ref/portable-net45+win8+wp8+wpa81/_._",
  9946. "ref/win8/_._",
  9947. "ref/wp80/_._",
  9948. "ref/wpa81/_._",
  9949. "ref/xamarinios10/_._",
  9950. "ref/xamarinmac20/_._",
  9951. "ref/xamarintvos10/_._",
  9952. "ref/xamarinwatchos10/_._",
  9953. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9954. "system.text.regularexpressions.nuspec"
  9955. ]
  9956. },
  9957. "System.Threading/4.3.0": {
  9958. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9959. "type": "package",
  9960. "path": "system.threading/4.3.0",
  9961. "files": [
  9962. ".nupkg.metadata",
  9963. ".signature.p7s",
  9964. "ThirdPartyNotices.txt",
  9965. "dotnet_library_license.txt",
  9966. "lib/MonoAndroid10/_._",
  9967. "lib/MonoTouch10/_._",
  9968. "lib/net45/_._",
  9969. "lib/netcore50/System.Threading.dll",
  9970. "lib/netstandard1.3/System.Threading.dll",
  9971. "lib/portable-net45+win8+wp8+wpa81/_._",
  9972. "lib/win8/_._",
  9973. "lib/wp80/_._",
  9974. "lib/wpa81/_._",
  9975. "lib/xamarinios10/_._",
  9976. "lib/xamarinmac20/_._",
  9977. "lib/xamarintvos10/_._",
  9978. "lib/xamarinwatchos10/_._",
  9979. "ref/MonoAndroid10/_._",
  9980. "ref/MonoTouch10/_._",
  9981. "ref/net45/_._",
  9982. "ref/netcore50/System.Threading.dll",
  9983. "ref/netcore50/System.Threading.xml",
  9984. "ref/netcore50/de/System.Threading.xml",
  9985. "ref/netcore50/es/System.Threading.xml",
  9986. "ref/netcore50/fr/System.Threading.xml",
  9987. "ref/netcore50/it/System.Threading.xml",
  9988. "ref/netcore50/ja/System.Threading.xml",
  9989. "ref/netcore50/ko/System.Threading.xml",
  9990. "ref/netcore50/ru/System.Threading.xml",
  9991. "ref/netcore50/zh-hans/System.Threading.xml",
  9992. "ref/netcore50/zh-hant/System.Threading.xml",
  9993. "ref/netstandard1.0/System.Threading.dll",
  9994. "ref/netstandard1.0/System.Threading.xml",
  9995. "ref/netstandard1.0/de/System.Threading.xml",
  9996. "ref/netstandard1.0/es/System.Threading.xml",
  9997. "ref/netstandard1.0/fr/System.Threading.xml",
  9998. "ref/netstandard1.0/it/System.Threading.xml",
  9999. "ref/netstandard1.0/ja/System.Threading.xml",
  10000. "ref/netstandard1.0/ko/System.Threading.xml",
  10001. "ref/netstandard1.0/ru/System.Threading.xml",
  10002. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  10003. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  10004. "ref/netstandard1.3/System.Threading.dll",
  10005. "ref/netstandard1.3/System.Threading.xml",
  10006. "ref/netstandard1.3/de/System.Threading.xml",
  10007. "ref/netstandard1.3/es/System.Threading.xml",
  10008. "ref/netstandard1.3/fr/System.Threading.xml",
  10009. "ref/netstandard1.3/it/System.Threading.xml",
  10010. "ref/netstandard1.3/ja/System.Threading.xml",
  10011. "ref/netstandard1.3/ko/System.Threading.xml",
  10012. "ref/netstandard1.3/ru/System.Threading.xml",
  10013. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  10014. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  10015. "ref/portable-net45+win8+wp8+wpa81/_._",
  10016. "ref/win8/_._",
  10017. "ref/wp80/_._",
  10018. "ref/wpa81/_._",
  10019. "ref/xamarinios10/_._",
  10020. "ref/xamarinmac20/_._",
  10021. "ref/xamarintvos10/_._",
  10022. "ref/xamarinwatchos10/_._",
  10023. "runtimes/aot/lib/netcore50/System.Threading.dll",
  10024. "system.threading.4.3.0.nupkg.sha512",
  10025. "system.threading.nuspec"
  10026. ]
  10027. },
  10028. "System.Threading.Channels/7.0.0": {
  10029. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  10030. "type": "package",
  10031. "path": "system.threading.channels/7.0.0",
  10032. "files": [
  10033. ".nupkg.metadata",
  10034. ".signature.p7s",
  10035. "Icon.png",
  10036. "LICENSE.TXT",
  10037. "THIRD-PARTY-NOTICES.TXT",
  10038. "buildTransitive/net461/System.Threading.Channels.targets",
  10039. "buildTransitive/net462/_._",
  10040. "buildTransitive/net6.0/_._",
  10041. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  10042. "lib/net462/System.Threading.Channels.dll",
  10043. "lib/net462/System.Threading.Channels.xml",
  10044. "lib/net6.0/System.Threading.Channels.dll",
  10045. "lib/net6.0/System.Threading.Channels.xml",
  10046. "lib/net7.0/System.Threading.Channels.dll",
  10047. "lib/net7.0/System.Threading.Channels.xml",
  10048. "lib/netstandard2.0/System.Threading.Channels.dll",
  10049. "lib/netstandard2.0/System.Threading.Channels.xml",
  10050. "lib/netstandard2.1/System.Threading.Channels.dll",
  10051. "lib/netstandard2.1/System.Threading.Channels.xml",
  10052. "system.threading.channels.7.0.0.nupkg.sha512",
  10053. "system.threading.channels.nuspec",
  10054. "useSharedDesignerContext.txt"
  10055. ]
  10056. },
  10057. "System.Threading.Tasks/4.3.0": {
  10058. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  10059. "type": "package",
  10060. "path": "system.threading.tasks/4.3.0",
  10061. "files": [
  10062. ".nupkg.metadata",
  10063. ".signature.p7s",
  10064. "ThirdPartyNotices.txt",
  10065. "dotnet_library_license.txt",
  10066. "lib/MonoAndroid10/_._",
  10067. "lib/MonoTouch10/_._",
  10068. "lib/net45/_._",
  10069. "lib/portable-net45+win8+wp8+wpa81/_._",
  10070. "lib/win8/_._",
  10071. "lib/wp80/_._",
  10072. "lib/wpa81/_._",
  10073. "lib/xamarinios10/_._",
  10074. "lib/xamarinmac20/_._",
  10075. "lib/xamarintvos10/_._",
  10076. "lib/xamarinwatchos10/_._",
  10077. "ref/MonoAndroid10/_._",
  10078. "ref/MonoTouch10/_._",
  10079. "ref/net45/_._",
  10080. "ref/netcore50/System.Threading.Tasks.dll",
  10081. "ref/netcore50/System.Threading.Tasks.xml",
  10082. "ref/netcore50/de/System.Threading.Tasks.xml",
  10083. "ref/netcore50/es/System.Threading.Tasks.xml",
  10084. "ref/netcore50/fr/System.Threading.Tasks.xml",
  10085. "ref/netcore50/it/System.Threading.Tasks.xml",
  10086. "ref/netcore50/ja/System.Threading.Tasks.xml",
  10087. "ref/netcore50/ko/System.Threading.Tasks.xml",
  10088. "ref/netcore50/ru/System.Threading.Tasks.xml",
  10089. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  10090. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  10091. "ref/netstandard1.0/System.Threading.Tasks.dll",
  10092. "ref/netstandard1.0/System.Threading.Tasks.xml",
  10093. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  10094. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  10095. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  10096. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  10097. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  10098. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  10099. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  10100. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  10101. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  10102. "ref/netstandard1.3/System.Threading.Tasks.dll",
  10103. "ref/netstandard1.3/System.Threading.Tasks.xml",
  10104. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  10105. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  10106. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  10107. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  10108. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  10109. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  10110. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  10111. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  10112. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  10113. "ref/portable-net45+win8+wp8+wpa81/_._",
  10114. "ref/win8/_._",
  10115. "ref/wp80/_._",
  10116. "ref/wpa81/_._",
  10117. "ref/xamarinios10/_._",
  10118. "ref/xamarinmac20/_._",
  10119. "ref/xamarintvos10/_._",
  10120. "ref/xamarinwatchos10/_._",
  10121. "system.threading.tasks.4.3.0.nupkg.sha512",
  10122. "system.threading.tasks.nuspec"
  10123. ]
  10124. },
  10125. "System.Threading.Tasks.Extensions/4.3.0": {
  10126. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  10127. "type": "package",
  10128. "path": "system.threading.tasks.extensions/4.3.0",
  10129. "files": [
  10130. ".nupkg.metadata",
  10131. ".signature.p7s",
  10132. "ThirdPartyNotices.txt",
  10133. "dotnet_library_license.txt",
  10134. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  10135. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  10136. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  10137. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  10138. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  10139. "system.threading.tasks.extensions.nuspec"
  10140. ]
  10141. },
  10142. "System.Threading.Thread/4.3.0": {
  10143. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  10144. "type": "package",
  10145. "path": "system.threading.thread/4.3.0",
  10146. "files": [
  10147. ".nupkg.metadata",
  10148. ".signature.p7s",
  10149. "ThirdPartyNotices.txt",
  10150. "dotnet_library_license.txt",
  10151. "lib/MonoAndroid10/_._",
  10152. "lib/MonoTouch10/_._",
  10153. "lib/net46/System.Threading.Thread.dll",
  10154. "lib/netcore50/_._",
  10155. "lib/netstandard1.3/System.Threading.Thread.dll",
  10156. "lib/xamarinios10/_._",
  10157. "lib/xamarinmac20/_._",
  10158. "lib/xamarintvos10/_._",
  10159. "lib/xamarinwatchos10/_._",
  10160. "ref/MonoAndroid10/_._",
  10161. "ref/MonoTouch10/_._",
  10162. "ref/net46/System.Threading.Thread.dll",
  10163. "ref/netstandard1.3/System.Threading.Thread.dll",
  10164. "ref/netstandard1.3/System.Threading.Thread.xml",
  10165. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  10166. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  10167. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  10168. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  10169. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  10170. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  10171. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  10172. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  10173. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  10174. "ref/xamarinios10/_._",
  10175. "ref/xamarinmac20/_._",
  10176. "ref/xamarintvos10/_._",
  10177. "ref/xamarinwatchos10/_._",
  10178. "system.threading.thread.4.3.0.nupkg.sha512",
  10179. "system.threading.thread.nuspec"
  10180. ]
  10181. },
  10182. "System.Threading.ThreadPool/4.3.0": {
  10183. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  10184. "type": "package",
  10185. "path": "system.threading.threadpool/4.3.0",
  10186. "files": [
  10187. ".nupkg.metadata",
  10188. ".signature.p7s",
  10189. "ThirdPartyNotices.txt",
  10190. "dotnet_library_license.txt",
  10191. "lib/MonoAndroid10/_._",
  10192. "lib/MonoTouch10/_._",
  10193. "lib/net46/System.Threading.ThreadPool.dll",
  10194. "lib/netcore50/_._",
  10195. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  10196. "lib/xamarinios10/_._",
  10197. "lib/xamarinmac20/_._",
  10198. "lib/xamarintvos10/_._",
  10199. "lib/xamarinwatchos10/_._",
  10200. "ref/MonoAndroid10/_._",
  10201. "ref/MonoTouch10/_._",
  10202. "ref/net46/System.Threading.ThreadPool.dll",
  10203. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  10204. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  10205. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  10206. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  10207. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  10208. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  10209. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  10210. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  10211. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  10212. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  10213. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  10214. "ref/xamarinios10/_._",
  10215. "ref/xamarinmac20/_._",
  10216. "ref/xamarintvos10/_._",
  10217. "ref/xamarinwatchos10/_._",
  10218. "system.threading.threadpool.4.3.0.nupkg.sha512",
  10219. "system.threading.threadpool.nuspec"
  10220. ]
  10221. },
  10222. "System.Threading.Timer/4.3.0": {
  10223. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  10224. "type": "package",
  10225. "path": "system.threading.timer/4.3.0",
  10226. "files": [
  10227. ".nupkg.metadata",
  10228. ".signature.p7s",
  10229. "ThirdPartyNotices.txt",
  10230. "dotnet_library_license.txt",
  10231. "lib/MonoAndroid10/_._",
  10232. "lib/MonoTouch10/_._",
  10233. "lib/net451/_._",
  10234. "lib/portable-net451+win81+wpa81/_._",
  10235. "lib/win81/_._",
  10236. "lib/wpa81/_._",
  10237. "lib/xamarinios10/_._",
  10238. "lib/xamarinmac20/_._",
  10239. "lib/xamarintvos10/_._",
  10240. "lib/xamarinwatchos10/_._",
  10241. "ref/MonoAndroid10/_._",
  10242. "ref/MonoTouch10/_._",
  10243. "ref/net451/_._",
  10244. "ref/netcore50/System.Threading.Timer.dll",
  10245. "ref/netcore50/System.Threading.Timer.xml",
  10246. "ref/netcore50/de/System.Threading.Timer.xml",
  10247. "ref/netcore50/es/System.Threading.Timer.xml",
  10248. "ref/netcore50/fr/System.Threading.Timer.xml",
  10249. "ref/netcore50/it/System.Threading.Timer.xml",
  10250. "ref/netcore50/ja/System.Threading.Timer.xml",
  10251. "ref/netcore50/ko/System.Threading.Timer.xml",
  10252. "ref/netcore50/ru/System.Threading.Timer.xml",
  10253. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  10254. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  10255. "ref/netstandard1.2/System.Threading.Timer.dll",
  10256. "ref/netstandard1.2/System.Threading.Timer.xml",
  10257. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  10258. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  10259. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  10260. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  10261. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  10262. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  10263. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  10264. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10265. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10266. "ref/portable-net451+win81+wpa81/_._",
  10267. "ref/win81/_._",
  10268. "ref/wpa81/_._",
  10269. "ref/xamarinios10/_._",
  10270. "ref/xamarinmac20/_._",
  10271. "ref/xamarintvos10/_._",
  10272. "ref/xamarinwatchos10/_._",
  10273. "system.threading.timer.4.3.0.nupkg.sha512",
  10274. "system.threading.timer.nuspec"
  10275. ]
  10276. },
  10277. "System.Windows.Extensions/4.7.0": {
  10278. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  10279. "type": "package",
  10280. "path": "system.windows.extensions/4.7.0",
  10281. "files": [
  10282. ".nupkg.metadata",
  10283. ".signature.p7s",
  10284. "LICENSE.TXT",
  10285. "THIRD-PARTY-NOTICES.TXT",
  10286. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10287. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10288. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  10289. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  10290. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10291. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10292. "system.windows.extensions.4.7.0.nupkg.sha512",
  10293. "system.windows.extensions.nuspec",
  10294. "useSharedDesignerContext.txt",
  10295. "version.txt"
  10296. ]
  10297. },
  10298. "System.Xml.ReaderWriter/4.3.0": {
  10299. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10300. "type": "package",
  10301. "path": "system.xml.readerwriter/4.3.0",
  10302. "files": [
  10303. ".nupkg.metadata",
  10304. ".signature.p7s",
  10305. "ThirdPartyNotices.txt",
  10306. "dotnet_library_license.txt",
  10307. "lib/MonoAndroid10/_._",
  10308. "lib/MonoTouch10/_._",
  10309. "lib/net45/_._",
  10310. "lib/net46/System.Xml.ReaderWriter.dll",
  10311. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10312. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10313. "lib/portable-net45+win8+wp8+wpa81/_._",
  10314. "lib/win8/_._",
  10315. "lib/wp80/_._",
  10316. "lib/wpa81/_._",
  10317. "lib/xamarinios10/_._",
  10318. "lib/xamarinmac20/_._",
  10319. "lib/xamarintvos10/_._",
  10320. "lib/xamarinwatchos10/_._",
  10321. "ref/MonoAndroid10/_._",
  10322. "ref/MonoTouch10/_._",
  10323. "ref/net45/_._",
  10324. "ref/net46/System.Xml.ReaderWriter.dll",
  10325. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10326. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10327. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10328. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10329. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10330. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10331. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10332. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10333. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10334. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10335. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10336. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10337. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10338. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10339. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10340. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10341. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10342. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10343. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10344. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10345. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10346. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10347. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10348. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10349. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10350. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10351. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10352. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10353. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10354. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10355. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10356. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10357. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10358. "ref/portable-net45+win8+wp8+wpa81/_._",
  10359. "ref/win8/_._",
  10360. "ref/wp80/_._",
  10361. "ref/wpa81/_._",
  10362. "ref/xamarinios10/_._",
  10363. "ref/xamarinmac20/_._",
  10364. "ref/xamarintvos10/_._",
  10365. "ref/xamarinwatchos10/_._",
  10366. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10367. "system.xml.readerwriter.nuspec"
  10368. ]
  10369. },
  10370. "System.Xml.XDocument/4.3.0": {
  10371. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10372. "type": "package",
  10373. "path": "system.xml.xdocument/4.3.0",
  10374. "files": [
  10375. ".nupkg.metadata",
  10376. ".signature.p7s",
  10377. "ThirdPartyNotices.txt",
  10378. "dotnet_library_license.txt",
  10379. "lib/MonoAndroid10/_._",
  10380. "lib/MonoTouch10/_._",
  10381. "lib/net45/_._",
  10382. "lib/netcore50/System.Xml.XDocument.dll",
  10383. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10384. "lib/portable-net45+win8+wp8+wpa81/_._",
  10385. "lib/win8/_._",
  10386. "lib/wp80/_._",
  10387. "lib/wpa81/_._",
  10388. "lib/xamarinios10/_._",
  10389. "lib/xamarinmac20/_._",
  10390. "lib/xamarintvos10/_._",
  10391. "lib/xamarinwatchos10/_._",
  10392. "ref/MonoAndroid10/_._",
  10393. "ref/MonoTouch10/_._",
  10394. "ref/net45/_._",
  10395. "ref/netcore50/System.Xml.XDocument.dll",
  10396. "ref/netcore50/System.Xml.XDocument.xml",
  10397. "ref/netcore50/de/System.Xml.XDocument.xml",
  10398. "ref/netcore50/es/System.Xml.XDocument.xml",
  10399. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10400. "ref/netcore50/it/System.Xml.XDocument.xml",
  10401. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10402. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10403. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10404. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10405. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10406. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10407. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10408. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10409. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10410. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10411. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10412. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10413. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10414. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10415. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10416. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10417. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10418. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10419. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10420. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10421. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10422. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10423. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10424. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10425. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10426. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10427. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10428. "ref/portable-net45+win8+wp8+wpa81/_._",
  10429. "ref/win8/_._",
  10430. "ref/wp80/_._",
  10431. "ref/wpa81/_._",
  10432. "ref/xamarinios10/_._",
  10433. "ref/xamarinmac20/_._",
  10434. "ref/xamarintvos10/_._",
  10435. "ref/xamarinwatchos10/_._",
  10436. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10437. "system.xml.xdocument.nuspec"
  10438. ]
  10439. },
  10440. "System.Xml.XmlDocument/4.3.0": {
  10441. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10442. "type": "package",
  10443. "path": "system.xml.xmldocument/4.3.0",
  10444. "files": [
  10445. ".nupkg.metadata",
  10446. ".signature.p7s",
  10447. "ThirdPartyNotices.txt",
  10448. "dotnet_library_license.txt",
  10449. "lib/MonoAndroid10/_._",
  10450. "lib/MonoTouch10/_._",
  10451. "lib/net46/System.Xml.XmlDocument.dll",
  10452. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10453. "lib/xamarinios10/_._",
  10454. "lib/xamarinmac20/_._",
  10455. "lib/xamarintvos10/_._",
  10456. "lib/xamarinwatchos10/_._",
  10457. "ref/MonoAndroid10/_._",
  10458. "ref/MonoTouch10/_._",
  10459. "ref/net46/System.Xml.XmlDocument.dll",
  10460. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10461. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10462. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10463. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10464. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10465. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10466. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10467. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10468. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10469. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10470. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10471. "ref/xamarinios10/_._",
  10472. "ref/xamarinmac20/_._",
  10473. "ref/xamarintvos10/_._",
  10474. "ref/xamarinwatchos10/_._",
  10475. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10476. "system.xml.xmldocument.nuspec"
  10477. ]
  10478. },
  10479. "ToolGood.Words/3.1.0.2": {
  10480. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  10481. "type": "package",
  10482. "path": "toolgood.words/3.1.0.2",
  10483. "files": [
  10484. ".nupkg.metadata",
  10485. ".signature.p7s",
  10486. "LICENSE",
  10487. "lib/net6.0/ToolGood.Words.dll",
  10488. "lib/net6.0/ToolGood.Words.xml",
  10489. "lib/net8.0/ToolGood.Words.dll",
  10490. "lib/net8.0/ToolGood.Words.xml",
  10491. "lib/net9.0/ToolGood.Words.dll",
  10492. "lib/net9.0/ToolGood.Words.xml",
  10493. "lib/netstandard2.1/ToolGood.Words.dll",
  10494. "lib/netstandard2.1/ToolGood.Words.xml",
  10495. "toolgood.words.3.1.0.2.nupkg.sha512",
  10496. "toolgood.words.nuspec"
  10497. ]
  10498. },
  10499. "ZXing.Net/0.16.9": {
  10500. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10501. "type": "package",
  10502. "path": "zxing.net/0.16.9",
  10503. "files": [
  10504. ".nupkg.metadata",
  10505. ".signature.p7s",
  10506. "lib/native/zxing.XML",
  10507. "lib/native/zxing.pri",
  10508. "lib/native/zxing.winmd",
  10509. "lib/net20-cf/zxing.ce2.0.dll",
  10510. "lib/net20-cf/zxing.ce2.0.xml",
  10511. "lib/net20/zxing.XML",
  10512. "lib/net20/zxing.dll",
  10513. "lib/net35-cf/zxing.ce3.5.dll",
  10514. "lib/net35-cf/zxing.ce3.5.xml",
  10515. "lib/net35/zxing.XML",
  10516. "lib/net35/zxing.dll",
  10517. "lib/net40/zxing.XML",
  10518. "lib/net40/zxing.dll",
  10519. "lib/net40/zxing.presentation.XML",
  10520. "lib/net40/zxing.presentation.dll",
  10521. "lib/net45/zxing.XML",
  10522. "lib/net45/zxing.dll",
  10523. "lib/net45/zxing.presentation.XML",
  10524. "lib/net45/zxing.presentation.dll",
  10525. "lib/net461/zxing.XML",
  10526. "lib/net461/zxing.dll",
  10527. "lib/net461/zxing.presentation.XML",
  10528. "lib/net461/zxing.presentation.dll",
  10529. "lib/net47/zxing.XML",
  10530. "lib/net47/zxing.dll",
  10531. "lib/net47/zxing.presentation.XML",
  10532. "lib/net47/zxing.presentation.dll",
  10533. "lib/net48/zxing.XML",
  10534. "lib/net48/zxing.dll",
  10535. "lib/net48/zxing.presentation.XML",
  10536. "lib/net48/zxing.presentation.dll",
  10537. "lib/net5.0/zxing.XML",
  10538. "lib/net5.0/zxing.dll",
  10539. "lib/net6.0/zxing.XML",
  10540. "lib/net6.0/zxing.dll",
  10541. "lib/net7.0/zxing.XML",
  10542. "lib/net7.0/zxing.dll",
  10543. "lib/netcoreapp3.0/zxing.dll",
  10544. "lib/netcoreapp3.0/zxing.xml",
  10545. "lib/netcoreapp3.1/zxing.dll",
  10546. "lib/netcoreapp3.1/zxing.xml",
  10547. "lib/netstandard1.0/zxing.dll",
  10548. "lib/netstandard1.0/zxing.xml",
  10549. "lib/netstandard1.1/zxing.dll",
  10550. "lib/netstandard1.1/zxing.xml",
  10551. "lib/netstandard1.3/zxing.dll",
  10552. "lib/netstandard1.3/zxing.xml",
  10553. "lib/netstandard2.0/zxing.dll",
  10554. "lib/netstandard2.0/zxing.xml",
  10555. "lib/netstandard2.1/zxing.dll",
  10556. "lib/netstandard2.1/zxing.xml",
  10557. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10558. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10559. "lib/sl3-wp/zxing.wp7.0.XML",
  10560. "lib/sl3-wp/zxing.wp7.0.dll",
  10561. "lib/sl4-wp71/zxing.wp7.1.XML",
  10562. "lib/sl4-wp71/zxing.wp7.1.dll",
  10563. "lib/sl4/zxing.sl4.XML",
  10564. "lib/sl4/zxing.sl4.dll",
  10565. "lib/sl5/zxing.sl5.XML",
  10566. "lib/sl5/zxing.sl5.dll",
  10567. "lib/uap10/zxing.dll",
  10568. "lib/uap10/zxing.pri",
  10569. "lib/uap10/zxing.xml",
  10570. "lib/windows8-managed/zxing.winrt.XML",
  10571. "lib/windows8-managed/zxing.winrt.dll",
  10572. "lib/windows8/zxing.XML",
  10573. "lib/windows8/zxing.pri",
  10574. "lib/windows8/zxing.winmd",
  10575. "lib/wp8/zxing.wp8.0.XML",
  10576. "lib/wp8/zxing.wp8.0.dll",
  10577. "logo.jpg",
  10578. "zxing.net.0.16.9.nupkg.sha512",
  10579. "zxing.net.nuspec"
  10580. ]
  10581. },
  10582. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10583. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10584. "type": "package",
  10585. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10586. "files": [
  10587. ".nupkg.metadata",
  10588. ".signature.p7s",
  10589. "lib/net472/ZXing.ImageSharp.V2.dll",
  10590. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10591. "lib/net472/ZXing.ImageSharp.V2.xml",
  10592. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10593. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10594. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10595. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10596. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10597. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10598. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10599. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10600. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10601. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10602. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10603. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10604. "logo.jpg",
  10605. "readme.md",
  10606. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10607. "zxing.net.bindings.imagesharp.v2.nuspec"
  10608. ]
  10609. },
  10610. "Ropin.Core.Common/1.0.0": {
  10611. "type": "project",
  10612. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10613. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10614. },
  10615. "Ropin.Core.Extensions/1.0.0": {
  10616. "type": "project",
  10617. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10618. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10619. },
  10620. "Ropin.Inspection.Common/1.0.0": {
  10621. "type": "project",
  10622. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10623. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10624. },
  10625. "Ropin.Inspection.Model/1.0.0": {
  10626. "type": "project",
  10627. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10628. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10629. },
  10630. "Ropin.Inspection.Repository/1.0.0": {
  10631. "type": "project",
  10632. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10633. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10634. },
  10635. "Ropin.Inspection.Service/1.0.0": {
  10636. "type": "project",
  10637. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10638. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10639. },
  10640. "Ropin.Inspection.Tasks/1.0.0": {
  10641. "type": "project",
  10642. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10643. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10644. }
  10645. },
  10646. "projectFileDependencyGroups": {
  10647. "net5.0": [
  10648. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10649. "FBoxClientDriver >= 1.2.0",
  10650. "FBoxClientDriver.Contract >= 1.2.0",
  10651. "InfluxData.Net >= 8.0.1",
  10652. "InitQ >= 1.0.0.14",
  10653. "Microsoft.AspNetCore.NodeServices >= 3.1.30",
  10654. "Microsoft.AspNetCore.SignalR >= 1.1.0",
  10655. "Microsoft.AspNetCore.SignalR.Client >= 3.1.20",
  10656. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  10657. "NLog >= 4.7.7",
  10658. "Newtonsoft.Json >= 13.0.1",
  10659. "RabbitMQ.Client >= 6.8.1",
  10660. "Ropin.Core.Extensions >= 1.0.0",
  10661. "Ropin.Inspection.Common >= 1.0.0",
  10662. "Ropin.Inspection.Model >= 1.0.0",
  10663. "Ropin.Inspection.Repository >= 1.0.0",
  10664. "Serilog >= 2.11.0",
  10665. "Serilog.Sinks.Console >= 4.0.1",
  10666. "Serilog.Sinks.File >= 5.0.0"
  10667. ]
  10668. },
  10669. "packageFolders": {
  10670. "D:\\.nuget\\packages": {},
  10671. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10672. },
  10673. "project": {
  10674. "version": "1.0.0",
  10675. "restore": {
  10676. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10677. "projectName": "Ropin.Environmentally.WebScada",
  10678. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10679. "packagesPath": "D:\\.nuget\\packages",
  10680. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\obj\\",
  10681. "projectStyle": "PackageReference",
  10682. "fallbackFolders": [
  10683. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10684. ],
  10685. "configFilePaths": [
  10686. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10687. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10688. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10689. ],
  10690. "originalTargetFrameworks": [
  10691. "net5.0"
  10692. ],
  10693. "sources": {
  10694. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10695. "C:\\Program Files\\dotnet\\library-packs": {},
  10696. "https://api.nuget.org/v3/index.json": {}
  10697. },
  10698. "frameworks": {
  10699. "net5.0": {
  10700. "targetAlias": "net5.0",
  10701. "projectReferences": {
  10702. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10703. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10704. },
  10705. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10706. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10707. },
  10708. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10709. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10710. },
  10711. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  10712. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  10713. }
  10714. }
  10715. }
  10716. },
  10717. "warningProperties": {
  10718. "warnAsError": [
  10719. "NU1605"
  10720. ]
  10721. }
  10722. },
  10723. "frameworks": {
  10724. "net5.0": {
  10725. "targetAlias": "net5.0",
  10726. "dependencies": {
  10727. "Autofac.Extensions.DependencyInjection": {
  10728. "target": "Package",
  10729. "version": "[7.1.0, )"
  10730. },
  10731. "FBoxClientDriver": {
  10732. "target": "Package",
  10733. "version": "[1.2.0, )"
  10734. },
  10735. "FBoxClientDriver.Contract": {
  10736. "target": "Package",
  10737. "version": "[1.2.0, )"
  10738. },
  10739. "InfluxData.Net": {
  10740. "target": "Package",
  10741. "version": "[8.0.1, )"
  10742. },
  10743. "InitQ": {
  10744. "target": "Package",
  10745. "version": "[1.0.0.14, )"
  10746. },
  10747. "Microsoft.AspNetCore.NodeServices": {
  10748. "target": "Package",
  10749. "version": "[3.1.30, )"
  10750. },
  10751. "Microsoft.AspNetCore.SignalR": {
  10752. "target": "Package",
  10753. "version": "[1.1.0, )"
  10754. },
  10755. "Microsoft.AspNetCore.SignalR.Client": {
  10756. "target": "Package",
  10757. "version": "[3.1.20, )"
  10758. },
  10759. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10760. "target": "Package",
  10761. "version": "[1.17.2, )"
  10762. },
  10763. "NLog": {
  10764. "target": "Package",
  10765. "version": "[4.7.7, )"
  10766. },
  10767. "Newtonsoft.Json": {
  10768. "target": "Package",
  10769. "version": "[13.0.1, )"
  10770. },
  10771. "RabbitMQ.Client": {
  10772. "target": "Package",
  10773. "version": "[6.8.1, )"
  10774. },
  10775. "Serilog": {
  10776. "target": "Package",
  10777. "version": "[2.11.0, )"
  10778. },
  10779. "Serilog.Sinks.Console": {
  10780. "target": "Package",
  10781. "version": "[4.0.1, )"
  10782. },
  10783. "Serilog.Sinks.File": {
  10784. "target": "Package",
  10785. "version": "[5.0.0, )"
  10786. }
  10787. },
  10788. "imports": [
  10789. "net461",
  10790. "net462",
  10791. "net47",
  10792. "net471",
  10793. "net472",
  10794. "net48",
  10795. "net481"
  10796. ],
  10797. "assetTargetFallback": true,
  10798. "warn": true,
  10799. "frameworkReferences": {
  10800. "Microsoft.AspNetCore.App": {
  10801. "privateAssets": "none"
  10802. },
  10803. "Microsoft.NETCore.App": {
  10804. "privateAssets": "all"
  10805. }
  10806. },
  10807. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10808. }
  10809. }
  10810. }
  10811. }