project.assets.json 380 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400
  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.0.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/netstandard2.1/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/netstandard2.1/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. "BouncyCastle.NetCore/1.8.5": {
  52. "type": "package",
  53. "compile": {
  54. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  55. "related": ".xml"
  56. }
  57. },
  58. "runtime": {
  59. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  60. "related": ".xml"
  61. }
  62. }
  63. },
  64. "Coravel/4.2.1": {
  65. "type": "package",
  66. "dependencies": {
  67. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  68. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  69. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  70. },
  71. "compile": {
  72. "lib/netstandard2.0/Coravel.dll": {
  73. "related": ".xml"
  74. }
  75. },
  76. "runtime": {
  77. "lib/netstandard2.0/Coravel.dll": {
  78. "related": ".xml"
  79. }
  80. }
  81. },
  82. "FBoxClientDriver/1.2.0": {
  83. "type": "package",
  84. "dependencies": {
  85. "FBoxClientDriver.Contract": "1.2.0",
  86. "IdentityModel": "4.3.1",
  87. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  88. "Microsoft.CSharp": "4.5.0",
  89. "Microsoft.Extensions.Logging": "3.1.5",
  90. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  91. "Newtonsoft.Json": "12.0.3",
  92. "Nito.AsyncEx.Coordination": "5.0.0",
  93. "NodaTime": "2.4.7",
  94. "System.ComponentModel.EventBasedAsync": "4.3.0",
  95. "System.IO.FileSystem": "4.3.0",
  96. "System.Net.Http": "4.3.2",
  97. "System.Reactive": "4.4.1",
  98. "System.Runtime.Serialization.Primitives": "4.3.0",
  99. "System.Threading.Thread": "4.3.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/FBoxClientDriver.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/FBoxClientDriver.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "FBoxClientDriver.Contract/1.2.0": {
  113. "type": "package",
  114. "dependencies": {
  115. "Newtonsoft.Json": "12.0.3",
  116. "System.ComponentModel.Primitives": "4.3.0"
  117. },
  118. "compile": {
  119. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  120. "related": ".xml"
  121. }
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  125. "related": ".xml"
  126. }
  127. }
  128. },
  129. "FluentEmail.Core/3.0.2": {
  130. "type": "package",
  131. "dependencies": {
  132. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  133. },
  134. "compile": {
  135. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  136. },
  137. "runtime": {
  138. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  139. }
  140. },
  141. "FluentEmail.Smtp/3.0.2": {
  142. "type": "package",
  143. "dependencies": {
  144. "FluentEmail.Core": "3.0.2"
  145. },
  146. "compile": {
  147. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  148. },
  149. "runtime": {
  150. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  151. }
  152. },
  153. "Google.Protobuf/3.11.4": {
  154. "type": "package",
  155. "dependencies": {
  156. "System.Memory": "4.5.2"
  157. },
  158. "compile": {
  159. "lib/netstandard2.0/Google.Protobuf.dll": {
  160. "related": ".pdb;.xml"
  161. }
  162. },
  163. "runtime": {
  164. "lib/netstandard2.0/Google.Protobuf.dll": {
  165. "related": ".pdb;.xml"
  166. }
  167. }
  168. },
  169. "IdentityModel/4.3.1": {
  170. "type": "package",
  171. "dependencies": {
  172. "Newtonsoft.Json": "11.0.2",
  173. "System.Text.Encodings.Web": "4.7.0"
  174. },
  175. "compile": {
  176. "lib/netstandard2.0/IdentityModel.dll": {
  177. "related": ".pdb;.xml"
  178. }
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/IdentityModel.dll": {
  182. "related": ".pdb;.xml"
  183. }
  184. }
  185. },
  186. "InfluxData.Net/8.0.1": {
  187. "type": "package",
  188. "dependencies": {
  189. "Newtonsoft.Json": "10.0.3",
  190. "System.Net.Http": "4.3.2"
  191. },
  192. "compile": {
  193. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  194. "related": ".dll.config;.pdb"
  195. },
  196. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  197. "related": ".dll.config;.pdb"
  198. },
  199. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  200. "related": ".dll.config;.pdb"
  201. },
  202. "lib/netstandard2.0/InfluxData.Net.dll": {
  203. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  204. }
  205. },
  206. "runtime": {
  207. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  208. "related": ".dll.config;.pdb"
  209. },
  210. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  211. "related": ".dll.config;.pdb"
  212. },
  213. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  214. "related": ".dll.config;.pdb"
  215. },
  216. "lib/netstandard2.0/InfluxData.Net.dll": {
  217. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  218. }
  219. }
  220. },
  221. "InitQ/1.0.0.14": {
  222. "type": "package",
  223. "dependencies": {
  224. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  225. "Microsoft.Extensions.Hosting": "2.1.0",
  226. "Newtonsoft.Json": "13.0.1",
  227. "StackExchange.Redis": "1.2.4"
  228. },
  229. "compile": {
  230. "lib/netcoreapp2.1/InitQ.dll": {}
  231. },
  232. "runtime": {
  233. "lib/netcoreapp2.1/InitQ.dll": {}
  234. }
  235. },
  236. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  237. "type": "package",
  238. "dependencies": {
  239. "AdvancedStringBuilder": "0.1.0",
  240. "JavaScriptEngineSwitcher.Core": "3.21.0"
  241. },
  242. "compile": {
  243. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  244. "related": ".xml"
  245. }
  246. },
  247. "runtime": {
  248. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  249. "related": ".xml"
  250. }
  251. },
  252. "resource": {
  253. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  254. "locale": "ru-RU"
  255. }
  256. }
  257. },
  258. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  259. "type": "package",
  260. "runtimeTargets": {
  261. "runtimes/linux-x64/native/libChakraCore.so": {
  262. "assetType": "native",
  263. "rid": "linux-x64"
  264. }
  265. }
  266. },
  267. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  268. "type": "package",
  269. "build": {
  270. "build/_._": {}
  271. },
  272. "runtimeTargets": {
  273. "runtimes/win-x64/native/ChakraCore.dll": {
  274. "assetType": "native",
  275. "rid": "win-x64"
  276. }
  277. }
  278. },
  279. "JavaScriptEngineSwitcher.Core/3.21.0": {
  280. "type": "package",
  281. "dependencies": {
  282. "AdvancedStringBuilder": "0.1.0"
  283. },
  284. "compile": {
  285. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  286. "related": ".xml"
  287. }
  288. },
  289. "runtime": {
  290. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  291. "related": ".xml"
  292. }
  293. },
  294. "resource": {
  295. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  296. "locale": "ru-RU"
  297. }
  298. }
  299. },
  300. "K4os.Compression.LZ4/1.1.11": {
  301. "type": "package",
  302. "dependencies": {
  303. "System.Memory": "4.5.3"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  307. "related": ".xml"
  308. }
  309. },
  310. "runtime": {
  311. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  312. "related": ".xml"
  313. }
  314. }
  315. },
  316. "K4os.Compression.LZ4.Streams/1.1.11": {
  317. "type": "package",
  318. "dependencies": {
  319. "K4os.Compression.LZ4": "1.1.11",
  320. "K4os.Hash.xxHash": "1.0.6"
  321. },
  322. "compile": {
  323. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  324. "related": ".xml"
  325. }
  326. },
  327. "runtime": {
  328. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  329. "related": ".xml"
  330. }
  331. }
  332. },
  333. "K4os.Hash.xxHash/1.0.6": {
  334. "type": "package",
  335. "dependencies": {
  336. "System.Memory": "4.5.3"
  337. },
  338. "compile": {
  339. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  340. "related": ".xml"
  341. }
  342. },
  343. "runtime": {
  344. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  345. "related": ".xml"
  346. }
  347. }
  348. },
  349. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  350. "type": "package",
  351. "dependencies": {
  352. "Microsoft.EntityFrameworkCore": "5.0.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  361. "related": ".xml"
  362. }
  363. }
  364. },
  365. "log4net/2.0.17": {
  366. "type": "package",
  367. "dependencies": {
  368. "System.Configuration.ConfigurationManager": "4.5.0"
  369. },
  370. "compile": {
  371. "lib/netstandard2.0/log4net.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/log4net.dll": {
  377. "related": ".xml"
  378. }
  379. }
  380. },
  381. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  382. "type": "package",
  383. "dependencies": {
  384. "Newtonsoft.Json": "11.0.2"
  385. },
  386. "compile": {
  387. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  388. "related": ".pdb;.xml"
  389. }
  390. },
  391. "runtime": {
  392. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  393. "related": ".pdb;.xml"
  394. }
  395. }
  396. },
  397. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  398. "type": "package",
  399. "dependencies": {
  400. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  401. "System.Text.Encodings.Web": "4.5.0"
  402. },
  403. "compile": {
  404. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  405. "related": ".xml"
  406. }
  407. },
  408. "runtime": {
  409. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  410. "related": ".xml"
  411. }
  412. }
  413. },
  414. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  415. "type": "package",
  416. "dependencies": {
  417. "Microsoft.Extensions.Primitives": "5.0.0",
  418. "System.IO.Pipelines": "5.0.0"
  419. },
  420. "compile": {
  421. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  422. "related": ".xml"
  423. }
  424. },
  425. "runtime": {
  426. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  427. "related": ".xml"
  428. }
  429. }
  430. },
  431. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  432. "type": "package",
  433. "dependencies": {
  434. "Microsoft.Extensions.Logging.Console": "3.1.30",
  435. "Newtonsoft.Json": "13.0.1"
  436. },
  437. "compile": {
  438. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  439. },
  440. "runtime": {
  441. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  442. },
  443. "frameworkReferences": [
  444. "Microsoft.AspNetCore.App"
  445. ]
  446. },
  447. "Microsoft.CSharp/4.5.0": {
  448. "type": "package",
  449. "compile": {
  450. "ref/netcoreapp2.0/_._": {}
  451. },
  452. "runtime": {
  453. "lib/netcoreapp2.0/_._": {}
  454. }
  455. },
  456. "Microsoft.EntityFrameworkCore/5.0.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  460. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  461. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  462. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  463. "Microsoft.Extensions.Logging": "5.0.0",
  464. "System.Collections.Immutable": "5.0.0",
  465. "System.ComponentModel.Annotations": "5.0.0",
  466. "System.Diagnostics.DiagnosticSource": "5.0.0"
  467. },
  468. "compile": {
  469. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  470. "related": ".xml"
  471. }
  472. },
  473. "runtime": {
  474. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  475. "related": ".xml"
  476. }
  477. }
  478. },
  479. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  480. "type": "package",
  481. "compile": {
  482. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  483. "related": ".xml"
  484. }
  485. },
  486. "runtime": {
  487. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  488. "related": ".xml"
  489. }
  490. }
  491. },
  492. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  493. "type": "package",
  494. "compile": {
  495. "lib/netstandard2.0/_._": {}
  496. },
  497. "runtime": {
  498. "lib/netstandard2.0/_._": {}
  499. }
  500. },
  501. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  502. "type": "package",
  503. "dependencies": {
  504. "Microsoft.EntityFrameworkCore": "5.0.0",
  505. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  506. },
  507. "compile": {
  508. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  509. "related": ".xml"
  510. }
  511. },
  512. "runtime": {
  513. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  514. "related": ".xml"
  515. }
  516. }
  517. },
  518. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  519. "type": "package",
  520. "build": {
  521. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  522. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  523. },
  524. "buildMultiTargeting": {
  525. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  526. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  527. }
  528. },
  529. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  530. "type": "package",
  531. "dependencies": {
  532. "Microsoft.Extensions.Primitives": "5.0.0"
  533. },
  534. "compile": {
  535. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  536. "related": ".xml"
  537. }
  538. },
  539. "runtime": {
  540. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  541. "related": ".xml"
  542. }
  543. }
  544. },
  545. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  546. "type": "package",
  547. "dependencies": {
  548. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  549. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  550. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  551. "Microsoft.Extensions.Options": "5.0.0",
  552. "Microsoft.Extensions.Primitives": "5.0.0"
  553. },
  554. "compile": {
  555. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  556. "related": ".xml"
  557. }
  558. },
  559. "runtime": {
  560. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  561. "related": ".xml"
  562. }
  563. }
  564. },
  565. "Microsoft.Extensions.Configuration/5.0.0": {
  566. "type": "package",
  567. "dependencies": {
  568. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  569. "Microsoft.Extensions.Primitives": "5.0.0"
  570. },
  571. "compile": {
  572. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  573. "related": ".xml"
  574. }
  575. },
  576. "runtime": {
  577. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  578. "related": ".xml"
  579. }
  580. }
  581. },
  582. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  583. "type": "package",
  584. "dependencies": {
  585. "Microsoft.Extensions.Primitives": "5.0.0"
  586. },
  587. "compile": {
  588. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  589. "related": ".xml"
  590. }
  591. },
  592. "runtime": {
  593. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  594. "related": ".xml"
  595. }
  596. }
  597. },
  598. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  599. "type": "package",
  600. "dependencies": {
  601. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  602. },
  603. "compile": {
  604. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  605. "related": ".xml"
  606. }
  607. },
  608. "runtime": {
  609. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  610. "related": ".xml"
  611. }
  612. }
  613. },
  614. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  615. "type": "package",
  616. "dependencies": {
  617. "Microsoft.Extensions.Configuration": "5.0.0",
  618. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  619. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  620. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  621. "Microsoft.Extensions.Primitives": "5.0.0"
  622. },
  623. "compile": {
  624. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  625. "related": ".xml"
  626. }
  627. },
  628. "runtime": {
  629. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  630. "related": ".xml"
  631. }
  632. }
  633. },
  634. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  635. "type": "package",
  636. "dependencies": {
  637. "Microsoft.Extensions.Configuration": "5.0.0",
  638. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  639. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  640. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  641. },
  642. "compile": {
  643. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  644. "related": ".xml"
  645. }
  646. },
  647. "runtime": {
  648. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  649. "related": ".xml"
  650. }
  651. }
  652. },
  653. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  654. "type": "package",
  655. "dependencies": {
  656. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  657. },
  658. "compile": {
  659. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  660. "related": ".xml"
  661. }
  662. },
  663. "runtime": {
  664. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  665. "related": ".xml"
  666. }
  667. }
  668. },
  669. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  670. "type": "package",
  671. "compile": {
  672. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  678. "related": ".xml"
  679. }
  680. }
  681. },
  682. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  683. "type": "package",
  684. "dependencies": {
  685. "Microsoft.Extensions.Primitives": "5.0.0"
  686. },
  687. "compile": {
  688. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  689. "related": ".xml"
  690. }
  691. },
  692. "runtime": {
  693. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  694. "related": ".xml"
  695. }
  696. }
  697. },
  698. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  699. "type": "package",
  700. "dependencies": {
  701. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  702. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  703. "Microsoft.Extensions.Primitives": "5.0.0"
  704. },
  705. "compile": {
  706. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  707. "related": ".xml"
  708. }
  709. },
  710. "runtime": {
  711. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  712. "related": ".xml"
  713. }
  714. }
  715. },
  716. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  717. "type": "package",
  718. "compile": {
  719. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  720. "related": ".xml"
  721. }
  722. },
  723. "runtime": {
  724. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  725. "related": ".xml"
  726. }
  727. }
  728. },
  729. "Microsoft.Extensions.Hosting/2.1.0": {
  730. "type": "package",
  731. "dependencies": {
  732. "Microsoft.Extensions.Configuration": "2.1.0",
  733. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  734. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  735. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  736. "Microsoft.Extensions.Logging": "2.1.0"
  737. },
  738. "compile": {
  739. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  740. "related": ".xml"
  741. }
  742. },
  743. "runtime": {
  744. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  745. "related": ".xml"
  746. }
  747. }
  748. },
  749. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  750. "type": "package",
  751. "dependencies": {
  752. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  753. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  754. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  755. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  756. },
  757. "compile": {
  758. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  759. "related": ".xml"
  760. }
  761. },
  762. "runtime": {
  763. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  764. "related": ".xml"
  765. }
  766. }
  767. },
  768. "Microsoft.Extensions.Http/5.0.0": {
  769. "type": "package",
  770. "dependencies": {
  771. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  772. "Microsoft.Extensions.Logging": "5.0.0",
  773. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  774. "Microsoft.Extensions.Options": "5.0.0"
  775. },
  776. "compile": {
  777. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  778. "related": ".xml"
  779. }
  780. },
  781. "runtime": {
  782. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  783. "related": ".xml"
  784. }
  785. }
  786. },
  787. "Microsoft.Extensions.Logging/5.0.0": {
  788. "type": "package",
  789. "dependencies": {
  790. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  791. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  792. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  793. "Microsoft.Extensions.Options": "5.0.0"
  794. },
  795. "compile": {
  796. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  797. "related": ".xml"
  798. }
  799. },
  800. "runtime": {
  801. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  802. "related": ".xml"
  803. }
  804. }
  805. },
  806. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  807. "type": "package",
  808. "compile": {
  809. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  810. "related": ".xml"
  811. }
  812. },
  813. "runtime": {
  814. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  815. "related": ".xml"
  816. }
  817. }
  818. },
  819. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  820. "type": "package",
  821. "dependencies": {
  822. "Microsoft.Extensions.Logging": "3.1.30",
  823. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  824. },
  825. "compile": {
  826. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  827. "related": ".xml"
  828. }
  829. },
  830. "runtime": {
  831. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  832. "related": ".xml"
  833. }
  834. }
  835. },
  836. "Microsoft.Extensions.Logging.Console/3.1.30": {
  837. "type": "package",
  838. "dependencies": {
  839. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  840. "Microsoft.Extensions.Logging": "3.1.30",
  841. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  842. },
  843. "compile": {
  844. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  845. "related": ".xml"
  846. }
  847. },
  848. "runtime": {
  849. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  850. "related": ".xml"
  851. }
  852. }
  853. },
  854. "Microsoft.Extensions.Options/5.0.0": {
  855. "type": "package",
  856. "dependencies": {
  857. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  858. "Microsoft.Extensions.Primitives": "5.0.0"
  859. },
  860. "compile": {
  861. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  862. "related": ".xml"
  863. }
  864. },
  865. "runtime": {
  866. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  867. "related": ".xml"
  868. }
  869. }
  870. },
  871. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  872. "type": "package",
  873. "dependencies": {
  874. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  875. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  876. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  877. "Microsoft.Extensions.Options": "3.1.30"
  878. },
  879. "compile": {
  880. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtime": {
  885. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  886. "related": ".xml"
  887. }
  888. }
  889. },
  890. "Microsoft.Extensions.Primitives/5.0.0": {
  891. "type": "package",
  892. "compile": {
  893. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  894. "related": ".xml"
  895. }
  896. },
  897. "runtime": {
  898. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  899. "related": ".xml"
  900. }
  901. }
  902. },
  903. "Microsoft.NETCore.Platforms/5.0.0": {
  904. "type": "package",
  905. "compile": {
  906. "lib/netstandard1.0/_._": {}
  907. },
  908. "runtime": {
  909. "lib/netstandard1.0/_._": {}
  910. }
  911. },
  912. "Microsoft.NETCore.Targets/1.1.0": {
  913. "type": "package",
  914. "compile": {
  915. "lib/netstandard1.0/_._": {}
  916. },
  917. "runtime": {
  918. "lib/netstandard1.0/_._": {}
  919. }
  920. },
  921. "Microsoft.OpenApi/1.2.3": {
  922. "type": "package",
  923. "compile": {
  924. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  925. "related": ".pdb;.xml"
  926. }
  927. },
  928. "runtime": {
  929. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  930. "related": ".pdb;.xml"
  931. }
  932. }
  933. },
  934. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  935. "type": "package",
  936. "build": {
  937. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  938. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  939. }
  940. },
  941. "Microsoft.Win32.Primitives/4.3.0": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.NETCore.Platforms": "1.1.0",
  945. "Microsoft.NETCore.Targets": "1.1.0",
  946. "System.Runtime": "4.3.0"
  947. },
  948. "compile": {
  949. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  950. "related": ".xml"
  951. }
  952. }
  953. },
  954. "Microsoft.Win32.SystemEvents/5.0.0": {
  955. "type": "package",
  956. "dependencies": {
  957. "Microsoft.NETCore.Platforms": "5.0.0"
  958. },
  959. "compile": {
  960. "ref/netstandard2.0/_._": {
  961. "related": ".xml"
  962. }
  963. },
  964. "runtime": {
  965. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  966. "related": ".xml"
  967. }
  968. },
  969. "runtimeTargets": {
  970. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  971. "assetType": "runtime",
  972. "rid": "win"
  973. }
  974. }
  975. },
  976. "MySql.Data/8.0.23": {
  977. "type": "package",
  978. "dependencies": {
  979. "BouncyCastle.NetCore": "1.8.5",
  980. "Google.Protobuf": "3.11.4",
  981. "K4os.Compression.LZ4": "1.1.11",
  982. "K4os.Compression.LZ4.Streams": "1.1.11",
  983. "K4os.Hash.xxHash": "1.0.6",
  984. "SSH.NET": "2020.0.0-beta1",
  985. "System.Buffers": "4.5.1",
  986. "System.Configuration.ConfigurationManager": "4.4.1",
  987. "System.Security.Permissions": "4.7.0",
  988. "System.Text.Encoding.CodePages": "4.4.0"
  989. },
  990. "compile": {
  991. "lib/net5.0/MySql.Data.dll": {
  992. "related": ".xml"
  993. },
  994. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  995. "lib/net5.0/Zstandard.Net.dll": {}
  996. },
  997. "runtime": {
  998. "lib/net5.0/MySql.Data.dll": {
  999. "related": ".xml"
  1000. },
  1001. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1002. "lib/net5.0/Zstandard.Net.dll": {}
  1003. }
  1004. },
  1005. "MySqlConnector/1.1.0": {
  1006. "type": "package",
  1007. "compile": {
  1008. "lib/net5.0/MySqlConnector.dll": {
  1009. "related": ".xml"
  1010. }
  1011. },
  1012. "runtime": {
  1013. "lib/net5.0/MySqlConnector.dll": {
  1014. "related": ".xml"
  1015. }
  1016. }
  1017. },
  1018. "NETStandard.Library/1.6.1": {
  1019. "type": "package",
  1020. "dependencies": {
  1021. "Microsoft.NETCore.Platforms": "1.1.0",
  1022. "Microsoft.Win32.Primitives": "4.3.0",
  1023. "System.AppContext": "4.3.0",
  1024. "System.Collections": "4.3.0",
  1025. "System.Collections.Concurrent": "4.3.0",
  1026. "System.Console": "4.3.0",
  1027. "System.Diagnostics.Debug": "4.3.0",
  1028. "System.Diagnostics.Tools": "4.3.0",
  1029. "System.Diagnostics.Tracing": "4.3.0",
  1030. "System.Globalization": "4.3.0",
  1031. "System.Globalization.Calendars": "4.3.0",
  1032. "System.IO": "4.3.0",
  1033. "System.IO.Compression": "4.3.0",
  1034. "System.IO.Compression.ZipFile": "4.3.0",
  1035. "System.IO.FileSystem": "4.3.0",
  1036. "System.IO.FileSystem.Primitives": "4.3.0",
  1037. "System.Linq": "4.3.0",
  1038. "System.Linq.Expressions": "4.3.0",
  1039. "System.Net.Http": "4.3.0",
  1040. "System.Net.Primitives": "4.3.0",
  1041. "System.Net.Sockets": "4.3.0",
  1042. "System.ObjectModel": "4.3.0",
  1043. "System.Reflection": "4.3.0",
  1044. "System.Reflection.Extensions": "4.3.0",
  1045. "System.Reflection.Primitives": "4.3.0",
  1046. "System.Resources.ResourceManager": "4.3.0",
  1047. "System.Runtime": "4.3.0",
  1048. "System.Runtime.Extensions": "4.3.0",
  1049. "System.Runtime.Handles": "4.3.0",
  1050. "System.Runtime.InteropServices": "4.3.0",
  1051. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1052. "System.Runtime.Numerics": "4.3.0",
  1053. "System.Security.Cryptography.Algorithms": "4.3.0",
  1054. "System.Security.Cryptography.Encoding": "4.3.0",
  1055. "System.Security.Cryptography.Primitives": "4.3.0",
  1056. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1057. "System.Text.Encoding": "4.3.0",
  1058. "System.Text.Encoding.Extensions": "4.3.0",
  1059. "System.Text.RegularExpressions": "4.3.0",
  1060. "System.Threading": "4.3.0",
  1061. "System.Threading.Tasks": "4.3.0",
  1062. "System.Threading.Timer": "4.3.0",
  1063. "System.Xml.ReaderWriter": "4.3.0",
  1064. "System.Xml.XDocument": "4.3.0"
  1065. }
  1066. },
  1067. "Newtonsoft.Json/13.0.3": {
  1068. "type": "package",
  1069. "compile": {
  1070. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1071. "related": ".xml"
  1072. }
  1073. },
  1074. "runtime": {
  1075. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1076. "related": ".xml"
  1077. }
  1078. }
  1079. },
  1080. "Nito.AsyncEx.Coordination/5.0.0": {
  1081. "type": "package",
  1082. "dependencies": {
  1083. "Nito.AsyncEx.Tasks": "5.0.0",
  1084. "Nito.Collections.Deque": "1.0.4",
  1085. "Nito.Disposables": "2.0.0"
  1086. },
  1087. "compile": {
  1088. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1089. "related": ".xml"
  1090. }
  1091. },
  1092. "runtime": {
  1093. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1094. "related": ".xml"
  1095. }
  1096. }
  1097. },
  1098. "Nito.AsyncEx.Tasks/5.0.0": {
  1099. "type": "package",
  1100. "dependencies": {
  1101. "Nito.Disposables": "2.0.0"
  1102. },
  1103. "compile": {
  1104. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1105. "related": ".xml"
  1106. }
  1107. },
  1108. "runtime": {
  1109. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1110. "related": ".xml"
  1111. }
  1112. }
  1113. },
  1114. "Nito.Collections.Deque/1.0.4": {
  1115. "type": "package",
  1116. "compile": {
  1117. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1118. "related": ".xml"
  1119. }
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1123. "related": ".xml"
  1124. }
  1125. }
  1126. },
  1127. "Nito.Disposables/2.0.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "System.Collections.Immutable": "1.4.0"
  1131. },
  1132. "compile": {
  1133. "lib/netstandard2.0/Nito.Disposables.dll": {
  1134. "related": ".pdb;.xml"
  1135. }
  1136. },
  1137. "runtime": {
  1138. "lib/netstandard2.0/Nito.Disposables.dll": {
  1139. "related": ".pdb;.xml"
  1140. }
  1141. }
  1142. },
  1143. "NodaTime/2.4.7": {
  1144. "type": "package",
  1145. "compile": {
  1146. "lib/netstandard2.0/NodaTime.dll": {
  1147. "related": ".pdb;.xml"
  1148. }
  1149. },
  1150. "runtime": {
  1151. "lib/netstandard2.0/NodaTime.dll": {
  1152. "related": ".pdb;.xml"
  1153. }
  1154. }
  1155. },
  1156. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1157. "type": "package",
  1158. "dependencies": {
  1159. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1160. "MySqlConnector": "1.1.0"
  1161. },
  1162. "compile": {
  1163. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1164. "related": ".xml"
  1165. }
  1166. },
  1167. "runtime": {
  1168. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1169. "related": ".xml"
  1170. }
  1171. }
  1172. },
  1173. "QRCoder/1.4.3": {
  1174. "type": "package",
  1175. "dependencies": {
  1176. "System.Drawing.Common": "5.0.3"
  1177. },
  1178. "compile": {
  1179. "lib/net5.0/QRCoder.dll": {}
  1180. },
  1181. "runtime": {
  1182. "lib/net5.0/QRCoder.dll": {}
  1183. }
  1184. },
  1185. "RabbitMQ.Client/6.8.1": {
  1186. "type": "package",
  1187. "dependencies": {
  1188. "System.Memory": "4.5.5",
  1189. "System.Threading.Channels": "7.0.0"
  1190. },
  1191. "compile": {
  1192. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1193. "related": ".xml"
  1194. }
  1195. },
  1196. "runtime": {
  1197. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1198. "related": ".xml"
  1199. }
  1200. }
  1201. },
  1202. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1203. "type": "package",
  1204. "runtimeTargets": {
  1205. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1206. "assetType": "native",
  1207. "rid": "debian.8-x64"
  1208. }
  1209. }
  1210. },
  1211. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1212. "type": "package",
  1213. "runtimeTargets": {
  1214. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1215. "assetType": "native",
  1216. "rid": "fedora.23-x64"
  1217. }
  1218. }
  1219. },
  1220. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1221. "type": "package",
  1222. "runtimeTargets": {
  1223. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1224. "assetType": "native",
  1225. "rid": "fedora.24-x64"
  1226. }
  1227. }
  1228. },
  1229. "runtime.native.System/4.3.0": {
  1230. "type": "package",
  1231. "dependencies": {
  1232. "Microsoft.NETCore.Platforms": "1.1.0",
  1233. "Microsoft.NETCore.Targets": "1.1.0"
  1234. },
  1235. "compile": {
  1236. "lib/netstandard1.0/_._": {}
  1237. },
  1238. "runtime": {
  1239. "lib/netstandard1.0/_._": {}
  1240. }
  1241. },
  1242. "runtime.native.System.IO.Compression/4.3.0": {
  1243. "type": "package",
  1244. "dependencies": {
  1245. "Microsoft.NETCore.Platforms": "1.1.0",
  1246. "Microsoft.NETCore.Targets": "1.1.0"
  1247. },
  1248. "compile": {
  1249. "lib/netstandard1.0/_._": {}
  1250. },
  1251. "runtime": {
  1252. "lib/netstandard1.0/_._": {}
  1253. }
  1254. },
  1255. "runtime.native.System.Net.Http/4.3.0": {
  1256. "type": "package",
  1257. "dependencies": {
  1258. "Microsoft.NETCore.Platforms": "1.1.0",
  1259. "Microsoft.NETCore.Targets": "1.1.0"
  1260. },
  1261. "compile": {
  1262. "lib/netstandard1.0/_._": {}
  1263. },
  1264. "runtime": {
  1265. "lib/netstandard1.0/_._": {}
  1266. }
  1267. },
  1268. "runtime.native.System.Net.Security/4.3.0": {
  1269. "type": "package",
  1270. "dependencies": {
  1271. "Microsoft.NETCore.Platforms": "1.1.0",
  1272. "Microsoft.NETCore.Targets": "1.1.0"
  1273. },
  1274. "compile": {
  1275. "lib/netstandard1.0/_._": {}
  1276. },
  1277. "runtime": {
  1278. "lib/netstandard1.0/_._": {}
  1279. }
  1280. },
  1281. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1282. "type": "package",
  1283. "dependencies": {
  1284. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1285. },
  1286. "compile": {
  1287. "lib/netstandard1.0/_._": {}
  1288. },
  1289. "runtime": {
  1290. "lib/netstandard1.0/_._": {}
  1291. }
  1292. },
  1293. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1294. "type": "package",
  1295. "dependencies": {
  1296. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1297. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1298. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1299. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1300. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1301. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1302. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1303. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1304. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1305. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1306. },
  1307. "compile": {
  1308. "lib/netstandard1.0/_._": {}
  1309. },
  1310. "runtime": {
  1311. "lib/netstandard1.0/_._": {}
  1312. }
  1313. },
  1314. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1315. "type": "package",
  1316. "runtimeTargets": {
  1317. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1318. "assetType": "native",
  1319. "rid": "opensuse.13.2-x64"
  1320. }
  1321. }
  1322. },
  1323. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1324. "type": "package",
  1325. "runtimeTargets": {
  1326. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1327. "assetType": "native",
  1328. "rid": "opensuse.42.1-x64"
  1329. }
  1330. }
  1331. },
  1332. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1333. "type": "package",
  1334. "runtimeTargets": {
  1335. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1336. "assetType": "native",
  1337. "rid": "osx.10.10-x64"
  1338. }
  1339. }
  1340. },
  1341. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1342. "type": "package",
  1343. "runtimeTargets": {
  1344. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1345. "assetType": "native",
  1346. "rid": "osx.10.10-x64"
  1347. }
  1348. }
  1349. },
  1350. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1351. "type": "package",
  1352. "runtimeTargets": {
  1353. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1354. "assetType": "native",
  1355. "rid": "rhel.7-x64"
  1356. }
  1357. }
  1358. },
  1359. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1360. "type": "package",
  1361. "runtimeTargets": {
  1362. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1363. "assetType": "native",
  1364. "rid": "ubuntu.14.04-x64"
  1365. }
  1366. }
  1367. },
  1368. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1369. "type": "package",
  1370. "runtimeTargets": {
  1371. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1372. "assetType": "native",
  1373. "rid": "ubuntu.16.04-x64"
  1374. }
  1375. }
  1376. },
  1377. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1378. "type": "package",
  1379. "runtimeTargets": {
  1380. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1381. "assetType": "native",
  1382. "rid": "ubuntu.16.10-x64"
  1383. }
  1384. }
  1385. },
  1386. "SixLabors.ImageSharp/2.1.6": {
  1387. "type": "package",
  1388. "dependencies": {
  1389. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1390. "System.Text.Encoding.CodePages": "5.0.0"
  1391. },
  1392. "compile": {
  1393. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1394. "related": ".xml"
  1395. }
  1396. },
  1397. "runtime": {
  1398. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1399. "related": ".xml"
  1400. }
  1401. }
  1402. },
  1403. "SSH.NET/2020.0.0-beta1": {
  1404. "type": "package",
  1405. "dependencies": {
  1406. "SshNet.Security.Cryptography": "[1.3.0]"
  1407. },
  1408. "compile": {
  1409. "lib/netstandard2.0/Renci.SshNet.dll": {
  1410. "related": ".xml"
  1411. }
  1412. },
  1413. "runtime": {
  1414. "lib/netstandard2.0/Renci.SshNet.dll": {
  1415. "related": ".xml"
  1416. }
  1417. }
  1418. },
  1419. "SshNet.Security.Cryptography/1.3.0": {
  1420. "type": "package",
  1421. "compile": {
  1422. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1423. "related": ".xml"
  1424. }
  1425. },
  1426. "runtime": {
  1427. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1428. "related": ".xml"
  1429. }
  1430. }
  1431. },
  1432. "StackExchange.Redis/1.2.4": {
  1433. "type": "package",
  1434. "dependencies": {
  1435. "NETStandard.Library": "1.6.1",
  1436. "System.Collections": "4.3.0",
  1437. "System.Collections.Concurrent": "4.3.0",
  1438. "System.Collections.NonGeneric": "4.3.0",
  1439. "System.Diagnostics.Tools": "4.3.0",
  1440. "System.IO.Compression": "4.3.0",
  1441. "System.IO.FileSystem": "4.3.0",
  1442. "System.Linq": "4.3.0",
  1443. "System.Net.NameResolution": "4.3.0",
  1444. "System.Net.Security": "4.3.0",
  1445. "System.Net.Sockets": "4.3.0",
  1446. "System.Reflection.Emit": "4.3.0",
  1447. "System.Reflection.Emit.Lightweight": "4.3.0",
  1448. "System.Reflection.TypeExtensions": "4.3.0",
  1449. "System.Runtime.Extensions": "4.3.0",
  1450. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1451. "System.Security.Cryptography.Algorithms": "4.3.0",
  1452. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1453. "System.Text.RegularExpressions": "4.3.0",
  1454. "System.Threading": "4.3.0",
  1455. "System.Threading.Thread": "4.3.0",
  1456. "System.Threading.ThreadPool": "4.3.0",
  1457. "System.Threading.Timer": "4.3.0"
  1458. },
  1459. "compile": {
  1460. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1461. "related": ".xml"
  1462. }
  1463. },
  1464. "runtime": {
  1465. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1466. "related": ".xml"
  1467. }
  1468. }
  1469. },
  1470. "Swashbuckle.AspNetCore/5.6.3": {
  1471. "type": "package",
  1472. "dependencies": {
  1473. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1474. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1475. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1476. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1477. },
  1478. "build": {
  1479. "build/Swashbuckle.AspNetCore.props": {}
  1480. }
  1481. },
  1482. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "Microsoft.OpenApi": "1.2.3"
  1486. },
  1487. "compile": {
  1488. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1489. "related": ".pdb;.xml"
  1490. }
  1491. },
  1492. "runtime": {
  1493. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1494. "related": ".pdb;.xml"
  1495. }
  1496. },
  1497. "frameworkReferences": [
  1498. "Microsoft.AspNetCore.App"
  1499. ]
  1500. },
  1501. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1502. "type": "package",
  1503. "dependencies": {
  1504. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1505. },
  1506. "compile": {
  1507. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1508. "related": ".pdb;.xml"
  1509. }
  1510. },
  1511. "runtime": {
  1512. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1513. "related": ".pdb;.xml"
  1514. }
  1515. },
  1516. "frameworkReferences": [
  1517. "Microsoft.AspNetCore.App"
  1518. ]
  1519. },
  1520. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1521. "type": "package",
  1522. "compile": {
  1523. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1524. "related": ".pdb;.xml"
  1525. }
  1526. },
  1527. "runtime": {
  1528. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1529. "related": ".pdb;.xml"
  1530. }
  1531. },
  1532. "frameworkReferences": [
  1533. "Microsoft.AspNetCore.App"
  1534. ]
  1535. },
  1536. "System.AppContext/4.3.0": {
  1537. "type": "package",
  1538. "dependencies": {
  1539. "System.Runtime": "4.3.0"
  1540. },
  1541. "compile": {
  1542. "ref/netstandard1.6/System.AppContext.dll": {
  1543. "related": ".xml"
  1544. }
  1545. },
  1546. "runtime": {
  1547. "lib/netstandard1.6/System.AppContext.dll": {}
  1548. }
  1549. },
  1550. "System.Buffers/4.5.1": {
  1551. "type": "package",
  1552. "compile": {
  1553. "ref/netcoreapp2.0/_._": {}
  1554. },
  1555. "runtime": {
  1556. "lib/netcoreapp2.0/_._": {}
  1557. }
  1558. },
  1559. "System.Collections/4.3.0": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "Microsoft.NETCore.Platforms": "1.1.0",
  1563. "Microsoft.NETCore.Targets": "1.1.0",
  1564. "System.Runtime": "4.3.0"
  1565. },
  1566. "compile": {
  1567. "ref/netstandard1.3/System.Collections.dll": {
  1568. "related": ".xml"
  1569. }
  1570. }
  1571. },
  1572. "System.Collections.Concurrent/4.3.0": {
  1573. "type": "package",
  1574. "dependencies": {
  1575. "System.Collections": "4.3.0",
  1576. "System.Diagnostics.Debug": "4.3.0",
  1577. "System.Diagnostics.Tracing": "4.3.0",
  1578. "System.Globalization": "4.3.0",
  1579. "System.Reflection": "4.3.0",
  1580. "System.Resources.ResourceManager": "4.3.0",
  1581. "System.Runtime": "4.3.0",
  1582. "System.Runtime.Extensions": "4.3.0",
  1583. "System.Threading": "4.3.0",
  1584. "System.Threading.Tasks": "4.3.0"
  1585. },
  1586. "compile": {
  1587. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1588. "related": ".xml"
  1589. }
  1590. },
  1591. "runtime": {
  1592. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1593. }
  1594. },
  1595. "System.Collections.Immutable/5.0.0": {
  1596. "type": "package",
  1597. "compile": {
  1598. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1599. "related": ".xml"
  1600. }
  1601. },
  1602. "runtime": {
  1603. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1604. "related": ".xml"
  1605. }
  1606. }
  1607. },
  1608. "System.Collections.NonGeneric/4.3.0": {
  1609. "type": "package",
  1610. "dependencies": {
  1611. "System.Diagnostics.Debug": "4.3.0",
  1612. "System.Globalization": "4.3.0",
  1613. "System.Resources.ResourceManager": "4.3.0",
  1614. "System.Runtime": "4.3.0",
  1615. "System.Runtime.Extensions": "4.3.0",
  1616. "System.Threading": "4.3.0"
  1617. },
  1618. "compile": {
  1619. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1620. "related": ".xml"
  1621. }
  1622. },
  1623. "runtime": {
  1624. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1625. }
  1626. },
  1627. "System.ComponentModel/4.3.0": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "System.Runtime": "4.3.0"
  1631. },
  1632. "compile": {
  1633. "ref/netstandard1.0/System.ComponentModel.dll": {
  1634. "related": ".xml"
  1635. }
  1636. },
  1637. "runtime": {
  1638. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1639. }
  1640. },
  1641. "System.ComponentModel.Annotations/5.0.0": {
  1642. "type": "package",
  1643. "compile": {
  1644. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1645. "related": ".xml"
  1646. }
  1647. },
  1648. "runtime": {
  1649. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1650. "related": ".xml"
  1651. }
  1652. }
  1653. },
  1654. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1655. "type": "package",
  1656. "dependencies": {
  1657. "System.Resources.ResourceManager": "4.3.0",
  1658. "System.Runtime": "4.3.0",
  1659. "System.Threading": "4.3.0",
  1660. "System.Threading.Tasks": "4.3.0"
  1661. },
  1662. "compile": {
  1663. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1664. "related": ".xml"
  1665. }
  1666. },
  1667. "runtime": {
  1668. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1669. }
  1670. },
  1671. "System.ComponentModel.Primitives/4.3.0": {
  1672. "type": "package",
  1673. "dependencies": {
  1674. "System.ComponentModel": "4.3.0",
  1675. "System.Resources.ResourceManager": "4.3.0",
  1676. "System.Runtime": "4.3.0"
  1677. },
  1678. "compile": {
  1679. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1680. "related": ".xml"
  1681. }
  1682. },
  1683. "runtime": {
  1684. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1685. }
  1686. },
  1687. "System.Configuration.ConfigurationManager/4.5.0": {
  1688. "type": "package",
  1689. "dependencies": {
  1690. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1691. "System.Security.Permissions": "4.5.0"
  1692. },
  1693. "compile": {
  1694. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1695. "related": ".xml"
  1696. }
  1697. },
  1698. "runtime": {
  1699. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1700. }
  1701. },
  1702. "System.Console/4.3.0": {
  1703. "type": "package",
  1704. "dependencies": {
  1705. "Microsoft.NETCore.Platforms": "1.1.0",
  1706. "Microsoft.NETCore.Targets": "1.1.0",
  1707. "System.IO": "4.3.0",
  1708. "System.Runtime": "4.3.0",
  1709. "System.Text.Encoding": "4.3.0"
  1710. },
  1711. "compile": {
  1712. "ref/netstandard1.3/System.Console.dll": {
  1713. "related": ".xml"
  1714. }
  1715. }
  1716. },
  1717. "System.Diagnostics.Debug/4.3.0": {
  1718. "type": "package",
  1719. "dependencies": {
  1720. "Microsoft.NETCore.Platforms": "1.1.0",
  1721. "Microsoft.NETCore.Targets": "1.1.0",
  1722. "System.Runtime": "4.3.0"
  1723. },
  1724. "compile": {
  1725. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1726. "related": ".xml"
  1727. }
  1728. }
  1729. },
  1730. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1731. "type": "package",
  1732. "compile": {
  1733. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1734. "related": ".xml"
  1735. }
  1736. },
  1737. "runtime": {
  1738. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "System.Diagnostics.Tools/4.3.0": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "1.1.0",
  1747. "Microsoft.NETCore.Targets": "1.1.0",
  1748. "System.Runtime": "4.3.0"
  1749. },
  1750. "compile": {
  1751. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1752. "related": ".xml"
  1753. }
  1754. }
  1755. },
  1756. "System.Diagnostics.Tracing/4.3.0": {
  1757. "type": "package",
  1758. "dependencies": {
  1759. "Microsoft.NETCore.Platforms": "1.1.0",
  1760. "Microsoft.NETCore.Targets": "1.1.0",
  1761. "System.Runtime": "4.3.0"
  1762. },
  1763. "compile": {
  1764. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1765. "related": ".xml"
  1766. }
  1767. }
  1768. },
  1769. "System.Drawing.Common/5.0.3": {
  1770. "type": "package",
  1771. "dependencies": {
  1772. "Microsoft.Win32.SystemEvents": "5.0.0"
  1773. },
  1774. "compile": {
  1775. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1776. "related": ".xml"
  1777. }
  1778. },
  1779. "runtime": {
  1780. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1781. "related": ".xml"
  1782. }
  1783. },
  1784. "runtimeTargets": {
  1785. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1786. "assetType": "runtime",
  1787. "rid": "unix"
  1788. },
  1789. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1790. "assetType": "runtime",
  1791. "rid": "win"
  1792. }
  1793. }
  1794. },
  1795. "System.Globalization/4.3.0": {
  1796. "type": "package",
  1797. "dependencies": {
  1798. "Microsoft.NETCore.Platforms": "1.1.0",
  1799. "Microsoft.NETCore.Targets": "1.1.0",
  1800. "System.Runtime": "4.3.0"
  1801. },
  1802. "compile": {
  1803. "ref/netstandard1.3/System.Globalization.dll": {
  1804. "related": ".xml"
  1805. }
  1806. }
  1807. },
  1808. "System.Globalization.Calendars/4.3.0": {
  1809. "type": "package",
  1810. "dependencies": {
  1811. "Microsoft.NETCore.Platforms": "1.1.0",
  1812. "Microsoft.NETCore.Targets": "1.1.0",
  1813. "System.Globalization": "4.3.0",
  1814. "System.Runtime": "4.3.0"
  1815. },
  1816. "compile": {
  1817. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1818. "related": ".xml"
  1819. }
  1820. }
  1821. },
  1822. "System.Globalization.Extensions/4.3.0": {
  1823. "type": "package",
  1824. "dependencies": {
  1825. "Microsoft.NETCore.Platforms": "1.1.0",
  1826. "System.Globalization": "4.3.0",
  1827. "System.Resources.ResourceManager": "4.3.0",
  1828. "System.Runtime": "4.3.0",
  1829. "System.Runtime.Extensions": "4.3.0",
  1830. "System.Runtime.InteropServices": "4.3.0"
  1831. },
  1832. "compile": {
  1833. "ref/netstandard1.3/_._": {
  1834. "related": ".xml"
  1835. }
  1836. },
  1837. "runtimeTargets": {
  1838. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1839. "assetType": "runtime",
  1840. "rid": "unix"
  1841. },
  1842. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1843. "assetType": "runtime",
  1844. "rid": "win"
  1845. }
  1846. }
  1847. },
  1848. "System.IO/4.3.0": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "Microsoft.NETCore.Platforms": "1.1.0",
  1852. "Microsoft.NETCore.Targets": "1.1.0",
  1853. "System.Runtime": "4.3.0",
  1854. "System.Text.Encoding": "4.3.0",
  1855. "System.Threading.Tasks": "4.3.0"
  1856. },
  1857. "compile": {
  1858. "ref/netstandard1.5/System.IO.dll": {
  1859. "related": ".xml"
  1860. }
  1861. }
  1862. },
  1863. "System.IO.Compression/4.3.0": {
  1864. "type": "package",
  1865. "dependencies": {
  1866. "Microsoft.NETCore.Platforms": "1.1.0",
  1867. "System.Buffers": "4.3.0",
  1868. "System.Collections": "4.3.0",
  1869. "System.Diagnostics.Debug": "4.3.0",
  1870. "System.IO": "4.3.0",
  1871. "System.Resources.ResourceManager": "4.3.0",
  1872. "System.Runtime": "4.3.0",
  1873. "System.Runtime.Extensions": "4.3.0",
  1874. "System.Runtime.Handles": "4.3.0",
  1875. "System.Runtime.InteropServices": "4.3.0",
  1876. "System.Text.Encoding": "4.3.0",
  1877. "System.Threading": "4.3.0",
  1878. "System.Threading.Tasks": "4.3.0",
  1879. "runtime.native.System": "4.3.0",
  1880. "runtime.native.System.IO.Compression": "4.3.0"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.3/System.IO.Compression.dll": {
  1884. "related": ".xml"
  1885. }
  1886. },
  1887. "runtimeTargets": {
  1888. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1889. "assetType": "runtime",
  1890. "rid": "unix"
  1891. },
  1892. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1893. "assetType": "runtime",
  1894. "rid": "win"
  1895. }
  1896. }
  1897. },
  1898. "System.IO.Compression.ZipFile/4.3.0": {
  1899. "type": "package",
  1900. "dependencies": {
  1901. "System.Buffers": "4.3.0",
  1902. "System.IO": "4.3.0",
  1903. "System.IO.Compression": "4.3.0",
  1904. "System.IO.FileSystem": "4.3.0",
  1905. "System.IO.FileSystem.Primitives": "4.3.0",
  1906. "System.Resources.ResourceManager": "4.3.0",
  1907. "System.Runtime": "4.3.0",
  1908. "System.Runtime.Extensions": "4.3.0",
  1909. "System.Text.Encoding": "4.3.0"
  1910. },
  1911. "compile": {
  1912. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1913. "related": ".xml"
  1914. }
  1915. },
  1916. "runtime": {
  1917. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1918. }
  1919. },
  1920. "System.IO.FileSystem/4.3.0": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "Microsoft.NETCore.Platforms": "1.1.0",
  1924. "Microsoft.NETCore.Targets": "1.1.0",
  1925. "System.IO": "4.3.0",
  1926. "System.IO.FileSystem.Primitives": "4.3.0",
  1927. "System.Runtime": "4.3.0",
  1928. "System.Runtime.Handles": "4.3.0",
  1929. "System.Text.Encoding": "4.3.0",
  1930. "System.Threading.Tasks": "4.3.0"
  1931. },
  1932. "compile": {
  1933. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1934. "related": ".xml"
  1935. }
  1936. }
  1937. },
  1938. "System.IO.FileSystem.Primitives/4.3.0": {
  1939. "type": "package",
  1940. "dependencies": {
  1941. "System.Runtime": "4.3.0"
  1942. },
  1943. "compile": {
  1944. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1945. "related": ".xml"
  1946. }
  1947. },
  1948. "runtime": {
  1949. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1950. }
  1951. },
  1952. "System.IO.Pipelines/5.0.0": {
  1953. "type": "package",
  1954. "compile": {
  1955. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1956. "related": ".xml"
  1957. }
  1958. },
  1959. "runtime": {
  1960. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1961. "related": ".xml"
  1962. }
  1963. }
  1964. },
  1965. "System.Linq/4.3.0": {
  1966. "type": "package",
  1967. "dependencies": {
  1968. "System.Collections": "4.3.0",
  1969. "System.Diagnostics.Debug": "4.3.0",
  1970. "System.Resources.ResourceManager": "4.3.0",
  1971. "System.Runtime": "4.3.0",
  1972. "System.Runtime.Extensions": "4.3.0"
  1973. },
  1974. "compile": {
  1975. "ref/netstandard1.6/System.Linq.dll": {
  1976. "related": ".xml"
  1977. }
  1978. },
  1979. "runtime": {
  1980. "lib/netstandard1.6/System.Linq.dll": {}
  1981. }
  1982. },
  1983. "System.Linq.Expressions/4.3.0": {
  1984. "type": "package",
  1985. "dependencies": {
  1986. "System.Collections": "4.3.0",
  1987. "System.Diagnostics.Debug": "4.3.0",
  1988. "System.Globalization": "4.3.0",
  1989. "System.IO": "4.3.0",
  1990. "System.Linq": "4.3.0",
  1991. "System.ObjectModel": "4.3.0",
  1992. "System.Reflection": "4.3.0",
  1993. "System.Reflection.Emit": "4.3.0",
  1994. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1995. "System.Reflection.Emit.Lightweight": "4.3.0",
  1996. "System.Reflection.Extensions": "4.3.0",
  1997. "System.Reflection.Primitives": "4.3.0",
  1998. "System.Reflection.TypeExtensions": "4.3.0",
  1999. "System.Resources.ResourceManager": "4.3.0",
  2000. "System.Runtime": "4.3.0",
  2001. "System.Runtime.Extensions": "4.3.0",
  2002. "System.Threading": "4.3.0"
  2003. },
  2004. "compile": {
  2005. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2006. "related": ".xml"
  2007. }
  2008. },
  2009. "runtime": {
  2010. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2011. }
  2012. },
  2013. "System.Memory/4.5.5": {
  2014. "type": "package",
  2015. "compile": {
  2016. "ref/netcoreapp2.1/_._": {}
  2017. },
  2018. "runtime": {
  2019. "lib/netcoreapp2.1/_._": {}
  2020. }
  2021. },
  2022. "System.Net.Http/4.3.2": {
  2023. "type": "package",
  2024. "dependencies": {
  2025. "Microsoft.NETCore.Platforms": "1.1.0",
  2026. "System.Collections": "4.3.0",
  2027. "System.Diagnostics.Debug": "4.3.0",
  2028. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2029. "System.Diagnostics.Tracing": "4.3.0",
  2030. "System.Globalization": "4.3.0",
  2031. "System.Globalization.Extensions": "4.3.0",
  2032. "System.IO": "4.3.0",
  2033. "System.IO.FileSystem": "4.3.0",
  2034. "System.Net.Primitives": "4.3.0",
  2035. "System.Resources.ResourceManager": "4.3.0",
  2036. "System.Runtime": "4.3.0",
  2037. "System.Runtime.Extensions": "4.3.0",
  2038. "System.Runtime.Handles": "4.3.0",
  2039. "System.Runtime.InteropServices": "4.3.0",
  2040. "System.Security.Cryptography.Algorithms": "4.3.0",
  2041. "System.Security.Cryptography.Encoding": "4.3.0",
  2042. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2043. "System.Security.Cryptography.Primitives": "4.3.0",
  2044. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2045. "System.Text.Encoding": "4.3.0",
  2046. "System.Threading": "4.3.0",
  2047. "System.Threading.Tasks": "4.3.0",
  2048. "runtime.native.System": "4.3.0",
  2049. "runtime.native.System.Net.Http": "4.3.0",
  2050. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2051. },
  2052. "compile": {
  2053. "ref/netstandard1.3/System.Net.Http.dll": {}
  2054. },
  2055. "runtimeTargets": {
  2056. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2057. "assetType": "runtime",
  2058. "rid": "unix"
  2059. },
  2060. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2061. "assetType": "runtime",
  2062. "rid": "win"
  2063. }
  2064. }
  2065. },
  2066. "System.Net.NameResolution/4.3.0": {
  2067. "type": "package",
  2068. "dependencies": {
  2069. "Microsoft.NETCore.Platforms": "1.1.0",
  2070. "System.Collections": "4.3.0",
  2071. "System.Diagnostics.Tracing": "4.3.0",
  2072. "System.Globalization": "4.3.0",
  2073. "System.Net.Primitives": "4.3.0",
  2074. "System.Resources.ResourceManager": "4.3.0",
  2075. "System.Runtime": "4.3.0",
  2076. "System.Runtime.Extensions": "4.3.0",
  2077. "System.Runtime.Handles": "4.3.0",
  2078. "System.Runtime.InteropServices": "4.3.0",
  2079. "System.Security.Principal.Windows": "4.3.0",
  2080. "System.Threading": "4.3.0",
  2081. "System.Threading.Tasks": "4.3.0",
  2082. "runtime.native.System": "4.3.0"
  2083. },
  2084. "compile": {
  2085. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2086. "related": ".xml"
  2087. }
  2088. },
  2089. "runtimeTargets": {
  2090. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "unix"
  2093. },
  2094. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2095. "assetType": "runtime",
  2096. "rid": "win"
  2097. }
  2098. }
  2099. },
  2100. "System.Net.Primitives/4.3.0": {
  2101. "type": "package",
  2102. "dependencies": {
  2103. "Microsoft.NETCore.Platforms": "1.1.0",
  2104. "Microsoft.NETCore.Targets": "1.1.0",
  2105. "System.Runtime": "4.3.0",
  2106. "System.Runtime.Handles": "4.3.0"
  2107. },
  2108. "compile": {
  2109. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2110. "related": ".xml"
  2111. }
  2112. }
  2113. },
  2114. "System.Net.Security/4.3.0": {
  2115. "type": "package",
  2116. "dependencies": {
  2117. "Microsoft.NETCore.Platforms": "1.1.0",
  2118. "Microsoft.Win32.Primitives": "4.3.0",
  2119. "System.Collections": "4.3.0",
  2120. "System.Collections.Concurrent": "4.3.0",
  2121. "System.Diagnostics.Tracing": "4.3.0",
  2122. "System.Globalization": "4.3.0",
  2123. "System.Globalization.Extensions": "4.3.0",
  2124. "System.IO": "4.3.0",
  2125. "System.Net.Primitives": "4.3.0",
  2126. "System.Resources.ResourceManager": "4.3.0",
  2127. "System.Runtime": "4.3.0",
  2128. "System.Runtime.Extensions": "4.3.0",
  2129. "System.Runtime.Handles": "4.3.0",
  2130. "System.Runtime.InteropServices": "4.3.0",
  2131. "System.Security.Claims": "4.3.0",
  2132. "System.Security.Cryptography.Algorithms": "4.3.0",
  2133. "System.Security.Cryptography.Encoding": "4.3.0",
  2134. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2135. "System.Security.Cryptography.Primitives": "4.3.0",
  2136. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2137. "System.Security.Principal": "4.3.0",
  2138. "System.Text.Encoding": "4.3.0",
  2139. "System.Threading": "4.3.0",
  2140. "System.Threading.Tasks": "4.3.0",
  2141. "System.Threading.ThreadPool": "4.3.0",
  2142. "runtime.native.System": "4.3.0",
  2143. "runtime.native.System.Net.Security": "4.3.0",
  2144. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2145. },
  2146. "compile": {
  2147. "ref/netstandard1.3/System.Net.Security.dll": {
  2148. "related": ".xml"
  2149. }
  2150. },
  2151. "runtimeTargets": {
  2152. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2153. "assetType": "runtime",
  2154. "rid": "unix"
  2155. },
  2156. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2157. "assetType": "runtime",
  2158. "rid": "win"
  2159. }
  2160. }
  2161. },
  2162. "System.Net.Sockets/4.3.0": {
  2163. "type": "package",
  2164. "dependencies": {
  2165. "Microsoft.NETCore.Platforms": "1.1.0",
  2166. "Microsoft.NETCore.Targets": "1.1.0",
  2167. "System.IO": "4.3.0",
  2168. "System.Net.Primitives": "4.3.0",
  2169. "System.Runtime": "4.3.0",
  2170. "System.Threading.Tasks": "4.3.0"
  2171. },
  2172. "compile": {
  2173. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2174. "related": ".xml"
  2175. }
  2176. }
  2177. },
  2178. "System.ObjectModel/4.3.0": {
  2179. "type": "package",
  2180. "dependencies": {
  2181. "System.Collections": "4.3.0",
  2182. "System.Diagnostics.Debug": "4.3.0",
  2183. "System.Resources.ResourceManager": "4.3.0",
  2184. "System.Runtime": "4.3.0",
  2185. "System.Threading": "4.3.0"
  2186. },
  2187. "compile": {
  2188. "ref/netstandard1.3/System.ObjectModel.dll": {
  2189. "related": ".xml"
  2190. }
  2191. },
  2192. "runtime": {
  2193. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2194. }
  2195. },
  2196. "System.Reactive/4.4.1": {
  2197. "type": "package",
  2198. "compile": {
  2199. "lib/netcoreapp3.0/_._": {}
  2200. },
  2201. "runtime": {
  2202. "lib/netcoreapp3.0/_._": {}
  2203. },
  2204. "build": {
  2205. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2206. }
  2207. },
  2208. "System.Reflection/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.Reflection.Primitives": "4.3.0",
  2215. "System.Runtime": "4.3.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard1.5/System.Reflection.dll": {
  2219. "related": ".xml"
  2220. }
  2221. }
  2222. },
  2223. "System.Reflection.Emit/4.3.0": {
  2224. "type": "package",
  2225. "dependencies": {
  2226. "System.IO": "4.3.0",
  2227. "System.Reflection": "4.3.0",
  2228. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2229. "System.Reflection.Primitives": "4.3.0",
  2230. "System.Runtime": "4.3.0"
  2231. },
  2232. "compile": {
  2233. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2234. "related": ".xml"
  2235. }
  2236. },
  2237. "runtime": {
  2238. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2239. }
  2240. },
  2241. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2242. "type": "package",
  2243. "dependencies": {
  2244. "System.Reflection": "4.3.0",
  2245. "System.Reflection.Primitives": "4.3.0",
  2246. "System.Runtime": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2250. "related": ".xml"
  2251. }
  2252. },
  2253. "runtime": {
  2254. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2255. }
  2256. },
  2257. "System.Reflection.Emit.Lightweight/4.3.0": {
  2258. "type": "package",
  2259. "dependencies": {
  2260. "System.Reflection": "4.3.0",
  2261. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2262. "System.Reflection.Primitives": "4.3.0",
  2263. "System.Runtime": "4.3.0"
  2264. },
  2265. "compile": {
  2266. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2267. "related": ".xml"
  2268. }
  2269. },
  2270. "runtime": {
  2271. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2272. }
  2273. },
  2274. "System.Reflection.Extensions/4.3.0": {
  2275. "type": "package",
  2276. "dependencies": {
  2277. "Microsoft.NETCore.Platforms": "1.1.0",
  2278. "Microsoft.NETCore.Targets": "1.1.0",
  2279. "System.Reflection": "4.3.0",
  2280. "System.Runtime": "4.3.0"
  2281. },
  2282. "compile": {
  2283. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2284. "related": ".xml"
  2285. }
  2286. }
  2287. },
  2288. "System.Reflection.Primitives/4.3.0": {
  2289. "type": "package",
  2290. "dependencies": {
  2291. "Microsoft.NETCore.Platforms": "1.1.0",
  2292. "Microsoft.NETCore.Targets": "1.1.0",
  2293. "System.Runtime": "4.3.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2297. "related": ".xml"
  2298. }
  2299. }
  2300. },
  2301. "System.Reflection.TypeExtensions/4.3.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "System.Reflection": "4.3.0",
  2305. "System.Runtime": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2309. "related": ".xml"
  2310. }
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2314. }
  2315. },
  2316. "System.Resources.ResourceManager/4.3.0": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "Microsoft.NETCore.Platforms": "1.1.0",
  2320. "Microsoft.NETCore.Targets": "1.1.0",
  2321. "System.Globalization": "4.3.0",
  2322. "System.Reflection": "4.3.0",
  2323. "System.Runtime": "4.3.0"
  2324. },
  2325. "compile": {
  2326. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2327. "related": ".xml"
  2328. }
  2329. }
  2330. },
  2331. "System.Runtime/4.3.0": {
  2332. "type": "package",
  2333. "dependencies": {
  2334. "Microsoft.NETCore.Platforms": "1.1.0",
  2335. "Microsoft.NETCore.Targets": "1.1.0"
  2336. },
  2337. "compile": {
  2338. "ref/netstandard1.5/System.Runtime.dll": {
  2339. "related": ".xml"
  2340. }
  2341. }
  2342. },
  2343. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2344. "type": "package",
  2345. "compile": {
  2346. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2347. "related": ".xml"
  2348. }
  2349. },
  2350. "runtime": {
  2351. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2352. "related": ".xml"
  2353. }
  2354. }
  2355. },
  2356. "System.Runtime.Extensions/4.3.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "Microsoft.NETCore.Platforms": "1.1.0",
  2360. "Microsoft.NETCore.Targets": "1.1.0",
  2361. "System.Runtime": "4.3.0"
  2362. },
  2363. "compile": {
  2364. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2365. "related": ".xml"
  2366. }
  2367. }
  2368. },
  2369. "System.Runtime.Handles/4.3.0": {
  2370. "type": "package",
  2371. "dependencies": {
  2372. "Microsoft.NETCore.Platforms": "1.1.0",
  2373. "Microsoft.NETCore.Targets": "1.1.0",
  2374. "System.Runtime": "4.3.0"
  2375. },
  2376. "compile": {
  2377. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2378. "related": ".xml"
  2379. }
  2380. }
  2381. },
  2382. "System.Runtime.InteropServices/4.3.0": {
  2383. "type": "package",
  2384. "dependencies": {
  2385. "Microsoft.NETCore.Platforms": "1.1.0",
  2386. "Microsoft.NETCore.Targets": "1.1.0",
  2387. "System.Reflection": "4.3.0",
  2388. "System.Reflection.Primitives": "4.3.0",
  2389. "System.Runtime": "4.3.0",
  2390. "System.Runtime.Handles": "4.3.0"
  2391. },
  2392. "compile": {
  2393. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2394. }
  2395. },
  2396. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2397. "type": "package",
  2398. "dependencies": {
  2399. "System.Reflection": "4.3.0",
  2400. "System.Reflection.Extensions": "4.3.0",
  2401. "System.Resources.ResourceManager": "4.3.0",
  2402. "System.Runtime": "4.3.0",
  2403. "System.Runtime.InteropServices": "4.3.0",
  2404. "System.Threading": "4.3.0",
  2405. "runtime.native.System": "4.3.0"
  2406. },
  2407. "compile": {
  2408. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2409. },
  2410. "runtime": {
  2411. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2412. },
  2413. "runtimeTargets": {
  2414. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2415. "assetType": "runtime",
  2416. "rid": "unix"
  2417. },
  2418. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2419. "assetType": "runtime",
  2420. "rid": "win"
  2421. }
  2422. }
  2423. },
  2424. "System.Runtime.Numerics/4.3.0": {
  2425. "type": "package",
  2426. "dependencies": {
  2427. "System.Globalization": "4.3.0",
  2428. "System.Resources.ResourceManager": "4.3.0",
  2429. "System.Runtime": "4.3.0",
  2430. "System.Runtime.Extensions": "4.3.0"
  2431. },
  2432. "compile": {
  2433. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2434. "related": ".xml"
  2435. }
  2436. },
  2437. "runtime": {
  2438. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2439. }
  2440. },
  2441. "System.Runtime.Serialization.Primitives/4.3.0": {
  2442. "type": "package",
  2443. "dependencies": {
  2444. "System.Resources.ResourceManager": "4.3.0",
  2445. "System.Runtime": "4.3.0"
  2446. },
  2447. "compile": {
  2448. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2449. "related": ".xml"
  2450. }
  2451. },
  2452. "runtime": {
  2453. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2454. }
  2455. },
  2456. "System.Security.AccessControl/4.7.0": {
  2457. "type": "package",
  2458. "dependencies": {
  2459. "Microsoft.NETCore.Platforms": "3.1.0",
  2460. "System.Security.Principal.Windows": "4.7.0"
  2461. },
  2462. "compile": {
  2463. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2464. "related": ".xml"
  2465. }
  2466. },
  2467. "runtime": {
  2468. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2469. "related": ".xml"
  2470. }
  2471. },
  2472. "runtimeTargets": {
  2473. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2474. "assetType": "runtime",
  2475. "rid": "win"
  2476. }
  2477. }
  2478. },
  2479. "System.Security.Claims/4.3.0": {
  2480. "type": "package",
  2481. "dependencies": {
  2482. "System.Collections": "4.3.0",
  2483. "System.Globalization": "4.3.0",
  2484. "System.IO": "4.3.0",
  2485. "System.Resources.ResourceManager": "4.3.0",
  2486. "System.Runtime": "4.3.0",
  2487. "System.Runtime.Extensions": "4.3.0",
  2488. "System.Security.Principal": "4.3.0"
  2489. },
  2490. "compile": {
  2491. "ref/netstandard1.3/_._": {
  2492. "related": ".xml"
  2493. }
  2494. },
  2495. "runtime": {
  2496. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2497. }
  2498. },
  2499. "System.Security.Cryptography.Algorithms/4.3.0": {
  2500. "type": "package",
  2501. "dependencies": {
  2502. "Microsoft.NETCore.Platforms": "1.1.0",
  2503. "System.Collections": "4.3.0",
  2504. "System.IO": "4.3.0",
  2505. "System.Resources.ResourceManager": "4.3.0",
  2506. "System.Runtime": "4.3.0",
  2507. "System.Runtime.Extensions": "4.3.0",
  2508. "System.Runtime.Handles": "4.3.0",
  2509. "System.Runtime.InteropServices": "4.3.0",
  2510. "System.Runtime.Numerics": "4.3.0",
  2511. "System.Security.Cryptography.Encoding": "4.3.0",
  2512. "System.Security.Cryptography.Primitives": "4.3.0",
  2513. "System.Text.Encoding": "4.3.0",
  2514. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2515. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2516. },
  2517. "compile": {
  2518. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2519. },
  2520. "runtimeTargets": {
  2521. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2522. "assetType": "runtime",
  2523. "rid": "osx"
  2524. },
  2525. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2526. "assetType": "runtime",
  2527. "rid": "unix"
  2528. },
  2529. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2530. "assetType": "runtime",
  2531. "rid": "win"
  2532. }
  2533. }
  2534. },
  2535. "System.Security.Cryptography.Cng/4.3.0": {
  2536. "type": "package",
  2537. "dependencies": {
  2538. "Microsoft.NETCore.Platforms": "1.1.0",
  2539. "System.IO": "4.3.0",
  2540. "System.Resources.ResourceManager": "4.3.0",
  2541. "System.Runtime": "4.3.0",
  2542. "System.Runtime.Extensions": "4.3.0",
  2543. "System.Runtime.Handles": "4.3.0",
  2544. "System.Runtime.InteropServices": "4.3.0",
  2545. "System.Security.Cryptography.Algorithms": "4.3.0",
  2546. "System.Security.Cryptography.Encoding": "4.3.0",
  2547. "System.Security.Cryptography.Primitives": "4.3.0",
  2548. "System.Text.Encoding": "4.3.0"
  2549. },
  2550. "compile": {
  2551. "ref/netstandard1.6/_._": {}
  2552. },
  2553. "runtimeTargets": {
  2554. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2555. "assetType": "runtime",
  2556. "rid": "unix"
  2557. },
  2558. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2559. "assetType": "runtime",
  2560. "rid": "win"
  2561. }
  2562. }
  2563. },
  2564. "System.Security.Cryptography.Csp/4.3.0": {
  2565. "type": "package",
  2566. "dependencies": {
  2567. "Microsoft.NETCore.Platforms": "1.1.0",
  2568. "System.IO": "4.3.0",
  2569. "System.Reflection": "4.3.0",
  2570. "System.Resources.ResourceManager": "4.3.0",
  2571. "System.Runtime": "4.3.0",
  2572. "System.Runtime.Extensions": "4.3.0",
  2573. "System.Runtime.Handles": "4.3.0",
  2574. "System.Runtime.InteropServices": "4.3.0",
  2575. "System.Security.Cryptography.Algorithms": "4.3.0",
  2576. "System.Security.Cryptography.Encoding": "4.3.0",
  2577. "System.Security.Cryptography.Primitives": "4.3.0",
  2578. "System.Text.Encoding": "4.3.0",
  2579. "System.Threading": "4.3.0"
  2580. },
  2581. "compile": {
  2582. "ref/netstandard1.3/_._": {}
  2583. },
  2584. "runtimeTargets": {
  2585. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2586. "assetType": "runtime",
  2587. "rid": "unix"
  2588. },
  2589. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2590. "assetType": "runtime",
  2591. "rid": "win"
  2592. }
  2593. }
  2594. },
  2595. "System.Security.Cryptography.Encoding/4.3.0": {
  2596. "type": "package",
  2597. "dependencies": {
  2598. "Microsoft.NETCore.Platforms": "1.1.0",
  2599. "System.Collections": "4.3.0",
  2600. "System.Collections.Concurrent": "4.3.0",
  2601. "System.Linq": "4.3.0",
  2602. "System.Resources.ResourceManager": "4.3.0",
  2603. "System.Runtime": "4.3.0",
  2604. "System.Runtime.Extensions": "4.3.0",
  2605. "System.Runtime.Handles": "4.3.0",
  2606. "System.Runtime.InteropServices": "4.3.0",
  2607. "System.Security.Cryptography.Primitives": "4.3.0",
  2608. "System.Text.Encoding": "4.3.0",
  2609. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2610. },
  2611. "compile": {
  2612. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2613. "related": ".xml"
  2614. }
  2615. },
  2616. "runtimeTargets": {
  2617. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2618. "assetType": "runtime",
  2619. "rid": "unix"
  2620. },
  2621. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2622. "assetType": "runtime",
  2623. "rid": "win"
  2624. }
  2625. }
  2626. },
  2627. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2628. "type": "package",
  2629. "dependencies": {
  2630. "System.Collections": "4.3.0",
  2631. "System.IO": "4.3.0",
  2632. "System.Resources.ResourceManager": "4.3.0",
  2633. "System.Runtime": "4.3.0",
  2634. "System.Runtime.Extensions": "4.3.0",
  2635. "System.Runtime.Handles": "4.3.0",
  2636. "System.Runtime.InteropServices": "4.3.0",
  2637. "System.Runtime.Numerics": "4.3.0",
  2638. "System.Security.Cryptography.Algorithms": "4.3.0",
  2639. "System.Security.Cryptography.Encoding": "4.3.0",
  2640. "System.Security.Cryptography.Primitives": "4.3.0",
  2641. "System.Text.Encoding": "4.3.0",
  2642. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2643. },
  2644. "compile": {
  2645. "ref/netstandard1.6/_._": {}
  2646. },
  2647. "runtime": {
  2648. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2649. },
  2650. "runtimeTargets": {
  2651. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2652. "assetType": "runtime",
  2653. "rid": "unix"
  2654. }
  2655. }
  2656. },
  2657. "System.Security.Cryptography.Primitives/4.3.0": {
  2658. "type": "package",
  2659. "dependencies": {
  2660. "System.Diagnostics.Debug": "4.3.0",
  2661. "System.Globalization": "4.3.0",
  2662. "System.IO": "4.3.0",
  2663. "System.Resources.ResourceManager": "4.3.0",
  2664. "System.Runtime": "4.3.0",
  2665. "System.Threading": "4.3.0",
  2666. "System.Threading.Tasks": "4.3.0"
  2667. },
  2668. "compile": {
  2669. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2670. },
  2671. "runtime": {
  2672. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2673. }
  2674. },
  2675. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2676. "type": "package",
  2677. "compile": {
  2678. "ref/netstandard2.0/_._": {
  2679. "related": ".xml"
  2680. }
  2681. },
  2682. "runtime": {
  2683. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2684. },
  2685. "runtimeTargets": {
  2686. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2687. "assetType": "runtime",
  2688. "rid": "win"
  2689. }
  2690. }
  2691. },
  2692. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2693. "type": "package",
  2694. "dependencies": {
  2695. "Microsoft.NETCore.Platforms": "1.1.0",
  2696. "System.Collections": "4.3.0",
  2697. "System.Diagnostics.Debug": "4.3.0",
  2698. "System.Globalization": "4.3.0",
  2699. "System.Globalization.Calendars": "4.3.0",
  2700. "System.IO": "4.3.0",
  2701. "System.IO.FileSystem": "4.3.0",
  2702. "System.IO.FileSystem.Primitives": "4.3.0",
  2703. "System.Resources.ResourceManager": "4.3.0",
  2704. "System.Runtime": "4.3.0",
  2705. "System.Runtime.Extensions": "4.3.0",
  2706. "System.Runtime.Handles": "4.3.0",
  2707. "System.Runtime.InteropServices": "4.3.0",
  2708. "System.Runtime.Numerics": "4.3.0",
  2709. "System.Security.Cryptography.Algorithms": "4.3.0",
  2710. "System.Security.Cryptography.Cng": "4.3.0",
  2711. "System.Security.Cryptography.Csp": "4.3.0",
  2712. "System.Security.Cryptography.Encoding": "4.3.0",
  2713. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2714. "System.Security.Cryptography.Primitives": "4.3.0",
  2715. "System.Text.Encoding": "4.3.0",
  2716. "System.Threading": "4.3.0",
  2717. "runtime.native.System": "4.3.0",
  2718. "runtime.native.System.Net.Http": "4.3.0",
  2719. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2720. },
  2721. "compile": {
  2722. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2723. "related": ".xml"
  2724. }
  2725. },
  2726. "runtimeTargets": {
  2727. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2728. "assetType": "runtime",
  2729. "rid": "unix"
  2730. },
  2731. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2732. "assetType": "runtime",
  2733. "rid": "win"
  2734. }
  2735. }
  2736. },
  2737. "System.Security.Permissions/4.7.0": {
  2738. "type": "package",
  2739. "dependencies": {
  2740. "System.Security.AccessControl": "4.7.0",
  2741. "System.Windows.Extensions": "4.7.0"
  2742. },
  2743. "compile": {
  2744. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2745. "related": ".xml"
  2746. }
  2747. },
  2748. "runtime": {
  2749. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2750. "related": ".xml"
  2751. }
  2752. }
  2753. },
  2754. "System.Security.Principal/4.3.0": {
  2755. "type": "package",
  2756. "dependencies": {
  2757. "System.Runtime": "4.3.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.0/System.Security.Principal.dll": {
  2761. "related": ".xml"
  2762. }
  2763. },
  2764. "runtime": {
  2765. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2766. }
  2767. },
  2768. "System.Security.Principal.Windows/4.7.0": {
  2769. "type": "package",
  2770. "compile": {
  2771. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2772. "related": ".xml"
  2773. }
  2774. },
  2775. "runtime": {
  2776. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2777. "related": ".xml"
  2778. }
  2779. },
  2780. "runtimeTargets": {
  2781. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2782. "assetType": "runtime",
  2783. "rid": "unix"
  2784. },
  2785. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2786. "assetType": "runtime",
  2787. "rid": "win"
  2788. }
  2789. }
  2790. },
  2791. "System.Text.Encoding/4.3.0": {
  2792. "type": "package",
  2793. "dependencies": {
  2794. "Microsoft.NETCore.Platforms": "1.1.0",
  2795. "Microsoft.NETCore.Targets": "1.1.0",
  2796. "System.Runtime": "4.3.0"
  2797. },
  2798. "compile": {
  2799. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2800. "related": ".xml"
  2801. }
  2802. }
  2803. },
  2804. "System.Text.Encoding.CodePages/5.0.0": {
  2805. "type": "package",
  2806. "dependencies": {
  2807. "Microsoft.NETCore.Platforms": "5.0.0"
  2808. },
  2809. "compile": {
  2810. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2811. "related": ".xml"
  2812. }
  2813. },
  2814. "runtime": {
  2815. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2816. "related": ".xml"
  2817. }
  2818. },
  2819. "runtimeTargets": {
  2820. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2821. "assetType": "runtime",
  2822. "rid": "win"
  2823. }
  2824. }
  2825. },
  2826. "System.Text.Encoding.Extensions/4.3.0": {
  2827. "type": "package",
  2828. "dependencies": {
  2829. "Microsoft.NETCore.Platforms": "1.1.0",
  2830. "Microsoft.NETCore.Targets": "1.1.0",
  2831. "System.Runtime": "4.3.0",
  2832. "System.Text.Encoding": "4.3.0"
  2833. },
  2834. "compile": {
  2835. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2836. "related": ".xml"
  2837. }
  2838. }
  2839. },
  2840. "System.Text.Encodings.Web/4.7.0": {
  2841. "type": "package",
  2842. "compile": {
  2843. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2844. "related": ".xml"
  2845. }
  2846. },
  2847. "runtime": {
  2848. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2849. "related": ".xml"
  2850. }
  2851. }
  2852. },
  2853. "System.Text.RegularExpressions/4.3.0": {
  2854. "type": "package",
  2855. "dependencies": {
  2856. "System.Runtime": "4.3.0"
  2857. },
  2858. "compile": {
  2859. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2860. },
  2861. "runtime": {
  2862. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2863. }
  2864. },
  2865. "System.Threading/4.3.0": {
  2866. "type": "package",
  2867. "dependencies": {
  2868. "System.Runtime": "4.3.0",
  2869. "System.Threading.Tasks": "4.3.0"
  2870. },
  2871. "compile": {
  2872. "ref/netstandard1.3/System.Threading.dll": {
  2873. "related": ".xml"
  2874. }
  2875. },
  2876. "runtime": {
  2877. "lib/netstandard1.3/System.Threading.dll": {}
  2878. }
  2879. },
  2880. "System.Threading.Channels/7.0.0": {
  2881. "type": "package",
  2882. "compile": {
  2883. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2884. "related": ".xml"
  2885. }
  2886. },
  2887. "runtime": {
  2888. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2889. "related": ".xml"
  2890. }
  2891. },
  2892. "build": {
  2893. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2894. }
  2895. },
  2896. "System.Threading.Tasks/4.3.0": {
  2897. "type": "package",
  2898. "dependencies": {
  2899. "Microsoft.NETCore.Platforms": "1.1.0",
  2900. "Microsoft.NETCore.Targets": "1.1.0",
  2901. "System.Runtime": "4.3.0"
  2902. },
  2903. "compile": {
  2904. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2905. "related": ".xml"
  2906. }
  2907. }
  2908. },
  2909. "System.Threading.Tasks.Extensions/4.3.0": {
  2910. "type": "package",
  2911. "dependencies": {
  2912. "System.Collections": "4.3.0",
  2913. "System.Runtime": "4.3.0",
  2914. "System.Threading.Tasks": "4.3.0"
  2915. },
  2916. "compile": {
  2917. "lib/netstandard1.0/_._": {
  2918. "related": ".xml"
  2919. }
  2920. },
  2921. "runtime": {
  2922. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2923. "related": ".xml"
  2924. }
  2925. }
  2926. },
  2927. "System.Threading.Thread/4.3.0": {
  2928. "type": "package",
  2929. "dependencies": {
  2930. "System.Runtime": "4.3.0"
  2931. },
  2932. "compile": {
  2933. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2934. "related": ".xml"
  2935. }
  2936. },
  2937. "runtime": {
  2938. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2939. }
  2940. },
  2941. "System.Threading.ThreadPool/4.3.0": {
  2942. "type": "package",
  2943. "dependencies": {
  2944. "System.Runtime": "4.3.0",
  2945. "System.Runtime.Handles": "4.3.0"
  2946. },
  2947. "compile": {
  2948. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2949. "related": ".xml"
  2950. }
  2951. },
  2952. "runtime": {
  2953. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2954. }
  2955. },
  2956. "System.Threading.Timer/4.3.0": {
  2957. "type": "package",
  2958. "dependencies": {
  2959. "Microsoft.NETCore.Platforms": "1.1.0",
  2960. "Microsoft.NETCore.Targets": "1.1.0",
  2961. "System.Runtime": "4.3.0"
  2962. },
  2963. "compile": {
  2964. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2965. "related": ".xml"
  2966. }
  2967. }
  2968. },
  2969. "System.Windows.Extensions/4.7.0": {
  2970. "type": "package",
  2971. "dependencies": {
  2972. "System.Drawing.Common": "4.7.0"
  2973. },
  2974. "compile": {
  2975. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2976. "related": ".xml"
  2977. }
  2978. },
  2979. "runtime": {
  2980. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2981. "related": ".xml"
  2982. }
  2983. },
  2984. "runtimeTargets": {
  2985. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2986. "assetType": "runtime",
  2987. "rid": "win"
  2988. }
  2989. }
  2990. },
  2991. "System.Xml.ReaderWriter/4.3.0": {
  2992. "type": "package",
  2993. "dependencies": {
  2994. "System.Collections": "4.3.0",
  2995. "System.Diagnostics.Debug": "4.3.0",
  2996. "System.Globalization": "4.3.0",
  2997. "System.IO": "4.3.0",
  2998. "System.IO.FileSystem": "4.3.0",
  2999. "System.IO.FileSystem.Primitives": "4.3.0",
  3000. "System.Resources.ResourceManager": "4.3.0",
  3001. "System.Runtime": "4.3.0",
  3002. "System.Runtime.Extensions": "4.3.0",
  3003. "System.Runtime.InteropServices": "4.3.0",
  3004. "System.Text.Encoding": "4.3.0",
  3005. "System.Text.Encoding.Extensions": "4.3.0",
  3006. "System.Text.RegularExpressions": "4.3.0",
  3007. "System.Threading.Tasks": "4.3.0",
  3008. "System.Threading.Tasks.Extensions": "4.3.0"
  3009. },
  3010. "compile": {
  3011. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3012. "related": ".xml"
  3013. }
  3014. },
  3015. "runtime": {
  3016. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3017. }
  3018. },
  3019. "System.Xml.XDocument/4.3.0": {
  3020. "type": "package",
  3021. "dependencies": {
  3022. "System.Collections": "4.3.0",
  3023. "System.Diagnostics.Debug": "4.3.0",
  3024. "System.Diagnostics.Tools": "4.3.0",
  3025. "System.Globalization": "4.3.0",
  3026. "System.IO": "4.3.0",
  3027. "System.Reflection": "4.3.0",
  3028. "System.Resources.ResourceManager": "4.3.0",
  3029. "System.Runtime": "4.3.0",
  3030. "System.Runtime.Extensions": "4.3.0",
  3031. "System.Text.Encoding": "4.3.0",
  3032. "System.Threading": "4.3.0",
  3033. "System.Xml.ReaderWriter": "4.3.0"
  3034. },
  3035. "compile": {
  3036. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3037. "related": ".xml"
  3038. }
  3039. },
  3040. "runtime": {
  3041. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3042. }
  3043. },
  3044. "ZXing.Net/0.16.9": {
  3045. "type": "package",
  3046. "compile": {
  3047. "lib/net5.0/zxing.dll": {
  3048. "related": ".XML"
  3049. }
  3050. },
  3051. "runtime": {
  3052. "lib/net5.0/zxing.dll": {
  3053. "related": ".XML"
  3054. }
  3055. }
  3056. },
  3057. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3058. "type": "package",
  3059. "dependencies": {
  3060. "SixLabors.ImageSharp": "2.1.3",
  3061. "ZXing.Net": "0.16.9"
  3062. },
  3063. "compile": {
  3064. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3065. "related": ".pdb;.xml"
  3066. }
  3067. },
  3068. "runtime": {
  3069. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3070. "related": ".pdb;.xml"
  3071. }
  3072. }
  3073. },
  3074. "Ropin.Core.Common/1.0.0": {
  3075. "type": "project",
  3076. "framework": ".NETCoreApp,Version=v5.0",
  3077. "dependencies": {
  3078. "Coravel": "4.2.1",
  3079. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3080. "Newtonsoft.Json": "13.0.1",
  3081. "QRCoder": "1.4.3",
  3082. "SixLabors.ImageSharp": "2.1.6",
  3083. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3084. },
  3085. "compile": {
  3086. "bin/placeholder/Ropin.Core.Common.dll": {}
  3087. },
  3088. "runtime": {
  3089. "bin/placeholder/Ropin.Core.Common.dll": {}
  3090. }
  3091. },
  3092. "Ropin.Inspection.Common/1.0.0": {
  3093. "type": "project",
  3094. "framework": ".NETCoreApp,Version=v5.0",
  3095. "dependencies": {
  3096. "FluentEmail.Smtp": "3.0.2",
  3097. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3098. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3099. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3100. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3101. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3102. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3103. "Microsoft.Extensions.Configuration": "5.0.0",
  3104. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3105. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3106. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3107. "Microsoft.Extensions.Http": "5.0.0",
  3108. "Newtonsoft.Json": "13.0.1",
  3109. "RabbitMQ.Client": "6.8.1",
  3110. "log4net": "2.0.17"
  3111. },
  3112. "compile": {
  3113. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3114. },
  3115. "runtime": {
  3116. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3117. }
  3118. },
  3119. "Ropin.Inspection.Model/1.0.0": {
  3120. "type": "project",
  3121. "framework": ".NETCoreApp,Version=v5.0",
  3122. "dependencies": {
  3123. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3124. "Microsoft.EntityFrameworkCore": "5.0.0",
  3125. "MySql.Data": "8.0.23",
  3126. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3127. "Ropin.Inspection.Common": "1.0.0"
  3128. },
  3129. "compile": {
  3130. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3131. },
  3132. "runtime": {
  3133. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3134. }
  3135. },
  3136. "Ropin.Inspection.Repository/1.0.0": {
  3137. "type": "project",
  3138. "framework": ".NETCoreApp,Version=v5.0",
  3139. "dependencies": {
  3140. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3141. "Microsoft.EntityFrameworkCore": "5.0.0",
  3142. "Ropin.Inspection.Model": "1.0.0"
  3143. },
  3144. "compile": {
  3145. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3146. },
  3147. "runtime": {
  3148. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3149. }
  3150. }
  3151. }
  3152. },
  3153. "libraries": {
  3154. "AdvancedStringBuilder/0.1.0": {
  3155. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3156. "type": "package",
  3157. "path": "advancedstringbuilder/0.1.0",
  3158. "files": [
  3159. ".nupkg.metadata",
  3160. ".signature.p7s",
  3161. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3162. "advancedstringbuilder.nuspec",
  3163. "lib/net40-client/AdvancedStringBuilder.dll",
  3164. "lib/net40-client/AdvancedStringBuilder.xml",
  3165. "lib/net45/AdvancedStringBuilder.dll",
  3166. "lib/net45/AdvancedStringBuilder.xml",
  3167. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3168. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3169. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3170. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3171. ]
  3172. },
  3173. "Autofac/6.0.0": {
  3174. "sha512": "tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==",
  3175. "type": "package",
  3176. "path": "autofac/6.0.0",
  3177. "files": [
  3178. ".nupkg.metadata",
  3179. ".signature.p7s",
  3180. "autofac.6.0.0.nupkg.sha512",
  3181. "autofac.nuspec",
  3182. "icon.png",
  3183. "lib/netstandard2.0/Autofac.dll",
  3184. "lib/netstandard2.0/Autofac.pdb",
  3185. "lib/netstandard2.0/Autofac.xml",
  3186. "lib/netstandard2.1/Autofac.dll",
  3187. "lib/netstandard2.1/Autofac.pdb",
  3188. "lib/netstandard2.1/Autofac.xml"
  3189. ]
  3190. },
  3191. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3192. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3193. "type": "package",
  3194. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3195. "files": [
  3196. ".nupkg.metadata",
  3197. ".signature.p7s",
  3198. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3199. "autofac.extensions.dependencyinjection.nuspec",
  3200. "icon.png",
  3201. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3202. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3203. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3204. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3205. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3206. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3207. ]
  3208. },
  3209. "BouncyCastle.NetCore/1.8.5": {
  3210. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3211. "type": "package",
  3212. "path": "bouncycastle.netcore/1.8.5",
  3213. "files": [
  3214. ".nupkg.metadata",
  3215. ".signature.p7s",
  3216. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3217. "bouncycastle.netcore.nuspec",
  3218. "lib/Mono/BouncyCastle.Crypto.dll",
  3219. "lib/Mono/BouncyCastle.Crypto.xml",
  3220. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3221. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3222. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3223. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3224. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3225. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3226. "lib/net20/BouncyCastle.Crypto.dll",
  3227. "lib/net20/BouncyCastle.Crypto.xml",
  3228. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3229. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3230. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3231. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3232. ]
  3233. },
  3234. "Coravel/4.2.1": {
  3235. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3236. "type": "package",
  3237. "path": "coravel/4.2.1",
  3238. "files": [
  3239. ".nupkg.metadata",
  3240. ".signature.p7s",
  3241. "coravel.4.2.1.nupkg.sha512",
  3242. "coravel.nuspec",
  3243. "lib/netstandard2.0/Coravel.dll",
  3244. "lib/netstandard2.0/Coravel.xml",
  3245. "logo.png",
  3246. "readme.md"
  3247. ]
  3248. },
  3249. "FBoxClientDriver/1.2.0": {
  3250. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3251. "type": "package",
  3252. "path": "fboxclientdriver/1.2.0",
  3253. "files": [
  3254. ".nupkg.metadata",
  3255. ".signature.p7s",
  3256. "fboxclientdriver.1.2.0.nupkg.sha512",
  3257. "fboxclientdriver.nuspec",
  3258. "lib/netstandard2.0/FBoxClientDriver.dll",
  3259. "lib/netstandard2.0/FBoxClientDriver.xml"
  3260. ]
  3261. },
  3262. "FBoxClientDriver.Contract/1.2.0": {
  3263. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3264. "type": "package",
  3265. "path": "fboxclientdriver.contract/1.2.0",
  3266. "files": [
  3267. ".nupkg.metadata",
  3268. ".signature.p7s",
  3269. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3270. "fboxclientdriver.contract.nuspec",
  3271. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3272. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3273. ]
  3274. },
  3275. "FluentEmail.Core/3.0.2": {
  3276. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3277. "type": "package",
  3278. "path": "fluentemail.core/3.0.2",
  3279. "files": [
  3280. ".nupkg.metadata",
  3281. ".signature.p7s",
  3282. "fluentemail.core.3.0.2.nupkg.sha512",
  3283. "fluentemail.core.nuspec",
  3284. "fluentemail_logo_64x64.png",
  3285. "lib/netstandard2.0/FluentEmail.Core.dll"
  3286. ]
  3287. },
  3288. "FluentEmail.Smtp/3.0.2": {
  3289. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3290. "type": "package",
  3291. "path": "fluentemail.smtp/3.0.2",
  3292. "files": [
  3293. ".nupkg.metadata",
  3294. ".signature.p7s",
  3295. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3296. "fluentemail.smtp.nuspec",
  3297. "fluentemail_logo_64x64.png",
  3298. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3299. ]
  3300. },
  3301. "Google.Protobuf/3.11.4": {
  3302. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3303. "type": "package",
  3304. "path": "google.protobuf/3.11.4",
  3305. "files": [
  3306. ".nupkg.metadata",
  3307. ".signature.p7s",
  3308. "google.protobuf.3.11.4.nupkg.sha512",
  3309. "google.protobuf.nuspec",
  3310. "lib/net45/Google.Protobuf.dll",
  3311. "lib/net45/Google.Protobuf.pdb",
  3312. "lib/net45/Google.Protobuf.xml",
  3313. "lib/netstandard1.0/Google.Protobuf.dll",
  3314. "lib/netstandard1.0/Google.Protobuf.pdb",
  3315. "lib/netstandard1.0/Google.Protobuf.xml",
  3316. "lib/netstandard2.0/Google.Protobuf.dll",
  3317. "lib/netstandard2.0/Google.Protobuf.pdb",
  3318. "lib/netstandard2.0/Google.Protobuf.xml"
  3319. ]
  3320. },
  3321. "IdentityModel/4.3.1": {
  3322. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3323. "type": "package",
  3324. "path": "identitymodel/4.3.1",
  3325. "files": [
  3326. ".nupkg.metadata",
  3327. ".signature.p7s",
  3328. "icon.jpg",
  3329. "identitymodel.4.3.1.nupkg.sha512",
  3330. "identitymodel.nuspec",
  3331. "lib/net461/IdentityModel.dll",
  3332. "lib/net461/IdentityModel.pdb",
  3333. "lib/net461/IdentityModel.xml",
  3334. "lib/net472/IdentityModel.dll",
  3335. "lib/net472/IdentityModel.pdb",
  3336. "lib/net472/IdentityModel.xml",
  3337. "lib/netstandard2.0/IdentityModel.dll",
  3338. "lib/netstandard2.0/IdentityModel.pdb",
  3339. "lib/netstandard2.0/IdentityModel.xml"
  3340. ]
  3341. },
  3342. "InfluxData.Net/8.0.1": {
  3343. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3344. "type": "package",
  3345. "path": "influxdata.net/8.0.1",
  3346. "files": [
  3347. ".nupkg.metadata",
  3348. ".signature.p7s",
  3349. "influxdata.net.8.0.1.nupkg.sha512",
  3350. "influxdata.net.nuspec",
  3351. "lib/net461/InfluxData.Net.Common.dll",
  3352. "lib/net461/InfluxData.Net.Common.dll.config",
  3353. "lib/net461/InfluxData.Net.Common.pdb",
  3354. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3355. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3356. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3357. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3358. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3359. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3360. "lib/net461/InfluxData.Net.dll",
  3361. "lib/net461/InfluxData.Net.dll.config",
  3362. "lib/net461/InfluxData.Net.pdb",
  3363. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3364. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3365. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3366. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3367. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3368. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3369. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3370. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3371. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3372. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3373. "lib/netstandard2.0/InfluxData.Net.dll",
  3374. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3375. "lib/netstandard2.0/InfluxData.Net.pdb"
  3376. ]
  3377. },
  3378. "InitQ/1.0.0.14": {
  3379. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3380. "type": "package",
  3381. "path": "initq/1.0.0.14",
  3382. "files": [
  3383. ".nupkg.metadata",
  3384. ".signature.p7s",
  3385. "initq.1.0.0.14.nupkg.sha512",
  3386. "initq.nuspec",
  3387. "lib/netcoreapp2.1/InitQ.dll"
  3388. ]
  3389. },
  3390. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3391. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3392. "type": "package",
  3393. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3394. "files": [
  3395. ".nupkg.metadata",
  3396. ".signature.p7s",
  3397. "LICENSE.txt",
  3398. "advanced-string-builder-license.txt",
  3399. "chakra-samples-license.txt",
  3400. "icon.png",
  3401. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3402. "javascriptengineswitcher.chakracore.nuspec",
  3403. "jsrt-dotnet-license.txt",
  3404. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3405. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3406. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3407. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3408. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3409. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3410. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3411. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3412. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3413. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3414. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3415. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3416. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3417. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3418. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3419. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3420. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3421. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3422. "polyfills-for-old-dot-net-license.txt",
  3423. "readme.txt"
  3424. ]
  3425. },
  3426. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3427. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3428. "type": "package",
  3429. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3430. "files": [
  3431. ".nupkg.metadata",
  3432. ".signature.p7s",
  3433. "LICENSE.txt",
  3434. "chakra-core-license.txt",
  3435. "icon.png",
  3436. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3437. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3438. "readme.txt",
  3439. "runtimes/linux-x64/native/libChakraCore.so"
  3440. ]
  3441. },
  3442. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3443. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3444. "type": "package",
  3445. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3446. "hasTools": true,
  3447. "files": [
  3448. ".nupkg.metadata",
  3449. ".signature.p7s",
  3450. "LICENSE.txt",
  3451. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3452. "chakra-core-license.txt",
  3453. "icon.png",
  3454. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3455. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3456. "readme.txt",
  3457. "runtimes/win-x64/native/ChakraCore.dll",
  3458. "tools/Install.ps1",
  3459. "tools/Uninstall.ps1"
  3460. ]
  3461. },
  3462. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3463. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3464. "type": "package",
  3465. "path": "javascriptengineswitcher.core/3.21.0",
  3466. "files": [
  3467. ".nupkg.metadata",
  3468. ".signature.p7s",
  3469. "LICENSE.txt",
  3470. "advanced-string-builder-license.txt",
  3471. "icon.png",
  3472. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3473. "javascriptengineswitcher.core.nuspec",
  3474. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3475. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3476. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3477. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3478. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3479. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3480. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3481. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3482. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3483. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3484. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3485. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3486. "readme.txt"
  3487. ]
  3488. },
  3489. "K4os.Compression.LZ4/1.1.11": {
  3490. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3491. "type": "package",
  3492. "path": "k4os.compression.lz4/1.1.11",
  3493. "files": [
  3494. ".nupkg.metadata",
  3495. ".signature.p7s",
  3496. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3497. "k4os.compression.lz4.nuspec",
  3498. "lib/net45/K4os.Compression.LZ4.dll",
  3499. "lib/net45/K4os.Compression.LZ4.xml",
  3500. "lib/net46/K4os.Compression.LZ4.dll",
  3501. "lib/net46/K4os.Compression.LZ4.xml",
  3502. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3503. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3504. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3505. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3506. ]
  3507. },
  3508. "K4os.Compression.LZ4.Streams/1.1.11": {
  3509. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3510. "type": "package",
  3511. "path": "k4os.compression.lz4.streams/1.1.11",
  3512. "files": [
  3513. ".nupkg.metadata",
  3514. ".signature.p7s",
  3515. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3516. "k4os.compression.lz4.streams.nuspec",
  3517. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3518. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3519. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3520. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3521. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3522. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3523. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3524. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3525. ]
  3526. },
  3527. "K4os.Hash.xxHash/1.0.6": {
  3528. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3529. "type": "package",
  3530. "path": "k4os.hash.xxhash/1.0.6",
  3531. "files": [
  3532. ".nupkg.metadata",
  3533. ".signature.p7s",
  3534. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3535. "k4os.hash.xxhash.nuspec",
  3536. "lib/net45/K4os.Hash.xxHash.dll",
  3537. "lib/net45/K4os.Hash.xxHash.xml",
  3538. "lib/net46/K4os.Hash.xxHash.dll",
  3539. "lib/net46/K4os.Hash.xxHash.xml",
  3540. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3541. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3542. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3543. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3544. ]
  3545. },
  3546. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3547. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3548. "type": "package",
  3549. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3550. "files": [
  3551. ".nupkg.metadata",
  3552. ".signature.p7s",
  3553. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3554. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3555. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3556. "linqkit.microsoft.entityframeworkcore.nuspec"
  3557. ]
  3558. },
  3559. "log4net/2.0.17": {
  3560. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3561. "type": "package",
  3562. "path": "log4net/2.0.17",
  3563. "files": [
  3564. ".nupkg.metadata",
  3565. ".signature.p7s",
  3566. "lib/net20/log4net.dll",
  3567. "lib/net20/log4net.xml",
  3568. "lib/net35/log4net.dll",
  3569. "lib/net35/log4net.xml",
  3570. "lib/net40-client/log4net.dll",
  3571. "lib/net40-client/log4net.xml",
  3572. "lib/net40/log4net.dll",
  3573. "lib/net40/log4net.xml",
  3574. "lib/net45/log4net.dll",
  3575. "lib/net45/log4net.xml",
  3576. "lib/netstandard1.3/log4net.dll",
  3577. "lib/netstandard1.3/log4net.xml",
  3578. "lib/netstandard2.0/log4net.dll",
  3579. "lib/netstandard2.0/log4net.xml",
  3580. "log4net.2.0.17.nupkg.sha512",
  3581. "log4net.nuspec",
  3582. "package-icon.png"
  3583. ]
  3584. },
  3585. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3586. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3587. "type": "package",
  3588. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3589. "files": [
  3590. ".nupkg.metadata",
  3591. ".signature.p7s",
  3592. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3593. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3594. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3595. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3596. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3597. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3598. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3599. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3600. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3601. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3602. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3603. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3604. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3605. "microsoft.aspnet.signalr.client.nuspec"
  3606. ]
  3607. },
  3608. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3609. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3610. "type": "package",
  3611. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3612. "files": [
  3613. ".nupkg.metadata",
  3614. ".signature.p7s",
  3615. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3616. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3617. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3618. "microsoft.aspnetcore.http.abstractions.nuspec"
  3619. ]
  3620. },
  3621. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3622. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3623. "type": "package",
  3624. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3625. "files": [
  3626. ".nupkg.metadata",
  3627. ".signature.p7s",
  3628. "Icon.png",
  3629. "THIRD-PARTY-NOTICES.TXT",
  3630. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3631. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3632. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3633. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3634. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3635. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3636. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3637. "microsoft.aspnetcore.http.features.nuspec"
  3638. ]
  3639. },
  3640. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3641. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3642. "type": "package",
  3643. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3644. "files": [
  3645. ".nupkg.metadata",
  3646. ".signature.p7s",
  3647. "Icon.png",
  3648. "THIRD-PARTY-NOTICES.TXT",
  3649. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3650. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3651. "microsoft.aspnetcore.nodeservices.nuspec"
  3652. ]
  3653. },
  3654. "Microsoft.CSharp/4.5.0": {
  3655. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3656. "type": "package",
  3657. "path": "microsoft.csharp/4.5.0",
  3658. "files": [
  3659. ".nupkg.metadata",
  3660. ".signature.p7s",
  3661. "LICENSE.TXT",
  3662. "THIRD-PARTY-NOTICES.TXT",
  3663. "lib/MonoAndroid10/_._",
  3664. "lib/MonoTouch10/_._",
  3665. "lib/net45/_._",
  3666. "lib/netcore50/Microsoft.CSharp.dll",
  3667. "lib/netcoreapp2.0/_._",
  3668. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3669. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3670. "lib/portable-net45+win8+wp8+wpa81/_._",
  3671. "lib/uap10.0.16299/_._",
  3672. "lib/win8/_._",
  3673. "lib/wp80/_._",
  3674. "lib/wpa81/_._",
  3675. "lib/xamarinios10/_._",
  3676. "lib/xamarinmac20/_._",
  3677. "lib/xamarintvos10/_._",
  3678. "lib/xamarinwatchos10/_._",
  3679. "microsoft.csharp.4.5.0.nupkg.sha512",
  3680. "microsoft.csharp.nuspec",
  3681. "ref/MonoAndroid10/_._",
  3682. "ref/MonoTouch10/_._",
  3683. "ref/net45/_._",
  3684. "ref/netcore50/Microsoft.CSharp.dll",
  3685. "ref/netcore50/Microsoft.CSharp.xml",
  3686. "ref/netcore50/de/Microsoft.CSharp.xml",
  3687. "ref/netcore50/es/Microsoft.CSharp.xml",
  3688. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3689. "ref/netcore50/it/Microsoft.CSharp.xml",
  3690. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3691. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3692. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3693. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3694. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3695. "ref/netcoreapp2.0/_._",
  3696. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3697. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3698. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3699. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3700. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3701. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3702. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3703. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3704. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3705. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3706. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3707. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3708. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3709. "ref/portable-net45+win8+wp8+wpa81/_._",
  3710. "ref/uap10.0.16299/_._",
  3711. "ref/win8/_._",
  3712. "ref/wp80/_._",
  3713. "ref/wpa81/_._",
  3714. "ref/xamarinios10/_._",
  3715. "ref/xamarinmac20/_._",
  3716. "ref/xamarintvos10/_._",
  3717. "ref/xamarinwatchos10/_._",
  3718. "useSharedDesignerContext.txt",
  3719. "version.txt"
  3720. ]
  3721. },
  3722. "Microsoft.EntityFrameworkCore/5.0.0": {
  3723. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3724. "type": "package",
  3725. "path": "microsoft.entityframeworkcore/5.0.0",
  3726. "files": [
  3727. ".nupkg.metadata",
  3728. ".signature.p7s",
  3729. "Icon.png",
  3730. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3731. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3732. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3733. "microsoft.entityframeworkcore.nuspec"
  3734. ]
  3735. },
  3736. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3737. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3738. "type": "package",
  3739. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3740. "files": [
  3741. ".nupkg.metadata",
  3742. ".signature.p7s",
  3743. "Icon.png",
  3744. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3745. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3746. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3747. "microsoft.entityframeworkcore.abstractions.nuspec"
  3748. ]
  3749. },
  3750. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3751. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3752. "type": "package",
  3753. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3754. "files": [
  3755. ".nupkg.metadata",
  3756. ".signature.p7s",
  3757. "Icon.png",
  3758. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3759. "lib/netstandard2.0/_._",
  3760. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3761. "microsoft.entityframeworkcore.analyzers.nuspec"
  3762. ]
  3763. },
  3764. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3765. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3766. "type": "package",
  3767. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3768. "files": [
  3769. ".nupkg.metadata",
  3770. ".signature.p7s",
  3771. "Icon.png",
  3772. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3773. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3774. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3775. "microsoft.entityframeworkcore.relational.nuspec"
  3776. ]
  3777. },
  3778. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3779. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3780. "type": "package",
  3781. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3782. "hasTools": true,
  3783. "files": [
  3784. ".nupkg.metadata",
  3785. ".signature.p7s",
  3786. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3787. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3788. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3789. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3790. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3791. "microsoft.extensions.apidescription.server.nuspec",
  3792. "tools/Newtonsoft.Json.dll",
  3793. "tools/dotnet-getdocument.deps.json",
  3794. "tools/dotnet-getdocument.dll",
  3795. "tools/dotnet-getdocument.runtimeconfig.json",
  3796. "tools/net461-x86/GetDocument.Insider.exe",
  3797. "tools/net461-x86/GetDocument.Insider.exe.config",
  3798. "tools/net461/GetDocument.Insider.exe",
  3799. "tools/net461/GetDocument.Insider.exe.config",
  3800. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3801. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3802. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3803. ]
  3804. },
  3805. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3806. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3807. "type": "package",
  3808. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3809. "files": [
  3810. ".nupkg.metadata",
  3811. ".signature.p7s",
  3812. "Icon.png",
  3813. "LICENSE.TXT",
  3814. "THIRD-PARTY-NOTICES.TXT",
  3815. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3816. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3817. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3818. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3819. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3820. "microsoft.extensions.caching.abstractions.nuspec",
  3821. "useSharedDesignerContext.txt",
  3822. "version.txt"
  3823. ]
  3824. },
  3825. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3826. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3827. "type": "package",
  3828. "path": "microsoft.extensions.caching.memory/5.0.0",
  3829. "files": [
  3830. ".nupkg.metadata",
  3831. ".signature.p7s",
  3832. "Icon.png",
  3833. "LICENSE.TXT",
  3834. "THIRD-PARTY-NOTICES.TXT",
  3835. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3836. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3837. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3838. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3839. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3840. "microsoft.extensions.caching.memory.nuspec",
  3841. "useSharedDesignerContext.txt",
  3842. "version.txt"
  3843. ]
  3844. },
  3845. "Microsoft.Extensions.Configuration/5.0.0": {
  3846. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3847. "type": "package",
  3848. "path": "microsoft.extensions.configuration/5.0.0",
  3849. "files": [
  3850. ".nupkg.metadata",
  3851. ".signature.p7s",
  3852. "Icon.png",
  3853. "LICENSE.TXT",
  3854. "THIRD-PARTY-NOTICES.TXT",
  3855. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3856. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3857. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3858. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3859. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3860. "microsoft.extensions.configuration.nuspec",
  3861. "useSharedDesignerContext.txt",
  3862. "version.txt"
  3863. ]
  3864. },
  3865. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3866. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3867. "type": "package",
  3868. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3869. "files": [
  3870. ".nupkg.metadata",
  3871. ".signature.p7s",
  3872. "Icon.png",
  3873. "LICENSE.TXT",
  3874. "THIRD-PARTY-NOTICES.TXT",
  3875. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3876. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3877. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3878. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3879. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3880. "microsoft.extensions.configuration.abstractions.nuspec",
  3881. "useSharedDesignerContext.txt",
  3882. "version.txt"
  3883. ]
  3884. },
  3885. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3886. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3887. "type": "package",
  3888. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3889. "files": [
  3890. ".nupkg.metadata",
  3891. ".signature.p7s",
  3892. "Icon.png",
  3893. "LICENSE.TXT",
  3894. "THIRD-PARTY-NOTICES.TXT",
  3895. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3896. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3897. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3898. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3899. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3900. "microsoft.extensions.configuration.binder.nuspec",
  3901. "useSharedDesignerContext.txt",
  3902. "version.txt"
  3903. ]
  3904. },
  3905. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3906. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3907. "type": "package",
  3908. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3909. "files": [
  3910. ".nupkg.metadata",
  3911. ".signature.p7s",
  3912. "Icon.png",
  3913. "LICENSE.TXT",
  3914. "THIRD-PARTY-NOTICES.TXT",
  3915. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3916. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3917. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3918. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3919. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3920. "microsoft.extensions.configuration.fileextensions.nuspec",
  3921. "useSharedDesignerContext.txt",
  3922. "version.txt"
  3923. ]
  3924. },
  3925. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3926. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3927. "type": "package",
  3928. "path": "microsoft.extensions.configuration.json/5.0.0",
  3929. "files": [
  3930. ".nupkg.metadata",
  3931. ".signature.p7s",
  3932. "Icon.png",
  3933. "LICENSE.TXT",
  3934. "THIRD-PARTY-NOTICES.TXT",
  3935. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3936. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3937. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3938. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3939. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3940. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3941. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3942. "microsoft.extensions.configuration.json.nuspec",
  3943. "useSharedDesignerContext.txt",
  3944. "version.txt"
  3945. ]
  3946. },
  3947. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3948. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3949. "type": "package",
  3950. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3951. "files": [
  3952. ".nupkg.metadata",
  3953. ".signature.p7s",
  3954. "Icon.png",
  3955. "LICENSE.TXT",
  3956. "THIRD-PARTY-NOTICES.TXT",
  3957. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3958. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3959. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3960. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3961. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3962. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3963. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3964. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3965. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3966. "microsoft.extensions.dependencyinjection.nuspec",
  3967. "useSharedDesignerContext.txt",
  3968. "version.txt"
  3969. ]
  3970. },
  3971. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3972. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3973. "type": "package",
  3974. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3975. "files": [
  3976. ".nupkg.metadata",
  3977. ".signature.p7s",
  3978. "Icon.png",
  3979. "LICENSE.TXT",
  3980. "THIRD-PARTY-NOTICES.TXT",
  3981. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3982. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3983. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3984. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3985. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3986. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3987. "useSharedDesignerContext.txt",
  3988. "version.txt"
  3989. ]
  3990. },
  3991. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3992. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3993. "type": "package",
  3994. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3995. "files": [
  3996. ".nupkg.metadata",
  3997. ".signature.p7s",
  3998. "Icon.png",
  3999. "LICENSE.TXT",
  4000. "THIRD-PARTY-NOTICES.TXT",
  4001. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4002. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4003. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4004. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4005. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4006. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4007. "useSharedDesignerContext.txt",
  4008. "version.txt"
  4009. ]
  4010. },
  4011. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4012. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4013. "type": "package",
  4014. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4015. "files": [
  4016. ".nupkg.metadata",
  4017. ".signature.p7s",
  4018. "Icon.png",
  4019. "LICENSE.TXT",
  4020. "THIRD-PARTY-NOTICES.TXT",
  4021. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4022. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4023. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4024. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4025. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4026. "microsoft.extensions.fileproviders.physical.nuspec",
  4027. "useSharedDesignerContext.txt",
  4028. "version.txt"
  4029. ]
  4030. },
  4031. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4032. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4033. "type": "package",
  4034. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4035. "files": [
  4036. ".nupkg.metadata",
  4037. ".signature.p7s",
  4038. "Icon.png",
  4039. "LICENSE.TXT",
  4040. "THIRD-PARTY-NOTICES.TXT",
  4041. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4042. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4043. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4044. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4045. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4046. "microsoft.extensions.filesystemglobbing.nuspec",
  4047. "useSharedDesignerContext.txt",
  4048. "version.txt"
  4049. ]
  4050. },
  4051. "Microsoft.Extensions.Hosting/2.1.0": {
  4052. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4053. "type": "package",
  4054. "path": "microsoft.extensions.hosting/2.1.0",
  4055. "files": [
  4056. ".nupkg.metadata",
  4057. ".signature.p7s",
  4058. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4059. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4060. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4061. "microsoft.extensions.hosting.nuspec"
  4062. ]
  4063. },
  4064. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4065. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4066. "type": "package",
  4067. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4068. "files": [
  4069. ".nupkg.metadata",
  4070. ".signature.p7s",
  4071. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4072. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4073. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4074. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4075. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4076. "microsoft.extensions.hosting.abstractions.nuspec",
  4077. "packageIcon.png"
  4078. ]
  4079. },
  4080. "Microsoft.Extensions.Http/5.0.0": {
  4081. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4082. "type": "package",
  4083. "path": "microsoft.extensions.http/5.0.0",
  4084. "files": [
  4085. ".nupkg.metadata",
  4086. ".signature.p7s",
  4087. "Icon.png",
  4088. "LICENSE.TXT",
  4089. "THIRD-PARTY-NOTICES.TXT",
  4090. "lib/net461/Microsoft.Extensions.Http.dll",
  4091. "lib/net461/Microsoft.Extensions.Http.xml",
  4092. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4093. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4094. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4095. "microsoft.extensions.http.nuspec",
  4096. "useSharedDesignerContext.txt",
  4097. "version.txt"
  4098. ]
  4099. },
  4100. "Microsoft.Extensions.Logging/5.0.0": {
  4101. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4102. "type": "package",
  4103. "path": "microsoft.extensions.logging/5.0.0",
  4104. "files": [
  4105. ".nupkg.metadata",
  4106. ".signature.p7s",
  4107. "Icon.png",
  4108. "LICENSE.TXT",
  4109. "THIRD-PARTY-NOTICES.TXT",
  4110. "lib/net461/Microsoft.Extensions.Logging.dll",
  4111. "lib/net461/Microsoft.Extensions.Logging.xml",
  4112. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4113. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4114. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4115. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4116. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4117. "microsoft.extensions.logging.nuspec",
  4118. "useSharedDesignerContext.txt",
  4119. "version.txt"
  4120. ]
  4121. },
  4122. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4123. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4124. "type": "package",
  4125. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4126. "files": [
  4127. ".nupkg.metadata",
  4128. ".signature.p7s",
  4129. "Icon.png",
  4130. "LICENSE.TXT",
  4131. "THIRD-PARTY-NOTICES.TXT",
  4132. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4133. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4134. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4135. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4136. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4137. "microsoft.extensions.logging.abstractions.nuspec",
  4138. "useSharedDesignerContext.txt",
  4139. "version.txt"
  4140. ]
  4141. },
  4142. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4143. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4144. "type": "package",
  4145. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4146. "files": [
  4147. ".nupkg.metadata",
  4148. ".signature.p7s",
  4149. "Icon.png",
  4150. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4151. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4152. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4153. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4154. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4155. "microsoft.extensions.logging.configuration.nuspec"
  4156. ]
  4157. },
  4158. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4159. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4160. "type": "package",
  4161. "path": "microsoft.extensions.logging.console/3.1.30",
  4162. "files": [
  4163. ".nupkg.metadata",
  4164. ".signature.p7s",
  4165. "Icon.png",
  4166. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4167. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4168. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4169. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4170. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4171. "microsoft.extensions.logging.console.nuspec"
  4172. ]
  4173. },
  4174. "Microsoft.Extensions.Options/5.0.0": {
  4175. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4176. "type": "package",
  4177. "path": "microsoft.extensions.options/5.0.0",
  4178. "files": [
  4179. ".nupkg.metadata",
  4180. ".signature.p7s",
  4181. "Icon.png",
  4182. "LICENSE.TXT",
  4183. "THIRD-PARTY-NOTICES.TXT",
  4184. "lib/net461/Microsoft.Extensions.Options.dll",
  4185. "lib/net461/Microsoft.Extensions.Options.xml",
  4186. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4187. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4188. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4189. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4190. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4191. "microsoft.extensions.options.nuspec",
  4192. "useSharedDesignerContext.txt",
  4193. "version.txt"
  4194. ]
  4195. },
  4196. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4197. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4198. "type": "package",
  4199. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4200. "files": [
  4201. ".nupkg.metadata",
  4202. ".signature.p7s",
  4203. "Icon.png",
  4204. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4205. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4206. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4207. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4208. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4209. "microsoft.extensions.options.configurationextensions.nuspec"
  4210. ]
  4211. },
  4212. "Microsoft.Extensions.Primitives/5.0.0": {
  4213. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4214. "type": "package",
  4215. "path": "microsoft.extensions.primitives/5.0.0",
  4216. "files": [
  4217. ".nupkg.metadata",
  4218. ".signature.p7s",
  4219. "Icon.png",
  4220. "LICENSE.TXT",
  4221. "THIRD-PARTY-NOTICES.TXT",
  4222. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4223. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4224. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4225. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4226. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4227. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4228. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4229. "microsoft.extensions.primitives.nuspec",
  4230. "useSharedDesignerContext.txt",
  4231. "version.txt"
  4232. ]
  4233. },
  4234. "Microsoft.NETCore.Platforms/5.0.0": {
  4235. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4236. "type": "package",
  4237. "path": "microsoft.netcore.platforms/5.0.0",
  4238. "files": [
  4239. ".nupkg.metadata",
  4240. ".signature.p7s",
  4241. "Icon.png",
  4242. "LICENSE.TXT",
  4243. "THIRD-PARTY-NOTICES.TXT",
  4244. "lib/netstandard1.0/_._",
  4245. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4246. "microsoft.netcore.platforms.nuspec",
  4247. "runtime.json",
  4248. "useSharedDesignerContext.txt",
  4249. "version.txt"
  4250. ]
  4251. },
  4252. "Microsoft.NETCore.Targets/1.1.0": {
  4253. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4254. "type": "package",
  4255. "path": "microsoft.netcore.targets/1.1.0",
  4256. "files": [
  4257. ".nupkg.metadata",
  4258. ".signature.p7s",
  4259. "ThirdPartyNotices.txt",
  4260. "dotnet_library_license.txt",
  4261. "lib/netstandard1.0/_._",
  4262. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4263. "microsoft.netcore.targets.nuspec",
  4264. "runtime.json"
  4265. ]
  4266. },
  4267. "Microsoft.OpenApi/1.2.3": {
  4268. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4269. "type": "package",
  4270. "path": "microsoft.openapi/1.2.3",
  4271. "files": [
  4272. ".nupkg.metadata",
  4273. ".signature.p7s",
  4274. "lib/net46/Microsoft.OpenApi.dll",
  4275. "lib/net46/Microsoft.OpenApi.pdb",
  4276. "lib/net46/Microsoft.OpenApi.xml",
  4277. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4278. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4279. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4280. "microsoft.openapi.1.2.3.nupkg.sha512",
  4281. "microsoft.openapi.nuspec"
  4282. ]
  4283. },
  4284. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4285. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4286. "type": "package",
  4287. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4288. "hasTools": true,
  4289. "files": [
  4290. ".nupkg.metadata",
  4291. ".signature.p7s",
  4292. "CHANGELOG.md",
  4293. "EULA.md",
  4294. "ThirdPartyNotices.txt",
  4295. "build/Container.props",
  4296. "build/Container.targets",
  4297. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4298. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4299. "build/Rules/GeneralBrowseObject.xaml",
  4300. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4301. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4302. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4303. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4304. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4305. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4306. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4307. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4308. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4309. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4310. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4311. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4312. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4313. "build/ToolsTarget.props",
  4314. "build/ToolsTarget.targets",
  4315. "icon.png",
  4316. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4317. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4318. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4319. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4320. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4321. "tools/Newtonsoft.Json.dll",
  4322. "tools/System.Security.Principal.Windows.dll",
  4323. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4324. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4325. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4326. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4327. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4328. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4329. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4330. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4331. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4332. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4333. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4334. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4335. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4336. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4337. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4338. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4339. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4340. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4341. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4342. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4343. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4344. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4345. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4346. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4347. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4348. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4349. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4350. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4351. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4352. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4353. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4354. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4355. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4356. "tools/utils/KillProcess.exe",
  4357. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4358. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4359. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4360. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4361. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4362. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4363. ]
  4364. },
  4365. "Microsoft.Win32.Primitives/4.3.0": {
  4366. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4367. "type": "package",
  4368. "path": "microsoft.win32.primitives/4.3.0",
  4369. "files": [
  4370. ".nupkg.metadata",
  4371. ".signature.p7s",
  4372. "ThirdPartyNotices.txt",
  4373. "dotnet_library_license.txt",
  4374. "lib/MonoAndroid10/_._",
  4375. "lib/MonoTouch10/_._",
  4376. "lib/net46/Microsoft.Win32.Primitives.dll",
  4377. "lib/xamarinios10/_._",
  4378. "lib/xamarinmac20/_._",
  4379. "lib/xamarintvos10/_._",
  4380. "lib/xamarinwatchos10/_._",
  4381. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4382. "microsoft.win32.primitives.nuspec",
  4383. "ref/MonoAndroid10/_._",
  4384. "ref/MonoTouch10/_._",
  4385. "ref/net46/Microsoft.Win32.Primitives.dll",
  4386. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4387. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4388. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4389. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4390. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4391. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4392. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4393. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4394. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4395. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4396. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4397. "ref/xamarinios10/_._",
  4398. "ref/xamarinmac20/_._",
  4399. "ref/xamarintvos10/_._",
  4400. "ref/xamarinwatchos10/_._"
  4401. ]
  4402. },
  4403. "Microsoft.Win32.SystemEvents/5.0.0": {
  4404. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4405. "type": "package",
  4406. "path": "microsoft.win32.systemevents/5.0.0",
  4407. "files": [
  4408. ".nupkg.metadata",
  4409. ".signature.p7s",
  4410. "Icon.png",
  4411. "LICENSE.TXT",
  4412. "THIRD-PARTY-NOTICES.TXT",
  4413. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4414. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4415. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4416. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4417. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4418. "microsoft.win32.systemevents.nuspec",
  4419. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4420. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4421. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4422. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4423. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4424. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4425. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4426. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4427. "useSharedDesignerContext.txt",
  4428. "version.txt"
  4429. ]
  4430. },
  4431. "MySql.Data/8.0.23": {
  4432. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4433. "type": "package",
  4434. "path": "mysql.data/8.0.23",
  4435. "files": [
  4436. ".nupkg.metadata",
  4437. ".signature.p7s",
  4438. "lib/net452/MySql.Data.dll",
  4439. "lib/net452/MySql.Data.xml",
  4440. "lib/net452/Ubiety.Dns.Core.dll",
  4441. "lib/net452/Zstandard.Net.dll",
  4442. "lib/net48/MySql.Data.dll",
  4443. "lib/net48/MySql.Data.xml",
  4444. "lib/net48/Ubiety.Dns.Core.dll",
  4445. "lib/net48/Zstandard.Net.dll",
  4446. "lib/net5.0/MySql.Data.dll",
  4447. "lib/net5.0/MySql.Data.xml",
  4448. "lib/net5.0/Ubiety.Dns.Core.dll",
  4449. "lib/net5.0/Zstandard.Net.dll",
  4450. "lib/netstandard2.0/MySql.Data.dll",
  4451. "lib/netstandard2.0/MySql.Data.xml",
  4452. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4453. "lib/netstandard2.0/Zstandard.Net.dll",
  4454. "lib/netstandard2.1/MySql.Data.dll",
  4455. "lib/netstandard2.1/MySql.Data.xml",
  4456. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4457. "lib/netstandard2.1/Zstandard.Net.dll",
  4458. "mysql.data.8.0.23.nupkg.sha512",
  4459. "mysql.data.nuspec"
  4460. ]
  4461. },
  4462. "MySqlConnector/1.1.0": {
  4463. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4464. "type": "package",
  4465. "path": "mysqlconnector/1.1.0",
  4466. "files": [
  4467. ".nupkg.metadata",
  4468. ".signature.p7s",
  4469. "lib/net45/MySqlConnector.dll",
  4470. "lib/net45/MySqlConnector.xml",
  4471. "lib/net461/MySqlConnector.dll",
  4472. "lib/net461/MySqlConnector.xml",
  4473. "lib/net471/MySqlConnector.dll",
  4474. "lib/net471/MySqlConnector.xml",
  4475. "lib/net5.0/MySqlConnector.dll",
  4476. "lib/net5.0/MySqlConnector.xml",
  4477. "lib/netcoreapp2.1/MySqlConnector.dll",
  4478. "lib/netcoreapp2.1/MySqlConnector.xml",
  4479. "lib/netcoreapp3.1/MySqlConnector.dll",
  4480. "lib/netcoreapp3.1/MySqlConnector.xml",
  4481. "lib/netstandard1.3/MySqlConnector.dll",
  4482. "lib/netstandard1.3/MySqlConnector.xml",
  4483. "lib/netstandard2.0/MySqlConnector.dll",
  4484. "lib/netstandard2.0/MySqlConnector.xml",
  4485. "lib/netstandard2.1/MySqlConnector.dll",
  4486. "lib/netstandard2.1/MySqlConnector.xml",
  4487. "logo.png",
  4488. "mysqlconnector.1.1.0.nupkg.sha512",
  4489. "mysqlconnector.nuspec"
  4490. ]
  4491. },
  4492. "NETStandard.Library/1.6.1": {
  4493. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4494. "type": "package",
  4495. "path": "netstandard.library/1.6.1",
  4496. "files": [
  4497. ".nupkg.metadata",
  4498. ".signature.p7s",
  4499. "ThirdPartyNotices.txt",
  4500. "dotnet_library_license.txt",
  4501. "netstandard.library.1.6.1.nupkg.sha512",
  4502. "netstandard.library.nuspec"
  4503. ]
  4504. },
  4505. "Newtonsoft.Json/13.0.3": {
  4506. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4507. "type": "package",
  4508. "path": "newtonsoft.json/13.0.3",
  4509. "files": [
  4510. ".nupkg.metadata",
  4511. ".signature.p7s",
  4512. "LICENSE.md",
  4513. "README.md",
  4514. "lib/net20/Newtonsoft.Json.dll",
  4515. "lib/net20/Newtonsoft.Json.xml",
  4516. "lib/net35/Newtonsoft.Json.dll",
  4517. "lib/net35/Newtonsoft.Json.xml",
  4518. "lib/net40/Newtonsoft.Json.dll",
  4519. "lib/net40/Newtonsoft.Json.xml",
  4520. "lib/net45/Newtonsoft.Json.dll",
  4521. "lib/net45/Newtonsoft.Json.xml",
  4522. "lib/net6.0/Newtonsoft.Json.dll",
  4523. "lib/net6.0/Newtonsoft.Json.xml",
  4524. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4525. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4526. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4527. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4528. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4529. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4530. "newtonsoft.json.13.0.3.nupkg.sha512",
  4531. "newtonsoft.json.nuspec",
  4532. "packageIcon.png"
  4533. ]
  4534. },
  4535. "Nito.AsyncEx.Coordination/5.0.0": {
  4536. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4537. "type": "package",
  4538. "path": "nito.asyncex.coordination/5.0.0",
  4539. "files": [
  4540. ".nupkg.metadata",
  4541. ".signature.p7s",
  4542. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4543. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4544. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4545. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4546. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4547. "nito.asyncex.coordination.nuspec"
  4548. ]
  4549. },
  4550. "Nito.AsyncEx.Tasks/5.0.0": {
  4551. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4552. "type": "package",
  4553. "path": "nito.asyncex.tasks/5.0.0",
  4554. "files": [
  4555. ".nupkg.metadata",
  4556. ".signature.p7s",
  4557. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4558. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4559. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4560. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4561. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4562. "nito.asyncex.tasks.nuspec"
  4563. ]
  4564. },
  4565. "Nito.Collections.Deque/1.0.4": {
  4566. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4567. "type": "package",
  4568. "path": "nito.collections.deque/1.0.4",
  4569. "files": [
  4570. ".nupkg.metadata",
  4571. ".signature.p7s",
  4572. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4573. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4574. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4575. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4576. "nito.collections.deque.1.0.4.nupkg.sha512",
  4577. "nito.collections.deque.nuspec"
  4578. ]
  4579. },
  4580. "Nito.Disposables/2.0.0": {
  4581. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4582. "type": "package",
  4583. "path": "nito.disposables/2.0.0",
  4584. "files": [
  4585. ".nupkg.metadata",
  4586. ".signature.p7s",
  4587. "lib/netstandard1.0/Nito.Disposables.dll",
  4588. "lib/netstandard1.0/Nito.Disposables.pdb",
  4589. "lib/netstandard1.0/Nito.Disposables.xml",
  4590. "lib/netstandard2.0/Nito.Disposables.dll",
  4591. "lib/netstandard2.0/Nito.Disposables.pdb",
  4592. "lib/netstandard2.0/Nito.Disposables.xml",
  4593. "nito.disposables.2.0.0.nupkg.sha512",
  4594. "nito.disposables.nuspec"
  4595. ]
  4596. },
  4597. "NodaTime/2.4.7": {
  4598. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4599. "type": "package",
  4600. "path": "nodatime/2.4.7",
  4601. "files": [
  4602. ".nupkg.metadata",
  4603. ".signature.p7s",
  4604. "lib/net45/NodaTime.dll",
  4605. "lib/net45/NodaTime.pdb",
  4606. "lib/net45/NodaTime.xml",
  4607. "lib/netstandard1.3/NodaTime.dll",
  4608. "lib/netstandard1.3/NodaTime.pdb",
  4609. "lib/netstandard1.3/NodaTime.xml",
  4610. "lib/netstandard2.0/NodaTime.dll",
  4611. "lib/netstandard2.0/NodaTime.pdb",
  4612. "lib/netstandard2.0/NodaTime.xml",
  4613. "nodatime.2.4.7.nupkg.sha512",
  4614. "nodatime.nuspec"
  4615. ]
  4616. },
  4617. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4618. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4619. "type": "package",
  4620. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4621. "files": [
  4622. ".nupkg.metadata",
  4623. ".signature.p7s",
  4624. "icon.png",
  4625. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4626. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4627. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4628. "pomelo.entityframeworkcore.mysql.nuspec"
  4629. ]
  4630. },
  4631. "QRCoder/1.4.3": {
  4632. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4633. "type": "package",
  4634. "path": "qrcoder/1.4.3",
  4635. "files": [
  4636. ".nupkg.metadata",
  4637. ".signature.p7s",
  4638. "lib/net35/QRCoder.dll",
  4639. "lib/net40/QRCoder.dll",
  4640. "lib/net5.0-windows7.0/QRCoder.dll",
  4641. "lib/net5.0/QRCoder.dll",
  4642. "lib/net6.0-windows7.0/QRCoder.dll",
  4643. "lib/net6.0/QRCoder.dll",
  4644. "lib/netstandard1.3/QRCoder.dll",
  4645. "lib/netstandard2.0/QRCoder.dll",
  4646. "nuget-icon.png",
  4647. "nuget-readme.md",
  4648. "qrcoder.1.4.3.nupkg.sha512",
  4649. "qrcoder.nuspec"
  4650. ]
  4651. },
  4652. "RabbitMQ.Client/6.8.1": {
  4653. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4654. "type": "package",
  4655. "path": "rabbitmq.client/6.8.1",
  4656. "files": [
  4657. ".nupkg.metadata",
  4658. ".signature.p7s",
  4659. "README.md",
  4660. "icon.png",
  4661. "lib/net462/RabbitMQ.Client.dll",
  4662. "lib/net462/RabbitMQ.Client.xml",
  4663. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4664. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4665. "rabbitmq.client.6.8.1.nupkg.sha512",
  4666. "rabbitmq.client.nuspec"
  4667. ]
  4668. },
  4669. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4670. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4671. "type": "package",
  4672. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4673. "files": [
  4674. ".nupkg.metadata",
  4675. ".signature.p7s",
  4676. "ThirdPartyNotices.txt",
  4677. "dotnet_library_license.txt",
  4678. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4679. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4680. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4681. ]
  4682. },
  4683. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4684. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4685. "type": "package",
  4686. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4687. "files": [
  4688. ".nupkg.metadata",
  4689. ".signature.p7s",
  4690. "ThirdPartyNotices.txt",
  4691. "dotnet_library_license.txt",
  4692. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4693. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4694. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4695. ]
  4696. },
  4697. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4698. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4699. "type": "package",
  4700. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4701. "files": [
  4702. ".nupkg.metadata",
  4703. ".signature.p7s",
  4704. "ThirdPartyNotices.txt",
  4705. "dotnet_library_license.txt",
  4706. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4707. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4708. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4709. ]
  4710. },
  4711. "runtime.native.System/4.3.0": {
  4712. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4713. "type": "package",
  4714. "path": "runtime.native.system/4.3.0",
  4715. "files": [
  4716. ".nupkg.metadata",
  4717. ".signature.p7s",
  4718. "ThirdPartyNotices.txt",
  4719. "dotnet_library_license.txt",
  4720. "lib/netstandard1.0/_._",
  4721. "runtime.native.system.4.3.0.nupkg.sha512",
  4722. "runtime.native.system.nuspec"
  4723. ]
  4724. },
  4725. "runtime.native.System.IO.Compression/4.3.0": {
  4726. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4727. "type": "package",
  4728. "path": "runtime.native.system.io.compression/4.3.0",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "ThirdPartyNotices.txt",
  4733. "dotnet_library_license.txt",
  4734. "lib/netstandard1.0/_._",
  4735. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4736. "runtime.native.system.io.compression.nuspec"
  4737. ]
  4738. },
  4739. "runtime.native.System.Net.Http/4.3.0": {
  4740. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4741. "type": "package",
  4742. "path": "runtime.native.system.net.http/4.3.0",
  4743. "files": [
  4744. ".nupkg.metadata",
  4745. ".signature.p7s",
  4746. "ThirdPartyNotices.txt",
  4747. "dotnet_library_license.txt",
  4748. "lib/netstandard1.0/_._",
  4749. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4750. "runtime.native.system.net.http.nuspec"
  4751. ]
  4752. },
  4753. "runtime.native.System.Net.Security/4.3.0": {
  4754. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4755. "type": "package",
  4756. "path": "runtime.native.system.net.security/4.3.0",
  4757. "files": [
  4758. ".nupkg.metadata",
  4759. ".signature.p7s",
  4760. "ThirdPartyNotices.txt",
  4761. "dotnet_library_license.txt",
  4762. "lib/netstandard1.0/_._",
  4763. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4764. "runtime.native.system.net.security.nuspec"
  4765. ]
  4766. },
  4767. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4768. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4769. "type": "package",
  4770. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4771. "files": [
  4772. ".nupkg.metadata",
  4773. ".signature.p7s",
  4774. "ThirdPartyNotices.txt",
  4775. "dotnet_library_license.txt",
  4776. "lib/netstandard1.0/_._",
  4777. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4778. "runtime.native.system.security.cryptography.apple.nuspec"
  4779. ]
  4780. },
  4781. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4782. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4783. "type": "package",
  4784. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4785. "files": [
  4786. ".nupkg.metadata",
  4787. ".signature.p7s",
  4788. "ThirdPartyNotices.txt",
  4789. "dotnet_library_license.txt",
  4790. "lib/netstandard1.0/_._",
  4791. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4792. "runtime.native.system.security.cryptography.openssl.nuspec"
  4793. ]
  4794. },
  4795. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4796. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4797. "type": "package",
  4798. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4799. "files": [
  4800. ".nupkg.metadata",
  4801. ".signature.p7s",
  4802. "ThirdPartyNotices.txt",
  4803. "dotnet_library_license.txt",
  4804. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4805. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4806. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4807. ]
  4808. },
  4809. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4810. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4811. "type": "package",
  4812. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4813. "files": [
  4814. ".nupkg.metadata",
  4815. ".signature.p7s",
  4816. "ThirdPartyNotices.txt",
  4817. "dotnet_library_license.txt",
  4818. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4819. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4820. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4821. ]
  4822. },
  4823. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4824. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4825. "type": "package",
  4826. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4827. "files": [
  4828. ".nupkg.metadata",
  4829. ".signature.p7s",
  4830. "ThirdPartyNotices.txt",
  4831. "dotnet_library_license.txt",
  4832. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4833. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4834. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4835. ]
  4836. },
  4837. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4838. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4839. "type": "package",
  4840. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4841. "files": [
  4842. ".nupkg.metadata",
  4843. ".signature.p7s",
  4844. "ThirdPartyNotices.txt",
  4845. "dotnet_library_license.txt",
  4846. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4847. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4848. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4849. ]
  4850. },
  4851. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4852. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4853. "type": "package",
  4854. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4855. "files": [
  4856. ".nupkg.metadata",
  4857. ".signature.p7s",
  4858. "ThirdPartyNotices.txt",
  4859. "dotnet_library_license.txt",
  4860. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4861. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4862. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4863. ]
  4864. },
  4865. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4866. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4867. "type": "package",
  4868. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4869. "files": [
  4870. ".nupkg.metadata",
  4871. ".signature.p7s",
  4872. "ThirdPartyNotices.txt",
  4873. "dotnet_library_license.txt",
  4874. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4875. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4876. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4877. ]
  4878. },
  4879. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4880. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4881. "type": "package",
  4882. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4883. "files": [
  4884. ".nupkg.metadata",
  4885. ".signature.p7s",
  4886. "ThirdPartyNotices.txt",
  4887. "dotnet_library_license.txt",
  4888. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4889. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4890. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4891. ]
  4892. },
  4893. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4894. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4895. "type": "package",
  4896. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4897. "files": [
  4898. ".nupkg.metadata",
  4899. ".signature.p7s",
  4900. "ThirdPartyNotices.txt",
  4901. "dotnet_library_license.txt",
  4902. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4903. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4904. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4905. ]
  4906. },
  4907. "SixLabors.ImageSharp/2.1.6": {
  4908. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4909. "type": "package",
  4910. "path": "sixlabors.imagesharp/2.1.6",
  4911. "files": [
  4912. ".nupkg.metadata",
  4913. ".signature.p7s",
  4914. "lib/net472/SixLabors.ImageSharp.dll",
  4915. "lib/net472/SixLabors.ImageSharp.xml",
  4916. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4917. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4918. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4919. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4920. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4921. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4922. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4923. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4924. "sixlabors.imagesharp.128.png",
  4925. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4926. "sixlabors.imagesharp.nuspec"
  4927. ]
  4928. },
  4929. "SSH.NET/2020.0.0-beta1": {
  4930. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4931. "type": "package",
  4932. "path": "ssh.net/2020.0.0-beta1",
  4933. "files": [
  4934. ".nupkg.metadata",
  4935. ".signature.p7s",
  4936. "lib/net35/Renci.SshNet.dll",
  4937. "lib/net35/Renci.SshNet.xml",
  4938. "lib/net40/Renci.SshNet.dll",
  4939. "lib/net40/Renci.SshNet.xml",
  4940. "lib/netstandard1.3/Renci.SshNet.dll",
  4941. "lib/netstandard1.3/Renci.SshNet.xml",
  4942. "lib/netstandard2.0/Renci.SshNet.dll",
  4943. "lib/netstandard2.0/Renci.SshNet.xml",
  4944. "lib/sl4/Renci.SshNet.dll",
  4945. "lib/sl4/Renci.SshNet.xml",
  4946. "lib/sl5/Renci.SshNet.dll",
  4947. "lib/sl5/Renci.SshNet.xml",
  4948. "lib/uap10/Renci.SshNet.dll",
  4949. "lib/uap10/Renci.SshNet.xml",
  4950. "lib/wp71/Renci.SshNet.dll",
  4951. "lib/wp71/Renci.SshNet.xml",
  4952. "lib/wp8/Renci.SshNet.dll",
  4953. "lib/wp8/Renci.SshNet.xml",
  4954. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4955. "ssh.net.nuspec"
  4956. ]
  4957. },
  4958. "SshNet.Security.Cryptography/1.3.0": {
  4959. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4960. "type": "package",
  4961. "path": "sshnet.security.cryptography/1.3.0",
  4962. "files": [
  4963. ".nupkg.metadata",
  4964. ".signature.p7s",
  4965. "lib/net20/SshNet.Security.Cryptography.dll",
  4966. "lib/net20/SshNet.Security.Cryptography.xml",
  4967. "lib/net40/SshNet.Security.Cryptography.dll",
  4968. "lib/net40/SshNet.Security.Cryptography.xml",
  4969. "lib/net45/SshNet.Security.Cryptography.dll",
  4970. "lib/net45/SshNet.Security.Cryptography.xml",
  4971. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4972. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4973. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4974. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4975. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4976. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4977. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4978. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4979. "lib/sl4/SshNet.Security.Cryptography.dll",
  4980. "lib/sl4/SshNet.Security.Cryptography.xml",
  4981. "lib/sl5/SshNet.Security.Cryptography.dll",
  4982. "lib/sl5/SshNet.Security.Cryptography.xml",
  4983. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4984. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4985. "lib/wp71/SshNet.Security.Cryptography.dll",
  4986. "lib/wp71/SshNet.Security.Cryptography.xml",
  4987. "lib/wp8/SshNet.Security.Cryptography.dll",
  4988. "lib/wp8/SshNet.Security.Cryptography.xml",
  4989. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4990. "sshnet.security.cryptography.nuspec"
  4991. ]
  4992. },
  4993. "StackExchange.Redis/1.2.4": {
  4994. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4995. "type": "package",
  4996. "path": "stackexchange.redis/1.2.4",
  4997. "files": [
  4998. ".nupkg.metadata",
  4999. ".signature.p7s",
  5000. "lib/net45/StackExchange.Redis.dll",
  5001. "lib/net45/StackExchange.Redis.xml",
  5002. "lib/net46/StackExchange.Redis.dll",
  5003. "lib/net46/StackExchange.Redis.xml",
  5004. "lib/netstandard1.5/StackExchange.Redis.dll",
  5005. "lib/netstandard1.5/StackExchange.Redis.xml",
  5006. "stackexchange.redis.1.2.4.nupkg.sha512",
  5007. "stackexchange.redis.nuspec"
  5008. ]
  5009. },
  5010. "Swashbuckle.AspNetCore/5.6.3": {
  5011. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5012. "type": "package",
  5013. "path": "swashbuckle.aspnetcore/5.6.3",
  5014. "files": [
  5015. ".nupkg.metadata",
  5016. ".signature.p7s",
  5017. "build/Swashbuckle.AspNetCore.props",
  5018. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5019. "swashbuckle.aspnetcore.nuspec"
  5020. ]
  5021. },
  5022. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5023. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5024. "type": "package",
  5025. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5026. "files": [
  5027. ".nupkg.metadata",
  5028. ".signature.p7s",
  5029. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5030. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5031. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5032. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5033. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5034. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5035. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5036. "swashbuckle.aspnetcore.swagger.nuspec"
  5037. ]
  5038. },
  5039. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5040. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5041. "type": "package",
  5042. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5043. "files": [
  5044. ".nupkg.metadata",
  5045. ".signature.p7s",
  5046. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5047. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5048. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5049. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5050. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5051. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5052. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5053. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5054. ]
  5055. },
  5056. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5057. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5058. "type": "package",
  5059. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5060. "files": [
  5061. ".nupkg.metadata",
  5062. ".signature.p7s",
  5063. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5064. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5065. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5066. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5067. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5068. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5069. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5070. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5071. ]
  5072. },
  5073. "System.AppContext/4.3.0": {
  5074. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5075. "type": "package",
  5076. "path": "system.appcontext/4.3.0",
  5077. "files": [
  5078. ".nupkg.metadata",
  5079. ".signature.p7s",
  5080. "ThirdPartyNotices.txt",
  5081. "dotnet_library_license.txt",
  5082. "lib/MonoAndroid10/_._",
  5083. "lib/MonoTouch10/_._",
  5084. "lib/net46/System.AppContext.dll",
  5085. "lib/net463/System.AppContext.dll",
  5086. "lib/netcore50/System.AppContext.dll",
  5087. "lib/netstandard1.6/System.AppContext.dll",
  5088. "lib/xamarinios10/_._",
  5089. "lib/xamarinmac20/_._",
  5090. "lib/xamarintvos10/_._",
  5091. "lib/xamarinwatchos10/_._",
  5092. "ref/MonoAndroid10/_._",
  5093. "ref/MonoTouch10/_._",
  5094. "ref/net46/System.AppContext.dll",
  5095. "ref/net463/System.AppContext.dll",
  5096. "ref/netstandard/_._",
  5097. "ref/netstandard1.3/System.AppContext.dll",
  5098. "ref/netstandard1.3/System.AppContext.xml",
  5099. "ref/netstandard1.3/de/System.AppContext.xml",
  5100. "ref/netstandard1.3/es/System.AppContext.xml",
  5101. "ref/netstandard1.3/fr/System.AppContext.xml",
  5102. "ref/netstandard1.3/it/System.AppContext.xml",
  5103. "ref/netstandard1.3/ja/System.AppContext.xml",
  5104. "ref/netstandard1.3/ko/System.AppContext.xml",
  5105. "ref/netstandard1.3/ru/System.AppContext.xml",
  5106. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5107. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5108. "ref/netstandard1.6/System.AppContext.dll",
  5109. "ref/netstandard1.6/System.AppContext.xml",
  5110. "ref/netstandard1.6/de/System.AppContext.xml",
  5111. "ref/netstandard1.6/es/System.AppContext.xml",
  5112. "ref/netstandard1.6/fr/System.AppContext.xml",
  5113. "ref/netstandard1.6/it/System.AppContext.xml",
  5114. "ref/netstandard1.6/ja/System.AppContext.xml",
  5115. "ref/netstandard1.6/ko/System.AppContext.xml",
  5116. "ref/netstandard1.6/ru/System.AppContext.xml",
  5117. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5118. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5119. "ref/xamarinios10/_._",
  5120. "ref/xamarinmac20/_._",
  5121. "ref/xamarintvos10/_._",
  5122. "ref/xamarinwatchos10/_._",
  5123. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5124. "system.appcontext.4.3.0.nupkg.sha512",
  5125. "system.appcontext.nuspec"
  5126. ]
  5127. },
  5128. "System.Buffers/4.5.1": {
  5129. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5130. "type": "package",
  5131. "path": "system.buffers/4.5.1",
  5132. "files": [
  5133. ".nupkg.metadata",
  5134. ".signature.p7s",
  5135. "LICENSE.TXT",
  5136. "THIRD-PARTY-NOTICES.TXT",
  5137. "lib/net461/System.Buffers.dll",
  5138. "lib/net461/System.Buffers.xml",
  5139. "lib/netcoreapp2.0/_._",
  5140. "lib/netstandard1.1/System.Buffers.dll",
  5141. "lib/netstandard1.1/System.Buffers.xml",
  5142. "lib/netstandard2.0/System.Buffers.dll",
  5143. "lib/netstandard2.0/System.Buffers.xml",
  5144. "lib/uap10.0.16299/_._",
  5145. "ref/net45/System.Buffers.dll",
  5146. "ref/net45/System.Buffers.xml",
  5147. "ref/netcoreapp2.0/_._",
  5148. "ref/netstandard1.1/System.Buffers.dll",
  5149. "ref/netstandard1.1/System.Buffers.xml",
  5150. "ref/netstandard2.0/System.Buffers.dll",
  5151. "ref/netstandard2.0/System.Buffers.xml",
  5152. "ref/uap10.0.16299/_._",
  5153. "system.buffers.4.5.1.nupkg.sha512",
  5154. "system.buffers.nuspec",
  5155. "useSharedDesignerContext.txt",
  5156. "version.txt"
  5157. ]
  5158. },
  5159. "System.Collections/4.3.0": {
  5160. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5161. "type": "package",
  5162. "path": "system.collections/4.3.0",
  5163. "files": [
  5164. ".nupkg.metadata",
  5165. ".signature.p7s",
  5166. "ThirdPartyNotices.txt",
  5167. "dotnet_library_license.txt",
  5168. "lib/MonoAndroid10/_._",
  5169. "lib/MonoTouch10/_._",
  5170. "lib/net45/_._",
  5171. "lib/portable-net45+win8+wp8+wpa81/_._",
  5172. "lib/win8/_._",
  5173. "lib/wp80/_._",
  5174. "lib/wpa81/_._",
  5175. "lib/xamarinios10/_._",
  5176. "lib/xamarinmac20/_._",
  5177. "lib/xamarintvos10/_._",
  5178. "lib/xamarinwatchos10/_._",
  5179. "ref/MonoAndroid10/_._",
  5180. "ref/MonoTouch10/_._",
  5181. "ref/net45/_._",
  5182. "ref/netcore50/System.Collections.dll",
  5183. "ref/netcore50/System.Collections.xml",
  5184. "ref/netcore50/de/System.Collections.xml",
  5185. "ref/netcore50/es/System.Collections.xml",
  5186. "ref/netcore50/fr/System.Collections.xml",
  5187. "ref/netcore50/it/System.Collections.xml",
  5188. "ref/netcore50/ja/System.Collections.xml",
  5189. "ref/netcore50/ko/System.Collections.xml",
  5190. "ref/netcore50/ru/System.Collections.xml",
  5191. "ref/netcore50/zh-hans/System.Collections.xml",
  5192. "ref/netcore50/zh-hant/System.Collections.xml",
  5193. "ref/netstandard1.0/System.Collections.dll",
  5194. "ref/netstandard1.0/System.Collections.xml",
  5195. "ref/netstandard1.0/de/System.Collections.xml",
  5196. "ref/netstandard1.0/es/System.Collections.xml",
  5197. "ref/netstandard1.0/fr/System.Collections.xml",
  5198. "ref/netstandard1.0/it/System.Collections.xml",
  5199. "ref/netstandard1.0/ja/System.Collections.xml",
  5200. "ref/netstandard1.0/ko/System.Collections.xml",
  5201. "ref/netstandard1.0/ru/System.Collections.xml",
  5202. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5203. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5204. "ref/netstandard1.3/System.Collections.dll",
  5205. "ref/netstandard1.3/System.Collections.xml",
  5206. "ref/netstandard1.3/de/System.Collections.xml",
  5207. "ref/netstandard1.3/es/System.Collections.xml",
  5208. "ref/netstandard1.3/fr/System.Collections.xml",
  5209. "ref/netstandard1.3/it/System.Collections.xml",
  5210. "ref/netstandard1.3/ja/System.Collections.xml",
  5211. "ref/netstandard1.3/ko/System.Collections.xml",
  5212. "ref/netstandard1.3/ru/System.Collections.xml",
  5213. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5214. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5215. "ref/portable-net45+win8+wp8+wpa81/_._",
  5216. "ref/win8/_._",
  5217. "ref/wp80/_._",
  5218. "ref/wpa81/_._",
  5219. "ref/xamarinios10/_._",
  5220. "ref/xamarinmac20/_._",
  5221. "ref/xamarintvos10/_._",
  5222. "ref/xamarinwatchos10/_._",
  5223. "system.collections.4.3.0.nupkg.sha512",
  5224. "system.collections.nuspec"
  5225. ]
  5226. },
  5227. "System.Collections.Concurrent/4.3.0": {
  5228. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5229. "type": "package",
  5230. "path": "system.collections.concurrent/4.3.0",
  5231. "files": [
  5232. ".nupkg.metadata",
  5233. ".signature.p7s",
  5234. "ThirdPartyNotices.txt",
  5235. "dotnet_library_license.txt",
  5236. "lib/MonoAndroid10/_._",
  5237. "lib/MonoTouch10/_._",
  5238. "lib/net45/_._",
  5239. "lib/netcore50/System.Collections.Concurrent.dll",
  5240. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5241. "lib/portable-net45+win8+wpa81/_._",
  5242. "lib/win8/_._",
  5243. "lib/wpa81/_._",
  5244. "lib/xamarinios10/_._",
  5245. "lib/xamarinmac20/_._",
  5246. "lib/xamarintvos10/_._",
  5247. "lib/xamarinwatchos10/_._",
  5248. "ref/MonoAndroid10/_._",
  5249. "ref/MonoTouch10/_._",
  5250. "ref/net45/_._",
  5251. "ref/netcore50/System.Collections.Concurrent.dll",
  5252. "ref/netcore50/System.Collections.Concurrent.xml",
  5253. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5254. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5255. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5256. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5257. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5258. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5259. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5260. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5261. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5262. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5263. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5264. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5265. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5266. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5267. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5268. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5269. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5270. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5271. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5272. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5273. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5274. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5275. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5276. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5277. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5278. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5279. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5280. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5281. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5282. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5283. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5284. "ref/portable-net45+win8+wpa81/_._",
  5285. "ref/win8/_._",
  5286. "ref/wpa81/_._",
  5287. "ref/xamarinios10/_._",
  5288. "ref/xamarinmac20/_._",
  5289. "ref/xamarintvos10/_._",
  5290. "ref/xamarinwatchos10/_._",
  5291. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5292. "system.collections.concurrent.nuspec"
  5293. ]
  5294. },
  5295. "System.Collections.Immutable/5.0.0": {
  5296. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5297. "type": "package",
  5298. "path": "system.collections.immutable/5.0.0",
  5299. "files": [
  5300. ".nupkg.metadata",
  5301. ".signature.p7s",
  5302. "Icon.png",
  5303. "LICENSE.TXT",
  5304. "THIRD-PARTY-NOTICES.TXT",
  5305. "lib/net461/System.Collections.Immutable.dll",
  5306. "lib/net461/System.Collections.Immutable.xml",
  5307. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5308. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5309. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5310. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5311. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5312. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5313. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5314. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5315. "system.collections.immutable.5.0.0.nupkg.sha512",
  5316. "system.collections.immutable.nuspec",
  5317. "useSharedDesignerContext.txt",
  5318. "version.txt"
  5319. ]
  5320. },
  5321. "System.Collections.NonGeneric/4.3.0": {
  5322. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5323. "type": "package",
  5324. "path": "system.collections.nongeneric/4.3.0",
  5325. "files": [
  5326. ".nupkg.metadata",
  5327. ".signature.p7s",
  5328. "ThirdPartyNotices.txt",
  5329. "dotnet_library_license.txt",
  5330. "lib/MonoAndroid10/_._",
  5331. "lib/MonoTouch10/_._",
  5332. "lib/net46/System.Collections.NonGeneric.dll",
  5333. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5334. "lib/xamarinios10/_._",
  5335. "lib/xamarinmac20/_._",
  5336. "lib/xamarintvos10/_._",
  5337. "lib/xamarinwatchos10/_._",
  5338. "ref/MonoAndroid10/_._",
  5339. "ref/MonoTouch10/_._",
  5340. "ref/net46/System.Collections.NonGeneric.dll",
  5341. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5342. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5343. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5344. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5345. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5346. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5347. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5348. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5349. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5350. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5351. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5352. "ref/xamarinios10/_._",
  5353. "ref/xamarinmac20/_._",
  5354. "ref/xamarintvos10/_._",
  5355. "ref/xamarinwatchos10/_._",
  5356. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5357. "system.collections.nongeneric.nuspec"
  5358. ]
  5359. },
  5360. "System.ComponentModel/4.3.0": {
  5361. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5362. "type": "package",
  5363. "path": "system.componentmodel/4.3.0",
  5364. "files": [
  5365. ".nupkg.metadata",
  5366. ".signature.p7s",
  5367. "ThirdPartyNotices.txt",
  5368. "dotnet_library_license.txt",
  5369. "lib/MonoAndroid10/_._",
  5370. "lib/MonoTouch10/_._",
  5371. "lib/net45/_._",
  5372. "lib/netcore50/System.ComponentModel.dll",
  5373. "lib/netstandard1.3/System.ComponentModel.dll",
  5374. "lib/portable-net45+win8+wp8+wpa81/_._",
  5375. "lib/win8/_._",
  5376. "lib/wp80/_._",
  5377. "lib/wpa81/_._",
  5378. "lib/xamarinios10/_._",
  5379. "lib/xamarinmac20/_._",
  5380. "lib/xamarintvos10/_._",
  5381. "lib/xamarinwatchos10/_._",
  5382. "ref/MonoAndroid10/_._",
  5383. "ref/MonoTouch10/_._",
  5384. "ref/net45/_._",
  5385. "ref/netcore50/System.ComponentModel.dll",
  5386. "ref/netcore50/System.ComponentModel.xml",
  5387. "ref/netcore50/de/System.ComponentModel.xml",
  5388. "ref/netcore50/es/System.ComponentModel.xml",
  5389. "ref/netcore50/fr/System.ComponentModel.xml",
  5390. "ref/netcore50/it/System.ComponentModel.xml",
  5391. "ref/netcore50/ja/System.ComponentModel.xml",
  5392. "ref/netcore50/ko/System.ComponentModel.xml",
  5393. "ref/netcore50/ru/System.ComponentModel.xml",
  5394. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5395. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5396. "ref/netstandard1.0/System.ComponentModel.dll",
  5397. "ref/netstandard1.0/System.ComponentModel.xml",
  5398. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5399. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5400. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5401. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5402. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5403. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5404. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5405. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5406. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5407. "ref/portable-net45+win8+wp8+wpa81/_._",
  5408. "ref/win8/_._",
  5409. "ref/wp80/_._",
  5410. "ref/wpa81/_._",
  5411. "ref/xamarinios10/_._",
  5412. "ref/xamarinmac20/_._",
  5413. "ref/xamarintvos10/_._",
  5414. "ref/xamarinwatchos10/_._",
  5415. "system.componentmodel.4.3.0.nupkg.sha512",
  5416. "system.componentmodel.nuspec"
  5417. ]
  5418. },
  5419. "System.ComponentModel.Annotations/5.0.0": {
  5420. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5421. "type": "package",
  5422. "path": "system.componentmodel.annotations/5.0.0",
  5423. "files": [
  5424. ".nupkg.metadata",
  5425. ".signature.p7s",
  5426. "Icon.png",
  5427. "LICENSE.TXT",
  5428. "THIRD-PARTY-NOTICES.TXT",
  5429. "lib/MonoAndroid10/_._",
  5430. "lib/MonoTouch10/_._",
  5431. "lib/net45/_._",
  5432. "lib/net461/System.ComponentModel.Annotations.dll",
  5433. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5434. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5435. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5436. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5437. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5438. "lib/portable-net45+win8/_._",
  5439. "lib/win8/_._",
  5440. "lib/xamarinios10/_._",
  5441. "lib/xamarinmac20/_._",
  5442. "lib/xamarintvos10/_._",
  5443. "lib/xamarinwatchos10/_._",
  5444. "ref/MonoAndroid10/_._",
  5445. "ref/MonoTouch10/_._",
  5446. "ref/net45/_._",
  5447. "ref/net461/System.ComponentModel.Annotations.dll",
  5448. "ref/net461/System.ComponentModel.Annotations.xml",
  5449. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5450. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5451. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5452. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5453. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5454. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5455. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5456. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5457. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5458. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5459. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5460. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5461. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5462. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5463. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5464. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5465. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5466. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5467. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5468. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5469. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5470. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5471. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5472. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5473. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5474. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5475. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5476. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5477. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5478. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5479. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5480. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5481. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5482. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5483. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5484. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5485. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5486. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5487. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5488. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5489. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5490. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5491. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5492. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5493. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5494. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5495. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5496. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5497. "ref/portable-net45+win8/_._",
  5498. "ref/win8/_._",
  5499. "ref/xamarinios10/_._",
  5500. "ref/xamarinmac20/_._",
  5501. "ref/xamarintvos10/_._",
  5502. "ref/xamarinwatchos10/_._",
  5503. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5504. "system.componentmodel.annotations.nuspec",
  5505. "useSharedDesignerContext.txt",
  5506. "version.txt"
  5507. ]
  5508. },
  5509. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5510. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5511. "type": "package",
  5512. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5513. "files": [
  5514. ".nupkg.metadata",
  5515. ".signature.p7s",
  5516. "ThirdPartyNotices.txt",
  5517. "dotnet_library_license.txt",
  5518. "lib/MonoAndroid10/_._",
  5519. "lib/MonoTouch10/_._",
  5520. "lib/net45/_._",
  5521. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5522. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5523. "lib/portable-net45+win8+wp8+wpa81/_._",
  5524. "lib/win8/_._",
  5525. "lib/wp80/_._",
  5526. "lib/wpa81/_._",
  5527. "lib/xamarinios10/_._",
  5528. "lib/xamarinmac20/_._",
  5529. "lib/xamarintvos10/_._",
  5530. "lib/xamarinwatchos10/_._",
  5531. "ref/MonoAndroid10/_._",
  5532. "ref/MonoTouch10/_._",
  5533. "ref/net45/_._",
  5534. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5535. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5536. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5537. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5538. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5539. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5540. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5541. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5542. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5543. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5544. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5545. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5546. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5547. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5548. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5549. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5550. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5551. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5552. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5553. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5554. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5555. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5556. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5557. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5558. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5559. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5560. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5561. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5562. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5563. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5564. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5565. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5566. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5567. "ref/portable-net45+win8+wp8+wpa81/_._",
  5568. "ref/win8/_._",
  5569. "ref/wp80/_._",
  5570. "ref/wpa81/_._",
  5571. "ref/xamarinios10/_._",
  5572. "ref/xamarinmac20/_._",
  5573. "ref/xamarintvos10/_._",
  5574. "ref/xamarinwatchos10/_._",
  5575. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5576. "system.componentmodel.eventbasedasync.nuspec"
  5577. ]
  5578. },
  5579. "System.ComponentModel.Primitives/4.3.0": {
  5580. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5581. "type": "package",
  5582. "path": "system.componentmodel.primitives/4.3.0",
  5583. "files": [
  5584. ".nupkg.metadata",
  5585. ".signature.p7s",
  5586. "ThirdPartyNotices.txt",
  5587. "dotnet_library_license.txt",
  5588. "lib/MonoAndroid10/_._",
  5589. "lib/MonoTouch10/_._",
  5590. "lib/net45/System.ComponentModel.Primitives.dll",
  5591. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5592. "lib/xamarinios10/_._",
  5593. "lib/xamarinmac20/_._",
  5594. "lib/xamarintvos10/_._",
  5595. "lib/xamarinwatchos10/_._",
  5596. "ref/MonoAndroid10/_._",
  5597. "ref/MonoTouch10/_._",
  5598. "ref/net45/System.ComponentModel.Primitives.dll",
  5599. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5600. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5601. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5602. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5603. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5604. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5605. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5606. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5607. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5608. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5609. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5610. "ref/xamarinios10/_._",
  5611. "ref/xamarinmac20/_._",
  5612. "ref/xamarintvos10/_._",
  5613. "ref/xamarinwatchos10/_._",
  5614. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5615. "system.componentmodel.primitives.nuspec"
  5616. ]
  5617. },
  5618. "System.Configuration.ConfigurationManager/4.5.0": {
  5619. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5620. "type": "package",
  5621. "path": "system.configuration.configurationmanager/4.5.0",
  5622. "files": [
  5623. ".nupkg.metadata",
  5624. ".signature.p7s",
  5625. "LICENSE.TXT",
  5626. "THIRD-PARTY-NOTICES.TXT",
  5627. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5628. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5629. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5630. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5631. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5632. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5633. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5634. "system.configuration.configurationmanager.nuspec",
  5635. "useSharedDesignerContext.txt",
  5636. "version.txt"
  5637. ]
  5638. },
  5639. "System.Console/4.3.0": {
  5640. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5641. "type": "package",
  5642. "path": "system.console/4.3.0",
  5643. "files": [
  5644. ".nupkg.metadata",
  5645. ".signature.p7s",
  5646. "ThirdPartyNotices.txt",
  5647. "dotnet_library_license.txt",
  5648. "lib/MonoAndroid10/_._",
  5649. "lib/MonoTouch10/_._",
  5650. "lib/net46/System.Console.dll",
  5651. "lib/xamarinios10/_._",
  5652. "lib/xamarinmac20/_._",
  5653. "lib/xamarintvos10/_._",
  5654. "lib/xamarinwatchos10/_._",
  5655. "ref/MonoAndroid10/_._",
  5656. "ref/MonoTouch10/_._",
  5657. "ref/net46/System.Console.dll",
  5658. "ref/netstandard1.3/System.Console.dll",
  5659. "ref/netstandard1.3/System.Console.xml",
  5660. "ref/netstandard1.3/de/System.Console.xml",
  5661. "ref/netstandard1.3/es/System.Console.xml",
  5662. "ref/netstandard1.3/fr/System.Console.xml",
  5663. "ref/netstandard1.3/it/System.Console.xml",
  5664. "ref/netstandard1.3/ja/System.Console.xml",
  5665. "ref/netstandard1.3/ko/System.Console.xml",
  5666. "ref/netstandard1.3/ru/System.Console.xml",
  5667. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5668. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5669. "ref/xamarinios10/_._",
  5670. "ref/xamarinmac20/_._",
  5671. "ref/xamarintvos10/_._",
  5672. "ref/xamarinwatchos10/_._",
  5673. "system.console.4.3.0.nupkg.sha512",
  5674. "system.console.nuspec"
  5675. ]
  5676. },
  5677. "System.Diagnostics.Debug/4.3.0": {
  5678. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5679. "type": "package",
  5680. "path": "system.diagnostics.debug/4.3.0",
  5681. "files": [
  5682. ".nupkg.metadata",
  5683. ".signature.p7s",
  5684. "ThirdPartyNotices.txt",
  5685. "dotnet_library_license.txt",
  5686. "lib/MonoAndroid10/_._",
  5687. "lib/MonoTouch10/_._",
  5688. "lib/net45/_._",
  5689. "lib/portable-net45+win8+wp8+wpa81/_._",
  5690. "lib/win8/_._",
  5691. "lib/wp80/_._",
  5692. "lib/wpa81/_._",
  5693. "lib/xamarinios10/_._",
  5694. "lib/xamarinmac20/_._",
  5695. "lib/xamarintvos10/_._",
  5696. "lib/xamarinwatchos10/_._",
  5697. "ref/MonoAndroid10/_._",
  5698. "ref/MonoTouch10/_._",
  5699. "ref/net45/_._",
  5700. "ref/netcore50/System.Diagnostics.Debug.dll",
  5701. "ref/netcore50/System.Diagnostics.Debug.xml",
  5702. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5703. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5704. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5705. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5706. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5707. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5708. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5709. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5710. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5711. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5712. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5713. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5714. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5715. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5716. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5717. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5718. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5719. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5720. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5721. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5722. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5723. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5724. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5725. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5726. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5727. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5728. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5729. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5730. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5731. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5732. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5733. "ref/portable-net45+win8+wp8+wpa81/_._",
  5734. "ref/win8/_._",
  5735. "ref/wp80/_._",
  5736. "ref/wpa81/_._",
  5737. "ref/xamarinios10/_._",
  5738. "ref/xamarinmac20/_._",
  5739. "ref/xamarintvos10/_._",
  5740. "ref/xamarinwatchos10/_._",
  5741. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5742. "system.diagnostics.debug.nuspec"
  5743. ]
  5744. },
  5745. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5746. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5747. "type": "package",
  5748. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5749. "files": [
  5750. ".nupkg.metadata",
  5751. ".signature.p7s",
  5752. "Icon.png",
  5753. "LICENSE.TXT",
  5754. "THIRD-PARTY-NOTICES.TXT",
  5755. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5756. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5757. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5758. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5759. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5760. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5761. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5762. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5763. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5764. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5765. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5766. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5767. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5768. "system.diagnostics.diagnosticsource.nuspec",
  5769. "useSharedDesignerContext.txt",
  5770. "version.txt"
  5771. ]
  5772. },
  5773. "System.Diagnostics.Tools/4.3.0": {
  5774. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5775. "type": "package",
  5776. "path": "system.diagnostics.tools/4.3.0",
  5777. "files": [
  5778. ".nupkg.metadata",
  5779. ".signature.p7s",
  5780. "ThirdPartyNotices.txt",
  5781. "dotnet_library_license.txt",
  5782. "lib/MonoAndroid10/_._",
  5783. "lib/MonoTouch10/_._",
  5784. "lib/net45/_._",
  5785. "lib/portable-net45+win8+wp8+wpa81/_._",
  5786. "lib/win8/_._",
  5787. "lib/wp80/_._",
  5788. "lib/wpa81/_._",
  5789. "lib/xamarinios10/_._",
  5790. "lib/xamarinmac20/_._",
  5791. "lib/xamarintvos10/_._",
  5792. "lib/xamarinwatchos10/_._",
  5793. "ref/MonoAndroid10/_._",
  5794. "ref/MonoTouch10/_._",
  5795. "ref/net45/_._",
  5796. "ref/netcore50/System.Diagnostics.Tools.dll",
  5797. "ref/netcore50/System.Diagnostics.Tools.xml",
  5798. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5799. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5800. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5801. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5802. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5803. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5804. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5805. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5806. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5807. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5808. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5809. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5810. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5811. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5812. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5813. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5814. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5815. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5816. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5817. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5818. "ref/portable-net45+win8+wp8+wpa81/_._",
  5819. "ref/win8/_._",
  5820. "ref/wp80/_._",
  5821. "ref/wpa81/_._",
  5822. "ref/xamarinios10/_._",
  5823. "ref/xamarinmac20/_._",
  5824. "ref/xamarintvos10/_._",
  5825. "ref/xamarinwatchos10/_._",
  5826. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5827. "system.diagnostics.tools.nuspec"
  5828. ]
  5829. },
  5830. "System.Diagnostics.Tracing/4.3.0": {
  5831. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5832. "type": "package",
  5833. "path": "system.diagnostics.tracing/4.3.0",
  5834. "files": [
  5835. ".nupkg.metadata",
  5836. ".signature.p7s",
  5837. "ThirdPartyNotices.txt",
  5838. "dotnet_library_license.txt",
  5839. "lib/MonoAndroid10/_._",
  5840. "lib/MonoTouch10/_._",
  5841. "lib/net45/_._",
  5842. "lib/net462/System.Diagnostics.Tracing.dll",
  5843. "lib/portable-net45+win8+wpa81/_._",
  5844. "lib/win8/_._",
  5845. "lib/wpa81/_._",
  5846. "lib/xamarinios10/_._",
  5847. "lib/xamarinmac20/_._",
  5848. "lib/xamarintvos10/_._",
  5849. "lib/xamarinwatchos10/_._",
  5850. "ref/MonoAndroid10/_._",
  5851. "ref/MonoTouch10/_._",
  5852. "ref/net45/_._",
  5853. "ref/net462/System.Diagnostics.Tracing.dll",
  5854. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5855. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5856. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5857. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5858. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5859. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5860. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5861. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5862. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5863. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5864. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5865. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5866. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5867. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5868. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5869. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5870. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5871. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5872. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5873. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5874. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5875. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5876. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5877. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5878. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5879. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5880. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5881. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5882. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5883. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5884. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5885. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5886. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5887. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5888. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5889. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5890. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5891. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5892. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5893. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5894. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5895. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5896. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5897. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5898. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5899. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5900. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5901. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5902. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5903. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5904. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5905. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5906. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5907. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5908. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5909. "ref/portable-net45+win8+wpa81/_._",
  5910. "ref/win8/_._",
  5911. "ref/wpa81/_._",
  5912. "ref/xamarinios10/_._",
  5913. "ref/xamarinmac20/_._",
  5914. "ref/xamarintvos10/_._",
  5915. "ref/xamarinwatchos10/_._",
  5916. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5917. "system.diagnostics.tracing.nuspec"
  5918. ]
  5919. },
  5920. "System.Drawing.Common/5.0.3": {
  5921. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5922. "type": "package",
  5923. "path": "system.drawing.common/5.0.3",
  5924. "files": [
  5925. ".nupkg.metadata",
  5926. ".signature.p7s",
  5927. "Icon.png",
  5928. "LICENSE.TXT",
  5929. "THIRD-PARTY-NOTICES.TXT",
  5930. "lib/MonoAndroid10/_._",
  5931. "lib/MonoTouch10/_._",
  5932. "lib/net461/System.Drawing.Common.dll",
  5933. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5934. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5935. "lib/netstandard2.0/System.Drawing.Common.dll",
  5936. "lib/xamarinios10/_._",
  5937. "lib/xamarinmac20/_._",
  5938. "lib/xamarintvos10/_._",
  5939. "lib/xamarinwatchos10/_._",
  5940. "ref/MonoAndroid10/_._",
  5941. "ref/MonoTouch10/_._",
  5942. "ref/net461/System.Drawing.Common.dll",
  5943. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5944. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5945. "ref/netstandard2.0/System.Drawing.Common.dll",
  5946. "ref/xamarinios10/_._",
  5947. "ref/xamarinmac20/_._",
  5948. "ref/xamarintvos10/_._",
  5949. "ref/xamarinwatchos10/_._",
  5950. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5951. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5952. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5953. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5954. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5955. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5956. "system.drawing.common.5.0.3.nupkg.sha512",
  5957. "system.drawing.common.nuspec",
  5958. "useSharedDesignerContext.txt",
  5959. "version.txt"
  5960. ]
  5961. },
  5962. "System.Globalization/4.3.0": {
  5963. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5964. "type": "package",
  5965. "path": "system.globalization/4.3.0",
  5966. "files": [
  5967. ".nupkg.metadata",
  5968. ".signature.p7s",
  5969. "ThirdPartyNotices.txt",
  5970. "dotnet_library_license.txt",
  5971. "lib/MonoAndroid10/_._",
  5972. "lib/MonoTouch10/_._",
  5973. "lib/net45/_._",
  5974. "lib/portable-net45+win8+wp8+wpa81/_._",
  5975. "lib/win8/_._",
  5976. "lib/wp80/_._",
  5977. "lib/wpa81/_._",
  5978. "lib/xamarinios10/_._",
  5979. "lib/xamarinmac20/_._",
  5980. "lib/xamarintvos10/_._",
  5981. "lib/xamarinwatchos10/_._",
  5982. "ref/MonoAndroid10/_._",
  5983. "ref/MonoTouch10/_._",
  5984. "ref/net45/_._",
  5985. "ref/netcore50/System.Globalization.dll",
  5986. "ref/netcore50/System.Globalization.xml",
  5987. "ref/netcore50/de/System.Globalization.xml",
  5988. "ref/netcore50/es/System.Globalization.xml",
  5989. "ref/netcore50/fr/System.Globalization.xml",
  5990. "ref/netcore50/it/System.Globalization.xml",
  5991. "ref/netcore50/ja/System.Globalization.xml",
  5992. "ref/netcore50/ko/System.Globalization.xml",
  5993. "ref/netcore50/ru/System.Globalization.xml",
  5994. "ref/netcore50/zh-hans/System.Globalization.xml",
  5995. "ref/netcore50/zh-hant/System.Globalization.xml",
  5996. "ref/netstandard1.0/System.Globalization.dll",
  5997. "ref/netstandard1.0/System.Globalization.xml",
  5998. "ref/netstandard1.0/de/System.Globalization.xml",
  5999. "ref/netstandard1.0/es/System.Globalization.xml",
  6000. "ref/netstandard1.0/fr/System.Globalization.xml",
  6001. "ref/netstandard1.0/it/System.Globalization.xml",
  6002. "ref/netstandard1.0/ja/System.Globalization.xml",
  6003. "ref/netstandard1.0/ko/System.Globalization.xml",
  6004. "ref/netstandard1.0/ru/System.Globalization.xml",
  6005. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6006. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6007. "ref/netstandard1.3/System.Globalization.dll",
  6008. "ref/netstandard1.3/System.Globalization.xml",
  6009. "ref/netstandard1.3/de/System.Globalization.xml",
  6010. "ref/netstandard1.3/es/System.Globalization.xml",
  6011. "ref/netstandard1.3/fr/System.Globalization.xml",
  6012. "ref/netstandard1.3/it/System.Globalization.xml",
  6013. "ref/netstandard1.3/ja/System.Globalization.xml",
  6014. "ref/netstandard1.3/ko/System.Globalization.xml",
  6015. "ref/netstandard1.3/ru/System.Globalization.xml",
  6016. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6017. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6018. "ref/portable-net45+win8+wp8+wpa81/_._",
  6019. "ref/win8/_._",
  6020. "ref/wp80/_._",
  6021. "ref/wpa81/_._",
  6022. "ref/xamarinios10/_._",
  6023. "ref/xamarinmac20/_._",
  6024. "ref/xamarintvos10/_._",
  6025. "ref/xamarinwatchos10/_._",
  6026. "system.globalization.4.3.0.nupkg.sha512",
  6027. "system.globalization.nuspec"
  6028. ]
  6029. },
  6030. "System.Globalization.Calendars/4.3.0": {
  6031. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6032. "type": "package",
  6033. "path": "system.globalization.calendars/4.3.0",
  6034. "files": [
  6035. ".nupkg.metadata",
  6036. ".signature.p7s",
  6037. "ThirdPartyNotices.txt",
  6038. "dotnet_library_license.txt",
  6039. "lib/MonoAndroid10/_._",
  6040. "lib/MonoTouch10/_._",
  6041. "lib/net46/System.Globalization.Calendars.dll",
  6042. "lib/xamarinios10/_._",
  6043. "lib/xamarinmac20/_._",
  6044. "lib/xamarintvos10/_._",
  6045. "lib/xamarinwatchos10/_._",
  6046. "ref/MonoAndroid10/_._",
  6047. "ref/MonoTouch10/_._",
  6048. "ref/net46/System.Globalization.Calendars.dll",
  6049. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6050. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6051. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6052. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6053. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6054. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6055. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6056. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6057. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6058. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6059. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6060. "ref/xamarinios10/_._",
  6061. "ref/xamarinmac20/_._",
  6062. "ref/xamarintvos10/_._",
  6063. "ref/xamarinwatchos10/_._",
  6064. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6065. "system.globalization.calendars.nuspec"
  6066. ]
  6067. },
  6068. "System.Globalization.Extensions/4.3.0": {
  6069. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6070. "type": "package",
  6071. "path": "system.globalization.extensions/4.3.0",
  6072. "files": [
  6073. ".nupkg.metadata",
  6074. ".signature.p7s",
  6075. "ThirdPartyNotices.txt",
  6076. "dotnet_library_license.txt",
  6077. "lib/MonoAndroid10/_._",
  6078. "lib/MonoTouch10/_._",
  6079. "lib/net46/System.Globalization.Extensions.dll",
  6080. "lib/xamarinios10/_._",
  6081. "lib/xamarinmac20/_._",
  6082. "lib/xamarintvos10/_._",
  6083. "lib/xamarinwatchos10/_._",
  6084. "ref/MonoAndroid10/_._",
  6085. "ref/MonoTouch10/_._",
  6086. "ref/net46/System.Globalization.Extensions.dll",
  6087. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6088. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6089. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6090. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6091. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6092. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6093. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6094. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6095. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6096. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6097. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6098. "ref/xamarinios10/_._",
  6099. "ref/xamarinmac20/_._",
  6100. "ref/xamarintvos10/_._",
  6101. "ref/xamarinwatchos10/_._",
  6102. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6103. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6104. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6105. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6106. "system.globalization.extensions.nuspec"
  6107. ]
  6108. },
  6109. "System.IO/4.3.0": {
  6110. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6111. "type": "package",
  6112. "path": "system.io/4.3.0",
  6113. "files": [
  6114. ".nupkg.metadata",
  6115. ".signature.p7s",
  6116. "ThirdPartyNotices.txt",
  6117. "dotnet_library_license.txt",
  6118. "lib/MonoAndroid10/_._",
  6119. "lib/MonoTouch10/_._",
  6120. "lib/net45/_._",
  6121. "lib/net462/System.IO.dll",
  6122. "lib/portable-net45+win8+wp8+wpa81/_._",
  6123. "lib/win8/_._",
  6124. "lib/wp80/_._",
  6125. "lib/wpa81/_._",
  6126. "lib/xamarinios10/_._",
  6127. "lib/xamarinmac20/_._",
  6128. "lib/xamarintvos10/_._",
  6129. "lib/xamarinwatchos10/_._",
  6130. "ref/MonoAndroid10/_._",
  6131. "ref/MonoTouch10/_._",
  6132. "ref/net45/_._",
  6133. "ref/net462/System.IO.dll",
  6134. "ref/netcore50/System.IO.dll",
  6135. "ref/netcore50/System.IO.xml",
  6136. "ref/netcore50/de/System.IO.xml",
  6137. "ref/netcore50/es/System.IO.xml",
  6138. "ref/netcore50/fr/System.IO.xml",
  6139. "ref/netcore50/it/System.IO.xml",
  6140. "ref/netcore50/ja/System.IO.xml",
  6141. "ref/netcore50/ko/System.IO.xml",
  6142. "ref/netcore50/ru/System.IO.xml",
  6143. "ref/netcore50/zh-hans/System.IO.xml",
  6144. "ref/netcore50/zh-hant/System.IO.xml",
  6145. "ref/netstandard1.0/System.IO.dll",
  6146. "ref/netstandard1.0/System.IO.xml",
  6147. "ref/netstandard1.0/de/System.IO.xml",
  6148. "ref/netstandard1.0/es/System.IO.xml",
  6149. "ref/netstandard1.0/fr/System.IO.xml",
  6150. "ref/netstandard1.0/it/System.IO.xml",
  6151. "ref/netstandard1.0/ja/System.IO.xml",
  6152. "ref/netstandard1.0/ko/System.IO.xml",
  6153. "ref/netstandard1.0/ru/System.IO.xml",
  6154. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6155. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6156. "ref/netstandard1.3/System.IO.dll",
  6157. "ref/netstandard1.3/System.IO.xml",
  6158. "ref/netstandard1.3/de/System.IO.xml",
  6159. "ref/netstandard1.3/es/System.IO.xml",
  6160. "ref/netstandard1.3/fr/System.IO.xml",
  6161. "ref/netstandard1.3/it/System.IO.xml",
  6162. "ref/netstandard1.3/ja/System.IO.xml",
  6163. "ref/netstandard1.3/ko/System.IO.xml",
  6164. "ref/netstandard1.3/ru/System.IO.xml",
  6165. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6166. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6167. "ref/netstandard1.5/System.IO.dll",
  6168. "ref/netstandard1.5/System.IO.xml",
  6169. "ref/netstandard1.5/de/System.IO.xml",
  6170. "ref/netstandard1.5/es/System.IO.xml",
  6171. "ref/netstandard1.5/fr/System.IO.xml",
  6172. "ref/netstandard1.5/it/System.IO.xml",
  6173. "ref/netstandard1.5/ja/System.IO.xml",
  6174. "ref/netstandard1.5/ko/System.IO.xml",
  6175. "ref/netstandard1.5/ru/System.IO.xml",
  6176. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6177. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6178. "ref/portable-net45+win8+wp8+wpa81/_._",
  6179. "ref/win8/_._",
  6180. "ref/wp80/_._",
  6181. "ref/wpa81/_._",
  6182. "ref/xamarinios10/_._",
  6183. "ref/xamarinmac20/_._",
  6184. "ref/xamarintvos10/_._",
  6185. "ref/xamarinwatchos10/_._",
  6186. "system.io.4.3.0.nupkg.sha512",
  6187. "system.io.nuspec"
  6188. ]
  6189. },
  6190. "System.IO.Compression/4.3.0": {
  6191. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6192. "type": "package",
  6193. "path": "system.io.compression/4.3.0",
  6194. "files": [
  6195. ".nupkg.metadata",
  6196. ".signature.p7s",
  6197. "ThirdPartyNotices.txt",
  6198. "dotnet_library_license.txt",
  6199. "lib/MonoAndroid10/_._",
  6200. "lib/MonoTouch10/_._",
  6201. "lib/net45/_._",
  6202. "lib/net46/System.IO.Compression.dll",
  6203. "lib/portable-net45+win8+wpa81/_._",
  6204. "lib/win8/_._",
  6205. "lib/wpa81/_._",
  6206. "lib/xamarinios10/_._",
  6207. "lib/xamarinmac20/_._",
  6208. "lib/xamarintvos10/_._",
  6209. "lib/xamarinwatchos10/_._",
  6210. "ref/MonoAndroid10/_._",
  6211. "ref/MonoTouch10/_._",
  6212. "ref/net45/_._",
  6213. "ref/net46/System.IO.Compression.dll",
  6214. "ref/netcore50/System.IO.Compression.dll",
  6215. "ref/netcore50/System.IO.Compression.xml",
  6216. "ref/netcore50/de/System.IO.Compression.xml",
  6217. "ref/netcore50/es/System.IO.Compression.xml",
  6218. "ref/netcore50/fr/System.IO.Compression.xml",
  6219. "ref/netcore50/it/System.IO.Compression.xml",
  6220. "ref/netcore50/ja/System.IO.Compression.xml",
  6221. "ref/netcore50/ko/System.IO.Compression.xml",
  6222. "ref/netcore50/ru/System.IO.Compression.xml",
  6223. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6224. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6225. "ref/netstandard1.1/System.IO.Compression.dll",
  6226. "ref/netstandard1.1/System.IO.Compression.xml",
  6227. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6228. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6229. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6230. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6231. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6232. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6233. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6234. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6235. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6236. "ref/netstandard1.3/System.IO.Compression.dll",
  6237. "ref/netstandard1.3/System.IO.Compression.xml",
  6238. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6239. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6240. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6241. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6242. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6243. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6244. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6245. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6246. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6247. "ref/portable-net45+win8+wpa81/_._",
  6248. "ref/win8/_._",
  6249. "ref/wpa81/_._",
  6250. "ref/xamarinios10/_._",
  6251. "ref/xamarinmac20/_._",
  6252. "ref/xamarintvos10/_._",
  6253. "ref/xamarinwatchos10/_._",
  6254. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6255. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6256. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6257. "system.io.compression.4.3.0.nupkg.sha512",
  6258. "system.io.compression.nuspec"
  6259. ]
  6260. },
  6261. "System.IO.Compression.ZipFile/4.3.0": {
  6262. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6263. "type": "package",
  6264. "path": "system.io.compression.zipfile/4.3.0",
  6265. "files": [
  6266. ".nupkg.metadata",
  6267. ".signature.p7s",
  6268. "ThirdPartyNotices.txt",
  6269. "dotnet_library_license.txt",
  6270. "lib/MonoAndroid10/_._",
  6271. "lib/MonoTouch10/_._",
  6272. "lib/net46/System.IO.Compression.ZipFile.dll",
  6273. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6274. "lib/xamarinios10/_._",
  6275. "lib/xamarinmac20/_._",
  6276. "lib/xamarintvos10/_._",
  6277. "lib/xamarinwatchos10/_._",
  6278. "ref/MonoAndroid10/_._",
  6279. "ref/MonoTouch10/_._",
  6280. "ref/net46/System.IO.Compression.ZipFile.dll",
  6281. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6282. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6283. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6284. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6285. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6286. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6287. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6288. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6289. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6290. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6291. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6292. "ref/xamarinios10/_._",
  6293. "ref/xamarinmac20/_._",
  6294. "ref/xamarintvos10/_._",
  6295. "ref/xamarinwatchos10/_._",
  6296. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6297. "system.io.compression.zipfile.nuspec"
  6298. ]
  6299. },
  6300. "System.IO.FileSystem/4.3.0": {
  6301. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6302. "type": "package",
  6303. "path": "system.io.filesystem/4.3.0",
  6304. "files": [
  6305. ".nupkg.metadata",
  6306. ".signature.p7s",
  6307. "ThirdPartyNotices.txt",
  6308. "dotnet_library_license.txt",
  6309. "lib/MonoAndroid10/_._",
  6310. "lib/MonoTouch10/_._",
  6311. "lib/net46/System.IO.FileSystem.dll",
  6312. "lib/xamarinios10/_._",
  6313. "lib/xamarinmac20/_._",
  6314. "lib/xamarintvos10/_._",
  6315. "lib/xamarinwatchos10/_._",
  6316. "ref/MonoAndroid10/_._",
  6317. "ref/MonoTouch10/_._",
  6318. "ref/net46/System.IO.FileSystem.dll",
  6319. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6320. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6321. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6322. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6323. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6324. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6325. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6326. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6327. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6328. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6329. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6330. "ref/xamarinios10/_._",
  6331. "ref/xamarinmac20/_._",
  6332. "ref/xamarintvos10/_._",
  6333. "ref/xamarinwatchos10/_._",
  6334. "system.io.filesystem.4.3.0.nupkg.sha512",
  6335. "system.io.filesystem.nuspec"
  6336. ]
  6337. },
  6338. "System.IO.FileSystem.Primitives/4.3.0": {
  6339. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6340. "type": "package",
  6341. "path": "system.io.filesystem.primitives/4.3.0",
  6342. "files": [
  6343. ".nupkg.metadata",
  6344. ".signature.p7s",
  6345. "ThirdPartyNotices.txt",
  6346. "dotnet_library_license.txt",
  6347. "lib/MonoAndroid10/_._",
  6348. "lib/MonoTouch10/_._",
  6349. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6350. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6351. "lib/xamarinios10/_._",
  6352. "lib/xamarinmac20/_._",
  6353. "lib/xamarintvos10/_._",
  6354. "lib/xamarinwatchos10/_._",
  6355. "ref/MonoAndroid10/_._",
  6356. "ref/MonoTouch10/_._",
  6357. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6358. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6359. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6360. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6361. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6362. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6363. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6364. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6365. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6366. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6367. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6368. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6369. "ref/xamarinios10/_._",
  6370. "ref/xamarinmac20/_._",
  6371. "ref/xamarintvos10/_._",
  6372. "ref/xamarinwatchos10/_._",
  6373. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6374. "system.io.filesystem.primitives.nuspec"
  6375. ]
  6376. },
  6377. "System.IO.Pipelines/5.0.0": {
  6378. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6379. "type": "package",
  6380. "path": "system.io.pipelines/5.0.0",
  6381. "files": [
  6382. ".nupkg.metadata",
  6383. ".signature.p7s",
  6384. "Icon.png",
  6385. "LICENSE.TXT",
  6386. "THIRD-PARTY-NOTICES.TXT",
  6387. "lib/net461/System.IO.Pipelines.dll",
  6388. "lib/net461/System.IO.Pipelines.xml",
  6389. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6390. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6391. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6392. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6393. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6394. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6395. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6396. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6397. "system.io.pipelines.5.0.0.nupkg.sha512",
  6398. "system.io.pipelines.nuspec",
  6399. "useSharedDesignerContext.txt",
  6400. "version.txt"
  6401. ]
  6402. },
  6403. "System.Linq/4.3.0": {
  6404. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6405. "type": "package",
  6406. "path": "system.linq/4.3.0",
  6407. "files": [
  6408. ".nupkg.metadata",
  6409. ".signature.p7s",
  6410. "ThirdPartyNotices.txt",
  6411. "dotnet_library_license.txt",
  6412. "lib/MonoAndroid10/_._",
  6413. "lib/MonoTouch10/_._",
  6414. "lib/net45/_._",
  6415. "lib/net463/System.Linq.dll",
  6416. "lib/netcore50/System.Linq.dll",
  6417. "lib/netstandard1.6/System.Linq.dll",
  6418. "lib/portable-net45+win8+wp8+wpa81/_._",
  6419. "lib/win8/_._",
  6420. "lib/wp80/_._",
  6421. "lib/wpa81/_._",
  6422. "lib/xamarinios10/_._",
  6423. "lib/xamarinmac20/_._",
  6424. "lib/xamarintvos10/_._",
  6425. "lib/xamarinwatchos10/_._",
  6426. "ref/MonoAndroid10/_._",
  6427. "ref/MonoTouch10/_._",
  6428. "ref/net45/_._",
  6429. "ref/net463/System.Linq.dll",
  6430. "ref/netcore50/System.Linq.dll",
  6431. "ref/netcore50/System.Linq.xml",
  6432. "ref/netcore50/de/System.Linq.xml",
  6433. "ref/netcore50/es/System.Linq.xml",
  6434. "ref/netcore50/fr/System.Linq.xml",
  6435. "ref/netcore50/it/System.Linq.xml",
  6436. "ref/netcore50/ja/System.Linq.xml",
  6437. "ref/netcore50/ko/System.Linq.xml",
  6438. "ref/netcore50/ru/System.Linq.xml",
  6439. "ref/netcore50/zh-hans/System.Linq.xml",
  6440. "ref/netcore50/zh-hant/System.Linq.xml",
  6441. "ref/netstandard1.0/System.Linq.dll",
  6442. "ref/netstandard1.0/System.Linq.xml",
  6443. "ref/netstandard1.0/de/System.Linq.xml",
  6444. "ref/netstandard1.0/es/System.Linq.xml",
  6445. "ref/netstandard1.0/fr/System.Linq.xml",
  6446. "ref/netstandard1.0/it/System.Linq.xml",
  6447. "ref/netstandard1.0/ja/System.Linq.xml",
  6448. "ref/netstandard1.0/ko/System.Linq.xml",
  6449. "ref/netstandard1.0/ru/System.Linq.xml",
  6450. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6451. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6452. "ref/netstandard1.6/System.Linq.dll",
  6453. "ref/netstandard1.6/System.Linq.xml",
  6454. "ref/netstandard1.6/de/System.Linq.xml",
  6455. "ref/netstandard1.6/es/System.Linq.xml",
  6456. "ref/netstandard1.6/fr/System.Linq.xml",
  6457. "ref/netstandard1.6/it/System.Linq.xml",
  6458. "ref/netstandard1.6/ja/System.Linq.xml",
  6459. "ref/netstandard1.6/ko/System.Linq.xml",
  6460. "ref/netstandard1.6/ru/System.Linq.xml",
  6461. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6462. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6463. "ref/portable-net45+win8+wp8+wpa81/_._",
  6464. "ref/win8/_._",
  6465. "ref/wp80/_._",
  6466. "ref/wpa81/_._",
  6467. "ref/xamarinios10/_._",
  6468. "ref/xamarinmac20/_._",
  6469. "ref/xamarintvos10/_._",
  6470. "ref/xamarinwatchos10/_._",
  6471. "system.linq.4.3.0.nupkg.sha512",
  6472. "system.linq.nuspec"
  6473. ]
  6474. },
  6475. "System.Linq.Expressions/4.3.0": {
  6476. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6477. "type": "package",
  6478. "path": "system.linq.expressions/4.3.0",
  6479. "files": [
  6480. ".nupkg.metadata",
  6481. ".signature.p7s",
  6482. "ThirdPartyNotices.txt",
  6483. "dotnet_library_license.txt",
  6484. "lib/MonoAndroid10/_._",
  6485. "lib/MonoTouch10/_._",
  6486. "lib/net45/_._",
  6487. "lib/net463/System.Linq.Expressions.dll",
  6488. "lib/netcore50/System.Linq.Expressions.dll",
  6489. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6490. "lib/portable-net45+win8+wp8+wpa81/_._",
  6491. "lib/win8/_._",
  6492. "lib/wp80/_._",
  6493. "lib/wpa81/_._",
  6494. "lib/xamarinios10/_._",
  6495. "lib/xamarinmac20/_._",
  6496. "lib/xamarintvos10/_._",
  6497. "lib/xamarinwatchos10/_._",
  6498. "ref/MonoAndroid10/_._",
  6499. "ref/MonoTouch10/_._",
  6500. "ref/net45/_._",
  6501. "ref/net463/System.Linq.Expressions.dll",
  6502. "ref/netcore50/System.Linq.Expressions.dll",
  6503. "ref/netcore50/System.Linq.Expressions.xml",
  6504. "ref/netcore50/de/System.Linq.Expressions.xml",
  6505. "ref/netcore50/es/System.Linq.Expressions.xml",
  6506. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6507. "ref/netcore50/it/System.Linq.Expressions.xml",
  6508. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6509. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6510. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6511. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6512. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6513. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6514. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6515. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6516. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6517. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6518. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6519. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6520. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6521. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6522. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6523. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6524. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6525. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6526. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6527. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6528. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6529. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6530. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6531. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6532. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6533. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6534. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6535. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6536. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6537. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6538. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6539. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6540. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6541. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6542. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6543. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6544. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6545. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6546. "ref/portable-net45+win8+wp8+wpa81/_._",
  6547. "ref/win8/_._",
  6548. "ref/wp80/_._",
  6549. "ref/wpa81/_._",
  6550. "ref/xamarinios10/_._",
  6551. "ref/xamarinmac20/_._",
  6552. "ref/xamarintvos10/_._",
  6553. "ref/xamarinwatchos10/_._",
  6554. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6555. "system.linq.expressions.4.3.0.nupkg.sha512",
  6556. "system.linq.expressions.nuspec"
  6557. ]
  6558. },
  6559. "System.Memory/4.5.5": {
  6560. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6561. "type": "package",
  6562. "path": "system.memory/4.5.5",
  6563. "files": [
  6564. ".nupkg.metadata",
  6565. ".signature.p7s",
  6566. "LICENSE.TXT",
  6567. "THIRD-PARTY-NOTICES.TXT",
  6568. "lib/net461/System.Memory.dll",
  6569. "lib/net461/System.Memory.xml",
  6570. "lib/netcoreapp2.1/_._",
  6571. "lib/netstandard1.1/System.Memory.dll",
  6572. "lib/netstandard1.1/System.Memory.xml",
  6573. "lib/netstandard2.0/System.Memory.dll",
  6574. "lib/netstandard2.0/System.Memory.xml",
  6575. "ref/netcoreapp2.1/_._",
  6576. "system.memory.4.5.5.nupkg.sha512",
  6577. "system.memory.nuspec",
  6578. "useSharedDesignerContext.txt",
  6579. "version.txt"
  6580. ]
  6581. },
  6582. "System.Net.Http/4.3.2": {
  6583. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  6584. "type": "package",
  6585. "path": "system.net.http/4.3.2",
  6586. "files": [
  6587. ".nupkg.metadata",
  6588. ".signature.p7s",
  6589. "ThirdPartyNotices.txt",
  6590. "dotnet_library_license.txt",
  6591. "lib/Xamarinmac20/_._",
  6592. "lib/monoandroid10/_._",
  6593. "lib/monotouch10/_._",
  6594. "lib/net45/_._",
  6595. "lib/net46/System.Net.Http.dll",
  6596. "lib/portable-net45+win8+wpa81/_._",
  6597. "lib/win8/_._",
  6598. "lib/wpa81/_._",
  6599. "lib/xamarinios10/_._",
  6600. "lib/xamarintvos10/_._",
  6601. "lib/xamarinwatchos10/_._",
  6602. "ref/Xamarinmac20/_._",
  6603. "ref/monoandroid10/_._",
  6604. "ref/monotouch10/_._",
  6605. "ref/net45/_._",
  6606. "ref/net46/System.Net.Http.dll",
  6607. "ref/netcore50/System.Net.Http.dll",
  6608. "ref/netstandard1.1/System.Net.Http.dll",
  6609. "ref/netstandard1.3/System.Net.Http.dll",
  6610. "ref/portable-net45+win8+wpa81/_._",
  6611. "ref/win8/_._",
  6612. "ref/wpa81/_._",
  6613. "ref/xamarinios10/_._",
  6614. "ref/xamarintvos10/_._",
  6615. "ref/xamarinwatchos10/_._",
  6616. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6617. "runtimes/win/lib/net46/System.Net.Http.dll",
  6618. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6619. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6620. "system.net.http.4.3.2.nupkg.sha512",
  6621. "system.net.http.nuspec"
  6622. ]
  6623. },
  6624. "System.Net.NameResolution/4.3.0": {
  6625. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6626. "type": "package",
  6627. "path": "system.net.nameresolution/4.3.0",
  6628. "files": [
  6629. ".nupkg.metadata",
  6630. ".signature.p7s",
  6631. "ThirdPartyNotices.txt",
  6632. "dotnet_library_license.txt",
  6633. "lib/MonoAndroid10/_._",
  6634. "lib/MonoTouch10/_._",
  6635. "lib/net46/System.Net.NameResolution.dll",
  6636. "lib/xamarinios10/_._",
  6637. "lib/xamarinmac20/_._",
  6638. "lib/xamarintvos10/_._",
  6639. "lib/xamarinwatchos10/_._",
  6640. "ref/MonoAndroid10/_._",
  6641. "ref/MonoTouch10/_._",
  6642. "ref/net46/System.Net.NameResolution.dll",
  6643. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6644. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6645. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6646. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6647. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6648. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6649. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6650. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6651. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6652. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6653. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6654. "ref/xamarinios10/_._",
  6655. "ref/xamarinmac20/_._",
  6656. "ref/xamarintvos10/_._",
  6657. "ref/xamarinwatchos10/_._",
  6658. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6659. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6660. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6661. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6662. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6663. "system.net.nameresolution.nuspec"
  6664. ]
  6665. },
  6666. "System.Net.Primitives/4.3.0": {
  6667. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6668. "type": "package",
  6669. "path": "system.net.primitives/4.3.0",
  6670. "files": [
  6671. ".nupkg.metadata",
  6672. ".signature.p7s",
  6673. "ThirdPartyNotices.txt",
  6674. "dotnet_library_license.txt",
  6675. "lib/MonoAndroid10/_._",
  6676. "lib/MonoTouch10/_._",
  6677. "lib/net45/_._",
  6678. "lib/portable-net45+win8+wp8+wpa81/_._",
  6679. "lib/win8/_._",
  6680. "lib/wp80/_._",
  6681. "lib/wpa81/_._",
  6682. "lib/xamarinios10/_._",
  6683. "lib/xamarinmac20/_._",
  6684. "lib/xamarintvos10/_._",
  6685. "lib/xamarinwatchos10/_._",
  6686. "ref/MonoAndroid10/_._",
  6687. "ref/MonoTouch10/_._",
  6688. "ref/net45/_._",
  6689. "ref/netcore50/System.Net.Primitives.dll",
  6690. "ref/netcore50/System.Net.Primitives.xml",
  6691. "ref/netcore50/de/System.Net.Primitives.xml",
  6692. "ref/netcore50/es/System.Net.Primitives.xml",
  6693. "ref/netcore50/fr/System.Net.Primitives.xml",
  6694. "ref/netcore50/it/System.Net.Primitives.xml",
  6695. "ref/netcore50/ja/System.Net.Primitives.xml",
  6696. "ref/netcore50/ko/System.Net.Primitives.xml",
  6697. "ref/netcore50/ru/System.Net.Primitives.xml",
  6698. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6699. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6700. "ref/netstandard1.0/System.Net.Primitives.dll",
  6701. "ref/netstandard1.0/System.Net.Primitives.xml",
  6702. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6703. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6704. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6705. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6706. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6707. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6708. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6709. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6710. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6711. "ref/netstandard1.1/System.Net.Primitives.dll",
  6712. "ref/netstandard1.1/System.Net.Primitives.xml",
  6713. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6714. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6715. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6716. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6717. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6718. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6719. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6720. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6721. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6722. "ref/netstandard1.3/System.Net.Primitives.dll",
  6723. "ref/netstandard1.3/System.Net.Primitives.xml",
  6724. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6725. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6726. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6727. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6728. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6729. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6730. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6731. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6732. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6733. "ref/portable-net45+win8+wp8+wpa81/_._",
  6734. "ref/win8/_._",
  6735. "ref/wp80/_._",
  6736. "ref/wpa81/_._",
  6737. "ref/xamarinios10/_._",
  6738. "ref/xamarinmac20/_._",
  6739. "ref/xamarintvos10/_._",
  6740. "ref/xamarinwatchos10/_._",
  6741. "system.net.primitives.4.3.0.nupkg.sha512",
  6742. "system.net.primitives.nuspec"
  6743. ]
  6744. },
  6745. "System.Net.Security/4.3.0": {
  6746. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6747. "type": "package",
  6748. "path": "system.net.security/4.3.0",
  6749. "files": [
  6750. ".nupkg.metadata",
  6751. ".signature.p7s",
  6752. "ThirdPartyNotices.txt",
  6753. "dotnet_library_license.txt",
  6754. "lib/MonoAndroid10/_._",
  6755. "lib/MonoTouch10/_._",
  6756. "lib/net46/System.Net.Security.dll",
  6757. "lib/xamarinios10/_._",
  6758. "lib/xamarinmac20/_._",
  6759. "lib/xamarintvos10/_._",
  6760. "lib/xamarinwatchos10/_._",
  6761. "ref/MonoAndroid10/_._",
  6762. "ref/MonoTouch10/_._",
  6763. "ref/net46/System.Net.Security.dll",
  6764. "ref/netstandard1.3/System.Net.Security.dll",
  6765. "ref/netstandard1.3/System.Net.Security.xml",
  6766. "ref/netstandard1.3/de/System.Net.Security.xml",
  6767. "ref/netstandard1.3/es/System.Net.Security.xml",
  6768. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6769. "ref/netstandard1.3/it/System.Net.Security.xml",
  6770. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6771. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6772. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6773. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6774. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6775. "ref/xamarinios10/_._",
  6776. "ref/xamarinmac20/_._",
  6777. "ref/xamarintvos10/_._",
  6778. "ref/xamarinwatchos10/_._",
  6779. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6780. "runtimes/win/lib/net46/System.Net.Security.dll",
  6781. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6782. "runtimes/win7/lib/netcore50/_._",
  6783. "system.net.security.4.3.0.nupkg.sha512",
  6784. "system.net.security.nuspec"
  6785. ]
  6786. },
  6787. "System.Net.Sockets/4.3.0": {
  6788. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6789. "type": "package",
  6790. "path": "system.net.sockets/4.3.0",
  6791. "files": [
  6792. ".nupkg.metadata",
  6793. ".signature.p7s",
  6794. "ThirdPartyNotices.txt",
  6795. "dotnet_library_license.txt",
  6796. "lib/MonoAndroid10/_._",
  6797. "lib/MonoTouch10/_._",
  6798. "lib/net46/System.Net.Sockets.dll",
  6799. "lib/xamarinios10/_._",
  6800. "lib/xamarinmac20/_._",
  6801. "lib/xamarintvos10/_._",
  6802. "lib/xamarinwatchos10/_._",
  6803. "ref/MonoAndroid10/_._",
  6804. "ref/MonoTouch10/_._",
  6805. "ref/net46/System.Net.Sockets.dll",
  6806. "ref/netstandard1.3/System.Net.Sockets.dll",
  6807. "ref/netstandard1.3/System.Net.Sockets.xml",
  6808. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6809. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6810. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6811. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6812. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6813. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6814. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6815. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6816. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6817. "ref/xamarinios10/_._",
  6818. "ref/xamarinmac20/_._",
  6819. "ref/xamarintvos10/_._",
  6820. "ref/xamarinwatchos10/_._",
  6821. "system.net.sockets.4.3.0.nupkg.sha512",
  6822. "system.net.sockets.nuspec"
  6823. ]
  6824. },
  6825. "System.ObjectModel/4.3.0": {
  6826. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6827. "type": "package",
  6828. "path": "system.objectmodel/4.3.0",
  6829. "files": [
  6830. ".nupkg.metadata",
  6831. ".signature.p7s",
  6832. "ThirdPartyNotices.txt",
  6833. "dotnet_library_license.txt",
  6834. "lib/MonoAndroid10/_._",
  6835. "lib/MonoTouch10/_._",
  6836. "lib/net45/_._",
  6837. "lib/netcore50/System.ObjectModel.dll",
  6838. "lib/netstandard1.3/System.ObjectModel.dll",
  6839. "lib/portable-net45+win8+wp8+wpa81/_._",
  6840. "lib/win8/_._",
  6841. "lib/wp80/_._",
  6842. "lib/wpa81/_._",
  6843. "lib/xamarinios10/_._",
  6844. "lib/xamarinmac20/_._",
  6845. "lib/xamarintvos10/_._",
  6846. "lib/xamarinwatchos10/_._",
  6847. "ref/MonoAndroid10/_._",
  6848. "ref/MonoTouch10/_._",
  6849. "ref/net45/_._",
  6850. "ref/netcore50/System.ObjectModel.dll",
  6851. "ref/netcore50/System.ObjectModel.xml",
  6852. "ref/netcore50/de/System.ObjectModel.xml",
  6853. "ref/netcore50/es/System.ObjectModel.xml",
  6854. "ref/netcore50/fr/System.ObjectModel.xml",
  6855. "ref/netcore50/it/System.ObjectModel.xml",
  6856. "ref/netcore50/ja/System.ObjectModel.xml",
  6857. "ref/netcore50/ko/System.ObjectModel.xml",
  6858. "ref/netcore50/ru/System.ObjectModel.xml",
  6859. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6860. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6861. "ref/netstandard1.0/System.ObjectModel.dll",
  6862. "ref/netstandard1.0/System.ObjectModel.xml",
  6863. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6864. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6865. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6866. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6867. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6868. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6869. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6870. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6871. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6872. "ref/netstandard1.3/System.ObjectModel.dll",
  6873. "ref/netstandard1.3/System.ObjectModel.xml",
  6874. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6875. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6876. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6877. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6878. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6879. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6880. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6881. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6882. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6883. "ref/portable-net45+win8+wp8+wpa81/_._",
  6884. "ref/win8/_._",
  6885. "ref/wp80/_._",
  6886. "ref/wpa81/_._",
  6887. "ref/xamarinios10/_._",
  6888. "ref/xamarinmac20/_._",
  6889. "ref/xamarintvos10/_._",
  6890. "ref/xamarinwatchos10/_._",
  6891. "system.objectmodel.4.3.0.nupkg.sha512",
  6892. "system.objectmodel.nuspec"
  6893. ]
  6894. },
  6895. "System.Reactive/4.4.1": {
  6896. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  6897. "type": "package",
  6898. "path": "system.reactive/4.4.1",
  6899. "files": [
  6900. ".nupkg.metadata",
  6901. ".signature.p7s",
  6902. "build/netcoreapp3.0/System.Reactive.dll",
  6903. "build/netcoreapp3.0/System.Reactive.targets",
  6904. "build/netcoreapp3.0/System.Reactive.xml",
  6905. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  6906. "lib/net46/System.Reactive.dll",
  6907. "lib/net46/System.Reactive.xml",
  6908. "lib/netcoreapp3.0/_._",
  6909. "lib/netstandard2.0/System.Reactive.dll",
  6910. "lib/netstandard2.0/System.Reactive.xml",
  6911. "lib/uap10.0.16299/System.Reactive.dll",
  6912. "lib/uap10.0.16299/System.Reactive.pri",
  6913. "lib/uap10.0.16299/System.Reactive.xml",
  6914. "lib/uap10.0/System.Reactive.dll",
  6915. "lib/uap10.0/System.Reactive.pri",
  6916. "lib/uap10.0/System.Reactive.xml",
  6917. "system.reactive.4.4.1.nupkg.sha512",
  6918. "system.reactive.nuspec"
  6919. ]
  6920. },
  6921. "System.Reflection/4.3.0": {
  6922. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6923. "type": "package",
  6924. "path": "system.reflection/4.3.0",
  6925. "files": [
  6926. ".nupkg.metadata",
  6927. ".signature.p7s",
  6928. "ThirdPartyNotices.txt",
  6929. "dotnet_library_license.txt",
  6930. "lib/MonoAndroid10/_._",
  6931. "lib/MonoTouch10/_._",
  6932. "lib/net45/_._",
  6933. "lib/net462/System.Reflection.dll",
  6934. "lib/portable-net45+win8+wp8+wpa81/_._",
  6935. "lib/win8/_._",
  6936. "lib/wp80/_._",
  6937. "lib/wpa81/_._",
  6938. "lib/xamarinios10/_._",
  6939. "lib/xamarinmac20/_._",
  6940. "lib/xamarintvos10/_._",
  6941. "lib/xamarinwatchos10/_._",
  6942. "ref/MonoAndroid10/_._",
  6943. "ref/MonoTouch10/_._",
  6944. "ref/net45/_._",
  6945. "ref/net462/System.Reflection.dll",
  6946. "ref/netcore50/System.Reflection.dll",
  6947. "ref/netcore50/System.Reflection.xml",
  6948. "ref/netcore50/de/System.Reflection.xml",
  6949. "ref/netcore50/es/System.Reflection.xml",
  6950. "ref/netcore50/fr/System.Reflection.xml",
  6951. "ref/netcore50/it/System.Reflection.xml",
  6952. "ref/netcore50/ja/System.Reflection.xml",
  6953. "ref/netcore50/ko/System.Reflection.xml",
  6954. "ref/netcore50/ru/System.Reflection.xml",
  6955. "ref/netcore50/zh-hans/System.Reflection.xml",
  6956. "ref/netcore50/zh-hant/System.Reflection.xml",
  6957. "ref/netstandard1.0/System.Reflection.dll",
  6958. "ref/netstandard1.0/System.Reflection.xml",
  6959. "ref/netstandard1.0/de/System.Reflection.xml",
  6960. "ref/netstandard1.0/es/System.Reflection.xml",
  6961. "ref/netstandard1.0/fr/System.Reflection.xml",
  6962. "ref/netstandard1.0/it/System.Reflection.xml",
  6963. "ref/netstandard1.0/ja/System.Reflection.xml",
  6964. "ref/netstandard1.0/ko/System.Reflection.xml",
  6965. "ref/netstandard1.0/ru/System.Reflection.xml",
  6966. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6967. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6968. "ref/netstandard1.3/System.Reflection.dll",
  6969. "ref/netstandard1.3/System.Reflection.xml",
  6970. "ref/netstandard1.3/de/System.Reflection.xml",
  6971. "ref/netstandard1.3/es/System.Reflection.xml",
  6972. "ref/netstandard1.3/fr/System.Reflection.xml",
  6973. "ref/netstandard1.3/it/System.Reflection.xml",
  6974. "ref/netstandard1.3/ja/System.Reflection.xml",
  6975. "ref/netstandard1.3/ko/System.Reflection.xml",
  6976. "ref/netstandard1.3/ru/System.Reflection.xml",
  6977. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6978. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6979. "ref/netstandard1.5/System.Reflection.dll",
  6980. "ref/netstandard1.5/System.Reflection.xml",
  6981. "ref/netstandard1.5/de/System.Reflection.xml",
  6982. "ref/netstandard1.5/es/System.Reflection.xml",
  6983. "ref/netstandard1.5/fr/System.Reflection.xml",
  6984. "ref/netstandard1.5/it/System.Reflection.xml",
  6985. "ref/netstandard1.5/ja/System.Reflection.xml",
  6986. "ref/netstandard1.5/ko/System.Reflection.xml",
  6987. "ref/netstandard1.5/ru/System.Reflection.xml",
  6988. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6989. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6990. "ref/portable-net45+win8+wp8+wpa81/_._",
  6991. "ref/win8/_._",
  6992. "ref/wp80/_._",
  6993. "ref/wpa81/_._",
  6994. "ref/xamarinios10/_._",
  6995. "ref/xamarinmac20/_._",
  6996. "ref/xamarintvos10/_._",
  6997. "ref/xamarinwatchos10/_._",
  6998. "system.reflection.4.3.0.nupkg.sha512",
  6999. "system.reflection.nuspec"
  7000. ]
  7001. },
  7002. "System.Reflection.Emit/4.3.0": {
  7003. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7004. "type": "package",
  7005. "path": "system.reflection.emit/4.3.0",
  7006. "files": [
  7007. ".nupkg.metadata",
  7008. ".signature.p7s",
  7009. "ThirdPartyNotices.txt",
  7010. "dotnet_library_license.txt",
  7011. "lib/MonoAndroid10/_._",
  7012. "lib/monotouch10/_._",
  7013. "lib/net45/_._",
  7014. "lib/netcore50/System.Reflection.Emit.dll",
  7015. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7016. "lib/xamarinios10/_._",
  7017. "lib/xamarinmac20/_._",
  7018. "lib/xamarintvos10/_._",
  7019. "lib/xamarinwatchos10/_._",
  7020. "ref/MonoAndroid10/_._",
  7021. "ref/net45/_._",
  7022. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7023. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7024. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7025. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7026. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7027. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7028. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7029. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7030. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7031. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7032. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7033. "ref/xamarinmac20/_._",
  7034. "system.reflection.emit.4.3.0.nupkg.sha512",
  7035. "system.reflection.emit.nuspec"
  7036. ]
  7037. },
  7038. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7039. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7040. "type": "package",
  7041. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7042. "files": [
  7043. ".nupkg.metadata",
  7044. ".signature.p7s",
  7045. "ThirdPartyNotices.txt",
  7046. "dotnet_library_license.txt",
  7047. "lib/MonoAndroid10/_._",
  7048. "lib/MonoTouch10/_._",
  7049. "lib/net45/_._",
  7050. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7051. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7052. "lib/portable-net45+wp8/_._",
  7053. "lib/wp80/_._",
  7054. "lib/xamarinios10/_._",
  7055. "lib/xamarinmac20/_._",
  7056. "lib/xamarintvos10/_._",
  7057. "lib/xamarinwatchos10/_._",
  7058. "ref/MonoAndroid10/_._",
  7059. "ref/MonoTouch10/_._",
  7060. "ref/net45/_._",
  7061. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7062. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7063. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7064. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7065. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7066. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7067. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7068. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7069. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7070. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7071. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7072. "ref/portable-net45+wp8/_._",
  7073. "ref/wp80/_._",
  7074. "ref/xamarinios10/_._",
  7075. "ref/xamarinmac20/_._",
  7076. "ref/xamarintvos10/_._",
  7077. "ref/xamarinwatchos10/_._",
  7078. "runtimes/aot/lib/netcore50/_._",
  7079. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7080. "system.reflection.emit.ilgeneration.nuspec"
  7081. ]
  7082. },
  7083. "System.Reflection.Emit.Lightweight/4.3.0": {
  7084. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7085. "type": "package",
  7086. "path": "system.reflection.emit.lightweight/4.3.0",
  7087. "files": [
  7088. ".nupkg.metadata",
  7089. ".signature.p7s",
  7090. "ThirdPartyNotices.txt",
  7091. "dotnet_library_license.txt",
  7092. "lib/MonoAndroid10/_._",
  7093. "lib/MonoTouch10/_._",
  7094. "lib/net45/_._",
  7095. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7096. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7097. "lib/portable-net45+wp8/_._",
  7098. "lib/wp80/_._",
  7099. "lib/xamarinios10/_._",
  7100. "lib/xamarinmac20/_._",
  7101. "lib/xamarintvos10/_._",
  7102. "lib/xamarinwatchos10/_._",
  7103. "ref/MonoAndroid10/_._",
  7104. "ref/MonoTouch10/_._",
  7105. "ref/net45/_._",
  7106. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7107. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7108. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7109. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7110. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7111. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7112. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7113. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7114. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7115. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7116. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7117. "ref/portable-net45+wp8/_._",
  7118. "ref/wp80/_._",
  7119. "ref/xamarinios10/_._",
  7120. "ref/xamarinmac20/_._",
  7121. "ref/xamarintvos10/_._",
  7122. "ref/xamarinwatchos10/_._",
  7123. "runtimes/aot/lib/netcore50/_._",
  7124. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7125. "system.reflection.emit.lightweight.nuspec"
  7126. ]
  7127. },
  7128. "System.Reflection.Extensions/4.3.0": {
  7129. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7130. "type": "package",
  7131. "path": "system.reflection.extensions/4.3.0",
  7132. "files": [
  7133. ".nupkg.metadata",
  7134. ".signature.p7s",
  7135. "ThirdPartyNotices.txt",
  7136. "dotnet_library_license.txt",
  7137. "lib/MonoAndroid10/_._",
  7138. "lib/MonoTouch10/_._",
  7139. "lib/net45/_._",
  7140. "lib/portable-net45+win8+wp8+wpa81/_._",
  7141. "lib/win8/_._",
  7142. "lib/wp80/_._",
  7143. "lib/wpa81/_._",
  7144. "lib/xamarinios10/_._",
  7145. "lib/xamarinmac20/_._",
  7146. "lib/xamarintvos10/_._",
  7147. "lib/xamarinwatchos10/_._",
  7148. "ref/MonoAndroid10/_._",
  7149. "ref/MonoTouch10/_._",
  7150. "ref/net45/_._",
  7151. "ref/netcore50/System.Reflection.Extensions.dll",
  7152. "ref/netcore50/System.Reflection.Extensions.xml",
  7153. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7154. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7155. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7156. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7157. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7158. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7159. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7160. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7161. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7162. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7163. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7164. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7165. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7166. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7167. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7168. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7169. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7170. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7171. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7172. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7173. "ref/portable-net45+win8+wp8+wpa81/_._",
  7174. "ref/win8/_._",
  7175. "ref/wp80/_._",
  7176. "ref/wpa81/_._",
  7177. "ref/xamarinios10/_._",
  7178. "ref/xamarinmac20/_._",
  7179. "ref/xamarintvos10/_._",
  7180. "ref/xamarinwatchos10/_._",
  7181. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7182. "system.reflection.extensions.nuspec"
  7183. ]
  7184. },
  7185. "System.Reflection.Primitives/4.3.0": {
  7186. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7187. "type": "package",
  7188. "path": "system.reflection.primitives/4.3.0",
  7189. "files": [
  7190. ".nupkg.metadata",
  7191. ".signature.p7s",
  7192. "ThirdPartyNotices.txt",
  7193. "dotnet_library_license.txt",
  7194. "lib/MonoAndroid10/_._",
  7195. "lib/MonoTouch10/_._",
  7196. "lib/net45/_._",
  7197. "lib/portable-net45+win8+wp8+wpa81/_._",
  7198. "lib/win8/_._",
  7199. "lib/wp80/_._",
  7200. "lib/wpa81/_._",
  7201. "lib/xamarinios10/_._",
  7202. "lib/xamarinmac20/_._",
  7203. "lib/xamarintvos10/_._",
  7204. "lib/xamarinwatchos10/_._",
  7205. "ref/MonoAndroid10/_._",
  7206. "ref/MonoTouch10/_._",
  7207. "ref/net45/_._",
  7208. "ref/netcore50/System.Reflection.Primitives.dll",
  7209. "ref/netcore50/System.Reflection.Primitives.xml",
  7210. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7211. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7212. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7213. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7214. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7215. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7216. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7217. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7218. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7219. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7220. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7221. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7222. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7223. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7224. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7225. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7226. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7227. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7228. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7229. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7230. "ref/portable-net45+win8+wp8+wpa81/_._",
  7231. "ref/win8/_._",
  7232. "ref/wp80/_._",
  7233. "ref/wpa81/_._",
  7234. "ref/xamarinios10/_._",
  7235. "ref/xamarinmac20/_._",
  7236. "ref/xamarintvos10/_._",
  7237. "ref/xamarinwatchos10/_._",
  7238. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7239. "system.reflection.primitives.nuspec"
  7240. ]
  7241. },
  7242. "System.Reflection.TypeExtensions/4.3.0": {
  7243. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7244. "type": "package",
  7245. "path": "system.reflection.typeextensions/4.3.0",
  7246. "files": [
  7247. ".nupkg.metadata",
  7248. ".signature.p7s",
  7249. "ThirdPartyNotices.txt",
  7250. "dotnet_library_license.txt",
  7251. "lib/MonoAndroid10/_._",
  7252. "lib/MonoTouch10/_._",
  7253. "lib/net46/System.Reflection.TypeExtensions.dll",
  7254. "lib/net462/System.Reflection.TypeExtensions.dll",
  7255. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7256. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7257. "lib/xamarinios10/_._",
  7258. "lib/xamarinmac20/_._",
  7259. "lib/xamarintvos10/_._",
  7260. "lib/xamarinwatchos10/_._",
  7261. "ref/MonoAndroid10/_._",
  7262. "ref/MonoTouch10/_._",
  7263. "ref/net46/System.Reflection.TypeExtensions.dll",
  7264. "ref/net462/System.Reflection.TypeExtensions.dll",
  7265. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7266. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7267. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7268. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7269. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7270. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7271. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7272. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7273. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7274. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7275. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7276. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7277. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7278. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7279. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7280. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7281. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7282. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7283. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7284. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7285. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7286. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7287. "ref/xamarinios10/_._",
  7288. "ref/xamarinmac20/_._",
  7289. "ref/xamarintvos10/_._",
  7290. "ref/xamarinwatchos10/_._",
  7291. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7292. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7293. "system.reflection.typeextensions.nuspec"
  7294. ]
  7295. },
  7296. "System.Resources.ResourceManager/4.3.0": {
  7297. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7298. "type": "package",
  7299. "path": "system.resources.resourcemanager/4.3.0",
  7300. "files": [
  7301. ".nupkg.metadata",
  7302. ".signature.p7s",
  7303. "ThirdPartyNotices.txt",
  7304. "dotnet_library_license.txt",
  7305. "lib/MonoAndroid10/_._",
  7306. "lib/MonoTouch10/_._",
  7307. "lib/net45/_._",
  7308. "lib/portable-net45+win8+wp8+wpa81/_._",
  7309. "lib/win8/_._",
  7310. "lib/wp80/_._",
  7311. "lib/wpa81/_._",
  7312. "lib/xamarinios10/_._",
  7313. "lib/xamarinmac20/_._",
  7314. "lib/xamarintvos10/_._",
  7315. "lib/xamarinwatchos10/_._",
  7316. "ref/MonoAndroid10/_._",
  7317. "ref/MonoTouch10/_._",
  7318. "ref/net45/_._",
  7319. "ref/netcore50/System.Resources.ResourceManager.dll",
  7320. "ref/netcore50/System.Resources.ResourceManager.xml",
  7321. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7322. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7323. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7324. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7325. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7326. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7327. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7328. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7329. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7330. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7331. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7332. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7333. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7334. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7335. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7336. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7337. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7338. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7339. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7340. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7341. "ref/portable-net45+win8+wp8+wpa81/_._",
  7342. "ref/win8/_._",
  7343. "ref/wp80/_._",
  7344. "ref/wpa81/_._",
  7345. "ref/xamarinios10/_._",
  7346. "ref/xamarinmac20/_._",
  7347. "ref/xamarintvos10/_._",
  7348. "ref/xamarinwatchos10/_._",
  7349. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7350. "system.resources.resourcemanager.nuspec"
  7351. ]
  7352. },
  7353. "System.Runtime/4.3.0": {
  7354. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7355. "type": "package",
  7356. "path": "system.runtime/4.3.0",
  7357. "files": [
  7358. ".nupkg.metadata",
  7359. ".signature.p7s",
  7360. "ThirdPartyNotices.txt",
  7361. "dotnet_library_license.txt",
  7362. "lib/MonoAndroid10/_._",
  7363. "lib/MonoTouch10/_._",
  7364. "lib/net45/_._",
  7365. "lib/net462/System.Runtime.dll",
  7366. "lib/portable-net45+win8+wp80+wpa81/_._",
  7367. "lib/win8/_._",
  7368. "lib/wp80/_._",
  7369. "lib/wpa81/_._",
  7370. "lib/xamarinios10/_._",
  7371. "lib/xamarinmac20/_._",
  7372. "lib/xamarintvos10/_._",
  7373. "lib/xamarinwatchos10/_._",
  7374. "ref/MonoAndroid10/_._",
  7375. "ref/MonoTouch10/_._",
  7376. "ref/net45/_._",
  7377. "ref/net462/System.Runtime.dll",
  7378. "ref/netcore50/System.Runtime.dll",
  7379. "ref/netcore50/System.Runtime.xml",
  7380. "ref/netcore50/de/System.Runtime.xml",
  7381. "ref/netcore50/es/System.Runtime.xml",
  7382. "ref/netcore50/fr/System.Runtime.xml",
  7383. "ref/netcore50/it/System.Runtime.xml",
  7384. "ref/netcore50/ja/System.Runtime.xml",
  7385. "ref/netcore50/ko/System.Runtime.xml",
  7386. "ref/netcore50/ru/System.Runtime.xml",
  7387. "ref/netcore50/zh-hans/System.Runtime.xml",
  7388. "ref/netcore50/zh-hant/System.Runtime.xml",
  7389. "ref/netstandard1.0/System.Runtime.dll",
  7390. "ref/netstandard1.0/System.Runtime.xml",
  7391. "ref/netstandard1.0/de/System.Runtime.xml",
  7392. "ref/netstandard1.0/es/System.Runtime.xml",
  7393. "ref/netstandard1.0/fr/System.Runtime.xml",
  7394. "ref/netstandard1.0/it/System.Runtime.xml",
  7395. "ref/netstandard1.0/ja/System.Runtime.xml",
  7396. "ref/netstandard1.0/ko/System.Runtime.xml",
  7397. "ref/netstandard1.0/ru/System.Runtime.xml",
  7398. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7399. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7400. "ref/netstandard1.2/System.Runtime.dll",
  7401. "ref/netstandard1.2/System.Runtime.xml",
  7402. "ref/netstandard1.2/de/System.Runtime.xml",
  7403. "ref/netstandard1.2/es/System.Runtime.xml",
  7404. "ref/netstandard1.2/fr/System.Runtime.xml",
  7405. "ref/netstandard1.2/it/System.Runtime.xml",
  7406. "ref/netstandard1.2/ja/System.Runtime.xml",
  7407. "ref/netstandard1.2/ko/System.Runtime.xml",
  7408. "ref/netstandard1.2/ru/System.Runtime.xml",
  7409. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7410. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7411. "ref/netstandard1.3/System.Runtime.dll",
  7412. "ref/netstandard1.3/System.Runtime.xml",
  7413. "ref/netstandard1.3/de/System.Runtime.xml",
  7414. "ref/netstandard1.3/es/System.Runtime.xml",
  7415. "ref/netstandard1.3/fr/System.Runtime.xml",
  7416. "ref/netstandard1.3/it/System.Runtime.xml",
  7417. "ref/netstandard1.3/ja/System.Runtime.xml",
  7418. "ref/netstandard1.3/ko/System.Runtime.xml",
  7419. "ref/netstandard1.3/ru/System.Runtime.xml",
  7420. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7421. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7422. "ref/netstandard1.5/System.Runtime.dll",
  7423. "ref/netstandard1.5/System.Runtime.xml",
  7424. "ref/netstandard1.5/de/System.Runtime.xml",
  7425. "ref/netstandard1.5/es/System.Runtime.xml",
  7426. "ref/netstandard1.5/fr/System.Runtime.xml",
  7427. "ref/netstandard1.5/it/System.Runtime.xml",
  7428. "ref/netstandard1.5/ja/System.Runtime.xml",
  7429. "ref/netstandard1.5/ko/System.Runtime.xml",
  7430. "ref/netstandard1.5/ru/System.Runtime.xml",
  7431. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7432. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7433. "ref/portable-net45+win8+wp80+wpa81/_._",
  7434. "ref/win8/_._",
  7435. "ref/wp80/_._",
  7436. "ref/wpa81/_._",
  7437. "ref/xamarinios10/_._",
  7438. "ref/xamarinmac20/_._",
  7439. "ref/xamarintvos10/_._",
  7440. "ref/xamarinwatchos10/_._",
  7441. "system.runtime.4.3.0.nupkg.sha512",
  7442. "system.runtime.nuspec"
  7443. ]
  7444. },
  7445. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7446. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7447. "type": "package",
  7448. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7449. "files": [
  7450. ".nupkg.metadata",
  7451. ".signature.p7s",
  7452. "Icon.png",
  7453. "LICENSE.TXT",
  7454. "THIRD-PARTY-NOTICES.TXT",
  7455. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7456. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7457. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7458. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7459. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7460. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7461. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7462. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7463. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7464. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7465. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7466. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7467. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7468. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7469. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7470. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7471. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7472. "system.runtime.compilerservices.unsafe.nuspec",
  7473. "useSharedDesignerContext.txt",
  7474. "version.txt"
  7475. ]
  7476. },
  7477. "System.Runtime.Extensions/4.3.0": {
  7478. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7479. "type": "package",
  7480. "path": "system.runtime.extensions/4.3.0",
  7481. "files": [
  7482. ".nupkg.metadata",
  7483. ".signature.p7s",
  7484. "ThirdPartyNotices.txt",
  7485. "dotnet_library_license.txt",
  7486. "lib/MonoAndroid10/_._",
  7487. "lib/MonoTouch10/_._",
  7488. "lib/net45/_._",
  7489. "lib/net462/System.Runtime.Extensions.dll",
  7490. "lib/portable-net45+win8+wp8+wpa81/_._",
  7491. "lib/win8/_._",
  7492. "lib/wp80/_._",
  7493. "lib/wpa81/_._",
  7494. "lib/xamarinios10/_._",
  7495. "lib/xamarinmac20/_._",
  7496. "lib/xamarintvos10/_._",
  7497. "lib/xamarinwatchos10/_._",
  7498. "ref/MonoAndroid10/_._",
  7499. "ref/MonoTouch10/_._",
  7500. "ref/net45/_._",
  7501. "ref/net462/System.Runtime.Extensions.dll",
  7502. "ref/netcore50/System.Runtime.Extensions.dll",
  7503. "ref/netcore50/System.Runtime.Extensions.xml",
  7504. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7505. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7506. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7507. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7508. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7509. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7510. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7511. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7512. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7513. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7514. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7515. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7516. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7517. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7518. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7519. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7520. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7521. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7522. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7523. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7524. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7525. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7526. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7527. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7528. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7529. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7530. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7531. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7532. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7533. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7534. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7535. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7536. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7537. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7538. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7539. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7540. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7541. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7542. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7543. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7544. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7545. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7546. "ref/portable-net45+win8+wp8+wpa81/_._",
  7547. "ref/win8/_._",
  7548. "ref/wp80/_._",
  7549. "ref/wpa81/_._",
  7550. "ref/xamarinios10/_._",
  7551. "ref/xamarinmac20/_._",
  7552. "ref/xamarintvos10/_._",
  7553. "ref/xamarinwatchos10/_._",
  7554. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7555. "system.runtime.extensions.nuspec"
  7556. ]
  7557. },
  7558. "System.Runtime.Handles/4.3.0": {
  7559. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7560. "type": "package",
  7561. "path": "system.runtime.handles/4.3.0",
  7562. "files": [
  7563. ".nupkg.metadata",
  7564. ".signature.p7s",
  7565. "ThirdPartyNotices.txt",
  7566. "dotnet_library_license.txt",
  7567. "lib/MonoAndroid10/_._",
  7568. "lib/MonoTouch10/_._",
  7569. "lib/net46/_._",
  7570. "lib/xamarinios10/_._",
  7571. "lib/xamarinmac20/_._",
  7572. "lib/xamarintvos10/_._",
  7573. "lib/xamarinwatchos10/_._",
  7574. "ref/MonoAndroid10/_._",
  7575. "ref/MonoTouch10/_._",
  7576. "ref/net46/_._",
  7577. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7578. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7579. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7580. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7581. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7582. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7583. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7584. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7585. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7586. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7587. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7588. "ref/xamarinios10/_._",
  7589. "ref/xamarinmac20/_._",
  7590. "ref/xamarintvos10/_._",
  7591. "ref/xamarinwatchos10/_._",
  7592. "system.runtime.handles.4.3.0.nupkg.sha512",
  7593. "system.runtime.handles.nuspec"
  7594. ]
  7595. },
  7596. "System.Runtime.InteropServices/4.3.0": {
  7597. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7598. "type": "package",
  7599. "path": "system.runtime.interopservices/4.3.0",
  7600. "files": [
  7601. ".nupkg.metadata",
  7602. ".signature.p7s",
  7603. "ThirdPartyNotices.txt",
  7604. "dotnet_library_license.txt",
  7605. "lib/MonoAndroid10/_._",
  7606. "lib/MonoTouch10/_._",
  7607. "lib/net45/_._",
  7608. "lib/net462/System.Runtime.InteropServices.dll",
  7609. "lib/net463/System.Runtime.InteropServices.dll",
  7610. "lib/portable-net45+win8+wpa81/_._",
  7611. "lib/win8/_._",
  7612. "lib/wpa81/_._",
  7613. "lib/xamarinios10/_._",
  7614. "lib/xamarinmac20/_._",
  7615. "lib/xamarintvos10/_._",
  7616. "lib/xamarinwatchos10/_._",
  7617. "ref/MonoAndroid10/_._",
  7618. "ref/MonoTouch10/_._",
  7619. "ref/net45/_._",
  7620. "ref/net462/System.Runtime.InteropServices.dll",
  7621. "ref/net463/System.Runtime.InteropServices.dll",
  7622. "ref/netcore50/System.Runtime.InteropServices.dll",
  7623. "ref/netcore50/System.Runtime.InteropServices.xml",
  7624. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7625. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7626. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7627. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7628. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7629. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7630. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7631. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7632. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7633. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7634. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7635. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7636. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7637. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7638. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7639. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7640. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7641. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7642. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7643. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7644. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7645. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7646. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7647. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7648. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7649. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7650. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7651. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7652. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7653. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7654. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7655. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7656. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7657. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7658. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7659. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7660. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7661. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7662. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7663. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7664. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7665. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7666. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7667. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7668. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7669. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7670. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7671. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7672. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7673. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7674. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7675. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7676. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7677. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7678. "ref/portable-net45+win8+wpa81/_._",
  7679. "ref/win8/_._",
  7680. "ref/wpa81/_._",
  7681. "ref/xamarinios10/_._",
  7682. "ref/xamarinmac20/_._",
  7683. "ref/xamarintvos10/_._",
  7684. "ref/xamarinwatchos10/_._",
  7685. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7686. "system.runtime.interopservices.nuspec"
  7687. ]
  7688. },
  7689. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7690. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7691. "type": "package",
  7692. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7693. "files": [
  7694. ".nupkg.metadata",
  7695. ".signature.p7s",
  7696. "ThirdPartyNotices.txt",
  7697. "dotnet_library_license.txt",
  7698. "lib/MonoAndroid10/_._",
  7699. "lib/MonoTouch10/_._",
  7700. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7701. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7702. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7703. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7704. "lib/xamarinios10/_._",
  7705. "lib/xamarinmac20/_._",
  7706. "lib/xamarintvos10/_._",
  7707. "lib/xamarinwatchos10/_._",
  7708. "ref/MonoAndroid10/_._",
  7709. "ref/MonoTouch10/_._",
  7710. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7711. "ref/xamarinios10/_._",
  7712. "ref/xamarinmac20/_._",
  7713. "ref/xamarintvos10/_._",
  7714. "ref/xamarinwatchos10/_._",
  7715. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7716. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7717. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7718. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7719. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7720. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7721. "system.runtime.interopservices.runtimeinformation.nuspec"
  7722. ]
  7723. },
  7724. "System.Runtime.Numerics/4.3.0": {
  7725. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7726. "type": "package",
  7727. "path": "system.runtime.numerics/4.3.0",
  7728. "files": [
  7729. ".nupkg.metadata",
  7730. ".signature.p7s",
  7731. "ThirdPartyNotices.txt",
  7732. "dotnet_library_license.txt",
  7733. "lib/MonoAndroid10/_._",
  7734. "lib/MonoTouch10/_._",
  7735. "lib/net45/_._",
  7736. "lib/netcore50/System.Runtime.Numerics.dll",
  7737. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7738. "lib/portable-net45+win8+wpa81/_._",
  7739. "lib/win8/_._",
  7740. "lib/wpa81/_._",
  7741. "lib/xamarinios10/_._",
  7742. "lib/xamarinmac20/_._",
  7743. "lib/xamarintvos10/_._",
  7744. "lib/xamarinwatchos10/_._",
  7745. "ref/MonoAndroid10/_._",
  7746. "ref/MonoTouch10/_._",
  7747. "ref/net45/_._",
  7748. "ref/netcore50/System.Runtime.Numerics.dll",
  7749. "ref/netcore50/System.Runtime.Numerics.xml",
  7750. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7751. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7752. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7753. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7754. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7755. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7756. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7757. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7758. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7759. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7760. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7761. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7762. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7763. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7764. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7765. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7766. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7767. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7768. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7769. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7770. "ref/portable-net45+win8+wpa81/_._",
  7771. "ref/win8/_._",
  7772. "ref/wpa81/_._",
  7773. "ref/xamarinios10/_._",
  7774. "ref/xamarinmac20/_._",
  7775. "ref/xamarintvos10/_._",
  7776. "ref/xamarinwatchos10/_._",
  7777. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7778. "system.runtime.numerics.nuspec"
  7779. ]
  7780. },
  7781. "System.Runtime.Serialization.Primitives/4.3.0": {
  7782. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7783. "type": "package",
  7784. "path": "system.runtime.serialization.primitives/4.3.0",
  7785. "files": [
  7786. ".nupkg.metadata",
  7787. ".signature.p7s",
  7788. "ThirdPartyNotices.txt",
  7789. "dotnet_library_license.txt",
  7790. "lib/MonoAndroid10/_._",
  7791. "lib/MonoTouch10/_._",
  7792. "lib/net45/_._",
  7793. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7794. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7795. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7796. "lib/portable-net45+win8+wp8+wpa81/_._",
  7797. "lib/win8/_._",
  7798. "lib/wp80/_._",
  7799. "lib/wpa81/_._",
  7800. "lib/xamarinios10/_._",
  7801. "lib/xamarinmac20/_._",
  7802. "lib/xamarintvos10/_._",
  7803. "lib/xamarinwatchos10/_._",
  7804. "ref/MonoAndroid10/_._",
  7805. "ref/MonoTouch10/_._",
  7806. "ref/net45/_._",
  7807. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7808. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7809. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7810. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7811. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7812. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7813. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7814. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7815. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7816. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7817. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7818. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7819. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7820. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7821. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7822. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7823. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7824. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7825. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7826. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7827. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7828. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7829. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7830. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7831. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7832. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7833. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7834. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7835. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7836. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7837. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7838. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7839. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7840. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7841. "ref/portable-net45+win8+wp8+wpa81/_._",
  7842. "ref/win8/_._",
  7843. "ref/wp80/_._",
  7844. "ref/wpa81/_._",
  7845. "ref/xamarinios10/_._",
  7846. "ref/xamarinmac20/_._",
  7847. "ref/xamarintvos10/_._",
  7848. "ref/xamarinwatchos10/_._",
  7849. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7850. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7851. "system.runtime.serialization.primitives.nuspec"
  7852. ]
  7853. },
  7854. "System.Security.AccessControl/4.7.0": {
  7855. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7856. "type": "package",
  7857. "path": "system.security.accesscontrol/4.7.0",
  7858. "files": [
  7859. ".nupkg.metadata",
  7860. ".signature.p7s",
  7861. "LICENSE.TXT",
  7862. "THIRD-PARTY-NOTICES.TXT",
  7863. "lib/net46/System.Security.AccessControl.dll",
  7864. "lib/net461/System.Security.AccessControl.dll",
  7865. "lib/net461/System.Security.AccessControl.xml",
  7866. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7867. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7868. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7869. "lib/uap10.0.16299/_._",
  7870. "ref/net46/System.Security.AccessControl.dll",
  7871. "ref/net461/System.Security.AccessControl.dll",
  7872. "ref/net461/System.Security.AccessControl.xml",
  7873. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7874. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7875. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7876. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7877. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7878. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7879. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7880. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7881. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7882. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7883. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7884. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7885. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7886. "ref/uap10.0.16299/_._",
  7887. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7888. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7889. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7890. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7891. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7892. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7893. "runtimes/win/lib/uap10.0.16299/_._",
  7894. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7895. "system.security.accesscontrol.nuspec",
  7896. "useSharedDesignerContext.txt",
  7897. "version.txt"
  7898. ]
  7899. },
  7900. "System.Security.Claims/4.3.0": {
  7901. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7902. "type": "package",
  7903. "path": "system.security.claims/4.3.0",
  7904. "files": [
  7905. ".nupkg.metadata",
  7906. ".signature.p7s",
  7907. "ThirdPartyNotices.txt",
  7908. "dotnet_library_license.txt",
  7909. "lib/MonoAndroid10/_._",
  7910. "lib/MonoTouch10/_._",
  7911. "lib/net46/System.Security.Claims.dll",
  7912. "lib/netstandard1.3/System.Security.Claims.dll",
  7913. "lib/xamarinios10/_._",
  7914. "lib/xamarinmac20/_._",
  7915. "lib/xamarintvos10/_._",
  7916. "lib/xamarinwatchos10/_._",
  7917. "ref/MonoAndroid10/_._",
  7918. "ref/MonoTouch10/_._",
  7919. "ref/net46/System.Security.Claims.dll",
  7920. "ref/netstandard1.3/System.Security.Claims.dll",
  7921. "ref/netstandard1.3/System.Security.Claims.xml",
  7922. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7923. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7924. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7925. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7926. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7927. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7928. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7929. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7930. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7931. "ref/xamarinios10/_._",
  7932. "ref/xamarinmac20/_._",
  7933. "ref/xamarintvos10/_._",
  7934. "ref/xamarinwatchos10/_._",
  7935. "system.security.claims.4.3.0.nupkg.sha512",
  7936. "system.security.claims.nuspec"
  7937. ]
  7938. },
  7939. "System.Security.Cryptography.Algorithms/4.3.0": {
  7940. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7941. "type": "package",
  7942. "path": "system.security.cryptography.algorithms/4.3.0",
  7943. "files": [
  7944. ".nupkg.metadata",
  7945. ".signature.p7s",
  7946. "ThirdPartyNotices.txt",
  7947. "dotnet_library_license.txt",
  7948. "lib/MonoAndroid10/_._",
  7949. "lib/MonoTouch10/_._",
  7950. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7951. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7952. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7953. "lib/xamarinios10/_._",
  7954. "lib/xamarinmac20/_._",
  7955. "lib/xamarintvos10/_._",
  7956. "lib/xamarinwatchos10/_._",
  7957. "ref/MonoAndroid10/_._",
  7958. "ref/MonoTouch10/_._",
  7959. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7960. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7961. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7962. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7963. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7964. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7965. "ref/xamarinios10/_._",
  7966. "ref/xamarinmac20/_._",
  7967. "ref/xamarintvos10/_._",
  7968. "ref/xamarinwatchos10/_._",
  7969. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7970. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7971. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7972. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7973. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7974. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7975. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7976. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7977. "system.security.cryptography.algorithms.nuspec"
  7978. ]
  7979. },
  7980. "System.Security.Cryptography.Cng/4.3.0": {
  7981. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7982. "type": "package",
  7983. "path": "system.security.cryptography.cng/4.3.0",
  7984. "files": [
  7985. ".nupkg.metadata",
  7986. ".signature.p7s",
  7987. "ThirdPartyNotices.txt",
  7988. "dotnet_library_license.txt",
  7989. "lib/net46/System.Security.Cryptography.Cng.dll",
  7990. "lib/net461/System.Security.Cryptography.Cng.dll",
  7991. "lib/net463/System.Security.Cryptography.Cng.dll",
  7992. "ref/net46/System.Security.Cryptography.Cng.dll",
  7993. "ref/net461/System.Security.Cryptography.Cng.dll",
  7994. "ref/net463/System.Security.Cryptography.Cng.dll",
  7995. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7996. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7997. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7998. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7999. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8000. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8001. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8002. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8003. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8004. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8005. "system.security.cryptography.cng.nuspec"
  8006. ]
  8007. },
  8008. "System.Security.Cryptography.Csp/4.3.0": {
  8009. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8010. "type": "package",
  8011. "path": "system.security.cryptography.csp/4.3.0",
  8012. "files": [
  8013. ".nupkg.metadata",
  8014. ".signature.p7s",
  8015. "ThirdPartyNotices.txt",
  8016. "dotnet_library_license.txt",
  8017. "lib/MonoAndroid10/_._",
  8018. "lib/MonoTouch10/_._",
  8019. "lib/net46/System.Security.Cryptography.Csp.dll",
  8020. "lib/xamarinios10/_._",
  8021. "lib/xamarinmac20/_._",
  8022. "lib/xamarintvos10/_._",
  8023. "lib/xamarinwatchos10/_._",
  8024. "ref/MonoAndroid10/_._",
  8025. "ref/MonoTouch10/_._",
  8026. "ref/net46/System.Security.Cryptography.Csp.dll",
  8027. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8028. "ref/xamarinios10/_._",
  8029. "ref/xamarinmac20/_._",
  8030. "ref/xamarintvos10/_._",
  8031. "ref/xamarinwatchos10/_._",
  8032. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8033. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8034. "runtimes/win/lib/netcore50/_._",
  8035. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8036. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8037. "system.security.cryptography.csp.nuspec"
  8038. ]
  8039. },
  8040. "System.Security.Cryptography.Encoding/4.3.0": {
  8041. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8042. "type": "package",
  8043. "path": "system.security.cryptography.encoding/4.3.0",
  8044. "files": [
  8045. ".nupkg.metadata",
  8046. ".signature.p7s",
  8047. "ThirdPartyNotices.txt",
  8048. "dotnet_library_license.txt",
  8049. "lib/MonoAndroid10/_._",
  8050. "lib/MonoTouch10/_._",
  8051. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8052. "lib/xamarinios10/_._",
  8053. "lib/xamarinmac20/_._",
  8054. "lib/xamarintvos10/_._",
  8055. "lib/xamarinwatchos10/_._",
  8056. "ref/MonoAndroid10/_._",
  8057. "ref/MonoTouch10/_._",
  8058. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8059. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8060. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8061. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8062. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8063. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8064. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8065. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8066. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8067. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8068. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8069. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8070. "ref/xamarinios10/_._",
  8071. "ref/xamarinmac20/_._",
  8072. "ref/xamarintvos10/_._",
  8073. "ref/xamarinwatchos10/_._",
  8074. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8075. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8076. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8077. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8078. "system.security.cryptography.encoding.nuspec"
  8079. ]
  8080. },
  8081. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8082. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8083. "type": "package",
  8084. "path": "system.security.cryptography.openssl/4.3.0",
  8085. "files": [
  8086. ".nupkg.metadata",
  8087. ".signature.p7s",
  8088. "ThirdPartyNotices.txt",
  8089. "dotnet_library_license.txt",
  8090. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8091. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8092. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8093. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8094. "system.security.cryptography.openssl.nuspec"
  8095. ]
  8096. },
  8097. "System.Security.Cryptography.Primitives/4.3.0": {
  8098. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8099. "type": "package",
  8100. "path": "system.security.cryptography.primitives/4.3.0",
  8101. "files": [
  8102. ".nupkg.metadata",
  8103. ".signature.p7s",
  8104. "ThirdPartyNotices.txt",
  8105. "dotnet_library_license.txt",
  8106. "lib/MonoAndroid10/_._",
  8107. "lib/MonoTouch10/_._",
  8108. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8109. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8110. "lib/xamarinios10/_._",
  8111. "lib/xamarinmac20/_._",
  8112. "lib/xamarintvos10/_._",
  8113. "lib/xamarinwatchos10/_._",
  8114. "ref/MonoAndroid10/_._",
  8115. "ref/MonoTouch10/_._",
  8116. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8117. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8118. "ref/xamarinios10/_._",
  8119. "ref/xamarinmac20/_._",
  8120. "ref/xamarintvos10/_._",
  8121. "ref/xamarinwatchos10/_._",
  8122. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8123. "system.security.cryptography.primitives.nuspec"
  8124. ]
  8125. },
  8126. "System.Security.Cryptography.ProtectedData/4.5.0": {
  8127. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  8128. "type": "package",
  8129. "path": "system.security.cryptography.protecteddata/4.5.0",
  8130. "files": [
  8131. ".nupkg.metadata",
  8132. ".signature.p7s",
  8133. "LICENSE.TXT",
  8134. "THIRD-PARTY-NOTICES.TXT",
  8135. "lib/MonoAndroid10/_._",
  8136. "lib/MonoTouch10/_._",
  8137. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8138. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8139. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8140. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8141. "lib/xamarinios10/_._",
  8142. "lib/xamarinmac20/_._",
  8143. "lib/xamarintvos10/_._",
  8144. "lib/xamarinwatchos10/_._",
  8145. "ref/MonoAndroid10/_._",
  8146. "ref/MonoTouch10/_._",
  8147. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8148. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8149. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8150. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8151. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8152. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8153. "ref/xamarinios10/_._",
  8154. "ref/xamarinmac20/_._",
  8155. "ref/xamarintvos10/_._",
  8156. "ref/xamarinwatchos10/_._",
  8157. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8158. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8159. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8160. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8161. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8162. "system.security.cryptography.protecteddata.nuspec",
  8163. "useSharedDesignerContext.txt",
  8164. "version.txt"
  8165. ]
  8166. },
  8167. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8168. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8169. "type": "package",
  8170. "path": "system.security.cryptography.x509certificates/4.3.0",
  8171. "files": [
  8172. ".nupkg.metadata",
  8173. ".signature.p7s",
  8174. "ThirdPartyNotices.txt",
  8175. "dotnet_library_license.txt",
  8176. "lib/MonoAndroid10/_._",
  8177. "lib/MonoTouch10/_._",
  8178. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8179. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8180. "lib/xamarinios10/_._",
  8181. "lib/xamarinmac20/_._",
  8182. "lib/xamarintvos10/_._",
  8183. "lib/xamarinwatchos10/_._",
  8184. "ref/MonoAndroid10/_._",
  8185. "ref/MonoTouch10/_._",
  8186. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8187. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8188. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8189. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8190. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8191. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8192. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8193. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8194. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8195. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8196. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8197. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8198. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8199. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8200. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8201. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8202. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8203. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8204. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8205. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8206. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8207. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8208. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8209. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8210. "ref/xamarinios10/_._",
  8211. "ref/xamarinmac20/_._",
  8212. "ref/xamarintvos10/_._",
  8213. "ref/xamarinwatchos10/_._",
  8214. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8215. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8216. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8217. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8218. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8219. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8220. "system.security.cryptography.x509certificates.nuspec"
  8221. ]
  8222. },
  8223. "System.Security.Permissions/4.7.0": {
  8224. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8225. "type": "package",
  8226. "path": "system.security.permissions/4.7.0",
  8227. "files": [
  8228. ".nupkg.metadata",
  8229. ".signature.p7s",
  8230. "LICENSE.TXT",
  8231. "THIRD-PARTY-NOTICES.TXT",
  8232. "lib/net461/System.Security.Permissions.dll",
  8233. "lib/net461/System.Security.Permissions.xml",
  8234. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8235. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8236. "lib/netstandard2.0/System.Security.Permissions.dll",
  8237. "lib/netstandard2.0/System.Security.Permissions.xml",
  8238. "ref/net461/System.Security.Permissions.dll",
  8239. "ref/net461/System.Security.Permissions.xml",
  8240. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8241. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8242. "ref/netstandard2.0/System.Security.Permissions.dll",
  8243. "ref/netstandard2.0/System.Security.Permissions.xml",
  8244. "system.security.permissions.4.7.0.nupkg.sha512",
  8245. "system.security.permissions.nuspec",
  8246. "useSharedDesignerContext.txt",
  8247. "version.txt"
  8248. ]
  8249. },
  8250. "System.Security.Principal/4.3.0": {
  8251. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8252. "type": "package",
  8253. "path": "system.security.principal/4.3.0",
  8254. "files": [
  8255. ".nupkg.metadata",
  8256. ".signature.p7s",
  8257. "ThirdPartyNotices.txt",
  8258. "dotnet_library_license.txt",
  8259. "lib/MonoAndroid10/_._",
  8260. "lib/MonoTouch10/_._",
  8261. "lib/net45/_._",
  8262. "lib/netcore50/System.Security.Principal.dll",
  8263. "lib/netstandard1.0/System.Security.Principal.dll",
  8264. "lib/portable-net45+win8+wp8+wpa81/_._",
  8265. "lib/win8/_._",
  8266. "lib/wp80/_._",
  8267. "lib/wpa81/_._",
  8268. "lib/xamarinios10/_._",
  8269. "lib/xamarinmac20/_._",
  8270. "lib/xamarintvos10/_._",
  8271. "lib/xamarinwatchos10/_._",
  8272. "ref/MonoAndroid10/_._",
  8273. "ref/MonoTouch10/_._",
  8274. "ref/net45/_._",
  8275. "ref/netcore50/System.Security.Principal.dll",
  8276. "ref/netcore50/System.Security.Principal.xml",
  8277. "ref/netcore50/de/System.Security.Principal.xml",
  8278. "ref/netcore50/es/System.Security.Principal.xml",
  8279. "ref/netcore50/fr/System.Security.Principal.xml",
  8280. "ref/netcore50/it/System.Security.Principal.xml",
  8281. "ref/netcore50/ja/System.Security.Principal.xml",
  8282. "ref/netcore50/ko/System.Security.Principal.xml",
  8283. "ref/netcore50/ru/System.Security.Principal.xml",
  8284. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8285. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8286. "ref/netstandard1.0/System.Security.Principal.dll",
  8287. "ref/netstandard1.0/System.Security.Principal.xml",
  8288. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8289. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8290. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8291. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8292. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8293. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8294. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8295. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8296. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8297. "ref/portable-net45+win8+wp8+wpa81/_._",
  8298. "ref/win8/_._",
  8299. "ref/wp80/_._",
  8300. "ref/wpa81/_._",
  8301. "ref/xamarinios10/_._",
  8302. "ref/xamarinmac20/_._",
  8303. "ref/xamarintvos10/_._",
  8304. "ref/xamarinwatchos10/_._",
  8305. "system.security.principal.4.3.0.nupkg.sha512",
  8306. "system.security.principal.nuspec"
  8307. ]
  8308. },
  8309. "System.Security.Principal.Windows/4.7.0": {
  8310. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8311. "type": "package",
  8312. "path": "system.security.principal.windows/4.7.0",
  8313. "files": [
  8314. ".nupkg.metadata",
  8315. ".signature.p7s",
  8316. "LICENSE.TXT",
  8317. "THIRD-PARTY-NOTICES.TXT",
  8318. "lib/net46/System.Security.Principal.Windows.dll",
  8319. "lib/net461/System.Security.Principal.Windows.dll",
  8320. "lib/net461/System.Security.Principal.Windows.xml",
  8321. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8322. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8323. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8324. "lib/uap10.0.16299/_._",
  8325. "ref/net46/System.Security.Principal.Windows.dll",
  8326. "ref/net461/System.Security.Principal.Windows.dll",
  8327. "ref/net461/System.Security.Principal.Windows.xml",
  8328. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8329. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8330. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8331. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8332. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8333. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8334. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8335. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8336. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8337. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8338. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8339. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8340. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8341. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8342. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8343. "ref/uap10.0.16299/_._",
  8344. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8345. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8346. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8347. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8348. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8349. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8350. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8351. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8352. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8353. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8354. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8355. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8356. "runtimes/win/lib/uap10.0.16299/_._",
  8357. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8358. "system.security.principal.windows.nuspec",
  8359. "useSharedDesignerContext.txt",
  8360. "version.txt"
  8361. ]
  8362. },
  8363. "System.Text.Encoding/4.3.0": {
  8364. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8365. "type": "package",
  8366. "path": "system.text.encoding/4.3.0",
  8367. "files": [
  8368. ".nupkg.metadata",
  8369. ".signature.p7s",
  8370. "ThirdPartyNotices.txt",
  8371. "dotnet_library_license.txt",
  8372. "lib/MonoAndroid10/_._",
  8373. "lib/MonoTouch10/_._",
  8374. "lib/net45/_._",
  8375. "lib/portable-net45+win8+wp8+wpa81/_._",
  8376. "lib/win8/_._",
  8377. "lib/wp80/_._",
  8378. "lib/wpa81/_._",
  8379. "lib/xamarinios10/_._",
  8380. "lib/xamarinmac20/_._",
  8381. "lib/xamarintvos10/_._",
  8382. "lib/xamarinwatchos10/_._",
  8383. "ref/MonoAndroid10/_._",
  8384. "ref/MonoTouch10/_._",
  8385. "ref/net45/_._",
  8386. "ref/netcore50/System.Text.Encoding.dll",
  8387. "ref/netcore50/System.Text.Encoding.xml",
  8388. "ref/netcore50/de/System.Text.Encoding.xml",
  8389. "ref/netcore50/es/System.Text.Encoding.xml",
  8390. "ref/netcore50/fr/System.Text.Encoding.xml",
  8391. "ref/netcore50/it/System.Text.Encoding.xml",
  8392. "ref/netcore50/ja/System.Text.Encoding.xml",
  8393. "ref/netcore50/ko/System.Text.Encoding.xml",
  8394. "ref/netcore50/ru/System.Text.Encoding.xml",
  8395. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8396. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8397. "ref/netstandard1.0/System.Text.Encoding.dll",
  8398. "ref/netstandard1.0/System.Text.Encoding.xml",
  8399. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8400. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8401. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8402. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8403. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8404. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8405. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8406. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8407. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8408. "ref/netstandard1.3/System.Text.Encoding.dll",
  8409. "ref/netstandard1.3/System.Text.Encoding.xml",
  8410. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8411. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8412. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8413. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8414. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8415. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8416. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8417. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8418. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8419. "ref/portable-net45+win8+wp8+wpa81/_._",
  8420. "ref/win8/_._",
  8421. "ref/wp80/_._",
  8422. "ref/wpa81/_._",
  8423. "ref/xamarinios10/_._",
  8424. "ref/xamarinmac20/_._",
  8425. "ref/xamarintvos10/_._",
  8426. "ref/xamarinwatchos10/_._",
  8427. "system.text.encoding.4.3.0.nupkg.sha512",
  8428. "system.text.encoding.nuspec"
  8429. ]
  8430. },
  8431. "System.Text.Encoding.CodePages/5.0.0": {
  8432. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8433. "type": "package",
  8434. "path": "system.text.encoding.codepages/5.0.0",
  8435. "files": [
  8436. ".nupkg.metadata",
  8437. ".signature.p7s",
  8438. "Icon.png",
  8439. "LICENSE.TXT",
  8440. "THIRD-PARTY-NOTICES.TXT",
  8441. "lib/MonoAndroid10/_._",
  8442. "lib/MonoTouch10/_._",
  8443. "lib/net46/System.Text.Encoding.CodePages.dll",
  8444. "lib/net461/System.Text.Encoding.CodePages.dll",
  8445. "lib/net461/System.Text.Encoding.CodePages.xml",
  8446. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8447. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8448. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8449. "lib/xamarinios10/_._",
  8450. "lib/xamarinmac20/_._",
  8451. "lib/xamarintvos10/_._",
  8452. "lib/xamarinwatchos10/_._",
  8453. "ref/MonoAndroid10/_._",
  8454. "ref/MonoTouch10/_._",
  8455. "ref/xamarinios10/_._",
  8456. "ref/xamarinmac20/_._",
  8457. "ref/xamarintvos10/_._",
  8458. "ref/xamarinwatchos10/_._",
  8459. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8460. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8461. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8462. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8463. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8464. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8465. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8466. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8467. "system.text.encoding.codepages.nuspec",
  8468. "useSharedDesignerContext.txt",
  8469. "version.txt"
  8470. ]
  8471. },
  8472. "System.Text.Encoding.Extensions/4.3.0": {
  8473. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8474. "type": "package",
  8475. "path": "system.text.encoding.extensions/4.3.0",
  8476. "files": [
  8477. ".nupkg.metadata",
  8478. ".signature.p7s",
  8479. "ThirdPartyNotices.txt",
  8480. "dotnet_library_license.txt",
  8481. "lib/MonoAndroid10/_._",
  8482. "lib/MonoTouch10/_._",
  8483. "lib/net45/_._",
  8484. "lib/portable-net45+win8+wp8+wpa81/_._",
  8485. "lib/win8/_._",
  8486. "lib/wp80/_._",
  8487. "lib/wpa81/_._",
  8488. "lib/xamarinios10/_._",
  8489. "lib/xamarinmac20/_._",
  8490. "lib/xamarintvos10/_._",
  8491. "lib/xamarinwatchos10/_._",
  8492. "ref/MonoAndroid10/_._",
  8493. "ref/MonoTouch10/_._",
  8494. "ref/net45/_._",
  8495. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8496. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8497. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8498. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8499. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8500. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8501. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8502. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8503. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8504. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8505. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8506. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8507. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8508. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8509. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8510. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8511. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8512. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8513. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8514. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8515. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8516. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8517. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8518. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8519. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8520. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8521. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8522. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8523. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8524. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8525. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8526. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8527. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8528. "ref/portable-net45+win8+wp8+wpa81/_._",
  8529. "ref/win8/_._",
  8530. "ref/wp80/_._",
  8531. "ref/wpa81/_._",
  8532. "ref/xamarinios10/_._",
  8533. "ref/xamarinmac20/_._",
  8534. "ref/xamarintvos10/_._",
  8535. "ref/xamarinwatchos10/_._",
  8536. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8537. "system.text.encoding.extensions.nuspec"
  8538. ]
  8539. },
  8540. "System.Text.Encodings.Web/4.7.0": {
  8541. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  8542. "type": "package",
  8543. "path": "system.text.encodings.web/4.7.0",
  8544. "files": [
  8545. ".nupkg.metadata",
  8546. ".signature.p7s",
  8547. "LICENSE.TXT",
  8548. "THIRD-PARTY-NOTICES.TXT",
  8549. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8550. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8551. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8552. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8553. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  8554. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  8555. "system.text.encodings.web.4.7.0.nupkg.sha512",
  8556. "system.text.encodings.web.nuspec",
  8557. "useSharedDesignerContext.txt",
  8558. "version.txt"
  8559. ]
  8560. },
  8561. "System.Text.RegularExpressions/4.3.0": {
  8562. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8563. "type": "package",
  8564. "path": "system.text.regularexpressions/4.3.0",
  8565. "files": [
  8566. ".nupkg.metadata",
  8567. ".signature.p7s",
  8568. "ThirdPartyNotices.txt",
  8569. "dotnet_library_license.txt",
  8570. "lib/MonoAndroid10/_._",
  8571. "lib/MonoTouch10/_._",
  8572. "lib/net45/_._",
  8573. "lib/net463/System.Text.RegularExpressions.dll",
  8574. "lib/netcore50/System.Text.RegularExpressions.dll",
  8575. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8576. "lib/portable-net45+win8+wp8+wpa81/_._",
  8577. "lib/win8/_._",
  8578. "lib/wp80/_._",
  8579. "lib/wpa81/_._",
  8580. "lib/xamarinios10/_._",
  8581. "lib/xamarinmac20/_._",
  8582. "lib/xamarintvos10/_._",
  8583. "lib/xamarinwatchos10/_._",
  8584. "ref/MonoAndroid10/_._",
  8585. "ref/MonoTouch10/_._",
  8586. "ref/net45/_._",
  8587. "ref/net463/System.Text.RegularExpressions.dll",
  8588. "ref/netcore50/System.Text.RegularExpressions.dll",
  8589. "ref/netcore50/System.Text.RegularExpressions.xml",
  8590. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8591. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8592. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8593. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8594. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8595. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8596. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8597. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8598. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8599. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8600. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8601. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8602. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8603. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8604. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8605. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8606. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8607. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8608. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8609. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8610. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8611. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8612. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8613. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8614. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8615. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8616. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8617. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8618. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8619. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8620. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8621. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8622. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8623. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8624. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8625. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8626. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8627. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8628. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8629. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8630. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8631. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8632. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8633. "ref/portable-net45+win8+wp8+wpa81/_._",
  8634. "ref/win8/_._",
  8635. "ref/wp80/_._",
  8636. "ref/wpa81/_._",
  8637. "ref/xamarinios10/_._",
  8638. "ref/xamarinmac20/_._",
  8639. "ref/xamarintvos10/_._",
  8640. "ref/xamarinwatchos10/_._",
  8641. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8642. "system.text.regularexpressions.nuspec"
  8643. ]
  8644. },
  8645. "System.Threading/4.3.0": {
  8646. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8647. "type": "package",
  8648. "path": "system.threading/4.3.0",
  8649. "files": [
  8650. ".nupkg.metadata",
  8651. ".signature.p7s",
  8652. "ThirdPartyNotices.txt",
  8653. "dotnet_library_license.txt",
  8654. "lib/MonoAndroid10/_._",
  8655. "lib/MonoTouch10/_._",
  8656. "lib/net45/_._",
  8657. "lib/netcore50/System.Threading.dll",
  8658. "lib/netstandard1.3/System.Threading.dll",
  8659. "lib/portable-net45+win8+wp8+wpa81/_._",
  8660. "lib/win8/_._",
  8661. "lib/wp80/_._",
  8662. "lib/wpa81/_._",
  8663. "lib/xamarinios10/_._",
  8664. "lib/xamarinmac20/_._",
  8665. "lib/xamarintvos10/_._",
  8666. "lib/xamarinwatchos10/_._",
  8667. "ref/MonoAndroid10/_._",
  8668. "ref/MonoTouch10/_._",
  8669. "ref/net45/_._",
  8670. "ref/netcore50/System.Threading.dll",
  8671. "ref/netcore50/System.Threading.xml",
  8672. "ref/netcore50/de/System.Threading.xml",
  8673. "ref/netcore50/es/System.Threading.xml",
  8674. "ref/netcore50/fr/System.Threading.xml",
  8675. "ref/netcore50/it/System.Threading.xml",
  8676. "ref/netcore50/ja/System.Threading.xml",
  8677. "ref/netcore50/ko/System.Threading.xml",
  8678. "ref/netcore50/ru/System.Threading.xml",
  8679. "ref/netcore50/zh-hans/System.Threading.xml",
  8680. "ref/netcore50/zh-hant/System.Threading.xml",
  8681. "ref/netstandard1.0/System.Threading.dll",
  8682. "ref/netstandard1.0/System.Threading.xml",
  8683. "ref/netstandard1.0/de/System.Threading.xml",
  8684. "ref/netstandard1.0/es/System.Threading.xml",
  8685. "ref/netstandard1.0/fr/System.Threading.xml",
  8686. "ref/netstandard1.0/it/System.Threading.xml",
  8687. "ref/netstandard1.0/ja/System.Threading.xml",
  8688. "ref/netstandard1.0/ko/System.Threading.xml",
  8689. "ref/netstandard1.0/ru/System.Threading.xml",
  8690. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8691. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8692. "ref/netstandard1.3/System.Threading.dll",
  8693. "ref/netstandard1.3/System.Threading.xml",
  8694. "ref/netstandard1.3/de/System.Threading.xml",
  8695. "ref/netstandard1.3/es/System.Threading.xml",
  8696. "ref/netstandard1.3/fr/System.Threading.xml",
  8697. "ref/netstandard1.3/it/System.Threading.xml",
  8698. "ref/netstandard1.3/ja/System.Threading.xml",
  8699. "ref/netstandard1.3/ko/System.Threading.xml",
  8700. "ref/netstandard1.3/ru/System.Threading.xml",
  8701. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8702. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8703. "ref/portable-net45+win8+wp8+wpa81/_._",
  8704. "ref/win8/_._",
  8705. "ref/wp80/_._",
  8706. "ref/wpa81/_._",
  8707. "ref/xamarinios10/_._",
  8708. "ref/xamarinmac20/_._",
  8709. "ref/xamarintvos10/_._",
  8710. "ref/xamarinwatchos10/_._",
  8711. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8712. "system.threading.4.3.0.nupkg.sha512",
  8713. "system.threading.nuspec"
  8714. ]
  8715. },
  8716. "System.Threading.Channels/7.0.0": {
  8717. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8718. "type": "package",
  8719. "path": "system.threading.channels/7.0.0",
  8720. "files": [
  8721. ".nupkg.metadata",
  8722. ".signature.p7s",
  8723. "Icon.png",
  8724. "LICENSE.TXT",
  8725. "THIRD-PARTY-NOTICES.TXT",
  8726. "buildTransitive/net461/System.Threading.Channels.targets",
  8727. "buildTransitive/net462/_._",
  8728. "buildTransitive/net6.0/_._",
  8729. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8730. "lib/net462/System.Threading.Channels.dll",
  8731. "lib/net462/System.Threading.Channels.xml",
  8732. "lib/net6.0/System.Threading.Channels.dll",
  8733. "lib/net6.0/System.Threading.Channels.xml",
  8734. "lib/net7.0/System.Threading.Channels.dll",
  8735. "lib/net7.0/System.Threading.Channels.xml",
  8736. "lib/netstandard2.0/System.Threading.Channels.dll",
  8737. "lib/netstandard2.0/System.Threading.Channels.xml",
  8738. "lib/netstandard2.1/System.Threading.Channels.dll",
  8739. "lib/netstandard2.1/System.Threading.Channels.xml",
  8740. "system.threading.channels.7.0.0.nupkg.sha512",
  8741. "system.threading.channels.nuspec",
  8742. "useSharedDesignerContext.txt"
  8743. ]
  8744. },
  8745. "System.Threading.Tasks/4.3.0": {
  8746. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8747. "type": "package",
  8748. "path": "system.threading.tasks/4.3.0",
  8749. "files": [
  8750. ".nupkg.metadata",
  8751. ".signature.p7s",
  8752. "ThirdPartyNotices.txt",
  8753. "dotnet_library_license.txt",
  8754. "lib/MonoAndroid10/_._",
  8755. "lib/MonoTouch10/_._",
  8756. "lib/net45/_._",
  8757. "lib/portable-net45+win8+wp8+wpa81/_._",
  8758. "lib/win8/_._",
  8759. "lib/wp80/_._",
  8760. "lib/wpa81/_._",
  8761. "lib/xamarinios10/_._",
  8762. "lib/xamarinmac20/_._",
  8763. "lib/xamarintvos10/_._",
  8764. "lib/xamarinwatchos10/_._",
  8765. "ref/MonoAndroid10/_._",
  8766. "ref/MonoTouch10/_._",
  8767. "ref/net45/_._",
  8768. "ref/netcore50/System.Threading.Tasks.dll",
  8769. "ref/netcore50/System.Threading.Tasks.xml",
  8770. "ref/netcore50/de/System.Threading.Tasks.xml",
  8771. "ref/netcore50/es/System.Threading.Tasks.xml",
  8772. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8773. "ref/netcore50/it/System.Threading.Tasks.xml",
  8774. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8775. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8776. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8777. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8778. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8779. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8780. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8781. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8782. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8783. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8784. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8785. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8786. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8787. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8788. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8789. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8790. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8791. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8792. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8793. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8794. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8795. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8796. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8797. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8798. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8799. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8800. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8801. "ref/portable-net45+win8+wp8+wpa81/_._",
  8802. "ref/win8/_._",
  8803. "ref/wp80/_._",
  8804. "ref/wpa81/_._",
  8805. "ref/xamarinios10/_._",
  8806. "ref/xamarinmac20/_._",
  8807. "ref/xamarintvos10/_._",
  8808. "ref/xamarinwatchos10/_._",
  8809. "system.threading.tasks.4.3.0.nupkg.sha512",
  8810. "system.threading.tasks.nuspec"
  8811. ]
  8812. },
  8813. "System.Threading.Tasks.Extensions/4.3.0": {
  8814. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8815. "type": "package",
  8816. "path": "system.threading.tasks.extensions/4.3.0",
  8817. "files": [
  8818. ".nupkg.metadata",
  8819. ".signature.p7s",
  8820. "ThirdPartyNotices.txt",
  8821. "dotnet_library_license.txt",
  8822. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8823. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8824. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8825. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8826. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8827. "system.threading.tasks.extensions.nuspec"
  8828. ]
  8829. },
  8830. "System.Threading.Thread/4.3.0": {
  8831. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8832. "type": "package",
  8833. "path": "system.threading.thread/4.3.0",
  8834. "files": [
  8835. ".nupkg.metadata",
  8836. ".signature.p7s",
  8837. "ThirdPartyNotices.txt",
  8838. "dotnet_library_license.txt",
  8839. "lib/MonoAndroid10/_._",
  8840. "lib/MonoTouch10/_._",
  8841. "lib/net46/System.Threading.Thread.dll",
  8842. "lib/netcore50/_._",
  8843. "lib/netstandard1.3/System.Threading.Thread.dll",
  8844. "lib/xamarinios10/_._",
  8845. "lib/xamarinmac20/_._",
  8846. "lib/xamarintvos10/_._",
  8847. "lib/xamarinwatchos10/_._",
  8848. "ref/MonoAndroid10/_._",
  8849. "ref/MonoTouch10/_._",
  8850. "ref/net46/System.Threading.Thread.dll",
  8851. "ref/netstandard1.3/System.Threading.Thread.dll",
  8852. "ref/netstandard1.3/System.Threading.Thread.xml",
  8853. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8854. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8855. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8856. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8857. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8858. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8859. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8860. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8861. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8862. "ref/xamarinios10/_._",
  8863. "ref/xamarinmac20/_._",
  8864. "ref/xamarintvos10/_._",
  8865. "ref/xamarinwatchos10/_._",
  8866. "system.threading.thread.4.3.0.nupkg.sha512",
  8867. "system.threading.thread.nuspec"
  8868. ]
  8869. },
  8870. "System.Threading.ThreadPool/4.3.0": {
  8871. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8872. "type": "package",
  8873. "path": "system.threading.threadpool/4.3.0",
  8874. "files": [
  8875. ".nupkg.metadata",
  8876. ".signature.p7s",
  8877. "ThirdPartyNotices.txt",
  8878. "dotnet_library_license.txt",
  8879. "lib/MonoAndroid10/_._",
  8880. "lib/MonoTouch10/_._",
  8881. "lib/net46/System.Threading.ThreadPool.dll",
  8882. "lib/netcore50/_._",
  8883. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8884. "lib/xamarinios10/_._",
  8885. "lib/xamarinmac20/_._",
  8886. "lib/xamarintvos10/_._",
  8887. "lib/xamarinwatchos10/_._",
  8888. "ref/MonoAndroid10/_._",
  8889. "ref/MonoTouch10/_._",
  8890. "ref/net46/System.Threading.ThreadPool.dll",
  8891. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8892. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8893. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8894. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8895. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8896. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8897. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8898. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8899. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8900. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8901. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8902. "ref/xamarinios10/_._",
  8903. "ref/xamarinmac20/_._",
  8904. "ref/xamarintvos10/_._",
  8905. "ref/xamarinwatchos10/_._",
  8906. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8907. "system.threading.threadpool.nuspec"
  8908. ]
  8909. },
  8910. "System.Threading.Timer/4.3.0": {
  8911. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8912. "type": "package",
  8913. "path": "system.threading.timer/4.3.0",
  8914. "files": [
  8915. ".nupkg.metadata",
  8916. ".signature.p7s",
  8917. "ThirdPartyNotices.txt",
  8918. "dotnet_library_license.txt",
  8919. "lib/MonoAndroid10/_._",
  8920. "lib/MonoTouch10/_._",
  8921. "lib/net451/_._",
  8922. "lib/portable-net451+win81+wpa81/_._",
  8923. "lib/win81/_._",
  8924. "lib/wpa81/_._",
  8925. "lib/xamarinios10/_._",
  8926. "lib/xamarinmac20/_._",
  8927. "lib/xamarintvos10/_._",
  8928. "lib/xamarinwatchos10/_._",
  8929. "ref/MonoAndroid10/_._",
  8930. "ref/MonoTouch10/_._",
  8931. "ref/net451/_._",
  8932. "ref/netcore50/System.Threading.Timer.dll",
  8933. "ref/netcore50/System.Threading.Timer.xml",
  8934. "ref/netcore50/de/System.Threading.Timer.xml",
  8935. "ref/netcore50/es/System.Threading.Timer.xml",
  8936. "ref/netcore50/fr/System.Threading.Timer.xml",
  8937. "ref/netcore50/it/System.Threading.Timer.xml",
  8938. "ref/netcore50/ja/System.Threading.Timer.xml",
  8939. "ref/netcore50/ko/System.Threading.Timer.xml",
  8940. "ref/netcore50/ru/System.Threading.Timer.xml",
  8941. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8942. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8943. "ref/netstandard1.2/System.Threading.Timer.dll",
  8944. "ref/netstandard1.2/System.Threading.Timer.xml",
  8945. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8946. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8947. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8948. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8949. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8950. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8951. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8952. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8953. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8954. "ref/portable-net451+win81+wpa81/_._",
  8955. "ref/win81/_._",
  8956. "ref/wpa81/_._",
  8957. "ref/xamarinios10/_._",
  8958. "ref/xamarinmac20/_._",
  8959. "ref/xamarintvos10/_._",
  8960. "ref/xamarinwatchos10/_._",
  8961. "system.threading.timer.4.3.0.nupkg.sha512",
  8962. "system.threading.timer.nuspec"
  8963. ]
  8964. },
  8965. "System.Windows.Extensions/4.7.0": {
  8966. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8967. "type": "package",
  8968. "path": "system.windows.extensions/4.7.0",
  8969. "files": [
  8970. ".nupkg.metadata",
  8971. ".signature.p7s",
  8972. "LICENSE.TXT",
  8973. "THIRD-PARTY-NOTICES.TXT",
  8974. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8975. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8976. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8977. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8978. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8979. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8980. "system.windows.extensions.4.7.0.nupkg.sha512",
  8981. "system.windows.extensions.nuspec",
  8982. "useSharedDesignerContext.txt",
  8983. "version.txt"
  8984. ]
  8985. },
  8986. "System.Xml.ReaderWriter/4.3.0": {
  8987. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8988. "type": "package",
  8989. "path": "system.xml.readerwriter/4.3.0",
  8990. "files": [
  8991. ".nupkg.metadata",
  8992. ".signature.p7s",
  8993. "ThirdPartyNotices.txt",
  8994. "dotnet_library_license.txt",
  8995. "lib/MonoAndroid10/_._",
  8996. "lib/MonoTouch10/_._",
  8997. "lib/net45/_._",
  8998. "lib/net46/System.Xml.ReaderWriter.dll",
  8999. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9000. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9001. "lib/portable-net45+win8+wp8+wpa81/_._",
  9002. "lib/win8/_._",
  9003. "lib/wp80/_._",
  9004. "lib/wpa81/_._",
  9005. "lib/xamarinios10/_._",
  9006. "lib/xamarinmac20/_._",
  9007. "lib/xamarintvos10/_._",
  9008. "lib/xamarinwatchos10/_._",
  9009. "ref/MonoAndroid10/_._",
  9010. "ref/MonoTouch10/_._",
  9011. "ref/net45/_._",
  9012. "ref/net46/System.Xml.ReaderWriter.dll",
  9013. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9014. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9015. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9016. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9017. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9018. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9019. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9020. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9021. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9022. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9023. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9024. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9025. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9026. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9027. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9028. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9029. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9030. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9031. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9032. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9033. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9034. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9035. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9036. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9037. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9038. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9039. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9040. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9041. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9042. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9043. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9044. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9045. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9046. "ref/portable-net45+win8+wp8+wpa81/_._",
  9047. "ref/win8/_._",
  9048. "ref/wp80/_._",
  9049. "ref/wpa81/_._",
  9050. "ref/xamarinios10/_._",
  9051. "ref/xamarinmac20/_._",
  9052. "ref/xamarintvos10/_._",
  9053. "ref/xamarinwatchos10/_._",
  9054. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9055. "system.xml.readerwriter.nuspec"
  9056. ]
  9057. },
  9058. "System.Xml.XDocument/4.3.0": {
  9059. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9060. "type": "package",
  9061. "path": "system.xml.xdocument/4.3.0",
  9062. "files": [
  9063. ".nupkg.metadata",
  9064. ".signature.p7s",
  9065. "ThirdPartyNotices.txt",
  9066. "dotnet_library_license.txt",
  9067. "lib/MonoAndroid10/_._",
  9068. "lib/MonoTouch10/_._",
  9069. "lib/net45/_._",
  9070. "lib/netcore50/System.Xml.XDocument.dll",
  9071. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9072. "lib/portable-net45+win8+wp8+wpa81/_._",
  9073. "lib/win8/_._",
  9074. "lib/wp80/_._",
  9075. "lib/wpa81/_._",
  9076. "lib/xamarinios10/_._",
  9077. "lib/xamarinmac20/_._",
  9078. "lib/xamarintvos10/_._",
  9079. "lib/xamarinwatchos10/_._",
  9080. "ref/MonoAndroid10/_._",
  9081. "ref/MonoTouch10/_._",
  9082. "ref/net45/_._",
  9083. "ref/netcore50/System.Xml.XDocument.dll",
  9084. "ref/netcore50/System.Xml.XDocument.xml",
  9085. "ref/netcore50/de/System.Xml.XDocument.xml",
  9086. "ref/netcore50/es/System.Xml.XDocument.xml",
  9087. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9088. "ref/netcore50/it/System.Xml.XDocument.xml",
  9089. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9090. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9091. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9092. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9093. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9094. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9095. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9096. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9097. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9098. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9099. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9100. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9101. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9102. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9103. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9104. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9105. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9106. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9107. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9108. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9109. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9110. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9111. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9112. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9113. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9114. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9115. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9116. "ref/portable-net45+win8+wp8+wpa81/_._",
  9117. "ref/win8/_._",
  9118. "ref/wp80/_._",
  9119. "ref/wpa81/_._",
  9120. "ref/xamarinios10/_._",
  9121. "ref/xamarinmac20/_._",
  9122. "ref/xamarintvos10/_._",
  9123. "ref/xamarinwatchos10/_._",
  9124. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9125. "system.xml.xdocument.nuspec"
  9126. ]
  9127. },
  9128. "ZXing.Net/0.16.9": {
  9129. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9130. "type": "package",
  9131. "path": "zxing.net/0.16.9",
  9132. "files": [
  9133. ".nupkg.metadata",
  9134. ".signature.p7s",
  9135. "lib/native/zxing.XML",
  9136. "lib/native/zxing.pri",
  9137. "lib/native/zxing.winmd",
  9138. "lib/net20-cf/zxing.ce2.0.dll",
  9139. "lib/net20-cf/zxing.ce2.0.xml",
  9140. "lib/net20/zxing.XML",
  9141. "lib/net20/zxing.dll",
  9142. "lib/net35-cf/zxing.ce3.5.dll",
  9143. "lib/net35-cf/zxing.ce3.5.xml",
  9144. "lib/net35/zxing.XML",
  9145. "lib/net35/zxing.dll",
  9146. "lib/net40/zxing.XML",
  9147. "lib/net40/zxing.dll",
  9148. "lib/net40/zxing.presentation.XML",
  9149. "lib/net40/zxing.presentation.dll",
  9150. "lib/net45/zxing.XML",
  9151. "lib/net45/zxing.dll",
  9152. "lib/net45/zxing.presentation.XML",
  9153. "lib/net45/zxing.presentation.dll",
  9154. "lib/net461/zxing.XML",
  9155. "lib/net461/zxing.dll",
  9156. "lib/net461/zxing.presentation.XML",
  9157. "lib/net461/zxing.presentation.dll",
  9158. "lib/net47/zxing.XML",
  9159. "lib/net47/zxing.dll",
  9160. "lib/net47/zxing.presentation.XML",
  9161. "lib/net47/zxing.presentation.dll",
  9162. "lib/net48/zxing.XML",
  9163. "lib/net48/zxing.dll",
  9164. "lib/net48/zxing.presentation.XML",
  9165. "lib/net48/zxing.presentation.dll",
  9166. "lib/net5.0/zxing.XML",
  9167. "lib/net5.0/zxing.dll",
  9168. "lib/net6.0/zxing.XML",
  9169. "lib/net6.0/zxing.dll",
  9170. "lib/net7.0/zxing.XML",
  9171. "lib/net7.0/zxing.dll",
  9172. "lib/netcoreapp3.0/zxing.dll",
  9173. "lib/netcoreapp3.0/zxing.xml",
  9174. "lib/netcoreapp3.1/zxing.dll",
  9175. "lib/netcoreapp3.1/zxing.xml",
  9176. "lib/netstandard1.0/zxing.dll",
  9177. "lib/netstandard1.0/zxing.xml",
  9178. "lib/netstandard1.1/zxing.dll",
  9179. "lib/netstandard1.1/zxing.xml",
  9180. "lib/netstandard1.3/zxing.dll",
  9181. "lib/netstandard1.3/zxing.xml",
  9182. "lib/netstandard2.0/zxing.dll",
  9183. "lib/netstandard2.0/zxing.xml",
  9184. "lib/netstandard2.1/zxing.dll",
  9185. "lib/netstandard2.1/zxing.xml",
  9186. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9187. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9188. "lib/sl3-wp/zxing.wp7.0.XML",
  9189. "lib/sl3-wp/zxing.wp7.0.dll",
  9190. "lib/sl4-wp71/zxing.wp7.1.XML",
  9191. "lib/sl4-wp71/zxing.wp7.1.dll",
  9192. "lib/sl4/zxing.sl4.XML",
  9193. "lib/sl4/zxing.sl4.dll",
  9194. "lib/sl5/zxing.sl5.XML",
  9195. "lib/sl5/zxing.sl5.dll",
  9196. "lib/uap10/zxing.dll",
  9197. "lib/uap10/zxing.pri",
  9198. "lib/uap10/zxing.xml",
  9199. "lib/windows8-managed/zxing.winrt.XML",
  9200. "lib/windows8-managed/zxing.winrt.dll",
  9201. "lib/windows8/zxing.XML",
  9202. "lib/windows8/zxing.pri",
  9203. "lib/windows8/zxing.winmd",
  9204. "lib/wp8/zxing.wp8.0.XML",
  9205. "lib/wp8/zxing.wp8.0.dll",
  9206. "logo.jpg",
  9207. "zxing.net.0.16.9.nupkg.sha512",
  9208. "zxing.net.nuspec"
  9209. ]
  9210. },
  9211. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9212. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9213. "type": "package",
  9214. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9215. "files": [
  9216. ".nupkg.metadata",
  9217. ".signature.p7s",
  9218. "lib/net472/ZXing.ImageSharp.V2.dll",
  9219. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9220. "lib/net472/ZXing.ImageSharp.V2.xml",
  9221. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9222. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9223. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9224. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9225. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9226. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9227. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9228. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9229. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9230. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9231. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9232. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9233. "logo.jpg",
  9234. "readme.md",
  9235. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9236. "zxing.net.bindings.imagesharp.v2.nuspec"
  9237. ]
  9238. },
  9239. "Ropin.Core.Common/1.0.0": {
  9240. "type": "project",
  9241. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9242. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9243. },
  9244. "Ropin.Inspection.Common/1.0.0": {
  9245. "type": "project",
  9246. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9247. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9248. },
  9249. "Ropin.Inspection.Model/1.0.0": {
  9250. "type": "project",
  9251. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9252. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9253. },
  9254. "Ropin.Inspection.Repository/1.0.0": {
  9255. "type": "project",
  9256. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9257. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9258. }
  9259. },
  9260. "projectFileDependencyGroups": {
  9261. "net5.0": [
  9262. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  9263. "FBoxClientDriver >= 1.2.0",
  9264. "FBoxClientDriver.Contract >= 1.2.0",
  9265. "InfluxData.Net >= 8.0.1",
  9266. "InitQ >= 1.0.0.14",
  9267. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9268. "Newtonsoft.Json >= 13.0.3",
  9269. "RabbitMQ.Client >= 6.8.1",
  9270. "Ropin.Core.Common >= 1.0.0",
  9271. "Ropin.Inspection.Common >= 1.0.0",
  9272. "Ropin.Inspection.Model >= 1.0.0",
  9273. "Ropin.Inspection.Repository >= 1.0.0",
  9274. "Swashbuckle.AspNetCore >= 5.6.3",
  9275. "log4net >= 2.0.17"
  9276. ]
  9277. },
  9278. "packageFolders": {
  9279. "D:\\.nuget\\packages": {},
  9280. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9281. },
  9282. "project": {
  9283. "version": "1.0.0",
  9284. "restore": {
  9285. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.LedgeService1\\Ropin.Environmentally.LedgeService1.csproj",
  9286. "projectName": "Ropin.Environmentally.LedgeService1",
  9287. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.LedgeService1\\Ropin.Environmentally.LedgeService1.csproj",
  9288. "packagesPath": "D:\\.nuget\\packages",
  9289. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.LedgeService1\\obj\\",
  9290. "projectStyle": "PackageReference",
  9291. "fallbackFolders": [
  9292. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9293. ],
  9294. "configFilePaths": [
  9295. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9296. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9297. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9298. ],
  9299. "originalTargetFrameworks": [
  9300. "net5.0"
  9301. ],
  9302. "sources": {
  9303. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9304. "C:\\Program Files\\dotnet\\library-packs": {},
  9305. "https://api.nuget.org/v3/index.json": {}
  9306. },
  9307. "frameworks": {
  9308. "net5.0": {
  9309. "targetAlias": "net5.0",
  9310. "projectReferences": {
  9311. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9312. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9313. },
  9314. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9315. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9316. },
  9317. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9318. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9319. },
  9320. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9321. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9322. }
  9323. }
  9324. }
  9325. },
  9326. "warningProperties": {
  9327. "warnAsError": [
  9328. "NU1605"
  9329. ]
  9330. }
  9331. },
  9332. "frameworks": {
  9333. "net5.0": {
  9334. "targetAlias": "net5.0",
  9335. "dependencies": {
  9336. "Autofac.Extensions.DependencyInjection": {
  9337. "target": "Package",
  9338. "version": "[7.1.0, )"
  9339. },
  9340. "FBoxClientDriver": {
  9341. "target": "Package",
  9342. "version": "[1.2.0, )"
  9343. },
  9344. "FBoxClientDriver.Contract": {
  9345. "target": "Package",
  9346. "version": "[1.2.0, )"
  9347. },
  9348. "InfluxData.Net": {
  9349. "target": "Package",
  9350. "version": "[8.0.1, )"
  9351. },
  9352. "InitQ": {
  9353. "target": "Package",
  9354. "version": "[1.0.0.14, )"
  9355. },
  9356. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9357. "target": "Package",
  9358. "version": "[1.17.2, )"
  9359. },
  9360. "Newtonsoft.Json": {
  9361. "target": "Package",
  9362. "version": "[13.0.3, )"
  9363. },
  9364. "RabbitMQ.Client": {
  9365. "target": "Package",
  9366. "version": "[6.8.1, )"
  9367. },
  9368. "Swashbuckle.AspNetCore": {
  9369. "target": "Package",
  9370. "version": "[5.6.3, )"
  9371. },
  9372. "log4net": {
  9373. "target": "Package",
  9374. "version": "[2.0.17, )"
  9375. }
  9376. },
  9377. "imports": [
  9378. "net461",
  9379. "net462",
  9380. "net47",
  9381. "net471",
  9382. "net472",
  9383. "net48",
  9384. "net481"
  9385. ],
  9386. "assetTargetFallback": true,
  9387. "warn": true,
  9388. "frameworkReferences": {
  9389. "Microsoft.AspNetCore.App": {
  9390. "privateAssets": "none"
  9391. },
  9392. "Microsoft.NETCore.App": {
  9393. "privateAssets": "all"
  9394. }
  9395. },
  9396. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9397. }
  9398. }
  9399. }
  9400. }