project.assets.json 365 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/net5.0/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/net5.0/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extras.DynamicProxy/6.0.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Castle.Core": "4.4.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "AutoMapper/10.1.1": {
  52. "type": "package",
  53. "dependencies": {
  54. "Microsoft.CSharp": "4.7.0",
  55. "System.Reflection.Emit": "4.7.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.0/AutoMapper.dll": {
  59. "related": ".xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.0/AutoMapper.dll": {
  64. "related": ".xml"
  65. }
  66. }
  67. },
  68. "BouncyCastle.NetCore/1.8.5": {
  69. "type": "package",
  70. "compile": {
  71. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  72. "related": ".xml"
  73. }
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  77. "related": ".xml"
  78. }
  79. }
  80. },
  81. "Castle.Core/4.4.0": {
  82. "type": "package",
  83. "dependencies": {
  84. "NETStandard.Library": "1.6.1",
  85. "System.Collections.Specialized": "4.3.0",
  86. "System.ComponentModel": "4.3.0",
  87. "System.ComponentModel.TypeConverter": "4.3.0",
  88. "System.Diagnostics.TraceSource": "4.3.0",
  89. "System.Dynamic.Runtime": "4.3.0",
  90. "System.Reflection": "4.3.0",
  91. "System.Reflection.Emit": "4.3.0",
  92. "System.Reflection.TypeExtensions": "4.3.0",
  93. "System.Xml.XmlDocument": "4.3.0"
  94. },
  95. "compile": {
  96. "lib/netstandard1.5/Castle.Core.dll": {
  97. "related": ".xml"
  98. }
  99. },
  100. "runtime": {
  101. "lib/netstandard1.5/Castle.Core.dll": {
  102. "related": ".xml"
  103. }
  104. }
  105. },
  106. "Coravel/4.2.1": {
  107. "type": "package",
  108. "dependencies": {
  109. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  110. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  111. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/Coravel.dll": {
  115. "related": ".xml"
  116. }
  117. },
  118. "runtime": {
  119. "lib/netstandard2.0/Coravel.dll": {
  120. "related": ".xml"
  121. }
  122. }
  123. },
  124. "FluentEmail.Core/3.0.2": {
  125. "type": "package",
  126. "dependencies": {
  127. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  128. },
  129. "compile": {
  130. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  131. },
  132. "runtime": {
  133. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  134. }
  135. },
  136. "FluentEmail.Smtp/3.0.2": {
  137. "type": "package",
  138. "dependencies": {
  139. "FluentEmail.Core": "3.0.2"
  140. },
  141. "compile": {
  142. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  146. }
  147. },
  148. "Google.Protobuf/3.11.4": {
  149. "type": "package",
  150. "dependencies": {
  151. "System.Memory": "4.5.2"
  152. },
  153. "compile": {
  154. "lib/netstandard2.0/Google.Protobuf.dll": {
  155. "related": ".pdb;.xml"
  156. }
  157. },
  158. "runtime": {
  159. "lib/netstandard2.0/Google.Protobuf.dll": {
  160. "related": ".pdb;.xml"
  161. }
  162. }
  163. },
  164. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  165. "type": "package",
  166. "dependencies": {
  167. "AdvancedStringBuilder": "0.1.0",
  168. "JavaScriptEngineSwitcher.Core": "3.21.0"
  169. },
  170. "compile": {
  171. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  172. "related": ".xml"
  173. }
  174. },
  175. "runtime": {
  176. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  177. "related": ".xml"
  178. }
  179. },
  180. "resource": {
  181. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  182. "locale": "ru-RU"
  183. }
  184. }
  185. },
  186. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  187. "type": "package",
  188. "runtimeTargets": {
  189. "runtimes/linux-x64/native/libChakraCore.so": {
  190. "assetType": "native",
  191. "rid": "linux-x64"
  192. }
  193. }
  194. },
  195. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  196. "type": "package",
  197. "build": {
  198. "build/_._": {}
  199. },
  200. "runtimeTargets": {
  201. "runtimes/win-x64/native/ChakraCore.dll": {
  202. "assetType": "native",
  203. "rid": "win-x64"
  204. }
  205. }
  206. },
  207. "JavaScriptEngineSwitcher.Core/3.21.0": {
  208. "type": "package",
  209. "dependencies": {
  210. "AdvancedStringBuilder": "0.1.0"
  211. },
  212. "compile": {
  213. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  214. "related": ".xml"
  215. }
  216. },
  217. "runtime": {
  218. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  219. "related": ".xml"
  220. }
  221. },
  222. "resource": {
  223. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  224. "locale": "ru-RU"
  225. }
  226. }
  227. },
  228. "K4os.Compression.LZ4/1.1.11": {
  229. "type": "package",
  230. "dependencies": {
  231. "System.Memory": "4.5.3"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "K4os.Compression.LZ4.Streams/1.1.11": {
  245. "type": "package",
  246. "dependencies": {
  247. "K4os.Compression.LZ4": "1.1.11",
  248. "K4os.Hash.xxHash": "1.0.6"
  249. },
  250. "compile": {
  251. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  252. "related": ".xml"
  253. }
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  257. "related": ".xml"
  258. }
  259. }
  260. },
  261. "K4os.Hash.xxHash/1.0.6": {
  262. "type": "package",
  263. "dependencies": {
  264. "System.Memory": "4.5.3"
  265. },
  266. "compile": {
  267. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  268. "related": ".xml"
  269. }
  270. },
  271. "runtime": {
  272. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  273. "related": ".xml"
  274. }
  275. }
  276. },
  277. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  278. "type": "package",
  279. "dependencies": {
  280. "Microsoft.EntityFrameworkCore": "5.0.0"
  281. },
  282. "compile": {
  283. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  284. "related": ".xml"
  285. }
  286. },
  287. "runtime": {
  288. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  289. "related": ".xml"
  290. }
  291. }
  292. },
  293. "log4net/2.0.17": {
  294. "type": "package",
  295. "dependencies": {
  296. "System.Configuration.ConfigurationManager": "4.5.0"
  297. },
  298. "compile": {
  299. "lib/netstandard2.0/log4net.dll": {
  300. "related": ".xml"
  301. }
  302. },
  303. "runtime": {
  304. "lib/netstandard2.0/log4net.dll": {
  305. "related": ".xml"
  306. }
  307. }
  308. },
  309. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  310. "type": "package",
  311. "dependencies": {
  312. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  313. "System.Text.Encodings.Web": "4.5.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  322. "related": ".xml"
  323. }
  324. }
  325. },
  326. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  327. "type": "package",
  328. "dependencies": {
  329. "Microsoft.Extensions.Primitives": "5.0.0",
  330. "System.IO.Pipelines": "5.0.0"
  331. },
  332. "compile": {
  333. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  334. "related": ".xml"
  335. }
  336. },
  337. "runtime": {
  338. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  339. "related": ".xml"
  340. }
  341. }
  342. },
  343. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  344. "type": "package",
  345. "dependencies": {
  346. "Microsoft.Extensions.Logging.Console": "3.1.30",
  347. "Newtonsoft.Json": "13.0.1"
  348. },
  349. "compile": {
  350. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  351. },
  352. "runtime": {
  353. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  354. },
  355. "frameworkReferences": [
  356. "Microsoft.AspNetCore.App"
  357. ]
  358. },
  359. "Microsoft.CSharp/4.7.0": {
  360. "type": "package",
  361. "compile": {
  362. "ref/netcoreapp2.0/_._": {}
  363. },
  364. "runtime": {
  365. "lib/netcoreapp2.0/_._": {}
  366. }
  367. },
  368. "Microsoft.EntityFrameworkCore/5.0.0": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  372. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  373. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  374. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  375. "Microsoft.Extensions.Logging": "5.0.0",
  376. "System.Collections.Immutable": "5.0.0",
  377. "System.ComponentModel.Annotations": "5.0.0",
  378. "System.Diagnostics.DiagnosticSource": "5.0.0"
  379. },
  380. "compile": {
  381. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  382. "related": ".xml"
  383. }
  384. },
  385. "runtime": {
  386. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  387. "related": ".xml"
  388. }
  389. }
  390. },
  391. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  392. "type": "package",
  393. "compile": {
  394. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  395. "related": ".xml"
  396. }
  397. },
  398. "runtime": {
  399. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  400. "related": ".xml"
  401. }
  402. }
  403. },
  404. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  405. "type": "package",
  406. "compile": {
  407. "lib/netstandard2.0/_._": {}
  408. },
  409. "runtime": {
  410. "lib/netstandard2.0/_._": {}
  411. }
  412. },
  413. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  414. "type": "package",
  415. "dependencies": {
  416. "Microsoft.EntityFrameworkCore": "5.0.0",
  417. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  418. },
  419. "compile": {
  420. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  421. "related": ".xml"
  422. }
  423. },
  424. "runtime": {
  425. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  426. "related": ".xml"
  427. }
  428. }
  429. },
  430. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  431. "type": "package",
  432. "dependencies": {
  433. "Microsoft.Extensions.Primitives": "5.0.0"
  434. },
  435. "compile": {
  436. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  437. "related": ".xml"
  438. }
  439. },
  440. "runtime": {
  441. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  442. "related": ".xml"
  443. }
  444. }
  445. },
  446. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  447. "type": "package",
  448. "dependencies": {
  449. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  450. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  451. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  452. "Microsoft.Extensions.Options": "5.0.0",
  453. "Microsoft.Extensions.Primitives": "5.0.0"
  454. },
  455. "compile": {
  456. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  457. "related": ".xml"
  458. }
  459. },
  460. "runtime": {
  461. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  462. "related": ".xml"
  463. }
  464. }
  465. },
  466. "Microsoft.Extensions.Configuration/5.0.0": {
  467. "type": "package",
  468. "dependencies": {
  469. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  470. "Microsoft.Extensions.Primitives": "5.0.0"
  471. },
  472. "compile": {
  473. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.Extensions.Primitives": "5.0.0"
  487. },
  488. "compile": {
  489. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  490. "related": ".xml"
  491. }
  492. },
  493. "runtime": {
  494. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  495. "related": ".xml"
  496. }
  497. }
  498. },
  499. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  500. "type": "package",
  501. "dependencies": {
  502. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  503. },
  504. "compile": {
  505. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  506. "related": ".xml"
  507. }
  508. },
  509. "runtime": {
  510. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  511. "related": ".xml"
  512. }
  513. }
  514. },
  515. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  516. "type": "package",
  517. "dependencies": {
  518. "Microsoft.Extensions.Configuration": "5.0.0",
  519. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  520. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  521. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  522. "Microsoft.Extensions.Primitives": "5.0.0"
  523. },
  524. "compile": {
  525. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  526. "related": ".xml"
  527. }
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  531. "related": ".xml"
  532. }
  533. }
  534. },
  535. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  536. "type": "package",
  537. "dependencies": {
  538. "Microsoft.Extensions.Configuration": "5.0.0",
  539. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  540. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  541. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  542. },
  543. "compile": {
  544. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  545. "related": ".xml"
  546. }
  547. },
  548. "runtime": {
  549. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  550. "related": ".xml"
  551. }
  552. }
  553. },
  554. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  555. "type": "package",
  556. "dependencies": {
  557. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  558. },
  559. "compile": {
  560. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  561. "related": ".xml"
  562. }
  563. },
  564. "runtime": {
  565. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  566. "related": ".xml"
  567. }
  568. }
  569. },
  570. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  571. "type": "package",
  572. "compile": {
  573. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  574. "related": ".xml"
  575. }
  576. },
  577. "runtime": {
  578. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  579. "related": ".xml"
  580. }
  581. }
  582. },
  583. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  584. "type": "package",
  585. "dependencies": {
  586. "Microsoft.Extensions.Primitives": "5.0.0"
  587. },
  588. "compile": {
  589. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  590. "related": ".xml"
  591. }
  592. },
  593. "runtime": {
  594. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  595. "related": ".xml"
  596. }
  597. }
  598. },
  599. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  603. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  604. "Microsoft.Extensions.Primitives": "5.0.0"
  605. },
  606. "compile": {
  607. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  608. "related": ".xml"
  609. }
  610. },
  611. "runtime": {
  612. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  613. "related": ".xml"
  614. }
  615. }
  616. },
  617. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  618. "type": "package",
  619. "compile": {
  620. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "runtime": {
  625. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  626. "related": ".xml"
  627. }
  628. }
  629. },
  630. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  631. "type": "package",
  632. "dependencies": {
  633. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  634. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  635. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  636. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  637. },
  638. "compile": {
  639. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "runtime": {
  644. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  645. "related": ".xml"
  646. }
  647. }
  648. },
  649. "Microsoft.Extensions.Http/5.0.0": {
  650. "type": "package",
  651. "dependencies": {
  652. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  653. "Microsoft.Extensions.Logging": "5.0.0",
  654. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  655. "Microsoft.Extensions.Options": "5.0.0"
  656. },
  657. "compile": {
  658. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  659. "related": ".xml"
  660. }
  661. },
  662. "runtime": {
  663. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  664. "related": ".xml"
  665. }
  666. }
  667. },
  668. "Microsoft.Extensions.Logging/5.0.0": {
  669. "type": "package",
  670. "dependencies": {
  671. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  672. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  673. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  674. "Microsoft.Extensions.Options": "5.0.0"
  675. },
  676. "compile": {
  677. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  678. "related": ".xml"
  679. }
  680. },
  681. "runtime": {
  682. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  683. "related": ".xml"
  684. }
  685. }
  686. },
  687. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  688. "type": "package",
  689. "compile": {
  690. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  691. "related": ".xml"
  692. }
  693. },
  694. "runtime": {
  695. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  696. "related": ".xml"
  697. }
  698. }
  699. },
  700. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.Extensions.Logging": "3.1.30",
  704. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  705. },
  706. "compile": {
  707. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  708. "related": ".xml"
  709. }
  710. },
  711. "runtime": {
  712. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  713. "related": ".xml"
  714. }
  715. }
  716. },
  717. "Microsoft.Extensions.Logging.Console/3.1.30": {
  718. "type": "package",
  719. "dependencies": {
  720. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  721. "Microsoft.Extensions.Logging": "3.1.30",
  722. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  723. },
  724. "compile": {
  725. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  726. "related": ".xml"
  727. }
  728. },
  729. "runtime": {
  730. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  731. "related": ".xml"
  732. }
  733. }
  734. },
  735. "Microsoft.Extensions.Options/5.0.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  739. "Microsoft.Extensions.Primitives": "5.0.0"
  740. },
  741. "compile": {
  742. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  743. "related": ".xml"
  744. }
  745. },
  746. "runtime": {
  747. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  748. "related": ".xml"
  749. }
  750. }
  751. },
  752. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  753. "type": "package",
  754. "dependencies": {
  755. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  756. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  757. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  758. "Microsoft.Extensions.Options": "3.1.30"
  759. },
  760. "compile": {
  761. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  762. "related": ".xml"
  763. }
  764. },
  765. "runtime": {
  766. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  767. "related": ".xml"
  768. }
  769. }
  770. },
  771. "Microsoft.Extensions.Primitives/5.0.0": {
  772. "type": "package",
  773. "compile": {
  774. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  775. "related": ".xml"
  776. }
  777. },
  778. "runtime": {
  779. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  780. "related": ".xml"
  781. }
  782. }
  783. },
  784. "Microsoft.NETCore.Platforms/5.0.0": {
  785. "type": "package",
  786. "compile": {
  787. "lib/netstandard1.0/_._": {}
  788. },
  789. "runtime": {
  790. "lib/netstandard1.0/_._": {}
  791. }
  792. },
  793. "Microsoft.NETCore.Targets/1.1.0": {
  794. "type": "package",
  795. "compile": {
  796. "lib/netstandard1.0/_._": {}
  797. },
  798. "runtime": {
  799. "lib/netstandard1.0/_._": {}
  800. }
  801. },
  802. "Microsoft.Win32.Primitives/4.3.0": {
  803. "type": "package",
  804. "dependencies": {
  805. "Microsoft.NETCore.Platforms": "1.1.0",
  806. "Microsoft.NETCore.Targets": "1.1.0",
  807. "System.Runtime": "4.3.0"
  808. },
  809. "compile": {
  810. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  811. "related": ".xml"
  812. }
  813. }
  814. },
  815. "Microsoft.Win32.SystemEvents/5.0.0": {
  816. "type": "package",
  817. "dependencies": {
  818. "Microsoft.NETCore.Platforms": "5.0.0"
  819. },
  820. "compile": {
  821. "ref/netstandard2.0/_._": {
  822. "related": ".xml"
  823. }
  824. },
  825. "runtime": {
  826. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  827. "related": ".xml"
  828. }
  829. },
  830. "runtimeTargets": {
  831. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  832. "assetType": "runtime",
  833. "rid": "win"
  834. }
  835. }
  836. },
  837. "MySql.Data/8.0.23": {
  838. "type": "package",
  839. "dependencies": {
  840. "BouncyCastle.NetCore": "1.8.5",
  841. "Google.Protobuf": "3.11.4",
  842. "K4os.Compression.LZ4": "1.1.11",
  843. "K4os.Compression.LZ4.Streams": "1.1.11",
  844. "K4os.Hash.xxHash": "1.0.6",
  845. "SSH.NET": "2020.0.0-beta1",
  846. "System.Buffers": "4.5.1",
  847. "System.Configuration.ConfigurationManager": "4.4.1",
  848. "System.Security.Permissions": "4.7.0",
  849. "System.Text.Encoding.CodePages": "4.4.0"
  850. },
  851. "compile": {
  852. "lib/net5.0/MySql.Data.dll": {
  853. "related": ".xml"
  854. },
  855. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  856. "lib/net5.0/Zstandard.Net.dll": {}
  857. },
  858. "runtime": {
  859. "lib/net5.0/MySql.Data.dll": {
  860. "related": ".xml"
  861. },
  862. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  863. "lib/net5.0/Zstandard.Net.dll": {}
  864. }
  865. },
  866. "MySqlConnector/1.1.0": {
  867. "type": "package",
  868. "compile": {
  869. "lib/net5.0/MySqlConnector.dll": {
  870. "related": ".xml"
  871. }
  872. },
  873. "runtime": {
  874. "lib/net5.0/MySqlConnector.dll": {
  875. "related": ".xml"
  876. }
  877. }
  878. },
  879. "NETStandard.Library/1.6.1": {
  880. "type": "package",
  881. "dependencies": {
  882. "Microsoft.NETCore.Platforms": "1.1.0",
  883. "Microsoft.Win32.Primitives": "4.3.0",
  884. "System.AppContext": "4.3.0",
  885. "System.Collections": "4.3.0",
  886. "System.Collections.Concurrent": "4.3.0",
  887. "System.Console": "4.3.0",
  888. "System.Diagnostics.Debug": "4.3.0",
  889. "System.Diagnostics.Tools": "4.3.0",
  890. "System.Diagnostics.Tracing": "4.3.0",
  891. "System.Globalization": "4.3.0",
  892. "System.Globalization.Calendars": "4.3.0",
  893. "System.IO": "4.3.0",
  894. "System.IO.Compression": "4.3.0",
  895. "System.IO.Compression.ZipFile": "4.3.0",
  896. "System.IO.FileSystem": "4.3.0",
  897. "System.IO.FileSystem.Primitives": "4.3.0",
  898. "System.Linq": "4.3.0",
  899. "System.Linq.Expressions": "4.3.0",
  900. "System.Net.Http": "4.3.0",
  901. "System.Net.Primitives": "4.3.0",
  902. "System.Net.Sockets": "4.3.0",
  903. "System.ObjectModel": "4.3.0",
  904. "System.Reflection": "4.3.0",
  905. "System.Reflection.Extensions": "4.3.0",
  906. "System.Reflection.Primitives": "4.3.0",
  907. "System.Resources.ResourceManager": "4.3.0",
  908. "System.Runtime": "4.3.0",
  909. "System.Runtime.Extensions": "4.3.0",
  910. "System.Runtime.Handles": "4.3.0",
  911. "System.Runtime.InteropServices": "4.3.0",
  912. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  913. "System.Runtime.Numerics": "4.3.0",
  914. "System.Security.Cryptography.Algorithms": "4.3.0",
  915. "System.Security.Cryptography.Encoding": "4.3.0",
  916. "System.Security.Cryptography.Primitives": "4.3.0",
  917. "System.Security.Cryptography.X509Certificates": "4.3.0",
  918. "System.Text.Encoding": "4.3.0",
  919. "System.Text.Encoding.Extensions": "4.3.0",
  920. "System.Text.RegularExpressions": "4.3.0",
  921. "System.Threading": "4.3.0",
  922. "System.Threading.Tasks": "4.3.0",
  923. "System.Threading.Timer": "4.3.0",
  924. "System.Xml.ReaderWriter": "4.3.0",
  925. "System.Xml.XDocument": "4.3.0"
  926. }
  927. },
  928. "Newtonsoft.Json/13.0.1": {
  929. "type": "package",
  930. "compile": {
  931. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  932. "related": ".xml"
  933. }
  934. },
  935. "runtime": {
  936. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  937. "related": ".xml"
  938. }
  939. }
  940. },
  941. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  945. "MySqlConnector": "1.1.0"
  946. },
  947. "compile": {
  948. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  949. "related": ".xml"
  950. }
  951. },
  952. "runtime": {
  953. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  954. "related": ".xml"
  955. }
  956. }
  957. },
  958. "QRCoder/1.4.3": {
  959. "type": "package",
  960. "dependencies": {
  961. "System.Drawing.Common": "5.0.3"
  962. },
  963. "compile": {
  964. "lib/net5.0/QRCoder.dll": {}
  965. },
  966. "runtime": {
  967. "lib/net5.0/QRCoder.dll": {}
  968. }
  969. },
  970. "Quartz/3.3.3": {
  971. "type": "package",
  972. "dependencies": {
  973. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  974. "System.Configuration.ConfigurationManager": "4.7.0",
  975. "System.Diagnostics.DiagnosticSource": "4.7.1"
  976. },
  977. "compile": {
  978. "lib/netstandard2.0/Quartz.dll": {
  979. "related": ".xml"
  980. }
  981. },
  982. "runtime": {
  983. "lib/netstandard2.0/Quartz.dll": {
  984. "related": ".xml"
  985. }
  986. }
  987. },
  988. "RabbitMQ.Client/6.8.1": {
  989. "type": "package",
  990. "dependencies": {
  991. "System.Memory": "4.5.5",
  992. "System.Threading.Channels": "7.0.0"
  993. },
  994. "compile": {
  995. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  996. "related": ".xml"
  997. }
  998. },
  999. "runtime": {
  1000. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1001. "related": ".xml"
  1002. }
  1003. }
  1004. },
  1005. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1006. "type": "package",
  1007. "runtimeTargets": {
  1008. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1009. "assetType": "native",
  1010. "rid": "debian.8-x64"
  1011. }
  1012. }
  1013. },
  1014. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1015. "type": "package",
  1016. "runtimeTargets": {
  1017. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1018. "assetType": "native",
  1019. "rid": "fedora.23-x64"
  1020. }
  1021. }
  1022. },
  1023. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1024. "type": "package",
  1025. "runtimeTargets": {
  1026. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1027. "assetType": "native",
  1028. "rid": "fedora.24-x64"
  1029. }
  1030. }
  1031. },
  1032. "runtime.native.System/4.3.0": {
  1033. "type": "package",
  1034. "dependencies": {
  1035. "Microsoft.NETCore.Platforms": "1.1.0",
  1036. "Microsoft.NETCore.Targets": "1.1.0"
  1037. },
  1038. "compile": {
  1039. "lib/netstandard1.0/_._": {}
  1040. },
  1041. "runtime": {
  1042. "lib/netstandard1.0/_._": {}
  1043. }
  1044. },
  1045. "runtime.native.System.IO.Compression/4.3.0": {
  1046. "type": "package",
  1047. "dependencies": {
  1048. "Microsoft.NETCore.Platforms": "1.1.0",
  1049. "Microsoft.NETCore.Targets": "1.1.0"
  1050. },
  1051. "compile": {
  1052. "lib/netstandard1.0/_._": {}
  1053. },
  1054. "runtime": {
  1055. "lib/netstandard1.0/_._": {}
  1056. }
  1057. },
  1058. "runtime.native.System.Net.Http/4.3.0": {
  1059. "type": "package",
  1060. "dependencies": {
  1061. "Microsoft.NETCore.Platforms": "1.1.0",
  1062. "Microsoft.NETCore.Targets": "1.1.0"
  1063. },
  1064. "compile": {
  1065. "lib/netstandard1.0/_._": {}
  1066. },
  1067. "runtime": {
  1068. "lib/netstandard1.0/_._": {}
  1069. }
  1070. },
  1071. "runtime.native.System.Net.Security/4.3.0": {
  1072. "type": "package",
  1073. "dependencies": {
  1074. "Microsoft.NETCore.Platforms": "1.1.0",
  1075. "Microsoft.NETCore.Targets": "1.1.0"
  1076. },
  1077. "compile": {
  1078. "lib/netstandard1.0/_._": {}
  1079. },
  1080. "runtime": {
  1081. "lib/netstandard1.0/_._": {}
  1082. }
  1083. },
  1084. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1085. "type": "package",
  1086. "dependencies": {
  1087. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1088. },
  1089. "compile": {
  1090. "lib/netstandard1.0/_._": {}
  1091. },
  1092. "runtime": {
  1093. "lib/netstandard1.0/_._": {}
  1094. }
  1095. },
  1096. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1097. "type": "package",
  1098. "dependencies": {
  1099. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1100. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1101. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1102. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1103. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1104. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1105. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1106. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1107. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1108. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1109. },
  1110. "compile": {
  1111. "lib/netstandard1.0/_._": {}
  1112. },
  1113. "runtime": {
  1114. "lib/netstandard1.0/_._": {}
  1115. }
  1116. },
  1117. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1118. "type": "package",
  1119. "runtimeTargets": {
  1120. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1121. "assetType": "native",
  1122. "rid": "opensuse.13.2-x64"
  1123. }
  1124. }
  1125. },
  1126. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1127. "type": "package",
  1128. "runtimeTargets": {
  1129. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1130. "assetType": "native",
  1131. "rid": "opensuse.42.1-x64"
  1132. }
  1133. }
  1134. },
  1135. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1136. "type": "package",
  1137. "runtimeTargets": {
  1138. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1139. "assetType": "native",
  1140. "rid": "osx.10.10-x64"
  1141. }
  1142. }
  1143. },
  1144. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1145. "type": "package",
  1146. "runtimeTargets": {
  1147. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1148. "assetType": "native",
  1149. "rid": "osx.10.10-x64"
  1150. }
  1151. }
  1152. },
  1153. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1154. "type": "package",
  1155. "runtimeTargets": {
  1156. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1157. "assetType": "native",
  1158. "rid": "rhel.7-x64"
  1159. }
  1160. }
  1161. },
  1162. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1163. "type": "package",
  1164. "runtimeTargets": {
  1165. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1166. "assetType": "native",
  1167. "rid": "ubuntu.14.04-x64"
  1168. }
  1169. }
  1170. },
  1171. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1172. "type": "package",
  1173. "runtimeTargets": {
  1174. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1175. "assetType": "native",
  1176. "rid": "ubuntu.16.04-x64"
  1177. }
  1178. }
  1179. },
  1180. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1181. "type": "package",
  1182. "runtimeTargets": {
  1183. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1184. "assetType": "native",
  1185. "rid": "ubuntu.16.10-x64"
  1186. }
  1187. }
  1188. },
  1189. "SixLabors.ImageSharp/2.1.6": {
  1190. "type": "package",
  1191. "dependencies": {
  1192. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1193. "System.Text.Encoding.CodePages": "5.0.0"
  1194. },
  1195. "compile": {
  1196. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1197. "related": ".xml"
  1198. }
  1199. },
  1200. "runtime": {
  1201. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1202. "related": ".xml"
  1203. }
  1204. }
  1205. },
  1206. "SSH.NET/2020.0.0-beta1": {
  1207. "type": "package",
  1208. "dependencies": {
  1209. "SshNet.Security.Cryptography": "[1.3.0]"
  1210. },
  1211. "compile": {
  1212. "lib/netstandard2.0/Renci.SshNet.dll": {
  1213. "related": ".xml"
  1214. }
  1215. },
  1216. "runtime": {
  1217. "lib/netstandard2.0/Renci.SshNet.dll": {
  1218. "related": ".xml"
  1219. }
  1220. }
  1221. },
  1222. "SshNet.Security.Cryptography/1.3.0": {
  1223. "type": "package",
  1224. "compile": {
  1225. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1226. "related": ".xml"
  1227. }
  1228. },
  1229. "runtime": {
  1230. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1231. "related": ".xml"
  1232. }
  1233. }
  1234. },
  1235. "StackExchange.Redis/1.2.4": {
  1236. "type": "package",
  1237. "dependencies": {
  1238. "NETStandard.Library": "1.6.1",
  1239. "System.Collections": "4.3.0",
  1240. "System.Collections.Concurrent": "4.3.0",
  1241. "System.Collections.NonGeneric": "4.3.0",
  1242. "System.Diagnostics.Tools": "4.3.0",
  1243. "System.IO.Compression": "4.3.0",
  1244. "System.IO.FileSystem": "4.3.0",
  1245. "System.Linq": "4.3.0",
  1246. "System.Net.NameResolution": "4.3.0",
  1247. "System.Net.Security": "4.3.0",
  1248. "System.Net.Sockets": "4.3.0",
  1249. "System.Reflection.Emit": "4.3.0",
  1250. "System.Reflection.Emit.Lightweight": "4.3.0",
  1251. "System.Reflection.TypeExtensions": "4.3.0",
  1252. "System.Runtime.Extensions": "4.3.0",
  1253. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1254. "System.Security.Cryptography.Algorithms": "4.3.0",
  1255. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1256. "System.Text.RegularExpressions": "4.3.0",
  1257. "System.Threading": "4.3.0",
  1258. "System.Threading.Thread": "4.3.0",
  1259. "System.Threading.ThreadPool": "4.3.0",
  1260. "System.Threading.Timer": "4.3.0"
  1261. },
  1262. "compile": {
  1263. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1264. "related": ".xml"
  1265. }
  1266. },
  1267. "runtime": {
  1268. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1269. "related": ".xml"
  1270. }
  1271. }
  1272. },
  1273. "System.AppContext/4.3.0": {
  1274. "type": "package",
  1275. "dependencies": {
  1276. "System.Runtime": "4.3.0"
  1277. },
  1278. "compile": {
  1279. "ref/netstandard1.6/System.AppContext.dll": {
  1280. "related": ".xml"
  1281. }
  1282. },
  1283. "runtime": {
  1284. "lib/netstandard1.6/System.AppContext.dll": {}
  1285. }
  1286. },
  1287. "System.Buffers/4.5.1": {
  1288. "type": "package",
  1289. "compile": {
  1290. "ref/netcoreapp2.0/_._": {}
  1291. },
  1292. "runtime": {
  1293. "lib/netcoreapp2.0/_._": {}
  1294. }
  1295. },
  1296. "System.Collections/4.3.0": {
  1297. "type": "package",
  1298. "dependencies": {
  1299. "Microsoft.NETCore.Platforms": "1.1.0",
  1300. "Microsoft.NETCore.Targets": "1.1.0",
  1301. "System.Runtime": "4.3.0"
  1302. },
  1303. "compile": {
  1304. "ref/netstandard1.3/System.Collections.dll": {
  1305. "related": ".xml"
  1306. }
  1307. }
  1308. },
  1309. "System.Collections.Concurrent/4.3.0": {
  1310. "type": "package",
  1311. "dependencies": {
  1312. "System.Collections": "4.3.0",
  1313. "System.Diagnostics.Debug": "4.3.0",
  1314. "System.Diagnostics.Tracing": "4.3.0",
  1315. "System.Globalization": "4.3.0",
  1316. "System.Reflection": "4.3.0",
  1317. "System.Resources.ResourceManager": "4.3.0",
  1318. "System.Runtime": "4.3.0",
  1319. "System.Runtime.Extensions": "4.3.0",
  1320. "System.Threading": "4.3.0",
  1321. "System.Threading.Tasks": "4.3.0"
  1322. },
  1323. "compile": {
  1324. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1325. "related": ".xml"
  1326. }
  1327. },
  1328. "runtime": {
  1329. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1330. }
  1331. },
  1332. "System.Collections.Immutable/5.0.0": {
  1333. "type": "package",
  1334. "compile": {
  1335. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1336. "related": ".xml"
  1337. }
  1338. },
  1339. "runtime": {
  1340. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1341. "related": ".xml"
  1342. }
  1343. }
  1344. },
  1345. "System.Collections.NonGeneric/4.3.0": {
  1346. "type": "package",
  1347. "dependencies": {
  1348. "System.Diagnostics.Debug": "4.3.0",
  1349. "System.Globalization": "4.3.0",
  1350. "System.Resources.ResourceManager": "4.3.0",
  1351. "System.Runtime": "4.3.0",
  1352. "System.Runtime.Extensions": "4.3.0",
  1353. "System.Threading": "4.3.0"
  1354. },
  1355. "compile": {
  1356. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1357. "related": ".xml"
  1358. }
  1359. },
  1360. "runtime": {
  1361. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1362. }
  1363. },
  1364. "System.Collections.Specialized/4.3.0": {
  1365. "type": "package",
  1366. "dependencies": {
  1367. "System.Collections.NonGeneric": "4.3.0",
  1368. "System.Globalization": "4.3.0",
  1369. "System.Globalization.Extensions": "4.3.0",
  1370. "System.Resources.ResourceManager": "4.3.0",
  1371. "System.Runtime": "4.3.0",
  1372. "System.Runtime.Extensions": "4.3.0",
  1373. "System.Threading": "4.3.0"
  1374. },
  1375. "compile": {
  1376. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1377. "related": ".xml"
  1378. }
  1379. },
  1380. "runtime": {
  1381. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1382. }
  1383. },
  1384. "System.ComponentModel/4.3.0": {
  1385. "type": "package",
  1386. "dependencies": {
  1387. "System.Runtime": "4.3.0"
  1388. },
  1389. "compile": {
  1390. "ref/netstandard1.0/System.ComponentModel.dll": {
  1391. "related": ".xml"
  1392. }
  1393. },
  1394. "runtime": {
  1395. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1396. }
  1397. },
  1398. "System.ComponentModel.Annotations/5.0.0": {
  1399. "type": "package",
  1400. "compile": {
  1401. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1402. "related": ".xml"
  1403. }
  1404. },
  1405. "runtime": {
  1406. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1407. "related": ".xml"
  1408. }
  1409. }
  1410. },
  1411. "System.ComponentModel.Primitives/4.3.0": {
  1412. "type": "package",
  1413. "dependencies": {
  1414. "System.ComponentModel": "4.3.0",
  1415. "System.Resources.ResourceManager": "4.3.0",
  1416. "System.Runtime": "4.3.0"
  1417. },
  1418. "compile": {
  1419. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1420. "related": ".xml"
  1421. }
  1422. },
  1423. "runtime": {
  1424. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1425. }
  1426. },
  1427. "System.ComponentModel.TypeConverter/4.3.0": {
  1428. "type": "package",
  1429. "dependencies": {
  1430. "System.Collections": "4.3.0",
  1431. "System.Collections.NonGeneric": "4.3.0",
  1432. "System.Collections.Specialized": "4.3.0",
  1433. "System.ComponentModel": "4.3.0",
  1434. "System.ComponentModel.Primitives": "4.3.0",
  1435. "System.Globalization": "4.3.0",
  1436. "System.Linq": "4.3.0",
  1437. "System.Reflection": "4.3.0",
  1438. "System.Reflection.Extensions": "4.3.0",
  1439. "System.Reflection.Primitives": "4.3.0",
  1440. "System.Reflection.TypeExtensions": "4.3.0",
  1441. "System.Resources.ResourceManager": "4.3.0",
  1442. "System.Runtime": "4.3.0",
  1443. "System.Runtime.Extensions": "4.3.0",
  1444. "System.Threading": "4.3.0"
  1445. },
  1446. "compile": {
  1447. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1448. "related": ".xml"
  1449. }
  1450. },
  1451. "runtime": {
  1452. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1453. }
  1454. },
  1455. "System.Configuration.ConfigurationManager/4.7.0": {
  1456. "type": "package",
  1457. "dependencies": {
  1458. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1459. "System.Security.Permissions": "4.7.0"
  1460. },
  1461. "compile": {
  1462. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1463. "related": ".xml"
  1464. }
  1465. },
  1466. "runtime": {
  1467. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1468. "related": ".xml"
  1469. }
  1470. }
  1471. },
  1472. "System.Console/4.3.0": {
  1473. "type": "package",
  1474. "dependencies": {
  1475. "Microsoft.NETCore.Platforms": "1.1.0",
  1476. "Microsoft.NETCore.Targets": "1.1.0",
  1477. "System.IO": "4.3.0",
  1478. "System.Runtime": "4.3.0",
  1479. "System.Text.Encoding": "4.3.0"
  1480. },
  1481. "compile": {
  1482. "ref/netstandard1.3/System.Console.dll": {
  1483. "related": ".xml"
  1484. }
  1485. }
  1486. },
  1487. "System.Diagnostics.Debug/4.3.0": {
  1488. "type": "package",
  1489. "dependencies": {
  1490. "Microsoft.NETCore.Platforms": "1.1.0",
  1491. "Microsoft.NETCore.Targets": "1.1.0",
  1492. "System.Runtime": "4.3.0"
  1493. },
  1494. "compile": {
  1495. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1496. "related": ".xml"
  1497. }
  1498. }
  1499. },
  1500. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1501. "type": "package",
  1502. "compile": {
  1503. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1504. "related": ".xml"
  1505. }
  1506. },
  1507. "runtime": {
  1508. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1509. "related": ".xml"
  1510. }
  1511. }
  1512. },
  1513. "System.Diagnostics.Tools/4.3.0": {
  1514. "type": "package",
  1515. "dependencies": {
  1516. "Microsoft.NETCore.Platforms": "1.1.0",
  1517. "Microsoft.NETCore.Targets": "1.1.0",
  1518. "System.Runtime": "4.3.0"
  1519. },
  1520. "compile": {
  1521. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1522. "related": ".xml"
  1523. }
  1524. }
  1525. },
  1526. "System.Diagnostics.TraceSource/4.3.0": {
  1527. "type": "package",
  1528. "dependencies": {
  1529. "Microsoft.NETCore.Platforms": "1.1.0",
  1530. "System.Collections": "4.3.0",
  1531. "System.Diagnostics.Debug": "4.3.0",
  1532. "System.Globalization": "4.3.0",
  1533. "System.Resources.ResourceManager": "4.3.0",
  1534. "System.Runtime": "4.3.0",
  1535. "System.Runtime.Extensions": "4.3.0",
  1536. "System.Threading": "4.3.0",
  1537. "runtime.native.System": "4.3.0"
  1538. },
  1539. "compile": {
  1540. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1541. "related": ".xml"
  1542. }
  1543. },
  1544. "runtimeTargets": {
  1545. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1546. "assetType": "runtime",
  1547. "rid": "unix"
  1548. },
  1549. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1550. "assetType": "runtime",
  1551. "rid": "win"
  1552. }
  1553. }
  1554. },
  1555. "System.Diagnostics.Tracing/4.3.0": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "Microsoft.NETCore.Platforms": "1.1.0",
  1559. "Microsoft.NETCore.Targets": "1.1.0",
  1560. "System.Runtime": "4.3.0"
  1561. },
  1562. "compile": {
  1563. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1564. "related": ".xml"
  1565. }
  1566. }
  1567. },
  1568. "System.Drawing.Common/5.0.3": {
  1569. "type": "package",
  1570. "dependencies": {
  1571. "Microsoft.Win32.SystemEvents": "5.0.0"
  1572. },
  1573. "compile": {
  1574. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1575. "related": ".xml"
  1576. }
  1577. },
  1578. "runtime": {
  1579. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1580. "related": ".xml"
  1581. }
  1582. },
  1583. "runtimeTargets": {
  1584. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1585. "assetType": "runtime",
  1586. "rid": "unix"
  1587. },
  1588. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1589. "assetType": "runtime",
  1590. "rid": "win"
  1591. }
  1592. }
  1593. },
  1594. "System.Dynamic.Runtime/4.3.0": {
  1595. "type": "package",
  1596. "dependencies": {
  1597. "System.Collections": "4.3.0",
  1598. "System.Diagnostics.Debug": "4.3.0",
  1599. "System.Linq": "4.3.0",
  1600. "System.Linq.Expressions": "4.3.0",
  1601. "System.ObjectModel": "4.3.0",
  1602. "System.Reflection": "4.3.0",
  1603. "System.Reflection.Emit": "4.3.0",
  1604. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1605. "System.Reflection.Primitives": "4.3.0",
  1606. "System.Reflection.TypeExtensions": "4.3.0",
  1607. "System.Resources.ResourceManager": "4.3.0",
  1608. "System.Runtime": "4.3.0",
  1609. "System.Runtime.Extensions": "4.3.0",
  1610. "System.Threading": "4.3.0"
  1611. },
  1612. "compile": {
  1613. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1614. "related": ".xml"
  1615. }
  1616. },
  1617. "runtime": {
  1618. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1619. }
  1620. },
  1621. "System.Globalization/4.3.0": {
  1622. "type": "package",
  1623. "dependencies": {
  1624. "Microsoft.NETCore.Platforms": "1.1.0",
  1625. "Microsoft.NETCore.Targets": "1.1.0",
  1626. "System.Runtime": "4.3.0"
  1627. },
  1628. "compile": {
  1629. "ref/netstandard1.3/System.Globalization.dll": {
  1630. "related": ".xml"
  1631. }
  1632. }
  1633. },
  1634. "System.Globalization.Calendars/4.3.0": {
  1635. "type": "package",
  1636. "dependencies": {
  1637. "Microsoft.NETCore.Platforms": "1.1.0",
  1638. "Microsoft.NETCore.Targets": "1.1.0",
  1639. "System.Globalization": "4.3.0",
  1640. "System.Runtime": "4.3.0"
  1641. },
  1642. "compile": {
  1643. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1644. "related": ".xml"
  1645. }
  1646. }
  1647. },
  1648. "System.Globalization.Extensions/4.3.0": {
  1649. "type": "package",
  1650. "dependencies": {
  1651. "Microsoft.NETCore.Platforms": "1.1.0",
  1652. "System.Globalization": "4.3.0",
  1653. "System.Resources.ResourceManager": "4.3.0",
  1654. "System.Runtime": "4.3.0",
  1655. "System.Runtime.Extensions": "4.3.0",
  1656. "System.Runtime.InteropServices": "4.3.0"
  1657. },
  1658. "compile": {
  1659. "ref/netstandard1.3/_._": {
  1660. "related": ".xml"
  1661. }
  1662. },
  1663. "runtimeTargets": {
  1664. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1665. "assetType": "runtime",
  1666. "rid": "unix"
  1667. },
  1668. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1669. "assetType": "runtime",
  1670. "rid": "win"
  1671. }
  1672. }
  1673. },
  1674. "System.IO/4.3.0": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "Microsoft.NETCore.Platforms": "1.1.0",
  1678. "Microsoft.NETCore.Targets": "1.1.0",
  1679. "System.Runtime": "4.3.0",
  1680. "System.Text.Encoding": "4.3.0",
  1681. "System.Threading.Tasks": "4.3.0"
  1682. },
  1683. "compile": {
  1684. "ref/netstandard1.5/System.IO.dll": {
  1685. "related": ".xml"
  1686. }
  1687. }
  1688. },
  1689. "System.IO.Compression/4.3.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "Microsoft.NETCore.Platforms": "1.1.0",
  1693. "System.Buffers": "4.3.0",
  1694. "System.Collections": "4.3.0",
  1695. "System.Diagnostics.Debug": "4.3.0",
  1696. "System.IO": "4.3.0",
  1697. "System.Resources.ResourceManager": "4.3.0",
  1698. "System.Runtime": "4.3.0",
  1699. "System.Runtime.Extensions": "4.3.0",
  1700. "System.Runtime.Handles": "4.3.0",
  1701. "System.Runtime.InteropServices": "4.3.0",
  1702. "System.Text.Encoding": "4.3.0",
  1703. "System.Threading": "4.3.0",
  1704. "System.Threading.Tasks": "4.3.0",
  1705. "runtime.native.System": "4.3.0",
  1706. "runtime.native.System.IO.Compression": "4.3.0"
  1707. },
  1708. "compile": {
  1709. "ref/netstandard1.3/System.IO.Compression.dll": {
  1710. "related": ".xml"
  1711. }
  1712. },
  1713. "runtimeTargets": {
  1714. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1715. "assetType": "runtime",
  1716. "rid": "unix"
  1717. },
  1718. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1719. "assetType": "runtime",
  1720. "rid": "win"
  1721. }
  1722. }
  1723. },
  1724. "System.IO.Compression.ZipFile/4.3.0": {
  1725. "type": "package",
  1726. "dependencies": {
  1727. "System.Buffers": "4.3.0",
  1728. "System.IO": "4.3.0",
  1729. "System.IO.Compression": "4.3.0",
  1730. "System.IO.FileSystem": "4.3.0",
  1731. "System.IO.FileSystem.Primitives": "4.3.0",
  1732. "System.Resources.ResourceManager": "4.3.0",
  1733. "System.Runtime": "4.3.0",
  1734. "System.Runtime.Extensions": "4.3.0",
  1735. "System.Text.Encoding": "4.3.0"
  1736. },
  1737. "compile": {
  1738. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1739. "related": ".xml"
  1740. }
  1741. },
  1742. "runtime": {
  1743. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1744. }
  1745. },
  1746. "System.IO.FileSystem/4.3.0": {
  1747. "type": "package",
  1748. "dependencies": {
  1749. "Microsoft.NETCore.Platforms": "1.1.0",
  1750. "Microsoft.NETCore.Targets": "1.1.0",
  1751. "System.IO": "4.3.0",
  1752. "System.IO.FileSystem.Primitives": "4.3.0",
  1753. "System.Runtime": "4.3.0",
  1754. "System.Runtime.Handles": "4.3.0",
  1755. "System.Text.Encoding": "4.3.0",
  1756. "System.Threading.Tasks": "4.3.0"
  1757. },
  1758. "compile": {
  1759. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1760. "related": ".xml"
  1761. }
  1762. }
  1763. },
  1764. "System.IO.FileSystem.Primitives/4.3.0": {
  1765. "type": "package",
  1766. "dependencies": {
  1767. "System.Runtime": "4.3.0"
  1768. },
  1769. "compile": {
  1770. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1771. "related": ".xml"
  1772. }
  1773. },
  1774. "runtime": {
  1775. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1776. }
  1777. },
  1778. "System.IO.Pipelines/5.0.0": {
  1779. "type": "package",
  1780. "compile": {
  1781. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1787. "related": ".xml"
  1788. }
  1789. }
  1790. },
  1791. "System.Linq/4.3.0": {
  1792. "type": "package",
  1793. "dependencies": {
  1794. "System.Collections": "4.3.0",
  1795. "System.Diagnostics.Debug": "4.3.0",
  1796. "System.Resources.ResourceManager": "4.3.0",
  1797. "System.Runtime": "4.3.0",
  1798. "System.Runtime.Extensions": "4.3.0"
  1799. },
  1800. "compile": {
  1801. "ref/netstandard1.6/System.Linq.dll": {
  1802. "related": ".xml"
  1803. }
  1804. },
  1805. "runtime": {
  1806. "lib/netstandard1.6/System.Linq.dll": {}
  1807. }
  1808. },
  1809. "System.Linq.Expressions/4.3.0": {
  1810. "type": "package",
  1811. "dependencies": {
  1812. "System.Collections": "4.3.0",
  1813. "System.Diagnostics.Debug": "4.3.0",
  1814. "System.Globalization": "4.3.0",
  1815. "System.IO": "4.3.0",
  1816. "System.Linq": "4.3.0",
  1817. "System.ObjectModel": "4.3.0",
  1818. "System.Reflection": "4.3.0",
  1819. "System.Reflection.Emit": "4.3.0",
  1820. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1821. "System.Reflection.Emit.Lightweight": "4.3.0",
  1822. "System.Reflection.Extensions": "4.3.0",
  1823. "System.Reflection.Primitives": "4.3.0",
  1824. "System.Reflection.TypeExtensions": "4.3.0",
  1825. "System.Resources.ResourceManager": "4.3.0",
  1826. "System.Runtime": "4.3.0",
  1827. "System.Runtime.Extensions": "4.3.0",
  1828. "System.Threading": "4.3.0"
  1829. },
  1830. "compile": {
  1831. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1832. "related": ".xml"
  1833. }
  1834. },
  1835. "runtime": {
  1836. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1837. }
  1838. },
  1839. "System.Memory/4.5.5": {
  1840. "type": "package",
  1841. "compile": {
  1842. "ref/netcoreapp2.1/_._": {}
  1843. },
  1844. "runtime": {
  1845. "lib/netcoreapp2.1/_._": {}
  1846. }
  1847. },
  1848. "System.Net.Http/4.3.0": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "Microsoft.NETCore.Platforms": "1.1.0",
  1852. "System.Collections": "4.3.0",
  1853. "System.Diagnostics.Debug": "4.3.0",
  1854. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1855. "System.Diagnostics.Tracing": "4.3.0",
  1856. "System.Globalization": "4.3.0",
  1857. "System.Globalization.Extensions": "4.3.0",
  1858. "System.IO": "4.3.0",
  1859. "System.IO.FileSystem": "4.3.0",
  1860. "System.Net.Primitives": "4.3.0",
  1861. "System.Resources.ResourceManager": "4.3.0",
  1862. "System.Runtime": "4.3.0",
  1863. "System.Runtime.Extensions": "4.3.0",
  1864. "System.Runtime.Handles": "4.3.0",
  1865. "System.Runtime.InteropServices": "4.3.0",
  1866. "System.Security.Cryptography.Algorithms": "4.3.0",
  1867. "System.Security.Cryptography.Encoding": "4.3.0",
  1868. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1869. "System.Security.Cryptography.Primitives": "4.3.0",
  1870. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1871. "System.Text.Encoding": "4.3.0",
  1872. "System.Threading": "4.3.0",
  1873. "System.Threading.Tasks": "4.3.0",
  1874. "runtime.native.System": "4.3.0",
  1875. "runtime.native.System.Net.Http": "4.3.0",
  1876. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1877. },
  1878. "compile": {
  1879. "ref/netstandard1.3/System.Net.Http.dll": {
  1880. "related": ".xml"
  1881. }
  1882. },
  1883. "runtimeTargets": {
  1884. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1885. "assetType": "runtime",
  1886. "rid": "unix"
  1887. },
  1888. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1889. "assetType": "runtime",
  1890. "rid": "win"
  1891. }
  1892. }
  1893. },
  1894. "System.Net.NameResolution/4.3.0": {
  1895. "type": "package",
  1896. "dependencies": {
  1897. "Microsoft.NETCore.Platforms": "1.1.0",
  1898. "System.Collections": "4.3.0",
  1899. "System.Diagnostics.Tracing": "4.3.0",
  1900. "System.Globalization": "4.3.0",
  1901. "System.Net.Primitives": "4.3.0",
  1902. "System.Resources.ResourceManager": "4.3.0",
  1903. "System.Runtime": "4.3.0",
  1904. "System.Runtime.Extensions": "4.3.0",
  1905. "System.Runtime.Handles": "4.3.0",
  1906. "System.Runtime.InteropServices": "4.3.0",
  1907. "System.Security.Principal.Windows": "4.3.0",
  1908. "System.Threading": "4.3.0",
  1909. "System.Threading.Tasks": "4.3.0",
  1910. "runtime.native.System": "4.3.0"
  1911. },
  1912. "compile": {
  1913. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  1914. "related": ".xml"
  1915. }
  1916. },
  1917. "runtimeTargets": {
  1918. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1919. "assetType": "runtime",
  1920. "rid": "unix"
  1921. },
  1922. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1923. "assetType": "runtime",
  1924. "rid": "win"
  1925. }
  1926. }
  1927. },
  1928. "System.Net.Primitives/4.3.0": {
  1929. "type": "package",
  1930. "dependencies": {
  1931. "Microsoft.NETCore.Platforms": "1.1.0",
  1932. "Microsoft.NETCore.Targets": "1.1.0",
  1933. "System.Runtime": "4.3.0",
  1934. "System.Runtime.Handles": "4.3.0"
  1935. },
  1936. "compile": {
  1937. "ref/netstandard1.3/System.Net.Primitives.dll": {
  1938. "related": ".xml"
  1939. }
  1940. }
  1941. },
  1942. "System.Net.Security/4.3.0": {
  1943. "type": "package",
  1944. "dependencies": {
  1945. "Microsoft.NETCore.Platforms": "1.1.0",
  1946. "Microsoft.Win32.Primitives": "4.3.0",
  1947. "System.Collections": "4.3.0",
  1948. "System.Collections.Concurrent": "4.3.0",
  1949. "System.Diagnostics.Tracing": "4.3.0",
  1950. "System.Globalization": "4.3.0",
  1951. "System.Globalization.Extensions": "4.3.0",
  1952. "System.IO": "4.3.0",
  1953. "System.Net.Primitives": "4.3.0",
  1954. "System.Resources.ResourceManager": "4.3.0",
  1955. "System.Runtime": "4.3.0",
  1956. "System.Runtime.Extensions": "4.3.0",
  1957. "System.Runtime.Handles": "4.3.0",
  1958. "System.Runtime.InteropServices": "4.3.0",
  1959. "System.Security.Claims": "4.3.0",
  1960. "System.Security.Cryptography.Algorithms": "4.3.0",
  1961. "System.Security.Cryptography.Encoding": "4.3.0",
  1962. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1963. "System.Security.Cryptography.Primitives": "4.3.0",
  1964. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1965. "System.Security.Principal": "4.3.0",
  1966. "System.Text.Encoding": "4.3.0",
  1967. "System.Threading": "4.3.0",
  1968. "System.Threading.Tasks": "4.3.0",
  1969. "System.Threading.ThreadPool": "4.3.0",
  1970. "runtime.native.System": "4.3.0",
  1971. "runtime.native.System.Net.Security": "4.3.0",
  1972. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1973. },
  1974. "compile": {
  1975. "ref/netstandard1.3/System.Net.Security.dll": {
  1976. "related": ".xml"
  1977. }
  1978. },
  1979. "runtimeTargets": {
  1980. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  1981. "assetType": "runtime",
  1982. "rid": "unix"
  1983. },
  1984. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  1985. "assetType": "runtime",
  1986. "rid": "win"
  1987. }
  1988. }
  1989. },
  1990. "System.Net.Sockets/4.3.0": {
  1991. "type": "package",
  1992. "dependencies": {
  1993. "Microsoft.NETCore.Platforms": "1.1.0",
  1994. "Microsoft.NETCore.Targets": "1.1.0",
  1995. "System.IO": "4.3.0",
  1996. "System.Net.Primitives": "4.3.0",
  1997. "System.Runtime": "4.3.0",
  1998. "System.Threading.Tasks": "4.3.0"
  1999. },
  2000. "compile": {
  2001. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2002. "related": ".xml"
  2003. }
  2004. }
  2005. },
  2006. "System.ObjectModel/4.3.0": {
  2007. "type": "package",
  2008. "dependencies": {
  2009. "System.Collections": "4.3.0",
  2010. "System.Diagnostics.Debug": "4.3.0",
  2011. "System.Resources.ResourceManager": "4.3.0",
  2012. "System.Runtime": "4.3.0",
  2013. "System.Threading": "4.3.0"
  2014. },
  2015. "compile": {
  2016. "ref/netstandard1.3/System.ObjectModel.dll": {
  2017. "related": ".xml"
  2018. }
  2019. },
  2020. "runtime": {
  2021. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2022. }
  2023. },
  2024. "System.Reflection/4.3.0": {
  2025. "type": "package",
  2026. "dependencies": {
  2027. "Microsoft.NETCore.Platforms": "1.1.0",
  2028. "Microsoft.NETCore.Targets": "1.1.0",
  2029. "System.IO": "4.3.0",
  2030. "System.Reflection.Primitives": "4.3.0",
  2031. "System.Runtime": "4.3.0"
  2032. },
  2033. "compile": {
  2034. "ref/netstandard1.5/System.Reflection.dll": {
  2035. "related": ".xml"
  2036. }
  2037. }
  2038. },
  2039. "System.Reflection.Emit/4.7.0": {
  2040. "type": "package",
  2041. "compile": {
  2042. "ref/netcoreapp2.0/_._": {}
  2043. },
  2044. "runtime": {
  2045. "lib/netcoreapp2.0/_._": {}
  2046. }
  2047. },
  2048. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2049. "type": "package",
  2050. "dependencies": {
  2051. "System.Reflection": "4.3.0",
  2052. "System.Reflection.Primitives": "4.3.0",
  2053. "System.Runtime": "4.3.0"
  2054. },
  2055. "compile": {
  2056. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2057. "related": ".xml"
  2058. }
  2059. },
  2060. "runtime": {
  2061. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2062. }
  2063. },
  2064. "System.Reflection.Emit.Lightweight/4.3.0": {
  2065. "type": "package",
  2066. "dependencies": {
  2067. "System.Reflection": "4.3.0",
  2068. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2069. "System.Reflection.Primitives": "4.3.0",
  2070. "System.Runtime": "4.3.0"
  2071. },
  2072. "compile": {
  2073. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2074. "related": ".xml"
  2075. }
  2076. },
  2077. "runtime": {
  2078. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2079. }
  2080. },
  2081. "System.Reflection.Extensions/4.3.0": {
  2082. "type": "package",
  2083. "dependencies": {
  2084. "Microsoft.NETCore.Platforms": "1.1.0",
  2085. "Microsoft.NETCore.Targets": "1.1.0",
  2086. "System.Reflection": "4.3.0",
  2087. "System.Runtime": "4.3.0"
  2088. },
  2089. "compile": {
  2090. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2091. "related": ".xml"
  2092. }
  2093. }
  2094. },
  2095. "System.Reflection.Primitives/4.3.0": {
  2096. "type": "package",
  2097. "dependencies": {
  2098. "Microsoft.NETCore.Platforms": "1.1.0",
  2099. "Microsoft.NETCore.Targets": "1.1.0",
  2100. "System.Runtime": "4.3.0"
  2101. },
  2102. "compile": {
  2103. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2104. "related": ".xml"
  2105. }
  2106. }
  2107. },
  2108. "System.Reflection.TypeExtensions/4.3.0": {
  2109. "type": "package",
  2110. "dependencies": {
  2111. "System.Reflection": "4.3.0",
  2112. "System.Runtime": "4.3.0"
  2113. },
  2114. "compile": {
  2115. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2116. "related": ".xml"
  2117. }
  2118. },
  2119. "runtime": {
  2120. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2121. }
  2122. },
  2123. "System.Resources.ResourceManager/4.3.0": {
  2124. "type": "package",
  2125. "dependencies": {
  2126. "Microsoft.NETCore.Platforms": "1.1.0",
  2127. "Microsoft.NETCore.Targets": "1.1.0",
  2128. "System.Globalization": "4.3.0",
  2129. "System.Reflection": "4.3.0",
  2130. "System.Runtime": "4.3.0"
  2131. },
  2132. "compile": {
  2133. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2134. "related": ".xml"
  2135. }
  2136. }
  2137. },
  2138. "System.Runtime/4.3.0": {
  2139. "type": "package",
  2140. "dependencies": {
  2141. "Microsoft.NETCore.Platforms": "1.1.0",
  2142. "Microsoft.NETCore.Targets": "1.1.0"
  2143. },
  2144. "compile": {
  2145. "ref/netstandard1.5/System.Runtime.dll": {
  2146. "related": ".xml"
  2147. }
  2148. }
  2149. },
  2150. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2151. "type": "package",
  2152. "compile": {
  2153. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2154. "related": ".xml"
  2155. }
  2156. },
  2157. "runtime": {
  2158. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2159. "related": ".xml"
  2160. }
  2161. }
  2162. },
  2163. "System.Runtime.Extensions/4.3.0": {
  2164. "type": "package",
  2165. "dependencies": {
  2166. "Microsoft.NETCore.Platforms": "1.1.0",
  2167. "Microsoft.NETCore.Targets": "1.1.0",
  2168. "System.Runtime": "4.3.0"
  2169. },
  2170. "compile": {
  2171. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2172. "related": ".xml"
  2173. }
  2174. }
  2175. },
  2176. "System.Runtime.Handles/4.3.0": {
  2177. "type": "package",
  2178. "dependencies": {
  2179. "Microsoft.NETCore.Platforms": "1.1.0",
  2180. "Microsoft.NETCore.Targets": "1.1.0",
  2181. "System.Runtime": "4.3.0"
  2182. },
  2183. "compile": {
  2184. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2185. "related": ".xml"
  2186. }
  2187. }
  2188. },
  2189. "System.Runtime.InteropServices/4.3.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "Microsoft.NETCore.Platforms": "1.1.0",
  2193. "Microsoft.NETCore.Targets": "1.1.0",
  2194. "System.Reflection": "4.3.0",
  2195. "System.Reflection.Primitives": "4.3.0",
  2196. "System.Runtime": "4.3.0",
  2197. "System.Runtime.Handles": "4.3.0"
  2198. },
  2199. "compile": {
  2200. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2201. }
  2202. },
  2203. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2204. "type": "package",
  2205. "dependencies": {
  2206. "System.Reflection": "4.3.0",
  2207. "System.Reflection.Extensions": "4.3.0",
  2208. "System.Resources.ResourceManager": "4.3.0",
  2209. "System.Runtime": "4.3.0",
  2210. "System.Runtime.InteropServices": "4.3.0",
  2211. "System.Threading": "4.3.0",
  2212. "runtime.native.System": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2216. },
  2217. "runtime": {
  2218. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2219. },
  2220. "runtimeTargets": {
  2221. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "unix"
  2224. },
  2225. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2226. "assetType": "runtime",
  2227. "rid": "win"
  2228. }
  2229. }
  2230. },
  2231. "System.Runtime.Numerics/4.3.0": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "System.Globalization": "4.3.0",
  2235. "System.Resources.ResourceManager": "4.3.0",
  2236. "System.Runtime": "4.3.0",
  2237. "System.Runtime.Extensions": "4.3.0"
  2238. },
  2239. "compile": {
  2240. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2241. "related": ".xml"
  2242. }
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2246. }
  2247. },
  2248. "System.Security.AccessControl/4.7.0": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "Microsoft.NETCore.Platforms": "3.1.0",
  2252. "System.Security.Principal.Windows": "4.7.0"
  2253. },
  2254. "compile": {
  2255. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2256. "related": ".xml"
  2257. }
  2258. },
  2259. "runtime": {
  2260. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2261. "related": ".xml"
  2262. }
  2263. },
  2264. "runtimeTargets": {
  2265. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2266. "assetType": "runtime",
  2267. "rid": "win"
  2268. }
  2269. }
  2270. },
  2271. "System.Security.Claims/4.3.0": {
  2272. "type": "package",
  2273. "dependencies": {
  2274. "System.Collections": "4.3.0",
  2275. "System.Globalization": "4.3.0",
  2276. "System.IO": "4.3.0",
  2277. "System.Resources.ResourceManager": "4.3.0",
  2278. "System.Runtime": "4.3.0",
  2279. "System.Runtime.Extensions": "4.3.0",
  2280. "System.Security.Principal": "4.3.0"
  2281. },
  2282. "compile": {
  2283. "ref/netstandard1.3/_._": {
  2284. "related": ".xml"
  2285. }
  2286. },
  2287. "runtime": {
  2288. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2289. }
  2290. },
  2291. "System.Security.Cryptography.Algorithms/4.3.0": {
  2292. "type": "package",
  2293. "dependencies": {
  2294. "Microsoft.NETCore.Platforms": "1.1.0",
  2295. "System.Collections": "4.3.0",
  2296. "System.IO": "4.3.0",
  2297. "System.Resources.ResourceManager": "4.3.0",
  2298. "System.Runtime": "4.3.0",
  2299. "System.Runtime.Extensions": "4.3.0",
  2300. "System.Runtime.Handles": "4.3.0",
  2301. "System.Runtime.InteropServices": "4.3.0",
  2302. "System.Runtime.Numerics": "4.3.0",
  2303. "System.Security.Cryptography.Encoding": "4.3.0",
  2304. "System.Security.Cryptography.Primitives": "4.3.0",
  2305. "System.Text.Encoding": "4.3.0",
  2306. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2307. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2308. },
  2309. "compile": {
  2310. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2311. },
  2312. "runtimeTargets": {
  2313. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2314. "assetType": "runtime",
  2315. "rid": "osx"
  2316. },
  2317. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2318. "assetType": "runtime",
  2319. "rid": "unix"
  2320. },
  2321. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2322. "assetType": "runtime",
  2323. "rid": "win"
  2324. }
  2325. }
  2326. },
  2327. "System.Security.Cryptography.Cng/4.3.0": {
  2328. "type": "package",
  2329. "dependencies": {
  2330. "Microsoft.NETCore.Platforms": "1.1.0",
  2331. "System.IO": "4.3.0",
  2332. "System.Resources.ResourceManager": "4.3.0",
  2333. "System.Runtime": "4.3.0",
  2334. "System.Runtime.Extensions": "4.3.0",
  2335. "System.Runtime.Handles": "4.3.0",
  2336. "System.Runtime.InteropServices": "4.3.0",
  2337. "System.Security.Cryptography.Algorithms": "4.3.0",
  2338. "System.Security.Cryptography.Encoding": "4.3.0",
  2339. "System.Security.Cryptography.Primitives": "4.3.0",
  2340. "System.Text.Encoding": "4.3.0"
  2341. },
  2342. "compile": {
  2343. "ref/netstandard1.6/_._": {}
  2344. },
  2345. "runtimeTargets": {
  2346. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2347. "assetType": "runtime",
  2348. "rid": "unix"
  2349. },
  2350. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "win"
  2353. }
  2354. }
  2355. },
  2356. "System.Security.Cryptography.Csp/4.3.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "Microsoft.NETCore.Platforms": "1.1.0",
  2360. "System.IO": "4.3.0",
  2361. "System.Reflection": "4.3.0",
  2362. "System.Resources.ResourceManager": "4.3.0",
  2363. "System.Runtime": "4.3.0",
  2364. "System.Runtime.Extensions": "4.3.0",
  2365. "System.Runtime.Handles": "4.3.0",
  2366. "System.Runtime.InteropServices": "4.3.0",
  2367. "System.Security.Cryptography.Algorithms": "4.3.0",
  2368. "System.Security.Cryptography.Encoding": "4.3.0",
  2369. "System.Security.Cryptography.Primitives": "4.3.0",
  2370. "System.Text.Encoding": "4.3.0",
  2371. "System.Threading": "4.3.0"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/_._": {}
  2375. },
  2376. "runtimeTargets": {
  2377. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2378. "assetType": "runtime",
  2379. "rid": "unix"
  2380. },
  2381. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2382. "assetType": "runtime",
  2383. "rid": "win"
  2384. }
  2385. }
  2386. },
  2387. "System.Security.Cryptography.Encoding/4.3.0": {
  2388. "type": "package",
  2389. "dependencies": {
  2390. "Microsoft.NETCore.Platforms": "1.1.0",
  2391. "System.Collections": "4.3.0",
  2392. "System.Collections.Concurrent": "4.3.0",
  2393. "System.Linq": "4.3.0",
  2394. "System.Resources.ResourceManager": "4.3.0",
  2395. "System.Runtime": "4.3.0",
  2396. "System.Runtime.Extensions": "4.3.0",
  2397. "System.Runtime.Handles": "4.3.0",
  2398. "System.Runtime.InteropServices": "4.3.0",
  2399. "System.Security.Cryptography.Primitives": "4.3.0",
  2400. "System.Text.Encoding": "4.3.0",
  2401. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2402. },
  2403. "compile": {
  2404. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2405. "related": ".xml"
  2406. }
  2407. },
  2408. "runtimeTargets": {
  2409. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2410. "assetType": "runtime",
  2411. "rid": "unix"
  2412. },
  2413. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2414. "assetType": "runtime",
  2415. "rid": "win"
  2416. }
  2417. }
  2418. },
  2419. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2420. "type": "package",
  2421. "dependencies": {
  2422. "System.Collections": "4.3.0",
  2423. "System.IO": "4.3.0",
  2424. "System.Resources.ResourceManager": "4.3.0",
  2425. "System.Runtime": "4.3.0",
  2426. "System.Runtime.Extensions": "4.3.0",
  2427. "System.Runtime.Handles": "4.3.0",
  2428. "System.Runtime.InteropServices": "4.3.0",
  2429. "System.Runtime.Numerics": "4.3.0",
  2430. "System.Security.Cryptography.Algorithms": "4.3.0",
  2431. "System.Security.Cryptography.Encoding": "4.3.0",
  2432. "System.Security.Cryptography.Primitives": "4.3.0",
  2433. "System.Text.Encoding": "4.3.0",
  2434. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2435. },
  2436. "compile": {
  2437. "ref/netstandard1.6/_._": {}
  2438. },
  2439. "runtime": {
  2440. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2441. },
  2442. "runtimeTargets": {
  2443. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2444. "assetType": "runtime",
  2445. "rid": "unix"
  2446. }
  2447. }
  2448. },
  2449. "System.Security.Cryptography.Primitives/4.3.0": {
  2450. "type": "package",
  2451. "dependencies": {
  2452. "System.Diagnostics.Debug": "4.3.0",
  2453. "System.Globalization": "4.3.0",
  2454. "System.IO": "4.3.0",
  2455. "System.Resources.ResourceManager": "4.3.0",
  2456. "System.Runtime": "4.3.0",
  2457. "System.Threading": "4.3.0",
  2458. "System.Threading.Tasks": "4.3.0"
  2459. },
  2460. "compile": {
  2461. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2462. },
  2463. "runtime": {
  2464. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2465. }
  2466. },
  2467. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2468. "type": "package",
  2469. "compile": {
  2470. "ref/netstandard2.0/_._": {
  2471. "related": ".xml"
  2472. }
  2473. },
  2474. "runtime": {
  2475. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2476. "related": ".xml"
  2477. }
  2478. },
  2479. "runtimeTargets": {
  2480. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2481. "assetType": "runtime",
  2482. "rid": "win"
  2483. }
  2484. }
  2485. },
  2486. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2487. "type": "package",
  2488. "dependencies": {
  2489. "Microsoft.NETCore.Platforms": "1.1.0",
  2490. "System.Collections": "4.3.0",
  2491. "System.Diagnostics.Debug": "4.3.0",
  2492. "System.Globalization": "4.3.0",
  2493. "System.Globalization.Calendars": "4.3.0",
  2494. "System.IO": "4.3.0",
  2495. "System.IO.FileSystem": "4.3.0",
  2496. "System.IO.FileSystem.Primitives": "4.3.0",
  2497. "System.Resources.ResourceManager": "4.3.0",
  2498. "System.Runtime": "4.3.0",
  2499. "System.Runtime.Extensions": "4.3.0",
  2500. "System.Runtime.Handles": "4.3.0",
  2501. "System.Runtime.InteropServices": "4.3.0",
  2502. "System.Runtime.Numerics": "4.3.0",
  2503. "System.Security.Cryptography.Algorithms": "4.3.0",
  2504. "System.Security.Cryptography.Cng": "4.3.0",
  2505. "System.Security.Cryptography.Csp": "4.3.0",
  2506. "System.Security.Cryptography.Encoding": "4.3.0",
  2507. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2508. "System.Security.Cryptography.Primitives": "4.3.0",
  2509. "System.Text.Encoding": "4.3.0",
  2510. "System.Threading": "4.3.0",
  2511. "runtime.native.System": "4.3.0",
  2512. "runtime.native.System.Net.Http": "4.3.0",
  2513. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2514. },
  2515. "compile": {
  2516. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2517. "related": ".xml"
  2518. }
  2519. },
  2520. "runtimeTargets": {
  2521. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2522. "assetType": "runtime",
  2523. "rid": "unix"
  2524. },
  2525. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2526. "assetType": "runtime",
  2527. "rid": "win"
  2528. }
  2529. }
  2530. },
  2531. "System.Security.Permissions/4.7.0": {
  2532. "type": "package",
  2533. "dependencies": {
  2534. "System.Security.AccessControl": "4.7.0",
  2535. "System.Windows.Extensions": "4.7.0"
  2536. },
  2537. "compile": {
  2538. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2539. "related": ".xml"
  2540. }
  2541. },
  2542. "runtime": {
  2543. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2544. "related": ".xml"
  2545. }
  2546. }
  2547. },
  2548. "System.Security.Principal/4.3.0": {
  2549. "type": "package",
  2550. "dependencies": {
  2551. "System.Runtime": "4.3.0"
  2552. },
  2553. "compile": {
  2554. "ref/netstandard1.0/System.Security.Principal.dll": {
  2555. "related": ".xml"
  2556. }
  2557. },
  2558. "runtime": {
  2559. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2560. }
  2561. },
  2562. "System.Security.Principal.Windows/4.7.0": {
  2563. "type": "package",
  2564. "compile": {
  2565. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2566. "related": ".xml"
  2567. }
  2568. },
  2569. "runtime": {
  2570. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2571. "related": ".xml"
  2572. }
  2573. },
  2574. "runtimeTargets": {
  2575. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2576. "assetType": "runtime",
  2577. "rid": "unix"
  2578. },
  2579. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2580. "assetType": "runtime",
  2581. "rid": "win"
  2582. }
  2583. }
  2584. },
  2585. "System.Text.Encoding/4.3.0": {
  2586. "type": "package",
  2587. "dependencies": {
  2588. "Microsoft.NETCore.Platforms": "1.1.0",
  2589. "Microsoft.NETCore.Targets": "1.1.0",
  2590. "System.Runtime": "4.3.0"
  2591. },
  2592. "compile": {
  2593. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2594. "related": ".xml"
  2595. }
  2596. }
  2597. },
  2598. "System.Text.Encoding.CodePages/5.0.0": {
  2599. "type": "package",
  2600. "dependencies": {
  2601. "Microsoft.NETCore.Platforms": "5.0.0"
  2602. },
  2603. "compile": {
  2604. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2605. "related": ".xml"
  2606. }
  2607. },
  2608. "runtime": {
  2609. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2610. "related": ".xml"
  2611. }
  2612. },
  2613. "runtimeTargets": {
  2614. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2615. "assetType": "runtime",
  2616. "rid": "win"
  2617. }
  2618. }
  2619. },
  2620. "System.Text.Encoding.Extensions/4.3.0": {
  2621. "type": "package",
  2622. "dependencies": {
  2623. "Microsoft.NETCore.Platforms": "1.1.0",
  2624. "Microsoft.NETCore.Targets": "1.1.0",
  2625. "System.Runtime": "4.3.0",
  2626. "System.Text.Encoding": "4.3.0"
  2627. },
  2628. "compile": {
  2629. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2630. "related": ".xml"
  2631. }
  2632. }
  2633. },
  2634. "System.Text.Encodings.Web/4.5.0": {
  2635. "type": "package",
  2636. "compile": {
  2637. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2638. "related": ".xml"
  2639. }
  2640. },
  2641. "runtime": {
  2642. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2643. "related": ".xml"
  2644. }
  2645. }
  2646. },
  2647. "System.Text.RegularExpressions/4.3.0": {
  2648. "type": "package",
  2649. "dependencies": {
  2650. "System.Runtime": "4.3.0"
  2651. },
  2652. "compile": {
  2653. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2654. },
  2655. "runtime": {
  2656. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2657. }
  2658. },
  2659. "System.Threading/4.3.0": {
  2660. "type": "package",
  2661. "dependencies": {
  2662. "System.Runtime": "4.3.0",
  2663. "System.Threading.Tasks": "4.3.0"
  2664. },
  2665. "compile": {
  2666. "ref/netstandard1.3/System.Threading.dll": {
  2667. "related": ".xml"
  2668. }
  2669. },
  2670. "runtime": {
  2671. "lib/netstandard1.3/System.Threading.dll": {}
  2672. }
  2673. },
  2674. "System.Threading.Channels/7.0.0": {
  2675. "type": "package",
  2676. "compile": {
  2677. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2678. "related": ".xml"
  2679. }
  2680. },
  2681. "runtime": {
  2682. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2683. "related": ".xml"
  2684. }
  2685. },
  2686. "build": {
  2687. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2688. }
  2689. },
  2690. "System.Threading.Tasks/4.3.0": {
  2691. "type": "package",
  2692. "dependencies": {
  2693. "Microsoft.NETCore.Platforms": "1.1.0",
  2694. "Microsoft.NETCore.Targets": "1.1.0",
  2695. "System.Runtime": "4.3.0"
  2696. },
  2697. "compile": {
  2698. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2699. "related": ".xml"
  2700. }
  2701. }
  2702. },
  2703. "System.Threading.Tasks.Extensions/4.3.0": {
  2704. "type": "package",
  2705. "dependencies": {
  2706. "System.Collections": "4.3.0",
  2707. "System.Runtime": "4.3.0",
  2708. "System.Threading.Tasks": "4.3.0"
  2709. },
  2710. "compile": {
  2711. "lib/netstandard1.0/_._": {
  2712. "related": ".xml"
  2713. }
  2714. },
  2715. "runtime": {
  2716. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2717. "related": ".xml"
  2718. }
  2719. }
  2720. },
  2721. "System.Threading.Thread/4.3.0": {
  2722. "type": "package",
  2723. "dependencies": {
  2724. "System.Runtime": "4.3.0"
  2725. },
  2726. "compile": {
  2727. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2728. "related": ".xml"
  2729. }
  2730. },
  2731. "runtime": {
  2732. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2733. }
  2734. },
  2735. "System.Threading.ThreadPool/4.3.0": {
  2736. "type": "package",
  2737. "dependencies": {
  2738. "System.Runtime": "4.3.0",
  2739. "System.Runtime.Handles": "4.3.0"
  2740. },
  2741. "compile": {
  2742. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2743. "related": ".xml"
  2744. }
  2745. },
  2746. "runtime": {
  2747. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2748. }
  2749. },
  2750. "System.Threading.Timer/4.3.0": {
  2751. "type": "package",
  2752. "dependencies": {
  2753. "Microsoft.NETCore.Platforms": "1.1.0",
  2754. "Microsoft.NETCore.Targets": "1.1.0",
  2755. "System.Runtime": "4.3.0"
  2756. },
  2757. "compile": {
  2758. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2759. "related": ".xml"
  2760. }
  2761. }
  2762. },
  2763. "System.Windows.Extensions/4.7.0": {
  2764. "type": "package",
  2765. "dependencies": {
  2766. "System.Drawing.Common": "4.7.0"
  2767. },
  2768. "compile": {
  2769. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2770. "related": ".xml"
  2771. }
  2772. },
  2773. "runtime": {
  2774. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2775. "related": ".xml"
  2776. }
  2777. },
  2778. "runtimeTargets": {
  2779. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2780. "assetType": "runtime",
  2781. "rid": "win"
  2782. }
  2783. }
  2784. },
  2785. "System.Xml.ReaderWriter/4.3.0": {
  2786. "type": "package",
  2787. "dependencies": {
  2788. "System.Collections": "4.3.0",
  2789. "System.Diagnostics.Debug": "4.3.0",
  2790. "System.Globalization": "4.3.0",
  2791. "System.IO": "4.3.0",
  2792. "System.IO.FileSystem": "4.3.0",
  2793. "System.IO.FileSystem.Primitives": "4.3.0",
  2794. "System.Resources.ResourceManager": "4.3.0",
  2795. "System.Runtime": "4.3.0",
  2796. "System.Runtime.Extensions": "4.3.0",
  2797. "System.Runtime.InteropServices": "4.3.0",
  2798. "System.Text.Encoding": "4.3.0",
  2799. "System.Text.Encoding.Extensions": "4.3.0",
  2800. "System.Text.RegularExpressions": "4.3.0",
  2801. "System.Threading.Tasks": "4.3.0",
  2802. "System.Threading.Tasks.Extensions": "4.3.0"
  2803. },
  2804. "compile": {
  2805. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2806. "related": ".xml"
  2807. }
  2808. },
  2809. "runtime": {
  2810. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2811. }
  2812. },
  2813. "System.Xml.XDocument/4.3.0": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "System.Collections": "4.3.0",
  2817. "System.Diagnostics.Debug": "4.3.0",
  2818. "System.Diagnostics.Tools": "4.3.0",
  2819. "System.Globalization": "4.3.0",
  2820. "System.IO": "4.3.0",
  2821. "System.Reflection": "4.3.0",
  2822. "System.Resources.ResourceManager": "4.3.0",
  2823. "System.Runtime": "4.3.0",
  2824. "System.Runtime.Extensions": "4.3.0",
  2825. "System.Text.Encoding": "4.3.0",
  2826. "System.Threading": "4.3.0",
  2827. "System.Xml.ReaderWriter": "4.3.0"
  2828. },
  2829. "compile": {
  2830. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2831. "related": ".xml"
  2832. }
  2833. },
  2834. "runtime": {
  2835. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2836. }
  2837. },
  2838. "System.Xml.XmlDocument/4.3.0": {
  2839. "type": "package",
  2840. "dependencies": {
  2841. "System.Collections": "4.3.0",
  2842. "System.Diagnostics.Debug": "4.3.0",
  2843. "System.Globalization": "4.3.0",
  2844. "System.IO": "4.3.0",
  2845. "System.Resources.ResourceManager": "4.3.0",
  2846. "System.Runtime": "4.3.0",
  2847. "System.Runtime.Extensions": "4.3.0",
  2848. "System.Text.Encoding": "4.3.0",
  2849. "System.Threading": "4.3.0",
  2850. "System.Xml.ReaderWriter": "4.3.0"
  2851. },
  2852. "compile": {
  2853. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2854. "related": ".xml"
  2855. }
  2856. },
  2857. "runtime": {
  2858. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2859. }
  2860. },
  2861. "ToolGood.Words/3.1.0.2": {
  2862. "type": "package",
  2863. "compile": {
  2864. "lib/netstandard2.1/ToolGood.Words.dll": {
  2865. "related": ".xml"
  2866. }
  2867. },
  2868. "runtime": {
  2869. "lib/netstandard2.1/ToolGood.Words.dll": {
  2870. "related": ".xml"
  2871. }
  2872. }
  2873. },
  2874. "ZXing.Net/0.16.9": {
  2875. "type": "package",
  2876. "compile": {
  2877. "lib/net5.0/zxing.dll": {
  2878. "related": ".XML"
  2879. }
  2880. },
  2881. "runtime": {
  2882. "lib/net5.0/zxing.dll": {
  2883. "related": ".XML"
  2884. }
  2885. }
  2886. },
  2887. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  2888. "type": "package",
  2889. "dependencies": {
  2890. "SixLabors.ImageSharp": "2.1.3",
  2891. "ZXing.Net": "0.16.9"
  2892. },
  2893. "compile": {
  2894. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2895. "related": ".pdb;.xml"
  2896. }
  2897. },
  2898. "runtime": {
  2899. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2900. "related": ".pdb;.xml"
  2901. }
  2902. }
  2903. },
  2904. "Ropin.Core.Common/1.0.0": {
  2905. "type": "project",
  2906. "framework": ".NETCoreApp,Version=v5.0",
  2907. "dependencies": {
  2908. "Coravel": "4.2.1",
  2909. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  2910. "Newtonsoft.Json": "13.0.1",
  2911. "QRCoder": "1.4.3",
  2912. "SixLabors.ImageSharp": "2.1.6",
  2913. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  2914. },
  2915. "compile": {
  2916. "bin/placeholder/Ropin.Core.Common.dll": {}
  2917. },
  2918. "runtime": {
  2919. "bin/placeholder/Ropin.Core.Common.dll": {}
  2920. }
  2921. },
  2922. "Ropin.Inspection.Common/1.0.0": {
  2923. "type": "project",
  2924. "framework": ".NETCoreApp,Version=v5.0",
  2925. "dependencies": {
  2926. "FluentEmail.Smtp": "3.0.2",
  2927. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  2928. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  2929. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  2930. "JavaScriptEngineSwitcher.Core": "3.21.0",
  2931. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2932. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  2933. "Microsoft.Extensions.Configuration": "5.0.0",
  2934. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2935. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  2936. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  2937. "Microsoft.Extensions.Http": "5.0.0",
  2938. "Newtonsoft.Json": "13.0.1",
  2939. "RabbitMQ.Client": "6.8.1",
  2940. "ToolGood.Words": "3.1.0.2",
  2941. "log4net": "2.0.17"
  2942. },
  2943. "compile": {
  2944. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  2945. },
  2946. "runtime": {
  2947. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  2948. }
  2949. },
  2950. "Ropin.Inspection.Model/1.0.0": {
  2951. "type": "project",
  2952. "framework": ".NETCoreApp,Version=v5.0",
  2953. "dependencies": {
  2954. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  2955. "Microsoft.EntityFrameworkCore": "5.0.0",
  2956. "MySql.Data": "8.0.23",
  2957. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  2958. "Ropin.Inspection.Common": "1.0.0"
  2959. },
  2960. "compile": {
  2961. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  2962. },
  2963. "runtime": {
  2964. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  2965. }
  2966. },
  2967. "Ropin.Inspection.Repository/1.0.0": {
  2968. "type": "project",
  2969. "framework": ".NETCoreApp,Version=v5.0",
  2970. "dependencies": {
  2971. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  2972. "Microsoft.EntityFrameworkCore": "5.0.0",
  2973. "Ropin.Inspection.Model": "1.0.0"
  2974. },
  2975. "compile": {
  2976. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  2977. },
  2978. "runtime": {
  2979. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  2980. }
  2981. },
  2982. "Ropin.Inspection.Service/1.0.0": {
  2983. "type": "project",
  2984. "framework": ".NETCoreApp,Version=v5.0",
  2985. "dependencies": {
  2986. "AutoMapper": "10.1.1",
  2987. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2988. "Newtonsoft.Json": "13.0.1",
  2989. "Ropin.Core.Common": "1.0.0",
  2990. "Ropin.Inspection.Common": "1.0.0",
  2991. "Ropin.Inspection.Model": "1.0.0",
  2992. "Ropin.Inspection.Repository": "1.0.0",
  2993. "log4net": "2.0.17"
  2994. },
  2995. "compile": {
  2996. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  2997. },
  2998. "runtime": {
  2999. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3000. }
  3001. },
  3002. "Ropin.Inspection.Tasks/1.0.0": {
  3003. "type": "project",
  3004. "framework": ".NETCoreApp,Version=v5.0",
  3005. "dependencies": {
  3006. "Quartz": "3.3.3",
  3007. "Ropin.Inspection.Common": "1.0.0",
  3008. "Ropin.Inspection.Model": "1.0.0",
  3009. "Ropin.Inspection.Service": "1.0.0"
  3010. },
  3011. "compile": {
  3012. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3013. },
  3014. "runtime": {
  3015. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3016. }
  3017. }
  3018. }
  3019. },
  3020. "libraries": {
  3021. "AdvancedStringBuilder/0.1.0": {
  3022. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3023. "type": "package",
  3024. "path": "advancedstringbuilder/0.1.0",
  3025. "files": [
  3026. ".nupkg.metadata",
  3027. ".signature.p7s",
  3028. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3029. "advancedstringbuilder.nuspec",
  3030. "lib/net40-client/AdvancedStringBuilder.dll",
  3031. "lib/net40-client/AdvancedStringBuilder.xml",
  3032. "lib/net45/AdvancedStringBuilder.dll",
  3033. "lib/net45/AdvancedStringBuilder.xml",
  3034. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3035. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3036. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3037. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3038. ]
  3039. },
  3040. "Autofac/6.2.0": {
  3041. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3042. "type": "package",
  3043. "path": "autofac/6.2.0",
  3044. "files": [
  3045. ".nupkg.metadata",
  3046. ".signature.p7s",
  3047. "autofac.6.2.0.nupkg.sha512",
  3048. "autofac.nuspec",
  3049. "icon.png",
  3050. "lib/net5.0/Autofac.dll",
  3051. "lib/net5.0/Autofac.pdb",
  3052. "lib/net5.0/Autofac.xml",
  3053. "lib/netstandard2.0/Autofac.dll",
  3054. "lib/netstandard2.0/Autofac.pdb",
  3055. "lib/netstandard2.0/Autofac.xml",
  3056. "lib/netstandard2.1/Autofac.dll",
  3057. "lib/netstandard2.1/Autofac.pdb",
  3058. "lib/netstandard2.1/Autofac.xml"
  3059. ]
  3060. },
  3061. "Autofac.Extras.DynamicProxy/6.0.0": {
  3062. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3063. "type": "package",
  3064. "path": "autofac.extras.dynamicproxy/6.0.0",
  3065. "files": [
  3066. ".nupkg.metadata",
  3067. ".signature.p7s",
  3068. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3069. "autofac.extras.dynamicproxy.nuspec",
  3070. "icon.png",
  3071. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3072. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3073. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3074. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3075. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3076. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3077. ]
  3078. },
  3079. "AutoMapper/10.1.1": {
  3080. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3081. "type": "package",
  3082. "path": "automapper/10.1.1",
  3083. "files": [
  3084. ".nupkg.metadata",
  3085. ".signature.p7s",
  3086. "automapper.10.1.1.nupkg.sha512",
  3087. "automapper.nuspec",
  3088. "icon.png",
  3089. "lib/net461/AutoMapper.dll",
  3090. "lib/net461/AutoMapper.xml",
  3091. "lib/netstandard2.0/AutoMapper.dll",
  3092. "lib/netstandard2.0/AutoMapper.xml"
  3093. ]
  3094. },
  3095. "BouncyCastle.NetCore/1.8.5": {
  3096. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3097. "type": "package",
  3098. "path": "bouncycastle.netcore/1.8.5",
  3099. "files": [
  3100. ".nupkg.metadata",
  3101. ".signature.p7s",
  3102. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3103. "bouncycastle.netcore.nuspec",
  3104. "lib/Mono/BouncyCastle.Crypto.dll",
  3105. "lib/Mono/BouncyCastle.Crypto.xml",
  3106. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3107. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3108. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3109. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3110. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3111. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3112. "lib/net20/BouncyCastle.Crypto.dll",
  3113. "lib/net20/BouncyCastle.Crypto.xml",
  3114. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3115. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3116. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3117. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3118. ]
  3119. },
  3120. "Castle.Core/4.4.0": {
  3121. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3122. "type": "package",
  3123. "path": "castle.core/4.4.0",
  3124. "files": [
  3125. ".nupkg.metadata",
  3126. ".signature.p7s",
  3127. "ASL - Apache Software Foundation License.txt",
  3128. "CHANGELOG.md",
  3129. "LICENSE",
  3130. "castle.core.4.4.0.nupkg.sha512",
  3131. "castle.core.nuspec",
  3132. "lib/net35/Castle.Core.dll",
  3133. "lib/net35/Castle.Core.xml",
  3134. "lib/net40/Castle.Core.dll",
  3135. "lib/net40/Castle.Core.xml",
  3136. "lib/net45/Castle.Core.dll",
  3137. "lib/net45/Castle.Core.xml",
  3138. "lib/netstandard1.3/Castle.Core.dll",
  3139. "lib/netstandard1.3/Castle.Core.xml",
  3140. "lib/netstandard1.5/Castle.Core.dll",
  3141. "lib/netstandard1.5/Castle.Core.xml",
  3142. "readme.txt"
  3143. ]
  3144. },
  3145. "Coravel/4.2.1": {
  3146. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3147. "type": "package",
  3148. "path": "coravel/4.2.1",
  3149. "files": [
  3150. ".nupkg.metadata",
  3151. ".signature.p7s",
  3152. "coravel.4.2.1.nupkg.sha512",
  3153. "coravel.nuspec",
  3154. "lib/netstandard2.0/Coravel.dll",
  3155. "lib/netstandard2.0/Coravel.xml",
  3156. "logo.png",
  3157. "readme.md"
  3158. ]
  3159. },
  3160. "FluentEmail.Core/3.0.2": {
  3161. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3162. "type": "package",
  3163. "path": "fluentemail.core/3.0.2",
  3164. "files": [
  3165. ".nupkg.metadata",
  3166. ".signature.p7s",
  3167. "fluentemail.core.3.0.2.nupkg.sha512",
  3168. "fluentemail.core.nuspec",
  3169. "fluentemail_logo_64x64.png",
  3170. "lib/netstandard2.0/FluentEmail.Core.dll"
  3171. ]
  3172. },
  3173. "FluentEmail.Smtp/3.0.2": {
  3174. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3175. "type": "package",
  3176. "path": "fluentemail.smtp/3.0.2",
  3177. "files": [
  3178. ".nupkg.metadata",
  3179. ".signature.p7s",
  3180. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3181. "fluentemail.smtp.nuspec",
  3182. "fluentemail_logo_64x64.png",
  3183. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3184. ]
  3185. },
  3186. "Google.Protobuf/3.11.4": {
  3187. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3188. "type": "package",
  3189. "path": "google.protobuf/3.11.4",
  3190. "files": [
  3191. ".nupkg.metadata",
  3192. ".signature.p7s",
  3193. "google.protobuf.3.11.4.nupkg.sha512",
  3194. "google.protobuf.nuspec",
  3195. "lib/net45/Google.Protobuf.dll",
  3196. "lib/net45/Google.Protobuf.pdb",
  3197. "lib/net45/Google.Protobuf.xml",
  3198. "lib/netstandard1.0/Google.Protobuf.dll",
  3199. "lib/netstandard1.0/Google.Protobuf.pdb",
  3200. "lib/netstandard1.0/Google.Protobuf.xml",
  3201. "lib/netstandard2.0/Google.Protobuf.dll",
  3202. "lib/netstandard2.0/Google.Protobuf.pdb",
  3203. "lib/netstandard2.0/Google.Protobuf.xml"
  3204. ]
  3205. },
  3206. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3207. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3208. "type": "package",
  3209. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3210. "files": [
  3211. ".nupkg.metadata",
  3212. ".signature.p7s",
  3213. "LICENSE.txt",
  3214. "advanced-string-builder-license.txt",
  3215. "chakra-samples-license.txt",
  3216. "icon.png",
  3217. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3218. "javascriptengineswitcher.chakracore.nuspec",
  3219. "jsrt-dotnet-license.txt",
  3220. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3221. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3222. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3223. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3224. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3225. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3226. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3227. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3228. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3229. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3230. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3231. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3232. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3233. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3234. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3235. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3236. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3237. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3238. "polyfills-for-old-dot-net-license.txt",
  3239. "readme.txt"
  3240. ]
  3241. },
  3242. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3243. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3244. "type": "package",
  3245. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3246. "files": [
  3247. ".nupkg.metadata",
  3248. ".signature.p7s",
  3249. "LICENSE.txt",
  3250. "chakra-core-license.txt",
  3251. "icon.png",
  3252. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3253. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3254. "readme.txt",
  3255. "runtimes/linux-x64/native/libChakraCore.so"
  3256. ]
  3257. },
  3258. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3259. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3260. "type": "package",
  3261. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3262. "hasTools": true,
  3263. "files": [
  3264. ".nupkg.metadata",
  3265. ".signature.p7s",
  3266. "LICENSE.txt",
  3267. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3268. "chakra-core-license.txt",
  3269. "icon.png",
  3270. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3271. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3272. "readme.txt",
  3273. "runtimes/win-x64/native/ChakraCore.dll",
  3274. "tools/Install.ps1",
  3275. "tools/Uninstall.ps1"
  3276. ]
  3277. },
  3278. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3279. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3280. "type": "package",
  3281. "path": "javascriptengineswitcher.core/3.21.0",
  3282. "files": [
  3283. ".nupkg.metadata",
  3284. ".signature.p7s",
  3285. "LICENSE.txt",
  3286. "advanced-string-builder-license.txt",
  3287. "icon.png",
  3288. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3289. "javascriptengineswitcher.core.nuspec",
  3290. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3291. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3292. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3293. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3294. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3295. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3296. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3297. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3298. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3299. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3300. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3301. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3302. "readme.txt"
  3303. ]
  3304. },
  3305. "K4os.Compression.LZ4/1.1.11": {
  3306. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3307. "type": "package",
  3308. "path": "k4os.compression.lz4/1.1.11",
  3309. "files": [
  3310. ".nupkg.metadata",
  3311. ".signature.p7s",
  3312. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3313. "k4os.compression.lz4.nuspec",
  3314. "lib/net45/K4os.Compression.LZ4.dll",
  3315. "lib/net45/K4os.Compression.LZ4.xml",
  3316. "lib/net46/K4os.Compression.LZ4.dll",
  3317. "lib/net46/K4os.Compression.LZ4.xml",
  3318. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3319. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3320. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3321. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3322. ]
  3323. },
  3324. "K4os.Compression.LZ4.Streams/1.1.11": {
  3325. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3326. "type": "package",
  3327. "path": "k4os.compression.lz4.streams/1.1.11",
  3328. "files": [
  3329. ".nupkg.metadata",
  3330. ".signature.p7s",
  3331. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3332. "k4os.compression.lz4.streams.nuspec",
  3333. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3334. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3335. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3336. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3337. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3338. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3339. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3340. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3341. ]
  3342. },
  3343. "K4os.Hash.xxHash/1.0.6": {
  3344. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3345. "type": "package",
  3346. "path": "k4os.hash.xxhash/1.0.6",
  3347. "files": [
  3348. ".nupkg.metadata",
  3349. ".signature.p7s",
  3350. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3351. "k4os.hash.xxhash.nuspec",
  3352. "lib/net45/K4os.Hash.xxHash.dll",
  3353. "lib/net45/K4os.Hash.xxHash.xml",
  3354. "lib/net46/K4os.Hash.xxHash.dll",
  3355. "lib/net46/K4os.Hash.xxHash.xml",
  3356. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3357. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3358. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3359. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3360. ]
  3361. },
  3362. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3363. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3364. "type": "package",
  3365. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3366. "files": [
  3367. ".nupkg.metadata",
  3368. ".signature.p7s",
  3369. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3370. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3371. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3372. "linqkit.microsoft.entityframeworkcore.nuspec"
  3373. ]
  3374. },
  3375. "log4net/2.0.17": {
  3376. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3377. "type": "package",
  3378. "path": "log4net/2.0.17",
  3379. "files": [
  3380. ".nupkg.metadata",
  3381. ".signature.p7s",
  3382. "lib/net20/log4net.dll",
  3383. "lib/net20/log4net.xml",
  3384. "lib/net35/log4net.dll",
  3385. "lib/net35/log4net.xml",
  3386. "lib/net40-client/log4net.dll",
  3387. "lib/net40-client/log4net.xml",
  3388. "lib/net40/log4net.dll",
  3389. "lib/net40/log4net.xml",
  3390. "lib/net45/log4net.dll",
  3391. "lib/net45/log4net.xml",
  3392. "lib/netstandard1.3/log4net.dll",
  3393. "lib/netstandard1.3/log4net.xml",
  3394. "lib/netstandard2.0/log4net.dll",
  3395. "lib/netstandard2.0/log4net.xml",
  3396. "log4net.2.0.17.nupkg.sha512",
  3397. "log4net.nuspec",
  3398. "package-icon.png"
  3399. ]
  3400. },
  3401. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3402. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3403. "type": "package",
  3404. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3405. "files": [
  3406. ".nupkg.metadata",
  3407. ".signature.p7s",
  3408. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3409. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3410. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3411. "microsoft.aspnetcore.http.abstractions.nuspec"
  3412. ]
  3413. },
  3414. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3415. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3416. "type": "package",
  3417. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3418. "files": [
  3419. ".nupkg.metadata",
  3420. ".signature.p7s",
  3421. "Icon.png",
  3422. "THIRD-PARTY-NOTICES.TXT",
  3423. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3424. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3425. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3426. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3427. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3428. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3429. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3430. "microsoft.aspnetcore.http.features.nuspec"
  3431. ]
  3432. },
  3433. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3434. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3435. "type": "package",
  3436. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3437. "files": [
  3438. ".nupkg.metadata",
  3439. ".signature.p7s",
  3440. "Icon.png",
  3441. "THIRD-PARTY-NOTICES.TXT",
  3442. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3443. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3444. "microsoft.aspnetcore.nodeservices.nuspec"
  3445. ]
  3446. },
  3447. "Microsoft.CSharp/4.7.0": {
  3448. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3449. "type": "package",
  3450. "path": "microsoft.csharp/4.7.0",
  3451. "files": [
  3452. ".nupkg.metadata",
  3453. ".signature.p7s",
  3454. "LICENSE.TXT",
  3455. "THIRD-PARTY-NOTICES.TXT",
  3456. "lib/MonoAndroid10/_._",
  3457. "lib/MonoTouch10/_._",
  3458. "lib/net45/_._",
  3459. "lib/netcore50/Microsoft.CSharp.dll",
  3460. "lib/netcoreapp2.0/_._",
  3461. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3462. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3463. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3464. "lib/portable-net45+win8+wp8+wpa81/_._",
  3465. "lib/uap10.0.16299/_._",
  3466. "lib/win8/_._",
  3467. "lib/wp80/_._",
  3468. "lib/wpa81/_._",
  3469. "lib/xamarinios10/_._",
  3470. "lib/xamarinmac20/_._",
  3471. "lib/xamarintvos10/_._",
  3472. "lib/xamarinwatchos10/_._",
  3473. "microsoft.csharp.4.7.0.nupkg.sha512",
  3474. "microsoft.csharp.nuspec",
  3475. "ref/MonoAndroid10/_._",
  3476. "ref/MonoTouch10/_._",
  3477. "ref/net45/_._",
  3478. "ref/netcore50/Microsoft.CSharp.dll",
  3479. "ref/netcore50/Microsoft.CSharp.xml",
  3480. "ref/netcore50/de/Microsoft.CSharp.xml",
  3481. "ref/netcore50/es/Microsoft.CSharp.xml",
  3482. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3483. "ref/netcore50/it/Microsoft.CSharp.xml",
  3484. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3485. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3486. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3487. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3488. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3489. "ref/netcoreapp2.0/_._",
  3490. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3491. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3492. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3493. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3494. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3495. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3496. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3497. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3498. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3499. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3500. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3501. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3502. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3503. "ref/portable-net45+win8+wp8+wpa81/_._",
  3504. "ref/uap10.0.16299/_._",
  3505. "ref/win8/_._",
  3506. "ref/wp80/_._",
  3507. "ref/wpa81/_._",
  3508. "ref/xamarinios10/_._",
  3509. "ref/xamarinmac20/_._",
  3510. "ref/xamarintvos10/_._",
  3511. "ref/xamarinwatchos10/_._",
  3512. "useSharedDesignerContext.txt",
  3513. "version.txt"
  3514. ]
  3515. },
  3516. "Microsoft.EntityFrameworkCore/5.0.0": {
  3517. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3518. "type": "package",
  3519. "path": "microsoft.entityframeworkcore/5.0.0",
  3520. "files": [
  3521. ".nupkg.metadata",
  3522. ".signature.p7s",
  3523. "Icon.png",
  3524. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3525. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3526. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3527. "microsoft.entityframeworkcore.nuspec"
  3528. ]
  3529. },
  3530. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3531. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3532. "type": "package",
  3533. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3534. "files": [
  3535. ".nupkg.metadata",
  3536. ".signature.p7s",
  3537. "Icon.png",
  3538. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3539. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3540. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3541. "microsoft.entityframeworkcore.abstractions.nuspec"
  3542. ]
  3543. },
  3544. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3545. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3546. "type": "package",
  3547. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3548. "files": [
  3549. ".nupkg.metadata",
  3550. ".signature.p7s",
  3551. "Icon.png",
  3552. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3553. "lib/netstandard2.0/_._",
  3554. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3555. "microsoft.entityframeworkcore.analyzers.nuspec"
  3556. ]
  3557. },
  3558. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3559. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3560. "type": "package",
  3561. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3562. "files": [
  3563. ".nupkg.metadata",
  3564. ".signature.p7s",
  3565. "Icon.png",
  3566. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3567. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3568. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3569. "microsoft.entityframeworkcore.relational.nuspec"
  3570. ]
  3571. },
  3572. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3573. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3574. "type": "package",
  3575. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3576. "files": [
  3577. ".nupkg.metadata",
  3578. ".signature.p7s",
  3579. "Icon.png",
  3580. "LICENSE.TXT",
  3581. "THIRD-PARTY-NOTICES.TXT",
  3582. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3583. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3584. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3585. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3586. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3587. "microsoft.extensions.caching.abstractions.nuspec",
  3588. "useSharedDesignerContext.txt",
  3589. "version.txt"
  3590. ]
  3591. },
  3592. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3593. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3594. "type": "package",
  3595. "path": "microsoft.extensions.caching.memory/5.0.0",
  3596. "files": [
  3597. ".nupkg.metadata",
  3598. ".signature.p7s",
  3599. "Icon.png",
  3600. "LICENSE.TXT",
  3601. "THIRD-PARTY-NOTICES.TXT",
  3602. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3603. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3604. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3605. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3606. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3607. "microsoft.extensions.caching.memory.nuspec",
  3608. "useSharedDesignerContext.txt",
  3609. "version.txt"
  3610. ]
  3611. },
  3612. "Microsoft.Extensions.Configuration/5.0.0": {
  3613. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3614. "type": "package",
  3615. "path": "microsoft.extensions.configuration/5.0.0",
  3616. "files": [
  3617. ".nupkg.metadata",
  3618. ".signature.p7s",
  3619. "Icon.png",
  3620. "LICENSE.TXT",
  3621. "THIRD-PARTY-NOTICES.TXT",
  3622. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3623. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3624. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3625. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3626. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3627. "microsoft.extensions.configuration.nuspec",
  3628. "useSharedDesignerContext.txt",
  3629. "version.txt"
  3630. ]
  3631. },
  3632. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3633. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3634. "type": "package",
  3635. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3636. "files": [
  3637. ".nupkg.metadata",
  3638. ".signature.p7s",
  3639. "Icon.png",
  3640. "LICENSE.TXT",
  3641. "THIRD-PARTY-NOTICES.TXT",
  3642. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3643. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3644. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3645. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3646. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3647. "microsoft.extensions.configuration.abstractions.nuspec",
  3648. "useSharedDesignerContext.txt",
  3649. "version.txt"
  3650. ]
  3651. },
  3652. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3653. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3654. "type": "package",
  3655. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3656. "files": [
  3657. ".nupkg.metadata",
  3658. ".signature.p7s",
  3659. "Icon.png",
  3660. "LICENSE.TXT",
  3661. "THIRD-PARTY-NOTICES.TXT",
  3662. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3663. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3664. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3665. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3666. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3667. "microsoft.extensions.configuration.binder.nuspec",
  3668. "useSharedDesignerContext.txt",
  3669. "version.txt"
  3670. ]
  3671. },
  3672. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3673. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3674. "type": "package",
  3675. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3676. "files": [
  3677. ".nupkg.metadata",
  3678. ".signature.p7s",
  3679. "Icon.png",
  3680. "LICENSE.TXT",
  3681. "THIRD-PARTY-NOTICES.TXT",
  3682. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3683. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3684. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3685. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3686. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3687. "microsoft.extensions.configuration.fileextensions.nuspec",
  3688. "useSharedDesignerContext.txt",
  3689. "version.txt"
  3690. ]
  3691. },
  3692. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3693. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3694. "type": "package",
  3695. "path": "microsoft.extensions.configuration.json/5.0.0",
  3696. "files": [
  3697. ".nupkg.metadata",
  3698. ".signature.p7s",
  3699. "Icon.png",
  3700. "LICENSE.TXT",
  3701. "THIRD-PARTY-NOTICES.TXT",
  3702. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3703. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3704. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3705. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3706. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3707. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3708. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3709. "microsoft.extensions.configuration.json.nuspec",
  3710. "useSharedDesignerContext.txt",
  3711. "version.txt"
  3712. ]
  3713. },
  3714. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3715. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3716. "type": "package",
  3717. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3718. "files": [
  3719. ".nupkg.metadata",
  3720. ".signature.p7s",
  3721. "Icon.png",
  3722. "LICENSE.TXT",
  3723. "THIRD-PARTY-NOTICES.TXT",
  3724. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3725. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3726. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3727. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3728. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3729. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3730. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3731. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3732. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3733. "microsoft.extensions.dependencyinjection.nuspec",
  3734. "useSharedDesignerContext.txt",
  3735. "version.txt"
  3736. ]
  3737. },
  3738. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3739. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3740. "type": "package",
  3741. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3742. "files": [
  3743. ".nupkg.metadata",
  3744. ".signature.p7s",
  3745. "Icon.png",
  3746. "LICENSE.TXT",
  3747. "THIRD-PARTY-NOTICES.TXT",
  3748. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3749. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3750. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3751. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3752. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3753. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3754. "useSharedDesignerContext.txt",
  3755. "version.txt"
  3756. ]
  3757. },
  3758. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3759. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3760. "type": "package",
  3761. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3762. "files": [
  3763. ".nupkg.metadata",
  3764. ".signature.p7s",
  3765. "Icon.png",
  3766. "LICENSE.TXT",
  3767. "THIRD-PARTY-NOTICES.TXT",
  3768. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3769. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3770. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3771. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3772. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3773. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3774. "useSharedDesignerContext.txt",
  3775. "version.txt"
  3776. ]
  3777. },
  3778. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3779. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3780. "type": "package",
  3781. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3782. "files": [
  3783. ".nupkg.metadata",
  3784. ".signature.p7s",
  3785. "Icon.png",
  3786. "LICENSE.TXT",
  3787. "THIRD-PARTY-NOTICES.TXT",
  3788. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3789. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3790. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3791. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3792. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3793. "microsoft.extensions.fileproviders.physical.nuspec",
  3794. "useSharedDesignerContext.txt",
  3795. "version.txt"
  3796. ]
  3797. },
  3798. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3799. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3800. "type": "package",
  3801. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3802. "files": [
  3803. ".nupkg.metadata",
  3804. ".signature.p7s",
  3805. "Icon.png",
  3806. "LICENSE.TXT",
  3807. "THIRD-PARTY-NOTICES.TXT",
  3808. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3809. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3810. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3811. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3812. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3813. "microsoft.extensions.filesystemglobbing.nuspec",
  3814. "useSharedDesignerContext.txt",
  3815. "version.txt"
  3816. ]
  3817. },
  3818. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  3819. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  3820. "type": "package",
  3821. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  3822. "files": [
  3823. ".nupkg.metadata",
  3824. ".signature.p7s",
  3825. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3826. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3827. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3828. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3829. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  3830. "microsoft.extensions.hosting.abstractions.nuspec",
  3831. "packageIcon.png"
  3832. ]
  3833. },
  3834. "Microsoft.Extensions.Http/5.0.0": {
  3835. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  3836. "type": "package",
  3837. "path": "microsoft.extensions.http/5.0.0",
  3838. "files": [
  3839. ".nupkg.metadata",
  3840. ".signature.p7s",
  3841. "Icon.png",
  3842. "LICENSE.TXT",
  3843. "THIRD-PARTY-NOTICES.TXT",
  3844. "lib/net461/Microsoft.Extensions.Http.dll",
  3845. "lib/net461/Microsoft.Extensions.Http.xml",
  3846. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  3847. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  3848. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  3849. "microsoft.extensions.http.nuspec",
  3850. "useSharedDesignerContext.txt",
  3851. "version.txt"
  3852. ]
  3853. },
  3854. "Microsoft.Extensions.Logging/5.0.0": {
  3855. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3856. "type": "package",
  3857. "path": "microsoft.extensions.logging/5.0.0",
  3858. "files": [
  3859. ".nupkg.metadata",
  3860. ".signature.p7s",
  3861. "Icon.png",
  3862. "LICENSE.TXT",
  3863. "THIRD-PARTY-NOTICES.TXT",
  3864. "lib/net461/Microsoft.Extensions.Logging.dll",
  3865. "lib/net461/Microsoft.Extensions.Logging.xml",
  3866. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3867. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3868. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3869. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3870. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3871. "microsoft.extensions.logging.nuspec",
  3872. "useSharedDesignerContext.txt",
  3873. "version.txt"
  3874. ]
  3875. },
  3876. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3877. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3878. "type": "package",
  3879. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  3880. "files": [
  3881. ".nupkg.metadata",
  3882. ".signature.p7s",
  3883. "Icon.png",
  3884. "LICENSE.TXT",
  3885. "THIRD-PARTY-NOTICES.TXT",
  3886. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3887. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3888. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3889. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3890. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  3891. "microsoft.extensions.logging.abstractions.nuspec",
  3892. "useSharedDesignerContext.txt",
  3893. "version.txt"
  3894. ]
  3895. },
  3896. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  3897. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  3898. "type": "package",
  3899. "path": "microsoft.extensions.logging.configuration/3.1.30",
  3900. "files": [
  3901. ".nupkg.metadata",
  3902. ".signature.p7s",
  3903. "Icon.png",
  3904. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  3905. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  3906. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3907. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3908. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  3909. "microsoft.extensions.logging.configuration.nuspec"
  3910. ]
  3911. },
  3912. "Microsoft.Extensions.Logging.Console/3.1.30": {
  3913. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  3914. "type": "package",
  3915. "path": "microsoft.extensions.logging.console/3.1.30",
  3916. "files": [
  3917. ".nupkg.metadata",
  3918. ".signature.p7s",
  3919. "Icon.png",
  3920. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  3921. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  3922. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3923. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3924. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  3925. "microsoft.extensions.logging.console.nuspec"
  3926. ]
  3927. },
  3928. "Microsoft.Extensions.Options/5.0.0": {
  3929. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  3930. "type": "package",
  3931. "path": "microsoft.extensions.options/5.0.0",
  3932. "files": [
  3933. ".nupkg.metadata",
  3934. ".signature.p7s",
  3935. "Icon.png",
  3936. "LICENSE.TXT",
  3937. "THIRD-PARTY-NOTICES.TXT",
  3938. "lib/net461/Microsoft.Extensions.Options.dll",
  3939. "lib/net461/Microsoft.Extensions.Options.xml",
  3940. "lib/net5.0/Microsoft.Extensions.Options.dll",
  3941. "lib/net5.0/Microsoft.Extensions.Options.xml",
  3942. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3943. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3944. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  3945. "microsoft.extensions.options.nuspec",
  3946. "useSharedDesignerContext.txt",
  3947. "version.txt"
  3948. ]
  3949. },
  3950. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  3951. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  3952. "type": "package",
  3953. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  3954. "files": [
  3955. ".nupkg.metadata",
  3956. ".signature.p7s",
  3957. "Icon.png",
  3958. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3959. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3960. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3961. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3962. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  3963. "microsoft.extensions.options.configurationextensions.nuspec"
  3964. ]
  3965. },
  3966. "Microsoft.Extensions.Primitives/5.0.0": {
  3967. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  3968. "type": "package",
  3969. "path": "microsoft.extensions.primitives/5.0.0",
  3970. "files": [
  3971. ".nupkg.metadata",
  3972. ".signature.p7s",
  3973. "Icon.png",
  3974. "LICENSE.TXT",
  3975. "THIRD-PARTY-NOTICES.TXT",
  3976. "lib/net461/Microsoft.Extensions.Primitives.dll",
  3977. "lib/net461/Microsoft.Extensions.Primitives.xml",
  3978. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  3979. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  3980. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3981. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3982. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  3983. "microsoft.extensions.primitives.nuspec",
  3984. "useSharedDesignerContext.txt",
  3985. "version.txt"
  3986. ]
  3987. },
  3988. "Microsoft.NETCore.Platforms/5.0.0": {
  3989. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3990. "type": "package",
  3991. "path": "microsoft.netcore.platforms/5.0.0",
  3992. "files": [
  3993. ".nupkg.metadata",
  3994. ".signature.p7s",
  3995. "Icon.png",
  3996. "LICENSE.TXT",
  3997. "THIRD-PARTY-NOTICES.TXT",
  3998. "lib/netstandard1.0/_._",
  3999. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4000. "microsoft.netcore.platforms.nuspec",
  4001. "runtime.json",
  4002. "useSharedDesignerContext.txt",
  4003. "version.txt"
  4004. ]
  4005. },
  4006. "Microsoft.NETCore.Targets/1.1.0": {
  4007. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4008. "type": "package",
  4009. "path": "microsoft.netcore.targets/1.1.0",
  4010. "files": [
  4011. ".nupkg.metadata",
  4012. ".signature.p7s",
  4013. "ThirdPartyNotices.txt",
  4014. "dotnet_library_license.txt",
  4015. "lib/netstandard1.0/_._",
  4016. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4017. "microsoft.netcore.targets.nuspec",
  4018. "runtime.json"
  4019. ]
  4020. },
  4021. "Microsoft.Win32.Primitives/4.3.0": {
  4022. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4023. "type": "package",
  4024. "path": "microsoft.win32.primitives/4.3.0",
  4025. "files": [
  4026. ".nupkg.metadata",
  4027. ".signature.p7s",
  4028. "ThirdPartyNotices.txt",
  4029. "dotnet_library_license.txt",
  4030. "lib/MonoAndroid10/_._",
  4031. "lib/MonoTouch10/_._",
  4032. "lib/net46/Microsoft.Win32.Primitives.dll",
  4033. "lib/xamarinios10/_._",
  4034. "lib/xamarinmac20/_._",
  4035. "lib/xamarintvos10/_._",
  4036. "lib/xamarinwatchos10/_._",
  4037. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4038. "microsoft.win32.primitives.nuspec",
  4039. "ref/MonoAndroid10/_._",
  4040. "ref/MonoTouch10/_._",
  4041. "ref/net46/Microsoft.Win32.Primitives.dll",
  4042. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4043. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4044. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4045. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4046. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4047. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4048. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4049. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4050. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4051. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4052. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4053. "ref/xamarinios10/_._",
  4054. "ref/xamarinmac20/_._",
  4055. "ref/xamarintvos10/_._",
  4056. "ref/xamarinwatchos10/_._"
  4057. ]
  4058. },
  4059. "Microsoft.Win32.SystemEvents/5.0.0": {
  4060. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4061. "type": "package",
  4062. "path": "microsoft.win32.systemevents/5.0.0",
  4063. "files": [
  4064. ".nupkg.metadata",
  4065. ".signature.p7s",
  4066. "Icon.png",
  4067. "LICENSE.TXT",
  4068. "THIRD-PARTY-NOTICES.TXT",
  4069. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4070. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4071. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4072. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4073. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4074. "microsoft.win32.systemevents.nuspec",
  4075. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4076. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4077. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4078. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4079. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4080. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4081. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4082. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4083. "useSharedDesignerContext.txt",
  4084. "version.txt"
  4085. ]
  4086. },
  4087. "MySql.Data/8.0.23": {
  4088. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4089. "type": "package",
  4090. "path": "mysql.data/8.0.23",
  4091. "files": [
  4092. ".nupkg.metadata",
  4093. ".signature.p7s",
  4094. "lib/net452/MySql.Data.dll",
  4095. "lib/net452/MySql.Data.xml",
  4096. "lib/net452/Ubiety.Dns.Core.dll",
  4097. "lib/net452/Zstandard.Net.dll",
  4098. "lib/net48/MySql.Data.dll",
  4099. "lib/net48/MySql.Data.xml",
  4100. "lib/net48/Ubiety.Dns.Core.dll",
  4101. "lib/net48/Zstandard.Net.dll",
  4102. "lib/net5.0/MySql.Data.dll",
  4103. "lib/net5.0/MySql.Data.xml",
  4104. "lib/net5.0/Ubiety.Dns.Core.dll",
  4105. "lib/net5.0/Zstandard.Net.dll",
  4106. "lib/netstandard2.0/MySql.Data.dll",
  4107. "lib/netstandard2.0/MySql.Data.xml",
  4108. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4109. "lib/netstandard2.0/Zstandard.Net.dll",
  4110. "lib/netstandard2.1/MySql.Data.dll",
  4111. "lib/netstandard2.1/MySql.Data.xml",
  4112. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4113. "lib/netstandard2.1/Zstandard.Net.dll",
  4114. "mysql.data.8.0.23.nupkg.sha512",
  4115. "mysql.data.nuspec"
  4116. ]
  4117. },
  4118. "MySqlConnector/1.1.0": {
  4119. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4120. "type": "package",
  4121. "path": "mysqlconnector/1.1.0",
  4122. "files": [
  4123. ".nupkg.metadata",
  4124. ".signature.p7s",
  4125. "lib/net45/MySqlConnector.dll",
  4126. "lib/net45/MySqlConnector.xml",
  4127. "lib/net461/MySqlConnector.dll",
  4128. "lib/net461/MySqlConnector.xml",
  4129. "lib/net471/MySqlConnector.dll",
  4130. "lib/net471/MySqlConnector.xml",
  4131. "lib/net5.0/MySqlConnector.dll",
  4132. "lib/net5.0/MySqlConnector.xml",
  4133. "lib/netcoreapp2.1/MySqlConnector.dll",
  4134. "lib/netcoreapp2.1/MySqlConnector.xml",
  4135. "lib/netcoreapp3.1/MySqlConnector.dll",
  4136. "lib/netcoreapp3.1/MySqlConnector.xml",
  4137. "lib/netstandard1.3/MySqlConnector.dll",
  4138. "lib/netstandard1.3/MySqlConnector.xml",
  4139. "lib/netstandard2.0/MySqlConnector.dll",
  4140. "lib/netstandard2.0/MySqlConnector.xml",
  4141. "lib/netstandard2.1/MySqlConnector.dll",
  4142. "lib/netstandard2.1/MySqlConnector.xml",
  4143. "logo.png",
  4144. "mysqlconnector.1.1.0.nupkg.sha512",
  4145. "mysqlconnector.nuspec"
  4146. ]
  4147. },
  4148. "NETStandard.Library/1.6.1": {
  4149. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4150. "type": "package",
  4151. "path": "netstandard.library/1.6.1",
  4152. "files": [
  4153. ".nupkg.metadata",
  4154. ".signature.p7s",
  4155. "ThirdPartyNotices.txt",
  4156. "dotnet_library_license.txt",
  4157. "netstandard.library.1.6.1.nupkg.sha512",
  4158. "netstandard.library.nuspec"
  4159. ]
  4160. },
  4161. "Newtonsoft.Json/13.0.1": {
  4162. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4163. "type": "package",
  4164. "path": "newtonsoft.json/13.0.1",
  4165. "files": [
  4166. ".nupkg.metadata",
  4167. ".signature.p7s",
  4168. "LICENSE.md",
  4169. "lib/net20/Newtonsoft.Json.dll",
  4170. "lib/net20/Newtonsoft.Json.xml",
  4171. "lib/net35/Newtonsoft.Json.dll",
  4172. "lib/net35/Newtonsoft.Json.xml",
  4173. "lib/net40/Newtonsoft.Json.dll",
  4174. "lib/net40/Newtonsoft.Json.xml",
  4175. "lib/net45/Newtonsoft.Json.dll",
  4176. "lib/net45/Newtonsoft.Json.xml",
  4177. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4178. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4179. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4180. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4181. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4182. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4183. "newtonsoft.json.13.0.1.nupkg.sha512",
  4184. "newtonsoft.json.nuspec",
  4185. "packageIcon.png"
  4186. ]
  4187. },
  4188. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4189. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4190. "type": "package",
  4191. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4192. "files": [
  4193. ".nupkg.metadata",
  4194. ".signature.p7s",
  4195. "icon.png",
  4196. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4197. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4198. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4199. "pomelo.entityframeworkcore.mysql.nuspec"
  4200. ]
  4201. },
  4202. "QRCoder/1.4.3": {
  4203. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4204. "type": "package",
  4205. "path": "qrcoder/1.4.3",
  4206. "files": [
  4207. ".nupkg.metadata",
  4208. ".signature.p7s",
  4209. "lib/net35/QRCoder.dll",
  4210. "lib/net40/QRCoder.dll",
  4211. "lib/net5.0-windows7.0/QRCoder.dll",
  4212. "lib/net5.0/QRCoder.dll",
  4213. "lib/net6.0-windows7.0/QRCoder.dll",
  4214. "lib/net6.0/QRCoder.dll",
  4215. "lib/netstandard1.3/QRCoder.dll",
  4216. "lib/netstandard2.0/QRCoder.dll",
  4217. "nuget-icon.png",
  4218. "nuget-readme.md",
  4219. "qrcoder.1.4.3.nupkg.sha512",
  4220. "qrcoder.nuspec"
  4221. ]
  4222. },
  4223. "Quartz/3.3.3": {
  4224. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  4225. "type": "package",
  4226. "path": "quartz/3.3.3",
  4227. "files": [
  4228. ".nupkg.metadata",
  4229. ".signature.p7s",
  4230. "lib/net461/Quartz.dll",
  4231. "lib/net461/Quartz.xml",
  4232. "lib/net472/Quartz.dll",
  4233. "lib/net472/Quartz.xml",
  4234. "lib/netstandard2.0/Quartz.dll",
  4235. "lib/netstandard2.0/Quartz.xml",
  4236. "quartz-logo-small.png",
  4237. "quartz.3.3.3.nupkg.sha512",
  4238. "quartz.nuspec"
  4239. ]
  4240. },
  4241. "RabbitMQ.Client/6.8.1": {
  4242. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4243. "type": "package",
  4244. "path": "rabbitmq.client/6.8.1",
  4245. "files": [
  4246. ".nupkg.metadata",
  4247. ".signature.p7s",
  4248. "README.md",
  4249. "icon.png",
  4250. "lib/net462/RabbitMQ.Client.dll",
  4251. "lib/net462/RabbitMQ.Client.xml",
  4252. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4253. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4254. "rabbitmq.client.6.8.1.nupkg.sha512",
  4255. "rabbitmq.client.nuspec"
  4256. ]
  4257. },
  4258. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4259. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4260. "type": "package",
  4261. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4262. "files": [
  4263. ".nupkg.metadata",
  4264. ".signature.p7s",
  4265. "ThirdPartyNotices.txt",
  4266. "dotnet_library_license.txt",
  4267. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4268. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4269. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4270. ]
  4271. },
  4272. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4273. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4274. "type": "package",
  4275. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4276. "files": [
  4277. ".nupkg.metadata",
  4278. ".signature.p7s",
  4279. "ThirdPartyNotices.txt",
  4280. "dotnet_library_license.txt",
  4281. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4282. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4283. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4284. ]
  4285. },
  4286. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4287. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4288. "type": "package",
  4289. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4290. "files": [
  4291. ".nupkg.metadata",
  4292. ".signature.p7s",
  4293. "ThirdPartyNotices.txt",
  4294. "dotnet_library_license.txt",
  4295. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4296. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4297. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4298. ]
  4299. },
  4300. "runtime.native.System/4.3.0": {
  4301. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4302. "type": "package",
  4303. "path": "runtime.native.system/4.3.0",
  4304. "files": [
  4305. ".nupkg.metadata",
  4306. ".signature.p7s",
  4307. "ThirdPartyNotices.txt",
  4308. "dotnet_library_license.txt",
  4309. "lib/netstandard1.0/_._",
  4310. "runtime.native.system.4.3.0.nupkg.sha512",
  4311. "runtime.native.system.nuspec"
  4312. ]
  4313. },
  4314. "runtime.native.System.IO.Compression/4.3.0": {
  4315. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4316. "type": "package",
  4317. "path": "runtime.native.system.io.compression/4.3.0",
  4318. "files": [
  4319. ".nupkg.metadata",
  4320. ".signature.p7s",
  4321. "ThirdPartyNotices.txt",
  4322. "dotnet_library_license.txt",
  4323. "lib/netstandard1.0/_._",
  4324. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4325. "runtime.native.system.io.compression.nuspec"
  4326. ]
  4327. },
  4328. "runtime.native.System.Net.Http/4.3.0": {
  4329. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4330. "type": "package",
  4331. "path": "runtime.native.system.net.http/4.3.0",
  4332. "files": [
  4333. ".nupkg.metadata",
  4334. ".signature.p7s",
  4335. "ThirdPartyNotices.txt",
  4336. "dotnet_library_license.txt",
  4337. "lib/netstandard1.0/_._",
  4338. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4339. "runtime.native.system.net.http.nuspec"
  4340. ]
  4341. },
  4342. "runtime.native.System.Net.Security/4.3.0": {
  4343. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4344. "type": "package",
  4345. "path": "runtime.native.system.net.security/4.3.0",
  4346. "files": [
  4347. ".nupkg.metadata",
  4348. ".signature.p7s",
  4349. "ThirdPartyNotices.txt",
  4350. "dotnet_library_license.txt",
  4351. "lib/netstandard1.0/_._",
  4352. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4353. "runtime.native.system.net.security.nuspec"
  4354. ]
  4355. },
  4356. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4357. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4358. "type": "package",
  4359. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4360. "files": [
  4361. ".nupkg.metadata",
  4362. ".signature.p7s",
  4363. "ThirdPartyNotices.txt",
  4364. "dotnet_library_license.txt",
  4365. "lib/netstandard1.0/_._",
  4366. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4367. "runtime.native.system.security.cryptography.apple.nuspec"
  4368. ]
  4369. },
  4370. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4371. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4372. "type": "package",
  4373. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4374. "files": [
  4375. ".nupkg.metadata",
  4376. ".signature.p7s",
  4377. "ThirdPartyNotices.txt",
  4378. "dotnet_library_license.txt",
  4379. "lib/netstandard1.0/_._",
  4380. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4381. "runtime.native.system.security.cryptography.openssl.nuspec"
  4382. ]
  4383. },
  4384. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4385. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4386. "type": "package",
  4387. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4388. "files": [
  4389. ".nupkg.metadata",
  4390. ".signature.p7s",
  4391. "ThirdPartyNotices.txt",
  4392. "dotnet_library_license.txt",
  4393. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4394. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4395. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4396. ]
  4397. },
  4398. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4399. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4400. "type": "package",
  4401. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4402. "files": [
  4403. ".nupkg.metadata",
  4404. ".signature.p7s",
  4405. "ThirdPartyNotices.txt",
  4406. "dotnet_library_license.txt",
  4407. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4408. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4409. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4410. ]
  4411. },
  4412. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4413. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4414. "type": "package",
  4415. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4416. "files": [
  4417. ".nupkg.metadata",
  4418. ".signature.p7s",
  4419. "ThirdPartyNotices.txt",
  4420. "dotnet_library_license.txt",
  4421. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4422. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4423. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4424. ]
  4425. },
  4426. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4427. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4428. "type": "package",
  4429. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4430. "files": [
  4431. ".nupkg.metadata",
  4432. ".signature.p7s",
  4433. "ThirdPartyNotices.txt",
  4434. "dotnet_library_license.txt",
  4435. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4436. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4437. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4438. ]
  4439. },
  4440. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4441. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4442. "type": "package",
  4443. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4444. "files": [
  4445. ".nupkg.metadata",
  4446. ".signature.p7s",
  4447. "ThirdPartyNotices.txt",
  4448. "dotnet_library_license.txt",
  4449. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4450. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4451. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4452. ]
  4453. },
  4454. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4455. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4456. "type": "package",
  4457. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4458. "files": [
  4459. ".nupkg.metadata",
  4460. ".signature.p7s",
  4461. "ThirdPartyNotices.txt",
  4462. "dotnet_library_license.txt",
  4463. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4464. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4465. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4466. ]
  4467. },
  4468. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4469. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4470. "type": "package",
  4471. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "ThirdPartyNotices.txt",
  4476. "dotnet_library_license.txt",
  4477. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4478. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4479. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4480. ]
  4481. },
  4482. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4483. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4484. "type": "package",
  4485. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4486. "files": [
  4487. ".nupkg.metadata",
  4488. ".signature.p7s",
  4489. "ThirdPartyNotices.txt",
  4490. "dotnet_library_license.txt",
  4491. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4492. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4493. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4494. ]
  4495. },
  4496. "SixLabors.ImageSharp/2.1.6": {
  4497. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4498. "type": "package",
  4499. "path": "sixlabors.imagesharp/2.1.6",
  4500. "files": [
  4501. ".nupkg.metadata",
  4502. ".signature.p7s",
  4503. "lib/net472/SixLabors.ImageSharp.dll",
  4504. "lib/net472/SixLabors.ImageSharp.xml",
  4505. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4506. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4507. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4508. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4509. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4510. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4511. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4512. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4513. "sixlabors.imagesharp.128.png",
  4514. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4515. "sixlabors.imagesharp.nuspec"
  4516. ]
  4517. },
  4518. "SSH.NET/2020.0.0-beta1": {
  4519. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4520. "type": "package",
  4521. "path": "ssh.net/2020.0.0-beta1",
  4522. "files": [
  4523. ".nupkg.metadata",
  4524. ".signature.p7s",
  4525. "lib/net35/Renci.SshNet.dll",
  4526. "lib/net35/Renci.SshNet.xml",
  4527. "lib/net40/Renci.SshNet.dll",
  4528. "lib/net40/Renci.SshNet.xml",
  4529. "lib/netstandard1.3/Renci.SshNet.dll",
  4530. "lib/netstandard1.3/Renci.SshNet.xml",
  4531. "lib/netstandard2.0/Renci.SshNet.dll",
  4532. "lib/netstandard2.0/Renci.SshNet.xml",
  4533. "lib/sl4/Renci.SshNet.dll",
  4534. "lib/sl4/Renci.SshNet.xml",
  4535. "lib/sl5/Renci.SshNet.dll",
  4536. "lib/sl5/Renci.SshNet.xml",
  4537. "lib/uap10/Renci.SshNet.dll",
  4538. "lib/uap10/Renci.SshNet.xml",
  4539. "lib/wp71/Renci.SshNet.dll",
  4540. "lib/wp71/Renci.SshNet.xml",
  4541. "lib/wp8/Renci.SshNet.dll",
  4542. "lib/wp8/Renci.SshNet.xml",
  4543. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4544. "ssh.net.nuspec"
  4545. ]
  4546. },
  4547. "SshNet.Security.Cryptography/1.3.0": {
  4548. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4549. "type": "package",
  4550. "path": "sshnet.security.cryptography/1.3.0",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "lib/net20/SshNet.Security.Cryptography.dll",
  4555. "lib/net20/SshNet.Security.Cryptography.xml",
  4556. "lib/net40/SshNet.Security.Cryptography.dll",
  4557. "lib/net40/SshNet.Security.Cryptography.xml",
  4558. "lib/net45/SshNet.Security.Cryptography.dll",
  4559. "lib/net45/SshNet.Security.Cryptography.xml",
  4560. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4561. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4562. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4563. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4564. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4565. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4566. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4567. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4568. "lib/sl4/SshNet.Security.Cryptography.dll",
  4569. "lib/sl4/SshNet.Security.Cryptography.xml",
  4570. "lib/sl5/SshNet.Security.Cryptography.dll",
  4571. "lib/sl5/SshNet.Security.Cryptography.xml",
  4572. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4573. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4574. "lib/wp71/SshNet.Security.Cryptography.dll",
  4575. "lib/wp71/SshNet.Security.Cryptography.xml",
  4576. "lib/wp8/SshNet.Security.Cryptography.dll",
  4577. "lib/wp8/SshNet.Security.Cryptography.xml",
  4578. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4579. "sshnet.security.cryptography.nuspec"
  4580. ]
  4581. },
  4582. "StackExchange.Redis/1.2.4": {
  4583. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4584. "type": "package",
  4585. "path": "stackexchange.redis/1.2.4",
  4586. "files": [
  4587. ".nupkg.metadata",
  4588. ".signature.p7s",
  4589. "lib/net45/StackExchange.Redis.dll",
  4590. "lib/net45/StackExchange.Redis.xml",
  4591. "lib/net46/StackExchange.Redis.dll",
  4592. "lib/net46/StackExchange.Redis.xml",
  4593. "lib/netstandard1.5/StackExchange.Redis.dll",
  4594. "lib/netstandard1.5/StackExchange.Redis.xml",
  4595. "stackexchange.redis.1.2.4.nupkg.sha512",
  4596. "stackexchange.redis.nuspec"
  4597. ]
  4598. },
  4599. "System.AppContext/4.3.0": {
  4600. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4601. "type": "package",
  4602. "path": "system.appcontext/4.3.0",
  4603. "files": [
  4604. ".nupkg.metadata",
  4605. ".signature.p7s",
  4606. "ThirdPartyNotices.txt",
  4607. "dotnet_library_license.txt",
  4608. "lib/MonoAndroid10/_._",
  4609. "lib/MonoTouch10/_._",
  4610. "lib/net46/System.AppContext.dll",
  4611. "lib/net463/System.AppContext.dll",
  4612. "lib/netcore50/System.AppContext.dll",
  4613. "lib/netstandard1.6/System.AppContext.dll",
  4614. "lib/xamarinios10/_._",
  4615. "lib/xamarinmac20/_._",
  4616. "lib/xamarintvos10/_._",
  4617. "lib/xamarinwatchos10/_._",
  4618. "ref/MonoAndroid10/_._",
  4619. "ref/MonoTouch10/_._",
  4620. "ref/net46/System.AppContext.dll",
  4621. "ref/net463/System.AppContext.dll",
  4622. "ref/netstandard/_._",
  4623. "ref/netstandard1.3/System.AppContext.dll",
  4624. "ref/netstandard1.3/System.AppContext.xml",
  4625. "ref/netstandard1.3/de/System.AppContext.xml",
  4626. "ref/netstandard1.3/es/System.AppContext.xml",
  4627. "ref/netstandard1.3/fr/System.AppContext.xml",
  4628. "ref/netstandard1.3/it/System.AppContext.xml",
  4629. "ref/netstandard1.3/ja/System.AppContext.xml",
  4630. "ref/netstandard1.3/ko/System.AppContext.xml",
  4631. "ref/netstandard1.3/ru/System.AppContext.xml",
  4632. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4633. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4634. "ref/netstandard1.6/System.AppContext.dll",
  4635. "ref/netstandard1.6/System.AppContext.xml",
  4636. "ref/netstandard1.6/de/System.AppContext.xml",
  4637. "ref/netstandard1.6/es/System.AppContext.xml",
  4638. "ref/netstandard1.6/fr/System.AppContext.xml",
  4639. "ref/netstandard1.6/it/System.AppContext.xml",
  4640. "ref/netstandard1.6/ja/System.AppContext.xml",
  4641. "ref/netstandard1.6/ko/System.AppContext.xml",
  4642. "ref/netstandard1.6/ru/System.AppContext.xml",
  4643. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4644. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4645. "ref/xamarinios10/_._",
  4646. "ref/xamarinmac20/_._",
  4647. "ref/xamarintvos10/_._",
  4648. "ref/xamarinwatchos10/_._",
  4649. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4650. "system.appcontext.4.3.0.nupkg.sha512",
  4651. "system.appcontext.nuspec"
  4652. ]
  4653. },
  4654. "System.Buffers/4.5.1": {
  4655. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4656. "type": "package",
  4657. "path": "system.buffers/4.5.1",
  4658. "files": [
  4659. ".nupkg.metadata",
  4660. ".signature.p7s",
  4661. "LICENSE.TXT",
  4662. "THIRD-PARTY-NOTICES.TXT",
  4663. "lib/net461/System.Buffers.dll",
  4664. "lib/net461/System.Buffers.xml",
  4665. "lib/netcoreapp2.0/_._",
  4666. "lib/netstandard1.1/System.Buffers.dll",
  4667. "lib/netstandard1.1/System.Buffers.xml",
  4668. "lib/netstandard2.0/System.Buffers.dll",
  4669. "lib/netstandard2.0/System.Buffers.xml",
  4670. "lib/uap10.0.16299/_._",
  4671. "ref/net45/System.Buffers.dll",
  4672. "ref/net45/System.Buffers.xml",
  4673. "ref/netcoreapp2.0/_._",
  4674. "ref/netstandard1.1/System.Buffers.dll",
  4675. "ref/netstandard1.1/System.Buffers.xml",
  4676. "ref/netstandard2.0/System.Buffers.dll",
  4677. "ref/netstandard2.0/System.Buffers.xml",
  4678. "ref/uap10.0.16299/_._",
  4679. "system.buffers.4.5.1.nupkg.sha512",
  4680. "system.buffers.nuspec",
  4681. "useSharedDesignerContext.txt",
  4682. "version.txt"
  4683. ]
  4684. },
  4685. "System.Collections/4.3.0": {
  4686. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4687. "type": "package",
  4688. "path": "system.collections/4.3.0",
  4689. "files": [
  4690. ".nupkg.metadata",
  4691. ".signature.p7s",
  4692. "ThirdPartyNotices.txt",
  4693. "dotnet_library_license.txt",
  4694. "lib/MonoAndroid10/_._",
  4695. "lib/MonoTouch10/_._",
  4696. "lib/net45/_._",
  4697. "lib/portable-net45+win8+wp8+wpa81/_._",
  4698. "lib/win8/_._",
  4699. "lib/wp80/_._",
  4700. "lib/wpa81/_._",
  4701. "lib/xamarinios10/_._",
  4702. "lib/xamarinmac20/_._",
  4703. "lib/xamarintvos10/_._",
  4704. "lib/xamarinwatchos10/_._",
  4705. "ref/MonoAndroid10/_._",
  4706. "ref/MonoTouch10/_._",
  4707. "ref/net45/_._",
  4708. "ref/netcore50/System.Collections.dll",
  4709. "ref/netcore50/System.Collections.xml",
  4710. "ref/netcore50/de/System.Collections.xml",
  4711. "ref/netcore50/es/System.Collections.xml",
  4712. "ref/netcore50/fr/System.Collections.xml",
  4713. "ref/netcore50/it/System.Collections.xml",
  4714. "ref/netcore50/ja/System.Collections.xml",
  4715. "ref/netcore50/ko/System.Collections.xml",
  4716. "ref/netcore50/ru/System.Collections.xml",
  4717. "ref/netcore50/zh-hans/System.Collections.xml",
  4718. "ref/netcore50/zh-hant/System.Collections.xml",
  4719. "ref/netstandard1.0/System.Collections.dll",
  4720. "ref/netstandard1.0/System.Collections.xml",
  4721. "ref/netstandard1.0/de/System.Collections.xml",
  4722. "ref/netstandard1.0/es/System.Collections.xml",
  4723. "ref/netstandard1.0/fr/System.Collections.xml",
  4724. "ref/netstandard1.0/it/System.Collections.xml",
  4725. "ref/netstandard1.0/ja/System.Collections.xml",
  4726. "ref/netstandard1.0/ko/System.Collections.xml",
  4727. "ref/netstandard1.0/ru/System.Collections.xml",
  4728. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4729. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4730. "ref/netstandard1.3/System.Collections.dll",
  4731. "ref/netstandard1.3/System.Collections.xml",
  4732. "ref/netstandard1.3/de/System.Collections.xml",
  4733. "ref/netstandard1.3/es/System.Collections.xml",
  4734. "ref/netstandard1.3/fr/System.Collections.xml",
  4735. "ref/netstandard1.3/it/System.Collections.xml",
  4736. "ref/netstandard1.3/ja/System.Collections.xml",
  4737. "ref/netstandard1.3/ko/System.Collections.xml",
  4738. "ref/netstandard1.3/ru/System.Collections.xml",
  4739. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4740. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4741. "ref/portable-net45+win8+wp8+wpa81/_._",
  4742. "ref/win8/_._",
  4743. "ref/wp80/_._",
  4744. "ref/wpa81/_._",
  4745. "ref/xamarinios10/_._",
  4746. "ref/xamarinmac20/_._",
  4747. "ref/xamarintvos10/_._",
  4748. "ref/xamarinwatchos10/_._",
  4749. "system.collections.4.3.0.nupkg.sha512",
  4750. "system.collections.nuspec"
  4751. ]
  4752. },
  4753. "System.Collections.Concurrent/4.3.0": {
  4754. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4755. "type": "package",
  4756. "path": "system.collections.concurrent/4.3.0",
  4757. "files": [
  4758. ".nupkg.metadata",
  4759. ".signature.p7s",
  4760. "ThirdPartyNotices.txt",
  4761. "dotnet_library_license.txt",
  4762. "lib/MonoAndroid10/_._",
  4763. "lib/MonoTouch10/_._",
  4764. "lib/net45/_._",
  4765. "lib/netcore50/System.Collections.Concurrent.dll",
  4766. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4767. "lib/portable-net45+win8+wpa81/_._",
  4768. "lib/win8/_._",
  4769. "lib/wpa81/_._",
  4770. "lib/xamarinios10/_._",
  4771. "lib/xamarinmac20/_._",
  4772. "lib/xamarintvos10/_._",
  4773. "lib/xamarinwatchos10/_._",
  4774. "ref/MonoAndroid10/_._",
  4775. "ref/MonoTouch10/_._",
  4776. "ref/net45/_._",
  4777. "ref/netcore50/System.Collections.Concurrent.dll",
  4778. "ref/netcore50/System.Collections.Concurrent.xml",
  4779. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4780. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4781. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4782. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4783. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4784. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4785. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4786. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4787. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4788. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4789. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4790. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4791. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4792. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4793. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4794. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4795. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4796. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4797. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4798. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4799. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4800. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4801. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4802. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4803. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4804. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4805. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4806. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4807. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4808. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4809. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4810. "ref/portable-net45+win8+wpa81/_._",
  4811. "ref/win8/_._",
  4812. "ref/wpa81/_._",
  4813. "ref/xamarinios10/_._",
  4814. "ref/xamarinmac20/_._",
  4815. "ref/xamarintvos10/_._",
  4816. "ref/xamarinwatchos10/_._",
  4817. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4818. "system.collections.concurrent.nuspec"
  4819. ]
  4820. },
  4821. "System.Collections.Immutable/5.0.0": {
  4822. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  4823. "type": "package",
  4824. "path": "system.collections.immutable/5.0.0",
  4825. "files": [
  4826. ".nupkg.metadata",
  4827. ".signature.p7s",
  4828. "Icon.png",
  4829. "LICENSE.TXT",
  4830. "THIRD-PARTY-NOTICES.TXT",
  4831. "lib/net461/System.Collections.Immutable.dll",
  4832. "lib/net461/System.Collections.Immutable.xml",
  4833. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4834. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4835. "lib/netstandard1.3/System.Collections.Immutable.dll",
  4836. "lib/netstandard1.3/System.Collections.Immutable.xml",
  4837. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4838. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4839. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4840. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  4841. "system.collections.immutable.5.0.0.nupkg.sha512",
  4842. "system.collections.immutable.nuspec",
  4843. "useSharedDesignerContext.txt",
  4844. "version.txt"
  4845. ]
  4846. },
  4847. "System.Collections.NonGeneric/4.3.0": {
  4848. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4849. "type": "package",
  4850. "path": "system.collections.nongeneric/4.3.0",
  4851. "files": [
  4852. ".nupkg.metadata",
  4853. ".signature.p7s",
  4854. "ThirdPartyNotices.txt",
  4855. "dotnet_library_license.txt",
  4856. "lib/MonoAndroid10/_._",
  4857. "lib/MonoTouch10/_._",
  4858. "lib/net46/System.Collections.NonGeneric.dll",
  4859. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4860. "lib/xamarinios10/_._",
  4861. "lib/xamarinmac20/_._",
  4862. "lib/xamarintvos10/_._",
  4863. "lib/xamarinwatchos10/_._",
  4864. "ref/MonoAndroid10/_._",
  4865. "ref/MonoTouch10/_._",
  4866. "ref/net46/System.Collections.NonGeneric.dll",
  4867. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4868. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4869. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4870. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4871. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4872. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4873. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4874. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4875. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4876. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4877. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4878. "ref/xamarinios10/_._",
  4879. "ref/xamarinmac20/_._",
  4880. "ref/xamarintvos10/_._",
  4881. "ref/xamarinwatchos10/_._",
  4882. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4883. "system.collections.nongeneric.nuspec"
  4884. ]
  4885. },
  4886. "System.Collections.Specialized/4.3.0": {
  4887. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4888. "type": "package",
  4889. "path": "system.collections.specialized/4.3.0",
  4890. "files": [
  4891. ".nupkg.metadata",
  4892. ".signature.p7s",
  4893. "ThirdPartyNotices.txt",
  4894. "dotnet_library_license.txt",
  4895. "lib/MonoAndroid10/_._",
  4896. "lib/MonoTouch10/_._",
  4897. "lib/net46/System.Collections.Specialized.dll",
  4898. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4899. "lib/xamarinios10/_._",
  4900. "lib/xamarinmac20/_._",
  4901. "lib/xamarintvos10/_._",
  4902. "lib/xamarinwatchos10/_._",
  4903. "ref/MonoAndroid10/_._",
  4904. "ref/MonoTouch10/_._",
  4905. "ref/net46/System.Collections.Specialized.dll",
  4906. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4907. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4908. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4909. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4910. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4911. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4912. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4913. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4914. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4915. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4916. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4917. "ref/xamarinios10/_._",
  4918. "ref/xamarinmac20/_._",
  4919. "ref/xamarintvos10/_._",
  4920. "ref/xamarinwatchos10/_._",
  4921. "system.collections.specialized.4.3.0.nupkg.sha512",
  4922. "system.collections.specialized.nuspec"
  4923. ]
  4924. },
  4925. "System.ComponentModel/4.3.0": {
  4926. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4927. "type": "package",
  4928. "path": "system.componentmodel/4.3.0",
  4929. "files": [
  4930. ".nupkg.metadata",
  4931. ".signature.p7s",
  4932. "ThirdPartyNotices.txt",
  4933. "dotnet_library_license.txt",
  4934. "lib/MonoAndroid10/_._",
  4935. "lib/MonoTouch10/_._",
  4936. "lib/net45/_._",
  4937. "lib/netcore50/System.ComponentModel.dll",
  4938. "lib/netstandard1.3/System.ComponentModel.dll",
  4939. "lib/portable-net45+win8+wp8+wpa81/_._",
  4940. "lib/win8/_._",
  4941. "lib/wp80/_._",
  4942. "lib/wpa81/_._",
  4943. "lib/xamarinios10/_._",
  4944. "lib/xamarinmac20/_._",
  4945. "lib/xamarintvos10/_._",
  4946. "lib/xamarinwatchos10/_._",
  4947. "ref/MonoAndroid10/_._",
  4948. "ref/MonoTouch10/_._",
  4949. "ref/net45/_._",
  4950. "ref/netcore50/System.ComponentModel.dll",
  4951. "ref/netcore50/System.ComponentModel.xml",
  4952. "ref/netcore50/de/System.ComponentModel.xml",
  4953. "ref/netcore50/es/System.ComponentModel.xml",
  4954. "ref/netcore50/fr/System.ComponentModel.xml",
  4955. "ref/netcore50/it/System.ComponentModel.xml",
  4956. "ref/netcore50/ja/System.ComponentModel.xml",
  4957. "ref/netcore50/ko/System.ComponentModel.xml",
  4958. "ref/netcore50/ru/System.ComponentModel.xml",
  4959. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4960. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4961. "ref/netstandard1.0/System.ComponentModel.dll",
  4962. "ref/netstandard1.0/System.ComponentModel.xml",
  4963. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4964. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4965. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4966. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4967. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4968. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4969. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4970. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4971. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4972. "ref/portable-net45+win8+wp8+wpa81/_._",
  4973. "ref/win8/_._",
  4974. "ref/wp80/_._",
  4975. "ref/wpa81/_._",
  4976. "ref/xamarinios10/_._",
  4977. "ref/xamarinmac20/_._",
  4978. "ref/xamarintvos10/_._",
  4979. "ref/xamarinwatchos10/_._",
  4980. "system.componentmodel.4.3.0.nupkg.sha512",
  4981. "system.componentmodel.nuspec"
  4982. ]
  4983. },
  4984. "System.ComponentModel.Annotations/5.0.0": {
  4985. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  4986. "type": "package",
  4987. "path": "system.componentmodel.annotations/5.0.0",
  4988. "files": [
  4989. ".nupkg.metadata",
  4990. ".signature.p7s",
  4991. "Icon.png",
  4992. "LICENSE.TXT",
  4993. "THIRD-PARTY-NOTICES.TXT",
  4994. "lib/MonoAndroid10/_._",
  4995. "lib/MonoTouch10/_._",
  4996. "lib/net45/_._",
  4997. "lib/net461/System.ComponentModel.Annotations.dll",
  4998. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4999. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5000. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5001. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5002. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5003. "lib/portable-net45+win8/_._",
  5004. "lib/win8/_._",
  5005. "lib/xamarinios10/_._",
  5006. "lib/xamarinmac20/_._",
  5007. "lib/xamarintvos10/_._",
  5008. "lib/xamarinwatchos10/_._",
  5009. "ref/MonoAndroid10/_._",
  5010. "ref/MonoTouch10/_._",
  5011. "ref/net45/_._",
  5012. "ref/net461/System.ComponentModel.Annotations.dll",
  5013. "ref/net461/System.ComponentModel.Annotations.xml",
  5014. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5015. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5016. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5017. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5018. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5019. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5020. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5021. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5022. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5023. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5024. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5025. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5026. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5027. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5028. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5029. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5030. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5031. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5032. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5033. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5034. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5035. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5036. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5037. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5038. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5039. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5040. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5041. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5042. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5043. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5044. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5045. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5046. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5047. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5048. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5049. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5050. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5051. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5052. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5053. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5054. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5055. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5056. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5057. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5058. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5059. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5060. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5061. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5062. "ref/portable-net45+win8/_._",
  5063. "ref/win8/_._",
  5064. "ref/xamarinios10/_._",
  5065. "ref/xamarinmac20/_._",
  5066. "ref/xamarintvos10/_._",
  5067. "ref/xamarinwatchos10/_._",
  5068. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5069. "system.componentmodel.annotations.nuspec",
  5070. "useSharedDesignerContext.txt",
  5071. "version.txt"
  5072. ]
  5073. },
  5074. "System.ComponentModel.Primitives/4.3.0": {
  5075. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5076. "type": "package",
  5077. "path": "system.componentmodel.primitives/4.3.0",
  5078. "files": [
  5079. ".nupkg.metadata",
  5080. ".signature.p7s",
  5081. "ThirdPartyNotices.txt",
  5082. "dotnet_library_license.txt",
  5083. "lib/MonoAndroid10/_._",
  5084. "lib/MonoTouch10/_._",
  5085. "lib/net45/System.ComponentModel.Primitives.dll",
  5086. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5087. "lib/xamarinios10/_._",
  5088. "lib/xamarinmac20/_._",
  5089. "lib/xamarintvos10/_._",
  5090. "lib/xamarinwatchos10/_._",
  5091. "ref/MonoAndroid10/_._",
  5092. "ref/MonoTouch10/_._",
  5093. "ref/net45/System.ComponentModel.Primitives.dll",
  5094. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5095. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5096. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5097. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5098. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5099. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5100. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5101. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5102. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5103. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5104. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5105. "ref/xamarinios10/_._",
  5106. "ref/xamarinmac20/_._",
  5107. "ref/xamarintvos10/_._",
  5108. "ref/xamarinwatchos10/_._",
  5109. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5110. "system.componentmodel.primitives.nuspec"
  5111. ]
  5112. },
  5113. "System.ComponentModel.TypeConverter/4.3.0": {
  5114. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5115. "type": "package",
  5116. "path": "system.componentmodel.typeconverter/4.3.0",
  5117. "files": [
  5118. ".nupkg.metadata",
  5119. ".signature.p7s",
  5120. "ThirdPartyNotices.txt",
  5121. "dotnet_library_license.txt",
  5122. "lib/MonoAndroid10/_._",
  5123. "lib/MonoTouch10/_._",
  5124. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5125. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5126. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5127. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5128. "lib/xamarinios10/_._",
  5129. "lib/xamarinmac20/_._",
  5130. "lib/xamarintvos10/_._",
  5131. "lib/xamarinwatchos10/_._",
  5132. "ref/MonoAndroid10/_._",
  5133. "ref/MonoTouch10/_._",
  5134. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5135. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5136. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5137. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5138. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5139. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5140. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5141. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5142. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5143. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5144. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5145. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5146. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5147. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5148. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5149. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5150. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5151. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5152. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5153. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5154. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5155. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5156. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5157. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5158. "ref/xamarinios10/_._",
  5159. "ref/xamarinmac20/_._",
  5160. "ref/xamarintvos10/_._",
  5161. "ref/xamarinwatchos10/_._",
  5162. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5163. "system.componentmodel.typeconverter.nuspec"
  5164. ]
  5165. },
  5166. "System.Configuration.ConfigurationManager/4.7.0": {
  5167. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5168. "type": "package",
  5169. "path": "system.configuration.configurationmanager/4.7.0",
  5170. "files": [
  5171. ".nupkg.metadata",
  5172. ".signature.p7s",
  5173. "LICENSE.TXT",
  5174. "THIRD-PARTY-NOTICES.TXT",
  5175. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5176. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5177. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5178. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5179. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5180. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5181. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5182. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5183. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5184. "system.configuration.configurationmanager.nuspec",
  5185. "useSharedDesignerContext.txt",
  5186. "version.txt"
  5187. ]
  5188. },
  5189. "System.Console/4.3.0": {
  5190. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5191. "type": "package",
  5192. "path": "system.console/4.3.0",
  5193. "files": [
  5194. ".nupkg.metadata",
  5195. ".signature.p7s",
  5196. "ThirdPartyNotices.txt",
  5197. "dotnet_library_license.txt",
  5198. "lib/MonoAndroid10/_._",
  5199. "lib/MonoTouch10/_._",
  5200. "lib/net46/System.Console.dll",
  5201. "lib/xamarinios10/_._",
  5202. "lib/xamarinmac20/_._",
  5203. "lib/xamarintvos10/_._",
  5204. "lib/xamarinwatchos10/_._",
  5205. "ref/MonoAndroid10/_._",
  5206. "ref/MonoTouch10/_._",
  5207. "ref/net46/System.Console.dll",
  5208. "ref/netstandard1.3/System.Console.dll",
  5209. "ref/netstandard1.3/System.Console.xml",
  5210. "ref/netstandard1.3/de/System.Console.xml",
  5211. "ref/netstandard1.3/es/System.Console.xml",
  5212. "ref/netstandard1.3/fr/System.Console.xml",
  5213. "ref/netstandard1.3/it/System.Console.xml",
  5214. "ref/netstandard1.3/ja/System.Console.xml",
  5215. "ref/netstandard1.3/ko/System.Console.xml",
  5216. "ref/netstandard1.3/ru/System.Console.xml",
  5217. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5218. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5219. "ref/xamarinios10/_._",
  5220. "ref/xamarinmac20/_._",
  5221. "ref/xamarintvos10/_._",
  5222. "ref/xamarinwatchos10/_._",
  5223. "system.console.4.3.0.nupkg.sha512",
  5224. "system.console.nuspec"
  5225. ]
  5226. },
  5227. "System.Diagnostics.Debug/4.3.0": {
  5228. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5229. "type": "package",
  5230. "path": "system.diagnostics.debug/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/portable-net45+win8+wp8+wpa81/_._",
  5240. "lib/win8/_._",
  5241. "lib/wp80/_._",
  5242. "lib/wpa81/_._",
  5243. "lib/xamarinios10/_._",
  5244. "lib/xamarinmac20/_._",
  5245. "lib/xamarintvos10/_._",
  5246. "lib/xamarinwatchos10/_._",
  5247. "ref/MonoAndroid10/_._",
  5248. "ref/MonoTouch10/_._",
  5249. "ref/net45/_._",
  5250. "ref/netcore50/System.Diagnostics.Debug.dll",
  5251. "ref/netcore50/System.Diagnostics.Debug.xml",
  5252. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5253. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5254. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5255. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5256. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5257. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5258. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5259. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5260. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5261. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5262. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5263. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5264. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5265. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5266. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5267. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5268. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5269. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5270. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5271. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5272. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5273. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5274. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5275. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5276. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5277. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5278. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5279. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5280. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5281. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5282. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5283. "ref/portable-net45+win8+wp8+wpa81/_._",
  5284. "ref/win8/_._",
  5285. "ref/wp80/_._",
  5286. "ref/wpa81/_._",
  5287. "ref/xamarinios10/_._",
  5288. "ref/xamarinmac20/_._",
  5289. "ref/xamarintvos10/_._",
  5290. "ref/xamarinwatchos10/_._",
  5291. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5292. "system.diagnostics.debug.nuspec"
  5293. ]
  5294. },
  5295. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5296. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5297. "type": "package",
  5298. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5299. "files": [
  5300. ".nupkg.metadata",
  5301. ".signature.p7s",
  5302. "Icon.png",
  5303. "LICENSE.TXT",
  5304. "THIRD-PARTY-NOTICES.TXT",
  5305. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5306. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5307. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5308. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5309. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5310. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5311. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5312. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5313. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5314. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5315. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5316. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5317. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5318. "system.diagnostics.diagnosticsource.nuspec",
  5319. "useSharedDesignerContext.txt",
  5320. "version.txt"
  5321. ]
  5322. },
  5323. "System.Diagnostics.Tools/4.3.0": {
  5324. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5325. "type": "package",
  5326. "path": "system.diagnostics.tools/4.3.0",
  5327. "files": [
  5328. ".nupkg.metadata",
  5329. ".signature.p7s",
  5330. "ThirdPartyNotices.txt",
  5331. "dotnet_library_license.txt",
  5332. "lib/MonoAndroid10/_._",
  5333. "lib/MonoTouch10/_._",
  5334. "lib/net45/_._",
  5335. "lib/portable-net45+win8+wp8+wpa81/_._",
  5336. "lib/win8/_._",
  5337. "lib/wp80/_._",
  5338. "lib/wpa81/_._",
  5339. "lib/xamarinios10/_._",
  5340. "lib/xamarinmac20/_._",
  5341. "lib/xamarintvos10/_._",
  5342. "lib/xamarinwatchos10/_._",
  5343. "ref/MonoAndroid10/_._",
  5344. "ref/MonoTouch10/_._",
  5345. "ref/net45/_._",
  5346. "ref/netcore50/System.Diagnostics.Tools.dll",
  5347. "ref/netcore50/System.Diagnostics.Tools.xml",
  5348. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5349. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5350. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5351. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5352. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5353. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5354. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5355. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5356. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5357. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5358. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5359. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5360. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5361. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5362. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5363. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5364. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5365. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5366. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5367. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5368. "ref/portable-net45+win8+wp8+wpa81/_._",
  5369. "ref/win8/_._",
  5370. "ref/wp80/_._",
  5371. "ref/wpa81/_._",
  5372. "ref/xamarinios10/_._",
  5373. "ref/xamarinmac20/_._",
  5374. "ref/xamarintvos10/_._",
  5375. "ref/xamarinwatchos10/_._",
  5376. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5377. "system.diagnostics.tools.nuspec"
  5378. ]
  5379. },
  5380. "System.Diagnostics.TraceSource/4.3.0": {
  5381. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5382. "type": "package",
  5383. "path": "system.diagnostics.tracesource/4.3.0",
  5384. "files": [
  5385. ".nupkg.metadata",
  5386. ".signature.p7s",
  5387. "ThirdPartyNotices.txt",
  5388. "dotnet_library_license.txt",
  5389. "lib/MonoAndroid10/_._",
  5390. "lib/MonoTouch10/_._",
  5391. "lib/net46/System.Diagnostics.TraceSource.dll",
  5392. "lib/xamarinios10/_._",
  5393. "lib/xamarinmac20/_._",
  5394. "lib/xamarintvos10/_._",
  5395. "lib/xamarinwatchos10/_._",
  5396. "ref/MonoAndroid10/_._",
  5397. "ref/MonoTouch10/_._",
  5398. "ref/net46/System.Diagnostics.TraceSource.dll",
  5399. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5400. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5401. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5402. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5403. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5404. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5405. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5406. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5407. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5408. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5409. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5410. "ref/xamarinios10/_._",
  5411. "ref/xamarinmac20/_._",
  5412. "ref/xamarintvos10/_._",
  5413. "ref/xamarinwatchos10/_._",
  5414. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5415. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5416. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5417. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5418. "system.diagnostics.tracesource.nuspec"
  5419. ]
  5420. },
  5421. "System.Diagnostics.Tracing/4.3.0": {
  5422. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5423. "type": "package",
  5424. "path": "system.diagnostics.tracing/4.3.0",
  5425. "files": [
  5426. ".nupkg.metadata",
  5427. ".signature.p7s",
  5428. "ThirdPartyNotices.txt",
  5429. "dotnet_library_license.txt",
  5430. "lib/MonoAndroid10/_._",
  5431. "lib/MonoTouch10/_._",
  5432. "lib/net45/_._",
  5433. "lib/net462/System.Diagnostics.Tracing.dll",
  5434. "lib/portable-net45+win8+wpa81/_._",
  5435. "lib/win8/_._",
  5436. "lib/wpa81/_._",
  5437. "lib/xamarinios10/_._",
  5438. "lib/xamarinmac20/_._",
  5439. "lib/xamarintvos10/_._",
  5440. "lib/xamarinwatchos10/_._",
  5441. "ref/MonoAndroid10/_._",
  5442. "ref/MonoTouch10/_._",
  5443. "ref/net45/_._",
  5444. "ref/net462/System.Diagnostics.Tracing.dll",
  5445. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5446. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5447. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5448. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5449. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5450. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5451. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5452. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5453. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5454. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5455. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5456. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5457. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5458. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5459. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5460. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5461. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5462. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5463. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5464. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5465. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5466. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5467. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5468. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5469. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5470. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5471. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5472. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5473. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5474. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5475. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5476. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5477. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5478. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5479. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5480. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5481. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5482. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5483. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5484. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5485. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5486. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5487. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5488. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5489. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5490. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5491. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5492. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5493. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5494. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5495. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5496. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5497. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5498. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5499. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5500. "ref/portable-net45+win8+wpa81/_._",
  5501. "ref/win8/_._",
  5502. "ref/wpa81/_._",
  5503. "ref/xamarinios10/_._",
  5504. "ref/xamarinmac20/_._",
  5505. "ref/xamarintvos10/_._",
  5506. "ref/xamarinwatchos10/_._",
  5507. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5508. "system.diagnostics.tracing.nuspec"
  5509. ]
  5510. },
  5511. "System.Drawing.Common/5.0.3": {
  5512. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5513. "type": "package",
  5514. "path": "system.drawing.common/5.0.3",
  5515. "files": [
  5516. ".nupkg.metadata",
  5517. ".signature.p7s",
  5518. "Icon.png",
  5519. "LICENSE.TXT",
  5520. "THIRD-PARTY-NOTICES.TXT",
  5521. "lib/MonoAndroid10/_._",
  5522. "lib/MonoTouch10/_._",
  5523. "lib/net461/System.Drawing.Common.dll",
  5524. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5525. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5526. "lib/netstandard2.0/System.Drawing.Common.dll",
  5527. "lib/xamarinios10/_._",
  5528. "lib/xamarinmac20/_._",
  5529. "lib/xamarintvos10/_._",
  5530. "lib/xamarinwatchos10/_._",
  5531. "ref/MonoAndroid10/_._",
  5532. "ref/MonoTouch10/_._",
  5533. "ref/net461/System.Drawing.Common.dll",
  5534. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5535. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5536. "ref/netstandard2.0/System.Drawing.Common.dll",
  5537. "ref/xamarinios10/_._",
  5538. "ref/xamarinmac20/_._",
  5539. "ref/xamarintvos10/_._",
  5540. "ref/xamarinwatchos10/_._",
  5541. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5542. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5543. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5544. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5545. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5546. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5547. "system.drawing.common.5.0.3.nupkg.sha512",
  5548. "system.drawing.common.nuspec",
  5549. "useSharedDesignerContext.txt",
  5550. "version.txt"
  5551. ]
  5552. },
  5553. "System.Dynamic.Runtime/4.3.0": {
  5554. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  5555. "type": "package",
  5556. "path": "system.dynamic.runtime/4.3.0",
  5557. "files": [
  5558. ".nupkg.metadata",
  5559. ".signature.p7s",
  5560. "ThirdPartyNotices.txt",
  5561. "dotnet_library_license.txt",
  5562. "lib/MonoAndroid10/_._",
  5563. "lib/MonoTouch10/_._",
  5564. "lib/net45/_._",
  5565. "lib/netcore50/System.Dynamic.Runtime.dll",
  5566. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5567. "lib/portable-net45+win8+wp8+wpa81/_._",
  5568. "lib/win8/_._",
  5569. "lib/wp80/_._",
  5570. "lib/wpa81/_._",
  5571. "lib/xamarinios10/_._",
  5572. "lib/xamarinmac20/_._",
  5573. "lib/xamarintvos10/_._",
  5574. "lib/xamarinwatchos10/_._",
  5575. "ref/MonoAndroid10/_._",
  5576. "ref/MonoTouch10/_._",
  5577. "ref/net45/_._",
  5578. "ref/netcore50/System.Dynamic.Runtime.dll",
  5579. "ref/netcore50/System.Dynamic.Runtime.xml",
  5580. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5581. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5582. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5583. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5584. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5585. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5586. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5587. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5588. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5589. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5590. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5591. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5592. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5593. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5594. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5595. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5596. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5597. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5598. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5599. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5600. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5601. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5602. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5603. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5604. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5605. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5606. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5607. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5608. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5609. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5610. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5611. "ref/portable-net45+win8+wp8+wpa81/_._",
  5612. "ref/win8/_._",
  5613. "ref/wp80/_._",
  5614. "ref/wpa81/_._",
  5615. "ref/xamarinios10/_._",
  5616. "ref/xamarinmac20/_._",
  5617. "ref/xamarintvos10/_._",
  5618. "ref/xamarinwatchos10/_._",
  5619. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  5620. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  5621. "system.dynamic.runtime.nuspec"
  5622. ]
  5623. },
  5624. "System.Globalization/4.3.0": {
  5625. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5626. "type": "package",
  5627. "path": "system.globalization/4.3.0",
  5628. "files": [
  5629. ".nupkg.metadata",
  5630. ".signature.p7s",
  5631. "ThirdPartyNotices.txt",
  5632. "dotnet_library_license.txt",
  5633. "lib/MonoAndroid10/_._",
  5634. "lib/MonoTouch10/_._",
  5635. "lib/net45/_._",
  5636. "lib/portable-net45+win8+wp8+wpa81/_._",
  5637. "lib/win8/_._",
  5638. "lib/wp80/_._",
  5639. "lib/wpa81/_._",
  5640. "lib/xamarinios10/_._",
  5641. "lib/xamarinmac20/_._",
  5642. "lib/xamarintvos10/_._",
  5643. "lib/xamarinwatchos10/_._",
  5644. "ref/MonoAndroid10/_._",
  5645. "ref/MonoTouch10/_._",
  5646. "ref/net45/_._",
  5647. "ref/netcore50/System.Globalization.dll",
  5648. "ref/netcore50/System.Globalization.xml",
  5649. "ref/netcore50/de/System.Globalization.xml",
  5650. "ref/netcore50/es/System.Globalization.xml",
  5651. "ref/netcore50/fr/System.Globalization.xml",
  5652. "ref/netcore50/it/System.Globalization.xml",
  5653. "ref/netcore50/ja/System.Globalization.xml",
  5654. "ref/netcore50/ko/System.Globalization.xml",
  5655. "ref/netcore50/ru/System.Globalization.xml",
  5656. "ref/netcore50/zh-hans/System.Globalization.xml",
  5657. "ref/netcore50/zh-hant/System.Globalization.xml",
  5658. "ref/netstandard1.0/System.Globalization.dll",
  5659. "ref/netstandard1.0/System.Globalization.xml",
  5660. "ref/netstandard1.0/de/System.Globalization.xml",
  5661. "ref/netstandard1.0/es/System.Globalization.xml",
  5662. "ref/netstandard1.0/fr/System.Globalization.xml",
  5663. "ref/netstandard1.0/it/System.Globalization.xml",
  5664. "ref/netstandard1.0/ja/System.Globalization.xml",
  5665. "ref/netstandard1.0/ko/System.Globalization.xml",
  5666. "ref/netstandard1.0/ru/System.Globalization.xml",
  5667. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5668. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5669. "ref/netstandard1.3/System.Globalization.dll",
  5670. "ref/netstandard1.3/System.Globalization.xml",
  5671. "ref/netstandard1.3/de/System.Globalization.xml",
  5672. "ref/netstandard1.3/es/System.Globalization.xml",
  5673. "ref/netstandard1.3/fr/System.Globalization.xml",
  5674. "ref/netstandard1.3/it/System.Globalization.xml",
  5675. "ref/netstandard1.3/ja/System.Globalization.xml",
  5676. "ref/netstandard1.3/ko/System.Globalization.xml",
  5677. "ref/netstandard1.3/ru/System.Globalization.xml",
  5678. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5679. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5680. "ref/portable-net45+win8+wp8+wpa81/_._",
  5681. "ref/win8/_._",
  5682. "ref/wp80/_._",
  5683. "ref/wpa81/_._",
  5684. "ref/xamarinios10/_._",
  5685. "ref/xamarinmac20/_._",
  5686. "ref/xamarintvos10/_._",
  5687. "ref/xamarinwatchos10/_._",
  5688. "system.globalization.4.3.0.nupkg.sha512",
  5689. "system.globalization.nuspec"
  5690. ]
  5691. },
  5692. "System.Globalization.Calendars/4.3.0": {
  5693. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5694. "type": "package",
  5695. "path": "system.globalization.calendars/4.3.0",
  5696. "files": [
  5697. ".nupkg.metadata",
  5698. ".signature.p7s",
  5699. "ThirdPartyNotices.txt",
  5700. "dotnet_library_license.txt",
  5701. "lib/MonoAndroid10/_._",
  5702. "lib/MonoTouch10/_._",
  5703. "lib/net46/System.Globalization.Calendars.dll",
  5704. "lib/xamarinios10/_._",
  5705. "lib/xamarinmac20/_._",
  5706. "lib/xamarintvos10/_._",
  5707. "lib/xamarinwatchos10/_._",
  5708. "ref/MonoAndroid10/_._",
  5709. "ref/MonoTouch10/_._",
  5710. "ref/net46/System.Globalization.Calendars.dll",
  5711. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5712. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5713. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5714. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5715. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5716. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5717. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5718. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5719. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5720. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5721. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5722. "ref/xamarinios10/_._",
  5723. "ref/xamarinmac20/_._",
  5724. "ref/xamarintvos10/_._",
  5725. "ref/xamarinwatchos10/_._",
  5726. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5727. "system.globalization.calendars.nuspec"
  5728. ]
  5729. },
  5730. "System.Globalization.Extensions/4.3.0": {
  5731. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5732. "type": "package",
  5733. "path": "system.globalization.extensions/4.3.0",
  5734. "files": [
  5735. ".nupkg.metadata",
  5736. ".signature.p7s",
  5737. "ThirdPartyNotices.txt",
  5738. "dotnet_library_license.txt",
  5739. "lib/MonoAndroid10/_._",
  5740. "lib/MonoTouch10/_._",
  5741. "lib/net46/System.Globalization.Extensions.dll",
  5742. "lib/xamarinios10/_._",
  5743. "lib/xamarinmac20/_._",
  5744. "lib/xamarintvos10/_._",
  5745. "lib/xamarinwatchos10/_._",
  5746. "ref/MonoAndroid10/_._",
  5747. "ref/MonoTouch10/_._",
  5748. "ref/net46/System.Globalization.Extensions.dll",
  5749. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5750. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5751. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5752. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5753. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5754. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5755. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5756. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5757. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5758. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5759. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5760. "ref/xamarinios10/_._",
  5761. "ref/xamarinmac20/_._",
  5762. "ref/xamarintvos10/_._",
  5763. "ref/xamarinwatchos10/_._",
  5764. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5765. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5766. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5767. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5768. "system.globalization.extensions.nuspec"
  5769. ]
  5770. },
  5771. "System.IO/4.3.0": {
  5772. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5773. "type": "package",
  5774. "path": "system.io/4.3.0",
  5775. "files": [
  5776. ".nupkg.metadata",
  5777. ".signature.p7s",
  5778. "ThirdPartyNotices.txt",
  5779. "dotnet_library_license.txt",
  5780. "lib/MonoAndroid10/_._",
  5781. "lib/MonoTouch10/_._",
  5782. "lib/net45/_._",
  5783. "lib/net462/System.IO.dll",
  5784. "lib/portable-net45+win8+wp8+wpa81/_._",
  5785. "lib/win8/_._",
  5786. "lib/wp80/_._",
  5787. "lib/wpa81/_._",
  5788. "lib/xamarinios10/_._",
  5789. "lib/xamarinmac20/_._",
  5790. "lib/xamarintvos10/_._",
  5791. "lib/xamarinwatchos10/_._",
  5792. "ref/MonoAndroid10/_._",
  5793. "ref/MonoTouch10/_._",
  5794. "ref/net45/_._",
  5795. "ref/net462/System.IO.dll",
  5796. "ref/netcore50/System.IO.dll",
  5797. "ref/netcore50/System.IO.xml",
  5798. "ref/netcore50/de/System.IO.xml",
  5799. "ref/netcore50/es/System.IO.xml",
  5800. "ref/netcore50/fr/System.IO.xml",
  5801. "ref/netcore50/it/System.IO.xml",
  5802. "ref/netcore50/ja/System.IO.xml",
  5803. "ref/netcore50/ko/System.IO.xml",
  5804. "ref/netcore50/ru/System.IO.xml",
  5805. "ref/netcore50/zh-hans/System.IO.xml",
  5806. "ref/netcore50/zh-hant/System.IO.xml",
  5807. "ref/netstandard1.0/System.IO.dll",
  5808. "ref/netstandard1.0/System.IO.xml",
  5809. "ref/netstandard1.0/de/System.IO.xml",
  5810. "ref/netstandard1.0/es/System.IO.xml",
  5811. "ref/netstandard1.0/fr/System.IO.xml",
  5812. "ref/netstandard1.0/it/System.IO.xml",
  5813. "ref/netstandard1.0/ja/System.IO.xml",
  5814. "ref/netstandard1.0/ko/System.IO.xml",
  5815. "ref/netstandard1.0/ru/System.IO.xml",
  5816. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5817. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5818. "ref/netstandard1.3/System.IO.dll",
  5819. "ref/netstandard1.3/System.IO.xml",
  5820. "ref/netstandard1.3/de/System.IO.xml",
  5821. "ref/netstandard1.3/es/System.IO.xml",
  5822. "ref/netstandard1.3/fr/System.IO.xml",
  5823. "ref/netstandard1.3/it/System.IO.xml",
  5824. "ref/netstandard1.3/ja/System.IO.xml",
  5825. "ref/netstandard1.3/ko/System.IO.xml",
  5826. "ref/netstandard1.3/ru/System.IO.xml",
  5827. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5828. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5829. "ref/netstandard1.5/System.IO.dll",
  5830. "ref/netstandard1.5/System.IO.xml",
  5831. "ref/netstandard1.5/de/System.IO.xml",
  5832. "ref/netstandard1.5/es/System.IO.xml",
  5833. "ref/netstandard1.5/fr/System.IO.xml",
  5834. "ref/netstandard1.5/it/System.IO.xml",
  5835. "ref/netstandard1.5/ja/System.IO.xml",
  5836. "ref/netstandard1.5/ko/System.IO.xml",
  5837. "ref/netstandard1.5/ru/System.IO.xml",
  5838. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5839. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5840. "ref/portable-net45+win8+wp8+wpa81/_._",
  5841. "ref/win8/_._",
  5842. "ref/wp80/_._",
  5843. "ref/wpa81/_._",
  5844. "ref/xamarinios10/_._",
  5845. "ref/xamarinmac20/_._",
  5846. "ref/xamarintvos10/_._",
  5847. "ref/xamarinwatchos10/_._",
  5848. "system.io.4.3.0.nupkg.sha512",
  5849. "system.io.nuspec"
  5850. ]
  5851. },
  5852. "System.IO.Compression/4.3.0": {
  5853. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5854. "type": "package",
  5855. "path": "system.io.compression/4.3.0",
  5856. "files": [
  5857. ".nupkg.metadata",
  5858. ".signature.p7s",
  5859. "ThirdPartyNotices.txt",
  5860. "dotnet_library_license.txt",
  5861. "lib/MonoAndroid10/_._",
  5862. "lib/MonoTouch10/_._",
  5863. "lib/net45/_._",
  5864. "lib/net46/System.IO.Compression.dll",
  5865. "lib/portable-net45+win8+wpa81/_._",
  5866. "lib/win8/_._",
  5867. "lib/wpa81/_._",
  5868. "lib/xamarinios10/_._",
  5869. "lib/xamarinmac20/_._",
  5870. "lib/xamarintvos10/_._",
  5871. "lib/xamarinwatchos10/_._",
  5872. "ref/MonoAndroid10/_._",
  5873. "ref/MonoTouch10/_._",
  5874. "ref/net45/_._",
  5875. "ref/net46/System.IO.Compression.dll",
  5876. "ref/netcore50/System.IO.Compression.dll",
  5877. "ref/netcore50/System.IO.Compression.xml",
  5878. "ref/netcore50/de/System.IO.Compression.xml",
  5879. "ref/netcore50/es/System.IO.Compression.xml",
  5880. "ref/netcore50/fr/System.IO.Compression.xml",
  5881. "ref/netcore50/it/System.IO.Compression.xml",
  5882. "ref/netcore50/ja/System.IO.Compression.xml",
  5883. "ref/netcore50/ko/System.IO.Compression.xml",
  5884. "ref/netcore50/ru/System.IO.Compression.xml",
  5885. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5886. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5887. "ref/netstandard1.1/System.IO.Compression.dll",
  5888. "ref/netstandard1.1/System.IO.Compression.xml",
  5889. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5890. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5891. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5892. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5893. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5894. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5895. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5896. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5897. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5898. "ref/netstandard1.3/System.IO.Compression.dll",
  5899. "ref/netstandard1.3/System.IO.Compression.xml",
  5900. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5901. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5902. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5903. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5904. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5905. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5906. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5907. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5908. "ref/netstandard1.3/zh-hant/System.IO.Compression.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. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5917. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5918. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5919. "system.io.compression.4.3.0.nupkg.sha512",
  5920. "system.io.compression.nuspec"
  5921. ]
  5922. },
  5923. "System.IO.Compression.ZipFile/4.3.0": {
  5924. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5925. "type": "package",
  5926. "path": "system.io.compression.zipfile/4.3.0",
  5927. "files": [
  5928. ".nupkg.metadata",
  5929. ".signature.p7s",
  5930. "ThirdPartyNotices.txt",
  5931. "dotnet_library_license.txt",
  5932. "lib/MonoAndroid10/_._",
  5933. "lib/MonoTouch10/_._",
  5934. "lib/net46/System.IO.Compression.ZipFile.dll",
  5935. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5936. "lib/xamarinios10/_._",
  5937. "lib/xamarinmac20/_._",
  5938. "lib/xamarintvos10/_._",
  5939. "lib/xamarinwatchos10/_._",
  5940. "ref/MonoAndroid10/_._",
  5941. "ref/MonoTouch10/_._",
  5942. "ref/net46/System.IO.Compression.ZipFile.dll",
  5943. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5944. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5945. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5946. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5947. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5948. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5949. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5950. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5951. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5952. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5953. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5954. "ref/xamarinios10/_._",
  5955. "ref/xamarinmac20/_._",
  5956. "ref/xamarintvos10/_._",
  5957. "ref/xamarinwatchos10/_._",
  5958. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5959. "system.io.compression.zipfile.nuspec"
  5960. ]
  5961. },
  5962. "System.IO.FileSystem/4.3.0": {
  5963. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5964. "type": "package",
  5965. "path": "system.io.filesystem/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/net46/System.IO.FileSystem.dll",
  5974. "lib/xamarinios10/_._",
  5975. "lib/xamarinmac20/_._",
  5976. "lib/xamarintvos10/_._",
  5977. "lib/xamarinwatchos10/_._",
  5978. "ref/MonoAndroid10/_._",
  5979. "ref/MonoTouch10/_._",
  5980. "ref/net46/System.IO.FileSystem.dll",
  5981. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5982. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5983. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5984. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5985. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5986. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5987. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5988. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5989. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5990. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5991. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5992. "ref/xamarinios10/_._",
  5993. "ref/xamarinmac20/_._",
  5994. "ref/xamarintvos10/_._",
  5995. "ref/xamarinwatchos10/_._",
  5996. "system.io.filesystem.4.3.0.nupkg.sha512",
  5997. "system.io.filesystem.nuspec"
  5998. ]
  5999. },
  6000. "System.IO.FileSystem.Primitives/4.3.0": {
  6001. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6002. "type": "package",
  6003. "path": "system.io.filesystem.primitives/4.3.0",
  6004. "files": [
  6005. ".nupkg.metadata",
  6006. ".signature.p7s",
  6007. "ThirdPartyNotices.txt",
  6008. "dotnet_library_license.txt",
  6009. "lib/MonoAndroid10/_._",
  6010. "lib/MonoTouch10/_._",
  6011. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6012. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6013. "lib/xamarinios10/_._",
  6014. "lib/xamarinmac20/_._",
  6015. "lib/xamarintvos10/_._",
  6016. "lib/xamarinwatchos10/_._",
  6017. "ref/MonoAndroid10/_._",
  6018. "ref/MonoTouch10/_._",
  6019. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6020. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6021. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6022. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6023. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6024. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6025. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6026. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6027. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6028. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6029. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6030. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6031. "ref/xamarinios10/_._",
  6032. "ref/xamarinmac20/_._",
  6033. "ref/xamarintvos10/_._",
  6034. "ref/xamarinwatchos10/_._",
  6035. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6036. "system.io.filesystem.primitives.nuspec"
  6037. ]
  6038. },
  6039. "System.IO.Pipelines/5.0.0": {
  6040. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6041. "type": "package",
  6042. "path": "system.io.pipelines/5.0.0",
  6043. "files": [
  6044. ".nupkg.metadata",
  6045. ".signature.p7s",
  6046. "Icon.png",
  6047. "LICENSE.TXT",
  6048. "THIRD-PARTY-NOTICES.TXT",
  6049. "lib/net461/System.IO.Pipelines.dll",
  6050. "lib/net461/System.IO.Pipelines.xml",
  6051. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6052. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6053. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6054. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6055. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6056. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6057. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6058. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6059. "system.io.pipelines.5.0.0.nupkg.sha512",
  6060. "system.io.pipelines.nuspec",
  6061. "useSharedDesignerContext.txt",
  6062. "version.txt"
  6063. ]
  6064. },
  6065. "System.Linq/4.3.0": {
  6066. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6067. "type": "package",
  6068. "path": "system.linq/4.3.0",
  6069. "files": [
  6070. ".nupkg.metadata",
  6071. ".signature.p7s",
  6072. "ThirdPartyNotices.txt",
  6073. "dotnet_library_license.txt",
  6074. "lib/MonoAndroid10/_._",
  6075. "lib/MonoTouch10/_._",
  6076. "lib/net45/_._",
  6077. "lib/net463/System.Linq.dll",
  6078. "lib/netcore50/System.Linq.dll",
  6079. "lib/netstandard1.6/System.Linq.dll",
  6080. "lib/portable-net45+win8+wp8+wpa81/_._",
  6081. "lib/win8/_._",
  6082. "lib/wp80/_._",
  6083. "lib/wpa81/_._",
  6084. "lib/xamarinios10/_._",
  6085. "lib/xamarinmac20/_._",
  6086. "lib/xamarintvos10/_._",
  6087. "lib/xamarinwatchos10/_._",
  6088. "ref/MonoAndroid10/_._",
  6089. "ref/MonoTouch10/_._",
  6090. "ref/net45/_._",
  6091. "ref/net463/System.Linq.dll",
  6092. "ref/netcore50/System.Linq.dll",
  6093. "ref/netcore50/System.Linq.xml",
  6094. "ref/netcore50/de/System.Linq.xml",
  6095. "ref/netcore50/es/System.Linq.xml",
  6096. "ref/netcore50/fr/System.Linq.xml",
  6097. "ref/netcore50/it/System.Linq.xml",
  6098. "ref/netcore50/ja/System.Linq.xml",
  6099. "ref/netcore50/ko/System.Linq.xml",
  6100. "ref/netcore50/ru/System.Linq.xml",
  6101. "ref/netcore50/zh-hans/System.Linq.xml",
  6102. "ref/netcore50/zh-hant/System.Linq.xml",
  6103. "ref/netstandard1.0/System.Linq.dll",
  6104. "ref/netstandard1.0/System.Linq.xml",
  6105. "ref/netstandard1.0/de/System.Linq.xml",
  6106. "ref/netstandard1.0/es/System.Linq.xml",
  6107. "ref/netstandard1.0/fr/System.Linq.xml",
  6108. "ref/netstandard1.0/it/System.Linq.xml",
  6109. "ref/netstandard1.0/ja/System.Linq.xml",
  6110. "ref/netstandard1.0/ko/System.Linq.xml",
  6111. "ref/netstandard1.0/ru/System.Linq.xml",
  6112. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6113. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6114. "ref/netstandard1.6/System.Linq.dll",
  6115. "ref/netstandard1.6/System.Linq.xml",
  6116. "ref/netstandard1.6/de/System.Linq.xml",
  6117. "ref/netstandard1.6/es/System.Linq.xml",
  6118. "ref/netstandard1.6/fr/System.Linq.xml",
  6119. "ref/netstandard1.6/it/System.Linq.xml",
  6120. "ref/netstandard1.6/ja/System.Linq.xml",
  6121. "ref/netstandard1.6/ko/System.Linq.xml",
  6122. "ref/netstandard1.6/ru/System.Linq.xml",
  6123. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6124. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6125. "ref/portable-net45+win8+wp8+wpa81/_._",
  6126. "ref/win8/_._",
  6127. "ref/wp80/_._",
  6128. "ref/wpa81/_._",
  6129. "ref/xamarinios10/_._",
  6130. "ref/xamarinmac20/_._",
  6131. "ref/xamarintvos10/_._",
  6132. "ref/xamarinwatchos10/_._",
  6133. "system.linq.4.3.0.nupkg.sha512",
  6134. "system.linq.nuspec"
  6135. ]
  6136. },
  6137. "System.Linq.Expressions/4.3.0": {
  6138. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6139. "type": "package",
  6140. "path": "system.linq.expressions/4.3.0",
  6141. "files": [
  6142. ".nupkg.metadata",
  6143. ".signature.p7s",
  6144. "ThirdPartyNotices.txt",
  6145. "dotnet_library_license.txt",
  6146. "lib/MonoAndroid10/_._",
  6147. "lib/MonoTouch10/_._",
  6148. "lib/net45/_._",
  6149. "lib/net463/System.Linq.Expressions.dll",
  6150. "lib/netcore50/System.Linq.Expressions.dll",
  6151. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6152. "lib/portable-net45+win8+wp8+wpa81/_._",
  6153. "lib/win8/_._",
  6154. "lib/wp80/_._",
  6155. "lib/wpa81/_._",
  6156. "lib/xamarinios10/_._",
  6157. "lib/xamarinmac20/_._",
  6158. "lib/xamarintvos10/_._",
  6159. "lib/xamarinwatchos10/_._",
  6160. "ref/MonoAndroid10/_._",
  6161. "ref/MonoTouch10/_._",
  6162. "ref/net45/_._",
  6163. "ref/net463/System.Linq.Expressions.dll",
  6164. "ref/netcore50/System.Linq.Expressions.dll",
  6165. "ref/netcore50/System.Linq.Expressions.xml",
  6166. "ref/netcore50/de/System.Linq.Expressions.xml",
  6167. "ref/netcore50/es/System.Linq.Expressions.xml",
  6168. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6169. "ref/netcore50/it/System.Linq.Expressions.xml",
  6170. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6171. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6172. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6173. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6174. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6175. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6176. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6177. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6178. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6179. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6180. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6181. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6182. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6183. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6184. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6185. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6186. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6187. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6188. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6189. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6190. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6191. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6192. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6193. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6194. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6195. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6196. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6197. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6198. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6199. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6200. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6201. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6202. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6203. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6204. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6205. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6206. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6207. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6208. "ref/portable-net45+win8+wp8+wpa81/_._",
  6209. "ref/win8/_._",
  6210. "ref/wp80/_._",
  6211. "ref/wpa81/_._",
  6212. "ref/xamarinios10/_._",
  6213. "ref/xamarinmac20/_._",
  6214. "ref/xamarintvos10/_._",
  6215. "ref/xamarinwatchos10/_._",
  6216. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6217. "system.linq.expressions.4.3.0.nupkg.sha512",
  6218. "system.linq.expressions.nuspec"
  6219. ]
  6220. },
  6221. "System.Memory/4.5.5": {
  6222. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6223. "type": "package",
  6224. "path": "system.memory/4.5.5",
  6225. "files": [
  6226. ".nupkg.metadata",
  6227. ".signature.p7s",
  6228. "LICENSE.TXT",
  6229. "THIRD-PARTY-NOTICES.TXT",
  6230. "lib/net461/System.Memory.dll",
  6231. "lib/net461/System.Memory.xml",
  6232. "lib/netcoreapp2.1/_._",
  6233. "lib/netstandard1.1/System.Memory.dll",
  6234. "lib/netstandard1.1/System.Memory.xml",
  6235. "lib/netstandard2.0/System.Memory.dll",
  6236. "lib/netstandard2.0/System.Memory.xml",
  6237. "ref/netcoreapp2.1/_._",
  6238. "system.memory.4.5.5.nupkg.sha512",
  6239. "system.memory.nuspec",
  6240. "useSharedDesignerContext.txt",
  6241. "version.txt"
  6242. ]
  6243. },
  6244. "System.Net.Http/4.3.0": {
  6245. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6246. "type": "package",
  6247. "path": "system.net.http/4.3.0",
  6248. "files": [
  6249. ".nupkg.metadata",
  6250. ".signature.p7s",
  6251. "ThirdPartyNotices.txt",
  6252. "dotnet_library_license.txt",
  6253. "lib/Xamarinmac20/_._",
  6254. "lib/monoandroid10/_._",
  6255. "lib/monotouch10/_._",
  6256. "lib/net45/_._",
  6257. "lib/net46/System.Net.Http.dll",
  6258. "lib/portable-net45+win8+wpa81/_._",
  6259. "lib/win8/_._",
  6260. "lib/wpa81/_._",
  6261. "lib/xamarinios10/_._",
  6262. "lib/xamarintvos10/_._",
  6263. "lib/xamarinwatchos10/_._",
  6264. "ref/Xamarinmac20/_._",
  6265. "ref/monoandroid10/_._",
  6266. "ref/monotouch10/_._",
  6267. "ref/net45/_._",
  6268. "ref/net46/System.Net.Http.dll",
  6269. "ref/net46/System.Net.Http.xml",
  6270. "ref/net46/de/System.Net.Http.xml",
  6271. "ref/net46/es/System.Net.Http.xml",
  6272. "ref/net46/fr/System.Net.Http.xml",
  6273. "ref/net46/it/System.Net.Http.xml",
  6274. "ref/net46/ja/System.Net.Http.xml",
  6275. "ref/net46/ko/System.Net.Http.xml",
  6276. "ref/net46/ru/System.Net.Http.xml",
  6277. "ref/net46/zh-hans/System.Net.Http.xml",
  6278. "ref/net46/zh-hant/System.Net.Http.xml",
  6279. "ref/netcore50/System.Net.Http.dll",
  6280. "ref/netcore50/System.Net.Http.xml",
  6281. "ref/netcore50/de/System.Net.Http.xml",
  6282. "ref/netcore50/es/System.Net.Http.xml",
  6283. "ref/netcore50/fr/System.Net.Http.xml",
  6284. "ref/netcore50/it/System.Net.Http.xml",
  6285. "ref/netcore50/ja/System.Net.Http.xml",
  6286. "ref/netcore50/ko/System.Net.Http.xml",
  6287. "ref/netcore50/ru/System.Net.Http.xml",
  6288. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6289. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6290. "ref/netstandard1.1/System.Net.Http.dll",
  6291. "ref/netstandard1.1/System.Net.Http.xml",
  6292. "ref/netstandard1.1/de/System.Net.Http.xml",
  6293. "ref/netstandard1.1/es/System.Net.Http.xml",
  6294. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6295. "ref/netstandard1.1/it/System.Net.Http.xml",
  6296. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6297. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6298. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6299. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6300. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6301. "ref/netstandard1.3/System.Net.Http.dll",
  6302. "ref/netstandard1.3/System.Net.Http.xml",
  6303. "ref/netstandard1.3/de/System.Net.Http.xml",
  6304. "ref/netstandard1.3/es/System.Net.Http.xml",
  6305. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6306. "ref/netstandard1.3/it/System.Net.Http.xml",
  6307. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6308. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6309. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6310. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6311. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6312. "ref/portable-net45+win8+wpa81/_._",
  6313. "ref/win8/_._",
  6314. "ref/wpa81/_._",
  6315. "ref/xamarinios10/_._",
  6316. "ref/xamarintvos10/_._",
  6317. "ref/xamarinwatchos10/_._",
  6318. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6319. "runtimes/win/lib/net46/System.Net.Http.dll",
  6320. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6321. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6322. "system.net.http.4.3.0.nupkg.sha512",
  6323. "system.net.http.nuspec"
  6324. ]
  6325. },
  6326. "System.Net.NameResolution/4.3.0": {
  6327. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6328. "type": "package",
  6329. "path": "system.net.nameresolution/4.3.0",
  6330. "files": [
  6331. ".nupkg.metadata",
  6332. ".signature.p7s",
  6333. "ThirdPartyNotices.txt",
  6334. "dotnet_library_license.txt",
  6335. "lib/MonoAndroid10/_._",
  6336. "lib/MonoTouch10/_._",
  6337. "lib/net46/System.Net.NameResolution.dll",
  6338. "lib/xamarinios10/_._",
  6339. "lib/xamarinmac20/_._",
  6340. "lib/xamarintvos10/_._",
  6341. "lib/xamarinwatchos10/_._",
  6342. "ref/MonoAndroid10/_._",
  6343. "ref/MonoTouch10/_._",
  6344. "ref/net46/System.Net.NameResolution.dll",
  6345. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6346. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6347. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6348. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6349. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6350. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6351. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6352. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6353. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6354. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6355. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6356. "ref/xamarinios10/_._",
  6357. "ref/xamarinmac20/_._",
  6358. "ref/xamarintvos10/_._",
  6359. "ref/xamarinwatchos10/_._",
  6360. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6361. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6362. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6363. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6364. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6365. "system.net.nameresolution.nuspec"
  6366. ]
  6367. },
  6368. "System.Net.Primitives/4.3.0": {
  6369. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6370. "type": "package",
  6371. "path": "system.net.primitives/4.3.0",
  6372. "files": [
  6373. ".nupkg.metadata",
  6374. ".signature.p7s",
  6375. "ThirdPartyNotices.txt",
  6376. "dotnet_library_license.txt",
  6377. "lib/MonoAndroid10/_._",
  6378. "lib/MonoTouch10/_._",
  6379. "lib/net45/_._",
  6380. "lib/portable-net45+win8+wp8+wpa81/_._",
  6381. "lib/win8/_._",
  6382. "lib/wp80/_._",
  6383. "lib/wpa81/_._",
  6384. "lib/xamarinios10/_._",
  6385. "lib/xamarinmac20/_._",
  6386. "lib/xamarintvos10/_._",
  6387. "lib/xamarinwatchos10/_._",
  6388. "ref/MonoAndroid10/_._",
  6389. "ref/MonoTouch10/_._",
  6390. "ref/net45/_._",
  6391. "ref/netcore50/System.Net.Primitives.dll",
  6392. "ref/netcore50/System.Net.Primitives.xml",
  6393. "ref/netcore50/de/System.Net.Primitives.xml",
  6394. "ref/netcore50/es/System.Net.Primitives.xml",
  6395. "ref/netcore50/fr/System.Net.Primitives.xml",
  6396. "ref/netcore50/it/System.Net.Primitives.xml",
  6397. "ref/netcore50/ja/System.Net.Primitives.xml",
  6398. "ref/netcore50/ko/System.Net.Primitives.xml",
  6399. "ref/netcore50/ru/System.Net.Primitives.xml",
  6400. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6401. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6402. "ref/netstandard1.0/System.Net.Primitives.dll",
  6403. "ref/netstandard1.0/System.Net.Primitives.xml",
  6404. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6405. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6406. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6407. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6408. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6409. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6410. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6411. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6412. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6413. "ref/netstandard1.1/System.Net.Primitives.dll",
  6414. "ref/netstandard1.1/System.Net.Primitives.xml",
  6415. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6416. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6417. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6418. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6419. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6420. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6421. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6422. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6423. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6424. "ref/netstandard1.3/System.Net.Primitives.dll",
  6425. "ref/netstandard1.3/System.Net.Primitives.xml",
  6426. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6427. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6428. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6429. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6430. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6431. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6432. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6433. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6434. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6435. "ref/portable-net45+win8+wp8+wpa81/_._",
  6436. "ref/win8/_._",
  6437. "ref/wp80/_._",
  6438. "ref/wpa81/_._",
  6439. "ref/xamarinios10/_._",
  6440. "ref/xamarinmac20/_._",
  6441. "ref/xamarintvos10/_._",
  6442. "ref/xamarinwatchos10/_._",
  6443. "system.net.primitives.4.3.0.nupkg.sha512",
  6444. "system.net.primitives.nuspec"
  6445. ]
  6446. },
  6447. "System.Net.Security/4.3.0": {
  6448. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6449. "type": "package",
  6450. "path": "system.net.security/4.3.0",
  6451. "files": [
  6452. ".nupkg.metadata",
  6453. ".signature.p7s",
  6454. "ThirdPartyNotices.txt",
  6455. "dotnet_library_license.txt",
  6456. "lib/MonoAndroid10/_._",
  6457. "lib/MonoTouch10/_._",
  6458. "lib/net46/System.Net.Security.dll",
  6459. "lib/xamarinios10/_._",
  6460. "lib/xamarinmac20/_._",
  6461. "lib/xamarintvos10/_._",
  6462. "lib/xamarinwatchos10/_._",
  6463. "ref/MonoAndroid10/_._",
  6464. "ref/MonoTouch10/_._",
  6465. "ref/net46/System.Net.Security.dll",
  6466. "ref/netstandard1.3/System.Net.Security.dll",
  6467. "ref/netstandard1.3/System.Net.Security.xml",
  6468. "ref/netstandard1.3/de/System.Net.Security.xml",
  6469. "ref/netstandard1.3/es/System.Net.Security.xml",
  6470. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6471. "ref/netstandard1.3/it/System.Net.Security.xml",
  6472. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6473. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6474. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6475. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6476. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6477. "ref/xamarinios10/_._",
  6478. "ref/xamarinmac20/_._",
  6479. "ref/xamarintvos10/_._",
  6480. "ref/xamarinwatchos10/_._",
  6481. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6482. "runtimes/win/lib/net46/System.Net.Security.dll",
  6483. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6484. "runtimes/win7/lib/netcore50/_._",
  6485. "system.net.security.4.3.0.nupkg.sha512",
  6486. "system.net.security.nuspec"
  6487. ]
  6488. },
  6489. "System.Net.Sockets/4.3.0": {
  6490. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6491. "type": "package",
  6492. "path": "system.net.sockets/4.3.0",
  6493. "files": [
  6494. ".nupkg.metadata",
  6495. ".signature.p7s",
  6496. "ThirdPartyNotices.txt",
  6497. "dotnet_library_license.txt",
  6498. "lib/MonoAndroid10/_._",
  6499. "lib/MonoTouch10/_._",
  6500. "lib/net46/System.Net.Sockets.dll",
  6501. "lib/xamarinios10/_._",
  6502. "lib/xamarinmac20/_._",
  6503. "lib/xamarintvos10/_._",
  6504. "lib/xamarinwatchos10/_._",
  6505. "ref/MonoAndroid10/_._",
  6506. "ref/MonoTouch10/_._",
  6507. "ref/net46/System.Net.Sockets.dll",
  6508. "ref/netstandard1.3/System.Net.Sockets.dll",
  6509. "ref/netstandard1.3/System.Net.Sockets.xml",
  6510. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6511. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6512. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6513. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6514. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6515. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6516. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6517. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6518. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6519. "ref/xamarinios10/_._",
  6520. "ref/xamarinmac20/_._",
  6521. "ref/xamarintvos10/_._",
  6522. "ref/xamarinwatchos10/_._",
  6523. "system.net.sockets.4.3.0.nupkg.sha512",
  6524. "system.net.sockets.nuspec"
  6525. ]
  6526. },
  6527. "System.ObjectModel/4.3.0": {
  6528. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6529. "type": "package",
  6530. "path": "system.objectmodel/4.3.0",
  6531. "files": [
  6532. ".nupkg.metadata",
  6533. ".signature.p7s",
  6534. "ThirdPartyNotices.txt",
  6535. "dotnet_library_license.txt",
  6536. "lib/MonoAndroid10/_._",
  6537. "lib/MonoTouch10/_._",
  6538. "lib/net45/_._",
  6539. "lib/netcore50/System.ObjectModel.dll",
  6540. "lib/netstandard1.3/System.ObjectModel.dll",
  6541. "lib/portable-net45+win8+wp8+wpa81/_._",
  6542. "lib/win8/_._",
  6543. "lib/wp80/_._",
  6544. "lib/wpa81/_._",
  6545. "lib/xamarinios10/_._",
  6546. "lib/xamarinmac20/_._",
  6547. "lib/xamarintvos10/_._",
  6548. "lib/xamarinwatchos10/_._",
  6549. "ref/MonoAndroid10/_._",
  6550. "ref/MonoTouch10/_._",
  6551. "ref/net45/_._",
  6552. "ref/netcore50/System.ObjectModel.dll",
  6553. "ref/netcore50/System.ObjectModel.xml",
  6554. "ref/netcore50/de/System.ObjectModel.xml",
  6555. "ref/netcore50/es/System.ObjectModel.xml",
  6556. "ref/netcore50/fr/System.ObjectModel.xml",
  6557. "ref/netcore50/it/System.ObjectModel.xml",
  6558. "ref/netcore50/ja/System.ObjectModel.xml",
  6559. "ref/netcore50/ko/System.ObjectModel.xml",
  6560. "ref/netcore50/ru/System.ObjectModel.xml",
  6561. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6562. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6563. "ref/netstandard1.0/System.ObjectModel.dll",
  6564. "ref/netstandard1.0/System.ObjectModel.xml",
  6565. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6566. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6567. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6568. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6569. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6570. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6571. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6572. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6573. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6574. "ref/netstandard1.3/System.ObjectModel.dll",
  6575. "ref/netstandard1.3/System.ObjectModel.xml",
  6576. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6577. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6578. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6579. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6580. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6581. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6582. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6583. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6584. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6585. "ref/portable-net45+win8+wp8+wpa81/_._",
  6586. "ref/win8/_._",
  6587. "ref/wp80/_._",
  6588. "ref/wpa81/_._",
  6589. "ref/xamarinios10/_._",
  6590. "ref/xamarinmac20/_._",
  6591. "ref/xamarintvos10/_._",
  6592. "ref/xamarinwatchos10/_._",
  6593. "system.objectmodel.4.3.0.nupkg.sha512",
  6594. "system.objectmodel.nuspec"
  6595. ]
  6596. },
  6597. "System.Reflection/4.3.0": {
  6598. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6599. "type": "package",
  6600. "path": "system.reflection/4.3.0",
  6601. "files": [
  6602. ".nupkg.metadata",
  6603. ".signature.p7s",
  6604. "ThirdPartyNotices.txt",
  6605. "dotnet_library_license.txt",
  6606. "lib/MonoAndroid10/_._",
  6607. "lib/MonoTouch10/_._",
  6608. "lib/net45/_._",
  6609. "lib/net462/System.Reflection.dll",
  6610. "lib/portable-net45+win8+wp8+wpa81/_._",
  6611. "lib/win8/_._",
  6612. "lib/wp80/_._",
  6613. "lib/wpa81/_._",
  6614. "lib/xamarinios10/_._",
  6615. "lib/xamarinmac20/_._",
  6616. "lib/xamarintvos10/_._",
  6617. "lib/xamarinwatchos10/_._",
  6618. "ref/MonoAndroid10/_._",
  6619. "ref/MonoTouch10/_._",
  6620. "ref/net45/_._",
  6621. "ref/net462/System.Reflection.dll",
  6622. "ref/netcore50/System.Reflection.dll",
  6623. "ref/netcore50/System.Reflection.xml",
  6624. "ref/netcore50/de/System.Reflection.xml",
  6625. "ref/netcore50/es/System.Reflection.xml",
  6626. "ref/netcore50/fr/System.Reflection.xml",
  6627. "ref/netcore50/it/System.Reflection.xml",
  6628. "ref/netcore50/ja/System.Reflection.xml",
  6629. "ref/netcore50/ko/System.Reflection.xml",
  6630. "ref/netcore50/ru/System.Reflection.xml",
  6631. "ref/netcore50/zh-hans/System.Reflection.xml",
  6632. "ref/netcore50/zh-hant/System.Reflection.xml",
  6633. "ref/netstandard1.0/System.Reflection.dll",
  6634. "ref/netstandard1.0/System.Reflection.xml",
  6635. "ref/netstandard1.0/de/System.Reflection.xml",
  6636. "ref/netstandard1.0/es/System.Reflection.xml",
  6637. "ref/netstandard1.0/fr/System.Reflection.xml",
  6638. "ref/netstandard1.0/it/System.Reflection.xml",
  6639. "ref/netstandard1.0/ja/System.Reflection.xml",
  6640. "ref/netstandard1.0/ko/System.Reflection.xml",
  6641. "ref/netstandard1.0/ru/System.Reflection.xml",
  6642. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6643. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6644. "ref/netstandard1.3/System.Reflection.dll",
  6645. "ref/netstandard1.3/System.Reflection.xml",
  6646. "ref/netstandard1.3/de/System.Reflection.xml",
  6647. "ref/netstandard1.3/es/System.Reflection.xml",
  6648. "ref/netstandard1.3/fr/System.Reflection.xml",
  6649. "ref/netstandard1.3/it/System.Reflection.xml",
  6650. "ref/netstandard1.3/ja/System.Reflection.xml",
  6651. "ref/netstandard1.3/ko/System.Reflection.xml",
  6652. "ref/netstandard1.3/ru/System.Reflection.xml",
  6653. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6654. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6655. "ref/netstandard1.5/System.Reflection.dll",
  6656. "ref/netstandard1.5/System.Reflection.xml",
  6657. "ref/netstandard1.5/de/System.Reflection.xml",
  6658. "ref/netstandard1.5/es/System.Reflection.xml",
  6659. "ref/netstandard1.5/fr/System.Reflection.xml",
  6660. "ref/netstandard1.5/it/System.Reflection.xml",
  6661. "ref/netstandard1.5/ja/System.Reflection.xml",
  6662. "ref/netstandard1.5/ko/System.Reflection.xml",
  6663. "ref/netstandard1.5/ru/System.Reflection.xml",
  6664. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6665. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6666. "ref/portable-net45+win8+wp8+wpa81/_._",
  6667. "ref/win8/_._",
  6668. "ref/wp80/_._",
  6669. "ref/wpa81/_._",
  6670. "ref/xamarinios10/_._",
  6671. "ref/xamarinmac20/_._",
  6672. "ref/xamarintvos10/_._",
  6673. "ref/xamarinwatchos10/_._",
  6674. "system.reflection.4.3.0.nupkg.sha512",
  6675. "system.reflection.nuspec"
  6676. ]
  6677. },
  6678. "System.Reflection.Emit/4.7.0": {
  6679. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  6680. "type": "package",
  6681. "path": "system.reflection.emit/4.7.0",
  6682. "files": [
  6683. ".nupkg.metadata",
  6684. ".signature.p7s",
  6685. "LICENSE.TXT",
  6686. "THIRD-PARTY-NOTICES.TXT",
  6687. "lib/MonoAndroid10/_._",
  6688. "lib/MonoTouch10/_._",
  6689. "lib/net45/_._",
  6690. "lib/netcore50/System.Reflection.Emit.dll",
  6691. "lib/netcoreapp2.0/_._",
  6692. "lib/netstandard1.1/System.Reflection.Emit.dll",
  6693. "lib/netstandard1.1/System.Reflection.Emit.xml",
  6694. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6695. "lib/netstandard2.0/System.Reflection.Emit.dll",
  6696. "lib/netstandard2.0/System.Reflection.Emit.xml",
  6697. "lib/netstandard2.1/_._",
  6698. "lib/xamarinios10/_._",
  6699. "lib/xamarinmac20/_._",
  6700. "lib/xamarintvos10/_._",
  6701. "lib/xamarinwatchos10/_._",
  6702. "ref/MonoAndroid10/_._",
  6703. "ref/MonoTouch10/_._",
  6704. "ref/net45/_._",
  6705. "ref/netcoreapp2.0/_._",
  6706. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6707. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6708. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6709. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6710. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6711. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6712. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6713. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6714. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6715. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6716. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6717. "ref/netstandard2.0/System.Reflection.Emit.dll",
  6718. "ref/netstandard2.0/System.Reflection.Emit.xml",
  6719. "ref/netstandard2.1/_._",
  6720. "ref/xamarinios10/_._",
  6721. "ref/xamarinmac20/_._",
  6722. "ref/xamarintvos10/_._",
  6723. "ref/xamarinwatchos10/_._",
  6724. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  6725. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  6726. "system.reflection.emit.4.7.0.nupkg.sha512",
  6727. "system.reflection.emit.nuspec",
  6728. "useSharedDesignerContext.txt",
  6729. "version.txt"
  6730. ]
  6731. },
  6732. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6733. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6734. "type": "package",
  6735. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6736. "files": [
  6737. ".nupkg.metadata",
  6738. ".signature.p7s",
  6739. "ThirdPartyNotices.txt",
  6740. "dotnet_library_license.txt",
  6741. "lib/MonoAndroid10/_._",
  6742. "lib/MonoTouch10/_._",
  6743. "lib/net45/_._",
  6744. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6745. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6746. "lib/portable-net45+wp8/_._",
  6747. "lib/wp80/_._",
  6748. "lib/xamarinios10/_._",
  6749. "lib/xamarinmac20/_._",
  6750. "lib/xamarintvos10/_._",
  6751. "lib/xamarinwatchos10/_._",
  6752. "ref/MonoAndroid10/_._",
  6753. "ref/MonoTouch10/_._",
  6754. "ref/net45/_._",
  6755. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6756. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6757. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6758. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6759. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6760. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6761. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6762. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6763. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6764. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6765. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6766. "ref/portable-net45+wp8/_._",
  6767. "ref/wp80/_._",
  6768. "ref/xamarinios10/_._",
  6769. "ref/xamarinmac20/_._",
  6770. "ref/xamarintvos10/_._",
  6771. "ref/xamarinwatchos10/_._",
  6772. "runtimes/aot/lib/netcore50/_._",
  6773. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6774. "system.reflection.emit.ilgeneration.nuspec"
  6775. ]
  6776. },
  6777. "System.Reflection.Emit.Lightweight/4.3.0": {
  6778. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6779. "type": "package",
  6780. "path": "system.reflection.emit.lightweight/4.3.0",
  6781. "files": [
  6782. ".nupkg.metadata",
  6783. ".signature.p7s",
  6784. "ThirdPartyNotices.txt",
  6785. "dotnet_library_license.txt",
  6786. "lib/MonoAndroid10/_._",
  6787. "lib/MonoTouch10/_._",
  6788. "lib/net45/_._",
  6789. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6790. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6791. "lib/portable-net45+wp8/_._",
  6792. "lib/wp80/_._",
  6793. "lib/xamarinios10/_._",
  6794. "lib/xamarinmac20/_._",
  6795. "lib/xamarintvos10/_._",
  6796. "lib/xamarinwatchos10/_._",
  6797. "ref/MonoAndroid10/_._",
  6798. "ref/MonoTouch10/_._",
  6799. "ref/net45/_._",
  6800. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6801. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6802. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6803. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6804. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6805. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6806. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6807. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6808. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6809. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6810. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6811. "ref/portable-net45+wp8/_._",
  6812. "ref/wp80/_._",
  6813. "ref/xamarinios10/_._",
  6814. "ref/xamarinmac20/_._",
  6815. "ref/xamarintvos10/_._",
  6816. "ref/xamarinwatchos10/_._",
  6817. "runtimes/aot/lib/netcore50/_._",
  6818. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6819. "system.reflection.emit.lightweight.nuspec"
  6820. ]
  6821. },
  6822. "System.Reflection.Extensions/4.3.0": {
  6823. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6824. "type": "package",
  6825. "path": "system.reflection.extensions/4.3.0",
  6826. "files": [
  6827. ".nupkg.metadata",
  6828. ".signature.p7s",
  6829. "ThirdPartyNotices.txt",
  6830. "dotnet_library_license.txt",
  6831. "lib/MonoAndroid10/_._",
  6832. "lib/MonoTouch10/_._",
  6833. "lib/net45/_._",
  6834. "lib/portable-net45+win8+wp8+wpa81/_._",
  6835. "lib/win8/_._",
  6836. "lib/wp80/_._",
  6837. "lib/wpa81/_._",
  6838. "lib/xamarinios10/_._",
  6839. "lib/xamarinmac20/_._",
  6840. "lib/xamarintvos10/_._",
  6841. "lib/xamarinwatchos10/_._",
  6842. "ref/MonoAndroid10/_._",
  6843. "ref/MonoTouch10/_._",
  6844. "ref/net45/_._",
  6845. "ref/netcore50/System.Reflection.Extensions.dll",
  6846. "ref/netcore50/System.Reflection.Extensions.xml",
  6847. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6848. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6849. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6850. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6851. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6852. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6853. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6854. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6855. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6856. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6857. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6858. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6859. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6860. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6861. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6862. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6863. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6864. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6865. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6866. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6867. "ref/portable-net45+win8+wp8+wpa81/_._",
  6868. "ref/win8/_._",
  6869. "ref/wp80/_._",
  6870. "ref/wpa81/_._",
  6871. "ref/xamarinios10/_._",
  6872. "ref/xamarinmac20/_._",
  6873. "ref/xamarintvos10/_._",
  6874. "ref/xamarinwatchos10/_._",
  6875. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6876. "system.reflection.extensions.nuspec"
  6877. ]
  6878. },
  6879. "System.Reflection.Primitives/4.3.0": {
  6880. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6881. "type": "package",
  6882. "path": "system.reflection.primitives/4.3.0",
  6883. "files": [
  6884. ".nupkg.metadata",
  6885. ".signature.p7s",
  6886. "ThirdPartyNotices.txt",
  6887. "dotnet_library_license.txt",
  6888. "lib/MonoAndroid10/_._",
  6889. "lib/MonoTouch10/_._",
  6890. "lib/net45/_._",
  6891. "lib/portable-net45+win8+wp8+wpa81/_._",
  6892. "lib/win8/_._",
  6893. "lib/wp80/_._",
  6894. "lib/wpa81/_._",
  6895. "lib/xamarinios10/_._",
  6896. "lib/xamarinmac20/_._",
  6897. "lib/xamarintvos10/_._",
  6898. "lib/xamarinwatchos10/_._",
  6899. "ref/MonoAndroid10/_._",
  6900. "ref/MonoTouch10/_._",
  6901. "ref/net45/_._",
  6902. "ref/netcore50/System.Reflection.Primitives.dll",
  6903. "ref/netcore50/System.Reflection.Primitives.xml",
  6904. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6905. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6906. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6907. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6908. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6909. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6910. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6911. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6912. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6913. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6914. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6915. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6916. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6917. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6918. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6919. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6920. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6921. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6922. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6923. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6924. "ref/portable-net45+win8+wp8+wpa81/_._",
  6925. "ref/win8/_._",
  6926. "ref/wp80/_._",
  6927. "ref/wpa81/_._",
  6928. "ref/xamarinios10/_._",
  6929. "ref/xamarinmac20/_._",
  6930. "ref/xamarintvos10/_._",
  6931. "ref/xamarinwatchos10/_._",
  6932. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6933. "system.reflection.primitives.nuspec"
  6934. ]
  6935. },
  6936. "System.Reflection.TypeExtensions/4.3.0": {
  6937. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6938. "type": "package",
  6939. "path": "system.reflection.typeextensions/4.3.0",
  6940. "files": [
  6941. ".nupkg.metadata",
  6942. ".signature.p7s",
  6943. "ThirdPartyNotices.txt",
  6944. "dotnet_library_license.txt",
  6945. "lib/MonoAndroid10/_._",
  6946. "lib/MonoTouch10/_._",
  6947. "lib/net46/System.Reflection.TypeExtensions.dll",
  6948. "lib/net462/System.Reflection.TypeExtensions.dll",
  6949. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6950. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6951. "lib/xamarinios10/_._",
  6952. "lib/xamarinmac20/_._",
  6953. "lib/xamarintvos10/_._",
  6954. "lib/xamarinwatchos10/_._",
  6955. "ref/MonoAndroid10/_._",
  6956. "ref/MonoTouch10/_._",
  6957. "ref/net46/System.Reflection.TypeExtensions.dll",
  6958. "ref/net462/System.Reflection.TypeExtensions.dll",
  6959. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6960. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6961. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6962. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6963. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6964. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6965. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6966. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6967. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6968. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6969. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6970. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6971. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6972. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6973. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6974. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6975. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6976. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6977. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6978. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6979. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6980. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6981. "ref/xamarinios10/_._",
  6982. "ref/xamarinmac20/_._",
  6983. "ref/xamarintvos10/_._",
  6984. "ref/xamarinwatchos10/_._",
  6985. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6986. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6987. "system.reflection.typeextensions.nuspec"
  6988. ]
  6989. },
  6990. "System.Resources.ResourceManager/4.3.0": {
  6991. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6992. "type": "package",
  6993. "path": "system.resources.resourcemanager/4.3.0",
  6994. "files": [
  6995. ".nupkg.metadata",
  6996. ".signature.p7s",
  6997. "ThirdPartyNotices.txt",
  6998. "dotnet_library_license.txt",
  6999. "lib/MonoAndroid10/_._",
  7000. "lib/MonoTouch10/_._",
  7001. "lib/net45/_._",
  7002. "lib/portable-net45+win8+wp8+wpa81/_._",
  7003. "lib/win8/_._",
  7004. "lib/wp80/_._",
  7005. "lib/wpa81/_._",
  7006. "lib/xamarinios10/_._",
  7007. "lib/xamarinmac20/_._",
  7008. "lib/xamarintvos10/_._",
  7009. "lib/xamarinwatchos10/_._",
  7010. "ref/MonoAndroid10/_._",
  7011. "ref/MonoTouch10/_._",
  7012. "ref/net45/_._",
  7013. "ref/netcore50/System.Resources.ResourceManager.dll",
  7014. "ref/netcore50/System.Resources.ResourceManager.xml",
  7015. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7016. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7017. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7018. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7019. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7020. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7021. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7022. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7023. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7024. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7025. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7026. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7027. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7028. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7029. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7030. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7031. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7032. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7033. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7034. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7035. "ref/portable-net45+win8+wp8+wpa81/_._",
  7036. "ref/win8/_._",
  7037. "ref/wp80/_._",
  7038. "ref/wpa81/_._",
  7039. "ref/xamarinios10/_._",
  7040. "ref/xamarinmac20/_._",
  7041. "ref/xamarintvos10/_._",
  7042. "ref/xamarinwatchos10/_._",
  7043. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7044. "system.resources.resourcemanager.nuspec"
  7045. ]
  7046. },
  7047. "System.Runtime/4.3.0": {
  7048. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7049. "type": "package",
  7050. "path": "system.runtime/4.3.0",
  7051. "files": [
  7052. ".nupkg.metadata",
  7053. ".signature.p7s",
  7054. "ThirdPartyNotices.txt",
  7055. "dotnet_library_license.txt",
  7056. "lib/MonoAndroid10/_._",
  7057. "lib/MonoTouch10/_._",
  7058. "lib/net45/_._",
  7059. "lib/net462/System.Runtime.dll",
  7060. "lib/portable-net45+win8+wp80+wpa81/_._",
  7061. "lib/win8/_._",
  7062. "lib/wp80/_._",
  7063. "lib/wpa81/_._",
  7064. "lib/xamarinios10/_._",
  7065. "lib/xamarinmac20/_._",
  7066. "lib/xamarintvos10/_._",
  7067. "lib/xamarinwatchos10/_._",
  7068. "ref/MonoAndroid10/_._",
  7069. "ref/MonoTouch10/_._",
  7070. "ref/net45/_._",
  7071. "ref/net462/System.Runtime.dll",
  7072. "ref/netcore50/System.Runtime.dll",
  7073. "ref/netcore50/System.Runtime.xml",
  7074. "ref/netcore50/de/System.Runtime.xml",
  7075. "ref/netcore50/es/System.Runtime.xml",
  7076. "ref/netcore50/fr/System.Runtime.xml",
  7077. "ref/netcore50/it/System.Runtime.xml",
  7078. "ref/netcore50/ja/System.Runtime.xml",
  7079. "ref/netcore50/ko/System.Runtime.xml",
  7080. "ref/netcore50/ru/System.Runtime.xml",
  7081. "ref/netcore50/zh-hans/System.Runtime.xml",
  7082. "ref/netcore50/zh-hant/System.Runtime.xml",
  7083. "ref/netstandard1.0/System.Runtime.dll",
  7084. "ref/netstandard1.0/System.Runtime.xml",
  7085. "ref/netstandard1.0/de/System.Runtime.xml",
  7086. "ref/netstandard1.0/es/System.Runtime.xml",
  7087. "ref/netstandard1.0/fr/System.Runtime.xml",
  7088. "ref/netstandard1.0/it/System.Runtime.xml",
  7089. "ref/netstandard1.0/ja/System.Runtime.xml",
  7090. "ref/netstandard1.0/ko/System.Runtime.xml",
  7091. "ref/netstandard1.0/ru/System.Runtime.xml",
  7092. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7093. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7094. "ref/netstandard1.2/System.Runtime.dll",
  7095. "ref/netstandard1.2/System.Runtime.xml",
  7096. "ref/netstandard1.2/de/System.Runtime.xml",
  7097. "ref/netstandard1.2/es/System.Runtime.xml",
  7098. "ref/netstandard1.2/fr/System.Runtime.xml",
  7099. "ref/netstandard1.2/it/System.Runtime.xml",
  7100. "ref/netstandard1.2/ja/System.Runtime.xml",
  7101. "ref/netstandard1.2/ko/System.Runtime.xml",
  7102. "ref/netstandard1.2/ru/System.Runtime.xml",
  7103. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7104. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7105. "ref/netstandard1.3/System.Runtime.dll",
  7106. "ref/netstandard1.3/System.Runtime.xml",
  7107. "ref/netstandard1.3/de/System.Runtime.xml",
  7108. "ref/netstandard1.3/es/System.Runtime.xml",
  7109. "ref/netstandard1.3/fr/System.Runtime.xml",
  7110. "ref/netstandard1.3/it/System.Runtime.xml",
  7111. "ref/netstandard1.3/ja/System.Runtime.xml",
  7112. "ref/netstandard1.3/ko/System.Runtime.xml",
  7113. "ref/netstandard1.3/ru/System.Runtime.xml",
  7114. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7115. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7116. "ref/netstandard1.5/System.Runtime.dll",
  7117. "ref/netstandard1.5/System.Runtime.xml",
  7118. "ref/netstandard1.5/de/System.Runtime.xml",
  7119. "ref/netstandard1.5/es/System.Runtime.xml",
  7120. "ref/netstandard1.5/fr/System.Runtime.xml",
  7121. "ref/netstandard1.5/it/System.Runtime.xml",
  7122. "ref/netstandard1.5/ja/System.Runtime.xml",
  7123. "ref/netstandard1.5/ko/System.Runtime.xml",
  7124. "ref/netstandard1.5/ru/System.Runtime.xml",
  7125. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7126. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7127. "ref/portable-net45+win8+wp80+wpa81/_._",
  7128. "ref/win8/_._",
  7129. "ref/wp80/_._",
  7130. "ref/wpa81/_._",
  7131. "ref/xamarinios10/_._",
  7132. "ref/xamarinmac20/_._",
  7133. "ref/xamarintvos10/_._",
  7134. "ref/xamarinwatchos10/_._",
  7135. "system.runtime.4.3.0.nupkg.sha512",
  7136. "system.runtime.nuspec"
  7137. ]
  7138. },
  7139. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7140. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7141. "type": "package",
  7142. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7143. "files": [
  7144. ".nupkg.metadata",
  7145. ".signature.p7s",
  7146. "Icon.png",
  7147. "LICENSE.TXT",
  7148. "THIRD-PARTY-NOTICES.TXT",
  7149. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7150. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7151. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7152. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7153. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7154. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7155. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7156. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7157. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7158. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7159. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7160. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7161. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7162. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7163. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7164. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7165. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7166. "system.runtime.compilerservices.unsafe.nuspec",
  7167. "useSharedDesignerContext.txt",
  7168. "version.txt"
  7169. ]
  7170. },
  7171. "System.Runtime.Extensions/4.3.0": {
  7172. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7173. "type": "package",
  7174. "path": "system.runtime.extensions/4.3.0",
  7175. "files": [
  7176. ".nupkg.metadata",
  7177. ".signature.p7s",
  7178. "ThirdPartyNotices.txt",
  7179. "dotnet_library_license.txt",
  7180. "lib/MonoAndroid10/_._",
  7181. "lib/MonoTouch10/_._",
  7182. "lib/net45/_._",
  7183. "lib/net462/System.Runtime.Extensions.dll",
  7184. "lib/portable-net45+win8+wp8+wpa81/_._",
  7185. "lib/win8/_._",
  7186. "lib/wp80/_._",
  7187. "lib/wpa81/_._",
  7188. "lib/xamarinios10/_._",
  7189. "lib/xamarinmac20/_._",
  7190. "lib/xamarintvos10/_._",
  7191. "lib/xamarinwatchos10/_._",
  7192. "ref/MonoAndroid10/_._",
  7193. "ref/MonoTouch10/_._",
  7194. "ref/net45/_._",
  7195. "ref/net462/System.Runtime.Extensions.dll",
  7196. "ref/netcore50/System.Runtime.Extensions.dll",
  7197. "ref/netcore50/System.Runtime.Extensions.xml",
  7198. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7199. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7200. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7201. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7202. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7203. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7204. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7205. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7206. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7207. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7208. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7209. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7210. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7211. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7212. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7213. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7214. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7215. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7216. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7217. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7218. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7219. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7220. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7221. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7222. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7223. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7224. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7225. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7226. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7227. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7228. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7229. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7230. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7231. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7232. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7233. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7234. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7235. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7236. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7237. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7238. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7239. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7240. "ref/portable-net45+win8+wp8+wpa81/_._",
  7241. "ref/win8/_._",
  7242. "ref/wp80/_._",
  7243. "ref/wpa81/_._",
  7244. "ref/xamarinios10/_._",
  7245. "ref/xamarinmac20/_._",
  7246. "ref/xamarintvos10/_._",
  7247. "ref/xamarinwatchos10/_._",
  7248. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7249. "system.runtime.extensions.nuspec"
  7250. ]
  7251. },
  7252. "System.Runtime.Handles/4.3.0": {
  7253. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7254. "type": "package",
  7255. "path": "system.runtime.handles/4.3.0",
  7256. "files": [
  7257. ".nupkg.metadata",
  7258. ".signature.p7s",
  7259. "ThirdPartyNotices.txt",
  7260. "dotnet_library_license.txt",
  7261. "lib/MonoAndroid10/_._",
  7262. "lib/MonoTouch10/_._",
  7263. "lib/net46/_._",
  7264. "lib/xamarinios10/_._",
  7265. "lib/xamarinmac20/_._",
  7266. "lib/xamarintvos10/_._",
  7267. "lib/xamarinwatchos10/_._",
  7268. "ref/MonoAndroid10/_._",
  7269. "ref/MonoTouch10/_._",
  7270. "ref/net46/_._",
  7271. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7272. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7273. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7274. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7275. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7276. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7277. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7278. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7279. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7280. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7281. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7282. "ref/xamarinios10/_._",
  7283. "ref/xamarinmac20/_._",
  7284. "ref/xamarintvos10/_._",
  7285. "ref/xamarinwatchos10/_._",
  7286. "system.runtime.handles.4.3.0.nupkg.sha512",
  7287. "system.runtime.handles.nuspec"
  7288. ]
  7289. },
  7290. "System.Runtime.InteropServices/4.3.0": {
  7291. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7292. "type": "package",
  7293. "path": "system.runtime.interopservices/4.3.0",
  7294. "files": [
  7295. ".nupkg.metadata",
  7296. ".signature.p7s",
  7297. "ThirdPartyNotices.txt",
  7298. "dotnet_library_license.txt",
  7299. "lib/MonoAndroid10/_._",
  7300. "lib/MonoTouch10/_._",
  7301. "lib/net45/_._",
  7302. "lib/net462/System.Runtime.InteropServices.dll",
  7303. "lib/net463/System.Runtime.InteropServices.dll",
  7304. "lib/portable-net45+win8+wpa81/_._",
  7305. "lib/win8/_._",
  7306. "lib/wpa81/_._",
  7307. "lib/xamarinios10/_._",
  7308. "lib/xamarinmac20/_._",
  7309. "lib/xamarintvos10/_._",
  7310. "lib/xamarinwatchos10/_._",
  7311. "ref/MonoAndroid10/_._",
  7312. "ref/MonoTouch10/_._",
  7313. "ref/net45/_._",
  7314. "ref/net462/System.Runtime.InteropServices.dll",
  7315. "ref/net463/System.Runtime.InteropServices.dll",
  7316. "ref/netcore50/System.Runtime.InteropServices.dll",
  7317. "ref/netcore50/System.Runtime.InteropServices.xml",
  7318. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7319. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7320. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7321. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7322. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7323. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7324. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7325. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7326. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7327. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7328. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7329. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7330. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7331. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7332. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7333. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7334. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7335. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7336. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7337. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7338. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7339. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7340. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7341. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7342. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7343. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7344. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7345. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7346. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7347. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7348. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7349. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7350. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7351. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7352. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7353. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7354. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7355. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7356. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7357. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7358. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7359. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7360. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7361. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7362. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7363. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7364. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7365. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7366. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7367. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7368. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7369. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7370. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7371. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7372. "ref/portable-net45+win8+wpa81/_._",
  7373. "ref/win8/_._",
  7374. "ref/wpa81/_._",
  7375. "ref/xamarinios10/_._",
  7376. "ref/xamarinmac20/_._",
  7377. "ref/xamarintvos10/_._",
  7378. "ref/xamarinwatchos10/_._",
  7379. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7380. "system.runtime.interopservices.nuspec"
  7381. ]
  7382. },
  7383. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7384. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7385. "type": "package",
  7386. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7387. "files": [
  7388. ".nupkg.metadata",
  7389. ".signature.p7s",
  7390. "ThirdPartyNotices.txt",
  7391. "dotnet_library_license.txt",
  7392. "lib/MonoAndroid10/_._",
  7393. "lib/MonoTouch10/_._",
  7394. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7395. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7396. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7397. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7398. "lib/xamarinios10/_._",
  7399. "lib/xamarinmac20/_._",
  7400. "lib/xamarintvos10/_._",
  7401. "lib/xamarinwatchos10/_._",
  7402. "ref/MonoAndroid10/_._",
  7403. "ref/MonoTouch10/_._",
  7404. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7405. "ref/xamarinios10/_._",
  7406. "ref/xamarinmac20/_._",
  7407. "ref/xamarintvos10/_._",
  7408. "ref/xamarinwatchos10/_._",
  7409. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7410. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7411. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7412. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7413. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7414. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7415. "system.runtime.interopservices.runtimeinformation.nuspec"
  7416. ]
  7417. },
  7418. "System.Runtime.Numerics/4.3.0": {
  7419. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7420. "type": "package",
  7421. "path": "system.runtime.numerics/4.3.0",
  7422. "files": [
  7423. ".nupkg.metadata",
  7424. ".signature.p7s",
  7425. "ThirdPartyNotices.txt",
  7426. "dotnet_library_license.txt",
  7427. "lib/MonoAndroid10/_._",
  7428. "lib/MonoTouch10/_._",
  7429. "lib/net45/_._",
  7430. "lib/netcore50/System.Runtime.Numerics.dll",
  7431. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7432. "lib/portable-net45+win8+wpa81/_._",
  7433. "lib/win8/_._",
  7434. "lib/wpa81/_._",
  7435. "lib/xamarinios10/_._",
  7436. "lib/xamarinmac20/_._",
  7437. "lib/xamarintvos10/_._",
  7438. "lib/xamarinwatchos10/_._",
  7439. "ref/MonoAndroid10/_._",
  7440. "ref/MonoTouch10/_._",
  7441. "ref/net45/_._",
  7442. "ref/netcore50/System.Runtime.Numerics.dll",
  7443. "ref/netcore50/System.Runtime.Numerics.xml",
  7444. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7445. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7446. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7447. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7448. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7449. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7450. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7451. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7452. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7453. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7454. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7455. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7456. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7457. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7458. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7459. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7460. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7461. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7462. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7463. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7464. "ref/portable-net45+win8+wpa81/_._",
  7465. "ref/win8/_._",
  7466. "ref/wpa81/_._",
  7467. "ref/xamarinios10/_._",
  7468. "ref/xamarinmac20/_._",
  7469. "ref/xamarintvos10/_._",
  7470. "ref/xamarinwatchos10/_._",
  7471. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7472. "system.runtime.numerics.nuspec"
  7473. ]
  7474. },
  7475. "System.Security.AccessControl/4.7.0": {
  7476. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7477. "type": "package",
  7478. "path": "system.security.accesscontrol/4.7.0",
  7479. "files": [
  7480. ".nupkg.metadata",
  7481. ".signature.p7s",
  7482. "LICENSE.TXT",
  7483. "THIRD-PARTY-NOTICES.TXT",
  7484. "lib/net46/System.Security.AccessControl.dll",
  7485. "lib/net461/System.Security.AccessControl.dll",
  7486. "lib/net461/System.Security.AccessControl.xml",
  7487. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7488. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7489. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7490. "lib/uap10.0.16299/_._",
  7491. "ref/net46/System.Security.AccessControl.dll",
  7492. "ref/net461/System.Security.AccessControl.dll",
  7493. "ref/net461/System.Security.AccessControl.xml",
  7494. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7495. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7496. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7497. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7498. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7499. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7500. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7501. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7502. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7503. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7504. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7505. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7506. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7507. "ref/uap10.0.16299/_._",
  7508. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7509. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7510. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7511. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7512. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7513. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7514. "runtimes/win/lib/uap10.0.16299/_._",
  7515. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7516. "system.security.accesscontrol.nuspec",
  7517. "useSharedDesignerContext.txt",
  7518. "version.txt"
  7519. ]
  7520. },
  7521. "System.Security.Claims/4.3.0": {
  7522. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7523. "type": "package",
  7524. "path": "system.security.claims/4.3.0",
  7525. "files": [
  7526. ".nupkg.metadata",
  7527. ".signature.p7s",
  7528. "ThirdPartyNotices.txt",
  7529. "dotnet_library_license.txt",
  7530. "lib/MonoAndroid10/_._",
  7531. "lib/MonoTouch10/_._",
  7532. "lib/net46/System.Security.Claims.dll",
  7533. "lib/netstandard1.3/System.Security.Claims.dll",
  7534. "lib/xamarinios10/_._",
  7535. "lib/xamarinmac20/_._",
  7536. "lib/xamarintvos10/_._",
  7537. "lib/xamarinwatchos10/_._",
  7538. "ref/MonoAndroid10/_._",
  7539. "ref/MonoTouch10/_._",
  7540. "ref/net46/System.Security.Claims.dll",
  7541. "ref/netstandard1.3/System.Security.Claims.dll",
  7542. "ref/netstandard1.3/System.Security.Claims.xml",
  7543. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7544. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7545. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7546. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7547. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7548. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7549. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7550. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7551. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7552. "ref/xamarinios10/_._",
  7553. "ref/xamarinmac20/_._",
  7554. "ref/xamarintvos10/_._",
  7555. "ref/xamarinwatchos10/_._",
  7556. "system.security.claims.4.3.0.nupkg.sha512",
  7557. "system.security.claims.nuspec"
  7558. ]
  7559. },
  7560. "System.Security.Cryptography.Algorithms/4.3.0": {
  7561. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7562. "type": "package",
  7563. "path": "system.security.cryptography.algorithms/4.3.0",
  7564. "files": [
  7565. ".nupkg.metadata",
  7566. ".signature.p7s",
  7567. "ThirdPartyNotices.txt",
  7568. "dotnet_library_license.txt",
  7569. "lib/MonoAndroid10/_._",
  7570. "lib/MonoTouch10/_._",
  7571. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7572. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7573. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7574. "lib/xamarinios10/_._",
  7575. "lib/xamarinmac20/_._",
  7576. "lib/xamarintvos10/_._",
  7577. "lib/xamarinwatchos10/_._",
  7578. "ref/MonoAndroid10/_._",
  7579. "ref/MonoTouch10/_._",
  7580. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7581. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7582. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7583. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7584. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7585. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7586. "ref/xamarinios10/_._",
  7587. "ref/xamarinmac20/_._",
  7588. "ref/xamarintvos10/_._",
  7589. "ref/xamarinwatchos10/_._",
  7590. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7591. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7592. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7593. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7594. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7595. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7596. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7597. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7598. "system.security.cryptography.algorithms.nuspec"
  7599. ]
  7600. },
  7601. "System.Security.Cryptography.Cng/4.3.0": {
  7602. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7603. "type": "package",
  7604. "path": "system.security.cryptography.cng/4.3.0",
  7605. "files": [
  7606. ".nupkg.metadata",
  7607. ".signature.p7s",
  7608. "ThirdPartyNotices.txt",
  7609. "dotnet_library_license.txt",
  7610. "lib/net46/System.Security.Cryptography.Cng.dll",
  7611. "lib/net461/System.Security.Cryptography.Cng.dll",
  7612. "lib/net463/System.Security.Cryptography.Cng.dll",
  7613. "ref/net46/System.Security.Cryptography.Cng.dll",
  7614. "ref/net461/System.Security.Cryptography.Cng.dll",
  7615. "ref/net463/System.Security.Cryptography.Cng.dll",
  7616. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7617. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7618. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7619. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7620. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7621. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7622. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  7623. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7624. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7625. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  7626. "system.security.cryptography.cng.nuspec"
  7627. ]
  7628. },
  7629. "System.Security.Cryptography.Csp/4.3.0": {
  7630. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7631. "type": "package",
  7632. "path": "system.security.cryptography.csp/4.3.0",
  7633. "files": [
  7634. ".nupkg.metadata",
  7635. ".signature.p7s",
  7636. "ThirdPartyNotices.txt",
  7637. "dotnet_library_license.txt",
  7638. "lib/MonoAndroid10/_._",
  7639. "lib/MonoTouch10/_._",
  7640. "lib/net46/System.Security.Cryptography.Csp.dll",
  7641. "lib/xamarinios10/_._",
  7642. "lib/xamarinmac20/_._",
  7643. "lib/xamarintvos10/_._",
  7644. "lib/xamarinwatchos10/_._",
  7645. "ref/MonoAndroid10/_._",
  7646. "ref/MonoTouch10/_._",
  7647. "ref/net46/System.Security.Cryptography.Csp.dll",
  7648. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7649. "ref/xamarinios10/_._",
  7650. "ref/xamarinmac20/_._",
  7651. "ref/xamarintvos10/_._",
  7652. "ref/xamarinwatchos10/_._",
  7653. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7654. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7655. "runtimes/win/lib/netcore50/_._",
  7656. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7657. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7658. "system.security.cryptography.csp.nuspec"
  7659. ]
  7660. },
  7661. "System.Security.Cryptography.Encoding/4.3.0": {
  7662. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7663. "type": "package",
  7664. "path": "system.security.cryptography.encoding/4.3.0",
  7665. "files": [
  7666. ".nupkg.metadata",
  7667. ".signature.p7s",
  7668. "ThirdPartyNotices.txt",
  7669. "dotnet_library_license.txt",
  7670. "lib/MonoAndroid10/_._",
  7671. "lib/MonoTouch10/_._",
  7672. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7673. "lib/xamarinios10/_._",
  7674. "lib/xamarinmac20/_._",
  7675. "lib/xamarintvos10/_._",
  7676. "lib/xamarinwatchos10/_._",
  7677. "ref/MonoAndroid10/_._",
  7678. "ref/MonoTouch10/_._",
  7679. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7680. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7681. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7682. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7683. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7684. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7685. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7686. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7687. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7688. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7689. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7690. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7691. "ref/xamarinios10/_._",
  7692. "ref/xamarinmac20/_._",
  7693. "ref/xamarintvos10/_._",
  7694. "ref/xamarinwatchos10/_._",
  7695. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7696. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7697. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7698. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7699. "system.security.cryptography.encoding.nuspec"
  7700. ]
  7701. },
  7702. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7703. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7704. "type": "package",
  7705. "path": "system.security.cryptography.openssl/4.3.0",
  7706. "files": [
  7707. ".nupkg.metadata",
  7708. ".signature.p7s",
  7709. "ThirdPartyNotices.txt",
  7710. "dotnet_library_license.txt",
  7711. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7712. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7713. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7714. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7715. "system.security.cryptography.openssl.nuspec"
  7716. ]
  7717. },
  7718. "System.Security.Cryptography.Primitives/4.3.0": {
  7719. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7720. "type": "package",
  7721. "path": "system.security.cryptography.primitives/4.3.0",
  7722. "files": [
  7723. ".nupkg.metadata",
  7724. ".signature.p7s",
  7725. "ThirdPartyNotices.txt",
  7726. "dotnet_library_license.txt",
  7727. "lib/MonoAndroid10/_._",
  7728. "lib/MonoTouch10/_._",
  7729. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7730. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7731. "lib/xamarinios10/_._",
  7732. "lib/xamarinmac20/_._",
  7733. "lib/xamarintvos10/_._",
  7734. "lib/xamarinwatchos10/_._",
  7735. "ref/MonoAndroid10/_._",
  7736. "ref/MonoTouch10/_._",
  7737. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7738. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7739. "ref/xamarinios10/_._",
  7740. "ref/xamarinmac20/_._",
  7741. "ref/xamarintvos10/_._",
  7742. "ref/xamarinwatchos10/_._",
  7743. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7744. "system.security.cryptography.primitives.nuspec"
  7745. ]
  7746. },
  7747. "System.Security.Cryptography.ProtectedData/4.7.0": {
  7748. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  7749. "type": "package",
  7750. "path": "system.security.cryptography.protecteddata/4.7.0",
  7751. "files": [
  7752. ".nupkg.metadata",
  7753. ".signature.p7s",
  7754. "LICENSE.TXT",
  7755. "THIRD-PARTY-NOTICES.TXT",
  7756. "lib/MonoAndroid10/_._",
  7757. "lib/MonoTouch10/_._",
  7758. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7759. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7760. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7761. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7762. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7763. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7764. "lib/xamarinios10/_._",
  7765. "lib/xamarinmac20/_._",
  7766. "lib/xamarintvos10/_._",
  7767. "lib/xamarinwatchos10/_._",
  7768. "ref/MonoAndroid10/_._",
  7769. "ref/MonoTouch10/_._",
  7770. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7771. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7772. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7773. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7774. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7775. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7776. "ref/xamarinios10/_._",
  7777. "ref/xamarinmac20/_._",
  7778. "ref/xamarintvos10/_._",
  7779. "ref/xamarinwatchos10/_._",
  7780. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7781. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7782. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7783. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7784. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7785. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7786. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  7787. "system.security.cryptography.protecteddata.nuspec",
  7788. "useSharedDesignerContext.txt",
  7789. "version.txt"
  7790. ]
  7791. },
  7792. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7793. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7794. "type": "package",
  7795. "path": "system.security.cryptography.x509certificates/4.3.0",
  7796. "files": [
  7797. ".nupkg.metadata",
  7798. ".signature.p7s",
  7799. "ThirdPartyNotices.txt",
  7800. "dotnet_library_license.txt",
  7801. "lib/MonoAndroid10/_._",
  7802. "lib/MonoTouch10/_._",
  7803. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7804. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7805. "lib/xamarinios10/_._",
  7806. "lib/xamarinmac20/_._",
  7807. "lib/xamarintvos10/_._",
  7808. "lib/xamarinwatchos10/_._",
  7809. "ref/MonoAndroid10/_._",
  7810. "ref/MonoTouch10/_._",
  7811. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7812. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7813. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7814. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7815. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7816. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7817. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7818. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7819. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7820. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7821. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7822. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7823. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7824. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7825. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7826. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7827. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7828. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7829. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7830. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7831. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7832. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7833. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7834. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7835. "ref/xamarinios10/_._",
  7836. "ref/xamarinmac20/_._",
  7837. "ref/xamarintvos10/_._",
  7838. "ref/xamarinwatchos10/_._",
  7839. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7840. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7841. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7842. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7843. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7844. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7845. "system.security.cryptography.x509certificates.nuspec"
  7846. ]
  7847. },
  7848. "System.Security.Permissions/4.7.0": {
  7849. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  7850. "type": "package",
  7851. "path": "system.security.permissions/4.7.0",
  7852. "files": [
  7853. ".nupkg.metadata",
  7854. ".signature.p7s",
  7855. "LICENSE.TXT",
  7856. "THIRD-PARTY-NOTICES.TXT",
  7857. "lib/net461/System.Security.Permissions.dll",
  7858. "lib/net461/System.Security.Permissions.xml",
  7859. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  7860. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  7861. "lib/netstandard2.0/System.Security.Permissions.dll",
  7862. "lib/netstandard2.0/System.Security.Permissions.xml",
  7863. "ref/net461/System.Security.Permissions.dll",
  7864. "ref/net461/System.Security.Permissions.xml",
  7865. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  7866. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  7867. "ref/netstandard2.0/System.Security.Permissions.dll",
  7868. "ref/netstandard2.0/System.Security.Permissions.xml",
  7869. "system.security.permissions.4.7.0.nupkg.sha512",
  7870. "system.security.permissions.nuspec",
  7871. "useSharedDesignerContext.txt",
  7872. "version.txt"
  7873. ]
  7874. },
  7875. "System.Security.Principal/4.3.0": {
  7876. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  7877. "type": "package",
  7878. "path": "system.security.principal/4.3.0",
  7879. "files": [
  7880. ".nupkg.metadata",
  7881. ".signature.p7s",
  7882. "ThirdPartyNotices.txt",
  7883. "dotnet_library_license.txt",
  7884. "lib/MonoAndroid10/_._",
  7885. "lib/MonoTouch10/_._",
  7886. "lib/net45/_._",
  7887. "lib/netcore50/System.Security.Principal.dll",
  7888. "lib/netstandard1.0/System.Security.Principal.dll",
  7889. "lib/portable-net45+win8+wp8+wpa81/_._",
  7890. "lib/win8/_._",
  7891. "lib/wp80/_._",
  7892. "lib/wpa81/_._",
  7893. "lib/xamarinios10/_._",
  7894. "lib/xamarinmac20/_._",
  7895. "lib/xamarintvos10/_._",
  7896. "lib/xamarinwatchos10/_._",
  7897. "ref/MonoAndroid10/_._",
  7898. "ref/MonoTouch10/_._",
  7899. "ref/net45/_._",
  7900. "ref/netcore50/System.Security.Principal.dll",
  7901. "ref/netcore50/System.Security.Principal.xml",
  7902. "ref/netcore50/de/System.Security.Principal.xml",
  7903. "ref/netcore50/es/System.Security.Principal.xml",
  7904. "ref/netcore50/fr/System.Security.Principal.xml",
  7905. "ref/netcore50/it/System.Security.Principal.xml",
  7906. "ref/netcore50/ja/System.Security.Principal.xml",
  7907. "ref/netcore50/ko/System.Security.Principal.xml",
  7908. "ref/netcore50/ru/System.Security.Principal.xml",
  7909. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  7910. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  7911. "ref/netstandard1.0/System.Security.Principal.dll",
  7912. "ref/netstandard1.0/System.Security.Principal.xml",
  7913. "ref/netstandard1.0/de/System.Security.Principal.xml",
  7914. "ref/netstandard1.0/es/System.Security.Principal.xml",
  7915. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  7916. "ref/netstandard1.0/it/System.Security.Principal.xml",
  7917. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  7918. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  7919. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  7920. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  7921. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  7922. "ref/portable-net45+win8+wp8+wpa81/_._",
  7923. "ref/win8/_._",
  7924. "ref/wp80/_._",
  7925. "ref/wpa81/_._",
  7926. "ref/xamarinios10/_._",
  7927. "ref/xamarinmac20/_._",
  7928. "ref/xamarintvos10/_._",
  7929. "ref/xamarinwatchos10/_._",
  7930. "system.security.principal.4.3.0.nupkg.sha512",
  7931. "system.security.principal.nuspec"
  7932. ]
  7933. },
  7934. "System.Security.Principal.Windows/4.7.0": {
  7935. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  7936. "type": "package",
  7937. "path": "system.security.principal.windows/4.7.0",
  7938. "files": [
  7939. ".nupkg.metadata",
  7940. ".signature.p7s",
  7941. "LICENSE.TXT",
  7942. "THIRD-PARTY-NOTICES.TXT",
  7943. "lib/net46/System.Security.Principal.Windows.dll",
  7944. "lib/net461/System.Security.Principal.Windows.dll",
  7945. "lib/net461/System.Security.Principal.Windows.xml",
  7946. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7947. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7948. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7949. "lib/uap10.0.16299/_._",
  7950. "ref/net46/System.Security.Principal.Windows.dll",
  7951. "ref/net461/System.Security.Principal.Windows.dll",
  7952. "ref/net461/System.Security.Principal.Windows.xml",
  7953. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7954. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7955. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7956. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7957. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7958. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7959. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7960. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7961. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7962. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7963. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7964. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7965. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7966. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7967. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7968. "ref/uap10.0.16299/_._",
  7969. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7970. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7971. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7972. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7973. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7974. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7975. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7976. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7977. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7978. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7979. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7980. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7981. "runtimes/win/lib/uap10.0.16299/_._",
  7982. "system.security.principal.windows.4.7.0.nupkg.sha512",
  7983. "system.security.principal.windows.nuspec",
  7984. "useSharedDesignerContext.txt",
  7985. "version.txt"
  7986. ]
  7987. },
  7988. "System.Text.Encoding/4.3.0": {
  7989. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7990. "type": "package",
  7991. "path": "system.text.encoding/4.3.0",
  7992. "files": [
  7993. ".nupkg.metadata",
  7994. ".signature.p7s",
  7995. "ThirdPartyNotices.txt",
  7996. "dotnet_library_license.txt",
  7997. "lib/MonoAndroid10/_._",
  7998. "lib/MonoTouch10/_._",
  7999. "lib/net45/_._",
  8000. "lib/portable-net45+win8+wp8+wpa81/_._",
  8001. "lib/win8/_._",
  8002. "lib/wp80/_._",
  8003. "lib/wpa81/_._",
  8004. "lib/xamarinios10/_._",
  8005. "lib/xamarinmac20/_._",
  8006. "lib/xamarintvos10/_._",
  8007. "lib/xamarinwatchos10/_._",
  8008. "ref/MonoAndroid10/_._",
  8009. "ref/MonoTouch10/_._",
  8010. "ref/net45/_._",
  8011. "ref/netcore50/System.Text.Encoding.dll",
  8012. "ref/netcore50/System.Text.Encoding.xml",
  8013. "ref/netcore50/de/System.Text.Encoding.xml",
  8014. "ref/netcore50/es/System.Text.Encoding.xml",
  8015. "ref/netcore50/fr/System.Text.Encoding.xml",
  8016. "ref/netcore50/it/System.Text.Encoding.xml",
  8017. "ref/netcore50/ja/System.Text.Encoding.xml",
  8018. "ref/netcore50/ko/System.Text.Encoding.xml",
  8019. "ref/netcore50/ru/System.Text.Encoding.xml",
  8020. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8021. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8022. "ref/netstandard1.0/System.Text.Encoding.dll",
  8023. "ref/netstandard1.0/System.Text.Encoding.xml",
  8024. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8025. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8026. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8027. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8028. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8029. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8030. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8031. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8032. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8033. "ref/netstandard1.3/System.Text.Encoding.dll",
  8034. "ref/netstandard1.3/System.Text.Encoding.xml",
  8035. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8036. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8037. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8038. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8039. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8040. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8041. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8042. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8043. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8044. "ref/portable-net45+win8+wp8+wpa81/_._",
  8045. "ref/win8/_._",
  8046. "ref/wp80/_._",
  8047. "ref/wpa81/_._",
  8048. "ref/xamarinios10/_._",
  8049. "ref/xamarinmac20/_._",
  8050. "ref/xamarintvos10/_._",
  8051. "ref/xamarinwatchos10/_._",
  8052. "system.text.encoding.4.3.0.nupkg.sha512",
  8053. "system.text.encoding.nuspec"
  8054. ]
  8055. },
  8056. "System.Text.Encoding.CodePages/5.0.0": {
  8057. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8058. "type": "package",
  8059. "path": "system.text.encoding.codepages/5.0.0",
  8060. "files": [
  8061. ".nupkg.metadata",
  8062. ".signature.p7s",
  8063. "Icon.png",
  8064. "LICENSE.TXT",
  8065. "THIRD-PARTY-NOTICES.TXT",
  8066. "lib/MonoAndroid10/_._",
  8067. "lib/MonoTouch10/_._",
  8068. "lib/net46/System.Text.Encoding.CodePages.dll",
  8069. "lib/net461/System.Text.Encoding.CodePages.dll",
  8070. "lib/net461/System.Text.Encoding.CodePages.xml",
  8071. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8072. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8073. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8074. "lib/xamarinios10/_._",
  8075. "lib/xamarinmac20/_._",
  8076. "lib/xamarintvos10/_._",
  8077. "lib/xamarinwatchos10/_._",
  8078. "ref/MonoAndroid10/_._",
  8079. "ref/MonoTouch10/_._",
  8080. "ref/xamarinios10/_._",
  8081. "ref/xamarinmac20/_._",
  8082. "ref/xamarintvos10/_._",
  8083. "ref/xamarinwatchos10/_._",
  8084. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8085. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8086. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8087. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8088. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8089. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8090. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8091. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8092. "system.text.encoding.codepages.nuspec",
  8093. "useSharedDesignerContext.txt",
  8094. "version.txt"
  8095. ]
  8096. },
  8097. "System.Text.Encoding.Extensions/4.3.0": {
  8098. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8099. "type": "package",
  8100. "path": "system.text.encoding.extensions/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/net45/_._",
  8109. "lib/portable-net45+win8+wp8+wpa81/_._",
  8110. "lib/win8/_._",
  8111. "lib/wp80/_._",
  8112. "lib/wpa81/_._",
  8113. "lib/xamarinios10/_._",
  8114. "lib/xamarinmac20/_._",
  8115. "lib/xamarintvos10/_._",
  8116. "lib/xamarinwatchos10/_._",
  8117. "ref/MonoAndroid10/_._",
  8118. "ref/MonoTouch10/_._",
  8119. "ref/net45/_._",
  8120. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8121. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8122. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8123. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8124. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8125. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8126. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8127. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8128. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8129. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8130. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8131. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8132. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8133. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8134. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8135. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8136. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8137. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8138. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8139. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8140. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8141. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8142. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8143. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8144. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8145. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8146. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8147. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8148. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8149. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8150. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8151. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8152. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8153. "ref/portable-net45+win8+wp8+wpa81/_._",
  8154. "ref/win8/_._",
  8155. "ref/wp80/_._",
  8156. "ref/wpa81/_._",
  8157. "ref/xamarinios10/_._",
  8158. "ref/xamarinmac20/_._",
  8159. "ref/xamarintvos10/_._",
  8160. "ref/xamarinwatchos10/_._",
  8161. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8162. "system.text.encoding.extensions.nuspec"
  8163. ]
  8164. },
  8165. "System.Text.Encodings.Web/4.5.0": {
  8166. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8167. "type": "package",
  8168. "path": "system.text.encodings.web/4.5.0",
  8169. "files": [
  8170. ".nupkg.metadata",
  8171. ".signature.p7s",
  8172. "LICENSE.TXT",
  8173. "THIRD-PARTY-NOTICES.TXT",
  8174. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8175. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8176. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8177. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8178. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8179. "system.text.encodings.web.nuspec",
  8180. "useSharedDesignerContext.txt",
  8181. "version.txt"
  8182. ]
  8183. },
  8184. "System.Text.RegularExpressions/4.3.0": {
  8185. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8186. "type": "package",
  8187. "path": "system.text.regularexpressions/4.3.0",
  8188. "files": [
  8189. ".nupkg.metadata",
  8190. ".signature.p7s",
  8191. "ThirdPartyNotices.txt",
  8192. "dotnet_library_license.txt",
  8193. "lib/MonoAndroid10/_._",
  8194. "lib/MonoTouch10/_._",
  8195. "lib/net45/_._",
  8196. "lib/net463/System.Text.RegularExpressions.dll",
  8197. "lib/netcore50/System.Text.RegularExpressions.dll",
  8198. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8199. "lib/portable-net45+win8+wp8+wpa81/_._",
  8200. "lib/win8/_._",
  8201. "lib/wp80/_._",
  8202. "lib/wpa81/_._",
  8203. "lib/xamarinios10/_._",
  8204. "lib/xamarinmac20/_._",
  8205. "lib/xamarintvos10/_._",
  8206. "lib/xamarinwatchos10/_._",
  8207. "ref/MonoAndroid10/_._",
  8208. "ref/MonoTouch10/_._",
  8209. "ref/net45/_._",
  8210. "ref/net463/System.Text.RegularExpressions.dll",
  8211. "ref/netcore50/System.Text.RegularExpressions.dll",
  8212. "ref/netcore50/System.Text.RegularExpressions.xml",
  8213. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8214. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8215. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8216. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8217. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8218. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8219. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8220. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8221. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8222. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8223. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8224. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8225. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8226. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8227. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8228. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8229. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8230. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8231. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8232. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8233. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8234. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8235. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8236. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8237. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8238. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8239. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8240. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8241. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8242. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8243. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8244. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8245. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8246. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8247. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8248. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8249. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8250. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8251. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8252. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8253. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8254. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8255. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8256. "ref/portable-net45+win8+wp8+wpa81/_._",
  8257. "ref/win8/_._",
  8258. "ref/wp80/_._",
  8259. "ref/wpa81/_._",
  8260. "ref/xamarinios10/_._",
  8261. "ref/xamarinmac20/_._",
  8262. "ref/xamarintvos10/_._",
  8263. "ref/xamarinwatchos10/_._",
  8264. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8265. "system.text.regularexpressions.nuspec"
  8266. ]
  8267. },
  8268. "System.Threading/4.3.0": {
  8269. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8270. "type": "package",
  8271. "path": "system.threading/4.3.0",
  8272. "files": [
  8273. ".nupkg.metadata",
  8274. ".signature.p7s",
  8275. "ThirdPartyNotices.txt",
  8276. "dotnet_library_license.txt",
  8277. "lib/MonoAndroid10/_._",
  8278. "lib/MonoTouch10/_._",
  8279. "lib/net45/_._",
  8280. "lib/netcore50/System.Threading.dll",
  8281. "lib/netstandard1.3/System.Threading.dll",
  8282. "lib/portable-net45+win8+wp8+wpa81/_._",
  8283. "lib/win8/_._",
  8284. "lib/wp80/_._",
  8285. "lib/wpa81/_._",
  8286. "lib/xamarinios10/_._",
  8287. "lib/xamarinmac20/_._",
  8288. "lib/xamarintvos10/_._",
  8289. "lib/xamarinwatchos10/_._",
  8290. "ref/MonoAndroid10/_._",
  8291. "ref/MonoTouch10/_._",
  8292. "ref/net45/_._",
  8293. "ref/netcore50/System.Threading.dll",
  8294. "ref/netcore50/System.Threading.xml",
  8295. "ref/netcore50/de/System.Threading.xml",
  8296. "ref/netcore50/es/System.Threading.xml",
  8297. "ref/netcore50/fr/System.Threading.xml",
  8298. "ref/netcore50/it/System.Threading.xml",
  8299. "ref/netcore50/ja/System.Threading.xml",
  8300. "ref/netcore50/ko/System.Threading.xml",
  8301. "ref/netcore50/ru/System.Threading.xml",
  8302. "ref/netcore50/zh-hans/System.Threading.xml",
  8303. "ref/netcore50/zh-hant/System.Threading.xml",
  8304. "ref/netstandard1.0/System.Threading.dll",
  8305. "ref/netstandard1.0/System.Threading.xml",
  8306. "ref/netstandard1.0/de/System.Threading.xml",
  8307. "ref/netstandard1.0/es/System.Threading.xml",
  8308. "ref/netstandard1.0/fr/System.Threading.xml",
  8309. "ref/netstandard1.0/it/System.Threading.xml",
  8310. "ref/netstandard1.0/ja/System.Threading.xml",
  8311. "ref/netstandard1.0/ko/System.Threading.xml",
  8312. "ref/netstandard1.0/ru/System.Threading.xml",
  8313. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8314. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8315. "ref/netstandard1.3/System.Threading.dll",
  8316. "ref/netstandard1.3/System.Threading.xml",
  8317. "ref/netstandard1.3/de/System.Threading.xml",
  8318. "ref/netstandard1.3/es/System.Threading.xml",
  8319. "ref/netstandard1.3/fr/System.Threading.xml",
  8320. "ref/netstandard1.3/it/System.Threading.xml",
  8321. "ref/netstandard1.3/ja/System.Threading.xml",
  8322. "ref/netstandard1.3/ko/System.Threading.xml",
  8323. "ref/netstandard1.3/ru/System.Threading.xml",
  8324. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8325. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8326. "ref/portable-net45+win8+wp8+wpa81/_._",
  8327. "ref/win8/_._",
  8328. "ref/wp80/_._",
  8329. "ref/wpa81/_._",
  8330. "ref/xamarinios10/_._",
  8331. "ref/xamarinmac20/_._",
  8332. "ref/xamarintvos10/_._",
  8333. "ref/xamarinwatchos10/_._",
  8334. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8335. "system.threading.4.3.0.nupkg.sha512",
  8336. "system.threading.nuspec"
  8337. ]
  8338. },
  8339. "System.Threading.Channels/7.0.0": {
  8340. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8341. "type": "package",
  8342. "path": "system.threading.channels/7.0.0",
  8343. "files": [
  8344. ".nupkg.metadata",
  8345. ".signature.p7s",
  8346. "Icon.png",
  8347. "LICENSE.TXT",
  8348. "THIRD-PARTY-NOTICES.TXT",
  8349. "buildTransitive/net461/System.Threading.Channels.targets",
  8350. "buildTransitive/net462/_._",
  8351. "buildTransitive/net6.0/_._",
  8352. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8353. "lib/net462/System.Threading.Channels.dll",
  8354. "lib/net462/System.Threading.Channels.xml",
  8355. "lib/net6.0/System.Threading.Channels.dll",
  8356. "lib/net6.0/System.Threading.Channels.xml",
  8357. "lib/net7.0/System.Threading.Channels.dll",
  8358. "lib/net7.0/System.Threading.Channels.xml",
  8359. "lib/netstandard2.0/System.Threading.Channels.dll",
  8360. "lib/netstandard2.0/System.Threading.Channels.xml",
  8361. "lib/netstandard2.1/System.Threading.Channels.dll",
  8362. "lib/netstandard2.1/System.Threading.Channels.xml",
  8363. "system.threading.channels.7.0.0.nupkg.sha512",
  8364. "system.threading.channels.nuspec",
  8365. "useSharedDesignerContext.txt"
  8366. ]
  8367. },
  8368. "System.Threading.Tasks/4.3.0": {
  8369. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8370. "type": "package",
  8371. "path": "system.threading.tasks/4.3.0",
  8372. "files": [
  8373. ".nupkg.metadata",
  8374. ".signature.p7s",
  8375. "ThirdPartyNotices.txt",
  8376. "dotnet_library_license.txt",
  8377. "lib/MonoAndroid10/_._",
  8378. "lib/MonoTouch10/_._",
  8379. "lib/net45/_._",
  8380. "lib/portable-net45+win8+wp8+wpa81/_._",
  8381. "lib/win8/_._",
  8382. "lib/wp80/_._",
  8383. "lib/wpa81/_._",
  8384. "lib/xamarinios10/_._",
  8385. "lib/xamarinmac20/_._",
  8386. "lib/xamarintvos10/_._",
  8387. "lib/xamarinwatchos10/_._",
  8388. "ref/MonoAndroid10/_._",
  8389. "ref/MonoTouch10/_._",
  8390. "ref/net45/_._",
  8391. "ref/netcore50/System.Threading.Tasks.dll",
  8392. "ref/netcore50/System.Threading.Tasks.xml",
  8393. "ref/netcore50/de/System.Threading.Tasks.xml",
  8394. "ref/netcore50/es/System.Threading.Tasks.xml",
  8395. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8396. "ref/netcore50/it/System.Threading.Tasks.xml",
  8397. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8398. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8399. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8400. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8401. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8402. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8403. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8404. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8405. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8406. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8407. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8408. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8409. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8410. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8411. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8412. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8413. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8414. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8415. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8416. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8417. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8418. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8419. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8420. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8421. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8422. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8423. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8424. "ref/portable-net45+win8+wp8+wpa81/_._",
  8425. "ref/win8/_._",
  8426. "ref/wp80/_._",
  8427. "ref/wpa81/_._",
  8428. "ref/xamarinios10/_._",
  8429. "ref/xamarinmac20/_._",
  8430. "ref/xamarintvos10/_._",
  8431. "ref/xamarinwatchos10/_._",
  8432. "system.threading.tasks.4.3.0.nupkg.sha512",
  8433. "system.threading.tasks.nuspec"
  8434. ]
  8435. },
  8436. "System.Threading.Tasks.Extensions/4.3.0": {
  8437. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8438. "type": "package",
  8439. "path": "system.threading.tasks.extensions/4.3.0",
  8440. "files": [
  8441. ".nupkg.metadata",
  8442. ".signature.p7s",
  8443. "ThirdPartyNotices.txt",
  8444. "dotnet_library_license.txt",
  8445. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8446. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8447. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8448. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8449. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8450. "system.threading.tasks.extensions.nuspec"
  8451. ]
  8452. },
  8453. "System.Threading.Thread/4.3.0": {
  8454. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8455. "type": "package",
  8456. "path": "system.threading.thread/4.3.0",
  8457. "files": [
  8458. ".nupkg.metadata",
  8459. ".signature.p7s",
  8460. "ThirdPartyNotices.txt",
  8461. "dotnet_library_license.txt",
  8462. "lib/MonoAndroid10/_._",
  8463. "lib/MonoTouch10/_._",
  8464. "lib/net46/System.Threading.Thread.dll",
  8465. "lib/netcore50/_._",
  8466. "lib/netstandard1.3/System.Threading.Thread.dll",
  8467. "lib/xamarinios10/_._",
  8468. "lib/xamarinmac20/_._",
  8469. "lib/xamarintvos10/_._",
  8470. "lib/xamarinwatchos10/_._",
  8471. "ref/MonoAndroid10/_._",
  8472. "ref/MonoTouch10/_._",
  8473. "ref/net46/System.Threading.Thread.dll",
  8474. "ref/netstandard1.3/System.Threading.Thread.dll",
  8475. "ref/netstandard1.3/System.Threading.Thread.xml",
  8476. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8477. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8478. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8479. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8480. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8481. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8482. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8483. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8484. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8485. "ref/xamarinios10/_._",
  8486. "ref/xamarinmac20/_._",
  8487. "ref/xamarintvos10/_._",
  8488. "ref/xamarinwatchos10/_._",
  8489. "system.threading.thread.4.3.0.nupkg.sha512",
  8490. "system.threading.thread.nuspec"
  8491. ]
  8492. },
  8493. "System.Threading.ThreadPool/4.3.0": {
  8494. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8495. "type": "package",
  8496. "path": "system.threading.threadpool/4.3.0",
  8497. "files": [
  8498. ".nupkg.metadata",
  8499. ".signature.p7s",
  8500. "ThirdPartyNotices.txt",
  8501. "dotnet_library_license.txt",
  8502. "lib/MonoAndroid10/_._",
  8503. "lib/MonoTouch10/_._",
  8504. "lib/net46/System.Threading.ThreadPool.dll",
  8505. "lib/netcore50/_._",
  8506. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8507. "lib/xamarinios10/_._",
  8508. "lib/xamarinmac20/_._",
  8509. "lib/xamarintvos10/_._",
  8510. "lib/xamarinwatchos10/_._",
  8511. "ref/MonoAndroid10/_._",
  8512. "ref/MonoTouch10/_._",
  8513. "ref/net46/System.Threading.ThreadPool.dll",
  8514. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8515. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8516. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8517. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8518. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8519. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8520. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8521. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8522. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8523. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8524. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8525. "ref/xamarinios10/_._",
  8526. "ref/xamarinmac20/_._",
  8527. "ref/xamarintvos10/_._",
  8528. "ref/xamarinwatchos10/_._",
  8529. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8530. "system.threading.threadpool.nuspec"
  8531. ]
  8532. },
  8533. "System.Threading.Timer/4.3.0": {
  8534. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8535. "type": "package",
  8536. "path": "system.threading.timer/4.3.0",
  8537. "files": [
  8538. ".nupkg.metadata",
  8539. ".signature.p7s",
  8540. "ThirdPartyNotices.txt",
  8541. "dotnet_library_license.txt",
  8542. "lib/MonoAndroid10/_._",
  8543. "lib/MonoTouch10/_._",
  8544. "lib/net451/_._",
  8545. "lib/portable-net451+win81+wpa81/_._",
  8546. "lib/win81/_._",
  8547. "lib/wpa81/_._",
  8548. "lib/xamarinios10/_._",
  8549. "lib/xamarinmac20/_._",
  8550. "lib/xamarintvos10/_._",
  8551. "lib/xamarinwatchos10/_._",
  8552. "ref/MonoAndroid10/_._",
  8553. "ref/MonoTouch10/_._",
  8554. "ref/net451/_._",
  8555. "ref/netcore50/System.Threading.Timer.dll",
  8556. "ref/netcore50/System.Threading.Timer.xml",
  8557. "ref/netcore50/de/System.Threading.Timer.xml",
  8558. "ref/netcore50/es/System.Threading.Timer.xml",
  8559. "ref/netcore50/fr/System.Threading.Timer.xml",
  8560. "ref/netcore50/it/System.Threading.Timer.xml",
  8561. "ref/netcore50/ja/System.Threading.Timer.xml",
  8562. "ref/netcore50/ko/System.Threading.Timer.xml",
  8563. "ref/netcore50/ru/System.Threading.Timer.xml",
  8564. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8565. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8566. "ref/netstandard1.2/System.Threading.Timer.dll",
  8567. "ref/netstandard1.2/System.Threading.Timer.xml",
  8568. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8569. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8570. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8571. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8572. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8573. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8574. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8575. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8576. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8577. "ref/portable-net451+win81+wpa81/_._",
  8578. "ref/win81/_._",
  8579. "ref/wpa81/_._",
  8580. "ref/xamarinios10/_._",
  8581. "ref/xamarinmac20/_._",
  8582. "ref/xamarintvos10/_._",
  8583. "ref/xamarinwatchos10/_._",
  8584. "system.threading.timer.4.3.0.nupkg.sha512",
  8585. "system.threading.timer.nuspec"
  8586. ]
  8587. },
  8588. "System.Windows.Extensions/4.7.0": {
  8589. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8590. "type": "package",
  8591. "path": "system.windows.extensions/4.7.0",
  8592. "files": [
  8593. ".nupkg.metadata",
  8594. ".signature.p7s",
  8595. "LICENSE.TXT",
  8596. "THIRD-PARTY-NOTICES.TXT",
  8597. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8598. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8599. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8600. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8601. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8602. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8603. "system.windows.extensions.4.7.0.nupkg.sha512",
  8604. "system.windows.extensions.nuspec",
  8605. "useSharedDesignerContext.txt",
  8606. "version.txt"
  8607. ]
  8608. },
  8609. "System.Xml.ReaderWriter/4.3.0": {
  8610. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8611. "type": "package",
  8612. "path": "system.xml.readerwriter/4.3.0",
  8613. "files": [
  8614. ".nupkg.metadata",
  8615. ".signature.p7s",
  8616. "ThirdPartyNotices.txt",
  8617. "dotnet_library_license.txt",
  8618. "lib/MonoAndroid10/_._",
  8619. "lib/MonoTouch10/_._",
  8620. "lib/net45/_._",
  8621. "lib/net46/System.Xml.ReaderWriter.dll",
  8622. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8623. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8624. "lib/portable-net45+win8+wp8+wpa81/_._",
  8625. "lib/win8/_._",
  8626. "lib/wp80/_._",
  8627. "lib/wpa81/_._",
  8628. "lib/xamarinios10/_._",
  8629. "lib/xamarinmac20/_._",
  8630. "lib/xamarintvos10/_._",
  8631. "lib/xamarinwatchos10/_._",
  8632. "ref/MonoAndroid10/_._",
  8633. "ref/MonoTouch10/_._",
  8634. "ref/net45/_._",
  8635. "ref/net46/System.Xml.ReaderWriter.dll",
  8636. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8637. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8638. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8639. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8640. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8641. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8642. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8643. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8644. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8645. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8646. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8647. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8648. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8649. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8650. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8651. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8652. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8653. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8654. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8655. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8656. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8657. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8658. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8659. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8660. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8661. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8662. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8663. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8664. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8665. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8666. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8667. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8668. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8669. "ref/portable-net45+win8+wp8+wpa81/_._",
  8670. "ref/win8/_._",
  8671. "ref/wp80/_._",
  8672. "ref/wpa81/_._",
  8673. "ref/xamarinios10/_._",
  8674. "ref/xamarinmac20/_._",
  8675. "ref/xamarintvos10/_._",
  8676. "ref/xamarinwatchos10/_._",
  8677. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8678. "system.xml.readerwriter.nuspec"
  8679. ]
  8680. },
  8681. "System.Xml.XDocument/4.3.0": {
  8682. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8683. "type": "package",
  8684. "path": "system.xml.xdocument/4.3.0",
  8685. "files": [
  8686. ".nupkg.metadata",
  8687. ".signature.p7s",
  8688. "ThirdPartyNotices.txt",
  8689. "dotnet_library_license.txt",
  8690. "lib/MonoAndroid10/_._",
  8691. "lib/MonoTouch10/_._",
  8692. "lib/net45/_._",
  8693. "lib/netcore50/System.Xml.XDocument.dll",
  8694. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8695. "lib/portable-net45+win8+wp8+wpa81/_._",
  8696. "lib/win8/_._",
  8697. "lib/wp80/_._",
  8698. "lib/wpa81/_._",
  8699. "lib/xamarinios10/_._",
  8700. "lib/xamarinmac20/_._",
  8701. "lib/xamarintvos10/_._",
  8702. "lib/xamarinwatchos10/_._",
  8703. "ref/MonoAndroid10/_._",
  8704. "ref/MonoTouch10/_._",
  8705. "ref/net45/_._",
  8706. "ref/netcore50/System.Xml.XDocument.dll",
  8707. "ref/netcore50/System.Xml.XDocument.xml",
  8708. "ref/netcore50/de/System.Xml.XDocument.xml",
  8709. "ref/netcore50/es/System.Xml.XDocument.xml",
  8710. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8711. "ref/netcore50/it/System.Xml.XDocument.xml",
  8712. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8713. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8714. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8715. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8716. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8717. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8718. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8719. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8720. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8721. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8722. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8723. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8724. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8725. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8726. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8727. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8728. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8729. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8730. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8731. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8732. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8733. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8734. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8735. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8736. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8737. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8738. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8739. "ref/portable-net45+win8+wp8+wpa81/_._",
  8740. "ref/win8/_._",
  8741. "ref/wp80/_._",
  8742. "ref/wpa81/_._",
  8743. "ref/xamarinios10/_._",
  8744. "ref/xamarinmac20/_._",
  8745. "ref/xamarintvos10/_._",
  8746. "ref/xamarinwatchos10/_._",
  8747. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8748. "system.xml.xdocument.nuspec"
  8749. ]
  8750. },
  8751. "System.Xml.XmlDocument/4.3.0": {
  8752. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8753. "type": "package",
  8754. "path": "system.xml.xmldocument/4.3.0",
  8755. "files": [
  8756. ".nupkg.metadata",
  8757. ".signature.p7s",
  8758. "ThirdPartyNotices.txt",
  8759. "dotnet_library_license.txt",
  8760. "lib/MonoAndroid10/_._",
  8761. "lib/MonoTouch10/_._",
  8762. "lib/net46/System.Xml.XmlDocument.dll",
  8763. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8764. "lib/xamarinios10/_._",
  8765. "lib/xamarinmac20/_._",
  8766. "lib/xamarintvos10/_._",
  8767. "lib/xamarinwatchos10/_._",
  8768. "ref/MonoAndroid10/_._",
  8769. "ref/MonoTouch10/_._",
  8770. "ref/net46/System.Xml.XmlDocument.dll",
  8771. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8772. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8773. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8774. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8775. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8776. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8777. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8778. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8779. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8780. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8781. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8782. "ref/xamarinios10/_._",
  8783. "ref/xamarinmac20/_._",
  8784. "ref/xamarintvos10/_._",
  8785. "ref/xamarinwatchos10/_._",
  8786. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8787. "system.xml.xmldocument.nuspec"
  8788. ]
  8789. },
  8790. "ToolGood.Words/3.1.0.2": {
  8791. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  8792. "type": "package",
  8793. "path": "toolgood.words/3.1.0.2",
  8794. "files": [
  8795. ".nupkg.metadata",
  8796. ".signature.p7s",
  8797. "LICENSE",
  8798. "lib/net6.0/ToolGood.Words.dll",
  8799. "lib/net6.0/ToolGood.Words.xml",
  8800. "lib/net8.0/ToolGood.Words.dll",
  8801. "lib/net8.0/ToolGood.Words.xml",
  8802. "lib/net9.0/ToolGood.Words.dll",
  8803. "lib/net9.0/ToolGood.Words.xml",
  8804. "lib/netstandard2.1/ToolGood.Words.dll",
  8805. "lib/netstandard2.1/ToolGood.Words.xml",
  8806. "toolgood.words.3.1.0.2.nupkg.sha512",
  8807. "toolgood.words.nuspec"
  8808. ]
  8809. },
  8810. "ZXing.Net/0.16.9": {
  8811. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  8812. "type": "package",
  8813. "path": "zxing.net/0.16.9",
  8814. "files": [
  8815. ".nupkg.metadata",
  8816. ".signature.p7s",
  8817. "lib/native/zxing.XML",
  8818. "lib/native/zxing.pri",
  8819. "lib/native/zxing.winmd",
  8820. "lib/net20-cf/zxing.ce2.0.dll",
  8821. "lib/net20-cf/zxing.ce2.0.xml",
  8822. "lib/net20/zxing.XML",
  8823. "lib/net20/zxing.dll",
  8824. "lib/net35-cf/zxing.ce3.5.dll",
  8825. "lib/net35-cf/zxing.ce3.5.xml",
  8826. "lib/net35/zxing.XML",
  8827. "lib/net35/zxing.dll",
  8828. "lib/net40/zxing.XML",
  8829. "lib/net40/zxing.dll",
  8830. "lib/net40/zxing.presentation.XML",
  8831. "lib/net40/zxing.presentation.dll",
  8832. "lib/net45/zxing.XML",
  8833. "lib/net45/zxing.dll",
  8834. "lib/net45/zxing.presentation.XML",
  8835. "lib/net45/zxing.presentation.dll",
  8836. "lib/net461/zxing.XML",
  8837. "lib/net461/zxing.dll",
  8838. "lib/net461/zxing.presentation.XML",
  8839. "lib/net461/zxing.presentation.dll",
  8840. "lib/net47/zxing.XML",
  8841. "lib/net47/zxing.dll",
  8842. "lib/net47/zxing.presentation.XML",
  8843. "lib/net47/zxing.presentation.dll",
  8844. "lib/net48/zxing.XML",
  8845. "lib/net48/zxing.dll",
  8846. "lib/net48/zxing.presentation.XML",
  8847. "lib/net48/zxing.presentation.dll",
  8848. "lib/net5.0/zxing.XML",
  8849. "lib/net5.0/zxing.dll",
  8850. "lib/net6.0/zxing.XML",
  8851. "lib/net6.0/zxing.dll",
  8852. "lib/net7.0/zxing.XML",
  8853. "lib/net7.0/zxing.dll",
  8854. "lib/netcoreapp3.0/zxing.dll",
  8855. "lib/netcoreapp3.0/zxing.xml",
  8856. "lib/netcoreapp3.1/zxing.dll",
  8857. "lib/netcoreapp3.1/zxing.xml",
  8858. "lib/netstandard1.0/zxing.dll",
  8859. "lib/netstandard1.0/zxing.xml",
  8860. "lib/netstandard1.1/zxing.dll",
  8861. "lib/netstandard1.1/zxing.xml",
  8862. "lib/netstandard1.3/zxing.dll",
  8863. "lib/netstandard1.3/zxing.xml",
  8864. "lib/netstandard2.0/zxing.dll",
  8865. "lib/netstandard2.0/zxing.xml",
  8866. "lib/netstandard2.1/zxing.dll",
  8867. "lib/netstandard2.1/zxing.xml",
  8868. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  8869. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  8870. "lib/sl3-wp/zxing.wp7.0.XML",
  8871. "lib/sl3-wp/zxing.wp7.0.dll",
  8872. "lib/sl4-wp71/zxing.wp7.1.XML",
  8873. "lib/sl4-wp71/zxing.wp7.1.dll",
  8874. "lib/sl4/zxing.sl4.XML",
  8875. "lib/sl4/zxing.sl4.dll",
  8876. "lib/sl5/zxing.sl5.XML",
  8877. "lib/sl5/zxing.sl5.dll",
  8878. "lib/uap10/zxing.dll",
  8879. "lib/uap10/zxing.pri",
  8880. "lib/uap10/zxing.xml",
  8881. "lib/windows8-managed/zxing.winrt.XML",
  8882. "lib/windows8-managed/zxing.winrt.dll",
  8883. "lib/windows8/zxing.XML",
  8884. "lib/windows8/zxing.pri",
  8885. "lib/windows8/zxing.winmd",
  8886. "lib/wp8/zxing.wp8.0.XML",
  8887. "lib/wp8/zxing.wp8.0.dll",
  8888. "logo.jpg",
  8889. "zxing.net.0.16.9.nupkg.sha512",
  8890. "zxing.net.nuspec"
  8891. ]
  8892. },
  8893. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  8894. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  8895. "type": "package",
  8896. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  8897. "files": [
  8898. ".nupkg.metadata",
  8899. ".signature.p7s",
  8900. "lib/net472/ZXing.ImageSharp.V2.dll",
  8901. "lib/net472/ZXing.ImageSharp.V2.pdb",
  8902. "lib/net472/ZXing.ImageSharp.V2.xml",
  8903. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  8904. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  8905. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  8906. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  8907. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  8908. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  8909. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  8910. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  8911. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  8912. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  8913. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  8914. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  8915. "logo.jpg",
  8916. "readme.md",
  8917. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  8918. "zxing.net.bindings.imagesharp.v2.nuspec"
  8919. ]
  8920. },
  8921. "Ropin.Core.Common/1.0.0": {
  8922. "type": "project",
  8923. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  8924. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  8925. },
  8926. "Ropin.Inspection.Common/1.0.0": {
  8927. "type": "project",
  8928. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  8929. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  8930. },
  8931. "Ropin.Inspection.Model/1.0.0": {
  8932. "type": "project",
  8933. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  8934. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  8935. },
  8936. "Ropin.Inspection.Repository/1.0.0": {
  8937. "type": "project",
  8938. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  8939. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  8940. },
  8941. "Ropin.Inspection.Service/1.0.0": {
  8942. "type": "project",
  8943. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  8944. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  8945. },
  8946. "Ropin.Inspection.Tasks/1.0.0": {
  8947. "type": "project",
  8948. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  8949. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  8950. }
  8951. },
  8952. "projectFileDependencyGroups": {
  8953. "net5.0": [
  8954. "Autofac >= 6.2.0",
  8955. "Autofac.Extras.DynamicProxy >= 6.0.0",
  8956. "Microsoft.AspNetCore.Http.Abstractions >= 2.2.0",
  8957. "Ropin.Core.Common >= 1.0.0",
  8958. "Ropin.Inspection.Common >= 1.0.0",
  8959. "Ropin.Inspection.Service >= 1.0.0",
  8960. "Ropin.Inspection.Tasks >= 1.0.0",
  8961. "StackExchange.Redis >= 1.2.4",
  8962. "log4net >= 2.0.17"
  8963. ]
  8964. },
  8965. "packageFolders": {
  8966. "D:\\.nuget\\packages": {},
  8967. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  8968. },
  8969. "project": {
  8970. "version": "1.0.0",
  8971. "restore": {
  8972. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj",
  8973. "projectName": "Ropin.Core.Extensions",
  8974. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj",
  8975. "packagesPath": "D:\\.nuget\\packages",
  8976. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\obj\\",
  8977. "projectStyle": "PackageReference",
  8978. "fallbackFolders": [
  8979. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  8980. ],
  8981. "configFilePaths": [
  8982. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8983. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8984. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8985. ],
  8986. "originalTargetFrameworks": [
  8987. "net5.0"
  8988. ],
  8989. "sources": {
  8990. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8991. "C:\\Program Files\\dotnet\\library-packs": {},
  8992. "https://api.nuget.org/v3/index.json": {}
  8993. },
  8994. "frameworks": {
  8995. "net5.0": {
  8996. "targetAlias": "net5.0",
  8997. "projectReferences": {
  8998. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  8999. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9000. },
  9001. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9002. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9003. },
  9004. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  9005. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  9006. },
  9007. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj": {
  9008. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj"
  9009. }
  9010. }
  9011. }
  9012. },
  9013. "warningProperties": {
  9014. "warnAsError": [
  9015. "NU1605"
  9016. ]
  9017. }
  9018. },
  9019. "frameworks": {
  9020. "net5.0": {
  9021. "targetAlias": "net5.0",
  9022. "dependencies": {
  9023. "Autofac": {
  9024. "target": "Package",
  9025. "version": "[6.2.0, )"
  9026. },
  9027. "Autofac.Extras.DynamicProxy": {
  9028. "target": "Package",
  9029. "version": "[6.0.0, )"
  9030. },
  9031. "Microsoft.AspNetCore.Http.Abstractions": {
  9032. "target": "Package",
  9033. "version": "[2.2.0, )"
  9034. },
  9035. "StackExchange.Redis": {
  9036. "target": "Package",
  9037. "version": "[1.2.4, )"
  9038. },
  9039. "log4net": {
  9040. "target": "Package",
  9041. "version": "[2.0.17, )"
  9042. }
  9043. },
  9044. "imports": [
  9045. "net461",
  9046. "net462",
  9047. "net47",
  9048. "net471",
  9049. "net472",
  9050. "net48",
  9051. "net481"
  9052. ],
  9053. "assetTargetFallback": true,
  9054. "warn": true,
  9055. "frameworkReferences": {
  9056. "Microsoft.NETCore.App": {
  9057. "privateAssets": "all"
  9058. }
  9059. },
  9060. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9061. }
  9062. }
  9063. }
  9064. }