project.assets.json 381 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433
  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.ApiDescription.Server/3.0.0": {
  431. "type": "package",
  432. "build": {
  433. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  434. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  435. },
  436. "buildMultiTargeting": {
  437. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  438. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  439. }
  440. },
  441. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  442. "type": "package",
  443. "dependencies": {
  444. "Microsoft.Extensions.Primitives": "5.0.0"
  445. },
  446. "compile": {
  447. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  448. "related": ".xml"
  449. }
  450. },
  451. "runtime": {
  452. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  453. "related": ".xml"
  454. }
  455. }
  456. },
  457. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  458. "type": "package",
  459. "dependencies": {
  460. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  461. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  462. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  463. "Microsoft.Extensions.Options": "5.0.0",
  464. "Microsoft.Extensions.Primitives": "5.0.0"
  465. },
  466. "compile": {
  467. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  473. "related": ".xml"
  474. }
  475. }
  476. },
  477. "Microsoft.Extensions.Configuration/5.0.0": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  481. "Microsoft.Extensions.Primitives": "5.0.0"
  482. },
  483. "compile": {
  484. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  485. "related": ".xml"
  486. }
  487. },
  488. "runtime": {
  489. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  490. "related": ".xml"
  491. }
  492. }
  493. },
  494. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "Microsoft.Extensions.Primitives": "5.0.0"
  498. },
  499. "compile": {
  500. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  501. "related": ".xml"
  502. }
  503. },
  504. "runtime": {
  505. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  506. "related": ".xml"
  507. }
  508. }
  509. },
  510. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  511. "type": "package",
  512. "dependencies": {
  513. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  514. },
  515. "compile": {
  516. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  517. "related": ".xml"
  518. }
  519. },
  520. "runtime": {
  521. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  522. "related": ".xml"
  523. }
  524. }
  525. },
  526. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  527. "type": "package",
  528. "dependencies": {
  529. "Microsoft.Extensions.Configuration": "5.0.0",
  530. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  531. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  532. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  533. "Microsoft.Extensions.Primitives": "5.0.0"
  534. },
  535. "compile": {
  536. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  537. "related": ".xml"
  538. }
  539. },
  540. "runtime": {
  541. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  542. "related": ".xml"
  543. }
  544. }
  545. },
  546. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  547. "type": "package",
  548. "dependencies": {
  549. "Microsoft.Extensions.Configuration": "5.0.0",
  550. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  551. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  552. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  553. },
  554. "compile": {
  555. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  556. "related": ".xml"
  557. }
  558. },
  559. "runtime": {
  560. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  561. "related": ".xml"
  562. }
  563. }
  564. },
  565. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  566. "type": "package",
  567. "dependencies": {
  568. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  569. },
  570. "compile": {
  571. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  572. "related": ".xml"
  573. }
  574. },
  575. "runtime": {
  576. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  577. "related": ".xml"
  578. }
  579. }
  580. },
  581. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  582. "type": "package",
  583. "compile": {
  584. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  585. "related": ".xml"
  586. }
  587. },
  588. "runtime": {
  589. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  590. "related": ".xml"
  591. }
  592. }
  593. },
  594. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  595. "type": "package",
  596. "dependencies": {
  597. "Microsoft.Extensions.Primitives": "5.0.0"
  598. },
  599. "compile": {
  600. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  601. "related": ".xml"
  602. }
  603. },
  604. "runtime": {
  605. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  606. "related": ".xml"
  607. }
  608. }
  609. },
  610. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  611. "type": "package",
  612. "dependencies": {
  613. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  614. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  615. "Microsoft.Extensions.Primitives": "5.0.0"
  616. },
  617. "compile": {
  618. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  619. "related": ".xml"
  620. }
  621. },
  622. "runtime": {
  623. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  624. "related": ".xml"
  625. }
  626. }
  627. },
  628. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  629. "type": "package",
  630. "compile": {
  631. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  632. "related": ".xml"
  633. }
  634. },
  635. "runtime": {
  636. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  637. "related": ".xml"
  638. }
  639. }
  640. },
  641. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  642. "type": "package",
  643. "dependencies": {
  644. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  645. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  646. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  647. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  648. },
  649. "compile": {
  650. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  651. "related": ".xml"
  652. }
  653. },
  654. "runtime": {
  655. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  656. "related": ".xml"
  657. }
  658. }
  659. },
  660. "Microsoft.Extensions.Http/5.0.0": {
  661. "type": "package",
  662. "dependencies": {
  663. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  664. "Microsoft.Extensions.Logging": "5.0.0",
  665. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  666. "Microsoft.Extensions.Options": "5.0.0"
  667. },
  668. "compile": {
  669. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  670. "related": ".xml"
  671. }
  672. },
  673. "runtime": {
  674. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  675. "related": ".xml"
  676. }
  677. }
  678. },
  679. "Microsoft.Extensions.Logging/5.0.0": {
  680. "type": "package",
  681. "dependencies": {
  682. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  683. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  684. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  685. "Microsoft.Extensions.Options": "5.0.0"
  686. },
  687. "compile": {
  688. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  689. "related": ".xml"
  690. }
  691. },
  692. "runtime": {
  693. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  694. "related": ".xml"
  695. }
  696. }
  697. },
  698. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  699. "type": "package",
  700. "compile": {
  701. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  702. "related": ".xml"
  703. }
  704. },
  705. "runtime": {
  706. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  707. "related": ".xml"
  708. }
  709. }
  710. },
  711. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  712. "type": "package",
  713. "dependencies": {
  714. "Microsoft.Extensions.Logging": "3.1.30",
  715. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  716. },
  717. "compile": {
  718. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  719. "related": ".xml"
  720. }
  721. },
  722. "runtime": {
  723. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  724. "related": ".xml"
  725. }
  726. }
  727. },
  728. "Microsoft.Extensions.Logging.Console/3.1.30": {
  729. "type": "package",
  730. "dependencies": {
  731. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  732. "Microsoft.Extensions.Logging": "3.1.30",
  733. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  734. },
  735. "compile": {
  736. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  737. "related": ".xml"
  738. }
  739. },
  740. "runtime": {
  741. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  742. "related": ".xml"
  743. }
  744. }
  745. },
  746. "Microsoft.Extensions.Options/5.0.0": {
  747. "type": "package",
  748. "dependencies": {
  749. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  750. "Microsoft.Extensions.Primitives": "5.0.0"
  751. },
  752. "compile": {
  753. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  754. "related": ".xml"
  755. }
  756. },
  757. "runtime": {
  758. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  759. "related": ".xml"
  760. }
  761. }
  762. },
  763. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  764. "type": "package",
  765. "dependencies": {
  766. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  767. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  768. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  769. "Microsoft.Extensions.Options": "3.1.30"
  770. },
  771. "compile": {
  772. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  773. "related": ".xml"
  774. }
  775. },
  776. "runtime": {
  777. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  778. "related": ".xml"
  779. }
  780. }
  781. },
  782. "Microsoft.Extensions.Primitives/5.0.0": {
  783. "type": "package",
  784. "compile": {
  785. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  786. "related": ".xml"
  787. }
  788. },
  789. "runtime": {
  790. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  791. "related": ".xml"
  792. }
  793. }
  794. },
  795. "Microsoft.NETCore.Platforms/5.0.0": {
  796. "type": "package",
  797. "compile": {
  798. "lib/netstandard1.0/_._": {}
  799. },
  800. "runtime": {
  801. "lib/netstandard1.0/_._": {}
  802. }
  803. },
  804. "Microsoft.NETCore.Targets/1.1.0": {
  805. "type": "package",
  806. "compile": {
  807. "lib/netstandard1.0/_._": {}
  808. },
  809. "runtime": {
  810. "lib/netstandard1.0/_._": {}
  811. }
  812. },
  813. "Microsoft.OpenApi/1.2.3": {
  814. "type": "package",
  815. "compile": {
  816. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  817. "related": ".pdb;.xml"
  818. }
  819. },
  820. "runtime": {
  821. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  822. "related": ".pdb;.xml"
  823. }
  824. }
  825. },
  826. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  827. "type": "package",
  828. "build": {
  829. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  830. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  831. }
  832. },
  833. "Microsoft.Win32.Primitives/4.3.0": {
  834. "type": "package",
  835. "dependencies": {
  836. "Microsoft.NETCore.Platforms": "1.1.0",
  837. "Microsoft.NETCore.Targets": "1.1.0",
  838. "System.Runtime": "4.3.0"
  839. },
  840. "compile": {
  841. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  842. "related": ".xml"
  843. }
  844. }
  845. },
  846. "Microsoft.Win32.SystemEvents/5.0.0": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.NETCore.Platforms": "5.0.0"
  850. },
  851. "compile": {
  852. "ref/netstandard2.0/_._": {
  853. "related": ".xml"
  854. }
  855. },
  856. "runtime": {
  857. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  858. "related": ".xml"
  859. }
  860. },
  861. "runtimeTargets": {
  862. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  863. "assetType": "runtime",
  864. "rid": "win"
  865. }
  866. }
  867. },
  868. "MQTTnet/4.2.1.781": {
  869. "type": "package",
  870. "compile": {
  871. "lib/net5.0/MQTTnet.dll": {
  872. "related": ".xml"
  873. }
  874. },
  875. "runtime": {
  876. "lib/net5.0/MQTTnet.dll": {
  877. "related": ".xml"
  878. }
  879. }
  880. },
  881. "MQTTnet.AspNetCore/4.2.1.781": {
  882. "type": "package",
  883. "dependencies": {
  884. "MQTTnet": "4.2.1.781"
  885. },
  886. "compile": {
  887. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  888. "related": ".xml"
  889. }
  890. },
  891. "runtime": {
  892. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  893. "related": ".xml"
  894. }
  895. },
  896. "frameworkReferences": [
  897. "Microsoft.AspNetCore.App"
  898. ]
  899. },
  900. "MySql.Data/8.0.23": {
  901. "type": "package",
  902. "dependencies": {
  903. "BouncyCastle.NetCore": "1.8.5",
  904. "Google.Protobuf": "3.11.4",
  905. "K4os.Compression.LZ4": "1.1.11",
  906. "K4os.Compression.LZ4.Streams": "1.1.11",
  907. "K4os.Hash.xxHash": "1.0.6",
  908. "SSH.NET": "2020.0.0-beta1",
  909. "System.Buffers": "4.5.1",
  910. "System.Configuration.ConfigurationManager": "4.4.1",
  911. "System.Security.Permissions": "4.7.0",
  912. "System.Text.Encoding.CodePages": "4.4.0"
  913. },
  914. "compile": {
  915. "lib/net5.0/MySql.Data.dll": {
  916. "related": ".xml"
  917. },
  918. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  919. "lib/net5.0/Zstandard.Net.dll": {}
  920. },
  921. "runtime": {
  922. "lib/net5.0/MySql.Data.dll": {
  923. "related": ".xml"
  924. },
  925. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  926. "lib/net5.0/Zstandard.Net.dll": {}
  927. }
  928. },
  929. "MySqlConnector/1.1.0": {
  930. "type": "package",
  931. "compile": {
  932. "lib/net5.0/MySqlConnector.dll": {
  933. "related": ".xml"
  934. }
  935. },
  936. "runtime": {
  937. "lib/net5.0/MySqlConnector.dll": {
  938. "related": ".xml"
  939. }
  940. }
  941. },
  942. "NETStandard.Library/1.6.1": {
  943. "type": "package",
  944. "dependencies": {
  945. "Microsoft.NETCore.Platforms": "1.1.0",
  946. "Microsoft.Win32.Primitives": "4.3.0",
  947. "System.AppContext": "4.3.0",
  948. "System.Collections": "4.3.0",
  949. "System.Collections.Concurrent": "4.3.0",
  950. "System.Console": "4.3.0",
  951. "System.Diagnostics.Debug": "4.3.0",
  952. "System.Diagnostics.Tools": "4.3.0",
  953. "System.Diagnostics.Tracing": "4.3.0",
  954. "System.Globalization": "4.3.0",
  955. "System.Globalization.Calendars": "4.3.0",
  956. "System.IO": "4.3.0",
  957. "System.IO.Compression": "4.3.0",
  958. "System.IO.Compression.ZipFile": "4.3.0",
  959. "System.IO.FileSystem": "4.3.0",
  960. "System.IO.FileSystem.Primitives": "4.3.0",
  961. "System.Linq": "4.3.0",
  962. "System.Linq.Expressions": "4.3.0",
  963. "System.Net.Http": "4.3.0",
  964. "System.Net.Primitives": "4.3.0",
  965. "System.Net.Sockets": "4.3.0",
  966. "System.ObjectModel": "4.3.0",
  967. "System.Reflection": "4.3.0",
  968. "System.Reflection.Extensions": "4.3.0",
  969. "System.Reflection.Primitives": "4.3.0",
  970. "System.Resources.ResourceManager": "4.3.0",
  971. "System.Runtime": "4.3.0",
  972. "System.Runtime.Extensions": "4.3.0",
  973. "System.Runtime.Handles": "4.3.0",
  974. "System.Runtime.InteropServices": "4.3.0",
  975. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  976. "System.Runtime.Numerics": "4.3.0",
  977. "System.Security.Cryptography.Algorithms": "4.3.0",
  978. "System.Security.Cryptography.Encoding": "4.3.0",
  979. "System.Security.Cryptography.Primitives": "4.3.0",
  980. "System.Security.Cryptography.X509Certificates": "4.3.0",
  981. "System.Text.Encoding": "4.3.0",
  982. "System.Text.Encoding.Extensions": "4.3.0",
  983. "System.Text.RegularExpressions": "4.3.0",
  984. "System.Threading": "4.3.0",
  985. "System.Threading.Tasks": "4.3.0",
  986. "System.Threading.Timer": "4.3.0",
  987. "System.Xml.ReaderWriter": "4.3.0",
  988. "System.Xml.XDocument": "4.3.0"
  989. }
  990. },
  991. "Newtonsoft.Json/13.0.3": {
  992. "type": "package",
  993. "compile": {
  994. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  995. "related": ".xml"
  996. }
  997. },
  998. "runtime": {
  999. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1000. "related": ".xml"
  1001. }
  1002. }
  1003. },
  1004. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1005. "type": "package",
  1006. "dependencies": {
  1007. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1008. "MySqlConnector": "1.1.0"
  1009. },
  1010. "compile": {
  1011. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1012. "related": ".xml"
  1013. }
  1014. },
  1015. "runtime": {
  1016. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1017. "related": ".xml"
  1018. }
  1019. }
  1020. },
  1021. "QRCoder/1.4.3": {
  1022. "type": "package",
  1023. "dependencies": {
  1024. "System.Drawing.Common": "5.0.3"
  1025. },
  1026. "compile": {
  1027. "lib/net5.0/QRCoder.dll": {}
  1028. },
  1029. "runtime": {
  1030. "lib/net5.0/QRCoder.dll": {}
  1031. }
  1032. },
  1033. "Quartz/3.3.3": {
  1034. "type": "package",
  1035. "dependencies": {
  1036. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1037. "System.Configuration.ConfigurationManager": "4.7.0",
  1038. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1039. },
  1040. "compile": {
  1041. "lib/netstandard2.0/Quartz.dll": {
  1042. "related": ".xml"
  1043. }
  1044. },
  1045. "runtime": {
  1046. "lib/netstandard2.0/Quartz.dll": {
  1047. "related": ".xml"
  1048. }
  1049. }
  1050. },
  1051. "RabbitMQ.Client/6.8.1": {
  1052. "type": "package",
  1053. "dependencies": {
  1054. "System.Memory": "4.5.5",
  1055. "System.Threading.Channels": "7.0.0"
  1056. },
  1057. "compile": {
  1058. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1059. "related": ".xml"
  1060. }
  1061. },
  1062. "runtime": {
  1063. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1064. "related": ".xml"
  1065. }
  1066. }
  1067. },
  1068. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1069. "type": "package",
  1070. "runtimeTargets": {
  1071. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1072. "assetType": "native",
  1073. "rid": "debian.8-x64"
  1074. }
  1075. }
  1076. },
  1077. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1078. "type": "package",
  1079. "runtimeTargets": {
  1080. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1081. "assetType": "native",
  1082. "rid": "fedora.23-x64"
  1083. }
  1084. }
  1085. },
  1086. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1087. "type": "package",
  1088. "runtimeTargets": {
  1089. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1090. "assetType": "native",
  1091. "rid": "fedora.24-x64"
  1092. }
  1093. }
  1094. },
  1095. "runtime.native.System/4.3.0": {
  1096. "type": "package",
  1097. "dependencies": {
  1098. "Microsoft.NETCore.Platforms": "1.1.0",
  1099. "Microsoft.NETCore.Targets": "1.1.0"
  1100. },
  1101. "compile": {
  1102. "lib/netstandard1.0/_._": {}
  1103. },
  1104. "runtime": {
  1105. "lib/netstandard1.0/_._": {}
  1106. }
  1107. },
  1108. "runtime.native.System.IO.Compression/4.3.0": {
  1109. "type": "package",
  1110. "dependencies": {
  1111. "Microsoft.NETCore.Platforms": "1.1.0",
  1112. "Microsoft.NETCore.Targets": "1.1.0"
  1113. },
  1114. "compile": {
  1115. "lib/netstandard1.0/_._": {}
  1116. },
  1117. "runtime": {
  1118. "lib/netstandard1.0/_._": {}
  1119. }
  1120. },
  1121. "runtime.native.System.Net.Http/4.3.0": {
  1122. "type": "package",
  1123. "dependencies": {
  1124. "Microsoft.NETCore.Platforms": "1.1.0",
  1125. "Microsoft.NETCore.Targets": "1.1.0"
  1126. },
  1127. "compile": {
  1128. "lib/netstandard1.0/_._": {}
  1129. },
  1130. "runtime": {
  1131. "lib/netstandard1.0/_._": {}
  1132. }
  1133. },
  1134. "runtime.native.System.Net.Security/4.3.0": {
  1135. "type": "package",
  1136. "dependencies": {
  1137. "Microsoft.NETCore.Platforms": "1.1.0",
  1138. "Microsoft.NETCore.Targets": "1.1.0"
  1139. },
  1140. "compile": {
  1141. "lib/netstandard1.0/_._": {}
  1142. },
  1143. "runtime": {
  1144. "lib/netstandard1.0/_._": {}
  1145. }
  1146. },
  1147. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1151. },
  1152. "compile": {
  1153. "lib/netstandard1.0/_._": {}
  1154. },
  1155. "runtime": {
  1156. "lib/netstandard1.0/_._": {}
  1157. }
  1158. },
  1159. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1160. "type": "package",
  1161. "dependencies": {
  1162. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1163. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1164. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1165. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1166. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1167. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1168. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1169. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1170. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1171. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1172. },
  1173. "compile": {
  1174. "lib/netstandard1.0/_._": {}
  1175. },
  1176. "runtime": {
  1177. "lib/netstandard1.0/_._": {}
  1178. }
  1179. },
  1180. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1181. "type": "package",
  1182. "runtimeTargets": {
  1183. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1184. "assetType": "native",
  1185. "rid": "opensuse.13.2-x64"
  1186. }
  1187. }
  1188. },
  1189. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1190. "type": "package",
  1191. "runtimeTargets": {
  1192. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1193. "assetType": "native",
  1194. "rid": "opensuse.42.1-x64"
  1195. }
  1196. }
  1197. },
  1198. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1199. "type": "package",
  1200. "runtimeTargets": {
  1201. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1202. "assetType": "native",
  1203. "rid": "osx.10.10-x64"
  1204. }
  1205. }
  1206. },
  1207. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1208. "type": "package",
  1209. "runtimeTargets": {
  1210. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1211. "assetType": "native",
  1212. "rid": "osx.10.10-x64"
  1213. }
  1214. }
  1215. },
  1216. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1217. "type": "package",
  1218. "runtimeTargets": {
  1219. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1220. "assetType": "native",
  1221. "rid": "rhel.7-x64"
  1222. }
  1223. }
  1224. },
  1225. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1226. "type": "package",
  1227. "runtimeTargets": {
  1228. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1229. "assetType": "native",
  1230. "rid": "ubuntu.14.04-x64"
  1231. }
  1232. }
  1233. },
  1234. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1235. "type": "package",
  1236. "runtimeTargets": {
  1237. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1238. "assetType": "native",
  1239. "rid": "ubuntu.16.04-x64"
  1240. }
  1241. }
  1242. },
  1243. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1244. "type": "package",
  1245. "runtimeTargets": {
  1246. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1247. "assetType": "native",
  1248. "rid": "ubuntu.16.10-x64"
  1249. }
  1250. }
  1251. },
  1252. "SixLabors.ImageSharp/2.1.6": {
  1253. "type": "package",
  1254. "dependencies": {
  1255. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1256. "System.Text.Encoding.CodePages": "5.0.0"
  1257. },
  1258. "compile": {
  1259. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1260. "related": ".xml"
  1261. }
  1262. },
  1263. "runtime": {
  1264. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1265. "related": ".xml"
  1266. }
  1267. }
  1268. },
  1269. "SSH.NET/2020.0.0-beta1": {
  1270. "type": "package",
  1271. "dependencies": {
  1272. "SshNet.Security.Cryptography": "[1.3.0]"
  1273. },
  1274. "compile": {
  1275. "lib/netstandard2.0/Renci.SshNet.dll": {
  1276. "related": ".xml"
  1277. }
  1278. },
  1279. "runtime": {
  1280. "lib/netstandard2.0/Renci.SshNet.dll": {
  1281. "related": ".xml"
  1282. }
  1283. }
  1284. },
  1285. "SshNet.Security.Cryptography/1.3.0": {
  1286. "type": "package",
  1287. "compile": {
  1288. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1289. "related": ".xml"
  1290. }
  1291. },
  1292. "runtime": {
  1293. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1294. "related": ".xml"
  1295. }
  1296. }
  1297. },
  1298. "StackExchange.Redis/1.2.4": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "NETStandard.Library": "1.6.1",
  1302. "System.Collections": "4.3.0",
  1303. "System.Collections.Concurrent": "4.3.0",
  1304. "System.Collections.NonGeneric": "4.3.0",
  1305. "System.Diagnostics.Tools": "4.3.0",
  1306. "System.IO.Compression": "4.3.0",
  1307. "System.IO.FileSystem": "4.3.0",
  1308. "System.Linq": "4.3.0",
  1309. "System.Net.NameResolution": "4.3.0",
  1310. "System.Net.Security": "4.3.0",
  1311. "System.Net.Sockets": "4.3.0",
  1312. "System.Reflection.Emit": "4.3.0",
  1313. "System.Reflection.Emit.Lightweight": "4.3.0",
  1314. "System.Reflection.TypeExtensions": "4.3.0",
  1315. "System.Runtime.Extensions": "4.3.0",
  1316. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1317. "System.Security.Cryptography.Algorithms": "4.3.0",
  1318. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1319. "System.Text.RegularExpressions": "4.3.0",
  1320. "System.Threading": "4.3.0",
  1321. "System.Threading.Thread": "4.3.0",
  1322. "System.Threading.ThreadPool": "4.3.0",
  1323. "System.Threading.Timer": "4.3.0"
  1324. },
  1325. "compile": {
  1326. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1327. "related": ".xml"
  1328. }
  1329. },
  1330. "runtime": {
  1331. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1332. "related": ".xml"
  1333. }
  1334. }
  1335. },
  1336. "Swashbuckle.AspNetCore/5.6.3": {
  1337. "type": "package",
  1338. "dependencies": {
  1339. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1340. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1341. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1342. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1343. },
  1344. "build": {
  1345. "build/Swashbuckle.AspNetCore.props": {}
  1346. }
  1347. },
  1348. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1349. "type": "package",
  1350. "dependencies": {
  1351. "Microsoft.OpenApi": "1.2.3"
  1352. },
  1353. "compile": {
  1354. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1355. "related": ".pdb;.xml"
  1356. }
  1357. },
  1358. "runtime": {
  1359. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1360. "related": ".pdb;.xml"
  1361. }
  1362. },
  1363. "frameworkReferences": [
  1364. "Microsoft.AspNetCore.App"
  1365. ]
  1366. },
  1367. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1368. "type": "package",
  1369. "dependencies": {
  1370. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1371. },
  1372. "compile": {
  1373. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1374. "related": ".pdb;.xml"
  1375. }
  1376. },
  1377. "runtime": {
  1378. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1379. "related": ".pdb;.xml"
  1380. }
  1381. },
  1382. "frameworkReferences": [
  1383. "Microsoft.AspNetCore.App"
  1384. ]
  1385. },
  1386. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1387. "type": "package",
  1388. "compile": {
  1389. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1390. "related": ".pdb;.xml"
  1391. }
  1392. },
  1393. "runtime": {
  1394. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1395. "related": ".pdb;.xml"
  1396. }
  1397. },
  1398. "frameworkReferences": [
  1399. "Microsoft.AspNetCore.App"
  1400. ]
  1401. },
  1402. "System.AppContext/4.3.0": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "System.Runtime": "4.3.0"
  1406. },
  1407. "compile": {
  1408. "ref/netstandard1.6/System.AppContext.dll": {
  1409. "related": ".xml"
  1410. }
  1411. },
  1412. "runtime": {
  1413. "lib/netstandard1.6/System.AppContext.dll": {}
  1414. }
  1415. },
  1416. "System.Buffers/4.5.1": {
  1417. "type": "package",
  1418. "compile": {
  1419. "ref/netcoreapp2.0/_._": {}
  1420. },
  1421. "runtime": {
  1422. "lib/netcoreapp2.0/_._": {}
  1423. }
  1424. },
  1425. "System.Collections/4.3.0": {
  1426. "type": "package",
  1427. "dependencies": {
  1428. "Microsoft.NETCore.Platforms": "1.1.0",
  1429. "Microsoft.NETCore.Targets": "1.1.0",
  1430. "System.Runtime": "4.3.0"
  1431. },
  1432. "compile": {
  1433. "ref/netstandard1.3/System.Collections.dll": {
  1434. "related": ".xml"
  1435. }
  1436. }
  1437. },
  1438. "System.Collections.Concurrent/4.3.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "System.Collections": "4.3.0",
  1442. "System.Diagnostics.Debug": "4.3.0",
  1443. "System.Diagnostics.Tracing": "4.3.0",
  1444. "System.Globalization": "4.3.0",
  1445. "System.Reflection": "4.3.0",
  1446. "System.Resources.ResourceManager": "4.3.0",
  1447. "System.Runtime": "4.3.0",
  1448. "System.Runtime.Extensions": "4.3.0",
  1449. "System.Threading": "4.3.0",
  1450. "System.Threading.Tasks": "4.3.0"
  1451. },
  1452. "compile": {
  1453. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1454. "related": ".xml"
  1455. }
  1456. },
  1457. "runtime": {
  1458. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1459. }
  1460. },
  1461. "System.Collections.Immutable/5.0.0": {
  1462. "type": "package",
  1463. "compile": {
  1464. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1465. "related": ".xml"
  1466. }
  1467. },
  1468. "runtime": {
  1469. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1470. "related": ".xml"
  1471. }
  1472. }
  1473. },
  1474. "System.Collections.NonGeneric/4.3.0": {
  1475. "type": "package",
  1476. "dependencies": {
  1477. "System.Diagnostics.Debug": "4.3.0",
  1478. "System.Globalization": "4.3.0",
  1479. "System.Resources.ResourceManager": "4.3.0",
  1480. "System.Runtime": "4.3.0",
  1481. "System.Runtime.Extensions": "4.3.0",
  1482. "System.Threading": "4.3.0"
  1483. },
  1484. "compile": {
  1485. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1486. "related": ".xml"
  1487. }
  1488. },
  1489. "runtime": {
  1490. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1491. }
  1492. },
  1493. "System.Collections.Specialized/4.3.0": {
  1494. "type": "package",
  1495. "dependencies": {
  1496. "System.Collections.NonGeneric": "4.3.0",
  1497. "System.Globalization": "4.3.0",
  1498. "System.Globalization.Extensions": "4.3.0",
  1499. "System.Resources.ResourceManager": "4.3.0",
  1500. "System.Runtime": "4.3.0",
  1501. "System.Runtime.Extensions": "4.3.0",
  1502. "System.Threading": "4.3.0"
  1503. },
  1504. "compile": {
  1505. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1506. "related": ".xml"
  1507. }
  1508. },
  1509. "runtime": {
  1510. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1511. }
  1512. },
  1513. "System.ComponentModel/4.3.0": {
  1514. "type": "package",
  1515. "dependencies": {
  1516. "System.Runtime": "4.3.0"
  1517. },
  1518. "compile": {
  1519. "ref/netstandard1.0/System.ComponentModel.dll": {
  1520. "related": ".xml"
  1521. }
  1522. },
  1523. "runtime": {
  1524. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1525. }
  1526. },
  1527. "System.ComponentModel.Annotations/5.0.0": {
  1528. "type": "package",
  1529. "compile": {
  1530. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1531. "related": ".xml"
  1532. }
  1533. },
  1534. "runtime": {
  1535. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1536. "related": ".xml"
  1537. }
  1538. }
  1539. },
  1540. "System.ComponentModel.Primitives/4.3.0": {
  1541. "type": "package",
  1542. "dependencies": {
  1543. "System.ComponentModel": "4.3.0",
  1544. "System.Resources.ResourceManager": "4.3.0",
  1545. "System.Runtime": "4.3.0"
  1546. },
  1547. "compile": {
  1548. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1549. "related": ".xml"
  1550. }
  1551. },
  1552. "runtime": {
  1553. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1554. }
  1555. },
  1556. "System.ComponentModel.TypeConverter/4.3.0": {
  1557. "type": "package",
  1558. "dependencies": {
  1559. "System.Collections": "4.3.0",
  1560. "System.Collections.NonGeneric": "4.3.0",
  1561. "System.Collections.Specialized": "4.3.0",
  1562. "System.ComponentModel": "4.3.0",
  1563. "System.ComponentModel.Primitives": "4.3.0",
  1564. "System.Globalization": "4.3.0",
  1565. "System.Linq": "4.3.0",
  1566. "System.Reflection": "4.3.0",
  1567. "System.Reflection.Extensions": "4.3.0",
  1568. "System.Reflection.Primitives": "4.3.0",
  1569. "System.Reflection.TypeExtensions": "4.3.0",
  1570. "System.Resources.ResourceManager": "4.3.0",
  1571. "System.Runtime": "4.3.0",
  1572. "System.Runtime.Extensions": "4.3.0",
  1573. "System.Threading": "4.3.0"
  1574. },
  1575. "compile": {
  1576. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1577. "related": ".xml"
  1578. }
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1582. }
  1583. },
  1584. "System.Configuration.ConfigurationManager/4.7.0": {
  1585. "type": "package",
  1586. "dependencies": {
  1587. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1588. "System.Security.Permissions": "4.7.0"
  1589. },
  1590. "compile": {
  1591. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1592. "related": ".xml"
  1593. }
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1597. "related": ".xml"
  1598. }
  1599. }
  1600. },
  1601. "System.Console/4.3.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "Microsoft.NETCore.Platforms": "1.1.0",
  1605. "Microsoft.NETCore.Targets": "1.1.0",
  1606. "System.IO": "4.3.0",
  1607. "System.Runtime": "4.3.0",
  1608. "System.Text.Encoding": "4.3.0"
  1609. },
  1610. "compile": {
  1611. "ref/netstandard1.3/System.Console.dll": {
  1612. "related": ".xml"
  1613. }
  1614. }
  1615. },
  1616. "System.Diagnostics.Debug/4.3.0": {
  1617. "type": "package",
  1618. "dependencies": {
  1619. "Microsoft.NETCore.Platforms": "1.1.0",
  1620. "Microsoft.NETCore.Targets": "1.1.0",
  1621. "System.Runtime": "4.3.0"
  1622. },
  1623. "compile": {
  1624. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1625. "related": ".xml"
  1626. }
  1627. }
  1628. },
  1629. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1630. "type": "package",
  1631. "compile": {
  1632. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1638. "related": ".xml"
  1639. }
  1640. }
  1641. },
  1642. "System.Diagnostics.Tools/4.3.0": {
  1643. "type": "package",
  1644. "dependencies": {
  1645. "Microsoft.NETCore.Platforms": "1.1.0",
  1646. "Microsoft.NETCore.Targets": "1.1.0",
  1647. "System.Runtime": "4.3.0"
  1648. },
  1649. "compile": {
  1650. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1651. "related": ".xml"
  1652. }
  1653. }
  1654. },
  1655. "System.Diagnostics.TraceSource/4.3.0": {
  1656. "type": "package",
  1657. "dependencies": {
  1658. "Microsoft.NETCore.Platforms": "1.1.0",
  1659. "System.Collections": "4.3.0",
  1660. "System.Diagnostics.Debug": "4.3.0",
  1661. "System.Globalization": "4.3.0",
  1662. "System.Resources.ResourceManager": "4.3.0",
  1663. "System.Runtime": "4.3.0",
  1664. "System.Runtime.Extensions": "4.3.0",
  1665. "System.Threading": "4.3.0",
  1666. "runtime.native.System": "4.3.0"
  1667. },
  1668. "compile": {
  1669. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1670. "related": ".xml"
  1671. }
  1672. },
  1673. "runtimeTargets": {
  1674. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1675. "assetType": "runtime",
  1676. "rid": "unix"
  1677. },
  1678. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1679. "assetType": "runtime",
  1680. "rid": "win"
  1681. }
  1682. }
  1683. },
  1684. "System.Diagnostics.Tracing/4.3.0": {
  1685. "type": "package",
  1686. "dependencies": {
  1687. "Microsoft.NETCore.Platforms": "1.1.0",
  1688. "Microsoft.NETCore.Targets": "1.1.0",
  1689. "System.Runtime": "4.3.0"
  1690. },
  1691. "compile": {
  1692. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1693. "related": ".xml"
  1694. }
  1695. }
  1696. },
  1697. "System.Drawing.Common/5.0.3": {
  1698. "type": "package",
  1699. "dependencies": {
  1700. "Microsoft.Win32.SystemEvents": "5.0.0"
  1701. },
  1702. "compile": {
  1703. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1704. "related": ".xml"
  1705. }
  1706. },
  1707. "runtime": {
  1708. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1709. "related": ".xml"
  1710. }
  1711. },
  1712. "runtimeTargets": {
  1713. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1714. "assetType": "runtime",
  1715. "rid": "unix"
  1716. },
  1717. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1718. "assetType": "runtime",
  1719. "rid": "win"
  1720. }
  1721. }
  1722. },
  1723. "System.Dynamic.Runtime/4.3.0": {
  1724. "type": "package",
  1725. "dependencies": {
  1726. "System.Collections": "4.3.0",
  1727. "System.Diagnostics.Debug": "4.3.0",
  1728. "System.Linq": "4.3.0",
  1729. "System.Linq.Expressions": "4.3.0",
  1730. "System.ObjectModel": "4.3.0",
  1731. "System.Reflection": "4.3.0",
  1732. "System.Reflection.Emit": "4.3.0",
  1733. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1734. "System.Reflection.Primitives": "4.3.0",
  1735. "System.Reflection.TypeExtensions": "4.3.0",
  1736. "System.Resources.ResourceManager": "4.3.0",
  1737. "System.Runtime": "4.3.0",
  1738. "System.Runtime.Extensions": "4.3.0",
  1739. "System.Threading": "4.3.0"
  1740. },
  1741. "compile": {
  1742. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1743. "related": ".xml"
  1744. }
  1745. },
  1746. "runtime": {
  1747. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1748. }
  1749. },
  1750. "System.Globalization/4.3.0": {
  1751. "type": "package",
  1752. "dependencies": {
  1753. "Microsoft.NETCore.Platforms": "1.1.0",
  1754. "Microsoft.NETCore.Targets": "1.1.0",
  1755. "System.Runtime": "4.3.0"
  1756. },
  1757. "compile": {
  1758. "ref/netstandard1.3/System.Globalization.dll": {
  1759. "related": ".xml"
  1760. }
  1761. }
  1762. },
  1763. "System.Globalization.Calendars/4.3.0": {
  1764. "type": "package",
  1765. "dependencies": {
  1766. "Microsoft.NETCore.Platforms": "1.1.0",
  1767. "Microsoft.NETCore.Targets": "1.1.0",
  1768. "System.Globalization": "4.3.0",
  1769. "System.Runtime": "4.3.0"
  1770. },
  1771. "compile": {
  1772. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1773. "related": ".xml"
  1774. }
  1775. }
  1776. },
  1777. "System.Globalization.Extensions/4.3.0": {
  1778. "type": "package",
  1779. "dependencies": {
  1780. "Microsoft.NETCore.Platforms": "1.1.0",
  1781. "System.Globalization": "4.3.0",
  1782. "System.Resources.ResourceManager": "4.3.0",
  1783. "System.Runtime": "4.3.0",
  1784. "System.Runtime.Extensions": "4.3.0",
  1785. "System.Runtime.InteropServices": "4.3.0"
  1786. },
  1787. "compile": {
  1788. "ref/netstandard1.3/_._": {
  1789. "related": ".xml"
  1790. }
  1791. },
  1792. "runtimeTargets": {
  1793. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1794. "assetType": "runtime",
  1795. "rid": "unix"
  1796. },
  1797. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1798. "assetType": "runtime",
  1799. "rid": "win"
  1800. }
  1801. }
  1802. },
  1803. "System.IO/4.3.0": {
  1804. "type": "package",
  1805. "dependencies": {
  1806. "Microsoft.NETCore.Platforms": "1.1.0",
  1807. "Microsoft.NETCore.Targets": "1.1.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Text.Encoding": "4.3.0",
  1810. "System.Threading.Tasks": "4.3.0"
  1811. },
  1812. "compile": {
  1813. "ref/netstandard1.5/System.IO.dll": {
  1814. "related": ".xml"
  1815. }
  1816. }
  1817. },
  1818. "System.IO.Compression/4.3.0": {
  1819. "type": "package",
  1820. "dependencies": {
  1821. "Microsoft.NETCore.Platforms": "1.1.0",
  1822. "System.Buffers": "4.3.0",
  1823. "System.Collections": "4.3.0",
  1824. "System.Diagnostics.Debug": "4.3.0",
  1825. "System.IO": "4.3.0",
  1826. "System.Resources.ResourceManager": "4.3.0",
  1827. "System.Runtime": "4.3.0",
  1828. "System.Runtime.Extensions": "4.3.0",
  1829. "System.Runtime.Handles": "4.3.0",
  1830. "System.Runtime.InteropServices": "4.3.0",
  1831. "System.Text.Encoding": "4.3.0",
  1832. "System.Threading": "4.3.0",
  1833. "System.Threading.Tasks": "4.3.0",
  1834. "runtime.native.System": "4.3.0",
  1835. "runtime.native.System.IO.Compression": "4.3.0"
  1836. },
  1837. "compile": {
  1838. "ref/netstandard1.3/System.IO.Compression.dll": {
  1839. "related": ".xml"
  1840. }
  1841. },
  1842. "runtimeTargets": {
  1843. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1844. "assetType": "runtime",
  1845. "rid": "unix"
  1846. },
  1847. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1848. "assetType": "runtime",
  1849. "rid": "win"
  1850. }
  1851. }
  1852. },
  1853. "System.IO.Compression.ZipFile/4.3.0": {
  1854. "type": "package",
  1855. "dependencies": {
  1856. "System.Buffers": "4.3.0",
  1857. "System.IO": "4.3.0",
  1858. "System.IO.Compression": "4.3.0",
  1859. "System.IO.FileSystem": "4.3.0",
  1860. "System.IO.FileSystem.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.Text.Encoding": "4.3.0"
  1865. },
  1866. "compile": {
  1867. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1868. "related": ".xml"
  1869. }
  1870. },
  1871. "runtime": {
  1872. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1873. }
  1874. },
  1875. "System.IO.FileSystem/4.3.0": {
  1876. "type": "package",
  1877. "dependencies": {
  1878. "Microsoft.NETCore.Platforms": "1.1.0",
  1879. "Microsoft.NETCore.Targets": "1.1.0",
  1880. "System.IO": "4.3.0",
  1881. "System.IO.FileSystem.Primitives": "4.3.0",
  1882. "System.Runtime": "4.3.0",
  1883. "System.Runtime.Handles": "4.3.0",
  1884. "System.Text.Encoding": "4.3.0",
  1885. "System.Threading.Tasks": "4.3.0"
  1886. },
  1887. "compile": {
  1888. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1889. "related": ".xml"
  1890. }
  1891. }
  1892. },
  1893. "System.IO.FileSystem.Primitives/4.3.0": {
  1894. "type": "package",
  1895. "dependencies": {
  1896. "System.Runtime": "4.3.0"
  1897. },
  1898. "compile": {
  1899. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1900. "related": ".xml"
  1901. }
  1902. },
  1903. "runtime": {
  1904. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1905. }
  1906. },
  1907. "System.IO.Pipelines/5.0.0": {
  1908. "type": "package",
  1909. "compile": {
  1910. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1911. "related": ".xml"
  1912. }
  1913. },
  1914. "runtime": {
  1915. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1916. "related": ".xml"
  1917. }
  1918. }
  1919. },
  1920. "System.Linq/4.3.0": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "System.Collections": "4.3.0",
  1924. "System.Diagnostics.Debug": "4.3.0",
  1925. "System.Resources.ResourceManager": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Runtime.Extensions": "4.3.0"
  1928. },
  1929. "compile": {
  1930. "ref/netstandard1.6/System.Linq.dll": {
  1931. "related": ".xml"
  1932. }
  1933. },
  1934. "runtime": {
  1935. "lib/netstandard1.6/System.Linq.dll": {}
  1936. }
  1937. },
  1938. "System.Linq.Expressions/4.3.0": {
  1939. "type": "package",
  1940. "dependencies": {
  1941. "System.Collections": "4.3.0",
  1942. "System.Diagnostics.Debug": "4.3.0",
  1943. "System.Globalization": "4.3.0",
  1944. "System.IO": "4.3.0",
  1945. "System.Linq": "4.3.0",
  1946. "System.ObjectModel": "4.3.0",
  1947. "System.Reflection": "4.3.0",
  1948. "System.Reflection.Emit": "4.3.0",
  1949. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1950. "System.Reflection.Emit.Lightweight": "4.3.0",
  1951. "System.Reflection.Extensions": "4.3.0",
  1952. "System.Reflection.Primitives": "4.3.0",
  1953. "System.Reflection.TypeExtensions": "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.Threading": "4.3.0"
  1958. },
  1959. "compile": {
  1960. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1961. "related": ".xml"
  1962. }
  1963. },
  1964. "runtime": {
  1965. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1966. }
  1967. },
  1968. "System.Memory/4.5.5": {
  1969. "type": "package",
  1970. "compile": {
  1971. "ref/netcoreapp2.1/_._": {}
  1972. },
  1973. "runtime": {
  1974. "lib/netcoreapp2.1/_._": {}
  1975. }
  1976. },
  1977. "System.Net.Http/4.3.0": {
  1978. "type": "package",
  1979. "dependencies": {
  1980. "Microsoft.NETCore.Platforms": "1.1.0",
  1981. "System.Collections": "4.3.0",
  1982. "System.Diagnostics.Debug": "4.3.0",
  1983. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1984. "System.Diagnostics.Tracing": "4.3.0",
  1985. "System.Globalization": "4.3.0",
  1986. "System.Globalization.Extensions": "4.3.0",
  1987. "System.IO": "4.3.0",
  1988. "System.IO.FileSystem": "4.3.0",
  1989. "System.Net.Primitives": "4.3.0",
  1990. "System.Resources.ResourceManager": "4.3.0",
  1991. "System.Runtime": "4.3.0",
  1992. "System.Runtime.Extensions": "4.3.0",
  1993. "System.Runtime.Handles": "4.3.0",
  1994. "System.Runtime.InteropServices": "4.3.0",
  1995. "System.Security.Cryptography.Algorithms": "4.3.0",
  1996. "System.Security.Cryptography.Encoding": "4.3.0",
  1997. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1998. "System.Security.Cryptography.Primitives": "4.3.0",
  1999. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2000. "System.Text.Encoding": "4.3.0",
  2001. "System.Threading": "4.3.0",
  2002. "System.Threading.Tasks": "4.3.0",
  2003. "runtime.native.System": "4.3.0",
  2004. "runtime.native.System.Net.Http": "4.3.0",
  2005. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2006. },
  2007. "compile": {
  2008. "ref/netstandard1.3/System.Net.Http.dll": {
  2009. "related": ".xml"
  2010. }
  2011. },
  2012. "runtimeTargets": {
  2013. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2014. "assetType": "runtime",
  2015. "rid": "unix"
  2016. },
  2017. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2018. "assetType": "runtime",
  2019. "rid": "win"
  2020. }
  2021. }
  2022. },
  2023. "System.Net.NameResolution/4.3.0": {
  2024. "type": "package",
  2025. "dependencies": {
  2026. "Microsoft.NETCore.Platforms": "1.1.0",
  2027. "System.Collections": "4.3.0",
  2028. "System.Diagnostics.Tracing": "4.3.0",
  2029. "System.Globalization": "4.3.0",
  2030. "System.Net.Primitives": "4.3.0",
  2031. "System.Resources.ResourceManager": "4.3.0",
  2032. "System.Runtime": "4.3.0",
  2033. "System.Runtime.Extensions": "4.3.0",
  2034. "System.Runtime.Handles": "4.3.0",
  2035. "System.Runtime.InteropServices": "4.3.0",
  2036. "System.Security.Principal.Windows": "4.3.0",
  2037. "System.Threading": "4.3.0",
  2038. "System.Threading.Tasks": "4.3.0",
  2039. "runtime.native.System": "4.3.0"
  2040. },
  2041. "compile": {
  2042. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2043. "related": ".xml"
  2044. }
  2045. },
  2046. "runtimeTargets": {
  2047. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2048. "assetType": "runtime",
  2049. "rid": "unix"
  2050. },
  2051. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2052. "assetType": "runtime",
  2053. "rid": "win"
  2054. }
  2055. }
  2056. },
  2057. "System.Net.Primitives/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "Microsoft.NETCore.Platforms": "1.1.0",
  2061. "Microsoft.NETCore.Targets": "1.1.0",
  2062. "System.Runtime": "4.3.0",
  2063. "System.Runtime.Handles": "4.3.0"
  2064. },
  2065. "compile": {
  2066. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2067. "related": ".xml"
  2068. }
  2069. }
  2070. },
  2071. "System.Net.Security/4.3.0": {
  2072. "type": "package",
  2073. "dependencies": {
  2074. "Microsoft.NETCore.Platforms": "1.1.0",
  2075. "Microsoft.Win32.Primitives": "4.3.0",
  2076. "System.Collections": "4.3.0",
  2077. "System.Collections.Concurrent": "4.3.0",
  2078. "System.Diagnostics.Tracing": "4.3.0",
  2079. "System.Globalization": "4.3.0",
  2080. "System.Globalization.Extensions": "4.3.0",
  2081. "System.IO": "4.3.0",
  2082. "System.Net.Primitives": "4.3.0",
  2083. "System.Resources.ResourceManager": "4.3.0",
  2084. "System.Runtime": "4.3.0",
  2085. "System.Runtime.Extensions": "4.3.0",
  2086. "System.Runtime.Handles": "4.3.0",
  2087. "System.Runtime.InteropServices": "4.3.0",
  2088. "System.Security.Claims": "4.3.0",
  2089. "System.Security.Cryptography.Algorithms": "4.3.0",
  2090. "System.Security.Cryptography.Encoding": "4.3.0",
  2091. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2092. "System.Security.Cryptography.Primitives": "4.3.0",
  2093. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2094. "System.Security.Principal": "4.3.0",
  2095. "System.Text.Encoding": "4.3.0",
  2096. "System.Threading": "4.3.0",
  2097. "System.Threading.Tasks": "4.3.0",
  2098. "System.Threading.ThreadPool": "4.3.0",
  2099. "runtime.native.System": "4.3.0",
  2100. "runtime.native.System.Net.Security": "4.3.0",
  2101. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2102. },
  2103. "compile": {
  2104. "ref/netstandard1.3/System.Net.Security.dll": {
  2105. "related": ".xml"
  2106. }
  2107. },
  2108. "runtimeTargets": {
  2109. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2110. "assetType": "runtime",
  2111. "rid": "unix"
  2112. },
  2113. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2114. "assetType": "runtime",
  2115. "rid": "win"
  2116. }
  2117. }
  2118. },
  2119. "System.Net.Sockets/4.3.0": {
  2120. "type": "package",
  2121. "dependencies": {
  2122. "Microsoft.NETCore.Platforms": "1.1.0",
  2123. "Microsoft.NETCore.Targets": "1.1.0",
  2124. "System.IO": "4.3.0",
  2125. "System.Net.Primitives": "4.3.0",
  2126. "System.Runtime": "4.3.0",
  2127. "System.Threading.Tasks": "4.3.0"
  2128. },
  2129. "compile": {
  2130. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2131. "related": ".xml"
  2132. }
  2133. }
  2134. },
  2135. "System.ObjectModel/4.3.0": {
  2136. "type": "package",
  2137. "dependencies": {
  2138. "System.Collections": "4.3.0",
  2139. "System.Diagnostics.Debug": "4.3.0",
  2140. "System.Resources.ResourceManager": "4.3.0",
  2141. "System.Runtime": "4.3.0",
  2142. "System.Threading": "4.3.0"
  2143. },
  2144. "compile": {
  2145. "ref/netstandard1.3/System.ObjectModel.dll": {
  2146. "related": ".xml"
  2147. }
  2148. },
  2149. "runtime": {
  2150. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2151. }
  2152. },
  2153. "System.Reflection/4.3.0": {
  2154. "type": "package",
  2155. "dependencies": {
  2156. "Microsoft.NETCore.Platforms": "1.1.0",
  2157. "Microsoft.NETCore.Targets": "1.1.0",
  2158. "System.IO": "4.3.0",
  2159. "System.Reflection.Primitives": "4.3.0",
  2160. "System.Runtime": "4.3.0"
  2161. },
  2162. "compile": {
  2163. "ref/netstandard1.5/System.Reflection.dll": {
  2164. "related": ".xml"
  2165. }
  2166. }
  2167. },
  2168. "System.Reflection.Emit/4.7.0": {
  2169. "type": "package",
  2170. "compile": {
  2171. "ref/netcoreapp2.0/_._": {}
  2172. },
  2173. "runtime": {
  2174. "lib/netcoreapp2.0/_._": {}
  2175. }
  2176. },
  2177. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2178. "type": "package",
  2179. "dependencies": {
  2180. "System.Reflection": "4.3.0",
  2181. "System.Reflection.Primitives": "4.3.0",
  2182. "System.Runtime": "4.3.0"
  2183. },
  2184. "compile": {
  2185. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2186. "related": ".xml"
  2187. }
  2188. },
  2189. "runtime": {
  2190. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2191. }
  2192. },
  2193. "System.Reflection.Emit.Lightweight/4.3.0": {
  2194. "type": "package",
  2195. "dependencies": {
  2196. "System.Reflection": "4.3.0",
  2197. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2198. "System.Reflection.Primitives": "4.3.0",
  2199. "System.Runtime": "4.3.0"
  2200. },
  2201. "compile": {
  2202. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2203. "related": ".xml"
  2204. }
  2205. },
  2206. "runtime": {
  2207. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2208. }
  2209. },
  2210. "System.Reflection.Extensions/4.3.0": {
  2211. "type": "package",
  2212. "dependencies": {
  2213. "Microsoft.NETCore.Platforms": "1.1.0",
  2214. "Microsoft.NETCore.Targets": "1.1.0",
  2215. "System.Reflection": "4.3.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2220. "related": ".xml"
  2221. }
  2222. }
  2223. },
  2224. "System.Reflection.Primitives/4.3.0": {
  2225. "type": "package",
  2226. "dependencies": {
  2227. "Microsoft.NETCore.Platforms": "1.1.0",
  2228. "Microsoft.NETCore.Targets": "1.1.0",
  2229. "System.Runtime": "4.3.0"
  2230. },
  2231. "compile": {
  2232. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2233. "related": ".xml"
  2234. }
  2235. }
  2236. },
  2237. "System.Reflection.TypeExtensions/4.3.0": {
  2238. "type": "package",
  2239. "dependencies": {
  2240. "System.Reflection": "4.3.0",
  2241. "System.Runtime": "4.3.0"
  2242. },
  2243. "compile": {
  2244. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2245. "related": ".xml"
  2246. }
  2247. },
  2248. "runtime": {
  2249. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2250. }
  2251. },
  2252. "System.Resources.ResourceManager/4.3.0": {
  2253. "type": "package",
  2254. "dependencies": {
  2255. "Microsoft.NETCore.Platforms": "1.1.0",
  2256. "Microsoft.NETCore.Targets": "1.1.0",
  2257. "System.Globalization": "4.3.0",
  2258. "System.Reflection": "4.3.0",
  2259. "System.Runtime": "4.3.0"
  2260. },
  2261. "compile": {
  2262. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2263. "related": ".xml"
  2264. }
  2265. }
  2266. },
  2267. "System.Runtime/4.3.0": {
  2268. "type": "package",
  2269. "dependencies": {
  2270. "Microsoft.NETCore.Platforms": "1.1.0",
  2271. "Microsoft.NETCore.Targets": "1.1.0"
  2272. },
  2273. "compile": {
  2274. "ref/netstandard1.5/System.Runtime.dll": {
  2275. "related": ".xml"
  2276. }
  2277. }
  2278. },
  2279. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2280. "type": "package",
  2281. "compile": {
  2282. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2283. "related": ".xml"
  2284. }
  2285. },
  2286. "runtime": {
  2287. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2288. "related": ".xml"
  2289. }
  2290. }
  2291. },
  2292. "System.Runtime.Extensions/4.3.0": {
  2293. "type": "package",
  2294. "dependencies": {
  2295. "Microsoft.NETCore.Platforms": "1.1.0",
  2296. "Microsoft.NETCore.Targets": "1.1.0",
  2297. "System.Runtime": "4.3.0"
  2298. },
  2299. "compile": {
  2300. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2301. "related": ".xml"
  2302. }
  2303. }
  2304. },
  2305. "System.Runtime.Handles/4.3.0": {
  2306. "type": "package",
  2307. "dependencies": {
  2308. "Microsoft.NETCore.Platforms": "1.1.0",
  2309. "Microsoft.NETCore.Targets": "1.1.0",
  2310. "System.Runtime": "4.3.0"
  2311. },
  2312. "compile": {
  2313. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2314. "related": ".xml"
  2315. }
  2316. }
  2317. },
  2318. "System.Runtime.InteropServices/4.3.0": {
  2319. "type": "package",
  2320. "dependencies": {
  2321. "Microsoft.NETCore.Platforms": "1.1.0",
  2322. "Microsoft.NETCore.Targets": "1.1.0",
  2323. "System.Reflection": "4.3.0",
  2324. "System.Reflection.Primitives": "4.3.0",
  2325. "System.Runtime": "4.3.0",
  2326. "System.Runtime.Handles": "4.3.0"
  2327. },
  2328. "compile": {
  2329. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2330. }
  2331. },
  2332. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2333. "type": "package",
  2334. "dependencies": {
  2335. "System.Reflection": "4.3.0",
  2336. "System.Reflection.Extensions": "4.3.0",
  2337. "System.Resources.ResourceManager": "4.3.0",
  2338. "System.Runtime": "4.3.0",
  2339. "System.Runtime.InteropServices": "4.3.0",
  2340. "System.Threading": "4.3.0",
  2341. "runtime.native.System": "4.3.0"
  2342. },
  2343. "compile": {
  2344. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2345. },
  2346. "runtime": {
  2347. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2348. },
  2349. "runtimeTargets": {
  2350. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "unix"
  2353. },
  2354. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2355. "assetType": "runtime",
  2356. "rid": "win"
  2357. }
  2358. }
  2359. },
  2360. "System.Runtime.Numerics/4.3.0": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "System.Globalization": "4.3.0",
  2364. "System.Resources.ResourceManager": "4.3.0",
  2365. "System.Runtime": "4.3.0",
  2366. "System.Runtime.Extensions": "4.3.0"
  2367. },
  2368. "compile": {
  2369. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2370. "related": ".xml"
  2371. }
  2372. },
  2373. "runtime": {
  2374. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2375. }
  2376. },
  2377. "System.Security.AccessControl/4.7.0": {
  2378. "type": "package",
  2379. "dependencies": {
  2380. "Microsoft.NETCore.Platforms": "3.1.0",
  2381. "System.Security.Principal.Windows": "4.7.0"
  2382. },
  2383. "compile": {
  2384. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2385. "related": ".xml"
  2386. }
  2387. },
  2388. "runtime": {
  2389. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2390. "related": ".xml"
  2391. }
  2392. },
  2393. "runtimeTargets": {
  2394. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2395. "assetType": "runtime",
  2396. "rid": "win"
  2397. }
  2398. }
  2399. },
  2400. "System.Security.Claims/4.3.0": {
  2401. "type": "package",
  2402. "dependencies": {
  2403. "System.Collections": "4.3.0",
  2404. "System.Globalization": "4.3.0",
  2405. "System.IO": "4.3.0",
  2406. "System.Resources.ResourceManager": "4.3.0",
  2407. "System.Runtime": "4.3.0",
  2408. "System.Runtime.Extensions": "4.3.0",
  2409. "System.Security.Principal": "4.3.0"
  2410. },
  2411. "compile": {
  2412. "ref/netstandard1.3/_._": {
  2413. "related": ".xml"
  2414. }
  2415. },
  2416. "runtime": {
  2417. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2418. }
  2419. },
  2420. "System.Security.Cryptography.Algorithms/4.3.0": {
  2421. "type": "package",
  2422. "dependencies": {
  2423. "Microsoft.NETCore.Platforms": "1.1.0",
  2424. "System.Collections": "4.3.0",
  2425. "System.IO": "4.3.0",
  2426. "System.Resources.ResourceManager": "4.3.0",
  2427. "System.Runtime": "4.3.0",
  2428. "System.Runtime.Extensions": "4.3.0",
  2429. "System.Runtime.Handles": "4.3.0",
  2430. "System.Runtime.InteropServices": "4.3.0",
  2431. "System.Runtime.Numerics": "4.3.0",
  2432. "System.Security.Cryptography.Encoding": "4.3.0",
  2433. "System.Security.Cryptography.Primitives": "4.3.0",
  2434. "System.Text.Encoding": "4.3.0",
  2435. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2436. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2437. },
  2438. "compile": {
  2439. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2440. },
  2441. "runtimeTargets": {
  2442. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2443. "assetType": "runtime",
  2444. "rid": "osx"
  2445. },
  2446. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2447. "assetType": "runtime",
  2448. "rid": "unix"
  2449. },
  2450. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2451. "assetType": "runtime",
  2452. "rid": "win"
  2453. }
  2454. }
  2455. },
  2456. "System.Security.Cryptography.Cng/4.3.0": {
  2457. "type": "package",
  2458. "dependencies": {
  2459. "Microsoft.NETCore.Platforms": "1.1.0",
  2460. "System.IO": "4.3.0",
  2461. "System.Resources.ResourceManager": "4.3.0",
  2462. "System.Runtime": "4.3.0",
  2463. "System.Runtime.Extensions": "4.3.0",
  2464. "System.Runtime.Handles": "4.3.0",
  2465. "System.Runtime.InteropServices": "4.3.0",
  2466. "System.Security.Cryptography.Algorithms": "4.3.0",
  2467. "System.Security.Cryptography.Encoding": "4.3.0",
  2468. "System.Security.Cryptography.Primitives": "4.3.0",
  2469. "System.Text.Encoding": "4.3.0"
  2470. },
  2471. "compile": {
  2472. "ref/netstandard1.6/_._": {}
  2473. },
  2474. "runtimeTargets": {
  2475. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2476. "assetType": "runtime",
  2477. "rid": "unix"
  2478. },
  2479. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2480. "assetType": "runtime",
  2481. "rid": "win"
  2482. }
  2483. }
  2484. },
  2485. "System.Security.Cryptography.Csp/4.3.0": {
  2486. "type": "package",
  2487. "dependencies": {
  2488. "Microsoft.NETCore.Platforms": "1.1.0",
  2489. "System.IO": "4.3.0",
  2490. "System.Reflection": "4.3.0",
  2491. "System.Resources.ResourceManager": "4.3.0",
  2492. "System.Runtime": "4.3.0",
  2493. "System.Runtime.Extensions": "4.3.0",
  2494. "System.Runtime.Handles": "4.3.0",
  2495. "System.Runtime.InteropServices": "4.3.0",
  2496. "System.Security.Cryptography.Algorithms": "4.3.0",
  2497. "System.Security.Cryptography.Encoding": "4.3.0",
  2498. "System.Security.Cryptography.Primitives": "4.3.0",
  2499. "System.Text.Encoding": "4.3.0",
  2500. "System.Threading": "4.3.0"
  2501. },
  2502. "compile": {
  2503. "ref/netstandard1.3/_._": {}
  2504. },
  2505. "runtimeTargets": {
  2506. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2507. "assetType": "runtime",
  2508. "rid": "unix"
  2509. },
  2510. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2511. "assetType": "runtime",
  2512. "rid": "win"
  2513. }
  2514. }
  2515. },
  2516. "System.Security.Cryptography.Encoding/4.3.0": {
  2517. "type": "package",
  2518. "dependencies": {
  2519. "Microsoft.NETCore.Platforms": "1.1.0",
  2520. "System.Collections": "4.3.0",
  2521. "System.Collections.Concurrent": "4.3.0",
  2522. "System.Linq": "4.3.0",
  2523. "System.Resources.ResourceManager": "4.3.0",
  2524. "System.Runtime": "4.3.0",
  2525. "System.Runtime.Extensions": "4.3.0",
  2526. "System.Runtime.Handles": "4.3.0",
  2527. "System.Runtime.InteropServices": "4.3.0",
  2528. "System.Security.Cryptography.Primitives": "4.3.0",
  2529. "System.Text.Encoding": "4.3.0",
  2530. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2531. },
  2532. "compile": {
  2533. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2534. "related": ".xml"
  2535. }
  2536. },
  2537. "runtimeTargets": {
  2538. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2539. "assetType": "runtime",
  2540. "rid": "unix"
  2541. },
  2542. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2543. "assetType": "runtime",
  2544. "rid": "win"
  2545. }
  2546. }
  2547. },
  2548. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2549. "type": "package",
  2550. "dependencies": {
  2551. "System.Collections": "4.3.0",
  2552. "System.IO": "4.3.0",
  2553. "System.Resources.ResourceManager": "4.3.0",
  2554. "System.Runtime": "4.3.0",
  2555. "System.Runtime.Extensions": "4.3.0",
  2556. "System.Runtime.Handles": "4.3.0",
  2557. "System.Runtime.InteropServices": "4.3.0",
  2558. "System.Runtime.Numerics": "4.3.0",
  2559. "System.Security.Cryptography.Algorithms": "4.3.0",
  2560. "System.Security.Cryptography.Encoding": "4.3.0",
  2561. "System.Security.Cryptography.Primitives": "4.3.0",
  2562. "System.Text.Encoding": "4.3.0",
  2563. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2564. },
  2565. "compile": {
  2566. "ref/netstandard1.6/_._": {}
  2567. },
  2568. "runtime": {
  2569. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2570. },
  2571. "runtimeTargets": {
  2572. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2573. "assetType": "runtime",
  2574. "rid": "unix"
  2575. }
  2576. }
  2577. },
  2578. "System.Security.Cryptography.Primitives/4.3.0": {
  2579. "type": "package",
  2580. "dependencies": {
  2581. "System.Diagnostics.Debug": "4.3.0",
  2582. "System.Globalization": "4.3.0",
  2583. "System.IO": "4.3.0",
  2584. "System.Resources.ResourceManager": "4.3.0",
  2585. "System.Runtime": "4.3.0",
  2586. "System.Threading": "4.3.0",
  2587. "System.Threading.Tasks": "4.3.0"
  2588. },
  2589. "compile": {
  2590. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2591. },
  2592. "runtime": {
  2593. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2594. }
  2595. },
  2596. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2597. "type": "package",
  2598. "compile": {
  2599. "ref/netstandard2.0/_._": {
  2600. "related": ".xml"
  2601. }
  2602. },
  2603. "runtime": {
  2604. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2605. "related": ".xml"
  2606. }
  2607. },
  2608. "runtimeTargets": {
  2609. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2610. "assetType": "runtime",
  2611. "rid": "win"
  2612. }
  2613. }
  2614. },
  2615. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2616. "type": "package",
  2617. "dependencies": {
  2618. "Microsoft.NETCore.Platforms": "1.1.0",
  2619. "System.Collections": "4.3.0",
  2620. "System.Diagnostics.Debug": "4.3.0",
  2621. "System.Globalization": "4.3.0",
  2622. "System.Globalization.Calendars": "4.3.0",
  2623. "System.IO": "4.3.0",
  2624. "System.IO.FileSystem": "4.3.0",
  2625. "System.IO.FileSystem.Primitives": "4.3.0",
  2626. "System.Resources.ResourceManager": "4.3.0",
  2627. "System.Runtime": "4.3.0",
  2628. "System.Runtime.Extensions": "4.3.0",
  2629. "System.Runtime.Handles": "4.3.0",
  2630. "System.Runtime.InteropServices": "4.3.0",
  2631. "System.Runtime.Numerics": "4.3.0",
  2632. "System.Security.Cryptography.Algorithms": "4.3.0",
  2633. "System.Security.Cryptography.Cng": "4.3.0",
  2634. "System.Security.Cryptography.Csp": "4.3.0",
  2635. "System.Security.Cryptography.Encoding": "4.3.0",
  2636. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2637. "System.Security.Cryptography.Primitives": "4.3.0",
  2638. "System.Text.Encoding": "4.3.0",
  2639. "System.Threading": "4.3.0",
  2640. "runtime.native.System": "4.3.0",
  2641. "runtime.native.System.Net.Http": "4.3.0",
  2642. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2643. },
  2644. "compile": {
  2645. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2646. "related": ".xml"
  2647. }
  2648. },
  2649. "runtimeTargets": {
  2650. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2651. "assetType": "runtime",
  2652. "rid": "unix"
  2653. },
  2654. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2655. "assetType": "runtime",
  2656. "rid": "win"
  2657. }
  2658. }
  2659. },
  2660. "System.Security.Permissions/4.7.0": {
  2661. "type": "package",
  2662. "dependencies": {
  2663. "System.Security.AccessControl": "4.7.0",
  2664. "System.Windows.Extensions": "4.7.0"
  2665. },
  2666. "compile": {
  2667. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2668. "related": ".xml"
  2669. }
  2670. },
  2671. "runtime": {
  2672. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2673. "related": ".xml"
  2674. }
  2675. }
  2676. },
  2677. "System.Security.Principal/4.3.0": {
  2678. "type": "package",
  2679. "dependencies": {
  2680. "System.Runtime": "4.3.0"
  2681. },
  2682. "compile": {
  2683. "ref/netstandard1.0/System.Security.Principal.dll": {
  2684. "related": ".xml"
  2685. }
  2686. },
  2687. "runtime": {
  2688. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2689. }
  2690. },
  2691. "System.Security.Principal.Windows/4.7.0": {
  2692. "type": "package",
  2693. "compile": {
  2694. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2695. "related": ".xml"
  2696. }
  2697. },
  2698. "runtime": {
  2699. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2700. "related": ".xml"
  2701. }
  2702. },
  2703. "runtimeTargets": {
  2704. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2705. "assetType": "runtime",
  2706. "rid": "unix"
  2707. },
  2708. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2709. "assetType": "runtime",
  2710. "rid": "win"
  2711. }
  2712. }
  2713. },
  2714. "System.Text.Encoding/4.3.0": {
  2715. "type": "package",
  2716. "dependencies": {
  2717. "Microsoft.NETCore.Platforms": "1.1.0",
  2718. "Microsoft.NETCore.Targets": "1.1.0",
  2719. "System.Runtime": "4.3.0"
  2720. },
  2721. "compile": {
  2722. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2723. "related": ".xml"
  2724. }
  2725. }
  2726. },
  2727. "System.Text.Encoding.CodePages/5.0.0": {
  2728. "type": "package",
  2729. "dependencies": {
  2730. "Microsoft.NETCore.Platforms": "5.0.0"
  2731. },
  2732. "compile": {
  2733. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2734. "related": ".xml"
  2735. }
  2736. },
  2737. "runtime": {
  2738. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2739. "related": ".xml"
  2740. }
  2741. },
  2742. "runtimeTargets": {
  2743. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2744. "assetType": "runtime",
  2745. "rid": "win"
  2746. }
  2747. }
  2748. },
  2749. "System.Text.Encoding.Extensions/4.3.0": {
  2750. "type": "package",
  2751. "dependencies": {
  2752. "Microsoft.NETCore.Platforms": "1.1.0",
  2753. "Microsoft.NETCore.Targets": "1.1.0",
  2754. "System.Runtime": "4.3.0",
  2755. "System.Text.Encoding": "4.3.0"
  2756. },
  2757. "compile": {
  2758. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2759. "related": ".xml"
  2760. }
  2761. }
  2762. },
  2763. "System.Text.Encodings.Web/4.5.0": {
  2764. "type": "package",
  2765. "compile": {
  2766. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2767. "related": ".xml"
  2768. }
  2769. },
  2770. "runtime": {
  2771. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2772. "related": ".xml"
  2773. }
  2774. }
  2775. },
  2776. "System.Text.RegularExpressions/4.3.0": {
  2777. "type": "package",
  2778. "dependencies": {
  2779. "System.Runtime": "4.3.0"
  2780. },
  2781. "compile": {
  2782. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2783. },
  2784. "runtime": {
  2785. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2786. }
  2787. },
  2788. "System.Threading/4.3.0": {
  2789. "type": "package",
  2790. "dependencies": {
  2791. "System.Runtime": "4.3.0",
  2792. "System.Threading.Tasks": "4.3.0"
  2793. },
  2794. "compile": {
  2795. "ref/netstandard1.3/System.Threading.dll": {
  2796. "related": ".xml"
  2797. }
  2798. },
  2799. "runtime": {
  2800. "lib/netstandard1.3/System.Threading.dll": {}
  2801. }
  2802. },
  2803. "System.Threading.Channels/7.0.0": {
  2804. "type": "package",
  2805. "compile": {
  2806. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2807. "related": ".xml"
  2808. }
  2809. },
  2810. "runtime": {
  2811. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2812. "related": ".xml"
  2813. }
  2814. },
  2815. "build": {
  2816. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2817. }
  2818. },
  2819. "System.Threading.Tasks/4.3.0": {
  2820. "type": "package",
  2821. "dependencies": {
  2822. "Microsoft.NETCore.Platforms": "1.1.0",
  2823. "Microsoft.NETCore.Targets": "1.1.0",
  2824. "System.Runtime": "4.3.0"
  2825. },
  2826. "compile": {
  2827. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2828. "related": ".xml"
  2829. }
  2830. }
  2831. },
  2832. "System.Threading.Tasks.Extensions/4.3.0": {
  2833. "type": "package",
  2834. "dependencies": {
  2835. "System.Collections": "4.3.0",
  2836. "System.Runtime": "4.3.0",
  2837. "System.Threading.Tasks": "4.3.0"
  2838. },
  2839. "compile": {
  2840. "lib/netstandard1.0/_._": {
  2841. "related": ".xml"
  2842. }
  2843. },
  2844. "runtime": {
  2845. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2846. "related": ".xml"
  2847. }
  2848. }
  2849. },
  2850. "System.Threading.Thread/4.3.0": {
  2851. "type": "package",
  2852. "dependencies": {
  2853. "System.Runtime": "4.3.0"
  2854. },
  2855. "compile": {
  2856. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2857. "related": ".xml"
  2858. }
  2859. },
  2860. "runtime": {
  2861. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2862. }
  2863. },
  2864. "System.Threading.ThreadPool/4.3.0": {
  2865. "type": "package",
  2866. "dependencies": {
  2867. "System.Runtime": "4.3.0",
  2868. "System.Runtime.Handles": "4.3.0"
  2869. },
  2870. "compile": {
  2871. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2872. "related": ".xml"
  2873. }
  2874. },
  2875. "runtime": {
  2876. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2877. }
  2878. },
  2879. "System.Threading.Timer/4.3.0": {
  2880. "type": "package",
  2881. "dependencies": {
  2882. "Microsoft.NETCore.Platforms": "1.1.0",
  2883. "Microsoft.NETCore.Targets": "1.1.0",
  2884. "System.Runtime": "4.3.0"
  2885. },
  2886. "compile": {
  2887. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2888. "related": ".xml"
  2889. }
  2890. }
  2891. },
  2892. "System.Windows.Extensions/4.7.0": {
  2893. "type": "package",
  2894. "dependencies": {
  2895. "System.Drawing.Common": "4.7.0"
  2896. },
  2897. "compile": {
  2898. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2899. "related": ".xml"
  2900. }
  2901. },
  2902. "runtime": {
  2903. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2904. "related": ".xml"
  2905. }
  2906. },
  2907. "runtimeTargets": {
  2908. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2909. "assetType": "runtime",
  2910. "rid": "win"
  2911. }
  2912. }
  2913. },
  2914. "System.Xml.ReaderWriter/4.3.0": {
  2915. "type": "package",
  2916. "dependencies": {
  2917. "System.Collections": "4.3.0",
  2918. "System.Diagnostics.Debug": "4.3.0",
  2919. "System.Globalization": "4.3.0",
  2920. "System.IO": "4.3.0",
  2921. "System.IO.FileSystem": "4.3.0",
  2922. "System.IO.FileSystem.Primitives": "4.3.0",
  2923. "System.Resources.ResourceManager": "4.3.0",
  2924. "System.Runtime": "4.3.0",
  2925. "System.Runtime.Extensions": "4.3.0",
  2926. "System.Runtime.InteropServices": "4.3.0",
  2927. "System.Text.Encoding": "4.3.0",
  2928. "System.Text.Encoding.Extensions": "4.3.0",
  2929. "System.Text.RegularExpressions": "4.3.0",
  2930. "System.Threading.Tasks": "4.3.0",
  2931. "System.Threading.Tasks.Extensions": "4.3.0"
  2932. },
  2933. "compile": {
  2934. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2935. "related": ".xml"
  2936. }
  2937. },
  2938. "runtime": {
  2939. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2940. }
  2941. },
  2942. "System.Xml.XDocument/4.3.0": {
  2943. "type": "package",
  2944. "dependencies": {
  2945. "System.Collections": "4.3.0",
  2946. "System.Diagnostics.Debug": "4.3.0",
  2947. "System.Diagnostics.Tools": "4.3.0",
  2948. "System.Globalization": "4.3.0",
  2949. "System.IO": "4.3.0",
  2950. "System.Reflection": "4.3.0",
  2951. "System.Resources.ResourceManager": "4.3.0",
  2952. "System.Runtime": "4.3.0",
  2953. "System.Runtime.Extensions": "4.3.0",
  2954. "System.Text.Encoding": "4.3.0",
  2955. "System.Threading": "4.3.0",
  2956. "System.Xml.ReaderWriter": "4.3.0"
  2957. },
  2958. "compile": {
  2959. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2960. "related": ".xml"
  2961. }
  2962. },
  2963. "runtime": {
  2964. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2965. }
  2966. },
  2967. "System.Xml.XmlDocument/4.3.0": {
  2968. "type": "package",
  2969. "dependencies": {
  2970. "System.Collections": "4.3.0",
  2971. "System.Diagnostics.Debug": "4.3.0",
  2972. "System.Globalization": "4.3.0",
  2973. "System.IO": "4.3.0",
  2974. "System.Resources.ResourceManager": "4.3.0",
  2975. "System.Runtime": "4.3.0",
  2976. "System.Runtime.Extensions": "4.3.0",
  2977. "System.Text.Encoding": "4.3.0",
  2978. "System.Threading": "4.3.0",
  2979. "System.Xml.ReaderWriter": "4.3.0"
  2980. },
  2981. "compile": {
  2982. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2983. "related": ".xml"
  2984. }
  2985. },
  2986. "runtime": {
  2987. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2988. }
  2989. },
  2990. "ZXing.Net/0.16.9": {
  2991. "type": "package",
  2992. "compile": {
  2993. "lib/net5.0/zxing.dll": {
  2994. "related": ".XML"
  2995. }
  2996. },
  2997. "runtime": {
  2998. "lib/net5.0/zxing.dll": {
  2999. "related": ".XML"
  3000. }
  3001. }
  3002. },
  3003. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3004. "type": "package",
  3005. "dependencies": {
  3006. "SixLabors.ImageSharp": "2.1.3",
  3007. "ZXing.Net": "0.16.9"
  3008. },
  3009. "compile": {
  3010. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3011. "related": ".pdb;.xml"
  3012. }
  3013. },
  3014. "runtime": {
  3015. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3016. "related": ".pdb;.xml"
  3017. }
  3018. }
  3019. },
  3020. "Ropin.Core.Common/1.0.0": {
  3021. "type": "project",
  3022. "framework": ".NETCoreApp,Version=v5.0",
  3023. "dependencies": {
  3024. "Coravel": "4.2.1",
  3025. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3026. "Newtonsoft.Json": "13.0.1",
  3027. "QRCoder": "1.4.3",
  3028. "SixLabors.ImageSharp": "2.1.6",
  3029. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3030. },
  3031. "compile": {
  3032. "bin/placeholder/Ropin.Core.Common.dll": {}
  3033. },
  3034. "runtime": {
  3035. "bin/placeholder/Ropin.Core.Common.dll": {}
  3036. }
  3037. },
  3038. "Ropin.Core.Extensions/1.0.0": {
  3039. "type": "project",
  3040. "framework": ".NETCoreApp,Version=v5.0",
  3041. "dependencies": {
  3042. "Autofac": "6.2.0",
  3043. "Autofac.Extras.DynamicProxy": "6.0.0",
  3044. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3045. "Ropin.Core.Common": "1.0.0",
  3046. "Ropin.Inspection.Common": "1.0.0",
  3047. "Ropin.Inspection.Service": "1.0.0",
  3048. "Ropin.Inspection.Tasks": "1.0.0",
  3049. "StackExchange.Redis": "1.2.4",
  3050. "log4net": "2.0.17"
  3051. },
  3052. "compile": {
  3053. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3054. },
  3055. "runtime": {
  3056. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3057. }
  3058. },
  3059. "Ropin.Inspection.Common/1.0.0": {
  3060. "type": "project",
  3061. "framework": ".NETCoreApp,Version=v5.0",
  3062. "dependencies": {
  3063. "FluentEmail.Smtp": "3.0.2",
  3064. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3065. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3066. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3067. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3068. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3069. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3070. "Microsoft.Extensions.Configuration": "5.0.0",
  3071. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3072. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3073. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3074. "Microsoft.Extensions.Http": "5.0.0",
  3075. "Newtonsoft.Json": "13.0.1",
  3076. "RabbitMQ.Client": "6.8.1",
  3077. "log4net": "2.0.17"
  3078. },
  3079. "compile": {
  3080. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3081. },
  3082. "runtime": {
  3083. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3084. }
  3085. },
  3086. "Ropin.Inspection.Model/1.0.0": {
  3087. "type": "project",
  3088. "framework": ".NETCoreApp,Version=v5.0",
  3089. "dependencies": {
  3090. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3091. "Microsoft.EntityFrameworkCore": "5.0.0",
  3092. "MySql.Data": "8.0.23",
  3093. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3094. "Ropin.Inspection.Common": "1.0.0"
  3095. },
  3096. "compile": {
  3097. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3098. },
  3099. "runtime": {
  3100. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3101. }
  3102. },
  3103. "Ropin.Inspection.Repository/1.0.0": {
  3104. "type": "project",
  3105. "framework": ".NETCoreApp,Version=v5.0",
  3106. "dependencies": {
  3107. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3108. "Microsoft.EntityFrameworkCore": "5.0.0",
  3109. "Ropin.Inspection.Model": "1.0.0"
  3110. },
  3111. "compile": {
  3112. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3113. },
  3114. "runtime": {
  3115. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3116. }
  3117. },
  3118. "Ropin.Inspection.Service/1.0.0": {
  3119. "type": "project",
  3120. "framework": ".NETCoreApp,Version=v5.0",
  3121. "dependencies": {
  3122. "AutoMapper": "10.1.1",
  3123. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3124. "Newtonsoft.Json": "13.0.1",
  3125. "Ropin.Core.Common": "1.0.0",
  3126. "Ropin.Inspection.Common": "1.0.0",
  3127. "Ropin.Inspection.Model": "1.0.0",
  3128. "Ropin.Inspection.Repository": "1.0.0",
  3129. "log4net": "2.0.17"
  3130. },
  3131. "compile": {
  3132. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3133. },
  3134. "runtime": {
  3135. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3136. }
  3137. },
  3138. "Ropin.Inspection.Tasks/1.0.0": {
  3139. "type": "project",
  3140. "framework": ".NETCoreApp,Version=v5.0",
  3141. "dependencies": {
  3142. "Quartz": "3.3.3",
  3143. "Ropin.Inspection.Common": "1.0.0",
  3144. "Ropin.Inspection.Model": "1.0.0",
  3145. "Ropin.Inspection.Service": "1.0.0"
  3146. },
  3147. "compile": {
  3148. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3149. },
  3150. "runtime": {
  3151. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3152. }
  3153. }
  3154. }
  3155. },
  3156. "libraries": {
  3157. "AdvancedStringBuilder/0.1.0": {
  3158. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3159. "type": "package",
  3160. "path": "advancedstringbuilder/0.1.0",
  3161. "files": [
  3162. ".nupkg.metadata",
  3163. ".signature.p7s",
  3164. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3165. "advancedstringbuilder.nuspec",
  3166. "lib/net40-client/AdvancedStringBuilder.dll",
  3167. "lib/net40-client/AdvancedStringBuilder.xml",
  3168. "lib/net45/AdvancedStringBuilder.dll",
  3169. "lib/net45/AdvancedStringBuilder.xml",
  3170. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3171. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3172. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3173. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3174. ]
  3175. },
  3176. "Autofac/6.2.0": {
  3177. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3178. "type": "package",
  3179. "path": "autofac/6.2.0",
  3180. "files": [
  3181. ".nupkg.metadata",
  3182. ".signature.p7s",
  3183. "autofac.6.2.0.nupkg.sha512",
  3184. "autofac.nuspec",
  3185. "icon.png",
  3186. "lib/net5.0/Autofac.dll",
  3187. "lib/net5.0/Autofac.pdb",
  3188. "lib/net5.0/Autofac.xml",
  3189. "lib/netstandard2.0/Autofac.dll",
  3190. "lib/netstandard2.0/Autofac.pdb",
  3191. "lib/netstandard2.0/Autofac.xml",
  3192. "lib/netstandard2.1/Autofac.dll",
  3193. "lib/netstandard2.1/Autofac.pdb",
  3194. "lib/netstandard2.1/Autofac.xml"
  3195. ]
  3196. },
  3197. "Autofac.Extras.DynamicProxy/6.0.0": {
  3198. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3199. "type": "package",
  3200. "path": "autofac.extras.dynamicproxy/6.0.0",
  3201. "files": [
  3202. ".nupkg.metadata",
  3203. ".signature.p7s",
  3204. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3205. "autofac.extras.dynamicproxy.nuspec",
  3206. "icon.png",
  3207. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3208. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3209. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3210. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3211. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3212. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3213. ]
  3214. },
  3215. "AutoMapper/10.1.1": {
  3216. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3217. "type": "package",
  3218. "path": "automapper/10.1.1",
  3219. "files": [
  3220. ".nupkg.metadata",
  3221. ".signature.p7s",
  3222. "automapper.10.1.1.nupkg.sha512",
  3223. "automapper.nuspec",
  3224. "icon.png",
  3225. "lib/net461/AutoMapper.dll",
  3226. "lib/net461/AutoMapper.xml",
  3227. "lib/netstandard2.0/AutoMapper.dll",
  3228. "lib/netstandard2.0/AutoMapper.xml"
  3229. ]
  3230. },
  3231. "BouncyCastle.NetCore/1.8.5": {
  3232. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3233. "type": "package",
  3234. "path": "bouncycastle.netcore/1.8.5",
  3235. "files": [
  3236. ".nupkg.metadata",
  3237. ".signature.p7s",
  3238. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3239. "bouncycastle.netcore.nuspec",
  3240. "lib/Mono/BouncyCastle.Crypto.dll",
  3241. "lib/Mono/BouncyCastle.Crypto.xml",
  3242. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3243. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3244. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3245. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3246. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3247. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3248. "lib/net20/BouncyCastle.Crypto.dll",
  3249. "lib/net20/BouncyCastle.Crypto.xml",
  3250. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3251. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3252. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3253. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3254. ]
  3255. },
  3256. "Castle.Core/4.4.0": {
  3257. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3258. "type": "package",
  3259. "path": "castle.core/4.4.0",
  3260. "files": [
  3261. ".nupkg.metadata",
  3262. ".signature.p7s",
  3263. "ASL - Apache Software Foundation License.txt",
  3264. "CHANGELOG.md",
  3265. "LICENSE",
  3266. "castle.core.4.4.0.nupkg.sha512",
  3267. "castle.core.nuspec",
  3268. "lib/net35/Castle.Core.dll",
  3269. "lib/net35/Castle.Core.xml",
  3270. "lib/net40/Castle.Core.dll",
  3271. "lib/net40/Castle.Core.xml",
  3272. "lib/net45/Castle.Core.dll",
  3273. "lib/net45/Castle.Core.xml",
  3274. "lib/netstandard1.3/Castle.Core.dll",
  3275. "lib/netstandard1.3/Castle.Core.xml",
  3276. "lib/netstandard1.5/Castle.Core.dll",
  3277. "lib/netstandard1.5/Castle.Core.xml",
  3278. "readme.txt"
  3279. ]
  3280. },
  3281. "Coravel/4.2.1": {
  3282. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3283. "type": "package",
  3284. "path": "coravel/4.2.1",
  3285. "files": [
  3286. ".nupkg.metadata",
  3287. ".signature.p7s",
  3288. "coravel.4.2.1.nupkg.sha512",
  3289. "coravel.nuspec",
  3290. "lib/netstandard2.0/Coravel.dll",
  3291. "lib/netstandard2.0/Coravel.xml",
  3292. "logo.png",
  3293. "readme.md"
  3294. ]
  3295. },
  3296. "FluentEmail.Core/3.0.2": {
  3297. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3298. "type": "package",
  3299. "path": "fluentemail.core/3.0.2",
  3300. "files": [
  3301. ".nupkg.metadata",
  3302. ".signature.p7s",
  3303. "fluentemail.core.3.0.2.nupkg.sha512",
  3304. "fluentemail.core.nuspec",
  3305. "fluentemail_logo_64x64.png",
  3306. "lib/netstandard2.0/FluentEmail.Core.dll"
  3307. ]
  3308. },
  3309. "FluentEmail.Smtp/3.0.2": {
  3310. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3311. "type": "package",
  3312. "path": "fluentemail.smtp/3.0.2",
  3313. "files": [
  3314. ".nupkg.metadata",
  3315. ".signature.p7s",
  3316. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3317. "fluentemail.smtp.nuspec",
  3318. "fluentemail_logo_64x64.png",
  3319. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3320. ]
  3321. },
  3322. "Google.Protobuf/3.11.4": {
  3323. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3324. "type": "package",
  3325. "path": "google.protobuf/3.11.4",
  3326. "files": [
  3327. ".nupkg.metadata",
  3328. ".signature.p7s",
  3329. "google.protobuf.3.11.4.nupkg.sha512",
  3330. "google.protobuf.nuspec",
  3331. "lib/net45/Google.Protobuf.dll",
  3332. "lib/net45/Google.Protobuf.pdb",
  3333. "lib/net45/Google.Protobuf.xml",
  3334. "lib/netstandard1.0/Google.Protobuf.dll",
  3335. "lib/netstandard1.0/Google.Protobuf.pdb",
  3336. "lib/netstandard1.0/Google.Protobuf.xml",
  3337. "lib/netstandard2.0/Google.Protobuf.dll",
  3338. "lib/netstandard2.0/Google.Protobuf.pdb",
  3339. "lib/netstandard2.0/Google.Protobuf.xml"
  3340. ]
  3341. },
  3342. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3343. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3344. "type": "package",
  3345. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3346. "files": [
  3347. ".nupkg.metadata",
  3348. ".signature.p7s",
  3349. "LICENSE.txt",
  3350. "advanced-string-builder-license.txt",
  3351. "chakra-samples-license.txt",
  3352. "icon.png",
  3353. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3354. "javascriptengineswitcher.chakracore.nuspec",
  3355. "jsrt-dotnet-license.txt",
  3356. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3357. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3358. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3359. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3360. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3361. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3362. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3363. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3364. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3365. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3366. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3367. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3368. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3369. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3370. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3371. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3372. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3373. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3374. "polyfills-for-old-dot-net-license.txt",
  3375. "readme.txt"
  3376. ]
  3377. },
  3378. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3379. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3380. "type": "package",
  3381. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3382. "files": [
  3383. ".nupkg.metadata",
  3384. ".signature.p7s",
  3385. "LICENSE.txt",
  3386. "chakra-core-license.txt",
  3387. "icon.png",
  3388. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3389. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3390. "readme.txt",
  3391. "runtimes/linux-x64/native/libChakraCore.so"
  3392. ]
  3393. },
  3394. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3395. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3396. "type": "package",
  3397. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3398. "hasTools": true,
  3399. "files": [
  3400. ".nupkg.metadata",
  3401. ".signature.p7s",
  3402. "LICENSE.txt",
  3403. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3404. "chakra-core-license.txt",
  3405. "icon.png",
  3406. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3407. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3408. "readme.txt",
  3409. "runtimes/win-x64/native/ChakraCore.dll",
  3410. "tools/Install.ps1",
  3411. "tools/Uninstall.ps1"
  3412. ]
  3413. },
  3414. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3415. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3416. "type": "package",
  3417. "path": "javascriptengineswitcher.core/3.21.0",
  3418. "files": [
  3419. ".nupkg.metadata",
  3420. ".signature.p7s",
  3421. "LICENSE.txt",
  3422. "advanced-string-builder-license.txt",
  3423. "icon.png",
  3424. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3425. "javascriptengineswitcher.core.nuspec",
  3426. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3427. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3428. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3429. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3430. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3431. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3432. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3433. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3434. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3435. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3436. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3437. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3438. "readme.txt"
  3439. ]
  3440. },
  3441. "K4os.Compression.LZ4/1.1.11": {
  3442. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3443. "type": "package",
  3444. "path": "k4os.compression.lz4/1.1.11",
  3445. "files": [
  3446. ".nupkg.metadata",
  3447. ".signature.p7s",
  3448. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3449. "k4os.compression.lz4.nuspec",
  3450. "lib/net45/K4os.Compression.LZ4.dll",
  3451. "lib/net45/K4os.Compression.LZ4.xml",
  3452. "lib/net46/K4os.Compression.LZ4.dll",
  3453. "lib/net46/K4os.Compression.LZ4.xml",
  3454. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3455. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3456. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3457. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3458. ]
  3459. },
  3460. "K4os.Compression.LZ4.Streams/1.1.11": {
  3461. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3462. "type": "package",
  3463. "path": "k4os.compression.lz4.streams/1.1.11",
  3464. "files": [
  3465. ".nupkg.metadata",
  3466. ".signature.p7s",
  3467. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3468. "k4os.compression.lz4.streams.nuspec",
  3469. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3470. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3471. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3472. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3473. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3474. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3475. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3476. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3477. ]
  3478. },
  3479. "K4os.Hash.xxHash/1.0.6": {
  3480. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3481. "type": "package",
  3482. "path": "k4os.hash.xxhash/1.0.6",
  3483. "files": [
  3484. ".nupkg.metadata",
  3485. ".signature.p7s",
  3486. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3487. "k4os.hash.xxhash.nuspec",
  3488. "lib/net45/K4os.Hash.xxHash.dll",
  3489. "lib/net45/K4os.Hash.xxHash.xml",
  3490. "lib/net46/K4os.Hash.xxHash.dll",
  3491. "lib/net46/K4os.Hash.xxHash.xml",
  3492. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3493. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3494. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3495. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3496. ]
  3497. },
  3498. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3499. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3500. "type": "package",
  3501. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3502. "files": [
  3503. ".nupkg.metadata",
  3504. ".signature.p7s",
  3505. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3506. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3507. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3508. "linqkit.microsoft.entityframeworkcore.nuspec"
  3509. ]
  3510. },
  3511. "log4net/2.0.17": {
  3512. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3513. "type": "package",
  3514. "path": "log4net/2.0.17",
  3515. "files": [
  3516. ".nupkg.metadata",
  3517. ".signature.p7s",
  3518. "lib/net20/log4net.dll",
  3519. "lib/net20/log4net.xml",
  3520. "lib/net35/log4net.dll",
  3521. "lib/net35/log4net.xml",
  3522. "lib/net40-client/log4net.dll",
  3523. "lib/net40-client/log4net.xml",
  3524. "lib/net40/log4net.dll",
  3525. "lib/net40/log4net.xml",
  3526. "lib/net45/log4net.dll",
  3527. "lib/net45/log4net.xml",
  3528. "lib/netstandard1.3/log4net.dll",
  3529. "lib/netstandard1.3/log4net.xml",
  3530. "lib/netstandard2.0/log4net.dll",
  3531. "lib/netstandard2.0/log4net.xml",
  3532. "log4net.2.0.17.nupkg.sha512",
  3533. "log4net.nuspec",
  3534. "package-icon.png"
  3535. ]
  3536. },
  3537. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3538. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3539. "type": "package",
  3540. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3541. "files": [
  3542. ".nupkg.metadata",
  3543. ".signature.p7s",
  3544. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3545. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3546. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3547. "microsoft.aspnetcore.http.abstractions.nuspec"
  3548. ]
  3549. },
  3550. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3551. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3552. "type": "package",
  3553. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3554. "files": [
  3555. ".nupkg.metadata",
  3556. ".signature.p7s",
  3557. "Icon.png",
  3558. "THIRD-PARTY-NOTICES.TXT",
  3559. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3560. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3561. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3562. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3563. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3564. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3565. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3566. "microsoft.aspnetcore.http.features.nuspec"
  3567. ]
  3568. },
  3569. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3570. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3571. "type": "package",
  3572. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3573. "files": [
  3574. ".nupkg.metadata",
  3575. ".signature.p7s",
  3576. "Icon.png",
  3577. "THIRD-PARTY-NOTICES.TXT",
  3578. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3579. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3580. "microsoft.aspnetcore.nodeservices.nuspec"
  3581. ]
  3582. },
  3583. "Microsoft.CSharp/4.7.0": {
  3584. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3585. "type": "package",
  3586. "path": "microsoft.csharp/4.7.0",
  3587. "files": [
  3588. ".nupkg.metadata",
  3589. ".signature.p7s",
  3590. "LICENSE.TXT",
  3591. "THIRD-PARTY-NOTICES.TXT",
  3592. "lib/MonoAndroid10/_._",
  3593. "lib/MonoTouch10/_._",
  3594. "lib/net45/_._",
  3595. "lib/netcore50/Microsoft.CSharp.dll",
  3596. "lib/netcoreapp2.0/_._",
  3597. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3598. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3599. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3600. "lib/portable-net45+win8+wp8+wpa81/_._",
  3601. "lib/uap10.0.16299/_._",
  3602. "lib/win8/_._",
  3603. "lib/wp80/_._",
  3604. "lib/wpa81/_._",
  3605. "lib/xamarinios10/_._",
  3606. "lib/xamarinmac20/_._",
  3607. "lib/xamarintvos10/_._",
  3608. "lib/xamarinwatchos10/_._",
  3609. "microsoft.csharp.4.7.0.nupkg.sha512",
  3610. "microsoft.csharp.nuspec",
  3611. "ref/MonoAndroid10/_._",
  3612. "ref/MonoTouch10/_._",
  3613. "ref/net45/_._",
  3614. "ref/netcore50/Microsoft.CSharp.dll",
  3615. "ref/netcore50/Microsoft.CSharp.xml",
  3616. "ref/netcore50/de/Microsoft.CSharp.xml",
  3617. "ref/netcore50/es/Microsoft.CSharp.xml",
  3618. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3619. "ref/netcore50/it/Microsoft.CSharp.xml",
  3620. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3621. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3622. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3623. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3624. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3625. "ref/netcoreapp2.0/_._",
  3626. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3627. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3628. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3629. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3630. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3631. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3632. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3633. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3634. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3635. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3636. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3637. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3638. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3639. "ref/portable-net45+win8+wp8+wpa81/_._",
  3640. "ref/uap10.0.16299/_._",
  3641. "ref/win8/_._",
  3642. "ref/wp80/_._",
  3643. "ref/wpa81/_._",
  3644. "ref/xamarinios10/_._",
  3645. "ref/xamarinmac20/_._",
  3646. "ref/xamarintvos10/_._",
  3647. "ref/xamarinwatchos10/_._",
  3648. "useSharedDesignerContext.txt",
  3649. "version.txt"
  3650. ]
  3651. },
  3652. "Microsoft.EntityFrameworkCore/5.0.0": {
  3653. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3654. "type": "package",
  3655. "path": "microsoft.entityframeworkcore/5.0.0",
  3656. "files": [
  3657. ".nupkg.metadata",
  3658. ".signature.p7s",
  3659. "Icon.png",
  3660. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3661. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3662. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3663. "microsoft.entityframeworkcore.nuspec"
  3664. ]
  3665. },
  3666. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3667. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3668. "type": "package",
  3669. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3670. "files": [
  3671. ".nupkg.metadata",
  3672. ".signature.p7s",
  3673. "Icon.png",
  3674. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3675. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3676. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3677. "microsoft.entityframeworkcore.abstractions.nuspec"
  3678. ]
  3679. },
  3680. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3681. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3682. "type": "package",
  3683. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3684. "files": [
  3685. ".nupkg.metadata",
  3686. ".signature.p7s",
  3687. "Icon.png",
  3688. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3689. "lib/netstandard2.0/_._",
  3690. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3691. "microsoft.entityframeworkcore.analyzers.nuspec"
  3692. ]
  3693. },
  3694. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3695. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3696. "type": "package",
  3697. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3698. "files": [
  3699. ".nupkg.metadata",
  3700. ".signature.p7s",
  3701. "Icon.png",
  3702. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3703. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3704. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3705. "microsoft.entityframeworkcore.relational.nuspec"
  3706. ]
  3707. },
  3708. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3709. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3710. "type": "package",
  3711. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3712. "hasTools": true,
  3713. "files": [
  3714. ".nupkg.metadata",
  3715. ".signature.p7s",
  3716. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3717. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3718. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3719. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3720. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3721. "microsoft.extensions.apidescription.server.nuspec",
  3722. "tools/Newtonsoft.Json.dll",
  3723. "tools/dotnet-getdocument.deps.json",
  3724. "tools/dotnet-getdocument.dll",
  3725. "tools/dotnet-getdocument.runtimeconfig.json",
  3726. "tools/net461-x86/GetDocument.Insider.exe",
  3727. "tools/net461-x86/GetDocument.Insider.exe.config",
  3728. "tools/net461/GetDocument.Insider.exe",
  3729. "tools/net461/GetDocument.Insider.exe.config",
  3730. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3731. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3732. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3733. ]
  3734. },
  3735. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3736. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3737. "type": "package",
  3738. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3739. "files": [
  3740. ".nupkg.metadata",
  3741. ".signature.p7s",
  3742. "Icon.png",
  3743. "LICENSE.TXT",
  3744. "THIRD-PARTY-NOTICES.TXT",
  3745. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3746. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3747. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3748. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3749. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3750. "microsoft.extensions.caching.abstractions.nuspec",
  3751. "useSharedDesignerContext.txt",
  3752. "version.txt"
  3753. ]
  3754. },
  3755. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3756. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3757. "type": "package",
  3758. "path": "microsoft.extensions.caching.memory/5.0.0",
  3759. "files": [
  3760. ".nupkg.metadata",
  3761. ".signature.p7s",
  3762. "Icon.png",
  3763. "LICENSE.TXT",
  3764. "THIRD-PARTY-NOTICES.TXT",
  3765. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3766. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3767. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3768. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3769. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3770. "microsoft.extensions.caching.memory.nuspec",
  3771. "useSharedDesignerContext.txt",
  3772. "version.txt"
  3773. ]
  3774. },
  3775. "Microsoft.Extensions.Configuration/5.0.0": {
  3776. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3777. "type": "package",
  3778. "path": "microsoft.extensions.configuration/5.0.0",
  3779. "files": [
  3780. ".nupkg.metadata",
  3781. ".signature.p7s",
  3782. "Icon.png",
  3783. "LICENSE.TXT",
  3784. "THIRD-PARTY-NOTICES.TXT",
  3785. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3786. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3787. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3788. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3789. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3790. "microsoft.extensions.configuration.nuspec",
  3791. "useSharedDesignerContext.txt",
  3792. "version.txt"
  3793. ]
  3794. },
  3795. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3796. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3797. "type": "package",
  3798. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3799. "files": [
  3800. ".nupkg.metadata",
  3801. ".signature.p7s",
  3802. "Icon.png",
  3803. "LICENSE.TXT",
  3804. "THIRD-PARTY-NOTICES.TXT",
  3805. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3806. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3807. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3808. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3809. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3810. "microsoft.extensions.configuration.abstractions.nuspec",
  3811. "useSharedDesignerContext.txt",
  3812. "version.txt"
  3813. ]
  3814. },
  3815. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3816. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3817. "type": "package",
  3818. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3819. "files": [
  3820. ".nupkg.metadata",
  3821. ".signature.p7s",
  3822. "Icon.png",
  3823. "LICENSE.TXT",
  3824. "THIRD-PARTY-NOTICES.TXT",
  3825. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3826. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3827. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3828. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3829. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3830. "microsoft.extensions.configuration.binder.nuspec",
  3831. "useSharedDesignerContext.txt",
  3832. "version.txt"
  3833. ]
  3834. },
  3835. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3836. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3837. "type": "package",
  3838. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3839. "files": [
  3840. ".nupkg.metadata",
  3841. ".signature.p7s",
  3842. "Icon.png",
  3843. "LICENSE.TXT",
  3844. "THIRD-PARTY-NOTICES.TXT",
  3845. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3846. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3847. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3848. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3849. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3850. "microsoft.extensions.configuration.fileextensions.nuspec",
  3851. "useSharedDesignerContext.txt",
  3852. "version.txt"
  3853. ]
  3854. },
  3855. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3856. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3857. "type": "package",
  3858. "path": "microsoft.extensions.configuration.json/5.0.0",
  3859. "files": [
  3860. ".nupkg.metadata",
  3861. ".signature.p7s",
  3862. "Icon.png",
  3863. "LICENSE.TXT",
  3864. "THIRD-PARTY-NOTICES.TXT",
  3865. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3866. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3867. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3868. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3869. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3870. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3871. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3872. "microsoft.extensions.configuration.json.nuspec",
  3873. "useSharedDesignerContext.txt",
  3874. "version.txt"
  3875. ]
  3876. },
  3877. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3878. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3879. "type": "package",
  3880. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3881. "files": [
  3882. ".nupkg.metadata",
  3883. ".signature.p7s",
  3884. "Icon.png",
  3885. "LICENSE.TXT",
  3886. "THIRD-PARTY-NOTICES.TXT",
  3887. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3888. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3889. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3890. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3891. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3892. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3893. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3894. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3895. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3896. "microsoft.extensions.dependencyinjection.nuspec",
  3897. "useSharedDesignerContext.txt",
  3898. "version.txt"
  3899. ]
  3900. },
  3901. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3902. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3903. "type": "package",
  3904. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3905. "files": [
  3906. ".nupkg.metadata",
  3907. ".signature.p7s",
  3908. "Icon.png",
  3909. "LICENSE.TXT",
  3910. "THIRD-PARTY-NOTICES.TXT",
  3911. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3912. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3913. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3914. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3915. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3916. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3917. "useSharedDesignerContext.txt",
  3918. "version.txt"
  3919. ]
  3920. },
  3921. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3922. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3923. "type": "package",
  3924. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3925. "files": [
  3926. ".nupkg.metadata",
  3927. ".signature.p7s",
  3928. "Icon.png",
  3929. "LICENSE.TXT",
  3930. "THIRD-PARTY-NOTICES.TXT",
  3931. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3932. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3933. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3934. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3935. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3936. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3937. "useSharedDesignerContext.txt",
  3938. "version.txt"
  3939. ]
  3940. },
  3941. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3942. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3943. "type": "package",
  3944. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3945. "files": [
  3946. ".nupkg.metadata",
  3947. ".signature.p7s",
  3948. "Icon.png",
  3949. "LICENSE.TXT",
  3950. "THIRD-PARTY-NOTICES.TXT",
  3951. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3952. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3953. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3954. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3955. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3956. "microsoft.extensions.fileproviders.physical.nuspec",
  3957. "useSharedDesignerContext.txt",
  3958. "version.txt"
  3959. ]
  3960. },
  3961. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3962. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3963. "type": "package",
  3964. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3965. "files": [
  3966. ".nupkg.metadata",
  3967. ".signature.p7s",
  3968. "Icon.png",
  3969. "LICENSE.TXT",
  3970. "THIRD-PARTY-NOTICES.TXT",
  3971. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3972. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3973. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3974. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3975. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3976. "microsoft.extensions.filesystemglobbing.nuspec",
  3977. "useSharedDesignerContext.txt",
  3978. "version.txt"
  3979. ]
  3980. },
  3981. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  3982. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  3983. "type": "package",
  3984. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  3985. "files": [
  3986. ".nupkg.metadata",
  3987. ".signature.p7s",
  3988. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3989. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3990. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3991. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3992. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  3993. "microsoft.extensions.hosting.abstractions.nuspec",
  3994. "packageIcon.png"
  3995. ]
  3996. },
  3997. "Microsoft.Extensions.Http/5.0.0": {
  3998. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  3999. "type": "package",
  4000. "path": "microsoft.extensions.http/5.0.0",
  4001. "files": [
  4002. ".nupkg.metadata",
  4003. ".signature.p7s",
  4004. "Icon.png",
  4005. "LICENSE.TXT",
  4006. "THIRD-PARTY-NOTICES.TXT",
  4007. "lib/net461/Microsoft.Extensions.Http.dll",
  4008. "lib/net461/Microsoft.Extensions.Http.xml",
  4009. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4010. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4011. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4012. "microsoft.extensions.http.nuspec",
  4013. "useSharedDesignerContext.txt",
  4014. "version.txt"
  4015. ]
  4016. },
  4017. "Microsoft.Extensions.Logging/5.0.0": {
  4018. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4019. "type": "package",
  4020. "path": "microsoft.extensions.logging/5.0.0",
  4021. "files": [
  4022. ".nupkg.metadata",
  4023. ".signature.p7s",
  4024. "Icon.png",
  4025. "LICENSE.TXT",
  4026. "THIRD-PARTY-NOTICES.TXT",
  4027. "lib/net461/Microsoft.Extensions.Logging.dll",
  4028. "lib/net461/Microsoft.Extensions.Logging.xml",
  4029. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4030. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4031. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4032. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4033. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4034. "microsoft.extensions.logging.nuspec",
  4035. "useSharedDesignerContext.txt",
  4036. "version.txt"
  4037. ]
  4038. },
  4039. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4040. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4041. "type": "package",
  4042. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4043. "files": [
  4044. ".nupkg.metadata",
  4045. ".signature.p7s",
  4046. "Icon.png",
  4047. "LICENSE.TXT",
  4048. "THIRD-PARTY-NOTICES.TXT",
  4049. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4050. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4051. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4052. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4053. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4054. "microsoft.extensions.logging.abstractions.nuspec",
  4055. "useSharedDesignerContext.txt",
  4056. "version.txt"
  4057. ]
  4058. },
  4059. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4060. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4061. "type": "package",
  4062. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4063. "files": [
  4064. ".nupkg.metadata",
  4065. ".signature.p7s",
  4066. "Icon.png",
  4067. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4068. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4069. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4070. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4071. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4072. "microsoft.extensions.logging.configuration.nuspec"
  4073. ]
  4074. },
  4075. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4076. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4077. "type": "package",
  4078. "path": "microsoft.extensions.logging.console/3.1.30",
  4079. "files": [
  4080. ".nupkg.metadata",
  4081. ".signature.p7s",
  4082. "Icon.png",
  4083. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4084. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4085. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4086. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4087. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4088. "microsoft.extensions.logging.console.nuspec"
  4089. ]
  4090. },
  4091. "Microsoft.Extensions.Options/5.0.0": {
  4092. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4093. "type": "package",
  4094. "path": "microsoft.extensions.options/5.0.0",
  4095. "files": [
  4096. ".nupkg.metadata",
  4097. ".signature.p7s",
  4098. "Icon.png",
  4099. "LICENSE.TXT",
  4100. "THIRD-PARTY-NOTICES.TXT",
  4101. "lib/net461/Microsoft.Extensions.Options.dll",
  4102. "lib/net461/Microsoft.Extensions.Options.xml",
  4103. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4104. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4105. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4106. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4107. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4108. "microsoft.extensions.options.nuspec",
  4109. "useSharedDesignerContext.txt",
  4110. "version.txt"
  4111. ]
  4112. },
  4113. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4114. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4115. "type": "package",
  4116. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "Icon.png",
  4121. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4122. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4123. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4124. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4125. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4126. "microsoft.extensions.options.configurationextensions.nuspec"
  4127. ]
  4128. },
  4129. "Microsoft.Extensions.Primitives/5.0.0": {
  4130. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4131. "type": "package",
  4132. "path": "microsoft.extensions.primitives/5.0.0",
  4133. "files": [
  4134. ".nupkg.metadata",
  4135. ".signature.p7s",
  4136. "Icon.png",
  4137. "LICENSE.TXT",
  4138. "THIRD-PARTY-NOTICES.TXT",
  4139. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4140. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4141. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4142. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4143. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4144. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4145. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4146. "microsoft.extensions.primitives.nuspec",
  4147. "useSharedDesignerContext.txt",
  4148. "version.txt"
  4149. ]
  4150. },
  4151. "Microsoft.NETCore.Platforms/5.0.0": {
  4152. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4153. "type": "package",
  4154. "path": "microsoft.netcore.platforms/5.0.0",
  4155. "files": [
  4156. ".nupkg.metadata",
  4157. ".signature.p7s",
  4158. "Icon.png",
  4159. "LICENSE.TXT",
  4160. "THIRD-PARTY-NOTICES.TXT",
  4161. "lib/netstandard1.0/_._",
  4162. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4163. "microsoft.netcore.platforms.nuspec",
  4164. "runtime.json",
  4165. "useSharedDesignerContext.txt",
  4166. "version.txt"
  4167. ]
  4168. },
  4169. "Microsoft.NETCore.Targets/1.1.0": {
  4170. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4171. "type": "package",
  4172. "path": "microsoft.netcore.targets/1.1.0",
  4173. "files": [
  4174. ".nupkg.metadata",
  4175. ".signature.p7s",
  4176. "ThirdPartyNotices.txt",
  4177. "dotnet_library_license.txt",
  4178. "lib/netstandard1.0/_._",
  4179. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4180. "microsoft.netcore.targets.nuspec",
  4181. "runtime.json"
  4182. ]
  4183. },
  4184. "Microsoft.OpenApi/1.2.3": {
  4185. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4186. "type": "package",
  4187. "path": "microsoft.openapi/1.2.3",
  4188. "files": [
  4189. ".nupkg.metadata",
  4190. ".signature.p7s",
  4191. "lib/net46/Microsoft.OpenApi.dll",
  4192. "lib/net46/Microsoft.OpenApi.pdb",
  4193. "lib/net46/Microsoft.OpenApi.xml",
  4194. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4195. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4196. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4197. "microsoft.openapi.1.2.3.nupkg.sha512",
  4198. "microsoft.openapi.nuspec"
  4199. ]
  4200. },
  4201. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4202. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4203. "type": "package",
  4204. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4205. "hasTools": true,
  4206. "files": [
  4207. ".nupkg.metadata",
  4208. ".signature.p7s",
  4209. "CHANGELOG.md",
  4210. "EULA.md",
  4211. "ThirdPartyNotices.txt",
  4212. "build/Container.props",
  4213. "build/Container.targets",
  4214. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4215. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4216. "build/Rules/GeneralBrowseObject.xaml",
  4217. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4218. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4219. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4220. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4221. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4222. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4223. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4224. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4225. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4226. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4227. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4228. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4229. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4230. "build/ToolsTarget.props",
  4231. "build/ToolsTarget.targets",
  4232. "icon.png",
  4233. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4234. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4235. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4236. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4237. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4238. "tools/Newtonsoft.Json.dll",
  4239. "tools/System.Security.Principal.Windows.dll",
  4240. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4241. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4242. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4243. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4244. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4245. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4246. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4247. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4248. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4249. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4250. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4251. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4252. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4253. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4254. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4255. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4256. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4257. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4258. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4259. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4260. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4261. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4262. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4263. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4264. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4265. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4266. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4267. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4268. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4269. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4270. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4271. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4272. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4273. "tools/utils/KillProcess.exe",
  4274. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4275. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4276. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4277. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4278. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4279. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4280. ]
  4281. },
  4282. "Microsoft.Win32.Primitives/4.3.0": {
  4283. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4284. "type": "package",
  4285. "path": "microsoft.win32.primitives/4.3.0",
  4286. "files": [
  4287. ".nupkg.metadata",
  4288. ".signature.p7s",
  4289. "ThirdPartyNotices.txt",
  4290. "dotnet_library_license.txt",
  4291. "lib/MonoAndroid10/_._",
  4292. "lib/MonoTouch10/_._",
  4293. "lib/net46/Microsoft.Win32.Primitives.dll",
  4294. "lib/xamarinios10/_._",
  4295. "lib/xamarinmac20/_._",
  4296. "lib/xamarintvos10/_._",
  4297. "lib/xamarinwatchos10/_._",
  4298. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4299. "microsoft.win32.primitives.nuspec",
  4300. "ref/MonoAndroid10/_._",
  4301. "ref/MonoTouch10/_._",
  4302. "ref/net46/Microsoft.Win32.Primitives.dll",
  4303. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4304. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4305. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4306. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4307. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4308. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4309. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4310. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4311. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4312. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4313. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4314. "ref/xamarinios10/_._",
  4315. "ref/xamarinmac20/_._",
  4316. "ref/xamarintvos10/_._",
  4317. "ref/xamarinwatchos10/_._"
  4318. ]
  4319. },
  4320. "Microsoft.Win32.SystemEvents/5.0.0": {
  4321. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4322. "type": "package",
  4323. "path": "microsoft.win32.systemevents/5.0.0",
  4324. "files": [
  4325. ".nupkg.metadata",
  4326. ".signature.p7s",
  4327. "Icon.png",
  4328. "LICENSE.TXT",
  4329. "THIRD-PARTY-NOTICES.TXT",
  4330. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4331. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4332. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4333. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4334. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4335. "microsoft.win32.systemevents.nuspec",
  4336. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4337. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4338. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4339. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4340. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4341. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4342. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4343. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4344. "useSharedDesignerContext.txt",
  4345. "version.txt"
  4346. ]
  4347. },
  4348. "MQTTnet/4.2.1.781": {
  4349. "sha512": "oKPAoW1Ynukm6ws6P3NmmMlNb3xIlPVf/89WVCkoWOJdz1dYtAdGYRdqe876pVsPru4j0uyU/hKf7iL3NU1r6w==",
  4350. "type": "package",
  4351. "path": "mqttnet/4.2.1.781",
  4352. "files": [
  4353. ".nupkg.metadata",
  4354. ".signature.p7s",
  4355. "lib/net452/MQTTnet.dll",
  4356. "lib/net452/MQTTnet.xml",
  4357. "lib/net461/MQTTnet.dll",
  4358. "lib/net461/MQTTnet.xml",
  4359. "lib/net48/MQTTnet.dll",
  4360. "lib/net48/MQTTnet.xml",
  4361. "lib/net5.0/MQTTnet.dll",
  4362. "lib/net5.0/MQTTnet.xml",
  4363. "lib/net6.0/MQTTnet.dll",
  4364. "lib/net6.0/MQTTnet.xml",
  4365. "lib/net7.0/MQTTnet.dll",
  4366. "lib/net7.0/MQTTnet.xml",
  4367. "lib/netcoreapp3.1/MQTTnet.dll",
  4368. "lib/netcoreapp3.1/MQTTnet.xml",
  4369. "lib/netstandard1.3/MQTTnet.dll",
  4370. "lib/netstandard1.3/MQTTnet.xml",
  4371. "lib/netstandard2.0/MQTTnet.dll",
  4372. "lib/netstandard2.0/MQTTnet.xml",
  4373. "lib/netstandard2.1/MQTTnet.dll",
  4374. "lib/netstandard2.1/MQTTnet.xml",
  4375. "lib/uap10.0.10240/MQTTnet.dll",
  4376. "lib/uap10.0.10240/MQTTnet.pri",
  4377. "lib/uap10.0.10240/MQTTnet.xml",
  4378. "mqttnet.4.2.1.781.nupkg.sha512",
  4379. "mqttnet.nuspec",
  4380. "nuget.png"
  4381. ]
  4382. },
  4383. "MQTTnet.AspNetCore/4.2.1.781": {
  4384. "sha512": "lYier2E8s2TQn6PTCT8HnHih2RmTj2UlsqdPmrLJPayfmOSB7eaWLJARtwGpHHF2HEgsNtt99CkNdLwDrKu7AQ==",
  4385. "type": "package",
  4386. "path": "mqttnet.aspnetcore/4.2.1.781",
  4387. "files": [
  4388. ".nupkg.metadata",
  4389. ".signature.p7s",
  4390. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4391. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4392. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4393. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4394. "lib/net7.0/MQTTnet.AspNetCore.dll",
  4395. "lib/net7.0/MQTTnet.AspNetCore.xml",
  4396. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4397. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4398. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4399. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4400. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4401. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4402. "mqttnet.aspnetcore.4.2.1.781.nupkg.sha512",
  4403. "mqttnet.aspnetcore.nuspec",
  4404. "nuget.png"
  4405. ]
  4406. },
  4407. "MySql.Data/8.0.23": {
  4408. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4409. "type": "package",
  4410. "path": "mysql.data/8.0.23",
  4411. "files": [
  4412. ".nupkg.metadata",
  4413. ".signature.p7s",
  4414. "lib/net452/MySql.Data.dll",
  4415. "lib/net452/MySql.Data.xml",
  4416. "lib/net452/Ubiety.Dns.Core.dll",
  4417. "lib/net452/Zstandard.Net.dll",
  4418. "lib/net48/MySql.Data.dll",
  4419. "lib/net48/MySql.Data.xml",
  4420. "lib/net48/Ubiety.Dns.Core.dll",
  4421. "lib/net48/Zstandard.Net.dll",
  4422. "lib/net5.0/MySql.Data.dll",
  4423. "lib/net5.0/MySql.Data.xml",
  4424. "lib/net5.0/Ubiety.Dns.Core.dll",
  4425. "lib/net5.0/Zstandard.Net.dll",
  4426. "lib/netstandard2.0/MySql.Data.dll",
  4427. "lib/netstandard2.0/MySql.Data.xml",
  4428. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4429. "lib/netstandard2.0/Zstandard.Net.dll",
  4430. "lib/netstandard2.1/MySql.Data.dll",
  4431. "lib/netstandard2.1/MySql.Data.xml",
  4432. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4433. "lib/netstandard2.1/Zstandard.Net.dll",
  4434. "mysql.data.8.0.23.nupkg.sha512",
  4435. "mysql.data.nuspec"
  4436. ]
  4437. },
  4438. "MySqlConnector/1.1.0": {
  4439. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4440. "type": "package",
  4441. "path": "mysqlconnector/1.1.0",
  4442. "files": [
  4443. ".nupkg.metadata",
  4444. ".signature.p7s",
  4445. "lib/net45/MySqlConnector.dll",
  4446. "lib/net45/MySqlConnector.xml",
  4447. "lib/net461/MySqlConnector.dll",
  4448. "lib/net461/MySqlConnector.xml",
  4449. "lib/net471/MySqlConnector.dll",
  4450. "lib/net471/MySqlConnector.xml",
  4451. "lib/net5.0/MySqlConnector.dll",
  4452. "lib/net5.0/MySqlConnector.xml",
  4453. "lib/netcoreapp2.1/MySqlConnector.dll",
  4454. "lib/netcoreapp2.1/MySqlConnector.xml",
  4455. "lib/netcoreapp3.1/MySqlConnector.dll",
  4456. "lib/netcoreapp3.1/MySqlConnector.xml",
  4457. "lib/netstandard1.3/MySqlConnector.dll",
  4458. "lib/netstandard1.3/MySqlConnector.xml",
  4459. "lib/netstandard2.0/MySqlConnector.dll",
  4460. "lib/netstandard2.0/MySqlConnector.xml",
  4461. "lib/netstandard2.1/MySqlConnector.dll",
  4462. "lib/netstandard2.1/MySqlConnector.xml",
  4463. "logo.png",
  4464. "mysqlconnector.1.1.0.nupkg.sha512",
  4465. "mysqlconnector.nuspec"
  4466. ]
  4467. },
  4468. "NETStandard.Library/1.6.1": {
  4469. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4470. "type": "package",
  4471. "path": "netstandard.library/1.6.1",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "ThirdPartyNotices.txt",
  4476. "dotnet_library_license.txt",
  4477. "netstandard.library.1.6.1.nupkg.sha512",
  4478. "netstandard.library.nuspec"
  4479. ]
  4480. },
  4481. "Newtonsoft.Json/13.0.3": {
  4482. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4483. "type": "package",
  4484. "path": "newtonsoft.json/13.0.3",
  4485. "files": [
  4486. ".nupkg.metadata",
  4487. ".signature.p7s",
  4488. "LICENSE.md",
  4489. "README.md",
  4490. "lib/net20/Newtonsoft.Json.dll",
  4491. "lib/net20/Newtonsoft.Json.xml",
  4492. "lib/net35/Newtonsoft.Json.dll",
  4493. "lib/net35/Newtonsoft.Json.xml",
  4494. "lib/net40/Newtonsoft.Json.dll",
  4495. "lib/net40/Newtonsoft.Json.xml",
  4496. "lib/net45/Newtonsoft.Json.dll",
  4497. "lib/net45/Newtonsoft.Json.xml",
  4498. "lib/net6.0/Newtonsoft.Json.dll",
  4499. "lib/net6.0/Newtonsoft.Json.xml",
  4500. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4501. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4502. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4503. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4504. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4505. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4506. "newtonsoft.json.13.0.3.nupkg.sha512",
  4507. "newtonsoft.json.nuspec",
  4508. "packageIcon.png"
  4509. ]
  4510. },
  4511. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4512. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4513. "type": "package",
  4514. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4515. "files": [
  4516. ".nupkg.metadata",
  4517. ".signature.p7s",
  4518. "icon.png",
  4519. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4520. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4521. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4522. "pomelo.entityframeworkcore.mysql.nuspec"
  4523. ]
  4524. },
  4525. "QRCoder/1.4.3": {
  4526. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4527. "type": "package",
  4528. "path": "qrcoder/1.4.3",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "lib/net35/QRCoder.dll",
  4533. "lib/net40/QRCoder.dll",
  4534. "lib/net5.0-windows7.0/QRCoder.dll",
  4535. "lib/net5.0/QRCoder.dll",
  4536. "lib/net6.0-windows7.0/QRCoder.dll",
  4537. "lib/net6.0/QRCoder.dll",
  4538. "lib/netstandard1.3/QRCoder.dll",
  4539. "lib/netstandard2.0/QRCoder.dll",
  4540. "nuget-icon.png",
  4541. "nuget-readme.md",
  4542. "qrcoder.1.4.3.nupkg.sha512",
  4543. "qrcoder.nuspec"
  4544. ]
  4545. },
  4546. "Quartz/3.3.3": {
  4547. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  4548. "type": "package",
  4549. "path": "quartz/3.3.3",
  4550. "files": [
  4551. ".nupkg.metadata",
  4552. ".signature.p7s",
  4553. "lib/net461/Quartz.dll",
  4554. "lib/net461/Quartz.xml",
  4555. "lib/net472/Quartz.dll",
  4556. "lib/net472/Quartz.xml",
  4557. "lib/netstandard2.0/Quartz.dll",
  4558. "lib/netstandard2.0/Quartz.xml",
  4559. "quartz-logo-small.png",
  4560. "quartz.3.3.3.nupkg.sha512",
  4561. "quartz.nuspec"
  4562. ]
  4563. },
  4564. "RabbitMQ.Client/6.8.1": {
  4565. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4566. "type": "package",
  4567. "path": "rabbitmq.client/6.8.1",
  4568. "files": [
  4569. ".nupkg.metadata",
  4570. ".signature.p7s",
  4571. "README.md",
  4572. "icon.png",
  4573. "lib/net462/RabbitMQ.Client.dll",
  4574. "lib/net462/RabbitMQ.Client.xml",
  4575. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4576. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4577. "rabbitmq.client.6.8.1.nupkg.sha512",
  4578. "rabbitmq.client.nuspec"
  4579. ]
  4580. },
  4581. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4582. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4583. "type": "package",
  4584. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4585. "files": [
  4586. ".nupkg.metadata",
  4587. ".signature.p7s",
  4588. "ThirdPartyNotices.txt",
  4589. "dotnet_library_license.txt",
  4590. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4591. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4592. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4593. ]
  4594. },
  4595. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4596. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4597. "type": "package",
  4598. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4599. "files": [
  4600. ".nupkg.metadata",
  4601. ".signature.p7s",
  4602. "ThirdPartyNotices.txt",
  4603. "dotnet_library_license.txt",
  4604. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4605. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4606. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4607. ]
  4608. },
  4609. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4610. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4611. "type": "package",
  4612. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4613. "files": [
  4614. ".nupkg.metadata",
  4615. ".signature.p7s",
  4616. "ThirdPartyNotices.txt",
  4617. "dotnet_library_license.txt",
  4618. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4619. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4620. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4621. ]
  4622. },
  4623. "runtime.native.System/4.3.0": {
  4624. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4625. "type": "package",
  4626. "path": "runtime.native.system/4.3.0",
  4627. "files": [
  4628. ".nupkg.metadata",
  4629. ".signature.p7s",
  4630. "ThirdPartyNotices.txt",
  4631. "dotnet_library_license.txt",
  4632. "lib/netstandard1.0/_._",
  4633. "runtime.native.system.4.3.0.nupkg.sha512",
  4634. "runtime.native.system.nuspec"
  4635. ]
  4636. },
  4637. "runtime.native.System.IO.Compression/4.3.0": {
  4638. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4639. "type": "package",
  4640. "path": "runtime.native.system.io.compression/4.3.0",
  4641. "files": [
  4642. ".nupkg.metadata",
  4643. ".signature.p7s",
  4644. "ThirdPartyNotices.txt",
  4645. "dotnet_library_license.txt",
  4646. "lib/netstandard1.0/_._",
  4647. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4648. "runtime.native.system.io.compression.nuspec"
  4649. ]
  4650. },
  4651. "runtime.native.System.Net.Http/4.3.0": {
  4652. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4653. "type": "package",
  4654. "path": "runtime.native.system.net.http/4.3.0",
  4655. "files": [
  4656. ".nupkg.metadata",
  4657. ".signature.p7s",
  4658. "ThirdPartyNotices.txt",
  4659. "dotnet_library_license.txt",
  4660. "lib/netstandard1.0/_._",
  4661. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4662. "runtime.native.system.net.http.nuspec"
  4663. ]
  4664. },
  4665. "runtime.native.System.Net.Security/4.3.0": {
  4666. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4667. "type": "package",
  4668. "path": "runtime.native.system.net.security/4.3.0",
  4669. "files": [
  4670. ".nupkg.metadata",
  4671. ".signature.p7s",
  4672. "ThirdPartyNotices.txt",
  4673. "dotnet_library_license.txt",
  4674. "lib/netstandard1.0/_._",
  4675. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4676. "runtime.native.system.net.security.nuspec"
  4677. ]
  4678. },
  4679. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4680. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4681. "type": "package",
  4682. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4683. "files": [
  4684. ".nupkg.metadata",
  4685. ".signature.p7s",
  4686. "ThirdPartyNotices.txt",
  4687. "dotnet_library_license.txt",
  4688. "lib/netstandard1.0/_._",
  4689. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4690. "runtime.native.system.security.cryptography.apple.nuspec"
  4691. ]
  4692. },
  4693. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4694. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4695. "type": "package",
  4696. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4697. "files": [
  4698. ".nupkg.metadata",
  4699. ".signature.p7s",
  4700. "ThirdPartyNotices.txt",
  4701. "dotnet_library_license.txt",
  4702. "lib/netstandard1.0/_._",
  4703. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4704. "runtime.native.system.security.cryptography.openssl.nuspec"
  4705. ]
  4706. },
  4707. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4708. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4709. "type": "package",
  4710. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4711. "files": [
  4712. ".nupkg.metadata",
  4713. ".signature.p7s",
  4714. "ThirdPartyNotices.txt",
  4715. "dotnet_library_license.txt",
  4716. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4717. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4718. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4719. ]
  4720. },
  4721. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4722. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4723. "type": "package",
  4724. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4725. "files": [
  4726. ".nupkg.metadata",
  4727. ".signature.p7s",
  4728. "ThirdPartyNotices.txt",
  4729. "dotnet_library_license.txt",
  4730. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4731. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4732. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4733. ]
  4734. },
  4735. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4736. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4737. "type": "package",
  4738. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4739. "files": [
  4740. ".nupkg.metadata",
  4741. ".signature.p7s",
  4742. "ThirdPartyNotices.txt",
  4743. "dotnet_library_license.txt",
  4744. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4745. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4746. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4747. ]
  4748. },
  4749. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4750. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4751. "type": "package",
  4752. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4753. "files": [
  4754. ".nupkg.metadata",
  4755. ".signature.p7s",
  4756. "ThirdPartyNotices.txt",
  4757. "dotnet_library_license.txt",
  4758. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4759. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4760. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4761. ]
  4762. },
  4763. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4764. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4765. "type": "package",
  4766. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4767. "files": [
  4768. ".nupkg.metadata",
  4769. ".signature.p7s",
  4770. "ThirdPartyNotices.txt",
  4771. "dotnet_library_license.txt",
  4772. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4773. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4774. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4775. ]
  4776. },
  4777. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4778. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4779. "type": "package",
  4780. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4781. "files": [
  4782. ".nupkg.metadata",
  4783. ".signature.p7s",
  4784. "ThirdPartyNotices.txt",
  4785. "dotnet_library_license.txt",
  4786. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4787. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4788. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4789. ]
  4790. },
  4791. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4792. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4793. "type": "package",
  4794. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4795. "files": [
  4796. ".nupkg.metadata",
  4797. ".signature.p7s",
  4798. "ThirdPartyNotices.txt",
  4799. "dotnet_library_license.txt",
  4800. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4801. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4802. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4803. ]
  4804. },
  4805. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4806. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4807. "type": "package",
  4808. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4809. "files": [
  4810. ".nupkg.metadata",
  4811. ".signature.p7s",
  4812. "ThirdPartyNotices.txt",
  4813. "dotnet_library_license.txt",
  4814. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4815. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4816. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4817. ]
  4818. },
  4819. "SixLabors.ImageSharp/2.1.6": {
  4820. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4821. "type": "package",
  4822. "path": "sixlabors.imagesharp/2.1.6",
  4823. "files": [
  4824. ".nupkg.metadata",
  4825. ".signature.p7s",
  4826. "lib/net472/SixLabors.ImageSharp.dll",
  4827. "lib/net472/SixLabors.ImageSharp.xml",
  4828. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4829. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4830. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4831. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4832. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4833. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4834. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4835. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4836. "sixlabors.imagesharp.128.png",
  4837. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4838. "sixlabors.imagesharp.nuspec"
  4839. ]
  4840. },
  4841. "SSH.NET/2020.0.0-beta1": {
  4842. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4843. "type": "package",
  4844. "path": "ssh.net/2020.0.0-beta1",
  4845. "files": [
  4846. ".nupkg.metadata",
  4847. ".signature.p7s",
  4848. "lib/net35/Renci.SshNet.dll",
  4849. "lib/net35/Renci.SshNet.xml",
  4850. "lib/net40/Renci.SshNet.dll",
  4851. "lib/net40/Renci.SshNet.xml",
  4852. "lib/netstandard1.3/Renci.SshNet.dll",
  4853. "lib/netstandard1.3/Renci.SshNet.xml",
  4854. "lib/netstandard2.0/Renci.SshNet.dll",
  4855. "lib/netstandard2.0/Renci.SshNet.xml",
  4856. "lib/sl4/Renci.SshNet.dll",
  4857. "lib/sl4/Renci.SshNet.xml",
  4858. "lib/sl5/Renci.SshNet.dll",
  4859. "lib/sl5/Renci.SshNet.xml",
  4860. "lib/uap10/Renci.SshNet.dll",
  4861. "lib/uap10/Renci.SshNet.xml",
  4862. "lib/wp71/Renci.SshNet.dll",
  4863. "lib/wp71/Renci.SshNet.xml",
  4864. "lib/wp8/Renci.SshNet.dll",
  4865. "lib/wp8/Renci.SshNet.xml",
  4866. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4867. "ssh.net.nuspec"
  4868. ]
  4869. },
  4870. "SshNet.Security.Cryptography/1.3.0": {
  4871. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4872. "type": "package",
  4873. "path": "sshnet.security.cryptography/1.3.0",
  4874. "files": [
  4875. ".nupkg.metadata",
  4876. ".signature.p7s",
  4877. "lib/net20/SshNet.Security.Cryptography.dll",
  4878. "lib/net20/SshNet.Security.Cryptography.xml",
  4879. "lib/net40/SshNet.Security.Cryptography.dll",
  4880. "lib/net40/SshNet.Security.Cryptography.xml",
  4881. "lib/net45/SshNet.Security.Cryptography.dll",
  4882. "lib/net45/SshNet.Security.Cryptography.xml",
  4883. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4884. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4885. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4886. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4887. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4888. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4889. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4890. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4891. "lib/sl4/SshNet.Security.Cryptography.dll",
  4892. "lib/sl4/SshNet.Security.Cryptography.xml",
  4893. "lib/sl5/SshNet.Security.Cryptography.dll",
  4894. "lib/sl5/SshNet.Security.Cryptography.xml",
  4895. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4896. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4897. "lib/wp71/SshNet.Security.Cryptography.dll",
  4898. "lib/wp71/SshNet.Security.Cryptography.xml",
  4899. "lib/wp8/SshNet.Security.Cryptography.dll",
  4900. "lib/wp8/SshNet.Security.Cryptography.xml",
  4901. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4902. "sshnet.security.cryptography.nuspec"
  4903. ]
  4904. },
  4905. "StackExchange.Redis/1.2.4": {
  4906. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4907. "type": "package",
  4908. "path": "stackexchange.redis/1.2.4",
  4909. "files": [
  4910. ".nupkg.metadata",
  4911. ".signature.p7s",
  4912. "lib/net45/StackExchange.Redis.dll",
  4913. "lib/net45/StackExchange.Redis.xml",
  4914. "lib/net46/StackExchange.Redis.dll",
  4915. "lib/net46/StackExchange.Redis.xml",
  4916. "lib/netstandard1.5/StackExchange.Redis.dll",
  4917. "lib/netstandard1.5/StackExchange.Redis.xml",
  4918. "stackexchange.redis.1.2.4.nupkg.sha512",
  4919. "stackexchange.redis.nuspec"
  4920. ]
  4921. },
  4922. "Swashbuckle.AspNetCore/5.6.3": {
  4923. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  4924. "type": "package",
  4925. "path": "swashbuckle.aspnetcore/5.6.3",
  4926. "files": [
  4927. ".nupkg.metadata",
  4928. ".signature.p7s",
  4929. "build/Swashbuckle.AspNetCore.props",
  4930. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  4931. "swashbuckle.aspnetcore.nuspec"
  4932. ]
  4933. },
  4934. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  4935. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  4936. "type": "package",
  4937. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  4938. "files": [
  4939. ".nupkg.metadata",
  4940. ".signature.p7s",
  4941. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4942. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4943. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4944. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4945. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4946. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4947. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  4948. "swashbuckle.aspnetcore.swagger.nuspec"
  4949. ]
  4950. },
  4951. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  4952. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  4953. "type": "package",
  4954. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  4955. "files": [
  4956. ".nupkg.metadata",
  4957. ".signature.p7s",
  4958. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4959. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4960. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4961. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4962. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4963. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4964. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  4965. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4966. ]
  4967. },
  4968. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  4969. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  4970. "type": "package",
  4971. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  4972. "files": [
  4973. ".nupkg.metadata",
  4974. ".signature.p7s",
  4975. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4976. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4977. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4978. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4979. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4980. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4981. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  4982. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4983. ]
  4984. },
  4985. "System.AppContext/4.3.0": {
  4986. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4987. "type": "package",
  4988. "path": "system.appcontext/4.3.0",
  4989. "files": [
  4990. ".nupkg.metadata",
  4991. ".signature.p7s",
  4992. "ThirdPartyNotices.txt",
  4993. "dotnet_library_license.txt",
  4994. "lib/MonoAndroid10/_._",
  4995. "lib/MonoTouch10/_._",
  4996. "lib/net46/System.AppContext.dll",
  4997. "lib/net463/System.AppContext.dll",
  4998. "lib/netcore50/System.AppContext.dll",
  4999. "lib/netstandard1.6/System.AppContext.dll",
  5000. "lib/xamarinios10/_._",
  5001. "lib/xamarinmac20/_._",
  5002. "lib/xamarintvos10/_._",
  5003. "lib/xamarinwatchos10/_._",
  5004. "ref/MonoAndroid10/_._",
  5005. "ref/MonoTouch10/_._",
  5006. "ref/net46/System.AppContext.dll",
  5007. "ref/net463/System.AppContext.dll",
  5008. "ref/netstandard/_._",
  5009. "ref/netstandard1.3/System.AppContext.dll",
  5010. "ref/netstandard1.3/System.AppContext.xml",
  5011. "ref/netstandard1.3/de/System.AppContext.xml",
  5012. "ref/netstandard1.3/es/System.AppContext.xml",
  5013. "ref/netstandard1.3/fr/System.AppContext.xml",
  5014. "ref/netstandard1.3/it/System.AppContext.xml",
  5015. "ref/netstandard1.3/ja/System.AppContext.xml",
  5016. "ref/netstandard1.3/ko/System.AppContext.xml",
  5017. "ref/netstandard1.3/ru/System.AppContext.xml",
  5018. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5019. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5020. "ref/netstandard1.6/System.AppContext.dll",
  5021. "ref/netstandard1.6/System.AppContext.xml",
  5022. "ref/netstandard1.6/de/System.AppContext.xml",
  5023. "ref/netstandard1.6/es/System.AppContext.xml",
  5024. "ref/netstandard1.6/fr/System.AppContext.xml",
  5025. "ref/netstandard1.6/it/System.AppContext.xml",
  5026. "ref/netstandard1.6/ja/System.AppContext.xml",
  5027. "ref/netstandard1.6/ko/System.AppContext.xml",
  5028. "ref/netstandard1.6/ru/System.AppContext.xml",
  5029. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5030. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5031. "ref/xamarinios10/_._",
  5032. "ref/xamarinmac20/_._",
  5033. "ref/xamarintvos10/_._",
  5034. "ref/xamarinwatchos10/_._",
  5035. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5036. "system.appcontext.4.3.0.nupkg.sha512",
  5037. "system.appcontext.nuspec"
  5038. ]
  5039. },
  5040. "System.Buffers/4.5.1": {
  5041. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5042. "type": "package",
  5043. "path": "system.buffers/4.5.1",
  5044. "files": [
  5045. ".nupkg.metadata",
  5046. ".signature.p7s",
  5047. "LICENSE.TXT",
  5048. "THIRD-PARTY-NOTICES.TXT",
  5049. "lib/net461/System.Buffers.dll",
  5050. "lib/net461/System.Buffers.xml",
  5051. "lib/netcoreapp2.0/_._",
  5052. "lib/netstandard1.1/System.Buffers.dll",
  5053. "lib/netstandard1.1/System.Buffers.xml",
  5054. "lib/netstandard2.0/System.Buffers.dll",
  5055. "lib/netstandard2.0/System.Buffers.xml",
  5056. "lib/uap10.0.16299/_._",
  5057. "ref/net45/System.Buffers.dll",
  5058. "ref/net45/System.Buffers.xml",
  5059. "ref/netcoreapp2.0/_._",
  5060. "ref/netstandard1.1/System.Buffers.dll",
  5061. "ref/netstandard1.1/System.Buffers.xml",
  5062. "ref/netstandard2.0/System.Buffers.dll",
  5063. "ref/netstandard2.0/System.Buffers.xml",
  5064. "ref/uap10.0.16299/_._",
  5065. "system.buffers.4.5.1.nupkg.sha512",
  5066. "system.buffers.nuspec",
  5067. "useSharedDesignerContext.txt",
  5068. "version.txt"
  5069. ]
  5070. },
  5071. "System.Collections/4.3.0": {
  5072. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5073. "type": "package",
  5074. "path": "system.collections/4.3.0",
  5075. "files": [
  5076. ".nupkg.metadata",
  5077. ".signature.p7s",
  5078. "ThirdPartyNotices.txt",
  5079. "dotnet_library_license.txt",
  5080. "lib/MonoAndroid10/_._",
  5081. "lib/MonoTouch10/_._",
  5082. "lib/net45/_._",
  5083. "lib/portable-net45+win8+wp8+wpa81/_._",
  5084. "lib/win8/_._",
  5085. "lib/wp80/_._",
  5086. "lib/wpa81/_._",
  5087. "lib/xamarinios10/_._",
  5088. "lib/xamarinmac20/_._",
  5089. "lib/xamarintvos10/_._",
  5090. "lib/xamarinwatchos10/_._",
  5091. "ref/MonoAndroid10/_._",
  5092. "ref/MonoTouch10/_._",
  5093. "ref/net45/_._",
  5094. "ref/netcore50/System.Collections.dll",
  5095. "ref/netcore50/System.Collections.xml",
  5096. "ref/netcore50/de/System.Collections.xml",
  5097. "ref/netcore50/es/System.Collections.xml",
  5098. "ref/netcore50/fr/System.Collections.xml",
  5099. "ref/netcore50/it/System.Collections.xml",
  5100. "ref/netcore50/ja/System.Collections.xml",
  5101. "ref/netcore50/ko/System.Collections.xml",
  5102. "ref/netcore50/ru/System.Collections.xml",
  5103. "ref/netcore50/zh-hans/System.Collections.xml",
  5104. "ref/netcore50/zh-hant/System.Collections.xml",
  5105. "ref/netstandard1.0/System.Collections.dll",
  5106. "ref/netstandard1.0/System.Collections.xml",
  5107. "ref/netstandard1.0/de/System.Collections.xml",
  5108. "ref/netstandard1.0/es/System.Collections.xml",
  5109. "ref/netstandard1.0/fr/System.Collections.xml",
  5110. "ref/netstandard1.0/it/System.Collections.xml",
  5111. "ref/netstandard1.0/ja/System.Collections.xml",
  5112. "ref/netstandard1.0/ko/System.Collections.xml",
  5113. "ref/netstandard1.0/ru/System.Collections.xml",
  5114. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5115. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5116. "ref/netstandard1.3/System.Collections.dll",
  5117. "ref/netstandard1.3/System.Collections.xml",
  5118. "ref/netstandard1.3/de/System.Collections.xml",
  5119. "ref/netstandard1.3/es/System.Collections.xml",
  5120. "ref/netstandard1.3/fr/System.Collections.xml",
  5121. "ref/netstandard1.3/it/System.Collections.xml",
  5122. "ref/netstandard1.3/ja/System.Collections.xml",
  5123. "ref/netstandard1.3/ko/System.Collections.xml",
  5124. "ref/netstandard1.3/ru/System.Collections.xml",
  5125. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5126. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5127. "ref/portable-net45+win8+wp8+wpa81/_._",
  5128. "ref/win8/_._",
  5129. "ref/wp80/_._",
  5130. "ref/wpa81/_._",
  5131. "ref/xamarinios10/_._",
  5132. "ref/xamarinmac20/_._",
  5133. "ref/xamarintvos10/_._",
  5134. "ref/xamarinwatchos10/_._",
  5135. "system.collections.4.3.0.nupkg.sha512",
  5136. "system.collections.nuspec"
  5137. ]
  5138. },
  5139. "System.Collections.Concurrent/4.3.0": {
  5140. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5141. "type": "package",
  5142. "path": "system.collections.concurrent/4.3.0",
  5143. "files": [
  5144. ".nupkg.metadata",
  5145. ".signature.p7s",
  5146. "ThirdPartyNotices.txt",
  5147. "dotnet_library_license.txt",
  5148. "lib/MonoAndroid10/_._",
  5149. "lib/MonoTouch10/_._",
  5150. "lib/net45/_._",
  5151. "lib/netcore50/System.Collections.Concurrent.dll",
  5152. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5153. "lib/portable-net45+win8+wpa81/_._",
  5154. "lib/win8/_._",
  5155. "lib/wpa81/_._",
  5156. "lib/xamarinios10/_._",
  5157. "lib/xamarinmac20/_._",
  5158. "lib/xamarintvos10/_._",
  5159. "lib/xamarinwatchos10/_._",
  5160. "ref/MonoAndroid10/_._",
  5161. "ref/MonoTouch10/_._",
  5162. "ref/net45/_._",
  5163. "ref/netcore50/System.Collections.Concurrent.dll",
  5164. "ref/netcore50/System.Collections.Concurrent.xml",
  5165. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5166. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5167. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5168. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5169. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5170. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5171. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5172. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5173. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5174. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5175. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5176. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5177. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5178. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5179. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5180. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5181. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5182. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5183. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5184. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5185. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5186. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5187. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5188. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5189. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5190. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5191. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5192. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5193. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5194. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5195. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5196. "ref/portable-net45+win8+wpa81/_._",
  5197. "ref/win8/_._",
  5198. "ref/wpa81/_._",
  5199. "ref/xamarinios10/_._",
  5200. "ref/xamarinmac20/_._",
  5201. "ref/xamarintvos10/_._",
  5202. "ref/xamarinwatchos10/_._",
  5203. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5204. "system.collections.concurrent.nuspec"
  5205. ]
  5206. },
  5207. "System.Collections.Immutable/5.0.0": {
  5208. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5209. "type": "package",
  5210. "path": "system.collections.immutable/5.0.0",
  5211. "files": [
  5212. ".nupkg.metadata",
  5213. ".signature.p7s",
  5214. "Icon.png",
  5215. "LICENSE.TXT",
  5216. "THIRD-PARTY-NOTICES.TXT",
  5217. "lib/net461/System.Collections.Immutable.dll",
  5218. "lib/net461/System.Collections.Immutable.xml",
  5219. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5220. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5221. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5222. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5223. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5224. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5225. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5226. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5227. "system.collections.immutable.5.0.0.nupkg.sha512",
  5228. "system.collections.immutable.nuspec",
  5229. "useSharedDesignerContext.txt",
  5230. "version.txt"
  5231. ]
  5232. },
  5233. "System.Collections.NonGeneric/4.3.0": {
  5234. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5235. "type": "package",
  5236. "path": "system.collections.nongeneric/4.3.0",
  5237. "files": [
  5238. ".nupkg.metadata",
  5239. ".signature.p7s",
  5240. "ThirdPartyNotices.txt",
  5241. "dotnet_library_license.txt",
  5242. "lib/MonoAndroid10/_._",
  5243. "lib/MonoTouch10/_._",
  5244. "lib/net46/System.Collections.NonGeneric.dll",
  5245. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5246. "lib/xamarinios10/_._",
  5247. "lib/xamarinmac20/_._",
  5248. "lib/xamarintvos10/_._",
  5249. "lib/xamarinwatchos10/_._",
  5250. "ref/MonoAndroid10/_._",
  5251. "ref/MonoTouch10/_._",
  5252. "ref/net46/System.Collections.NonGeneric.dll",
  5253. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5254. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5255. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5256. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5257. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5258. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5259. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5260. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5261. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5262. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5263. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5264. "ref/xamarinios10/_._",
  5265. "ref/xamarinmac20/_._",
  5266. "ref/xamarintvos10/_._",
  5267. "ref/xamarinwatchos10/_._",
  5268. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5269. "system.collections.nongeneric.nuspec"
  5270. ]
  5271. },
  5272. "System.Collections.Specialized/4.3.0": {
  5273. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5274. "type": "package",
  5275. "path": "system.collections.specialized/4.3.0",
  5276. "files": [
  5277. ".nupkg.metadata",
  5278. ".signature.p7s",
  5279. "ThirdPartyNotices.txt",
  5280. "dotnet_library_license.txt",
  5281. "lib/MonoAndroid10/_._",
  5282. "lib/MonoTouch10/_._",
  5283. "lib/net46/System.Collections.Specialized.dll",
  5284. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5285. "lib/xamarinios10/_._",
  5286. "lib/xamarinmac20/_._",
  5287. "lib/xamarintvos10/_._",
  5288. "lib/xamarinwatchos10/_._",
  5289. "ref/MonoAndroid10/_._",
  5290. "ref/MonoTouch10/_._",
  5291. "ref/net46/System.Collections.Specialized.dll",
  5292. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5293. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5294. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5295. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5296. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5297. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5298. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5299. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5300. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5301. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5302. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5303. "ref/xamarinios10/_._",
  5304. "ref/xamarinmac20/_._",
  5305. "ref/xamarintvos10/_._",
  5306. "ref/xamarinwatchos10/_._",
  5307. "system.collections.specialized.4.3.0.nupkg.sha512",
  5308. "system.collections.specialized.nuspec"
  5309. ]
  5310. },
  5311. "System.ComponentModel/4.3.0": {
  5312. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5313. "type": "package",
  5314. "path": "system.componentmodel/4.3.0",
  5315. "files": [
  5316. ".nupkg.metadata",
  5317. ".signature.p7s",
  5318. "ThirdPartyNotices.txt",
  5319. "dotnet_library_license.txt",
  5320. "lib/MonoAndroid10/_._",
  5321. "lib/MonoTouch10/_._",
  5322. "lib/net45/_._",
  5323. "lib/netcore50/System.ComponentModel.dll",
  5324. "lib/netstandard1.3/System.ComponentModel.dll",
  5325. "lib/portable-net45+win8+wp8+wpa81/_._",
  5326. "lib/win8/_._",
  5327. "lib/wp80/_._",
  5328. "lib/wpa81/_._",
  5329. "lib/xamarinios10/_._",
  5330. "lib/xamarinmac20/_._",
  5331. "lib/xamarintvos10/_._",
  5332. "lib/xamarinwatchos10/_._",
  5333. "ref/MonoAndroid10/_._",
  5334. "ref/MonoTouch10/_._",
  5335. "ref/net45/_._",
  5336. "ref/netcore50/System.ComponentModel.dll",
  5337. "ref/netcore50/System.ComponentModel.xml",
  5338. "ref/netcore50/de/System.ComponentModel.xml",
  5339. "ref/netcore50/es/System.ComponentModel.xml",
  5340. "ref/netcore50/fr/System.ComponentModel.xml",
  5341. "ref/netcore50/it/System.ComponentModel.xml",
  5342. "ref/netcore50/ja/System.ComponentModel.xml",
  5343. "ref/netcore50/ko/System.ComponentModel.xml",
  5344. "ref/netcore50/ru/System.ComponentModel.xml",
  5345. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5346. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5347. "ref/netstandard1.0/System.ComponentModel.dll",
  5348. "ref/netstandard1.0/System.ComponentModel.xml",
  5349. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5350. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5351. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5352. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5353. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5354. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5355. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5356. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5357. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5358. "ref/portable-net45+win8+wp8+wpa81/_._",
  5359. "ref/win8/_._",
  5360. "ref/wp80/_._",
  5361. "ref/wpa81/_._",
  5362. "ref/xamarinios10/_._",
  5363. "ref/xamarinmac20/_._",
  5364. "ref/xamarintvos10/_._",
  5365. "ref/xamarinwatchos10/_._",
  5366. "system.componentmodel.4.3.0.nupkg.sha512",
  5367. "system.componentmodel.nuspec"
  5368. ]
  5369. },
  5370. "System.ComponentModel.Annotations/5.0.0": {
  5371. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5372. "type": "package",
  5373. "path": "system.componentmodel.annotations/5.0.0",
  5374. "files": [
  5375. ".nupkg.metadata",
  5376. ".signature.p7s",
  5377. "Icon.png",
  5378. "LICENSE.TXT",
  5379. "THIRD-PARTY-NOTICES.TXT",
  5380. "lib/MonoAndroid10/_._",
  5381. "lib/MonoTouch10/_._",
  5382. "lib/net45/_._",
  5383. "lib/net461/System.ComponentModel.Annotations.dll",
  5384. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5385. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5386. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5387. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5388. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5389. "lib/portable-net45+win8/_._",
  5390. "lib/win8/_._",
  5391. "lib/xamarinios10/_._",
  5392. "lib/xamarinmac20/_._",
  5393. "lib/xamarintvos10/_._",
  5394. "lib/xamarinwatchos10/_._",
  5395. "ref/MonoAndroid10/_._",
  5396. "ref/MonoTouch10/_._",
  5397. "ref/net45/_._",
  5398. "ref/net461/System.ComponentModel.Annotations.dll",
  5399. "ref/net461/System.ComponentModel.Annotations.xml",
  5400. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5401. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5402. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5403. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5404. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5405. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5406. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5407. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5408. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5409. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5410. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5411. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5412. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5413. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5414. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5415. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5416. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5417. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5418. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5419. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5420. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5421. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5422. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5423. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5424. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5425. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5426. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5427. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5428. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5429. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5430. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5431. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5432. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5433. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5434. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5435. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5436. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5437. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5438. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5439. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5440. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5441. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5442. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5443. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5444. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5445. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5446. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5447. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5448. "ref/portable-net45+win8/_._",
  5449. "ref/win8/_._",
  5450. "ref/xamarinios10/_._",
  5451. "ref/xamarinmac20/_._",
  5452. "ref/xamarintvos10/_._",
  5453. "ref/xamarinwatchos10/_._",
  5454. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5455. "system.componentmodel.annotations.nuspec",
  5456. "useSharedDesignerContext.txt",
  5457. "version.txt"
  5458. ]
  5459. },
  5460. "System.ComponentModel.Primitives/4.3.0": {
  5461. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5462. "type": "package",
  5463. "path": "system.componentmodel.primitives/4.3.0",
  5464. "files": [
  5465. ".nupkg.metadata",
  5466. ".signature.p7s",
  5467. "ThirdPartyNotices.txt",
  5468. "dotnet_library_license.txt",
  5469. "lib/MonoAndroid10/_._",
  5470. "lib/MonoTouch10/_._",
  5471. "lib/net45/System.ComponentModel.Primitives.dll",
  5472. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5473. "lib/xamarinios10/_._",
  5474. "lib/xamarinmac20/_._",
  5475. "lib/xamarintvos10/_._",
  5476. "lib/xamarinwatchos10/_._",
  5477. "ref/MonoAndroid10/_._",
  5478. "ref/MonoTouch10/_._",
  5479. "ref/net45/System.ComponentModel.Primitives.dll",
  5480. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5481. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5482. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5483. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5484. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5485. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5486. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5487. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5488. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5489. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5490. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5491. "ref/xamarinios10/_._",
  5492. "ref/xamarinmac20/_._",
  5493. "ref/xamarintvos10/_._",
  5494. "ref/xamarinwatchos10/_._",
  5495. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5496. "system.componentmodel.primitives.nuspec"
  5497. ]
  5498. },
  5499. "System.ComponentModel.TypeConverter/4.3.0": {
  5500. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5501. "type": "package",
  5502. "path": "system.componentmodel.typeconverter/4.3.0",
  5503. "files": [
  5504. ".nupkg.metadata",
  5505. ".signature.p7s",
  5506. "ThirdPartyNotices.txt",
  5507. "dotnet_library_license.txt",
  5508. "lib/MonoAndroid10/_._",
  5509. "lib/MonoTouch10/_._",
  5510. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5511. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5512. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5513. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5514. "lib/xamarinios10/_._",
  5515. "lib/xamarinmac20/_._",
  5516. "lib/xamarintvos10/_._",
  5517. "lib/xamarinwatchos10/_._",
  5518. "ref/MonoAndroid10/_._",
  5519. "ref/MonoTouch10/_._",
  5520. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5521. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5522. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5523. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5524. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5525. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5526. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5527. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5528. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5529. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5530. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5531. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5532. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5533. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5534. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5535. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5536. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5537. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5538. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5539. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5540. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5541. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5542. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5543. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5544. "ref/xamarinios10/_._",
  5545. "ref/xamarinmac20/_._",
  5546. "ref/xamarintvos10/_._",
  5547. "ref/xamarinwatchos10/_._",
  5548. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5549. "system.componentmodel.typeconverter.nuspec"
  5550. ]
  5551. },
  5552. "System.Configuration.ConfigurationManager/4.7.0": {
  5553. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5554. "type": "package",
  5555. "path": "system.configuration.configurationmanager/4.7.0",
  5556. "files": [
  5557. ".nupkg.metadata",
  5558. ".signature.p7s",
  5559. "LICENSE.TXT",
  5560. "THIRD-PARTY-NOTICES.TXT",
  5561. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5562. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5563. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5564. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5565. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5566. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5567. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5568. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5569. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5570. "system.configuration.configurationmanager.nuspec",
  5571. "useSharedDesignerContext.txt",
  5572. "version.txt"
  5573. ]
  5574. },
  5575. "System.Console/4.3.0": {
  5576. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5577. "type": "package",
  5578. "path": "system.console/4.3.0",
  5579. "files": [
  5580. ".nupkg.metadata",
  5581. ".signature.p7s",
  5582. "ThirdPartyNotices.txt",
  5583. "dotnet_library_license.txt",
  5584. "lib/MonoAndroid10/_._",
  5585. "lib/MonoTouch10/_._",
  5586. "lib/net46/System.Console.dll",
  5587. "lib/xamarinios10/_._",
  5588. "lib/xamarinmac20/_._",
  5589. "lib/xamarintvos10/_._",
  5590. "lib/xamarinwatchos10/_._",
  5591. "ref/MonoAndroid10/_._",
  5592. "ref/MonoTouch10/_._",
  5593. "ref/net46/System.Console.dll",
  5594. "ref/netstandard1.3/System.Console.dll",
  5595. "ref/netstandard1.3/System.Console.xml",
  5596. "ref/netstandard1.3/de/System.Console.xml",
  5597. "ref/netstandard1.3/es/System.Console.xml",
  5598. "ref/netstandard1.3/fr/System.Console.xml",
  5599. "ref/netstandard1.3/it/System.Console.xml",
  5600. "ref/netstandard1.3/ja/System.Console.xml",
  5601. "ref/netstandard1.3/ko/System.Console.xml",
  5602. "ref/netstandard1.3/ru/System.Console.xml",
  5603. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5604. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5605. "ref/xamarinios10/_._",
  5606. "ref/xamarinmac20/_._",
  5607. "ref/xamarintvos10/_._",
  5608. "ref/xamarinwatchos10/_._",
  5609. "system.console.4.3.0.nupkg.sha512",
  5610. "system.console.nuspec"
  5611. ]
  5612. },
  5613. "System.Diagnostics.Debug/4.3.0": {
  5614. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5615. "type": "package",
  5616. "path": "system.diagnostics.debug/4.3.0",
  5617. "files": [
  5618. ".nupkg.metadata",
  5619. ".signature.p7s",
  5620. "ThirdPartyNotices.txt",
  5621. "dotnet_library_license.txt",
  5622. "lib/MonoAndroid10/_._",
  5623. "lib/MonoTouch10/_._",
  5624. "lib/net45/_._",
  5625. "lib/portable-net45+win8+wp8+wpa81/_._",
  5626. "lib/win8/_._",
  5627. "lib/wp80/_._",
  5628. "lib/wpa81/_._",
  5629. "lib/xamarinios10/_._",
  5630. "lib/xamarinmac20/_._",
  5631. "lib/xamarintvos10/_._",
  5632. "lib/xamarinwatchos10/_._",
  5633. "ref/MonoAndroid10/_._",
  5634. "ref/MonoTouch10/_._",
  5635. "ref/net45/_._",
  5636. "ref/netcore50/System.Diagnostics.Debug.dll",
  5637. "ref/netcore50/System.Diagnostics.Debug.xml",
  5638. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5639. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5640. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5641. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5642. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5643. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5644. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5645. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5646. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5647. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5648. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5649. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5650. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5651. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5652. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5653. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5654. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5655. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5656. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5657. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5658. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5659. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5660. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5661. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5662. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5663. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5664. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5665. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5666. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5667. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5668. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5669. "ref/portable-net45+win8+wp8+wpa81/_._",
  5670. "ref/win8/_._",
  5671. "ref/wp80/_._",
  5672. "ref/wpa81/_._",
  5673. "ref/xamarinios10/_._",
  5674. "ref/xamarinmac20/_._",
  5675. "ref/xamarintvos10/_._",
  5676. "ref/xamarinwatchos10/_._",
  5677. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5678. "system.diagnostics.debug.nuspec"
  5679. ]
  5680. },
  5681. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5682. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5683. "type": "package",
  5684. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5685. "files": [
  5686. ".nupkg.metadata",
  5687. ".signature.p7s",
  5688. "Icon.png",
  5689. "LICENSE.TXT",
  5690. "THIRD-PARTY-NOTICES.TXT",
  5691. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5692. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5693. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5694. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5695. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5696. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5697. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5698. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5699. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5700. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5701. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5702. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5703. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5704. "system.diagnostics.diagnosticsource.nuspec",
  5705. "useSharedDesignerContext.txt",
  5706. "version.txt"
  5707. ]
  5708. },
  5709. "System.Diagnostics.Tools/4.3.0": {
  5710. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5711. "type": "package",
  5712. "path": "system.diagnostics.tools/4.3.0",
  5713. "files": [
  5714. ".nupkg.metadata",
  5715. ".signature.p7s",
  5716. "ThirdPartyNotices.txt",
  5717. "dotnet_library_license.txt",
  5718. "lib/MonoAndroid10/_._",
  5719. "lib/MonoTouch10/_._",
  5720. "lib/net45/_._",
  5721. "lib/portable-net45+win8+wp8+wpa81/_._",
  5722. "lib/win8/_._",
  5723. "lib/wp80/_._",
  5724. "lib/wpa81/_._",
  5725. "lib/xamarinios10/_._",
  5726. "lib/xamarinmac20/_._",
  5727. "lib/xamarintvos10/_._",
  5728. "lib/xamarinwatchos10/_._",
  5729. "ref/MonoAndroid10/_._",
  5730. "ref/MonoTouch10/_._",
  5731. "ref/net45/_._",
  5732. "ref/netcore50/System.Diagnostics.Tools.dll",
  5733. "ref/netcore50/System.Diagnostics.Tools.xml",
  5734. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5735. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5736. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5737. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5738. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5739. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5740. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5741. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5742. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5743. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5744. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5745. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5746. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5747. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5748. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5749. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5750. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5751. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5752. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5753. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5754. "ref/portable-net45+win8+wp8+wpa81/_._",
  5755. "ref/win8/_._",
  5756. "ref/wp80/_._",
  5757. "ref/wpa81/_._",
  5758. "ref/xamarinios10/_._",
  5759. "ref/xamarinmac20/_._",
  5760. "ref/xamarintvos10/_._",
  5761. "ref/xamarinwatchos10/_._",
  5762. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5763. "system.diagnostics.tools.nuspec"
  5764. ]
  5765. },
  5766. "System.Diagnostics.TraceSource/4.3.0": {
  5767. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5768. "type": "package",
  5769. "path": "system.diagnostics.tracesource/4.3.0",
  5770. "files": [
  5771. ".nupkg.metadata",
  5772. ".signature.p7s",
  5773. "ThirdPartyNotices.txt",
  5774. "dotnet_library_license.txt",
  5775. "lib/MonoAndroid10/_._",
  5776. "lib/MonoTouch10/_._",
  5777. "lib/net46/System.Diagnostics.TraceSource.dll",
  5778. "lib/xamarinios10/_._",
  5779. "lib/xamarinmac20/_._",
  5780. "lib/xamarintvos10/_._",
  5781. "lib/xamarinwatchos10/_._",
  5782. "ref/MonoAndroid10/_._",
  5783. "ref/MonoTouch10/_._",
  5784. "ref/net46/System.Diagnostics.TraceSource.dll",
  5785. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5786. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5787. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5788. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5789. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5790. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5791. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5792. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5793. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5794. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5795. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5796. "ref/xamarinios10/_._",
  5797. "ref/xamarinmac20/_._",
  5798. "ref/xamarintvos10/_._",
  5799. "ref/xamarinwatchos10/_._",
  5800. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5801. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5802. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5803. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5804. "system.diagnostics.tracesource.nuspec"
  5805. ]
  5806. },
  5807. "System.Diagnostics.Tracing/4.3.0": {
  5808. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5809. "type": "package",
  5810. "path": "system.diagnostics.tracing/4.3.0",
  5811. "files": [
  5812. ".nupkg.metadata",
  5813. ".signature.p7s",
  5814. "ThirdPartyNotices.txt",
  5815. "dotnet_library_license.txt",
  5816. "lib/MonoAndroid10/_._",
  5817. "lib/MonoTouch10/_._",
  5818. "lib/net45/_._",
  5819. "lib/net462/System.Diagnostics.Tracing.dll",
  5820. "lib/portable-net45+win8+wpa81/_._",
  5821. "lib/win8/_._",
  5822. "lib/wpa81/_._",
  5823. "lib/xamarinios10/_._",
  5824. "lib/xamarinmac20/_._",
  5825. "lib/xamarintvos10/_._",
  5826. "lib/xamarinwatchos10/_._",
  5827. "ref/MonoAndroid10/_._",
  5828. "ref/MonoTouch10/_._",
  5829. "ref/net45/_._",
  5830. "ref/net462/System.Diagnostics.Tracing.dll",
  5831. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5832. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5833. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5834. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5835. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5836. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5837. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5838. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5839. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5840. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5841. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5842. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5843. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5844. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5845. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5846. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5847. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5848. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5849. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5850. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5851. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5852. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5853. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5854. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5855. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5856. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5857. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5858. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5859. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5860. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5861. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5862. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5863. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5864. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5865. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5866. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5867. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5868. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5869. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5870. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5871. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5872. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5873. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5874. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5875. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5876. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5877. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5878. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5879. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5880. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5881. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5882. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5883. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5884. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5885. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5886. "ref/portable-net45+win8+wpa81/_._",
  5887. "ref/win8/_._",
  5888. "ref/wpa81/_._",
  5889. "ref/xamarinios10/_._",
  5890. "ref/xamarinmac20/_._",
  5891. "ref/xamarintvos10/_._",
  5892. "ref/xamarinwatchos10/_._",
  5893. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5894. "system.diagnostics.tracing.nuspec"
  5895. ]
  5896. },
  5897. "System.Drawing.Common/5.0.3": {
  5898. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5899. "type": "package",
  5900. "path": "system.drawing.common/5.0.3",
  5901. "files": [
  5902. ".nupkg.metadata",
  5903. ".signature.p7s",
  5904. "Icon.png",
  5905. "LICENSE.TXT",
  5906. "THIRD-PARTY-NOTICES.TXT",
  5907. "lib/MonoAndroid10/_._",
  5908. "lib/MonoTouch10/_._",
  5909. "lib/net461/System.Drawing.Common.dll",
  5910. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5911. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5912. "lib/netstandard2.0/System.Drawing.Common.dll",
  5913. "lib/xamarinios10/_._",
  5914. "lib/xamarinmac20/_._",
  5915. "lib/xamarintvos10/_._",
  5916. "lib/xamarinwatchos10/_._",
  5917. "ref/MonoAndroid10/_._",
  5918. "ref/MonoTouch10/_._",
  5919. "ref/net461/System.Drawing.Common.dll",
  5920. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5921. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5922. "ref/netstandard2.0/System.Drawing.Common.dll",
  5923. "ref/xamarinios10/_._",
  5924. "ref/xamarinmac20/_._",
  5925. "ref/xamarintvos10/_._",
  5926. "ref/xamarinwatchos10/_._",
  5927. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5928. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5929. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5930. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5931. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5932. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5933. "system.drawing.common.5.0.3.nupkg.sha512",
  5934. "system.drawing.common.nuspec",
  5935. "useSharedDesignerContext.txt",
  5936. "version.txt"
  5937. ]
  5938. },
  5939. "System.Dynamic.Runtime/4.3.0": {
  5940. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  5941. "type": "package",
  5942. "path": "system.dynamic.runtime/4.3.0",
  5943. "files": [
  5944. ".nupkg.metadata",
  5945. ".signature.p7s",
  5946. "ThirdPartyNotices.txt",
  5947. "dotnet_library_license.txt",
  5948. "lib/MonoAndroid10/_._",
  5949. "lib/MonoTouch10/_._",
  5950. "lib/net45/_._",
  5951. "lib/netcore50/System.Dynamic.Runtime.dll",
  5952. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5953. "lib/portable-net45+win8+wp8+wpa81/_._",
  5954. "lib/win8/_._",
  5955. "lib/wp80/_._",
  5956. "lib/wpa81/_._",
  5957. "lib/xamarinios10/_._",
  5958. "lib/xamarinmac20/_._",
  5959. "lib/xamarintvos10/_._",
  5960. "lib/xamarinwatchos10/_._",
  5961. "ref/MonoAndroid10/_._",
  5962. "ref/MonoTouch10/_._",
  5963. "ref/net45/_._",
  5964. "ref/netcore50/System.Dynamic.Runtime.dll",
  5965. "ref/netcore50/System.Dynamic.Runtime.xml",
  5966. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5967. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5968. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5969. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5970. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5971. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5972. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5973. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5974. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5975. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5976. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5977. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5978. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5979. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5980. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5981. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5982. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5983. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5984. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5985. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5986. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5987. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5988. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5989. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5990. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5991. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5992. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5993. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5994. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5995. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5996. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5997. "ref/portable-net45+win8+wp8+wpa81/_._",
  5998. "ref/win8/_._",
  5999. "ref/wp80/_._",
  6000. "ref/wpa81/_._",
  6001. "ref/xamarinios10/_._",
  6002. "ref/xamarinmac20/_._",
  6003. "ref/xamarintvos10/_._",
  6004. "ref/xamarinwatchos10/_._",
  6005. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6006. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6007. "system.dynamic.runtime.nuspec"
  6008. ]
  6009. },
  6010. "System.Globalization/4.3.0": {
  6011. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6012. "type": "package",
  6013. "path": "system.globalization/4.3.0",
  6014. "files": [
  6015. ".nupkg.metadata",
  6016. ".signature.p7s",
  6017. "ThirdPartyNotices.txt",
  6018. "dotnet_library_license.txt",
  6019. "lib/MonoAndroid10/_._",
  6020. "lib/MonoTouch10/_._",
  6021. "lib/net45/_._",
  6022. "lib/portable-net45+win8+wp8+wpa81/_._",
  6023. "lib/win8/_._",
  6024. "lib/wp80/_._",
  6025. "lib/wpa81/_._",
  6026. "lib/xamarinios10/_._",
  6027. "lib/xamarinmac20/_._",
  6028. "lib/xamarintvos10/_._",
  6029. "lib/xamarinwatchos10/_._",
  6030. "ref/MonoAndroid10/_._",
  6031. "ref/MonoTouch10/_._",
  6032. "ref/net45/_._",
  6033. "ref/netcore50/System.Globalization.dll",
  6034. "ref/netcore50/System.Globalization.xml",
  6035. "ref/netcore50/de/System.Globalization.xml",
  6036. "ref/netcore50/es/System.Globalization.xml",
  6037. "ref/netcore50/fr/System.Globalization.xml",
  6038. "ref/netcore50/it/System.Globalization.xml",
  6039. "ref/netcore50/ja/System.Globalization.xml",
  6040. "ref/netcore50/ko/System.Globalization.xml",
  6041. "ref/netcore50/ru/System.Globalization.xml",
  6042. "ref/netcore50/zh-hans/System.Globalization.xml",
  6043. "ref/netcore50/zh-hant/System.Globalization.xml",
  6044. "ref/netstandard1.0/System.Globalization.dll",
  6045. "ref/netstandard1.0/System.Globalization.xml",
  6046. "ref/netstandard1.0/de/System.Globalization.xml",
  6047. "ref/netstandard1.0/es/System.Globalization.xml",
  6048. "ref/netstandard1.0/fr/System.Globalization.xml",
  6049. "ref/netstandard1.0/it/System.Globalization.xml",
  6050. "ref/netstandard1.0/ja/System.Globalization.xml",
  6051. "ref/netstandard1.0/ko/System.Globalization.xml",
  6052. "ref/netstandard1.0/ru/System.Globalization.xml",
  6053. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6054. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6055. "ref/netstandard1.3/System.Globalization.dll",
  6056. "ref/netstandard1.3/System.Globalization.xml",
  6057. "ref/netstandard1.3/de/System.Globalization.xml",
  6058. "ref/netstandard1.3/es/System.Globalization.xml",
  6059. "ref/netstandard1.3/fr/System.Globalization.xml",
  6060. "ref/netstandard1.3/it/System.Globalization.xml",
  6061. "ref/netstandard1.3/ja/System.Globalization.xml",
  6062. "ref/netstandard1.3/ko/System.Globalization.xml",
  6063. "ref/netstandard1.3/ru/System.Globalization.xml",
  6064. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6065. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6066. "ref/portable-net45+win8+wp8+wpa81/_._",
  6067. "ref/win8/_._",
  6068. "ref/wp80/_._",
  6069. "ref/wpa81/_._",
  6070. "ref/xamarinios10/_._",
  6071. "ref/xamarinmac20/_._",
  6072. "ref/xamarintvos10/_._",
  6073. "ref/xamarinwatchos10/_._",
  6074. "system.globalization.4.3.0.nupkg.sha512",
  6075. "system.globalization.nuspec"
  6076. ]
  6077. },
  6078. "System.Globalization.Calendars/4.3.0": {
  6079. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6080. "type": "package",
  6081. "path": "system.globalization.calendars/4.3.0",
  6082. "files": [
  6083. ".nupkg.metadata",
  6084. ".signature.p7s",
  6085. "ThirdPartyNotices.txt",
  6086. "dotnet_library_license.txt",
  6087. "lib/MonoAndroid10/_._",
  6088. "lib/MonoTouch10/_._",
  6089. "lib/net46/System.Globalization.Calendars.dll",
  6090. "lib/xamarinios10/_._",
  6091. "lib/xamarinmac20/_._",
  6092. "lib/xamarintvos10/_._",
  6093. "lib/xamarinwatchos10/_._",
  6094. "ref/MonoAndroid10/_._",
  6095. "ref/MonoTouch10/_._",
  6096. "ref/net46/System.Globalization.Calendars.dll",
  6097. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6098. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6099. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6100. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6101. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6102. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6103. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6104. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6105. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6106. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6107. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6108. "ref/xamarinios10/_._",
  6109. "ref/xamarinmac20/_._",
  6110. "ref/xamarintvos10/_._",
  6111. "ref/xamarinwatchos10/_._",
  6112. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6113. "system.globalization.calendars.nuspec"
  6114. ]
  6115. },
  6116. "System.Globalization.Extensions/4.3.0": {
  6117. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6118. "type": "package",
  6119. "path": "system.globalization.extensions/4.3.0",
  6120. "files": [
  6121. ".nupkg.metadata",
  6122. ".signature.p7s",
  6123. "ThirdPartyNotices.txt",
  6124. "dotnet_library_license.txt",
  6125. "lib/MonoAndroid10/_._",
  6126. "lib/MonoTouch10/_._",
  6127. "lib/net46/System.Globalization.Extensions.dll",
  6128. "lib/xamarinios10/_._",
  6129. "lib/xamarinmac20/_._",
  6130. "lib/xamarintvos10/_._",
  6131. "lib/xamarinwatchos10/_._",
  6132. "ref/MonoAndroid10/_._",
  6133. "ref/MonoTouch10/_._",
  6134. "ref/net46/System.Globalization.Extensions.dll",
  6135. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6136. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6137. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6138. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6139. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6140. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6141. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6142. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6143. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6144. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6145. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6146. "ref/xamarinios10/_._",
  6147. "ref/xamarinmac20/_._",
  6148. "ref/xamarintvos10/_._",
  6149. "ref/xamarinwatchos10/_._",
  6150. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6151. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6152. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6153. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6154. "system.globalization.extensions.nuspec"
  6155. ]
  6156. },
  6157. "System.IO/4.3.0": {
  6158. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6159. "type": "package",
  6160. "path": "system.io/4.3.0",
  6161. "files": [
  6162. ".nupkg.metadata",
  6163. ".signature.p7s",
  6164. "ThirdPartyNotices.txt",
  6165. "dotnet_library_license.txt",
  6166. "lib/MonoAndroid10/_._",
  6167. "lib/MonoTouch10/_._",
  6168. "lib/net45/_._",
  6169. "lib/net462/System.IO.dll",
  6170. "lib/portable-net45+win8+wp8+wpa81/_._",
  6171. "lib/win8/_._",
  6172. "lib/wp80/_._",
  6173. "lib/wpa81/_._",
  6174. "lib/xamarinios10/_._",
  6175. "lib/xamarinmac20/_._",
  6176. "lib/xamarintvos10/_._",
  6177. "lib/xamarinwatchos10/_._",
  6178. "ref/MonoAndroid10/_._",
  6179. "ref/MonoTouch10/_._",
  6180. "ref/net45/_._",
  6181. "ref/net462/System.IO.dll",
  6182. "ref/netcore50/System.IO.dll",
  6183. "ref/netcore50/System.IO.xml",
  6184. "ref/netcore50/de/System.IO.xml",
  6185. "ref/netcore50/es/System.IO.xml",
  6186. "ref/netcore50/fr/System.IO.xml",
  6187. "ref/netcore50/it/System.IO.xml",
  6188. "ref/netcore50/ja/System.IO.xml",
  6189. "ref/netcore50/ko/System.IO.xml",
  6190. "ref/netcore50/ru/System.IO.xml",
  6191. "ref/netcore50/zh-hans/System.IO.xml",
  6192. "ref/netcore50/zh-hant/System.IO.xml",
  6193. "ref/netstandard1.0/System.IO.dll",
  6194. "ref/netstandard1.0/System.IO.xml",
  6195. "ref/netstandard1.0/de/System.IO.xml",
  6196. "ref/netstandard1.0/es/System.IO.xml",
  6197. "ref/netstandard1.0/fr/System.IO.xml",
  6198. "ref/netstandard1.0/it/System.IO.xml",
  6199. "ref/netstandard1.0/ja/System.IO.xml",
  6200. "ref/netstandard1.0/ko/System.IO.xml",
  6201. "ref/netstandard1.0/ru/System.IO.xml",
  6202. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6203. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6204. "ref/netstandard1.3/System.IO.dll",
  6205. "ref/netstandard1.3/System.IO.xml",
  6206. "ref/netstandard1.3/de/System.IO.xml",
  6207. "ref/netstandard1.3/es/System.IO.xml",
  6208. "ref/netstandard1.3/fr/System.IO.xml",
  6209. "ref/netstandard1.3/it/System.IO.xml",
  6210. "ref/netstandard1.3/ja/System.IO.xml",
  6211. "ref/netstandard1.3/ko/System.IO.xml",
  6212. "ref/netstandard1.3/ru/System.IO.xml",
  6213. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6214. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6215. "ref/netstandard1.5/System.IO.dll",
  6216. "ref/netstandard1.5/System.IO.xml",
  6217. "ref/netstandard1.5/de/System.IO.xml",
  6218. "ref/netstandard1.5/es/System.IO.xml",
  6219. "ref/netstandard1.5/fr/System.IO.xml",
  6220. "ref/netstandard1.5/it/System.IO.xml",
  6221. "ref/netstandard1.5/ja/System.IO.xml",
  6222. "ref/netstandard1.5/ko/System.IO.xml",
  6223. "ref/netstandard1.5/ru/System.IO.xml",
  6224. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6225. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6226. "ref/portable-net45+win8+wp8+wpa81/_._",
  6227. "ref/win8/_._",
  6228. "ref/wp80/_._",
  6229. "ref/wpa81/_._",
  6230. "ref/xamarinios10/_._",
  6231. "ref/xamarinmac20/_._",
  6232. "ref/xamarintvos10/_._",
  6233. "ref/xamarinwatchos10/_._",
  6234. "system.io.4.3.0.nupkg.sha512",
  6235. "system.io.nuspec"
  6236. ]
  6237. },
  6238. "System.IO.Compression/4.3.0": {
  6239. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6240. "type": "package",
  6241. "path": "system.io.compression/4.3.0",
  6242. "files": [
  6243. ".nupkg.metadata",
  6244. ".signature.p7s",
  6245. "ThirdPartyNotices.txt",
  6246. "dotnet_library_license.txt",
  6247. "lib/MonoAndroid10/_._",
  6248. "lib/MonoTouch10/_._",
  6249. "lib/net45/_._",
  6250. "lib/net46/System.IO.Compression.dll",
  6251. "lib/portable-net45+win8+wpa81/_._",
  6252. "lib/win8/_._",
  6253. "lib/wpa81/_._",
  6254. "lib/xamarinios10/_._",
  6255. "lib/xamarinmac20/_._",
  6256. "lib/xamarintvos10/_._",
  6257. "lib/xamarinwatchos10/_._",
  6258. "ref/MonoAndroid10/_._",
  6259. "ref/MonoTouch10/_._",
  6260. "ref/net45/_._",
  6261. "ref/net46/System.IO.Compression.dll",
  6262. "ref/netcore50/System.IO.Compression.dll",
  6263. "ref/netcore50/System.IO.Compression.xml",
  6264. "ref/netcore50/de/System.IO.Compression.xml",
  6265. "ref/netcore50/es/System.IO.Compression.xml",
  6266. "ref/netcore50/fr/System.IO.Compression.xml",
  6267. "ref/netcore50/it/System.IO.Compression.xml",
  6268. "ref/netcore50/ja/System.IO.Compression.xml",
  6269. "ref/netcore50/ko/System.IO.Compression.xml",
  6270. "ref/netcore50/ru/System.IO.Compression.xml",
  6271. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6272. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6273. "ref/netstandard1.1/System.IO.Compression.dll",
  6274. "ref/netstandard1.1/System.IO.Compression.xml",
  6275. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6276. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6277. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6278. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6279. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6280. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6281. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6282. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6283. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6284. "ref/netstandard1.3/System.IO.Compression.dll",
  6285. "ref/netstandard1.3/System.IO.Compression.xml",
  6286. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6287. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6288. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6289. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6290. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6291. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6292. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6293. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6294. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6295. "ref/portable-net45+win8+wpa81/_._",
  6296. "ref/win8/_._",
  6297. "ref/wpa81/_._",
  6298. "ref/xamarinios10/_._",
  6299. "ref/xamarinmac20/_._",
  6300. "ref/xamarintvos10/_._",
  6301. "ref/xamarinwatchos10/_._",
  6302. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6303. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6304. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6305. "system.io.compression.4.3.0.nupkg.sha512",
  6306. "system.io.compression.nuspec"
  6307. ]
  6308. },
  6309. "System.IO.Compression.ZipFile/4.3.0": {
  6310. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6311. "type": "package",
  6312. "path": "system.io.compression.zipfile/4.3.0",
  6313. "files": [
  6314. ".nupkg.metadata",
  6315. ".signature.p7s",
  6316. "ThirdPartyNotices.txt",
  6317. "dotnet_library_license.txt",
  6318. "lib/MonoAndroid10/_._",
  6319. "lib/MonoTouch10/_._",
  6320. "lib/net46/System.IO.Compression.ZipFile.dll",
  6321. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6322. "lib/xamarinios10/_._",
  6323. "lib/xamarinmac20/_._",
  6324. "lib/xamarintvos10/_._",
  6325. "lib/xamarinwatchos10/_._",
  6326. "ref/MonoAndroid10/_._",
  6327. "ref/MonoTouch10/_._",
  6328. "ref/net46/System.IO.Compression.ZipFile.dll",
  6329. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6330. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6331. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6332. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6333. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6334. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6335. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6336. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6337. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6338. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6339. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6340. "ref/xamarinios10/_._",
  6341. "ref/xamarinmac20/_._",
  6342. "ref/xamarintvos10/_._",
  6343. "ref/xamarinwatchos10/_._",
  6344. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6345. "system.io.compression.zipfile.nuspec"
  6346. ]
  6347. },
  6348. "System.IO.FileSystem/4.3.0": {
  6349. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6350. "type": "package",
  6351. "path": "system.io.filesystem/4.3.0",
  6352. "files": [
  6353. ".nupkg.metadata",
  6354. ".signature.p7s",
  6355. "ThirdPartyNotices.txt",
  6356. "dotnet_library_license.txt",
  6357. "lib/MonoAndroid10/_._",
  6358. "lib/MonoTouch10/_._",
  6359. "lib/net46/System.IO.FileSystem.dll",
  6360. "lib/xamarinios10/_._",
  6361. "lib/xamarinmac20/_._",
  6362. "lib/xamarintvos10/_._",
  6363. "lib/xamarinwatchos10/_._",
  6364. "ref/MonoAndroid10/_._",
  6365. "ref/MonoTouch10/_._",
  6366. "ref/net46/System.IO.FileSystem.dll",
  6367. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6368. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6369. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6370. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6371. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6372. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6373. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6374. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6375. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6376. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6377. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6378. "ref/xamarinios10/_._",
  6379. "ref/xamarinmac20/_._",
  6380. "ref/xamarintvos10/_._",
  6381. "ref/xamarinwatchos10/_._",
  6382. "system.io.filesystem.4.3.0.nupkg.sha512",
  6383. "system.io.filesystem.nuspec"
  6384. ]
  6385. },
  6386. "System.IO.FileSystem.Primitives/4.3.0": {
  6387. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6388. "type": "package",
  6389. "path": "system.io.filesystem.primitives/4.3.0",
  6390. "files": [
  6391. ".nupkg.metadata",
  6392. ".signature.p7s",
  6393. "ThirdPartyNotices.txt",
  6394. "dotnet_library_license.txt",
  6395. "lib/MonoAndroid10/_._",
  6396. "lib/MonoTouch10/_._",
  6397. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6398. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6399. "lib/xamarinios10/_._",
  6400. "lib/xamarinmac20/_._",
  6401. "lib/xamarintvos10/_._",
  6402. "lib/xamarinwatchos10/_._",
  6403. "ref/MonoAndroid10/_._",
  6404. "ref/MonoTouch10/_._",
  6405. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6406. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6407. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6408. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6409. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6410. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6411. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6412. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6413. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6414. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6415. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6416. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6417. "ref/xamarinios10/_._",
  6418. "ref/xamarinmac20/_._",
  6419. "ref/xamarintvos10/_._",
  6420. "ref/xamarinwatchos10/_._",
  6421. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6422. "system.io.filesystem.primitives.nuspec"
  6423. ]
  6424. },
  6425. "System.IO.Pipelines/5.0.0": {
  6426. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6427. "type": "package",
  6428. "path": "system.io.pipelines/5.0.0",
  6429. "files": [
  6430. ".nupkg.metadata",
  6431. ".signature.p7s",
  6432. "Icon.png",
  6433. "LICENSE.TXT",
  6434. "THIRD-PARTY-NOTICES.TXT",
  6435. "lib/net461/System.IO.Pipelines.dll",
  6436. "lib/net461/System.IO.Pipelines.xml",
  6437. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6438. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6439. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6440. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6441. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6442. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6443. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6444. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6445. "system.io.pipelines.5.0.0.nupkg.sha512",
  6446. "system.io.pipelines.nuspec",
  6447. "useSharedDesignerContext.txt",
  6448. "version.txt"
  6449. ]
  6450. },
  6451. "System.Linq/4.3.0": {
  6452. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6453. "type": "package",
  6454. "path": "system.linq/4.3.0",
  6455. "files": [
  6456. ".nupkg.metadata",
  6457. ".signature.p7s",
  6458. "ThirdPartyNotices.txt",
  6459. "dotnet_library_license.txt",
  6460. "lib/MonoAndroid10/_._",
  6461. "lib/MonoTouch10/_._",
  6462. "lib/net45/_._",
  6463. "lib/net463/System.Linq.dll",
  6464. "lib/netcore50/System.Linq.dll",
  6465. "lib/netstandard1.6/System.Linq.dll",
  6466. "lib/portable-net45+win8+wp8+wpa81/_._",
  6467. "lib/win8/_._",
  6468. "lib/wp80/_._",
  6469. "lib/wpa81/_._",
  6470. "lib/xamarinios10/_._",
  6471. "lib/xamarinmac20/_._",
  6472. "lib/xamarintvos10/_._",
  6473. "lib/xamarinwatchos10/_._",
  6474. "ref/MonoAndroid10/_._",
  6475. "ref/MonoTouch10/_._",
  6476. "ref/net45/_._",
  6477. "ref/net463/System.Linq.dll",
  6478. "ref/netcore50/System.Linq.dll",
  6479. "ref/netcore50/System.Linq.xml",
  6480. "ref/netcore50/de/System.Linq.xml",
  6481. "ref/netcore50/es/System.Linq.xml",
  6482. "ref/netcore50/fr/System.Linq.xml",
  6483. "ref/netcore50/it/System.Linq.xml",
  6484. "ref/netcore50/ja/System.Linq.xml",
  6485. "ref/netcore50/ko/System.Linq.xml",
  6486. "ref/netcore50/ru/System.Linq.xml",
  6487. "ref/netcore50/zh-hans/System.Linq.xml",
  6488. "ref/netcore50/zh-hant/System.Linq.xml",
  6489. "ref/netstandard1.0/System.Linq.dll",
  6490. "ref/netstandard1.0/System.Linq.xml",
  6491. "ref/netstandard1.0/de/System.Linq.xml",
  6492. "ref/netstandard1.0/es/System.Linq.xml",
  6493. "ref/netstandard1.0/fr/System.Linq.xml",
  6494. "ref/netstandard1.0/it/System.Linq.xml",
  6495. "ref/netstandard1.0/ja/System.Linq.xml",
  6496. "ref/netstandard1.0/ko/System.Linq.xml",
  6497. "ref/netstandard1.0/ru/System.Linq.xml",
  6498. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6499. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6500. "ref/netstandard1.6/System.Linq.dll",
  6501. "ref/netstandard1.6/System.Linq.xml",
  6502. "ref/netstandard1.6/de/System.Linq.xml",
  6503. "ref/netstandard1.6/es/System.Linq.xml",
  6504. "ref/netstandard1.6/fr/System.Linq.xml",
  6505. "ref/netstandard1.6/it/System.Linq.xml",
  6506. "ref/netstandard1.6/ja/System.Linq.xml",
  6507. "ref/netstandard1.6/ko/System.Linq.xml",
  6508. "ref/netstandard1.6/ru/System.Linq.xml",
  6509. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6510. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6511. "ref/portable-net45+win8+wp8+wpa81/_._",
  6512. "ref/win8/_._",
  6513. "ref/wp80/_._",
  6514. "ref/wpa81/_._",
  6515. "ref/xamarinios10/_._",
  6516. "ref/xamarinmac20/_._",
  6517. "ref/xamarintvos10/_._",
  6518. "ref/xamarinwatchos10/_._",
  6519. "system.linq.4.3.0.nupkg.sha512",
  6520. "system.linq.nuspec"
  6521. ]
  6522. },
  6523. "System.Linq.Expressions/4.3.0": {
  6524. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6525. "type": "package",
  6526. "path": "system.linq.expressions/4.3.0",
  6527. "files": [
  6528. ".nupkg.metadata",
  6529. ".signature.p7s",
  6530. "ThirdPartyNotices.txt",
  6531. "dotnet_library_license.txt",
  6532. "lib/MonoAndroid10/_._",
  6533. "lib/MonoTouch10/_._",
  6534. "lib/net45/_._",
  6535. "lib/net463/System.Linq.Expressions.dll",
  6536. "lib/netcore50/System.Linq.Expressions.dll",
  6537. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6538. "lib/portable-net45+win8+wp8+wpa81/_._",
  6539. "lib/win8/_._",
  6540. "lib/wp80/_._",
  6541. "lib/wpa81/_._",
  6542. "lib/xamarinios10/_._",
  6543. "lib/xamarinmac20/_._",
  6544. "lib/xamarintvos10/_._",
  6545. "lib/xamarinwatchos10/_._",
  6546. "ref/MonoAndroid10/_._",
  6547. "ref/MonoTouch10/_._",
  6548. "ref/net45/_._",
  6549. "ref/net463/System.Linq.Expressions.dll",
  6550. "ref/netcore50/System.Linq.Expressions.dll",
  6551. "ref/netcore50/System.Linq.Expressions.xml",
  6552. "ref/netcore50/de/System.Linq.Expressions.xml",
  6553. "ref/netcore50/es/System.Linq.Expressions.xml",
  6554. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6555. "ref/netcore50/it/System.Linq.Expressions.xml",
  6556. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6557. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6558. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6559. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6560. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6561. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6562. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6563. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6564. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6565. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6566. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6567. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6568. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6569. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6570. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6571. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6572. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6573. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6574. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6575. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6576. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6577. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6578. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6579. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6580. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6581. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6582. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6583. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6584. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6585. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6586. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6587. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6588. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6589. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6590. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6591. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6592. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6593. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6594. "ref/portable-net45+win8+wp8+wpa81/_._",
  6595. "ref/win8/_._",
  6596. "ref/wp80/_._",
  6597. "ref/wpa81/_._",
  6598. "ref/xamarinios10/_._",
  6599. "ref/xamarinmac20/_._",
  6600. "ref/xamarintvos10/_._",
  6601. "ref/xamarinwatchos10/_._",
  6602. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6603. "system.linq.expressions.4.3.0.nupkg.sha512",
  6604. "system.linq.expressions.nuspec"
  6605. ]
  6606. },
  6607. "System.Memory/4.5.5": {
  6608. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6609. "type": "package",
  6610. "path": "system.memory/4.5.5",
  6611. "files": [
  6612. ".nupkg.metadata",
  6613. ".signature.p7s",
  6614. "LICENSE.TXT",
  6615. "THIRD-PARTY-NOTICES.TXT",
  6616. "lib/net461/System.Memory.dll",
  6617. "lib/net461/System.Memory.xml",
  6618. "lib/netcoreapp2.1/_._",
  6619. "lib/netstandard1.1/System.Memory.dll",
  6620. "lib/netstandard1.1/System.Memory.xml",
  6621. "lib/netstandard2.0/System.Memory.dll",
  6622. "lib/netstandard2.0/System.Memory.xml",
  6623. "ref/netcoreapp2.1/_._",
  6624. "system.memory.4.5.5.nupkg.sha512",
  6625. "system.memory.nuspec",
  6626. "useSharedDesignerContext.txt",
  6627. "version.txt"
  6628. ]
  6629. },
  6630. "System.Net.Http/4.3.0": {
  6631. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6632. "type": "package",
  6633. "path": "system.net.http/4.3.0",
  6634. "files": [
  6635. ".nupkg.metadata",
  6636. ".signature.p7s",
  6637. "ThirdPartyNotices.txt",
  6638. "dotnet_library_license.txt",
  6639. "lib/Xamarinmac20/_._",
  6640. "lib/monoandroid10/_._",
  6641. "lib/monotouch10/_._",
  6642. "lib/net45/_._",
  6643. "lib/net46/System.Net.Http.dll",
  6644. "lib/portable-net45+win8+wpa81/_._",
  6645. "lib/win8/_._",
  6646. "lib/wpa81/_._",
  6647. "lib/xamarinios10/_._",
  6648. "lib/xamarintvos10/_._",
  6649. "lib/xamarinwatchos10/_._",
  6650. "ref/Xamarinmac20/_._",
  6651. "ref/monoandroid10/_._",
  6652. "ref/monotouch10/_._",
  6653. "ref/net45/_._",
  6654. "ref/net46/System.Net.Http.dll",
  6655. "ref/net46/System.Net.Http.xml",
  6656. "ref/net46/de/System.Net.Http.xml",
  6657. "ref/net46/es/System.Net.Http.xml",
  6658. "ref/net46/fr/System.Net.Http.xml",
  6659. "ref/net46/it/System.Net.Http.xml",
  6660. "ref/net46/ja/System.Net.Http.xml",
  6661. "ref/net46/ko/System.Net.Http.xml",
  6662. "ref/net46/ru/System.Net.Http.xml",
  6663. "ref/net46/zh-hans/System.Net.Http.xml",
  6664. "ref/net46/zh-hant/System.Net.Http.xml",
  6665. "ref/netcore50/System.Net.Http.dll",
  6666. "ref/netcore50/System.Net.Http.xml",
  6667. "ref/netcore50/de/System.Net.Http.xml",
  6668. "ref/netcore50/es/System.Net.Http.xml",
  6669. "ref/netcore50/fr/System.Net.Http.xml",
  6670. "ref/netcore50/it/System.Net.Http.xml",
  6671. "ref/netcore50/ja/System.Net.Http.xml",
  6672. "ref/netcore50/ko/System.Net.Http.xml",
  6673. "ref/netcore50/ru/System.Net.Http.xml",
  6674. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6675. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6676. "ref/netstandard1.1/System.Net.Http.dll",
  6677. "ref/netstandard1.1/System.Net.Http.xml",
  6678. "ref/netstandard1.1/de/System.Net.Http.xml",
  6679. "ref/netstandard1.1/es/System.Net.Http.xml",
  6680. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6681. "ref/netstandard1.1/it/System.Net.Http.xml",
  6682. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6683. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6684. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6685. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6686. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6687. "ref/netstandard1.3/System.Net.Http.dll",
  6688. "ref/netstandard1.3/System.Net.Http.xml",
  6689. "ref/netstandard1.3/de/System.Net.Http.xml",
  6690. "ref/netstandard1.3/es/System.Net.Http.xml",
  6691. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6692. "ref/netstandard1.3/it/System.Net.Http.xml",
  6693. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6694. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6695. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6696. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6697. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6698. "ref/portable-net45+win8+wpa81/_._",
  6699. "ref/win8/_._",
  6700. "ref/wpa81/_._",
  6701. "ref/xamarinios10/_._",
  6702. "ref/xamarintvos10/_._",
  6703. "ref/xamarinwatchos10/_._",
  6704. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6705. "runtimes/win/lib/net46/System.Net.Http.dll",
  6706. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6707. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6708. "system.net.http.4.3.0.nupkg.sha512",
  6709. "system.net.http.nuspec"
  6710. ]
  6711. },
  6712. "System.Net.NameResolution/4.3.0": {
  6713. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6714. "type": "package",
  6715. "path": "system.net.nameresolution/4.3.0",
  6716. "files": [
  6717. ".nupkg.metadata",
  6718. ".signature.p7s",
  6719. "ThirdPartyNotices.txt",
  6720. "dotnet_library_license.txt",
  6721. "lib/MonoAndroid10/_._",
  6722. "lib/MonoTouch10/_._",
  6723. "lib/net46/System.Net.NameResolution.dll",
  6724. "lib/xamarinios10/_._",
  6725. "lib/xamarinmac20/_._",
  6726. "lib/xamarintvos10/_._",
  6727. "lib/xamarinwatchos10/_._",
  6728. "ref/MonoAndroid10/_._",
  6729. "ref/MonoTouch10/_._",
  6730. "ref/net46/System.Net.NameResolution.dll",
  6731. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6732. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6733. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6734. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6735. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6736. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6737. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6738. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6739. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6740. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6741. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6742. "ref/xamarinios10/_._",
  6743. "ref/xamarinmac20/_._",
  6744. "ref/xamarintvos10/_._",
  6745. "ref/xamarinwatchos10/_._",
  6746. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6747. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6748. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6749. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6750. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6751. "system.net.nameresolution.nuspec"
  6752. ]
  6753. },
  6754. "System.Net.Primitives/4.3.0": {
  6755. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6756. "type": "package",
  6757. "path": "system.net.primitives/4.3.0",
  6758. "files": [
  6759. ".nupkg.metadata",
  6760. ".signature.p7s",
  6761. "ThirdPartyNotices.txt",
  6762. "dotnet_library_license.txt",
  6763. "lib/MonoAndroid10/_._",
  6764. "lib/MonoTouch10/_._",
  6765. "lib/net45/_._",
  6766. "lib/portable-net45+win8+wp8+wpa81/_._",
  6767. "lib/win8/_._",
  6768. "lib/wp80/_._",
  6769. "lib/wpa81/_._",
  6770. "lib/xamarinios10/_._",
  6771. "lib/xamarinmac20/_._",
  6772. "lib/xamarintvos10/_._",
  6773. "lib/xamarinwatchos10/_._",
  6774. "ref/MonoAndroid10/_._",
  6775. "ref/MonoTouch10/_._",
  6776. "ref/net45/_._",
  6777. "ref/netcore50/System.Net.Primitives.dll",
  6778. "ref/netcore50/System.Net.Primitives.xml",
  6779. "ref/netcore50/de/System.Net.Primitives.xml",
  6780. "ref/netcore50/es/System.Net.Primitives.xml",
  6781. "ref/netcore50/fr/System.Net.Primitives.xml",
  6782. "ref/netcore50/it/System.Net.Primitives.xml",
  6783. "ref/netcore50/ja/System.Net.Primitives.xml",
  6784. "ref/netcore50/ko/System.Net.Primitives.xml",
  6785. "ref/netcore50/ru/System.Net.Primitives.xml",
  6786. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6787. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6788. "ref/netstandard1.0/System.Net.Primitives.dll",
  6789. "ref/netstandard1.0/System.Net.Primitives.xml",
  6790. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6791. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6792. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6793. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6794. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6795. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6796. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6797. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6798. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6799. "ref/netstandard1.1/System.Net.Primitives.dll",
  6800. "ref/netstandard1.1/System.Net.Primitives.xml",
  6801. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6802. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6803. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6804. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6805. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6806. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6807. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6808. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6809. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6810. "ref/netstandard1.3/System.Net.Primitives.dll",
  6811. "ref/netstandard1.3/System.Net.Primitives.xml",
  6812. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6813. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6814. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6815. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6816. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6817. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6818. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6819. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6820. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6821. "ref/portable-net45+win8+wp8+wpa81/_._",
  6822. "ref/win8/_._",
  6823. "ref/wp80/_._",
  6824. "ref/wpa81/_._",
  6825. "ref/xamarinios10/_._",
  6826. "ref/xamarinmac20/_._",
  6827. "ref/xamarintvos10/_._",
  6828. "ref/xamarinwatchos10/_._",
  6829. "system.net.primitives.4.3.0.nupkg.sha512",
  6830. "system.net.primitives.nuspec"
  6831. ]
  6832. },
  6833. "System.Net.Security/4.3.0": {
  6834. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6835. "type": "package",
  6836. "path": "system.net.security/4.3.0",
  6837. "files": [
  6838. ".nupkg.metadata",
  6839. ".signature.p7s",
  6840. "ThirdPartyNotices.txt",
  6841. "dotnet_library_license.txt",
  6842. "lib/MonoAndroid10/_._",
  6843. "lib/MonoTouch10/_._",
  6844. "lib/net46/System.Net.Security.dll",
  6845. "lib/xamarinios10/_._",
  6846. "lib/xamarinmac20/_._",
  6847. "lib/xamarintvos10/_._",
  6848. "lib/xamarinwatchos10/_._",
  6849. "ref/MonoAndroid10/_._",
  6850. "ref/MonoTouch10/_._",
  6851. "ref/net46/System.Net.Security.dll",
  6852. "ref/netstandard1.3/System.Net.Security.dll",
  6853. "ref/netstandard1.3/System.Net.Security.xml",
  6854. "ref/netstandard1.3/de/System.Net.Security.xml",
  6855. "ref/netstandard1.3/es/System.Net.Security.xml",
  6856. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6857. "ref/netstandard1.3/it/System.Net.Security.xml",
  6858. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6859. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6860. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6861. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6862. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6863. "ref/xamarinios10/_._",
  6864. "ref/xamarinmac20/_._",
  6865. "ref/xamarintvos10/_._",
  6866. "ref/xamarinwatchos10/_._",
  6867. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6868. "runtimes/win/lib/net46/System.Net.Security.dll",
  6869. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6870. "runtimes/win7/lib/netcore50/_._",
  6871. "system.net.security.4.3.0.nupkg.sha512",
  6872. "system.net.security.nuspec"
  6873. ]
  6874. },
  6875. "System.Net.Sockets/4.3.0": {
  6876. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6877. "type": "package",
  6878. "path": "system.net.sockets/4.3.0",
  6879. "files": [
  6880. ".nupkg.metadata",
  6881. ".signature.p7s",
  6882. "ThirdPartyNotices.txt",
  6883. "dotnet_library_license.txt",
  6884. "lib/MonoAndroid10/_._",
  6885. "lib/MonoTouch10/_._",
  6886. "lib/net46/System.Net.Sockets.dll",
  6887. "lib/xamarinios10/_._",
  6888. "lib/xamarinmac20/_._",
  6889. "lib/xamarintvos10/_._",
  6890. "lib/xamarinwatchos10/_._",
  6891. "ref/MonoAndroid10/_._",
  6892. "ref/MonoTouch10/_._",
  6893. "ref/net46/System.Net.Sockets.dll",
  6894. "ref/netstandard1.3/System.Net.Sockets.dll",
  6895. "ref/netstandard1.3/System.Net.Sockets.xml",
  6896. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6897. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6898. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6899. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6900. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6901. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6902. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6903. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6904. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6905. "ref/xamarinios10/_._",
  6906. "ref/xamarinmac20/_._",
  6907. "ref/xamarintvos10/_._",
  6908. "ref/xamarinwatchos10/_._",
  6909. "system.net.sockets.4.3.0.nupkg.sha512",
  6910. "system.net.sockets.nuspec"
  6911. ]
  6912. },
  6913. "System.ObjectModel/4.3.0": {
  6914. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6915. "type": "package",
  6916. "path": "system.objectmodel/4.3.0",
  6917. "files": [
  6918. ".nupkg.metadata",
  6919. ".signature.p7s",
  6920. "ThirdPartyNotices.txt",
  6921. "dotnet_library_license.txt",
  6922. "lib/MonoAndroid10/_._",
  6923. "lib/MonoTouch10/_._",
  6924. "lib/net45/_._",
  6925. "lib/netcore50/System.ObjectModel.dll",
  6926. "lib/netstandard1.3/System.ObjectModel.dll",
  6927. "lib/portable-net45+win8+wp8+wpa81/_._",
  6928. "lib/win8/_._",
  6929. "lib/wp80/_._",
  6930. "lib/wpa81/_._",
  6931. "lib/xamarinios10/_._",
  6932. "lib/xamarinmac20/_._",
  6933. "lib/xamarintvos10/_._",
  6934. "lib/xamarinwatchos10/_._",
  6935. "ref/MonoAndroid10/_._",
  6936. "ref/MonoTouch10/_._",
  6937. "ref/net45/_._",
  6938. "ref/netcore50/System.ObjectModel.dll",
  6939. "ref/netcore50/System.ObjectModel.xml",
  6940. "ref/netcore50/de/System.ObjectModel.xml",
  6941. "ref/netcore50/es/System.ObjectModel.xml",
  6942. "ref/netcore50/fr/System.ObjectModel.xml",
  6943. "ref/netcore50/it/System.ObjectModel.xml",
  6944. "ref/netcore50/ja/System.ObjectModel.xml",
  6945. "ref/netcore50/ko/System.ObjectModel.xml",
  6946. "ref/netcore50/ru/System.ObjectModel.xml",
  6947. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6948. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6949. "ref/netstandard1.0/System.ObjectModel.dll",
  6950. "ref/netstandard1.0/System.ObjectModel.xml",
  6951. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6952. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6953. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6954. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6955. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6956. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6957. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6958. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6959. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6960. "ref/netstandard1.3/System.ObjectModel.dll",
  6961. "ref/netstandard1.3/System.ObjectModel.xml",
  6962. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6963. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6964. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6965. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6966. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6967. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6968. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6969. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6970. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6971. "ref/portable-net45+win8+wp8+wpa81/_._",
  6972. "ref/win8/_._",
  6973. "ref/wp80/_._",
  6974. "ref/wpa81/_._",
  6975. "ref/xamarinios10/_._",
  6976. "ref/xamarinmac20/_._",
  6977. "ref/xamarintvos10/_._",
  6978. "ref/xamarinwatchos10/_._",
  6979. "system.objectmodel.4.3.0.nupkg.sha512",
  6980. "system.objectmodel.nuspec"
  6981. ]
  6982. },
  6983. "System.Reflection/4.3.0": {
  6984. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6985. "type": "package",
  6986. "path": "system.reflection/4.3.0",
  6987. "files": [
  6988. ".nupkg.metadata",
  6989. ".signature.p7s",
  6990. "ThirdPartyNotices.txt",
  6991. "dotnet_library_license.txt",
  6992. "lib/MonoAndroid10/_._",
  6993. "lib/MonoTouch10/_._",
  6994. "lib/net45/_._",
  6995. "lib/net462/System.Reflection.dll",
  6996. "lib/portable-net45+win8+wp8+wpa81/_._",
  6997. "lib/win8/_._",
  6998. "lib/wp80/_._",
  6999. "lib/wpa81/_._",
  7000. "lib/xamarinios10/_._",
  7001. "lib/xamarinmac20/_._",
  7002. "lib/xamarintvos10/_._",
  7003. "lib/xamarinwatchos10/_._",
  7004. "ref/MonoAndroid10/_._",
  7005. "ref/MonoTouch10/_._",
  7006. "ref/net45/_._",
  7007. "ref/net462/System.Reflection.dll",
  7008. "ref/netcore50/System.Reflection.dll",
  7009. "ref/netcore50/System.Reflection.xml",
  7010. "ref/netcore50/de/System.Reflection.xml",
  7011. "ref/netcore50/es/System.Reflection.xml",
  7012. "ref/netcore50/fr/System.Reflection.xml",
  7013. "ref/netcore50/it/System.Reflection.xml",
  7014. "ref/netcore50/ja/System.Reflection.xml",
  7015. "ref/netcore50/ko/System.Reflection.xml",
  7016. "ref/netcore50/ru/System.Reflection.xml",
  7017. "ref/netcore50/zh-hans/System.Reflection.xml",
  7018. "ref/netcore50/zh-hant/System.Reflection.xml",
  7019. "ref/netstandard1.0/System.Reflection.dll",
  7020. "ref/netstandard1.0/System.Reflection.xml",
  7021. "ref/netstandard1.0/de/System.Reflection.xml",
  7022. "ref/netstandard1.0/es/System.Reflection.xml",
  7023. "ref/netstandard1.0/fr/System.Reflection.xml",
  7024. "ref/netstandard1.0/it/System.Reflection.xml",
  7025. "ref/netstandard1.0/ja/System.Reflection.xml",
  7026. "ref/netstandard1.0/ko/System.Reflection.xml",
  7027. "ref/netstandard1.0/ru/System.Reflection.xml",
  7028. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7029. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7030. "ref/netstandard1.3/System.Reflection.dll",
  7031. "ref/netstandard1.3/System.Reflection.xml",
  7032. "ref/netstandard1.3/de/System.Reflection.xml",
  7033. "ref/netstandard1.3/es/System.Reflection.xml",
  7034. "ref/netstandard1.3/fr/System.Reflection.xml",
  7035. "ref/netstandard1.3/it/System.Reflection.xml",
  7036. "ref/netstandard1.3/ja/System.Reflection.xml",
  7037. "ref/netstandard1.3/ko/System.Reflection.xml",
  7038. "ref/netstandard1.3/ru/System.Reflection.xml",
  7039. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7040. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7041. "ref/netstandard1.5/System.Reflection.dll",
  7042. "ref/netstandard1.5/System.Reflection.xml",
  7043. "ref/netstandard1.5/de/System.Reflection.xml",
  7044. "ref/netstandard1.5/es/System.Reflection.xml",
  7045. "ref/netstandard1.5/fr/System.Reflection.xml",
  7046. "ref/netstandard1.5/it/System.Reflection.xml",
  7047. "ref/netstandard1.5/ja/System.Reflection.xml",
  7048. "ref/netstandard1.5/ko/System.Reflection.xml",
  7049. "ref/netstandard1.5/ru/System.Reflection.xml",
  7050. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7051. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7052. "ref/portable-net45+win8+wp8+wpa81/_._",
  7053. "ref/win8/_._",
  7054. "ref/wp80/_._",
  7055. "ref/wpa81/_._",
  7056. "ref/xamarinios10/_._",
  7057. "ref/xamarinmac20/_._",
  7058. "ref/xamarintvos10/_._",
  7059. "ref/xamarinwatchos10/_._",
  7060. "system.reflection.4.3.0.nupkg.sha512",
  7061. "system.reflection.nuspec"
  7062. ]
  7063. },
  7064. "System.Reflection.Emit/4.7.0": {
  7065. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  7066. "type": "package",
  7067. "path": "system.reflection.emit/4.7.0",
  7068. "files": [
  7069. ".nupkg.metadata",
  7070. ".signature.p7s",
  7071. "LICENSE.TXT",
  7072. "THIRD-PARTY-NOTICES.TXT",
  7073. "lib/MonoAndroid10/_._",
  7074. "lib/MonoTouch10/_._",
  7075. "lib/net45/_._",
  7076. "lib/netcore50/System.Reflection.Emit.dll",
  7077. "lib/netcoreapp2.0/_._",
  7078. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7079. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7080. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7081. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7082. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7083. "lib/netstandard2.1/_._",
  7084. "lib/xamarinios10/_._",
  7085. "lib/xamarinmac20/_._",
  7086. "lib/xamarintvos10/_._",
  7087. "lib/xamarinwatchos10/_._",
  7088. "ref/MonoAndroid10/_._",
  7089. "ref/MonoTouch10/_._",
  7090. "ref/net45/_._",
  7091. "ref/netcoreapp2.0/_._",
  7092. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7093. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7094. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7095. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7096. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7097. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7098. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7099. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7100. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7101. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7102. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7103. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7104. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7105. "ref/netstandard2.1/_._",
  7106. "ref/xamarinios10/_._",
  7107. "ref/xamarinmac20/_._",
  7108. "ref/xamarintvos10/_._",
  7109. "ref/xamarinwatchos10/_._",
  7110. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7111. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7112. "system.reflection.emit.4.7.0.nupkg.sha512",
  7113. "system.reflection.emit.nuspec",
  7114. "useSharedDesignerContext.txt",
  7115. "version.txt"
  7116. ]
  7117. },
  7118. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7119. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7120. "type": "package",
  7121. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7122. "files": [
  7123. ".nupkg.metadata",
  7124. ".signature.p7s",
  7125. "ThirdPartyNotices.txt",
  7126. "dotnet_library_license.txt",
  7127. "lib/MonoAndroid10/_._",
  7128. "lib/MonoTouch10/_._",
  7129. "lib/net45/_._",
  7130. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7131. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7132. "lib/portable-net45+wp8/_._",
  7133. "lib/wp80/_._",
  7134. "lib/xamarinios10/_._",
  7135. "lib/xamarinmac20/_._",
  7136. "lib/xamarintvos10/_._",
  7137. "lib/xamarinwatchos10/_._",
  7138. "ref/MonoAndroid10/_._",
  7139. "ref/MonoTouch10/_._",
  7140. "ref/net45/_._",
  7141. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7142. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7143. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7144. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7145. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7146. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7147. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7148. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7149. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7150. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7151. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7152. "ref/portable-net45+wp8/_._",
  7153. "ref/wp80/_._",
  7154. "ref/xamarinios10/_._",
  7155. "ref/xamarinmac20/_._",
  7156. "ref/xamarintvos10/_._",
  7157. "ref/xamarinwatchos10/_._",
  7158. "runtimes/aot/lib/netcore50/_._",
  7159. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7160. "system.reflection.emit.ilgeneration.nuspec"
  7161. ]
  7162. },
  7163. "System.Reflection.Emit.Lightweight/4.3.0": {
  7164. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7165. "type": "package",
  7166. "path": "system.reflection.emit.lightweight/4.3.0",
  7167. "files": [
  7168. ".nupkg.metadata",
  7169. ".signature.p7s",
  7170. "ThirdPartyNotices.txt",
  7171. "dotnet_library_license.txt",
  7172. "lib/MonoAndroid10/_._",
  7173. "lib/MonoTouch10/_._",
  7174. "lib/net45/_._",
  7175. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7176. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7177. "lib/portable-net45+wp8/_._",
  7178. "lib/wp80/_._",
  7179. "lib/xamarinios10/_._",
  7180. "lib/xamarinmac20/_._",
  7181. "lib/xamarintvos10/_._",
  7182. "lib/xamarinwatchos10/_._",
  7183. "ref/MonoAndroid10/_._",
  7184. "ref/MonoTouch10/_._",
  7185. "ref/net45/_._",
  7186. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7187. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7188. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7189. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7190. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7191. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7192. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7193. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7194. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7195. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7196. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7197. "ref/portable-net45+wp8/_._",
  7198. "ref/wp80/_._",
  7199. "ref/xamarinios10/_._",
  7200. "ref/xamarinmac20/_._",
  7201. "ref/xamarintvos10/_._",
  7202. "ref/xamarinwatchos10/_._",
  7203. "runtimes/aot/lib/netcore50/_._",
  7204. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7205. "system.reflection.emit.lightweight.nuspec"
  7206. ]
  7207. },
  7208. "System.Reflection.Extensions/4.3.0": {
  7209. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7210. "type": "package",
  7211. "path": "system.reflection.extensions/4.3.0",
  7212. "files": [
  7213. ".nupkg.metadata",
  7214. ".signature.p7s",
  7215. "ThirdPartyNotices.txt",
  7216. "dotnet_library_license.txt",
  7217. "lib/MonoAndroid10/_._",
  7218. "lib/MonoTouch10/_._",
  7219. "lib/net45/_._",
  7220. "lib/portable-net45+win8+wp8+wpa81/_._",
  7221. "lib/win8/_._",
  7222. "lib/wp80/_._",
  7223. "lib/wpa81/_._",
  7224. "lib/xamarinios10/_._",
  7225. "lib/xamarinmac20/_._",
  7226. "lib/xamarintvos10/_._",
  7227. "lib/xamarinwatchos10/_._",
  7228. "ref/MonoAndroid10/_._",
  7229. "ref/MonoTouch10/_._",
  7230. "ref/net45/_._",
  7231. "ref/netcore50/System.Reflection.Extensions.dll",
  7232. "ref/netcore50/System.Reflection.Extensions.xml",
  7233. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7234. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7235. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7236. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7237. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7238. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7239. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7240. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7241. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7242. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7243. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7244. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7245. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7246. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7247. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7248. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7249. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7250. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7251. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7252. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7253. "ref/portable-net45+win8+wp8+wpa81/_._",
  7254. "ref/win8/_._",
  7255. "ref/wp80/_._",
  7256. "ref/wpa81/_._",
  7257. "ref/xamarinios10/_._",
  7258. "ref/xamarinmac20/_._",
  7259. "ref/xamarintvos10/_._",
  7260. "ref/xamarinwatchos10/_._",
  7261. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7262. "system.reflection.extensions.nuspec"
  7263. ]
  7264. },
  7265. "System.Reflection.Primitives/4.3.0": {
  7266. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7267. "type": "package",
  7268. "path": "system.reflection.primitives/4.3.0",
  7269. "files": [
  7270. ".nupkg.metadata",
  7271. ".signature.p7s",
  7272. "ThirdPartyNotices.txt",
  7273. "dotnet_library_license.txt",
  7274. "lib/MonoAndroid10/_._",
  7275. "lib/MonoTouch10/_._",
  7276. "lib/net45/_._",
  7277. "lib/portable-net45+win8+wp8+wpa81/_._",
  7278. "lib/win8/_._",
  7279. "lib/wp80/_._",
  7280. "lib/wpa81/_._",
  7281. "lib/xamarinios10/_._",
  7282. "lib/xamarinmac20/_._",
  7283. "lib/xamarintvos10/_._",
  7284. "lib/xamarinwatchos10/_._",
  7285. "ref/MonoAndroid10/_._",
  7286. "ref/MonoTouch10/_._",
  7287. "ref/net45/_._",
  7288. "ref/netcore50/System.Reflection.Primitives.dll",
  7289. "ref/netcore50/System.Reflection.Primitives.xml",
  7290. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7291. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7292. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7293. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7294. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7295. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7296. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7297. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7298. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7299. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7300. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7301. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7302. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7303. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7304. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7305. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7306. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7307. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7308. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7309. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7310. "ref/portable-net45+win8+wp8+wpa81/_._",
  7311. "ref/win8/_._",
  7312. "ref/wp80/_._",
  7313. "ref/wpa81/_._",
  7314. "ref/xamarinios10/_._",
  7315. "ref/xamarinmac20/_._",
  7316. "ref/xamarintvos10/_._",
  7317. "ref/xamarinwatchos10/_._",
  7318. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7319. "system.reflection.primitives.nuspec"
  7320. ]
  7321. },
  7322. "System.Reflection.TypeExtensions/4.3.0": {
  7323. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7324. "type": "package",
  7325. "path": "system.reflection.typeextensions/4.3.0",
  7326. "files": [
  7327. ".nupkg.metadata",
  7328. ".signature.p7s",
  7329. "ThirdPartyNotices.txt",
  7330. "dotnet_library_license.txt",
  7331. "lib/MonoAndroid10/_._",
  7332. "lib/MonoTouch10/_._",
  7333. "lib/net46/System.Reflection.TypeExtensions.dll",
  7334. "lib/net462/System.Reflection.TypeExtensions.dll",
  7335. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7336. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7337. "lib/xamarinios10/_._",
  7338. "lib/xamarinmac20/_._",
  7339. "lib/xamarintvos10/_._",
  7340. "lib/xamarinwatchos10/_._",
  7341. "ref/MonoAndroid10/_._",
  7342. "ref/MonoTouch10/_._",
  7343. "ref/net46/System.Reflection.TypeExtensions.dll",
  7344. "ref/net462/System.Reflection.TypeExtensions.dll",
  7345. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7346. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7347. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7348. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7349. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7350. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7351. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7352. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7353. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7354. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7355. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7356. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7357. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7358. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7359. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7360. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7361. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7362. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7363. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7364. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7365. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7366. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7367. "ref/xamarinios10/_._",
  7368. "ref/xamarinmac20/_._",
  7369. "ref/xamarintvos10/_._",
  7370. "ref/xamarinwatchos10/_._",
  7371. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7372. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7373. "system.reflection.typeextensions.nuspec"
  7374. ]
  7375. },
  7376. "System.Resources.ResourceManager/4.3.0": {
  7377. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7378. "type": "package",
  7379. "path": "system.resources.resourcemanager/4.3.0",
  7380. "files": [
  7381. ".nupkg.metadata",
  7382. ".signature.p7s",
  7383. "ThirdPartyNotices.txt",
  7384. "dotnet_library_license.txt",
  7385. "lib/MonoAndroid10/_._",
  7386. "lib/MonoTouch10/_._",
  7387. "lib/net45/_._",
  7388. "lib/portable-net45+win8+wp8+wpa81/_._",
  7389. "lib/win8/_._",
  7390. "lib/wp80/_._",
  7391. "lib/wpa81/_._",
  7392. "lib/xamarinios10/_._",
  7393. "lib/xamarinmac20/_._",
  7394. "lib/xamarintvos10/_._",
  7395. "lib/xamarinwatchos10/_._",
  7396. "ref/MonoAndroid10/_._",
  7397. "ref/MonoTouch10/_._",
  7398. "ref/net45/_._",
  7399. "ref/netcore50/System.Resources.ResourceManager.dll",
  7400. "ref/netcore50/System.Resources.ResourceManager.xml",
  7401. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7402. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7403. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7404. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7405. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7406. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7407. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7408. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7409. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7410. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7411. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7412. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7413. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7414. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7415. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7416. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7417. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7418. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7419. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7420. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7421. "ref/portable-net45+win8+wp8+wpa81/_._",
  7422. "ref/win8/_._",
  7423. "ref/wp80/_._",
  7424. "ref/wpa81/_._",
  7425. "ref/xamarinios10/_._",
  7426. "ref/xamarinmac20/_._",
  7427. "ref/xamarintvos10/_._",
  7428. "ref/xamarinwatchos10/_._",
  7429. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7430. "system.resources.resourcemanager.nuspec"
  7431. ]
  7432. },
  7433. "System.Runtime/4.3.0": {
  7434. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7435. "type": "package",
  7436. "path": "system.runtime/4.3.0",
  7437. "files": [
  7438. ".nupkg.metadata",
  7439. ".signature.p7s",
  7440. "ThirdPartyNotices.txt",
  7441. "dotnet_library_license.txt",
  7442. "lib/MonoAndroid10/_._",
  7443. "lib/MonoTouch10/_._",
  7444. "lib/net45/_._",
  7445. "lib/net462/System.Runtime.dll",
  7446. "lib/portable-net45+win8+wp80+wpa81/_._",
  7447. "lib/win8/_._",
  7448. "lib/wp80/_._",
  7449. "lib/wpa81/_._",
  7450. "lib/xamarinios10/_._",
  7451. "lib/xamarinmac20/_._",
  7452. "lib/xamarintvos10/_._",
  7453. "lib/xamarinwatchos10/_._",
  7454. "ref/MonoAndroid10/_._",
  7455. "ref/MonoTouch10/_._",
  7456. "ref/net45/_._",
  7457. "ref/net462/System.Runtime.dll",
  7458. "ref/netcore50/System.Runtime.dll",
  7459. "ref/netcore50/System.Runtime.xml",
  7460. "ref/netcore50/de/System.Runtime.xml",
  7461. "ref/netcore50/es/System.Runtime.xml",
  7462. "ref/netcore50/fr/System.Runtime.xml",
  7463. "ref/netcore50/it/System.Runtime.xml",
  7464. "ref/netcore50/ja/System.Runtime.xml",
  7465. "ref/netcore50/ko/System.Runtime.xml",
  7466. "ref/netcore50/ru/System.Runtime.xml",
  7467. "ref/netcore50/zh-hans/System.Runtime.xml",
  7468. "ref/netcore50/zh-hant/System.Runtime.xml",
  7469. "ref/netstandard1.0/System.Runtime.dll",
  7470. "ref/netstandard1.0/System.Runtime.xml",
  7471. "ref/netstandard1.0/de/System.Runtime.xml",
  7472. "ref/netstandard1.0/es/System.Runtime.xml",
  7473. "ref/netstandard1.0/fr/System.Runtime.xml",
  7474. "ref/netstandard1.0/it/System.Runtime.xml",
  7475. "ref/netstandard1.0/ja/System.Runtime.xml",
  7476. "ref/netstandard1.0/ko/System.Runtime.xml",
  7477. "ref/netstandard1.0/ru/System.Runtime.xml",
  7478. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7479. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7480. "ref/netstandard1.2/System.Runtime.dll",
  7481. "ref/netstandard1.2/System.Runtime.xml",
  7482. "ref/netstandard1.2/de/System.Runtime.xml",
  7483. "ref/netstandard1.2/es/System.Runtime.xml",
  7484. "ref/netstandard1.2/fr/System.Runtime.xml",
  7485. "ref/netstandard1.2/it/System.Runtime.xml",
  7486. "ref/netstandard1.2/ja/System.Runtime.xml",
  7487. "ref/netstandard1.2/ko/System.Runtime.xml",
  7488. "ref/netstandard1.2/ru/System.Runtime.xml",
  7489. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7490. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7491. "ref/netstandard1.3/System.Runtime.dll",
  7492. "ref/netstandard1.3/System.Runtime.xml",
  7493. "ref/netstandard1.3/de/System.Runtime.xml",
  7494. "ref/netstandard1.3/es/System.Runtime.xml",
  7495. "ref/netstandard1.3/fr/System.Runtime.xml",
  7496. "ref/netstandard1.3/it/System.Runtime.xml",
  7497. "ref/netstandard1.3/ja/System.Runtime.xml",
  7498. "ref/netstandard1.3/ko/System.Runtime.xml",
  7499. "ref/netstandard1.3/ru/System.Runtime.xml",
  7500. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7501. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7502. "ref/netstandard1.5/System.Runtime.dll",
  7503. "ref/netstandard1.5/System.Runtime.xml",
  7504. "ref/netstandard1.5/de/System.Runtime.xml",
  7505. "ref/netstandard1.5/es/System.Runtime.xml",
  7506. "ref/netstandard1.5/fr/System.Runtime.xml",
  7507. "ref/netstandard1.5/it/System.Runtime.xml",
  7508. "ref/netstandard1.5/ja/System.Runtime.xml",
  7509. "ref/netstandard1.5/ko/System.Runtime.xml",
  7510. "ref/netstandard1.5/ru/System.Runtime.xml",
  7511. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7512. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7513. "ref/portable-net45+win8+wp80+wpa81/_._",
  7514. "ref/win8/_._",
  7515. "ref/wp80/_._",
  7516. "ref/wpa81/_._",
  7517. "ref/xamarinios10/_._",
  7518. "ref/xamarinmac20/_._",
  7519. "ref/xamarintvos10/_._",
  7520. "ref/xamarinwatchos10/_._",
  7521. "system.runtime.4.3.0.nupkg.sha512",
  7522. "system.runtime.nuspec"
  7523. ]
  7524. },
  7525. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7526. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7527. "type": "package",
  7528. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7529. "files": [
  7530. ".nupkg.metadata",
  7531. ".signature.p7s",
  7532. "Icon.png",
  7533. "LICENSE.TXT",
  7534. "THIRD-PARTY-NOTICES.TXT",
  7535. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7536. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7537. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7538. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7539. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7540. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7541. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7542. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7543. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7544. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7545. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7546. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7547. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7548. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7549. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7550. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7551. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7552. "system.runtime.compilerservices.unsafe.nuspec",
  7553. "useSharedDesignerContext.txt",
  7554. "version.txt"
  7555. ]
  7556. },
  7557. "System.Runtime.Extensions/4.3.0": {
  7558. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7559. "type": "package",
  7560. "path": "system.runtime.extensions/4.3.0",
  7561. "files": [
  7562. ".nupkg.metadata",
  7563. ".signature.p7s",
  7564. "ThirdPartyNotices.txt",
  7565. "dotnet_library_license.txt",
  7566. "lib/MonoAndroid10/_._",
  7567. "lib/MonoTouch10/_._",
  7568. "lib/net45/_._",
  7569. "lib/net462/System.Runtime.Extensions.dll",
  7570. "lib/portable-net45+win8+wp8+wpa81/_._",
  7571. "lib/win8/_._",
  7572. "lib/wp80/_._",
  7573. "lib/wpa81/_._",
  7574. "lib/xamarinios10/_._",
  7575. "lib/xamarinmac20/_._",
  7576. "lib/xamarintvos10/_._",
  7577. "lib/xamarinwatchos10/_._",
  7578. "ref/MonoAndroid10/_._",
  7579. "ref/MonoTouch10/_._",
  7580. "ref/net45/_._",
  7581. "ref/net462/System.Runtime.Extensions.dll",
  7582. "ref/netcore50/System.Runtime.Extensions.dll",
  7583. "ref/netcore50/System.Runtime.Extensions.xml",
  7584. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7585. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7586. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7587. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7588. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7589. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7590. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7591. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7592. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7593. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7594. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7595. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7596. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7597. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7598. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7599. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7600. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7601. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7602. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7603. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7604. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7605. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7606. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7607. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7608. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7609. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7610. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7611. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7612. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7613. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7614. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7615. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7616. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7617. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7618. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7619. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7620. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7621. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7622. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7623. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7624. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7625. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7626. "ref/portable-net45+win8+wp8+wpa81/_._",
  7627. "ref/win8/_._",
  7628. "ref/wp80/_._",
  7629. "ref/wpa81/_._",
  7630. "ref/xamarinios10/_._",
  7631. "ref/xamarinmac20/_._",
  7632. "ref/xamarintvos10/_._",
  7633. "ref/xamarinwatchos10/_._",
  7634. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7635. "system.runtime.extensions.nuspec"
  7636. ]
  7637. },
  7638. "System.Runtime.Handles/4.3.0": {
  7639. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7640. "type": "package",
  7641. "path": "system.runtime.handles/4.3.0",
  7642. "files": [
  7643. ".nupkg.metadata",
  7644. ".signature.p7s",
  7645. "ThirdPartyNotices.txt",
  7646. "dotnet_library_license.txt",
  7647. "lib/MonoAndroid10/_._",
  7648. "lib/MonoTouch10/_._",
  7649. "lib/net46/_._",
  7650. "lib/xamarinios10/_._",
  7651. "lib/xamarinmac20/_._",
  7652. "lib/xamarintvos10/_._",
  7653. "lib/xamarinwatchos10/_._",
  7654. "ref/MonoAndroid10/_._",
  7655. "ref/MonoTouch10/_._",
  7656. "ref/net46/_._",
  7657. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7658. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7659. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7660. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7661. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7662. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7663. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7664. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7665. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7666. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7667. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7668. "ref/xamarinios10/_._",
  7669. "ref/xamarinmac20/_._",
  7670. "ref/xamarintvos10/_._",
  7671. "ref/xamarinwatchos10/_._",
  7672. "system.runtime.handles.4.3.0.nupkg.sha512",
  7673. "system.runtime.handles.nuspec"
  7674. ]
  7675. },
  7676. "System.Runtime.InteropServices/4.3.0": {
  7677. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7678. "type": "package",
  7679. "path": "system.runtime.interopservices/4.3.0",
  7680. "files": [
  7681. ".nupkg.metadata",
  7682. ".signature.p7s",
  7683. "ThirdPartyNotices.txt",
  7684. "dotnet_library_license.txt",
  7685. "lib/MonoAndroid10/_._",
  7686. "lib/MonoTouch10/_._",
  7687. "lib/net45/_._",
  7688. "lib/net462/System.Runtime.InteropServices.dll",
  7689. "lib/net463/System.Runtime.InteropServices.dll",
  7690. "lib/portable-net45+win8+wpa81/_._",
  7691. "lib/win8/_._",
  7692. "lib/wpa81/_._",
  7693. "lib/xamarinios10/_._",
  7694. "lib/xamarinmac20/_._",
  7695. "lib/xamarintvos10/_._",
  7696. "lib/xamarinwatchos10/_._",
  7697. "ref/MonoAndroid10/_._",
  7698. "ref/MonoTouch10/_._",
  7699. "ref/net45/_._",
  7700. "ref/net462/System.Runtime.InteropServices.dll",
  7701. "ref/net463/System.Runtime.InteropServices.dll",
  7702. "ref/netcore50/System.Runtime.InteropServices.dll",
  7703. "ref/netcore50/System.Runtime.InteropServices.xml",
  7704. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7705. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7706. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7707. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7708. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7709. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7710. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7711. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7712. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7713. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7714. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7715. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7716. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7717. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7718. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7719. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7720. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7721. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7722. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7723. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7724. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7725. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7726. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7727. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7728. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7729. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7730. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7731. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7732. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7733. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7734. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7735. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7736. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7737. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7738. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7739. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7740. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7741. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7742. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7743. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7744. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7745. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7746. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7747. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7748. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7749. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7750. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7751. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7752. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7753. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7754. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7755. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7756. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7757. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7758. "ref/portable-net45+win8+wpa81/_._",
  7759. "ref/win8/_._",
  7760. "ref/wpa81/_._",
  7761. "ref/xamarinios10/_._",
  7762. "ref/xamarinmac20/_._",
  7763. "ref/xamarintvos10/_._",
  7764. "ref/xamarinwatchos10/_._",
  7765. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7766. "system.runtime.interopservices.nuspec"
  7767. ]
  7768. },
  7769. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7770. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7771. "type": "package",
  7772. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7773. "files": [
  7774. ".nupkg.metadata",
  7775. ".signature.p7s",
  7776. "ThirdPartyNotices.txt",
  7777. "dotnet_library_license.txt",
  7778. "lib/MonoAndroid10/_._",
  7779. "lib/MonoTouch10/_._",
  7780. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7781. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7782. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7783. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7784. "lib/xamarinios10/_._",
  7785. "lib/xamarinmac20/_._",
  7786. "lib/xamarintvos10/_._",
  7787. "lib/xamarinwatchos10/_._",
  7788. "ref/MonoAndroid10/_._",
  7789. "ref/MonoTouch10/_._",
  7790. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7791. "ref/xamarinios10/_._",
  7792. "ref/xamarinmac20/_._",
  7793. "ref/xamarintvos10/_._",
  7794. "ref/xamarinwatchos10/_._",
  7795. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7796. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7797. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7798. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7799. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7800. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7801. "system.runtime.interopservices.runtimeinformation.nuspec"
  7802. ]
  7803. },
  7804. "System.Runtime.Numerics/4.3.0": {
  7805. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7806. "type": "package",
  7807. "path": "system.runtime.numerics/4.3.0",
  7808. "files": [
  7809. ".nupkg.metadata",
  7810. ".signature.p7s",
  7811. "ThirdPartyNotices.txt",
  7812. "dotnet_library_license.txt",
  7813. "lib/MonoAndroid10/_._",
  7814. "lib/MonoTouch10/_._",
  7815. "lib/net45/_._",
  7816. "lib/netcore50/System.Runtime.Numerics.dll",
  7817. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7818. "lib/portable-net45+win8+wpa81/_._",
  7819. "lib/win8/_._",
  7820. "lib/wpa81/_._",
  7821. "lib/xamarinios10/_._",
  7822. "lib/xamarinmac20/_._",
  7823. "lib/xamarintvos10/_._",
  7824. "lib/xamarinwatchos10/_._",
  7825. "ref/MonoAndroid10/_._",
  7826. "ref/MonoTouch10/_._",
  7827. "ref/net45/_._",
  7828. "ref/netcore50/System.Runtime.Numerics.dll",
  7829. "ref/netcore50/System.Runtime.Numerics.xml",
  7830. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7831. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7832. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7833. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7834. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7835. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7836. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7837. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7838. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7839. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7840. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7841. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7842. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7843. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7844. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7845. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7846. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7847. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7848. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7849. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7850. "ref/portable-net45+win8+wpa81/_._",
  7851. "ref/win8/_._",
  7852. "ref/wpa81/_._",
  7853. "ref/xamarinios10/_._",
  7854. "ref/xamarinmac20/_._",
  7855. "ref/xamarintvos10/_._",
  7856. "ref/xamarinwatchos10/_._",
  7857. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7858. "system.runtime.numerics.nuspec"
  7859. ]
  7860. },
  7861. "System.Security.AccessControl/4.7.0": {
  7862. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7863. "type": "package",
  7864. "path": "system.security.accesscontrol/4.7.0",
  7865. "files": [
  7866. ".nupkg.metadata",
  7867. ".signature.p7s",
  7868. "LICENSE.TXT",
  7869. "THIRD-PARTY-NOTICES.TXT",
  7870. "lib/net46/System.Security.AccessControl.dll",
  7871. "lib/net461/System.Security.AccessControl.dll",
  7872. "lib/net461/System.Security.AccessControl.xml",
  7873. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7874. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7875. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7876. "lib/uap10.0.16299/_._",
  7877. "ref/net46/System.Security.AccessControl.dll",
  7878. "ref/net461/System.Security.AccessControl.dll",
  7879. "ref/net461/System.Security.AccessControl.xml",
  7880. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7881. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7882. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7883. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7884. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7885. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7886. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7887. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7888. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7889. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7890. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7891. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7892. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7893. "ref/uap10.0.16299/_._",
  7894. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7895. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7896. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7897. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7898. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7899. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7900. "runtimes/win/lib/uap10.0.16299/_._",
  7901. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7902. "system.security.accesscontrol.nuspec",
  7903. "useSharedDesignerContext.txt",
  7904. "version.txt"
  7905. ]
  7906. },
  7907. "System.Security.Claims/4.3.0": {
  7908. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7909. "type": "package",
  7910. "path": "system.security.claims/4.3.0",
  7911. "files": [
  7912. ".nupkg.metadata",
  7913. ".signature.p7s",
  7914. "ThirdPartyNotices.txt",
  7915. "dotnet_library_license.txt",
  7916. "lib/MonoAndroid10/_._",
  7917. "lib/MonoTouch10/_._",
  7918. "lib/net46/System.Security.Claims.dll",
  7919. "lib/netstandard1.3/System.Security.Claims.dll",
  7920. "lib/xamarinios10/_._",
  7921. "lib/xamarinmac20/_._",
  7922. "lib/xamarintvos10/_._",
  7923. "lib/xamarinwatchos10/_._",
  7924. "ref/MonoAndroid10/_._",
  7925. "ref/MonoTouch10/_._",
  7926. "ref/net46/System.Security.Claims.dll",
  7927. "ref/netstandard1.3/System.Security.Claims.dll",
  7928. "ref/netstandard1.3/System.Security.Claims.xml",
  7929. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7930. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7931. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7932. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7933. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7934. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7935. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7936. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7937. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7938. "ref/xamarinios10/_._",
  7939. "ref/xamarinmac20/_._",
  7940. "ref/xamarintvos10/_._",
  7941. "ref/xamarinwatchos10/_._",
  7942. "system.security.claims.4.3.0.nupkg.sha512",
  7943. "system.security.claims.nuspec"
  7944. ]
  7945. },
  7946. "System.Security.Cryptography.Algorithms/4.3.0": {
  7947. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7948. "type": "package",
  7949. "path": "system.security.cryptography.algorithms/4.3.0",
  7950. "files": [
  7951. ".nupkg.metadata",
  7952. ".signature.p7s",
  7953. "ThirdPartyNotices.txt",
  7954. "dotnet_library_license.txt",
  7955. "lib/MonoAndroid10/_._",
  7956. "lib/MonoTouch10/_._",
  7957. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7958. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7959. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7960. "lib/xamarinios10/_._",
  7961. "lib/xamarinmac20/_._",
  7962. "lib/xamarintvos10/_._",
  7963. "lib/xamarinwatchos10/_._",
  7964. "ref/MonoAndroid10/_._",
  7965. "ref/MonoTouch10/_._",
  7966. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7967. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7968. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7969. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7970. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7971. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7972. "ref/xamarinios10/_._",
  7973. "ref/xamarinmac20/_._",
  7974. "ref/xamarintvos10/_._",
  7975. "ref/xamarinwatchos10/_._",
  7976. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7977. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7978. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7979. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7980. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7981. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7982. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7983. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7984. "system.security.cryptography.algorithms.nuspec"
  7985. ]
  7986. },
  7987. "System.Security.Cryptography.Cng/4.3.0": {
  7988. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7989. "type": "package",
  7990. "path": "system.security.cryptography.cng/4.3.0",
  7991. "files": [
  7992. ".nupkg.metadata",
  7993. ".signature.p7s",
  7994. "ThirdPartyNotices.txt",
  7995. "dotnet_library_license.txt",
  7996. "lib/net46/System.Security.Cryptography.Cng.dll",
  7997. "lib/net461/System.Security.Cryptography.Cng.dll",
  7998. "lib/net463/System.Security.Cryptography.Cng.dll",
  7999. "ref/net46/System.Security.Cryptography.Cng.dll",
  8000. "ref/net461/System.Security.Cryptography.Cng.dll",
  8001. "ref/net463/System.Security.Cryptography.Cng.dll",
  8002. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8003. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8004. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8005. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8006. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8007. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8008. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8009. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8010. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8011. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8012. "system.security.cryptography.cng.nuspec"
  8013. ]
  8014. },
  8015. "System.Security.Cryptography.Csp/4.3.0": {
  8016. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8017. "type": "package",
  8018. "path": "system.security.cryptography.csp/4.3.0",
  8019. "files": [
  8020. ".nupkg.metadata",
  8021. ".signature.p7s",
  8022. "ThirdPartyNotices.txt",
  8023. "dotnet_library_license.txt",
  8024. "lib/MonoAndroid10/_._",
  8025. "lib/MonoTouch10/_._",
  8026. "lib/net46/System.Security.Cryptography.Csp.dll",
  8027. "lib/xamarinios10/_._",
  8028. "lib/xamarinmac20/_._",
  8029. "lib/xamarintvos10/_._",
  8030. "lib/xamarinwatchos10/_._",
  8031. "ref/MonoAndroid10/_._",
  8032. "ref/MonoTouch10/_._",
  8033. "ref/net46/System.Security.Cryptography.Csp.dll",
  8034. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8035. "ref/xamarinios10/_._",
  8036. "ref/xamarinmac20/_._",
  8037. "ref/xamarintvos10/_._",
  8038. "ref/xamarinwatchos10/_._",
  8039. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8040. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8041. "runtimes/win/lib/netcore50/_._",
  8042. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8043. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8044. "system.security.cryptography.csp.nuspec"
  8045. ]
  8046. },
  8047. "System.Security.Cryptography.Encoding/4.3.0": {
  8048. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8049. "type": "package",
  8050. "path": "system.security.cryptography.encoding/4.3.0",
  8051. "files": [
  8052. ".nupkg.metadata",
  8053. ".signature.p7s",
  8054. "ThirdPartyNotices.txt",
  8055. "dotnet_library_license.txt",
  8056. "lib/MonoAndroid10/_._",
  8057. "lib/MonoTouch10/_._",
  8058. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8059. "lib/xamarinios10/_._",
  8060. "lib/xamarinmac20/_._",
  8061. "lib/xamarintvos10/_._",
  8062. "lib/xamarinwatchos10/_._",
  8063. "ref/MonoAndroid10/_._",
  8064. "ref/MonoTouch10/_._",
  8065. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8066. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8067. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8068. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8069. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8070. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8071. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8072. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8073. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8074. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8075. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8076. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8077. "ref/xamarinios10/_._",
  8078. "ref/xamarinmac20/_._",
  8079. "ref/xamarintvos10/_._",
  8080. "ref/xamarinwatchos10/_._",
  8081. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8082. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8083. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8084. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8085. "system.security.cryptography.encoding.nuspec"
  8086. ]
  8087. },
  8088. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8089. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8090. "type": "package",
  8091. "path": "system.security.cryptography.openssl/4.3.0",
  8092. "files": [
  8093. ".nupkg.metadata",
  8094. ".signature.p7s",
  8095. "ThirdPartyNotices.txt",
  8096. "dotnet_library_license.txt",
  8097. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8098. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8099. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8100. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8101. "system.security.cryptography.openssl.nuspec"
  8102. ]
  8103. },
  8104. "System.Security.Cryptography.Primitives/4.3.0": {
  8105. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8106. "type": "package",
  8107. "path": "system.security.cryptography.primitives/4.3.0",
  8108. "files": [
  8109. ".nupkg.metadata",
  8110. ".signature.p7s",
  8111. "ThirdPartyNotices.txt",
  8112. "dotnet_library_license.txt",
  8113. "lib/MonoAndroid10/_._",
  8114. "lib/MonoTouch10/_._",
  8115. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8116. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8117. "lib/xamarinios10/_._",
  8118. "lib/xamarinmac20/_._",
  8119. "lib/xamarintvos10/_._",
  8120. "lib/xamarinwatchos10/_._",
  8121. "ref/MonoAndroid10/_._",
  8122. "ref/MonoTouch10/_._",
  8123. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8124. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8125. "ref/xamarinios10/_._",
  8126. "ref/xamarinmac20/_._",
  8127. "ref/xamarintvos10/_._",
  8128. "ref/xamarinwatchos10/_._",
  8129. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8130. "system.security.cryptography.primitives.nuspec"
  8131. ]
  8132. },
  8133. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8134. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8135. "type": "package",
  8136. "path": "system.security.cryptography.protecteddata/4.7.0",
  8137. "files": [
  8138. ".nupkg.metadata",
  8139. ".signature.p7s",
  8140. "LICENSE.TXT",
  8141. "THIRD-PARTY-NOTICES.TXT",
  8142. "lib/MonoAndroid10/_._",
  8143. "lib/MonoTouch10/_._",
  8144. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8145. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8146. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8147. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8148. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8149. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8150. "lib/xamarinios10/_._",
  8151. "lib/xamarinmac20/_._",
  8152. "lib/xamarintvos10/_._",
  8153. "lib/xamarinwatchos10/_._",
  8154. "ref/MonoAndroid10/_._",
  8155. "ref/MonoTouch10/_._",
  8156. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8157. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8158. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8159. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8160. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8161. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8162. "ref/xamarinios10/_._",
  8163. "ref/xamarinmac20/_._",
  8164. "ref/xamarintvos10/_._",
  8165. "ref/xamarinwatchos10/_._",
  8166. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8167. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8168. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8169. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8170. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8171. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8172. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8173. "system.security.cryptography.protecteddata.nuspec",
  8174. "useSharedDesignerContext.txt",
  8175. "version.txt"
  8176. ]
  8177. },
  8178. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8179. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8180. "type": "package",
  8181. "path": "system.security.cryptography.x509certificates/4.3.0",
  8182. "files": [
  8183. ".nupkg.metadata",
  8184. ".signature.p7s",
  8185. "ThirdPartyNotices.txt",
  8186. "dotnet_library_license.txt",
  8187. "lib/MonoAndroid10/_._",
  8188. "lib/MonoTouch10/_._",
  8189. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8190. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8191. "lib/xamarinios10/_._",
  8192. "lib/xamarinmac20/_._",
  8193. "lib/xamarintvos10/_._",
  8194. "lib/xamarinwatchos10/_._",
  8195. "ref/MonoAndroid10/_._",
  8196. "ref/MonoTouch10/_._",
  8197. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8198. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8199. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8200. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8201. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8202. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8203. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8204. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8205. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8206. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8207. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8208. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8209. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8210. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8211. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8212. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8213. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8214. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8215. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8216. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8217. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8218. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8219. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8220. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8221. "ref/xamarinios10/_._",
  8222. "ref/xamarinmac20/_._",
  8223. "ref/xamarintvos10/_._",
  8224. "ref/xamarinwatchos10/_._",
  8225. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8226. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8227. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8228. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8229. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8230. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8231. "system.security.cryptography.x509certificates.nuspec"
  8232. ]
  8233. },
  8234. "System.Security.Permissions/4.7.0": {
  8235. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8236. "type": "package",
  8237. "path": "system.security.permissions/4.7.0",
  8238. "files": [
  8239. ".nupkg.metadata",
  8240. ".signature.p7s",
  8241. "LICENSE.TXT",
  8242. "THIRD-PARTY-NOTICES.TXT",
  8243. "lib/net461/System.Security.Permissions.dll",
  8244. "lib/net461/System.Security.Permissions.xml",
  8245. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8246. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8247. "lib/netstandard2.0/System.Security.Permissions.dll",
  8248. "lib/netstandard2.0/System.Security.Permissions.xml",
  8249. "ref/net461/System.Security.Permissions.dll",
  8250. "ref/net461/System.Security.Permissions.xml",
  8251. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8252. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8253. "ref/netstandard2.0/System.Security.Permissions.dll",
  8254. "ref/netstandard2.0/System.Security.Permissions.xml",
  8255. "system.security.permissions.4.7.0.nupkg.sha512",
  8256. "system.security.permissions.nuspec",
  8257. "useSharedDesignerContext.txt",
  8258. "version.txt"
  8259. ]
  8260. },
  8261. "System.Security.Principal/4.3.0": {
  8262. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8263. "type": "package",
  8264. "path": "system.security.principal/4.3.0",
  8265. "files": [
  8266. ".nupkg.metadata",
  8267. ".signature.p7s",
  8268. "ThirdPartyNotices.txt",
  8269. "dotnet_library_license.txt",
  8270. "lib/MonoAndroid10/_._",
  8271. "lib/MonoTouch10/_._",
  8272. "lib/net45/_._",
  8273. "lib/netcore50/System.Security.Principal.dll",
  8274. "lib/netstandard1.0/System.Security.Principal.dll",
  8275. "lib/portable-net45+win8+wp8+wpa81/_._",
  8276. "lib/win8/_._",
  8277. "lib/wp80/_._",
  8278. "lib/wpa81/_._",
  8279. "lib/xamarinios10/_._",
  8280. "lib/xamarinmac20/_._",
  8281. "lib/xamarintvos10/_._",
  8282. "lib/xamarinwatchos10/_._",
  8283. "ref/MonoAndroid10/_._",
  8284. "ref/MonoTouch10/_._",
  8285. "ref/net45/_._",
  8286. "ref/netcore50/System.Security.Principal.dll",
  8287. "ref/netcore50/System.Security.Principal.xml",
  8288. "ref/netcore50/de/System.Security.Principal.xml",
  8289. "ref/netcore50/es/System.Security.Principal.xml",
  8290. "ref/netcore50/fr/System.Security.Principal.xml",
  8291. "ref/netcore50/it/System.Security.Principal.xml",
  8292. "ref/netcore50/ja/System.Security.Principal.xml",
  8293. "ref/netcore50/ko/System.Security.Principal.xml",
  8294. "ref/netcore50/ru/System.Security.Principal.xml",
  8295. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8296. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8297. "ref/netstandard1.0/System.Security.Principal.dll",
  8298. "ref/netstandard1.0/System.Security.Principal.xml",
  8299. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8300. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8301. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8302. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8303. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8304. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8305. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8306. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8307. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8308. "ref/portable-net45+win8+wp8+wpa81/_._",
  8309. "ref/win8/_._",
  8310. "ref/wp80/_._",
  8311. "ref/wpa81/_._",
  8312. "ref/xamarinios10/_._",
  8313. "ref/xamarinmac20/_._",
  8314. "ref/xamarintvos10/_._",
  8315. "ref/xamarinwatchos10/_._",
  8316. "system.security.principal.4.3.0.nupkg.sha512",
  8317. "system.security.principal.nuspec"
  8318. ]
  8319. },
  8320. "System.Security.Principal.Windows/4.7.0": {
  8321. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8322. "type": "package",
  8323. "path": "system.security.principal.windows/4.7.0",
  8324. "files": [
  8325. ".nupkg.metadata",
  8326. ".signature.p7s",
  8327. "LICENSE.TXT",
  8328. "THIRD-PARTY-NOTICES.TXT",
  8329. "lib/net46/System.Security.Principal.Windows.dll",
  8330. "lib/net461/System.Security.Principal.Windows.dll",
  8331. "lib/net461/System.Security.Principal.Windows.xml",
  8332. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8333. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8334. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8335. "lib/uap10.0.16299/_._",
  8336. "ref/net46/System.Security.Principal.Windows.dll",
  8337. "ref/net461/System.Security.Principal.Windows.dll",
  8338. "ref/net461/System.Security.Principal.Windows.xml",
  8339. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8340. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8341. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8342. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8343. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8344. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8345. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8346. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8347. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8348. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8349. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8350. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8351. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8352. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8353. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8354. "ref/uap10.0.16299/_._",
  8355. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8356. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8357. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8358. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8359. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8360. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8361. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8362. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8363. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8364. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8365. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8366. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8367. "runtimes/win/lib/uap10.0.16299/_._",
  8368. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8369. "system.security.principal.windows.nuspec",
  8370. "useSharedDesignerContext.txt",
  8371. "version.txt"
  8372. ]
  8373. },
  8374. "System.Text.Encoding/4.3.0": {
  8375. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8376. "type": "package",
  8377. "path": "system.text.encoding/4.3.0",
  8378. "files": [
  8379. ".nupkg.metadata",
  8380. ".signature.p7s",
  8381. "ThirdPartyNotices.txt",
  8382. "dotnet_library_license.txt",
  8383. "lib/MonoAndroid10/_._",
  8384. "lib/MonoTouch10/_._",
  8385. "lib/net45/_._",
  8386. "lib/portable-net45+win8+wp8+wpa81/_._",
  8387. "lib/win8/_._",
  8388. "lib/wp80/_._",
  8389. "lib/wpa81/_._",
  8390. "lib/xamarinios10/_._",
  8391. "lib/xamarinmac20/_._",
  8392. "lib/xamarintvos10/_._",
  8393. "lib/xamarinwatchos10/_._",
  8394. "ref/MonoAndroid10/_._",
  8395. "ref/MonoTouch10/_._",
  8396. "ref/net45/_._",
  8397. "ref/netcore50/System.Text.Encoding.dll",
  8398. "ref/netcore50/System.Text.Encoding.xml",
  8399. "ref/netcore50/de/System.Text.Encoding.xml",
  8400. "ref/netcore50/es/System.Text.Encoding.xml",
  8401. "ref/netcore50/fr/System.Text.Encoding.xml",
  8402. "ref/netcore50/it/System.Text.Encoding.xml",
  8403. "ref/netcore50/ja/System.Text.Encoding.xml",
  8404. "ref/netcore50/ko/System.Text.Encoding.xml",
  8405. "ref/netcore50/ru/System.Text.Encoding.xml",
  8406. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8407. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8408. "ref/netstandard1.0/System.Text.Encoding.dll",
  8409. "ref/netstandard1.0/System.Text.Encoding.xml",
  8410. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8411. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8412. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8413. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8414. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8415. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8416. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8417. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8418. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8419. "ref/netstandard1.3/System.Text.Encoding.dll",
  8420. "ref/netstandard1.3/System.Text.Encoding.xml",
  8421. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8422. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8423. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8424. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8425. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8426. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8427. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8428. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8429. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8430. "ref/portable-net45+win8+wp8+wpa81/_._",
  8431. "ref/win8/_._",
  8432. "ref/wp80/_._",
  8433. "ref/wpa81/_._",
  8434. "ref/xamarinios10/_._",
  8435. "ref/xamarinmac20/_._",
  8436. "ref/xamarintvos10/_._",
  8437. "ref/xamarinwatchos10/_._",
  8438. "system.text.encoding.4.3.0.nupkg.sha512",
  8439. "system.text.encoding.nuspec"
  8440. ]
  8441. },
  8442. "System.Text.Encoding.CodePages/5.0.0": {
  8443. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8444. "type": "package",
  8445. "path": "system.text.encoding.codepages/5.0.0",
  8446. "files": [
  8447. ".nupkg.metadata",
  8448. ".signature.p7s",
  8449. "Icon.png",
  8450. "LICENSE.TXT",
  8451. "THIRD-PARTY-NOTICES.TXT",
  8452. "lib/MonoAndroid10/_._",
  8453. "lib/MonoTouch10/_._",
  8454. "lib/net46/System.Text.Encoding.CodePages.dll",
  8455. "lib/net461/System.Text.Encoding.CodePages.dll",
  8456. "lib/net461/System.Text.Encoding.CodePages.xml",
  8457. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8458. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8459. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8460. "lib/xamarinios10/_._",
  8461. "lib/xamarinmac20/_._",
  8462. "lib/xamarintvos10/_._",
  8463. "lib/xamarinwatchos10/_._",
  8464. "ref/MonoAndroid10/_._",
  8465. "ref/MonoTouch10/_._",
  8466. "ref/xamarinios10/_._",
  8467. "ref/xamarinmac20/_._",
  8468. "ref/xamarintvos10/_._",
  8469. "ref/xamarinwatchos10/_._",
  8470. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8471. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8472. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8473. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8474. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8475. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8476. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8477. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8478. "system.text.encoding.codepages.nuspec",
  8479. "useSharedDesignerContext.txt",
  8480. "version.txt"
  8481. ]
  8482. },
  8483. "System.Text.Encoding.Extensions/4.3.0": {
  8484. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8485. "type": "package",
  8486. "path": "system.text.encoding.extensions/4.3.0",
  8487. "files": [
  8488. ".nupkg.metadata",
  8489. ".signature.p7s",
  8490. "ThirdPartyNotices.txt",
  8491. "dotnet_library_license.txt",
  8492. "lib/MonoAndroid10/_._",
  8493. "lib/MonoTouch10/_._",
  8494. "lib/net45/_._",
  8495. "lib/portable-net45+win8+wp8+wpa81/_._",
  8496. "lib/win8/_._",
  8497. "lib/wp80/_._",
  8498. "lib/wpa81/_._",
  8499. "lib/xamarinios10/_._",
  8500. "lib/xamarinmac20/_._",
  8501. "lib/xamarintvos10/_._",
  8502. "lib/xamarinwatchos10/_._",
  8503. "ref/MonoAndroid10/_._",
  8504. "ref/MonoTouch10/_._",
  8505. "ref/net45/_._",
  8506. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8507. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8508. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8509. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8510. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8511. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8512. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8513. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8514. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8515. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8516. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8517. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8518. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8519. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8520. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8521. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8522. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8523. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8524. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8525. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8526. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8527. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8528. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8529. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8530. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8531. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8532. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8533. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8534. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8535. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8536. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8537. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8538. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8539. "ref/portable-net45+win8+wp8+wpa81/_._",
  8540. "ref/win8/_._",
  8541. "ref/wp80/_._",
  8542. "ref/wpa81/_._",
  8543. "ref/xamarinios10/_._",
  8544. "ref/xamarinmac20/_._",
  8545. "ref/xamarintvos10/_._",
  8546. "ref/xamarinwatchos10/_._",
  8547. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8548. "system.text.encoding.extensions.nuspec"
  8549. ]
  8550. },
  8551. "System.Text.Encodings.Web/4.5.0": {
  8552. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8553. "type": "package",
  8554. "path": "system.text.encodings.web/4.5.0",
  8555. "files": [
  8556. ".nupkg.metadata",
  8557. ".signature.p7s",
  8558. "LICENSE.TXT",
  8559. "THIRD-PARTY-NOTICES.TXT",
  8560. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8561. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8562. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8563. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8564. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8565. "system.text.encodings.web.nuspec",
  8566. "useSharedDesignerContext.txt",
  8567. "version.txt"
  8568. ]
  8569. },
  8570. "System.Text.RegularExpressions/4.3.0": {
  8571. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8572. "type": "package",
  8573. "path": "system.text.regularexpressions/4.3.0",
  8574. "files": [
  8575. ".nupkg.metadata",
  8576. ".signature.p7s",
  8577. "ThirdPartyNotices.txt",
  8578. "dotnet_library_license.txt",
  8579. "lib/MonoAndroid10/_._",
  8580. "lib/MonoTouch10/_._",
  8581. "lib/net45/_._",
  8582. "lib/net463/System.Text.RegularExpressions.dll",
  8583. "lib/netcore50/System.Text.RegularExpressions.dll",
  8584. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8585. "lib/portable-net45+win8+wp8+wpa81/_._",
  8586. "lib/win8/_._",
  8587. "lib/wp80/_._",
  8588. "lib/wpa81/_._",
  8589. "lib/xamarinios10/_._",
  8590. "lib/xamarinmac20/_._",
  8591. "lib/xamarintvos10/_._",
  8592. "lib/xamarinwatchos10/_._",
  8593. "ref/MonoAndroid10/_._",
  8594. "ref/MonoTouch10/_._",
  8595. "ref/net45/_._",
  8596. "ref/net463/System.Text.RegularExpressions.dll",
  8597. "ref/netcore50/System.Text.RegularExpressions.dll",
  8598. "ref/netcore50/System.Text.RegularExpressions.xml",
  8599. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8600. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8601. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8602. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8603. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8604. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8605. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8606. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8607. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8608. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8609. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8610. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8611. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8612. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8613. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8614. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8615. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8616. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8617. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8618. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8619. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8620. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8621. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8622. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8623. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8624. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8625. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8626. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8627. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8628. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8629. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8630. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8631. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8632. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8633. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8634. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8635. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8636. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8637. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8638. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8639. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8640. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8641. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8642. "ref/portable-net45+win8+wp8+wpa81/_._",
  8643. "ref/win8/_._",
  8644. "ref/wp80/_._",
  8645. "ref/wpa81/_._",
  8646. "ref/xamarinios10/_._",
  8647. "ref/xamarinmac20/_._",
  8648. "ref/xamarintvos10/_._",
  8649. "ref/xamarinwatchos10/_._",
  8650. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8651. "system.text.regularexpressions.nuspec"
  8652. ]
  8653. },
  8654. "System.Threading/4.3.0": {
  8655. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8656. "type": "package",
  8657. "path": "system.threading/4.3.0",
  8658. "files": [
  8659. ".nupkg.metadata",
  8660. ".signature.p7s",
  8661. "ThirdPartyNotices.txt",
  8662. "dotnet_library_license.txt",
  8663. "lib/MonoAndroid10/_._",
  8664. "lib/MonoTouch10/_._",
  8665. "lib/net45/_._",
  8666. "lib/netcore50/System.Threading.dll",
  8667. "lib/netstandard1.3/System.Threading.dll",
  8668. "lib/portable-net45+win8+wp8+wpa81/_._",
  8669. "lib/win8/_._",
  8670. "lib/wp80/_._",
  8671. "lib/wpa81/_._",
  8672. "lib/xamarinios10/_._",
  8673. "lib/xamarinmac20/_._",
  8674. "lib/xamarintvos10/_._",
  8675. "lib/xamarinwatchos10/_._",
  8676. "ref/MonoAndroid10/_._",
  8677. "ref/MonoTouch10/_._",
  8678. "ref/net45/_._",
  8679. "ref/netcore50/System.Threading.dll",
  8680. "ref/netcore50/System.Threading.xml",
  8681. "ref/netcore50/de/System.Threading.xml",
  8682. "ref/netcore50/es/System.Threading.xml",
  8683. "ref/netcore50/fr/System.Threading.xml",
  8684. "ref/netcore50/it/System.Threading.xml",
  8685. "ref/netcore50/ja/System.Threading.xml",
  8686. "ref/netcore50/ko/System.Threading.xml",
  8687. "ref/netcore50/ru/System.Threading.xml",
  8688. "ref/netcore50/zh-hans/System.Threading.xml",
  8689. "ref/netcore50/zh-hant/System.Threading.xml",
  8690. "ref/netstandard1.0/System.Threading.dll",
  8691. "ref/netstandard1.0/System.Threading.xml",
  8692. "ref/netstandard1.0/de/System.Threading.xml",
  8693. "ref/netstandard1.0/es/System.Threading.xml",
  8694. "ref/netstandard1.0/fr/System.Threading.xml",
  8695. "ref/netstandard1.0/it/System.Threading.xml",
  8696. "ref/netstandard1.0/ja/System.Threading.xml",
  8697. "ref/netstandard1.0/ko/System.Threading.xml",
  8698. "ref/netstandard1.0/ru/System.Threading.xml",
  8699. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8700. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8701. "ref/netstandard1.3/System.Threading.dll",
  8702. "ref/netstandard1.3/System.Threading.xml",
  8703. "ref/netstandard1.3/de/System.Threading.xml",
  8704. "ref/netstandard1.3/es/System.Threading.xml",
  8705. "ref/netstandard1.3/fr/System.Threading.xml",
  8706. "ref/netstandard1.3/it/System.Threading.xml",
  8707. "ref/netstandard1.3/ja/System.Threading.xml",
  8708. "ref/netstandard1.3/ko/System.Threading.xml",
  8709. "ref/netstandard1.3/ru/System.Threading.xml",
  8710. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8711. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8712. "ref/portable-net45+win8+wp8+wpa81/_._",
  8713. "ref/win8/_._",
  8714. "ref/wp80/_._",
  8715. "ref/wpa81/_._",
  8716. "ref/xamarinios10/_._",
  8717. "ref/xamarinmac20/_._",
  8718. "ref/xamarintvos10/_._",
  8719. "ref/xamarinwatchos10/_._",
  8720. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8721. "system.threading.4.3.0.nupkg.sha512",
  8722. "system.threading.nuspec"
  8723. ]
  8724. },
  8725. "System.Threading.Channels/7.0.0": {
  8726. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8727. "type": "package",
  8728. "path": "system.threading.channels/7.0.0",
  8729. "files": [
  8730. ".nupkg.metadata",
  8731. ".signature.p7s",
  8732. "Icon.png",
  8733. "LICENSE.TXT",
  8734. "THIRD-PARTY-NOTICES.TXT",
  8735. "buildTransitive/net461/System.Threading.Channels.targets",
  8736. "buildTransitive/net462/_._",
  8737. "buildTransitive/net6.0/_._",
  8738. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8739. "lib/net462/System.Threading.Channels.dll",
  8740. "lib/net462/System.Threading.Channels.xml",
  8741. "lib/net6.0/System.Threading.Channels.dll",
  8742. "lib/net6.0/System.Threading.Channels.xml",
  8743. "lib/net7.0/System.Threading.Channels.dll",
  8744. "lib/net7.0/System.Threading.Channels.xml",
  8745. "lib/netstandard2.0/System.Threading.Channels.dll",
  8746. "lib/netstandard2.0/System.Threading.Channels.xml",
  8747. "lib/netstandard2.1/System.Threading.Channels.dll",
  8748. "lib/netstandard2.1/System.Threading.Channels.xml",
  8749. "system.threading.channels.7.0.0.nupkg.sha512",
  8750. "system.threading.channels.nuspec",
  8751. "useSharedDesignerContext.txt"
  8752. ]
  8753. },
  8754. "System.Threading.Tasks/4.3.0": {
  8755. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8756. "type": "package",
  8757. "path": "system.threading.tasks/4.3.0",
  8758. "files": [
  8759. ".nupkg.metadata",
  8760. ".signature.p7s",
  8761. "ThirdPartyNotices.txt",
  8762. "dotnet_library_license.txt",
  8763. "lib/MonoAndroid10/_._",
  8764. "lib/MonoTouch10/_._",
  8765. "lib/net45/_._",
  8766. "lib/portable-net45+win8+wp8+wpa81/_._",
  8767. "lib/win8/_._",
  8768. "lib/wp80/_._",
  8769. "lib/wpa81/_._",
  8770. "lib/xamarinios10/_._",
  8771. "lib/xamarinmac20/_._",
  8772. "lib/xamarintvos10/_._",
  8773. "lib/xamarinwatchos10/_._",
  8774. "ref/MonoAndroid10/_._",
  8775. "ref/MonoTouch10/_._",
  8776. "ref/net45/_._",
  8777. "ref/netcore50/System.Threading.Tasks.dll",
  8778. "ref/netcore50/System.Threading.Tasks.xml",
  8779. "ref/netcore50/de/System.Threading.Tasks.xml",
  8780. "ref/netcore50/es/System.Threading.Tasks.xml",
  8781. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8782. "ref/netcore50/it/System.Threading.Tasks.xml",
  8783. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8784. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8785. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8786. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8787. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8788. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8789. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8790. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8791. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8792. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8793. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8794. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8795. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8796. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8797. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8798. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8799. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8800. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8801. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8802. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8803. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8804. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8805. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8806. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8807. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8808. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8809. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8810. "ref/portable-net45+win8+wp8+wpa81/_._",
  8811. "ref/win8/_._",
  8812. "ref/wp80/_._",
  8813. "ref/wpa81/_._",
  8814. "ref/xamarinios10/_._",
  8815. "ref/xamarinmac20/_._",
  8816. "ref/xamarintvos10/_._",
  8817. "ref/xamarinwatchos10/_._",
  8818. "system.threading.tasks.4.3.0.nupkg.sha512",
  8819. "system.threading.tasks.nuspec"
  8820. ]
  8821. },
  8822. "System.Threading.Tasks.Extensions/4.3.0": {
  8823. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8824. "type": "package",
  8825. "path": "system.threading.tasks.extensions/4.3.0",
  8826. "files": [
  8827. ".nupkg.metadata",
  8828. ".signature.p7s",
  8829. "ThirdPartyNotices.txt",
  8830. "dotnet_library_license.txt",
  8831. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8832. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8833. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8834. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8835. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8836. "system.threading.tasks.extensions.nuspec"
  8837. ]
  8838. },
  8839. "System.Threading.Thread/4.3.0": {
  8840. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8841. "type": "package",
  8842. "path": "system.threading.thread/4.3.0",
  8843. "files": [
  8844. ".nupkg.metadata",
  8845. ".signature.p7s",
  8846. "ThirdPartyNotices.txt",
  8847. "dotnet_library_license.txt",
  8848. "lib/MonoAndroid10/_._",
  8849. "lib/MonoTouch10/_._",
  8850. "lib/net46/System.Threading.Thread.dll",
  8851. "lib/netcore50/_._",
  8852. "lib/netstandard1.3/System.Threading.Thread.dll",
  8853. "lib/xamarinios10/_._",
  8854. "lib/xamarinmac20/_._",
  8855. "lib/xamarintvos10/_._",
  8856. "lib/xamarinwatchos10/_._",
  8857. "ref/MonoAndroid10/_._",
  8858. "ref/MonoTouch10/_._",
  8859. "ref/net46/System.Threading.Thread.dll",
  8860. "ref/netstandard1.3/System.Threading.Thread.dll",
  8861. "ref/netstandard1.3/System.Threading.Thread.xml",
  8862. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8863. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8864. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8865. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8866. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8867. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8868. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8869. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8870. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8871. "ref/xamarinios10/_._",
  8872. "ref/xamarinmac20/_._",
  8873. "ref/xamarintvos10/_._",
  8874. "ref/xamarinwatchos10/_._",
  8875. "system.threading.thread.4.3.0.nupkg.sha512",
  8876. "system.threading.thread.nuspec"
  8877. ]
  8878. },
  8879. "System.Threading.ThreadPool/4.3.0": {
  8880. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8881. "type": "package",
  8882. "path": "system.threading.threadpool/4.3.0",
  8883. "files": [
  8884. ".nupkg.metadata",
  8885. ".signature.p7s",
  8886. "ThirdPartyNotices.txt",
  8887. "dotnet_library_license.txt",
  8888. "lib/MonoAndroid10/_._",
  8889. "lib/MonoTouch10/_._",
  8890. "lib/net46/System.Threading.ThreadPool.dll",
  8891. "lib/netcore50/_._",
  8892. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8893. "lib/xamarinios10/_._",
  8894. "lib/xamarinmac20/_._",
  8895. "lib/xamarintvos10/_._",
  8896. "lib/xamarinwatchos10/_._",
  8897. "ref/MonoAndroid10/_._",
  8898. "ref/MonoTouch10/_._",
  8899. "ref/net46/System.Threading.ThreadPool.dll",
  8900. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8901. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8902. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8903. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8904. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8905. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8906. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8907. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8908. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8909. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8910. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8911. "ref/xamarinios10/_._",
  8912. "ref/xamarinmac20/_._",
  8913. "ref/xamarintvos10/_._",
  8914. "ref/xamarinwatchos10/_._",
  8915. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8916. "system.threading.threadpool.nuspec"
  8917. ]
  8918. },
  8919. "System.Threading.Timer/4.3.0": {
  8920. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8921. "type": "package",
  8922. "path": "system.threading.timer/4.3.0",
  8923. "files": [
  8924. ".nupkg.metadata",
  8925. ".signature.p7s",
  8926. "ThirdPartyNotices.txt",
  8927. "dotnet_library_license.txt",
  8928. "lib/MonoAndroid10/_._",
  8929. "lib/MonoTouch10/_._",
  8930. "lib/net451/_._",
  8931. "lib/portable-net451+win81+wpa81/_._",
  8932. "lib/win81/_._",
  8933. "lib/wpa81/_._",
  8934. "lib/xamarinios10/_._",
  8935. "lib/xamarinmac20/_._",
  8936. "lib/xamarintvos10/_._",
  8937. "lib/xamarinwatchos10/_._",
  8938. "ref/MonoAndroid10/_._",
  8939. "ref/MonoTouch10/_._",
  8940. "ref/net451/_._",
  8941. "ref/netcore50/System.Threading.Timer.dll",
  8942. "ref/netcore50/System.Threading.Timer.xml",
  8943. "ref/netcore50/de/System.Threading.Timer.xml",
  8944. "ref/netcore50/es/System.Threading.Timer.xml",
  8945. "ref/netcore50/fr/System.Threading.Timer.xml",
  8946. "ref/netcore50/it/System.Threading.Timer.xml",
  8947. "ref/netcore50/ja/System.Threading.Timer.xml",
  8948. "ref/netcore50/ko/System.Threading.Timer.xml",
  8949. "ref/netcore50/ru/System.Threading.Timer.xml",
  8950. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8951. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8952. "ref/netstandard1.2/System.Threading.Timer.dll",
  8953. "ref/netstandard1.2/System.Threading.Timer.xml",
  8954. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8955. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8956. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8957. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8958. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8959. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8960. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8961. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8962. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8963. "ref/portable-net451+win81+wpa81/_._",
  8964. "ref/win81/_._",
  8965. "ref/wpa81/_._",
  8966. "ref/xamarinios10/_._",
  8967. "ref/xamarinmac20/_._",
  8968. "ref/xamarintvos10/_._",
  8969. "ref/xamarinwatchos10/_._",
  8970. "system.threading.timer.4.3.0.nupkg.sha512",
  8971. "system.threading.timer.nuspec"
  8972. ]
  8973. },
  8974. "System.Windows.Extensions/4.7.0": {
  8975. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8976. "type": "package",
  8977. "path": "system.windows.extensions/4.7.0",
  8978. "files": [
  8979. ".nupkg.metadata",
  8980. ".signature.p7s",
  8981. "LICENSE.TXT",
  8982. "THIRD-PARTY-NOTICES.TXT",
  8983. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8984. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8985. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8986. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8987. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8988. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8989. "system.windows.extensions.4.7.0.nupkg.sha512",
  8990. "system.windows.extensions.nuspec",
  8991. "useSharedDesignerContext.txt",
  8992. "version.txt"
  8993. ]
  8994. },
  8995. "System.Xml.ReaderWriter/4.3.0": {
  8996. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8997. "type": "package",
  8998. "path": "system.xml.readerwriter/4.3.0",
  8999. "files": [
  9000. ".nupkg.metadata",
  9001. ".signature.p7s",
  9002. "ThirdPartyNotices.txt",
  9003. "dotnet_library_license.txt",
  9004. "lib/MonoAndroid10/_._",
  9005. "lib/MonoTouch10/_._",
  9006. "lib/net45/_._",
  9007. "lib/net46/System.Xml.ReaderWriter.dll",
  9008. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9009. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9010. "lib/portable-net45+win8+wp8+wpa81/_._",
  9011. "lib/win8/_._",
  9012. "lib/wp80/_._",
  9013. "lib/wpa81/_._",
  9014. "lib/xamarinios10/_._",
  9015. "lib/xamarinmac20/_._",
  9016. "lib/xamarintvos10/_._",
  9017. "lib/xamarinwatchos10/_._",
  9018. "ref/MonoAndroid10/_._",
  9019. "ref/MonoTouch10/_._",
  9020. "ref/net45/_._",
  9021. "ref/net46/System.Xml.ReaderWriter.dll",
  9022. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9023. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9024. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9025. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9026. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9027. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9028. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9029. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9030. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9031. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9032. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9033. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9034. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9035. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9036. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9037. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9038. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9039. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9040. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9041. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9042. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9043. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9044. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9045. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9046. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9047. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9048. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9049. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9050. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9051. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9052. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9053. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9054. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9055. "ref/portable-net45+win8+wp8+wpa81/_._",
  9056. "ref/win8/_._",
  9057. "ref/wp80/_._",
  9058. "ref/wpa81/_._",
  9059. "ref/xamarinios10/_._",
  9060. "ref/xamarinmac20/_._",
  9061. "ref/xamarintvos10/_._",
  9062. "ref/xamarinwatchos10/_._",
  9063. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9064. "system.xml.readerwriter.nuspec"
  9065. ]
  9066. },
  9067. "System.Xml.XDocument/4.3.0": {
  9068. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9069. "type": "package",
  9070. "path": "system.xml.xdocument/4.3.0",
  9071. "files": [
  9072. ".nupkg.metadata",
  9073. ".signature.p7s",
  9074. "ThirdPartyNotices.txt",
  9075. "dotnet_library_license.txt",
  9076. "lib/MonoAndroid10/_._",
  9077. "lib/MonoTouch10/_._",
  9078. "lib/net45/_._",
  9079. "lib/netcore50/System.Xml.XDocument.dll",
  9080. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9081. "lib/portable-net45+win8+wp8+wpa81/_._",
  9082. "lib/win8/_._",
  9083. "lib/wp80/_._",
  9084. "lib/wpa81/_._",
  9085. "lib/xamarinios10/_._",
  9086. "lib/xamarinmac20/_._",
  9087. "lib/xamarintvos10/_._",
  9088. "lib/xamarinwatchos10/_._",
  9089. "ref/MonoAndroid10/_._",
  9090. "ref/MonoTouch10/_._",
  9091. "ref/net45/_._",
  9092. "ref/netcore50/System.Xml.XDocument.dll",
  9093. "ref/netcore50/System.Xml.XDocument.xml",
  9094. "ref/netcore50/de/System.Xml.XDocument.xml",
  9095. "ref/netcore50/es/System.Xml.XDocument.xml",
  9096. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9097. "ref/netcore50/it/System.Xml.XDocument.xml",
  9098. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9099. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9100. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9101. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9102. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9103. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9104. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9105. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9106. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9107. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9108. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9109. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9110. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9111. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9112. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9113. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9114. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9115. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9116. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9117. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9118. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9119. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9120. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9121. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9122. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9123. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9124. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9125. "ref/portable-net45+win8+wp8+wpa81/_._",
  9126. "ref/win8/_._",
  9127. "ref/wp80/_._",
  9128. "ref/wpa81/_._",
  9129. "ref/xamarinios10/_._",
  9130. "ref/xamarinmac20/_._",
  9131. "ref/xamarintvos10/_._",
  9132. "ref/xamarinwatchos10/_._",
  9133. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9134. "system.xml.xdocument.nuspec"
  9135. ]
  9136. },
  9137. "System.Xml.XmlDocument/4.3.0": {
  9138. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9139. "type": "package",
  9140. "path": "system.xml.xmldocument/4.3.0",
  9141. "files": [
  9142. ".nupkg.metadata",
  9143. ".signature.p7s",
  9144. "ThirdPartyNotices.txt",
  9145. "dotnet_library_license.txt",
  9146. "lib/MonoAndroid10/_._",
  9147. "lib/MonoTouch10/_._",
  9148. "lib/net46/System.Xml.XmlDocument.dll",
  9149. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9150. "lib/xamarinios10/_._",
  9151. "lib/xamarinmac20/_._",
  9152. "lib/xamarintvos10/_._",
  9153. "lib/xamarinwatchos10/_._",
  9154. "ref/MonoAndroid10/_._",
  9155. "ref/MonoTouch10/_._",
  9156. "ref/net46/System.Xml.XmlDocument.dll",
  9157. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9158. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9159. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9160. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9161. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9162. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9163. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9164. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9165. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9166. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9167. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9168. "ref/xamarinios10/_._",
  9169. "ref/xamarinmac20/_._",
  9170. "ref/xamarintvos10/_._",
  9171. "ref/xamarinwatchos10/_._",
  9172. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9173. "system.xml.xmldocument.nuspec"
  9174. ]
  9175. },
  9176. "ZXing.Net/0.16.9": {
  9177. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9178. "type": "package",
  9179. "path": "zxing.net/0.16.9",
  9180. "files": [
  9181. ".nupkg.metadata",
  9182. ".signature.p7s",
  9183. "lib/native/zxing.XML",
  9184. "lib/native/zxing.pri",
  9185. "lib/native/zxing.winmd",
  9186. "lib/net20-cf/zxing.ce2.0.dll",
  9187. "lib/net20-cf/zxing.ce2.0.xml",
  9188. "lib/net20/zxing.XML",
  9189. "lib/net20/zxing.dll",
  9190. "lib/net35-cf/zxing.ce3.5.dll",
  9191. "lib/net35-cf/zxing.ce3.5.xml",
  9192. "lib/net35/zxing.XML",
  9193. "lib/net35/zxing.dll",
  9194. "lib/net40/zxing.XML",
  9195. "lib/net40/zxing.dll",
  9196. "lib/net40/zxing.presentation.XML",
  9197. "lib/net40/zxing.presentation.dll",
  9198. "lib/net45/zxing.XML",
  9199. "lib/net45/zxing.dll",
  9200. "lib/net45/zxing.presentation.XML",
  9201. "lib/net45/zxing.presentation.dll",
  9202. "lib/net461/zxing.XML",
  9203. "lib/net461/zxing.dll",
  9204. "lib/net461/zxing.presentation.XML",
  9205. "lib/net461/zxing.presentation.dll",
  9206. "lib/net47/zxing.XML",
  9207. "lib/net47/zxing.dll",
  9208. "lib/net47/zxing.presentation.XML",
  9209. "lib/net47/zxing.presentation.dll",
  9210. "lib/net48/zxing.XML",
  9211. "lib/net48/zxing.dll",
  9212. "lib/net48/zxing.presentation.XML",
  9213. "lib/net48/zxing.presentation.dll",
  9214. "lib/net5.0/zxing.XML",
  9215. "lib/net5.0/zxing.dll",
  9216. "lib/net6.0/zxing.XML",
  9217. "lib/net6.0/zxing.dll",
  9218. "lib/net7.0/zxing.XML",
  9219. "lib/net7.0/zxing.dll",
  9220. "lib/netcoreapp3.0/zxing.dll",
  9221. "lib/netcoreapp3.0/zxing.xml",
  9222. "lib/netcoreapp3.1/zxing.dll",
  9223. "lib/netcoreapp3.1/zxing.xml",
  9224. "lib/netstandard1.0/zxing.dll",
  9225. "lib/netstandard1.0/zxing.xml",
  9226. "lib/netstandard1.1/zxing.dll",
  9227. "lib/netstandard1.1/zxing.xml",
  9228. "lib/netstandard1.3/zxing.dll",
  9229. "lib/netstandard1.3/zxing.xml",
  9230. "lib/netstandard2.0/zxing.dll",
  9231. "lib/netstandard2.0/zxing.xml",
  9232. "lib/netstandard2.1/zxing.dll",
  9233. "lib/netstandard2.1/zxing.xml",
  9234. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9235. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9236. "lib/sl3-wp/zxing.wp7.0.XML",
  9237. "lib/sl3-wp/zxing.wp7.0.dll",
  9238. "lib/sl4-wp71/zxing.wp7.1.XML",
  9239. "lib/sl4-wp71/zxing.wp7.1.dll",
  9240. "lib/sl4/zxing.sl4.XML",
  9241. "lib/sl4/zxing.sl4.dll",
  9242. "lib/sl5/zxing.sl5.XML",
  9243. "lib/sl5/zxing.sl5.dll",
  9244. "lib/uap10/zxing.dll",
  9245. "lib/uap10/zxing.pri",
  9246. "lib/uap10/zxing.xml",
  9247. "lib/windows8-managed/zxing.winrt.XML",
  9248. "lib/windows8-managed/zxing.winrt.dll",
  9249. "lib/windows8/zxing.XML",
  9250. "lib/windows8/zxing.pri",
  9251. "lib/windows8/zxing.winmd",
  9252. "lib/wp8/zxing.wp8.0.XML",
  9253. "lib/wp8/zxing.wp8.0.dll",
  9254. "logo.jpg",
  9255. "zxing.net.0.16.9.nupkg.sha512",
  9256. "zxing.net.nuspec"
  9257. ]
  9258. },
  9259. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9260. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9261. "type": "package",
  9262. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9263. "files": [
  9264. ".nupkg.metadata",
  9265. ".signature.p7s",
  9266. "lib/net472/ZXing.ImageSharp.V2.dll",
  9267. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9268. "lib/net472/ZXing.ImageSharp.V2.xml",
  9269. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9270. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9271. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9272. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9273. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9274. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9275. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9276. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9277. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9278. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9279. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9280. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9281. "logo.jpg",
  9282. "readme.md",
  9283. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9284. "zxing.net.bindings.imagesharp.v2.nuspec"
  9285. ]
  9286. },
  9287. "Ropin.Core.Common/1.0.0": {
  9288. "type": "project",
  9289. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9290. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9291. },
  9292. "Ropin.Core.Extensions/1.0.0": {
  9293. "type": "project",
  9294. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  9295. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  9296. },
  9297. "Ropin.Inspection.Common/1.0.0": {
  9298. "type": "project",
  9299. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9300. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9301. },
  9302. "Ropin.Inspection.Model/1.0.0": {
  9303. "type": "project",
  9304. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9305. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9306. },
  9307. "Ropin.Inspection.Repository/1.0.0": {
  9308. "type": "project",
  9309. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9310. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9311. },
  9312. "Ropin.Inspection.Service/1.0.0": {
  9313. "type": "project",
  9314. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  9315. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  9316. },
  9317. "Ropin.Inspection.Tasks/1.0.0": {
  9318. "type": "project",
  9319. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  9320. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  9321. }
  9322. },
  9323. "projectFileDependencyGroups": {
  9324. "net5.0": [
  9325. "MQTTnet.AspNetCore >= 4.2.1.781",
  9326. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9327. "Newtonsoft.Json >= 13.0.3",
  9328. "Ropin.Core.Common >= 1.0.0",
  9329. "Ropin.Core.Extensions >= 1.0.0",
  9330. "Ropin.Inspection.Model >= 1.0.0",
  9331. "Ropin.Inspection.Repository >= 1.0.0",
  9332. "Swashbuckle.AspNetCore >= 5.6.3"
  9333. ]
  9334. },
  9335. "packageFolders": {
  9336. "D:\\.nuget\\packages": {},
  9337. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9338. },
  9339. "project": {
  9340. "version": "1.0.0",
  9341. "restore": {
  9342. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\Ropin.IOT.MqttService.csproj",
  9343. "projectName": "Ropin.IOT.MqttService",
  9344. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\Ropin.IOT.MqttService.csproj",
  9345. "packagesPath": "D:\\.nuget\\packages",
  9346. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\obj\\",
  9347. "projectStyle": "PackageReference",
  9348. "fallbackFolders": [
  9349. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9350. ],
  9351. "configFilePaths": [
  9352. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9353. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9354. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9355. ],
  9356. "originalTargetFrameworks": [
  9357. "net5.0"
  9358. ],
  9359. "sources": {
  9360. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9361. "C:\\Program Files\\dotnet\\library-packs": {},
  9362. "https://api.nuget.org/v3/index.json": {}
  9363. },
  9364. "frameworks": {
  9365. "net5.0": {
  9366. "targetAlias": "net5.0",
  9367. "projectReferences": {
  9368. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9369. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9370. },
  9371. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  9372. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  9373. },
  9374. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9375. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9376. },
  9377. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9378. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9379. }
  9380. }
  9381. }
  9382. },
  9383. "warningProperties": {
  9384. "warnAsError": [
  9385. "NU1605"
  9386. ]
  9387. }
  9388. },
  9389. "frameworks": {
  9390. "net5.0": {
  9391. "targetAlias": "net5.0",
  9392. "dependencies": {
  9393. "MQTTnet.AspNetCore": {
  9394. "target": "Package",
  9395. "version": "[4.2.1.781, )"
  9396. },
  9397. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9398. "target": "Package",
  9399. "version": "[1.17.2, )"
  9400. },
  9401. "Newtonsoft.Json": {
  9402. "target": "Package",
  9403. "version": "[13.0.3, )"
  9404. },
  9405. "Swashbuckle.AspNetCore": {
  9406. "target": "Package",
  9407. "version": "[5.6.3, )"
  9408. }
  9409. },
  9410. "imports": [
  9411. "net461",
  9412. "net462",
  9413. "net47",
  9414. "net471",
  9415. "net472",
  9416. "net48",
  9417. "net481"
  9418. ],
  9419. "assetTargetFallback": true,
  9420. "warn": true,
  9421. "frameworkReferences": {
  9422. "Microsoft.AspNetCore.App": {
  9423. "privateAssets": "none"
  9424. },
  9425. "Microsoft.NETCore.App": {
  9426. "privateAssets": "all"
  9427. }
  9428. },
  9429. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9430. }
  9431. }
  9432. }
  9433. }