project.assets.json 375 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "BouncyCastle.NetCore/1.8.5": {
  19. "type": "package",
  20. "compile": {
  21. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  22. "related": ".xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  27. "related": ".xml"
  28. }
  29. }
  30. },
  31. "Coravel/4.2.1": {
  32. "type": "package",
  33. "dependencies": {
  34. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  35. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  36. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  37. },
  38. "compile": {
  39. "lib/netstandard2.0/Coravel.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/netstandard2.0/Coravel.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "FBoxClientDriver/1.2.0": {
  50. "type": "package",
  51. "dependencies": {
  52. "FBoxClientDriver.Contract": "1.2.0",
  53. "IdentityModel": "4.3.1",
  54. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  55. "Microsoft.CSharp": "4.5.0",
  56. "Microsoft.Extensions.Logging": "3.1.5",
  57. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  58. "Newtonsoft.Json": "12.0.3",
  59. "Nito.AsyncEx.Coordination": "5.0.0",
  60. "NodaTime": "2.4.7",
  61. "System.ComponentModel.EventBasedAsync": "4.3.0",
  62. "System.IO.FileSystem": "4.3.0",
  63. "System.Net.Http": "4.3.2",
  64. "System.Reactive": "4.4.1",
  65. "System.Runtime.Serialization.Primitives": "4.3.0",
  66. "System.Threading.Thread": "4.3.0"
  67. },
  68. "compile": {
  69. "lib/netstandard2.0/FBoxClientDriver.dll": {
  70. "related": ".xml"
  71. }
  72. },
  73. "runtime": {
  74. "lib/netstandard2.0/FBoxClientDriver.dll": {
  75. "related": ".xml"
  76. }
  77. }
  78. },
  79. "FBoxClientDriver.Contract/1.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Newtonsoft.Json": "12.0.3",
  83. "System.ComponentModel.Primitives": "4.3.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  87. "related": ".xml"
  88. }
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  92. "related": ".xml"
  93. }
  94. }
  95. },
  96. "FluentEmail.Core/3.0.2": {
  97. "type": "package",
  98. "dependencies": {
  99. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  103. },
  104. "runtime": {
  105. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  106. }
  107. },
  108. "FluentEmail.Smtp/3.0.2": {
  109. "type": "package",
  110. "dependencies": {
  111. "FluentEmail.Core": "3.0.2"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  115. },
  116. "runtime": {
  117. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  118. }
  119. },
  120. "Google.Protobuf/3.11.4": {
  121. "type": "package",
  122. "dependencies": {
  123. "System.Memory": "4.5.2"
  124. },
  125. "compile": {
  126. "lib/netstandard2.0/Google.Protobuf.dll": {
  127. "related": ".pdb;.xml"
  128. }
  129. },
  130. "runtime": {
  131. "lib/netstandard2.0/Google.Protobuf.dll": {
  132. "related": ".pdb;.xml"
  133. }
  134. }
  135. },
  136. "IdentityModel/4.3.1": {
  137. "type": "package",
  138. "dependencies": {
  139. "Newtonsoft.Json": "11.0.2",
  140. "System.Text.Encodings.Web": "4.7.0"
  141. },
  142. "compile": {
  143. "lib/netstandard2.0/IdentityModel.dll": {
  144. "related": ".pdb;.xml"
  145. }
  146. },
  147. "runtime": {
  148. "lib/netstandard2.0/IdentityModel.dll": {
  149. "related": ".pdb;.xml"
  150. }
  151. }
  152. },
  153. "InitQ/1.0.0.14": {
  154. "type": "package",
  155. "dependencies": {
  156. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  157. "Microsoft.Extensions.Hosting": "2.1.0",
  158. "Newtonsoft.Json": "13.0.1",
  159. "StackExchange.Redis": "1.2.4"
  160. },
  161. "compile": {
  162. "lib/netcoreapp2.1/InitQ.dll": {}
  163. },
  164. "runtime": {
  165. "lib/netcoreapp2.1/InitQ.dll": {}
  166. }
  167. },
  168. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  169. "type": "package",
  170. "dependencies": {
  171. "AdvancedStringBuilder": "0.1.0",
  172. "JavaScriptEngineSwitcher.Core": "3.21.0"
  173. },
  174. "compile": {
  175. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  176. "related": ".xml"
  177. }
  178. },
  179. "runtime": {
  180. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  181. "related": ".xml"
  182. }
  183. },
  184. "resource": {
  185. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  186. "locale": "ru-RU"
  187. }
  188. }
  189. },
  190. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  191. "type": "package",
  192. "runtimeTargets": {
  193. "runtimes/linux-x64/native/libChakraCore.so": {
  194. "assetType": "native",
  195. "rid": "linux-x64"
  196. }
  197. }
  198. },
  199. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  200. "type": "package",
  201. "build": {
  202. "build/_._": {}
  203. },
  204. "runtimeTargets": {
  205. "runtimes/win-x64/native/ChakraCore.dll": {
  206. "assetType": "native",
  207. "rid": "win-x64"
  208. }
  209. }
  210. },
  211. "JavaScriptEngineSwitcher.Core/3.21.0": {
  212. "type": "package",
  213. "dependencies": {
  214. "AdvancedStringBuilder": "0.1.0"
  215. },
  216. "compile": {
  217. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  218. "related": ".xml"
  219. }
  220. },
  221. "runtime": {
  222. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  223. "related": ".xml"
  224. }
  225. },
  226. "resource": {
  227. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  228. "locale": "ru-RU"
  229. }
  230. }
  231. },
  232. "K4os.Compression.LZ4/1.1.11": {
  233. "type": "package",
  234. "dependencies": {
  235. "System.Memory": "4.5.3"
  236. },
  237. "compile": {
  238. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  239. "related": ".xml"
  240. }
  241. },
  242. "runtime": {
  243. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  244. "related": ".xml"
  245. }
  246. }
  247. },
  248. "K4os.Compression.LZ4.Streams/1.1.11": {
  249. "type": "package",
  250. "dependencies": {
  251. "K4os.Compression.LZ4": "1.1.11",
  252. "K4os.Hash.xxHash": "1.0.6"
  253. },
  254. "compile": {
  255. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  256. "related": ".xml"
  257. }
  258. },
  259. "runtime": {
  260. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  261. "related": ".xml"
  262. }
  263. }
  264. },
  265. "K4os.Hash.xxHash/1.0.6": {
  266. "type": "package",
  267. "dependencies": {
  268. "System.Memory": "4.5.3"
  269. },
  270. "compile": {
  271. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  272. "related": ".xml"
  273. }
  274. },
  275. "runtime": {
  276. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  277. "related": ".xml"
  278. }
  279. }
  280. },
  281. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  282. "type": "package",
  283. "dependencies": {
  284. "Microsoft.EntityFrameworkCore": "5.0.0"
  285. },
  286. "compile": {
  287. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  288. "related": ".xml"
  289. }
  290. },
  291. "runtime": {
  292. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  293. "related": ".xml"
  294. }
  295. }
  296. },
  297. "log4net/2.0.17": {
  298. "type": "package",
  299. "dependencies": {
  300. "System.Configuration.ConfigurationManager": "4.5.0"
  301. },
  302. "compile": {
  303. "lib/netstandard2.0/log4net.dll": {
  304. "related": ".xml"
  305. }
  306. },
  307. "runtime": {
  308. "lib/netstandard2.0/log4net.dll": {
  309. "related": ".xml"
  310. }
  311. }
  312. },
  313. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  314. "type": "package",
  315. "dependencies": {
  316. "Newtonsoft.Json": "11.0.2"
  317. },
  318. "compile": {
  319. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  320. "related": ".pdb;.xml"
  321. }
  322. },
  323. "runtime": {
  324. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  325. "related": ".pdb;.xml"
  326. }
  327. }
  328. },
  329. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  333. "System.Text.Encodings.Web": "4.5.0"
  334. },
  335. "compile": {
  336. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  337. "related": ".xml"
  338. }
  339. },
  340. "runtime": {
  341. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  342. "related": ".xml"
  343. }
  344. }
  345. },
  346. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  347. "type": "package",
  348. "dependencies": {
  349. "Microsoft.Extensions.Primitives": "5.0.0",
  350. "System.IO.Pipelines": "5.0.0"
  351. },
  352. "compile": {
  353. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  354. "related": ".xml"
  355. }
  356. },
  357. "runtime": {
  358. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  359. "related": ".xml"
  360. }
  361. }
  362. },
  363. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  364. "type": "package",
  365. "dependencies": {
  366. "Microsoft.Extensions.Logging.Console": "3.1.30",
  367. "Newtonsoft.Json": "13.0.1"
  368. },
  369. "compile": {
  370. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  371. },
  372. "runtime": {
  373. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  374. },
  375. "frameworkReferences": [
  376. "Microsoft.AspNetCore.App"
  377. ]
  378. },
  379. "Microsoft.CSharp/4.5.0": {
  380. "type": "package",
  381. "compile": {
  382. "ref/netcoreapp2.0/_._": {}
  383. },
  384. "runtime": {
  385. "lib/netcoreapp2.0/_._": {}
  386. }
  387. },
  388. "Microsoft.EntityFrameworkCore/5.0.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  392. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  393. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  394. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  395. "Microsoft.Extensions.Logging": "5.0.0",
  396. "System.Collections.Immutable": "5.0.0",
  397. "System.ComponentModel.Annotations": "5.0.0",
  398. "System.Diagnostics.DiagnosticSource": "5.0.0"
  399. },
  400. "compile": {
  401. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  402. "related": ".xml"
  403. }
  404. },
  405. "runtime": {
  406. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  407. "related": ".xml"
  408. }
  409. }
  410. },
  411. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  412. "type": "package",
  413. "compile": {
  414. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  415. "related": ".xml"
  416. }
  417. },
  418. "runtime": {
  419. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  420. "related": ".xml"
  421. }
  422. }
  423. },
  424. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  425. "type": "package",
  426. "compile": {
  427. "lib/netstandard2.0/_._": {}
  428. },
  429. "runtime": {
  430. "lib/netstandard2.0/_._": {}
  431. }
  432. },
  433. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  434. "type": "package",
  435. "dependencies": {
  436. "Microsoft.EntityFrameworkCore": "5.0.0",
  437. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  438. },
  439. "compile": {
  440. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  441. "related": ".xml"
  442. }
  443. },
  444. "runtime": {
  445. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  446. "related": ".xml"
  447. }
  448. }
  449. },
  450. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  451. "type": "package",
  452. "build": {
  453. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  454. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  455. },
  456. "buildMultiTargeting": {
  457. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  458. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  459. }
  460. },
  461. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  462. "type": "package",
  463. "dependencies": {
  464. "Microsoft.Extensions.Primitives": "5.0.0"
  465. },
  466. "compile": {
  467. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  473. "related": ".xml"
  474. }
  475. }
  476. },
  477. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  481. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  482. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  483. "Microsoft.Extensions.Options": "5.0.0",
  484. "Microsoft.Extensions.Primitives": "5.0.0"
  485. },
  486. "compile": {
  487. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  488. "related": ".xml"
  489. }
  490. },
  491. "runtime": {
  492. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  493. "related": ".xml"
  494. }
  495. }
  496. },
  497. "Microsoft.Extensions.Configuration/5.0.0": {
  498. "type": "package",
  499. "dependencies": {
  500. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  501. "Microsoft.Extensions.Primitives": "5.0.0"
  502. },
  503. "compile": {
  504. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  505. "related": ".xml"
  506. }
  507. },
  508. "runtime": {
  509. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  510. "related": ".xml"
  511. }
  512. }
  513. },
  514. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  515. "type": "package",
  516. "dependencies": {
  517. "Microsoft.Extensions.Primitives": "5.0.0"
  518. },
  519. "compile": {
  520. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  521. "related": ".xml"
  522. }
  523. },
  524. "runtime": {
  525. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  526. "related": ".xml"
  527. }
  528. }
  529. },
  530. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  531. "type": "package",
  532. "dependencies": {
  533. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  534. },
  535. "compile": {
  536. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  537. "related": ".xml"
  538. }
  539. },
  540. "runtime": {
  541. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  542. "related": ".xml"
  543. }
  544. }
  545. },
  546. "Microsoft.Extensions.Configuration.FileExtensions/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.FileProviders.Abstractions": "5.0.0",
  552. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  553. "Microsoft.Extensions.Primitives": "5.0.0"
  554. },
  555. "compile": {
  556. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  557. "related": ".xml"
  558. }
  559. },
  560. "runtime": {
  561. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  562. "related": ".xml"
  563. }
  564. }
  565. },
  566. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  567. "type": "package",
  568. "dependencies": {
  569. "Microsoft.Extensions.Configuration": "5.0.0",
  570. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  571. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  572. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  573. },
  574. "compile": {
  575. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  576. "related": ".xml"
  577. }
  578. },
  579. "runtime": {
  580. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  581. "related": ".xml"
  582. }
  583. }
  584. },
  585. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  586. "type": "package",
  587. "dependencies": {
  588. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  589. },
  590. "compile": {
  591. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  592. "related": ".xml"
  593. }
  594. },
  595. "runtime": {
  596. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  597. "related": ".xml"
  598. }
  599. }
  600. },
  601. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  602. "type": "package",
  603. "compile": {
  604. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  605. "related": ".xml"
  606. }
  607. },
  608. "runtime": {
  609. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  610. "related": ".xml"
  611. }
  612. }
  613. },
  614. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  615. "type": "package",
  616. "dependencies": {
  617. "Microsoft.Extensions.Primitives": "5.0.0"
  618. },
  619. "compile": {
  620. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "runtime": {
  625. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  626. "related": ".xml"
  627. }
  628. }
  629. },
  630. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  631. "type": "package",
  632. "dependencies": {
  633. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  634. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  635. "Microsoft.Extensions.Primitives": "5.0.0"
  636. },
  637. "compile": {
  638. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  639. "related": ".xml"
  640. }
  641. },
  642. "runtime": {
  643. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  644. "related": ".xml"
  645. }
  646. }
  647. },
  648. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  649. "type": "package",
  650. "compile": {
  651. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  652. "related": ".xml"
  653. }
  654. },
  655. "runtime": {
  656. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  657. "related": ".xml"
  658. }
  659. }
  660. },
  661. "Microsoft.Extensions.Hosting/2.1.0": {
  662. "type": "package",
  663. "dependencies": {
  664. "Microsoft.Extensions.Configuration": "2.1.0",
  665. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  666. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  667. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  668. "Microsoft.Extensions.Logging": "2.1.0"
  669. },
  670. "compile": {
  671. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  672. "related": ".xml"
  673. }
  674. },
  675. "runtime": {
  676. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  677. "related": ".xml"
  678. }
  679. }
  680. },
  681. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  682. "type": "package",
  683. "dependencies": {
  684. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  685. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  686. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  687. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  688. },
  689. "compile": {
  690. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  691. "related": ".xml"
  692. }
  693. },
  694. "runtime": {
  695. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  696. "related": ".xml"
  697. }
  698. }
  699. },
  700. "Microsoft.Extensions.Http/5.0.0": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  704. "Microsoft.Extensions.Logging": "5.0.0",
  705. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  706. "Microsoft.Extensions.Options": "5.0.0"
  707. },
  708. "compile": {
  709. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  710. "related": ".xml"
  711. }
  712. },
  713. "runtime": {
  714. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  715. "related": ".xml"
  716. }
  717. }
  718. },
  719. "Microsoft.Extensions.Logging/5.0.0": {
  720. "type": "package",
  721. "dependencies": {
  722. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  723. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  724. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  725. "Microsoft.Extensions.Options": "5.0.0"
  726. },
  727. "compile": {
  728. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  729. "related": ".xml"
  730. }
  731. },
  732. "runtime": {
  733. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  734. "related": ".xml"
  735. }
  736. }
  737. },
  738. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  739. "type": "package",
  740. "compile": {
  741. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  742. "related": ".xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  747. "related": ".xml"
  748. }
  749. }
  750. },
  751. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  752. "type": "package",
  753. "dependencies": {
  754. "Microsoft.Extensions.Logging": "3.1.30",
  755. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  756. },
  757. "compile": {
  758. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  759. "related": ".xml"
  760. }
  761. },
  762. "runtime": {
  763. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  764. "related": ".xml"
  765. }
  766. }
  767. },
  768. "Microsoft.Extensions.Logging.Console/3.1.30": {
  769. "type": "package",
  770. "dependencies": {
  771. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  772. "Microsoft.Extensions.Logging": "3.1.30",
  773. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  774. },
  775. "compile": {
  776. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  777. "related": ".xml"
  778. }
  779. },
  780. "runtime": {
  781. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  782. "related": ".xml"
  783. }
  784. }
  785. },
  786. "Microsoft.Extensions.Options/5.0.0": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  790. "Microsoft.Extensions.Primitives": "5.0.0"
  791. },
  792. "compile": {
  793. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  794. "related": ".xml"
  795. }
  796. },
  797. "runtime": {
  798. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  799. "related": ".xml"
  800. }
  801. }
  802. },
  803. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  807. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  808. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  809. "Microsoft.Extensions.Options": "3.1.30"
  810. },
  811. "compile": {
  812. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  813. "related": ".xml"
  814. }
  815. },
  816. "runtime": {
  817. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  818. "related": ".xml"
  819. }
  820. }
  821. },
  822. "Microsoft.Extensions.Primitives/5.0.0": {
  823. "type": "package",
  824. "compile": {
  825. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  826. "related": ".xml"
  827. }
  828. },
  829. "runtime": {
  830. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  831. "related": ".xml"
  832. }
  833. }
  834. },
  835. "Microsoft.NETCore.Platforms/5.0.0": {
  836. "type": "package",
  837. "compile": {
  838. "lib/netstandard1.0/_._": {}
  839. },
  840. "runtime": {
  841. "lib/netstandard1.0/_._": {}
  842. }
  843. },
  844. "Microsoft.NETCore.Targets/1.1.0": {
  845. "type": "package",
  846. "compile": {
  847. "lib/netstandard1.0/_._": {}
  848. },
  849. "runtime": {
  850. "lib/netstandard1.0/_._": {}
  851. }
  852. },
  853. "Microsoft.OpenApi/1.2.3": {
  854. "type": "package",
  855. "compile": {
  856. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  857. "related": ".pdb;.xml"
  858. }
  859. },
  860. "runtime": {
  861. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  862. "related": ".pdb;.xml"
  863. }
  864. }
  865. },
  866. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  867. "type": "package",
  868. "build": {
  869. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  870. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  871. }
  872. },
  873. "Microsoft.Win32.Primitives/4.3.0": {
  874. "type": "package",
  875. "dependencies": {
  876. "Microsoft.NETCore.Platforms": "1.1.0",
  877. "Microsoft.NETCore.Targets": "1.1.0",
  878. "System.Runtime": "4.3.0"
  879. },
  880. "compile": {
  881. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  882. "related": ".xml"
  883. }
  884. }
  885. },
  886. "Microsoft.Win32.SystemEvents/5.0.0": {
  887. "type": "package",
  888. "dependencies": {
  889. "Microsoft.NETCore.Platforms": "5.0.0"
  890. },
  891. "compile": {
  892. "ref/netstandard2.0/_._": {
  893. "related": ".xml"
  894. }
  895. },
  896. "runtime": {
  897. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  898. "related": ".xml"
  899. }
  900. },
  901. "runtimeTargets": {
  902. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  903. "assetType": "runtime",
  904. "rid": "win"
  905. }
  906. }
  907. },
  908. "MySql.Data/8.0.23": {
  909. "type": "package",
  910. "dependencies": {
  911. "BouncyCastle.NetCore": "1.8.5",
  912. "Google.Protobuf": "3.11.4",
  913. "K4os.Compression.LZ4": "1.1.11",
  914. "K4os.Compression.LZ4.Streams": "1.1.11",
  915. "K4os.Hash.xxHash": "1.0.6",
  916. "SSH.NET": "2020.0.0-beta1",
  917. "System.Buffers": "4.5.1",
  918. "System.Configuration.ConfigurationManager": "4.4.1",
  919. "System.Security.Permissions": "4.7.0",
  920. "System.Text.Encoding.CodePages": "4.4.0"
  921. },
  922. "compile": {
  923. "lib/net5.0/MySql.Data.dll": {
  924. "related": ".xml"
  925. },
  926. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  927. "lib/net5.0/Zstandard.Net.dll": {}
  928. },
  929. "runtime": {
  930. "lib/net5.0/MySql.Data.dll": {
  931. "related": ".xml"
  932. },
  933. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  934. "lib/net5.0/Zstandard.Net.dll": {}
  935. }
  936. },
  937. "MySqlConnector/1.1.0": {
  938. "type": "package",
  939. "compile": {
  940. "lib/net5.0/MySqlConnector.dll": {
  941. "related": ".xml"
  942. }
  943. },
  944. "runtime": {
  945. "lib/net5.0/MySqlConnector.dll": {
  946. "related": ".xml"
  947. }
  948. }
  949. },
  950. "NETStandard.Library/1.6.1": {
  951. "type": "package",
  952. "dependencies": {
  953. "Microsoft.NETCore.Platforms": "1.1.0",
  954. "Microsoft.Win32.Primitives": "4.3.0",
  955. "System.AppContext": "4.3.0",
  956. "System.Collections": "4.3.0",
  957. "System.Collections.Concurrent": "4.3.0",
  958. "System.Console": "4.3.0",
  959. "System.Diagnostics.Debug": "4.3.0",
  960. "System.Diagnostics.Tools": "4.3.0",
  961. "System.Diagnostics.Tracing": "4.3.0",
  962. "System.Globalization": "4.3.0",
  963. "System.Globalization.Calendars": "4.3.0",
  964. "System.IO": "4.3.0",
  965. "System.IO.Compression": "4.3.0",
  966. "System.IO.Compression.ZipFile": "4.3.0",
  967. "System.IO.FileSystem": "4.3.0",
  968. "System.IO.FileSystem.Primitives": "4.3.0",
  969. "System.Linq": "4.3.0",
  970. "System.Linq.Expressions": "4.3.0",
  971. "System.Net.Http": "4.3.0",
  972. "System.Net.Primitives": "4.3.0",
  973. "System.Net.Sockets": "4.3.0",
  974. "System.ObjectModel": "4.3.0",
  975. "System.Reflection": "4.3.0",
  976. "System.Reflection.Extensions": "4.3.0",
  977. "System.Reflection.Primitives": "4.3.0",
  978. "System.Resources.ResourceManager": "4.3.0",
  979. "System.Runtime": "4.3.0",
  980. "System.Runtime.Extensions": "4.3.0",
  981. "System.Runtime.Handles": "4.3.0",
  982. "System.Runtime.InteropServices": "4.3.0",
  983. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  984. "System.Runtime.Numerics": "4.3.0",
  985. "System.Security.Cryptography.Algorithms": "4.3.0",
  986. "System.Security.Cryptography.Encoding": "4.3.0",
  987. "System.Security.Cryptography.Primitives": "4.3.0",
  988. "System.Security.Cryptography.X509Certificates": "4.3.0",
  989. "System.Text.Encoding": "4.3.0",
  990. "System.Text.Encoding.Extensions": "4.3.0",
  991. "System.Text.RegularExpressions": "4.3.0",
  992. "System.Threading": "4.3.0",
  993. "System.Threading.Tasks": "4.3.0",
  994. "System.Threading.Timer": "4.3.0",
  995. "System.Xml.ReaderWriter": "4.3.0",
  996. "System.Xml.XDocument": "4.3.0"
  997. }
  998. },
  999. "Newtonsoft.Json/13.0.1": {
  1000. "type": "package",
  1001. "compile": {
  1002. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1003. "related": ".xml"
  1004. }
  1005. },
  1006. "runtime": {
  1007. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1008. "related": ".xml"
  1009. }
  1010. }
  1011. },
  1012. "Nito.AsyncEx.Coordination/5.0.0": {
  1013. "type": "package",
  1014. "dependencies": {
  1015. "Nito.AsyncEx.Tasks": "5.0.0",
  1016. "Nito.Collections.Deque": "1.0.4",
  1017. "Nito.Disposables": "2.0.0"
  1018. },
  1019. "compile": {
  1020. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1021. "related": ".xml"
  1022. }
  1023. },
  1024. "runtime": {
  1025. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1026. "related": ".xml"
  1027. }
  1028. }
  1029. },
  1030. "Nito.AsyncEx.Tasks/5.0.0": {
  1031. "type": "package",
  1032. "dependencies": {
  1033. "Nito.Disposables": "2.0.0"
  1034. },
  1035. "compile": {
  1036. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1037. "related": ".xml"
  1038. }
  1039. },
  1040. "runtime": {
  1041. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1042. "related": ".xml"
  1043. }
  1044. }
  1045. },
  1046. "Nito.Collections.Deque/1.0.4": {
  1047. "type": "package",
  1048. "compile": {
  1049. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1050. "related": ".xml"
  1051. }
  1052. },
  1053. "runtime": {
  1054. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1055. "related": ".xml"
  1056. }
  1057. }
  1058. },
  1059. "Nito.Disposables/2.0.0": {
  1060. "type": "package",
  1061. "dependencies": {
  1062. "System.Collections.Immutable": "1.4.0"
  1063. },
  1064. "compile": {
  1065. "lib/netstandard2.0/Nito.Disposables.dll": {
  1066. "related": ".pdb;.xml"
  1067. }
  1068. },
  1069. "runtime": {
  1070. "lib/netstandard2.0/Nito.Disposables.dll": {
  1071. "related": ".pdb;.xml"
  1072. }
  1073. }
  1074. },
  1075. "NodaTime/2.4.7": {
  1076. "type": "package",
  1077. "compile": {
  1078. "lib/netstandard2.0/NodaTime.dll": {
  1079. "related": ".pdb;.xml"
  1080. }
  1081. },
  1082. "runtime": {
  1083. "lib/netstandard2.0/NodaTime.dll": {
  1084. "related": ".pdb;.xml"
  1085. }
  1086. }
  1087. },
  1088. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1092. "MySqlConnector": "1.1.0"
  1093. },
  1094. "compile": {
  1095. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1096. "related": ".xml"
  1097. }
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1101. "related": ".xml"
  1102. }
  1103. }
  1104. },
  1105. "QRCoder/1.4.3": {
  1106. "type": "package",
  1107. "dependencies": {
  1108. "System.Drawing.Common": "5.0.3"
  1109. },
  1110. "compile": {
  1111. "lib/net5.0/QRCoder.dll": {}
  1112. },
  1113. "runtime": {
  1114. "lib/net5.0/QRCoder.dll": {}
  1115. }
  1116. },
  1117. "RabbitMQ.Client/6.8.1": {
  1118. "type": "package",
  1119. "dependencies": {
  1120. "System.Memory": "4.5.5",
  1121. "System.Threading.Channels": "7.0.0"
  1122. },
  1123. "compile": {
  1124. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1125. "related": ".xml"
  1126. }
  1127. },
  1128. "runtime": {
  1129. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1130. "related": ".xml"
  1131. }
  1132. }
  1133. },
  1134. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1135. "type": "package",
  1136. "runtimeTargets": {
  1137. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1138. "assetType": "native",
  1139. "rid": "debian.8-x64"
  1140. }
  1141. }
  1142. },
  1143. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1144. "type": "package",
  1145. "runtimeTargets": {
  1146. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1147. "assetType": "native",
  1148. "rid": "fedora.23-x64"
  1149. }
  1150. }
  1151. },
  1152. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1153. "type": "package",
  1154. "runtimeTargets": {
  1155. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1156. "assetType": "native",
  1157. "rid": "fedora.24-x64"
  1158. }
  1159. }
  1160. },
  1161. "runtime.native.System/4.3.0": {
  1162. "type": "package",
  1163. "dependencies": {
  1164. "Microsoft.NETCore.Platforms": "1.1.0",
  1165. "Microsoft.NETCore.Targets": "1.1.0"
  1166. },
  1167. "compile": {
  1168. "lib/netstandard1.0/_._": {}
  1169. },
  1170. "runtime": {
  1171. "lib/netstandard1.0/_._": {}
  1172. }
  1173. },
  1174. "runtime.native.System.IO.Compression/4.3.0": {
  1175. "type": "package",
  1176. "dependencies": {
  1177. "Microsoft.NETCore.Platforms": "1.1.0",
  1178. "Microsoft.NETCore.Targets": "1.1.0"
  1179. },
  1180. "compile": {
  1181. "lib/netstandard1.0/_._": {}
  1182. },
  1183. "runtime": {
  1184. "lib/netstandard1.0/_._": {}
  1185. }
  1186. },
  1187. "runtime.native.System.Net.Http/4.3.0": {
  1188. "type": "package",
  1189. "dependencies": {
  1190. "Microsoft.NETCore.Platforms": "1.1.0",
  1191. "Microsoft.NETCore.Targets": "1.1.0"
  1192. },
  1193. "compile": {
  1194. "lib/netstandard1.0/_._": {}
  1195. },
  1196. "runtime": {
  1197. "lib/netstandard1.0/_._": {}
  1198. }
  1199. },
  1200. "runtime.native.System.Net.Security/4.3.0": {
  1201. "type": "package",
  1202. "dependencies": {
  1203. "Microsoft.NETCore.Platforms": "1.1.0",
  1204. "Microsoft.NETCore.Targets": "1.1.0"
  1205. },
  1206. "compile": {
  1207. "lib/netstandard1.0/_._": {}
  1208. },
  1209. "runtime": {
  1210. "lib/netstandard1.0/_._": {}
  1211. }
  1212. },
  1213. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1214. "type": "package",
  1215. "dependencies": {
  1216. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1217. },
  1218. "compile": {
  1219. "lib/netstandard1.0/_._": {}
  1220. },
  1221. "runtime": {
  1222. "lib/netstandard1.0/_._": {}
  1223. }
  1224. },
  1225. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1226. "type": "package",
  1227. "dependencies": {
  1228. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1229. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1230. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1231. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1232. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1233. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1234. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1235. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1236. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1237. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1238. },
  1239. "compile": {
  1240. "lib/netstandard1.0/_._": {}
  1241. },
  1242. "runtime": {
  1243. "lib/netstandard1.0/_._": {}
  1244. }
  1245. },
  1246. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1247. "type": "package",
  1248. "runtimeTargets": {
  1249. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1250. "assetType": "native",
  1251. "rid": "opensuse.13.2-x64"
  1252. }
  1253. }
  1254. },
  1255. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1256. "type": "package",
  1257. "runtimeTargets": {
  1258. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1259. "assetType": "native",
  1260. "rid": "opensuse.42.1-x64"
  1261. }
  1262. }
  1263. },
  1264. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1265. "type": "package",
  1266. "runtimeTargets": {
  1267. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1268. "assetType": "native",
  1269. "rid": "osx.10.10-x64"
  1270. }
  1271. }
  1272. },
  1273. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1274. "type": "package",
  1275. "runtimeTargets": {
  1276. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1277. "assetType": "native",
  1278. "rid": "osx.10.10-x64"
  1279. }
  1280. }
  1281. },
  1282. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1283. "type": "package",
  1284. "runtimeTargets": {
  1285. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1286. "assetType": "native",
  1287. "rid": "rhel.7-x64"
  1288. }
  1289. }
  1290. },
  1291. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1292. "type": "package",
  1293. "runtimeTargets": {
  1294. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1295. "assetType": "native",
  1296. "rid": "ubuntu.14.04-x64"
  1297. }
  1298. }
  1299. },
  1300. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1301. "type": "package",
  1302. "runtimeTargets": {
  1303. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1304. "assetType": "native",
  1305. "rid": "ubuntu.16.04-x64"
  1306. }
  1307. }
  1308. },
  1309. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1310. "type": "package",
  1311. "runtimeTargets": {
  1312. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1313. "assetType": "native",
  1314. "rid": "ubuntu.16.10-x64"
  1315. }
  1316. }
  1317. },
  1318. "SixLabors.ImageSharp/2.1.6": {
  1319. "type": "package",
  1320. "dependencies": {
  1321. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1322. "System.Text.Encoding.CodePages": "5.0.0"
  1323. },
  1324. "compile": {
  1325. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1326. "related": ".xml"
  1327. }
  1328. },
  1329. "runtime": {
  1330. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1331. "related": ".xml"
  1332. }
  1333. }
  1334. },
  1335. "SSH.NET/2020.0.0-beta1": {
  1336. "type": "package",
  1337. "dependencies": {
  1338. "SshNet.Security.Cryptography": "[1.3.0]"
  1339. },
  1340. "compile": {
  1341. "lib/netstandard2.0/Renci.SshNet.dll": {
  1342. "related": ".xml"
  1343. }
  1344. },
  1345. "runtime": {
  1346. "lib/netstandard2.0/Renci.SshNet.dll": {
  1347. "related": ".xml"
  1348. }
  1349. }
  1350. },
  1351. "SshNet.Security.Cryptography/1.3.0": {
  1352. "type": "package",
  1353. "compile": {
  1354. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1355. "related": ".xml"
  1356. }
  1357. },
  1358. "runtime": {
  1359. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1360. "related": ".xml"
  1361. }
  1362. }
  1363. },
  1364. "StackExchange.Redis/1.2.4": {
  1365. "type": "package",
  1366. "dependencies": {
  1367. "NETStandard.Library": "1.6.1",
  1368. "System.Collections": "4.3.0",
  1369. "System.Collections.Concurrent": "4.3.0",
  1370. "System.Collections.NonGeneric": "4.3.0",
  1371. "System.Diagnostics.Tools": "4.3.0",
  1372. "System.IO.Compression": "4.3.0",
  1373. "System.IO.FileSystem": "4.3.0",
  1374. "System.Linq": "4.3.0",
  1375. "System.Net.NameResolution": "4.3.0",
  1376. "System.Net.Security": "4.3.0",
  1377. "System.Net.Sockets": "4.3.0",
  1378. "System.Reflection.Emit": "4.3.0",
  1379. "System.Reflection.Emit.Lightweight": "4.3.0",
  1380. "System.Reflection.TypeExtensions": "4.3.0",
  1381. "System.Runtime.Extensions": "4.3.0",
  1382. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1383. "System.Security.Cryptography.Algorithms": "4.3.0",
  1384. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1385. "System.Text.RegularExpressions": "4.3.0",
  1386. "System.Threading": "4.3.0",
  1387. "System.Threading.Thread": "4.3.0",
  1388. "System.Threading.ThreadPool": "4.3.0",
  1389. "System.Threading.Timer": "4.3.0"
  1390. },
  1391. "compile": {
  1392. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1393. "related": ".xml"
  1394. }
  1395. },
  1396. "runtime": {
  1397. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1398. "related": ".xml"
  1399. }
  1400. }
  1401. },
  1402. "Swashbuckle.AspNetCore/5.6.3": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1406. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1407. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1408. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1409. },
  1410. "build": {
  1411. "build/Swashbuckle.AspNetCore.props": {}
  1412. }
  1413. },
  1414. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1415. "type": "package",
  1416. "dependencies": {
  1417. "Microsoft.OpenApi": "1.2.3"
  1418. },
  1419. "compile": {
  1420. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1421. "related": ".pdb;.xml"
  1422. }
  1423. },
  1424. "runtime": {
  1425. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1426. "related": ".pdb;.xml"
  1427. }
  1428. },
  1429. "frameworkReferences": [
  1430. "Microsoft.AspNetCore.App"
  1431. ]
  1432. },
  1433. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1434. "type": "package",
  1435. "dependencies": {
  1436. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1437. },
  1438. "compile": {
  1439. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1440. "related": ".pdb;.xml"
  1441. }
  1442. },
  1443. "runtime": {
  1444. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1445. "related": ".pdb;.xml"
  1446. }
  1447. },
  1448. "frameworkReferences": [
  1449. "Microsoft.AspNetCore.App"
  1450. ]
  1451. },
  1452. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1453. "type": "package",
  1454. "compile": {
  1455. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1456. "related": ".pdb;.xml"
  1457. }
  1458. },
  1459. "runtime": {
  1460. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1461. "related": ".pdb;.xml"
  1462. }
  1463. },
  1464. "frameworkReferences": [
  1465. "Microsoft.AspNetCore.App"
  1466. ]
  1467. },
  1468. "System.AppContext/4.3.0": {
  1469. "type": "package",
  1470. "dependencies": {
  1471. "System.Runtime": "4.3.0"
  1472. },
  1473. "compile": {
  1474. "ref/netstandard1.6/System.AppContext.dll": {
  1475. "related": ".xml"
  1476. }
  1477. },
  1478. "runtime": {
  1479. "lib/netstandard1.6/System.AppContext.dll": {}
  1480. }
  1481. },
  1482. "System.Buffers/4.5.1": {
  1483. "type": "package",
  1484. "compile": {
  1485. "ref/netcoreapp2.0/_._": {}
  1486. },
  1487. "runtime": {
  1488. "lib/netcoreapp2.0/_._": {}
  1489. }
  1490. },
  1491. "System.Collections/4.3.0": {
  1492. "type": "package",
  1493. "dependencies": {
  1494. "Microsoft.NETCore.Platforms": "1.1.0",
  1495. "Microsoft.NETCore.Targets": "1.1.0",
  1496. "System.Runtime": "4.3.0"
  1497. },
  1498. "compile": {
  1499. "ref/netstandard1.3/System.Collections.dll": {
  1500. "related": ".xml"
  1501. }
  1502. }
  1503. },
  1504. "System.Collections.Concurrent/4.3.0": {
  1505. "type": "package",
  1506. "dependencies": {
  1507. "System.Collections": "4.3.0",
  1508. "System.Diagnostics.Debug": "4.3.0",
  1509. "System.Diagnostics.Tracing": "4.3.0",
  1510. "System.Globalization": "4.3.0",
  1511. "System.Reflection": "4.3.0",
  1512. "System.Resources.ResourceManager": "4.3.0",
  1513. "System.Runtime": "4.3.0",
  1514. "System.Runtime.Extensions": "4.3.0",
  1515. "System.Threading": "4.3.0",
  1516. "System.Threading.Tasks": "4.3.0"
  1517. },
  1518. "compile": {
  1519. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1520. "related": ".xml"
  1521. }
  1522. },
  1523. "runtime": {
  1524. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1525. }
  1526. },
  1527. "System.Collections.Immutable/5.0.0": {
  1528. "type": "package",
  1529. "compile": {
  1530. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1531. "related": ".xml"
  1532. }
  1533. },
  1534. "runtime": {
  1535. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1536. "related": ".xml"
  1537. }
  1538. }
  1539. },
  1540. "System.Collections.NonGeneric/4.3.0": {
  1541. "type": "package",
  1542. "dependencies": {
  1543. "System.Diagnostics.Debug": "4.3.0",
  1544. "System.Globalization": "4.3.0",
  1545. "System.Resources.ResourceManager": "4.3.0",
  1546. "System.Runtime": "4.3.0",
  1547. "System.Runtime.Extensions": "4.3.0",
  1548. "System.Threading": "4.3.0"
  1549. },
  1550. "compile": {
  1551. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1552. "related": ".xml"
  1553. }
  1554. },
  1555. "runtime": {
  1556. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1557. }
  1558. },
  1559. "System.ComponentModel/4.3.0": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "System.Runtime": "4.3.0"
  1563. },
  1564. "compile": {
  1565. "ref/netstandard1.0/System.ComponentModel.dll": {
  1566. "related": ".xml"
  1567. }
  1568. },
  1569. "runtime": {
  1570. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1571. }
  1572. },
  1573. "System.ComponentModel.Annotations/5.0.0": {
  1574. "type": "package",
  1575. "compile": {
  1576. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1577. "related": ".xml"
  1578. }
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1582. "related": ".xml"
  1583. }
  1584. }
  1585. },
  1586. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1587. "type": "package",
  1588. "dependencies": {
  1589. "System.Resources.ResourceManager": "4.3.0",
  1590. "System.Runtime": "4.3.0",
  1591. "System.Threading": "4.3.0",
  1592. "System.Threading.Tasks": "4.3.0"
  1593. },
  1594. "compile": {
  1595. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1596. "related": ".xml"
  1597. }
  1598. },
  1599. "runtime": {
  1600. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1601. }
  1602. },
  1603. "System.ComponentModel.Primitives/4.3.0": {
  1604. "type": "package",
  1605. "dependencies": {
  1606. "System.ComponentModel": "4.3.0",
  1607. "System.Resources.ResourceManager": "4.3.0",
  1608. "System.Runtime": "4.3.0"
  1609. },
  1610. "compile": {
  1611. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1612. "related": ".xml"
  1613. }
  1614. },
  1615. "runtime": {
  1616. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1617. }
  1618. },
  1619. "System.Configuration.ConfigurationManager/4.5.0": {
  1620. "type": "package",
  1621. "dependencies": {
  1622. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1623. "System.Security.Permissions": "4.5.0"
  1624. },
  1625. "compile": {
  1626. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1627. "related": ".xml"
  1628. }
  1629. },
  1630. "runtime": {
  1631. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1632. }
  1633. },
  1634. "System.Console/4.3.0": {
  1635. "type": "package",
  1636. "dependencies": {
  1637. "Microsoft.NETCore.Platforms": "1.1.0",
  1638. "Microsoft.NETCore.Targets": "1.1.0",
  1639. "System.IO": "4.3.0",
  1640. "System.Runtime": "4.3.0",
  1641. "System.Text.Encoding": "4.3.0"
  1642. },
  1643. "compile": {
  1644. "ref/netstandard1.3/System.Console.dll": {
  1645. "related": ".xml"
  1646. }
  1647. }
  1648. },
  1649. "System.Diagnostics.Debug/4.3.0": {
  1650. "type": "package",
  1651. "dependencies": {
  1652. "Microsoft.NETCore.Platforms": "1.1.0",
  1653. "Microsoft.NETCore.Targets": "1.1.0",
  1654. "System.Runtime": "4.3.0"
  1655. },
  1656. "compile": {
  1657. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1658. "related": ".xml"
  1659. }
  1660. }
  1661. },
  1662. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1663. "type": "package",
  1664. "compile": {
  1665. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1666. "related": ".xml"
  1667. }
  1668. },
  1669. "runtime": {
  1670. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1671. "related": ".xml"
  1672. }
  1673. }
  1674. },
  1675. "System.Diagnostics.Tools/4.3.0": {
  1676. "type": "package",
  1677. "dependencies": {
  1678. "Microsoft.NETCore.Platforms": "1.1.0",
  1679. "Microsoft.NETCore.Targets": "1.1.0",
  1680. "System.Runtime": "4.3.0"
  1681. },
  1682. "compile": {
  1683. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1684. "related": ".xml"
  1685. }
  1686. }
  1687. },
  1688. "System.Diagnostics.Tracing/4.3.0": {
  1689. "type": "package",
  1690. "dependencies": {
  1691. "Microsoft.NETCore.Platforms": "1.1.0",
  1692. "Microsoft.NETCore.Targets": "1.1.0",
  1693. "System.Runtime": "4.3.0"
  1694. },
  1695. "compile": {
  1696. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1697. "related": ".xml"
  1698. }
  1699. }
  1700. },
  1701. "System.Drawing.Common/5.0.3": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.Win32.SystemEvents": "5.0.0"
  1705. },
  1706. "compile": {
  1707. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1708. "related": ".xml"
  1709. }
  1710. },
  1711. "runtime": {
  1712. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1713. "related": ".xml"
  1714. }
  1715. },
  1716. "runtimeTargets": {
  1717. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1718. "assetType": "runtime",
  1719. "rid": "unix"
  1720. },
  1721. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1722. "assetType": "runtime",
  1723. "rid": "win"
  1724. }
  1725. }
  1726. },
  1727. "System.Globalization/4.3.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "Microsoft.NETCore.Platforms": "1.1.0",
  1731. "Microsoft.NETCore.Targets": "1.1.0",
  1732. "System.Runtime": "4.3.0"
  1733. },
  1734. "compile": {
  1735. "ref/netstandard1.3/System.Globalization.dll": {
  1736. "related": ".xml"
  1737. }
  1738. }
  1739. },
  1740. "System.Globalization.Calendars/4.3.0": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "Microsoft.NETCore.Platforms": "1.1.0",
  1744. "Microsoft.NETCore.Targets": "1.1.0",
  1745. "System.Globalization": "4.3.0",
  1746. "System.Runtime": "4.3.0"
  1747. },
  1748. "compile": {
  1749. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1750. "related": ".xml"
  1751. }
  1752. }
  1753. },
  1754. "System.Globalization.Extensions/4.3.0": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "Microsoft.NETCore.Platforms": "1.1.0",
  1758. "System.Globalization": "4.3.0",
  1759. "System.Resources.ResourceManager": "4.3.0",
  1760. "System.Runtime": "4.3.0",
  1761. "System.Runtime.Extensions": "4.3.0",
  1762. "System.Runtime.InteropServices": "4.3.0"
  1763. },
  1764. "compile": {
  1765. "ref/netstandard1.3/_._": {
  1766. "related": ".xml"
  1767. }
  1768. },
  1769. "runtimeTargets": {
  1770. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1771. "assetType": "runtime",
  1772. "rid": "unix"
  1773. },
  1774. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1775. "assetType": "runtime",
  1776. "rid": "win"
  1777. }
  1778. }
  1779. },
  1780. "System.IO/4.3.0": {
  1781. "type": "package",
  1782. "dependencies": {
  1783. "Microsoft.NETCore.Platforms": "1.1.0",
  1784. "Microsoft.NETCore.Targets": "1.1.0",
  1785. "System.Runtime": "4.3.0",
  1786. "System.Text.Encoding": "4.3.0",
  1787. "System.Threading.Tasks": "4.3.0"
  1788. },
  1789. "compile": {
  1790. "ref/netstandard1.5/System.IO.dll": {
  1791. "related": ".xml"
  1792. }
  1793. }
  1794. },
  1795. "System.IO.Compression/4.3.0": {
  1796. "type": "package",
  1797. "dependencies": {
  1798. "Microsoft.NETCore.Platforms": "1.1.0",
  1799. "System.Buffers": "4.3.0",
  1800. "System.Collections": "4.3.0",
  1801. "System.Diagnostics.Debug": "4.3.0",
  1802. "System.IO": "4.3.0",
  1803. "System.Resources.ResourceManager": "4.3.0",
  1804. "System.Runtime": "4.3.0",
  1805. "System.Runtime.Extensions": "4.3.0",
  1806. "System.Runtime.Handles": "4.3.0",
  1807. "System.Runtime.InteropServices": "4.3.0",
  1808. "System.Text.Encoding": "4.3.0",
  1809. "System.Threading": "4.3.0",
  1810. "System.Threading.Tasks": "4.3.0",
  1811. "runtime.native.System": "4.3.0",
  1812. "runtime.native.System.IO.Compression": "4.3.0"
  1813. },
  1814. "compile": {
  1815. "ref/netstandard1.3/System.IO.Compression.dll": {
  1816. "related": ".xml"
  1817. }
  1818. },
  1819. "runtimeTargets": {
  1820. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1821. "assetType": "runtime",
  1822. "rid": "unix"
  1823. },
  1824. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1825. "assetType": "runtime",
  1826. "rid": "win"
  1827. }
  1828. }
  1829. },
  1830. "System.IO.Compression.ZipFile/4.3.0": {
  1831. "type": "package",
  1832. "dependencies": {
  1833. "System.Buffers": "4.3.0",
  1834. "System.IO": "4.3.0",
  1835. "System.IO.Compression": "4.3.0",
  1836. "System.IO.FileSystem": "4.3.0",
  1837. "System.IO.FileSystem.Primitives": "4.3.0",
  1838. "System.Resources.ResourceManager": "4.3.0",
  1839. "System.Runtime": "4.3.0",
  1840. "System.Runtime.Extensions": "4.3.0",
  1841. "System.Text.Encoding": "4.3.0"
  1842. },
  1843. "compile": {
  1844. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1845. "related": ".xml"
  1846. }
  1847. },
  1848. "runtime": {
  1849. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1850. }
  1851. },
  1852. "System.IO.FileSystem/4.3.0": {
  1853. "type": "package",
  1854. "dependencies": {
  1855. "Microsoft.NETCore.Platforms": "1.1.0",
  1856. "Microsoft.NETCore.Targets": "1.1.0",
  1857. "System.IO": "4.3.0",
  1858. "System.IO.FileSystem.Primitives": "4.3.0",
  1859. "System.Runtime": "4.3.0",
  1860. "System.Runtime.Handles": "4.3.0",
  1861. "System.Text.Encoding": "4.3.0",
  1862. "System.Threading.Tasks": "4.3.0"
  1863. },
  1864. "compile": {
  1865. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1866. "related": ".xml"
  1867. }
  1868. }
  1869. },
  1870. "System.IO.FileSystem.Primitives/4.3.0": {
  1871. "type": "package",
  1872. "dependencies": {
  1873. "System.Runtime": "4.3.0"
  1874. },
  1875. "compile": {
  1876. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1877. "related": ".xml"
  1878. }
  1879. },
  1880. "runtime": {
  1881. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1882. }
  1883. },
  1884. "System.IO.Pipelines/5.0.0": {
  1885. "type": "package",
  1886. "compile": {
  1887. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1888. "related": ".xml"
  1889. }
  1890. },
  1891. "runtime": {
  1892. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1893. "related": ".xml"
  1894. }
  1895. }
  1896. },
  1897. "System.Linq/4.3.0": {
  1898. "type": "package",
  1899. "dependencies": {
  1900. "System.Collections": "4.3.0",
  1901. "System.Diagnostics.Debug": "4.3.0",
  1902. "System.Resources.ResourceManager": "4.3.0",
  1903. "System.Runtime": "4.3.0",
  1904. "System.Runtime.Extensions": "4.3.0"
  1905. },
  1906. "compile": {
  1907. "ref/netstandard1.6/System.Linq.dll": {
  1908. "related": ".xml"
  1909. }
  1910. },
  1911. "runtime": {
  1912. "lib/netstandard1.6/System.Linq.dll": {}
  1913. }
  1914. },
  1915. "System.Linq.Expressions/4.3.0": {
  1916. "type": "package",
  1917. "dependencies": {
  1918. "System.Collections": "4.3.0",
  1919. "System.Diagnostics.Debug": "4.3.0",
  1920. "System.Globalization": "4.3.0",
  1921. "System.IO": "4.3.0",
  1922. "System.Linq": "4.3.0",
  1923. "System.ObjectModel": "4.3.0",
  1924. "System.Reflection": "4.3.0",
  1925. "System.Reflection.Emit": "4.3.0",
  1926. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1927. "System.Reflection.Emit.Lightweight": "4.3.0",
  1928. "System.Reflection.Extensions": "4.3.0",
  1929. "System.Reflection.Primitives": "4.3.0",
  1930. "System.Reflection.TypeExtensions": "4.3.0",
  1931. "System.Resources.ResourceManager": "4.3.0",
  1932. "System.Runtime": "4.3.0",
  1933. "System.Runtime.Extensions": "4.3.0",
  1934. "System.Threading": "4.3.0"
  1935. },
  1936. "compile": {
  1937. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1938. "related": ".xml"
  1939. }
  1940. },
  1941. "runtime": {
  1942. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1943. }
  1944. },
  1945. "System.Memory/4.5.5": {
  1946. "type": "package",
  1947. "compile": {
  1948. "ref/netcoreapp2.1/_._": {}
  1949. },
  1950. "runtime": {
  1951. "lib/netcoreapp2.1/_._": {}
  1952. }
  1953. },
  1954. "System.Net.Http/4.3.2": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "Microsoft.NETCore.Platforms": "1.1.0",
  1958. "System.Collections": "4.3.0",
  1959. "System.Diagnostics.Debug": "4.3.0",
  1960. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1961. "System.Diagnostics.Tracing": "4.3.0",
  1962. "System.Globalization": "4.3.0",
  1963. "System.Globalization.Extensions": "4.3.0",
  1964. "System.IO": "4.3.0",
  1965. "System.IO.FileSystem": "4.3.0",
  1966. "System.Net.Primitives": "4.3.0",
  1967. "System.Resources.ResourceManager": "4.3.0",
  1968. "System.Runtime": "4.3.0",
  1969. "System.Runtime.Extensions": "4.3.0",
  1970. "System.Runtime.Handles": "4.3.0",
  1971. "System.Runtime.InteropServices": "4.3.0",
  1972. "System.Security.Cryptography.Algorithms": "4.3.0",
  1973. "System.Security.Cryptography.Encoding": "4.3.0",
  1974. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1975. "System.Security.Cryptography.Primitives": "4.3.0",
  1976. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1977. "System.Text.Encoding": "4.3.0",
  1978. "System.Threading": "4.3.0",
  1979. "System.Threading.Tasks": "4.3.0",
  1980. "runtime.native.System": "4.3.0",
  1981. "runtime.native.System.Net.Http": "4.3.0",
  1982. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1983. },
  1984. "compile": {
  1985. "ref/netstandard1.3/System.Net.Http.dll": {}
  1986. },
  1987. "runtimeTargets": {
  1988. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1989. "assetType": "runtime",
  1990. "rid": "unix"
  1991. },
  1992. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1993. "assetType": "runtime",
  1994. "rid": "win"
  1995. }
  1996. }
  1997. },
  1998. "System.Net.NameResolution/4.3.0": {
  1999. "type": "package",
  2000. "dependencies": {
  2001. "Microsoft.NETCore.Platforms": "1.1.0",
  2002. "System.Collections": "4.3.0",
  2003. "System.Diagnostics.Tracing": "4.3.0",
  2004. "System.Globalization": "4.3.0",
  2005. "System.Net.Primitives": "4.3.0",
  2006. "System.Resources.ResourceManager": "4.3.0",
  2007. "System.Runtime": "4.3.0",
  2008. "System.Runtime.Extensions": "4.3.0",
  2009. "System.Runtime.Handles": "4.3.0",
  2010. "System.Runtime.InteropServices": "4.3.0",
  2011. "System.Security.Principal.Windows": "4.3.0",
  2012. "System.Threading": "4.3.0",
  2013. "System.Threading.Tasks": "4.3.0",
  2014. "runtime.native.System": "4.3.0"
  2015. },
  2016. "compile": {
  2017. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2018. "related": ".xml"
  2019. }
  2020. },
  2021. "runtimeTargets": {
  2022. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2023. "assetType": "runtime",
  2024. "rid": "unix"
  2025. },
  2026. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2027. "assetType": "runtime",
  2028. "rid": "win"
  2029. }
  2030. }
  2031. },
  2032. "System.Net.Primitives/4.3.0": {
  2033. "type": "package",
  2034. "dependencies": {
  2035. "Microsoft.NETCore.Platforms": "1.1.0",
  2036. "Microsoft.NETCore.Targets": "1.1.0",
  2037. "System.Runtime": "4.3.0",
  2038. "System.Runtime.Handles": "4.3.0"
  2039. },
  2040. "compile": {
  2041. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2042. "related": ".xml"
  2043. }
  2044. }
  2045. },
  2046. "System.Net.Security/4.3.0": {
  2047. "type": "package",
  2048. "dependencies": {
  2049. "Microsoft.NETCore.Platforms": "1.1.0",
  2050. "Microsoft.Win32.Primitives": "4.3.0",
  2051. "System.Collections": "4.3.0",
  2052. "System.Collections.Concurrent": "4.3.0",
  2053. "System.Diagnostics.Tracing": "4.3.0",
  2054. "System.Globalization": "4.3.0",
  2055. "System.Globalization.Extensions": "4.3.0",
  2056. "System.IO": "4.3.0",
  2057. "System.Net.Primitives": "4.3.0",
  2058. "System.Resources.ResourceManager": "4.3.0",
  2059. "System.Runtime": "4.3.0",
  2060. "System.Runtime.Extensions": "4.3.0",
  2061. "System.Runtime.Handles": "4.3.0",
  2062. "System.Runtime.InteropServices": "4.3.0",
  2063. "System.Security.Claims": "4.3.0",
  2064. "System.Security.Cryptography.Algorithms": "4.3.0",
  2065. "System.Security.Cryptography.Encoding": "4.3.0",
  2066. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2067. "System.Security.Cryptography.Primitives": "4.3.0",
  2068. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2069. "System.Security.Principal": "4.3.0",
  2070. "System.Text.Encoding": "4.3.0",
  2071. "System.Threading": "4.3.0",
  2072. "System.Threading.Tasks": "4.3.0",
  2073. "System.Threading.ThreadPool": "4.3.0",
  2074. "runtime.native.System": "4.3.0",
  2075. "runtime.native.System.Net.Security": "4.3.0",
  2076. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2077. },
  2078. "compile": {
  2079. "ref/netstandard1.3/System.Net.Security.dll": {
  2080. "related": ".xml"
  2081. }
  2082. },
  2083. "runtimeTargets": {
  2084. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2085. "assetType": "runtime",
  2086. "rid": "unix"
  2087. },
  2088. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2089. "assetType": "runtime",
  2090. "rid": "win"
  2091. }
  2092. }
  2093. },
  2094. "System.Net.Sockets/4.3.0": {
  2095. "type": "package",
  2096. "dependencies": {
  2097. "Microsoft.NETCore.Platforms": "1.1.0",
  2098. "Microsoft.NETCore.Targets": "1.1.0",
  2099. "System.IO": "4.3.0",
  2100. "System.Net.Primitives": "4.3.0",
  2101. "System.Runtime": "4.3.0",
  2102. "System.Threading.Tasks": "4.3.0"
  2103. },
  2104. "compile": {
  2105. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2106. "related": ".xml"
  2107. }
  2108. }
  2109. },
  2110. "System.ObjectModel/4.3.0": {
  2111. "type": "package",
  2112. "dependencies": {
  2113. "System.Collections": "4.3.0",
  2114. "System.Diagnostics.Debug": "4.3.0",
  2115. "System.Resources.ResourceManager": "4.3.0",
  2116. "System.Runtime": "4.3.0",
  2117. "System.Threading": "4.3.0"
  2118. },
  2119. "compile": {
  2120. "ref/netstandard1.3/System.ObjectModel.dll": {
  2121. "related": ".xml"
  2122. }
  2123. },
  2124. "runtime": {
  2125. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2126. }
  2127. },
  2128. "System.Reactive/4.4.1": {
  2129. "type": "package",
  2130. "compile": {
  2131. "lib/netcoreapp3.0/_._": {}
  2132. },
  2133. "runtime": {
  2134. "lib/netcoreapp3.0/_._": {}
  2135. },
  2136. "build": {
  2137. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2138. }
  2139. },
  2140. "System.Reflection/4.3.0": {
  2141. "type": "package",
  2142. "dependencies": {
  2143. "Microsoft.NETCore.Platforms": "1.1.0",
  2144. "Microsoft.NETCore.Targets": "1.1.0",
  2145. "System.IO": "4.3.0",
  2146. "System.Reflection.Primitives": "4.3.0",
  2147. "System.Runtime": "4.3.0"
  2148. },
  2149. "compile": {
  2150. "ref/netstandard1.5/System.Reflection.dll": {
  2151. "related": ".xml"
  2152. }
  2153. }
  2154. },
  2155. "System.Reflection.Emit/4.3.0": {
  2156. "type": "package",
  2157. "dependencies": {
  2158. "System.IO": "4.3.0",
  2159. "System.Reflection": "4.3.0",
  2160. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2161. "System.Reflection.Primitives": "4.3.0",
  2162. "System.Runtime": "4.3.0"
  2163. },
  2164. "compile": {
  2165. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2166. "related": ".xml"
  2167. }
  2168. },
  2169. "runtime": {
  2170. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2171. }
  2172. },
  2173. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2174. "type": "package",
  2175. "dependencies": {
  2176. "System.Reflection": "4.3.0",
  2177. "System.Reflection.Primitives": "4.3.0",
  2178. "System.Runtime": "4.3.0"
  2179. },
  2180. "compile": {
  2181. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2182. "related": ".xml"
  2183. }
  2184. },
  2185. "runtime": {
  2186. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2187. }
  2188. },
  2189. "System.Reflection.Emit.Lightweight/4.3.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "System.Reflection": "4.3.0",
  2193. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2194. "System.Reflection.Primitives": "4.3.0",
  2195. "System.Runtime": "4.3.0"
  2196. },
  2197. "compile": {
  2198. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2199. "related": ".xml"
  2200. }
  2201. },
  2202. "runtime": {
  2203. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2204. }
  2205. },
  2206. "System.Reflection.Extensions/4.3.0": {
  2207. "type": "package",
  2208. "dependencies": {
  2209. "Microsoft.NETCore.Platforms": "1.1.0",
  2210. "Microsoft.NETCore.Targets": "1.1.0",
  2211. "System.Reflection": "4.3.0",
  2212. "System.Runtime": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2216. "related": ".xml"
  2217. }
  2218. }
  2219. },
  2220. "System.Reflection.Primitives/4.3.0": {
  2221. "type": "package",
  2222. "dependencies": {
  2223. "Microsoft.NETCore.Platforms": "1.1.0",
  2224. "Microsoft.NETCore.Targets": "1.1.0",
  2225. "System.Runtime": "4.3.0"
  2226. },
  2227. "compile": {
  2228. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2229. "related": ".xml"
  2230. }
  2231. }
  2232. },
  2233. "System.Reflection.TypeExtensions/4.3.0": {
  2234. "type": "package",
  2235. "dependencies": {
  2236. "System.Reflection": "4.3.0",
  2237. "System.Runtime": "4.3.0"
  2238. },
  2239. "compile": {
  2240. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2241. "related": ".xml"
  2242. }
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2246. }
  2247. },
  2248. "System.Resources.ResourceManager/4.3.0": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "Microsoft.NETCore.Platforms": "1.1.0",
  2252. "Microsoft.NETCore.Targets": "1.1.0",
  2253. "System.Globalization": "4.3.0",
  2254. "System.Reflection": "4.3.0",
  2255. "System.Runtime": "4.3.0"
  2256. },
  2257. "compile": {
  2258. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2259. "related": ".xml"
  2260. }
  2261. }
  2262. },
  2263. "System.Runtime/4.3.0": {
  2264. "type": "package",
  2265. "dependencies": {
  2266. "Microsoft.NETCore.Platforms": "1.1.0",
  2267. "Microsoft.NETCore.Targets": "1.1.0"
  2268. },
  2269. "compile": {
  2270. "ref/netstandard1.5/System.Runtime.dll": {
  2271. "related": ".xml"
  2272. }
  2273. }
  2274. },
  2275. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2276. "type": "package",
  2277. "compile": {
  2278. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2279. "related": ".xml"
  2280. }
  2281. },
  2282. "runtime": {
  2283. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2284. "related": ".xml"
  2285. }
  2286. }
  2287. },
  2288. "System.Runtime.Extensions/4.3.0": {
  2289. "type": "package",
  2290. "dependencies": {
  2291. "Microsoft.NETCore.Platforms": "1.1.0",
  2292. "Microsoft.NETCore.Targets": "1.1.0",
  2293. "System.Runtime": "4.3.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2297. "related": ".xml"
  2298. }
  2299. }
  2300. },
  2301. "System.Runtime.Handles/4.3.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "Microsoft.NETCore.Platforms": "1.1.0",
  2305. "Microsoft.NETCore.Targets": "1.1.0",
  2306. "System.Runtime": "4.3.0"
  2307. },
  2308. "compile": {
  2309. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2310. "related": ".xml"
  2311. }
  2312. }
  2313. },
  2314. "System.Runtime.InteropServices/4.3.0": {
  2315. "type": "package",
  2316. "dependencies": {
  2317. "Microsoft.NETCore.Platforms": "1.1.0",
  2318. "Microsoft.NETCore.Targets": "1.1.0",
  2319. "System.Reflection": "4.3.0",
  2320. "System.Reflection.Primitives": "4.3.0",
  2321. "System.Runtime": "4.3.0",
  2322. "System.Runtime.Handles": "4.3.0"
  2323. },
  2324. "compile": {
  2325. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2326. }
  2327. },
  2328. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2329. "type": "package",
  2330. "dependencies": {
  2331. "System.Reflection": "4.3.0",
  2332. "System.Reflection.Extensions": "4.3.0",
  2333. "System.Resources.ResourceManager": "4.3.0",
  2334. "System.Runtime": "4.3.0",
  2335. "System.Runtime.InteropServices": "4.3.0",
  2336. "System.Threading": "4.3.0",
  2337. "runtime.native.System": "4.3.0"
  2338. },
  2339. "compile": {
  2340. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2341. },
  2342. "runtime": {
  2343. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2344. },
  2345. "runtimeTargets": {
  2346. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2347. "assetType": "runtime",
  2348. "rid": "unix"
  2349. },
  2350. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "win"
  2353. }
  2354. }
  2355. },
  2356. "System.Runtime.Numerics/4.3.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "System.Globalization": "4.3.0",
  2360. "System.Resources.ResourceManager": "4.3.0",
  2361. "System.Runtime": "4.3.0",
  2362. "System.Runtime.Extensions": "4.3.0"
  2363. },
  2364. "compile": {
  2365. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2366. "related": ".xml"
  2367. }
  2368. },
  2369. "runtime": {
  2370. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2371. }
  2372. },
  2373. "System.Runtime.Serialization.Primitives/4.3.0": {
  2374. "type": "package",
  2375. "dependencies": {
  2376. "System.Resources.ResourceManager": "4.3.0",
  2377. "System.Runtime": "4.3.0"
  2378. },
  2379. "compile": {
  2380. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2381. "related": ".xml"
  2382. }
  2383. },
  2384. "runtime": {
  2385. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2386. }
  2387. },
  2388. "System.Security.AccessControl/4.7.0": {
  2389. "type": "package",
  2390. "dependencies": {
  2391. "Microsoft.NETCore.Platforms": "3.1.0",
  2392. "System.Security.Principal.Windows": "4.7.0"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtime": {
  2400. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2401. "related": ".xml"
  2402. }
  2403. },
  2404. "runtimeTargets": {
  2405. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2406. "assetType": "runtime",
  2407. "rid": "win"
  2408. }
  2409. }
  2410. },
  2411. "System.Security.Claims/4.3.0": {
  2412. "type": "package",
  2413. "dependencies": {
  2414. "System.Collections": "4.3.0",
  2415. "System.Globalization": "4.3.0",
  2416. "System.IO": "4.3.0",
  2417. "System.Resources.ResourceManager": "4.3.0",
  2418. "System.Runtime": "4.3.0",
  2419. "System.Runtime.Extensions": "4.3.0",
  2420. "System.Security.Principal": "4.3.0"
  2421. },
  2422. "compile": {
  2423. "ref/netstandard1.3/_._": {
  2424. "related": ".xml"
  2425. }
  2426. },
  2427. "runtime": {
  2428. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2429. }
  2430. },
  2431. "System.Security.Cryptography.Algorithms/4.3.0": {
  2432. "type": "package",
  2433. "dependencies": {
  2434. "Microsoft.NETCore.Platforms": "1.1.0",
  2435. "System.Collections": "4.3.0",
  2436. "System.IO": "4.3.0",
  2437. "System.Resources.ResourceManager": "4.3.0",
  2438. "System.Runtime": "4.3.0",
  2439. "System.Runtime.Extensions": "4.3.0",
  2440. "System.Runtime.Handles": "4.3.0",
  2441. "System.Runtime.InteropServices": "4.3.0",
  2442. "System.Runtime.Numerics": "4.3.0",
  2443. "System.Security.Cryptography.Encoding": "4.3.0",
  2444. "System.Security.Cryptography.Primitives": "4.3.0",
  2445. "System.Text.Encoding": "4.3.0",
  2446. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2447. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2448. },
  2449. "compile": {
  2450. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2451. },
  2452. "runtimeTargets": {
  2453. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2454. "assetType": "runtime",
  2455. "rid": "osx"
  2456. },
  2457. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2458. "assetType": "runtime",
  2459. "rid": "unix"
  2460. },
  2461. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2462. "assetType": "runtime",
  2463. "rid": "win"
  2464. }
  2465. }
  2466. },
  2467. "System.Security.Cryptography.Cng/4.3.0": {
  2468. "type": "package",
  2469. "dependencies": {
  2470. "Microsoft.NETCore.Platforms": "1.1.0",
  2471. "System.IO": "4.3.0",
  2472. "System.Resources.ResourceManager": "4.3.0",
  2473. "System.Runtime": "4.3.0",
  2474. "System.Runtime.Extensions": "4.3.0",
  2475. "System.Runtime.Handles": "4.3.0",
  2476. "System.Runtime.InteropServices": "4.3.0",
  2477. "System.Security.Cryptography.Algorithms": "4.3.0",
  2478. "System.Security.Cryptography.Encoding": "4.3.0",
  2479. "System.Security.Cryptography.Primitives": "4.3.0",
  2480. "System.Text.Encoding": "4.3.0"
  2481. },
  2482. "compile": {
  2483. "ref/netstandard1.6/_._": {}
  2484. },
  2485. "runtimeTargets": {
  2486. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2487. "assetType": "runtime",
  2488. "rid": "unix"
  2489. },
  2490. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2491. "assetType": "runtime",
  2492. "rid": "win"
  2493. }
  2494. }
  2495. },
  2496. "System.Security.Cryptography.Csp/4.3.0": {
  2497. "type": "package",
  2498. "dependencies": {
  2499. "Microsoft.NETCore.Platforms": "1.1.0",
  2500. "System.IO": "4.3.0",
  2501. "System.Reflection": "4.3.0",
  2502. "System.Resources.ResourceManager": "4.3.0",
  2503. "System.Runtime": "4.3.0",
  2504. "System.Runtime.Extensions": "4.3.0",
  2505. "System.Runtime.Handles": "4.3.0",
  2506. "System.Runtime.InteropServices": "4.3.0",
  2507. "System.Security.Cryptography.Algorithms": "4.3.0",
  2508. "System.Security.Cryptography.Encoding": "4.3.0",
  2509. "System.Security.Cryptography.Primitives": "4.3.0",
  2510. "System.Text.Encoding": "4.3.0",
  2511. "System.Threading": "4.3.0"
  2512. },
  2513. "compile": {
  2514. "ref/netstandard1.3/_._": {}
  2515. },
  2516. "runtimeTargets": {
  2517. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2518. "assetType": "runtime",
  2519. "rid": "unix"
  2520. },
  2521. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2522. "assetType": "runtime",
  2523. "rid": "win"
  2524. }
  2525. }
  2526. },
  2527. "System.Security.Cryptography.Encoding/4.3.0": {
  2528. "type": "package",
  2529. "dependencies": {
  2530. "Microsoft.NETCore.Platforms": "1.1.0",
  2531. "System.Collections": "4.3.0",
  2532. "System.Collections.Concurrent": "4.3.0",
  2533. "System.Linq": "4.3.0",
  2534. "System.Resources.ResourceManager": "4.3.0",
  2535. "System.Runtime": "4.3.0",
  2536. "System.Runtime.Extensions": "4.3.0",
  2537. "System.Runtime.Handles": "4.3.0",
  2538. "System.Runtime.InteropServices": "4.3.0",
  2539. "System.Security.Cryptography.Primitives": "4.3.0",
  2540. "System.Text.Encoding": "4.3.0",
  2541. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2542. },
  2543. "compile": {
  2544. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2545. "related": ".xml"
  2546. }
  2547. },
  2548. "runtimeTargets": {
  2549. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2550. "assetType": "runtime",
  2551. "rid": "unix"
  2552. },
  2553. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2554. "assetType": "runtime",
  2555. "rid": "win"
  2556. }
  2557. }
  2558. },
  2559. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2560. "type": "package",
  2561. "dependencies": {
  2562. "System.Collections": "4.3.0",
  2563. "System.IO": "4.3.0",
  2564. "System.Resources.ResourceManager": "4.3.0",
  2565. "System.Runtime": "4.3.0",
  2566. "System.Runtime.Extensions": "4.3.0",
  2567. "System.Runtime.Handles": "4.3.0",
  2568. "System.Runtime.InteropServices": "4.3.0",
  2569. "System.Runtime.Numerics": "4.3.0",
  2570. "System.Security.Cryptography.Algorithms": "4.3.0",
  2571. "System.Security.Cryptography.Encoding": "4.3.0",
  2572. "System.Security.Cryptography.Primitives": "4.3.0",
  2573. "System.Text.Encoding": "4.3.0",
  2574. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2575. },
  2576. "compile": {
  2577. "ref/netstandard1.6/_._": {}
  2578. },
  2579. "runtime": {
  2580. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2581. },
  2582. "runtimeTargets": {
  2583. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2584. "assetType": "runtime",
  2585. "rid": "unix"
  2586. }
  2587. }
  2588. },
  2589. "System.Security.Cryptography.Primitives/4.3.0": {
  2590. "type": "package",
  2591. "dependencies": {
  2592. "System.Diagnostics.Debug": "4.3.0",
  2593. "System.Globalization": "4.3.0",
  2594. "System.IO": "4.3.0",
  2595. "System.Resources.ResourceManager": "4.3.0",
  2596. "System.Runtime": "4.3.0",
  2597. "System.Threading": "4.3.0",
  2598. "System.Threading.Tasks": "4.3.0"
  2599. },
  2600. "compile": {
  2601. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2602. },
  2603. "runtime": {
  2604. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2605. }
  2606. },
  2607. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2608. "type": "package",
  2609. "compile": {
  2610. "ref/netstandard2.0/_._": {
  2611. "related": ".xml"
  2612. }
  2613. },
  2614. "runtime": {
  2615. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2616. },
  2617. "runtimeTargets": {
  2618. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2619. "assetType": "runtime",
  2620. "rid": "win"
  2621. }
  2622. }
  2623. },
  2624. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2625. "type": "package",
  2626. "dependencies": {
  2627. "Microsoft.NETCore.Platforms": "1.1.0",
  2628. "System.Collections": "4.3.0",
  2629. "System.Diagnostics.Debug": "4.3.0",
  2630. "System.Globalization": "4.3.0",
  2631. "System.Globalization.Calendars": "4.3.0",
  2632. "System.IO": "4.3.0",
  2633. "System.IO.FileSystem": "4.3.0",
  2634. "System.IO.FileSystem.Primitives": "4.3.0",
  2635. "System.Resources.ResourceManager": "4.3.0",
  2636. "System.Runtime": "4.3.0",
  2637. "System.Runtime.Extensions": "4.3.0",
  2638. "System.Runtime.Handles": "4.3.0",
  2639. "System.Runtime.InteropServices": "4.3.0",
  2640. "System.Runtime.Numerics": "4.3.0",
  2641. "System.Security.Cryptography.Algorithms": "4.3.0",
  2642. "System.Security.Cryptography.Cng": "4.3.0",
  2643. "System.Security.Cryptography.Csp": "4.3.0",
  2644. "System.Security.Cryptography.Encoding": "4.3.0",
  2645. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2646. "System.Security.Cryptography.Primitives": "4.3.0",
  2647. "System.Text.Encoding": "4.3.0",
  2648. "System.Threading": "4.3.0",
  2649. "runtime.native.System": "4.3.0",
  2650. "runtime.native.System.Net.Http": "4.3.0",
  2651. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2652. },
  2653. "compile": {
  2654. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2655. "related": ".xml"
  2656. }
  2657. },
  2658. "runtimeTargets": {
  2659. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2660. "assetType": "runtime",
  2661. "rid": "unix"
  2662. },
  2663. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2664. "assetType": "runtime",
  2665. "rid": "win"
  2666. }
  2667. }
  2668. },
  2669. "System.Security.Permissions/4.7.0": {
  2670. "type": "package",
  2671. "dependencies": {
  2672. "System.Security.AccessControl": "4.7.0",
  2673. "System.Windows.Extensions": "4.7.0"
  2674. },
  2675. "compile": {
  2676. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2677. "related": ".xml"
  2678. }
  2679. },
  2680. "runtime": {
  2681. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2682. "related": ".xml"
  2683. }
  2684. }
  2685. },
  2686. "System.Security.Principal/4.3.0": {
  2687. "type": "package",
  2688. "dependencies": {
  2689. "System.Runtime": "4.3.0"
  2690. },
  2691. "compile": {
  2692. "ref/netstandard1.0/System.Security.Principal.dll": {
  2693. "related": ".xml"
  2694. }
  2695. },
  2696. "runtime": {
  2697. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2698. }
  2699. },
  2700. "System.Security.Principal.Windows/4.7.0": {
  2701. "type": "package",
  2702. "compile": {
  2703. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2704. "related": ".xml"
  2705. }
  2706. },
  2707. "runtime": {
  2708. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2709. "related": ".xml"
  2710. }
  2711. },
  2712. "runtimeTargets": {
  2713. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2714. "assetType": "runtime",
  2715. "rid": "unix"
  2716. },
  2717. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2718. "assetType": "runtime",
  2719. "rid": "win"
  2720. }
  2721. }
  2722. },
  2723. "System.Text.Encoding/4.3.0": {
  2724. "type": "package",
  2725. "dependencies": {
  2726. "Microsoft.NETCore.Platforms": "1.1.0",
  2727. "Microsoft.NETCore.Targets": "1.1.0",
  2728. "System.Runtime": "4.3.0"
  2729. },
  2730. "compile": {
  2731. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2732. "related": ".xml"
  2733. }
  2734. }
  2735. },
  2736. "System.Text.Encoding.CodePages/5.0.0": {
  2737. "type": "package",
  2738. "dependencies": {
  2739. "Microsoft.NETCore.Platforms": "5.0.0"
  2740. },
  2741. "compile": {
  2742. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2743. "related": ".xml"
  2744. }
  2745. },
  2746. "runtime": {
  2747. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2748. "related": ".xml"
  2749. }
  2750. },
  2751. "runtimeTargets": {
  2752. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2753. "assetType": "runtime",
  2754. "rid": "win"
  2755. }
  2756. }
  2757. },
  2758. "System.Text.Encoding.Extensions/4.3.0": {
  2759. "type": "package",
  2760. "dependencies": {
  2761. "Microsoft.NETCore.Platforms": "1.1.0",
  2762. "Microsoft.NETCore.Targets": "1.1.0",
  2763. "System.Runtime": "4.3.0",
  2764. "System.Text.Encoding": "4.3.0"
  2765. },
  2766. "compile": {
  2767. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2768. "related": ".xml"
  2769. }
  2770. }
  2771. },
  2772. "System.Text.Encodings.Web/4.7.0": {
  2773. "type": "package",
  2774. "compile": {
  2775. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2776. "related": ".xml"
  2777. }
  2778. },
  2779. "runtime": {
  2780. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2781. "related": ".xml"
  2782. }
  2783. }
  2784. },
  2785. "System.Text.RegularExpressions/4.3.0": {
  2786. "type": "package",
  2787. "dependencies": {
  2788. "System.Runtime": "4.3.0"
  2789. },
  2790. "compile": {
  2791. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2792. },
  2793. "runtime": {
  2794. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2795. }
  2796. },
  2797. "System.Threading/4.3.0": {
  2798. "type": "package",
  2799. "dependencies": {
  2800. "System.Runtime": "4.3.0",
  2801. "System.Threading.Tasks": "4.3.0"
  2802. },
  2803. "compile": {
  2804. "ref/netstandard1.3/System.Threading.dll": {
  2805. "related": ".xml"
  2806. }
  2807. },
  2808. "runtime": {
  2809. "lib/netstandard1.3/System.Threading.dll": {}
  2810. }
  2811. },
  2812. "System.Threading.Channels/7.0.0": {
  2813. "type": "package",
  2814. "compile": {
  2815. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2816. "related": ".xml"
  2817. }
  2818. },
  2819. "runtime": {
  2820. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2821. "related": ".xml"
  2822. }
  2823. },
  2824. "build": {
  2825. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2826. }
  2827. },
  2828. "System.Threading.Tasks/4.3.0": {
  2829. "type": "package",
  2830. "dependencies": {
  2831. "Microsoft.NETCore.Platforms": "1.1.0",
  2832. "Microsoft.NETCore.Targets": "1.1.0",
  2833. "System.Runtime": "4.3.0"
  2834. },
  2835. "compile": {
  2836. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2837. "related": ".xml"
  2838. }
  2839. }
  2840. },
  2841. "System.Threading.Tasks.Extensions/4.3.0": {
  2842. "type": "package",
  2843. "dependencies": {
  2844. "System.Collections": "4.3.0",
  2845. "System.Runtime": "4.3.0",
  2846. "System.Threading.Tasks": "4.3.0"
  2847. },
  2848. "compile": {
  2849. "lib/netstandard1.0/_._": {
  2850. "related": ".xml"
  2851. }
  2852. },
  2853. "runtime": {
  2854. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2855. "related": ".xml"
  2856. }
  2857. }
  2858. },
  2859. "System.Threading.Thread/4.3.0": {
  2860. "type": "package",
  2861. "dependencies": {
  2862. "System.Runtime": "4.3.0"
  2863. },
  2864. "compile": {
  2865. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2866. "related": ".xml"
  2867. }
  2868. },
  2869. "runtime": {
  2870. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2871. }
  2872. },
  2873. "System.Threading.ThreadPool/4.3.0": {
  2874. "type": "package",
  2875. "dependencies": {
  2876. "System.Runtime": "4.3.0",
  2877. "System.Runtime.Handles": "4.3.0"
  2878. },
  2879. "compile": {
  2880. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2881. "related": ".xml"
  2882. }
  2883. },
  2884. "runtime": {
  2885. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2886. }
  2887. },
  2888. "System.Threading.Timer/4.3.0": {
  2889. "type": "package",
  2890. "dependencies": {
  2891. "Microsoft.NETCore.Platforms": "1.1.0",
  2892. "Microsoft.NETCore.Targets": "1.1.0",
  2893. "System.Runtime": "4.3.0"
  2894. },
  2895. "compile": {
  2896. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2897. "related": ".xml"
  2898. }
  2899. }
  2900. },
  2901. "System.Windows.Extensions/4.7.0": {
  2902. "type": "package",
  2903. "dependencies": {
  2904. "System.Drawing.Common": "4.7.0"
  2905. },
  2906. "compile": {
  2907. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2908. "related": ".xml"
  2909. }
  2910. },
  2911. "runtime": {
  2912. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2913. "related": ".xml"
  2914. }
  2915. },
  2916. "runtimeTargets": {
  2917. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2918. "assetType": "runtime",
  2919. "rid": "win"
  2920. }
  2921. }
  2922. },
  2923. "System.Xml.ReaderWriter/4.3.0": {
  2924. "type": "package",
  2925. "dependencies": {
  2926. "System.Collections": "4.3.0",
  2927. "System.Diagnostics.Debug": "4.3.0",
  2928. "System.Globalization": "4.3.0",
  2929. "System.IO": "4.3.0",
  2930. "System.IO.FileSystem": "4.3.0",
  2931. "System.IO.FileSystem.Primitives": "4.3.0",
  2932. "System.Resources.ResourceManager": "4.3.0",
  2933. "System.Runtime": "4.3.0",
  2934. "System.Runtime.Extensions": "4.3.0",
  2935. "System.Runtime.InteropServices": "4.3.0",
  2936. "System.Text.Encoding": "4.3.0",
  2937. "System.Text.Encoding.Extensions": "4.3.0",
  2938. "System.Text.RegularExpressions": "4.3.0",
  2939. "System.Threading.Tasks": "4.3.0",
  2940. "System.Threading.Tasks.Extensions": "4.3.0"
  2941. },
  2942. "compile": {
  2943. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2944. "related": ".xml"
  2945. }
  2946. },
  2947. "runtime": {
  2948. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2949. }
  2950. },
  2951. "System.Xml.XDocument/4.3.0": {
  2952. "type": "package",
  2953. "dependencies": {
  2954. "System.Collections": "4.3.0",
  2955. "System.Diagnostics.Debug": "4.3.0",
  2956. "System.Diagnostics.Tools": "4.3.0",
  2957. "System.Globalization": "4.3.0",
  2958. "System.IO": "4.3.0",
  2959. "System.Reflection": "4.3.0",
  2960. "System.Resources.ResourceManager": "4.3.0",
  2961. "System.Runtime": "4.3.0",
  2962. "System.Runtime.Extensions": "4.3.0",
  2963. "System.Text.Encoding": "4.3.0",
  2964. "System.Threading": "4.3.0",
  2965. "System.Xml.ReaderWriter": "4.3.0"
  2966. },
  2967. "compile": {
  2968. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2969. "related": ".xml"
  2970. }
  2971. },
  2972. "runtime": {
  2973. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2974. }
  2975. },
  2976. "ToolGood.Words/3.1.0.2": {
  2977. "type": "package",
  2978. "compile": {
  2979. "lib/netstandard2.1/ToolGood.Words.dll": {
  2980. "related": ".xml"
  2981. }
  2982. },
  2983. "runtime": {
  2984. "lib/netstandard2.1/ToolGood.Words.dll": {
  2985. "related": ".xml"
  2986. }
  2987. }
  2988. },
  2989. "ZXing.Net/0.16.9": {
  2990. "type": "package",
  2991. "compile": {
  2992. "lib/net5.0/zxing.dll": {
  2993. "related": ".XML"
  2994. }
  2995. },
  2996. "runtime": {
  2997. "lib/net5.0/zxing.dll": {
  2998. "related": ".XML"
  2999. }
  3000. }
  3001. },
  3002. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3003. "type": "package",
  3004. "dependencies": {
  3005. "SixLabors.ImageSharp": "2.1.3",
  3006. "ZXing.Net": "0.16.9"
  3007. },
  3008. "compile": {
  3009. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3010. "related": ".pdb;.xml"
  3011. }
  3012. },
  3013. "runtime": {
  3014. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3015. "related": ".pdb;.xml"
  3016. }
  3017. }
  3018. },
  3019. "Ropin.Core.Common/1.0.0": {
  3020. "type": "project",
  3021. "framework": ".NETCoreApp,Version=v5.0",
  3022. "dependencies": {
  3023. "Coravel": "4.2.1",
  3024. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3025. "Newtonsoft.Json": "13.0.1",
  3026. "QRCoder": "1.4.3",
  3027. "SixLabors.ImageSharp": "2.1.6",
  3028. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3029. },
  3030. "compile": {
  3031. "bin/placeholder/Ropin.Core.Common.dll": {}
  3032. },
  3033. "runtime": {
  3034. "bin/placeholder/Ropin.Core.Common.dll": {}
  3035. }
  3036. },
  3037. "Ropin.Inspection.Common/1.0.0": {
  3038. "type": "project",
  3039. "framework": ".NETCoreApp,Version=v5.0",
  3040. "dependencies": {
  3041. "FluentEmail.Smtp": "3.0.2",
  3042. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3043. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3044. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3045. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3046. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3047. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3048. "Microsoft.Extensions.Configuration": "5.0.0",
  3049. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3050. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3051. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3052. "Microsoft.Extensions.Http": "5.0.0",
  3053. "Newtonsoft.Json": "13.0.1",
  3054. "RabbitMQ.Client": "6.8.1",
  3055. "ToolGood.Words": "3.1.0.2",
  3056. "log4net": "2.0.17"
  3057. },
  3058. "compile": {
  3059. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3060. },
  3061. "runtime": {
  3062. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3063. }
  3064. },
  3065. "Ropin.Inspection.Model/1.0.0": {
  3066. "type": "project",
  3067. "framework": ".NETCoreApp,Version=v5.0",
  3068. "dependencies": {
  3069. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3070. "Microsoft.EntityFrameworkCore": "5.0.0",
  3071. "MySql.Data": "8.0.23",
  3072. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3073. "Ropin.Inspection.Common": "1.0.0"
  3074. },
  3075. "compile": {
  3076. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3077. },
  3078. "runtime": {
  3079. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3080. }
  3081. },
  3082. "Ropin.Inspection.Repository/1.0.0": {
  3083. "type": "project",
  3084. "framework": ".NETCoreApp,Version=v5.0",
  3085. "dependencies": {
  3086. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3087. "Microsoft.EntityFrameworkCore": "5.0.0",
  3088. "Ropin.Inspection.Model": "1.0.0"
  3089. },
  3090. "compile": {
  3091. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3092. },
  3093. "runtime": {
  3094. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3095. }
  3096. }
  3097. }
  3098. },
  3099. "libraries": {
  3100. "AdvancedStringBuilder/0.1.0": {
  3101. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3102. "type": "package",
  3103. "path": "advancedstringbuilder/0.1.0",
  3104. "files": [
  3105. ".nupkg.metadata",
  3106. ".signature.p7s",
  3107. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3108. "advancedstringbuilder.nuspec",
  3109. "lib/net40-client/AdvancedStringBuilder.dll",
  3110. "lib/net40-client/AdvancedStringBuilder.xml",
  3111. "lib/net45/AdvancedStringBuilder.dll",
  3112. "lib/net45/AdvancedStringBuilder.xml",
  3113. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3114. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3115. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3116. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3117. ]
  3118. },
  3119. "BouncyCastle.NetCore/1.8.5": {
  3120. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3121. "type": "package",
  3122. "path": "bouncycastle.netcore/1.8.5",
  3123. "files": [
  3124. ".nupkg.metadata",
  3125. ".signature.p7s",
  3126. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3127. "bouncycastle.netcore.nuspec",
  3128. "lib/Mono/BouncyCastle.Crypto.dll",
  3129. "lib/Mono/BouncyCastle.Crypto.xml",
  3130. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3131. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3132. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3133. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3134. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3135. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3136. "lib/net20/BouncyCastle.Crypto.dll",
  3137. "lib/net20/BouncyCastle.Crypto.xml",
  3138. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3139. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3140. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3141. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3142. ]
  3143. },
  3144. "Coravel/4.2.1": {
  3145. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3146. "type": "package",
  3147. "path": "coravel/4.2.1",
  3148. "files": [
  3149. ".nupkg.metadata",
  3150. ".signature.p7s",
  3151. "coravel.4.2.1.nupkg.sha512",
  3152. "coravel.nuspec",
  3153. "lib/netstandard2.0/Coravel.dll",
  3154. "lib/netstandard2.0/Coravel.xml",
  3155. "logo.png",
  3156. "readme.md"
  3157. ]
  3158. },
  3159. "FBoxClientDriver/1.2.0": {
  3160. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3161. "type": "package",
  3162. "path": "fboxclientdriver/1.2.0",
  3163. "files": [
  3164. ".nupkg.metadata",
  3165. ".signature.p7s",
  3166. "fboxclientdriver.1.2.0.nupkg.sha512",
  3167. "fboxclientdriver.nuspec",
  3168. "lib/netstandard2.0/FBoxClientDriver.dll",
  3169. "lib/netstandard2.0/FBoxClientDriver.xml"
  3170. ]
  3171. },
  3172. "FBoxClientDriver.Contract/1.2.0": {
  3173. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3174. "type": "package",
  3175. "path": "fboxclientdriver.contract/1.2.0",
  3176. "files": [
  3177. ".nupkg.metadata",
  3178. ".signature.p7s",
  3179. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3180. "fboxclientdriver.contract.nuspec",
  3181. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3182. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3183. ]
  3184. },
  3185. "FluentEmail.Core/3.0.2": {
  3186. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3187. "type": "package",
  3188. "path": "fluentemail.core/3.0.2",
  3189. "files": [
  3190. ".nupkg.metadata",
  3191. ".signature.p7s",
  3192. "fluentemail.core.3.0.2.nupkg.sha512",
  3193. "fluentemail.core.nuspec",
  3194. "fluentemail_logo_64x64.png",
  3195. "lib/netstandard2.0/FluentEmail.Core.dll"
  3196. ]
  3197. },
  3198. "FluentEmail.Smtp/3.0.2": {
  3199. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3200. "type": "package",
  3201. "path": "fluentemail.smtp/3.0.2",
  3202. "files": [
  3203. ".nupkg.metadata",
  3204. ".signature.p7s",
  3205. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3206. "fluentemail.smtp.nuspec",
  3207. "fluentemail_logo_64x64.png",
  3208. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3209. ]
  3210. },
  3211. "Google.Protobuf/3.11.4": {
  3212. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3213. "type": "package",
  3214. "path": "google.protobuf/3.11.4",
  3215. "files": [
  3216. ".nupkg.metadata",
  3217. ".signature.p7s",
  3218. "google.protobuf.3.11.4.nupkg.sha512",
  3219. "google.protobuf.nuspec",
  3220. "lib/net45/Google.Protobuf.dll",
  3221. "lib/net45/Google.Protobuf.pdb",
  3222. "lib/net45/Google.Protobuf.xml",
  3223. "lib/netstandard1.0/Google.Protobuf.dll",
  3224. "lib/netstandard1.0/Google.Protobuf.pdb",
  3225. "lib/netstandard1.0/Google.Protobuf.xml",
  3226. "lib/netstandard2.0/Google.Protobuf.dll",
  3227. "lib/netstandard2.0/Google.Protobuf.pdb",
  3228. "lib/netstandard2.0/Google.Protobuf.xml"
  3229. ]
  3230. },
  3231. "IdentityModel/4.3.1": {
  3232. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3233. "type": "package",
  3234. "path": "identitymodel/4.3.1",
  3235. "files": [
  3236. ".nupkg.metadata",
  3237. ".signature.p7s",
  3238. "icon.jpg",
  3239. "identitymodel.4.3.1.nupkg.sha512",
  3240. "identitymodel.nuspec",
  3241. "lib/net461/IdentityModel.dll",
  3242. "lib/net461/IdentityModel.pdb",
  3243. "lib/net461/IdentityModel.xml",
  3244. "lib/net472/IdentityModel.dll",
  3245. "lib/net472/IdentityModel.pdb",
  3246. "lib/net472/IdentityModel.xml",
  3247. "lib/netstandard2.0/IdentityModel.dll",
  3248. "lib/netstandard2.0/IdentityModel.pdb",
  3249. "lib/netstandard2.0/IdentityModel.xml"
  3250. ]
  3251. },
  3252. "InitQ/1.0.0.14": {
  3253. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3254. "type": "package",
  3255. "path": "initq/1.0.0.14",
  3256. "files": [
  3257. ".nupkg.metadata",
  3258. ".signature.p7s",
  3259. "initq.1.0.0.14.nupkg.sha512",
  3260. "initq.nuspec",
  3261. "lib/netcoreapp2.1/InitQ.dll"
  3262. ]
  3263. },
  3264. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3265. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3266. "type": "package",
  3267. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3268. "files": [
  3269. ".nupkg.metadata",
  3270. ".signature.p7s",
  3271. "LICENSE.txt",
  3272. "advanced-string-builder-license.txt",
  3273. "chakra-samples-license.txt",
  3274. "icon.png",
  3275. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3276. "javascriptengineswitcher.chakracore.nuspec",
  3277. "jsrt-dotnet-license.txt",
  3278. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3279. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3280. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3281. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3282. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3283. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3284. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3285. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3286. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3287. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3288. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3289. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3290. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3291. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3292. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3293. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3294. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3295. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3296. "polyfills-for-old-dot-net-license.txt",
  3297. "readme.txt"
  3298. ]
  3299. },
  3300. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3301. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3302. "type": "package",
  3303. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3304. "files": [
  3305. ".nupkg.metadata",
  3306. ".signature.p7s",
  3307. "LICENSE.txt",
  3308. "chakra-core-license.txt",
  3309. "icon.png",
  3310. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3311. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3312. "readme.txt",
  3313. "runtimes/linux-x64/native/libChakraCore.so"
  3314. ]
  3315. },
  3316. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3317. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3318. "type": "package",
  3319. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3320. "hasTools": true,
  3321. "files": [
  3322. ".nupkg.metadata",
  3323. ".signature.p7s",
  3324. "LICENSE.txt",
  3325. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3326. "chakra-core-license.txt",
  3327. "icon.png",
  3328. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3329. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3330. "readme.txt",
  3331. "runtimes/win-x64/native/ChakraCore.dll",
  3332. "tools/Install.ps1",
  3333. "tools/Uninstall.ps1"
  3334. ]
  3335. },
  3336. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3337. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3338. "type": "package",
  3339. "path": "javascriptengineswitcher.core/3.21.0",
  3340. "files": [
  3341. ".nupkg.metadata",
  3342. ".signature.p7s",
  3343. "LICENSE.txt",
  3344. "advanced-string-builder-license.txt",
  3345. "icon.png",
  3346. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3347. "javascriptengineswitcher.core.nuspec",
  3348. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3349. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3350. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3351. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3352. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3353. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3354. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3355. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3356. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3357. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3358. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3359. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3360. "readme.txt"
  3361. ]
  3362. },
  3363. "K4os.Compression.LZ4/1.1.11": {
  3364. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3365. "type": "package",
  3366. "path": "k4os.compression.lz4/1.1.11",
  3367. "files": [
  3368. ".nupkg.metadata",
  3369. ".signature.p7s",
  3370. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3371. "k4os.compression.lz4.nuspec",
  3372. "lib/net45/K4os.Compression.LZ4.dll",
  3373. "lib/net45/K4os.Compression.LZ4.xml",
  3374. "lib/net46/K4os.Compression.LZ4.dll",
  3375. "lib/net46/K4os.Compression.LZ4.xml",
  3376. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3377. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3378. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3379. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3380. ]
  3381. },
  3382. "K4os.Compression.LZ4.Streams/1.1.11": {
  3383. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3384. "type": "package",
  3385. "path": "k4os.compression.lz4.streams/1.1.11",
  3386. "files": [
  3387. ".nupkg.metadata",
  3388. ".signature.p7s",
  3389. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3390. "k4os.compression.lz4.streams.nuspec",
  3391. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3392. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3393. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3394. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3395. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3396. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3397. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3398. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3399. ]
  3400. },
  3401. "K4os.Hash.xxHash/1.0.6": {
  3402. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3403. "type": "package",
  3404. "path": "k4os.hash.xxhash/1.0.6",
  3405. "files": [
  3406. ".nupkg.metadata",
  3407. ".signature.p7s",
  3408. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3409. "k4os.hash.xxhash.nuspec",
  3410. "lib/net45/K4os.Hash.xxHash.dll",
  3411. "lib/net45/K4os.Hash.xxHash.xml",
  3412. "lib/net46/K4os.Hash.xxHash.dll",
  3413. "lib/net46/K4os.Hash.xxHash.xml",
  3414. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3415. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3416. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3417. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3418. ]
  3419. },
  3420. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3421. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3422. "type": "package",
  3423. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3424. "files": [
  3425. ".nupkg.metadata",
  3426. ".signature.p7s",
  3427. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3428. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3429. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3430. "linqkit.microsoft.entityframeworkcore.nuspec"
  3431. ]
  3432. },
  3433. "log4net/2.0.17": {
  3434. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3435. "type": "package",
  3436. "path": "log4net/2.0.17",
  3437. "files": [
  3438. ".nupkg.metadata",
  3439. ".signature.p7s",
  3440. "lib/net20/log4net.dll",
  3441. "lib/net20/log4net.xml",
  3442. "lib/net35/log4net.dll",
  3443. "lib/net35/log4net.xml",
  3444. "lib/net40-client/log4net.dll",
  3445. "lib/net40-client/log4net.xml",
  3446. "lib/net40/log4net.dll",
  3447. "lib/net40/log4net.xml",
  3448. "lib/net45/log4net.dll",
  3449. "lib/net45/log4net.xml",
  3450. "lib/netstandard1.3/log4net.dll",
  3451. "lib/netstandard1.3/log4net.xml",
  3452. "lib/netstandard2.0/log4net.dll",
  3453. "lib/netstandard2.0/log4net.xml",
  3454. "log4net.2.0.17.nupkg.sha512",
  3455. "log4net.nuspec",
  3456. "package-icon.png"
  3457. ]
  3458. },
  3459. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3460. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3461. "type": "package",
  3462. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3463. "files": [
  3464. ".nupkg.metadata",
  3465. ".signature.p7s",
  3466. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3467. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3468. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3469. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3470. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3471. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3472. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3473. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3474. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3475. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3476. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3477. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3478. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3479. "microsoft.aspnet.signalr.client.nuspec"
  3480. ]
  3481. },
  3482. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3483. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3484. "type": "package",
  3485. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3486. "files": [
  3487. ".nupkg.metadata",
  3488. ".signature.p7s",
  3489. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3490. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3491. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3492. "microsoft.aspnetcore.http.abstractions.nuspec"
  3493. ]
  3494. },
  3495. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3496. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3497. "type": "package",
  3498. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3499. "files": [
  3500. ".nupkg.metadata",
  3501. ".signature.p7s",
  3502. "Icon.png",
  3503. "THIRD-PARTY-NOTICES.TXT",
  3504. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3505. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3506. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3507. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3508. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3509. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3510. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3511. "microsoft.aspnetcore.http.features.nuspec"
  3512. ]
  3513. },
  3514. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3515. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3516. "type": "package",
  3517. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3518. "files": [
  3519. ".nupkg.metadata",
  3520. ".signature.p7s",
  3521. "Icon.png",
  3522. "THIRD-PARTY-NOTICES.TXT",
  3523. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3524. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3525. "microsoft.aspnetcore.nodeservices.nuspec"
  3526. ]
  3527. },
  3528. "Microsoft.CSharp/4.5.0": {
  3529. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3530. "type": "package",
  3531. "path": "microsoft.csharp/4.5.0",
  3532. "files": [
  3533. ".nupkg.metadata",
  3534. ".signature.p7s",
  3535. "LICENSE.TXT",
  3536. "THIRD-PARTY-NOTICES.TXT",
  3537. "lib/MonoAndroid10/_._",
  3538. "lib/MonoTouch10/_._",
  3539. "lib/net45/_._",
  3540. "lib/netcore50/Microsoft.CSharp.dll",
  3541. "lib/netcoreapp2.0/_._",
  3542. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3543. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3544. "lib/portable-net45+win8+wp8+wpa81/_._",
  3545. "lib/uap10.0.16299/_._",
  3546. "lib/win8/_._",
  3547. "lib/wp80/_._",
  3548. "lib/wpa81/_._",
  3549. "lib/xamarinios10/_._",
  3550. "lib/xamarinmac20/_._",
  3551. "lib/xamarintvos10/_._",
  3552. "lib/xamarinwatchos10/_._",
  3553. "microsoft.csharp.4.5.0.nupkg.sha512",
  3554. "microsoft.csharp.nuspec",
  3555. "ref/MonoAndroid10/_._",
  3556. "ref/MonoTouch10/_._",
  3557. "ref/net45/_._",
  3558. "ref/netcore50/Microsoft.CSharp.dll",
  3559. "ref/netcore50/Microsoft.CSharp.xml",
  3560. "ref/netcore50/de/Microsoft.CSharp.xml",
  3561. "ref/netcore50/es/Microsoft.CSharp.xml",
  3562. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3563. "ref/netcore50/it/Microsoft.CSharp.xml",
  3564. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3565. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3566. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3567. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3568. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3569. "ref/netcoreapp2.0/_._",
  3570. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3571. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3572. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3573. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3574. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3575. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3576. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3577. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3578. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3579. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3580. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3581. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3582. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3583. "ref/portable-net45+win8+wp8+wpa81/_._",
  3584. "ref/uap10.0.16299/_._",
  3585. "ref/win8/_._",
  3586. "ref/wp80/_._",
  3587. "ref/wpa81/_._",
  3588. "ref/xamarinios10/_._",
  3589. "ref/xamarinmac20/_._",
  3590. "ref/xamarintvos10/_._",
  3591. "ref/xamarinwatchos10/_._",
  3592. "useSharedDesignerContext.txt",
  3593. "version.txt"
  3594. ]
  3595. },
  3596. "Microsoft.EntityFrameworkCore/5.0.0": {
  3597. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3598. "type": "package",
  3599. "path": "microsoft.entityframeworkcore/5.0.0",
  3600. "files": [
  3601. ".nupkg.metadata",
  3602. ".signature.p7s",
  3603. "Icon.png",
  3604. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3605. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3606. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3607. "microsoft.entityframeworkcore.nuspec"
  3608. ]
  3609. },
  3610. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3611. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3612. "type": "package",
  3613. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3614. "files": [
  3615. ".nupkg.metadata",
  3616. ".signature.p7s",
  3617. "Icon.png",
  3618. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3619. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3620. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3621. "microsoft.entityframeworkcore.abstractions.nuspec"
  3622. ]
  3623. },
  3624. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3625. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3626. "type": "package",
  3627. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3628. "files": [
  3629. ".nupkg.metadata",
  3630. ".signature.p7s",
  3631. "Icon.png",
  3632. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3633. "lib/netstandard2.0/_._",
  3634. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3635. "microsoft.entityframeworkcore.analyzers.nuspec"
  3636. ]
  3637. },
  3638. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3639. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3640. "type": "package",
  3641. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3642. "files": [
  3643. ".nupkg.metadata",
  3644. ".signature.p7s",
  3645. "Icon.png",
  3646. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3647. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3648. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3649. "microsoft.entityframeworkcore.relational.nuspec"
  3650. ]
  3651. },
  3652. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3653. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3654. "type": "package",
  3655. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3656. "hasTools": true,
  3657. "files": [
  3658. ".nupkg.metadata",
  3659. ".signature.p7s",
  3660. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3661. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3662. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3663. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3664. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3665. "microsoft.extensions.apidescription.server.nuspec",
  3666. "tools/Newtonsoft.Json.dll",
  3667. "tools/dotnet-getdocument.deps.json",
  3668. "tools/dotnet-getdocument.dll",
  3669. "tools/dotnet-getdocument.runtimeconfig.json",
  3670. "tools/net461-x86/GetDocument.Insider.exe",
  3671. "tools/net461-x86/GetDocument.Insider.exe.config",
  3672. "tools/net461/GetDocument.Insider.exe",
  3673. "tools/net461/GetDocument.Insider.exe.config",
  3674. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3675. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3676. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3677. ]
  3678. },
  3679. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3680. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3681. "type": "package",
  3682. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3683. "files": [
  3684. ".nupkg.metadata",
  3685. ".signature.p7s",
  3686. "Icon.png",
  3687. "LICENSE.TXT",
  3688. "THIRD-PARTY-NOTICES.TXT",
  3689. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3690. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3691. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3692. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3693. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3694. "microsoft.extensions.caching.abstractions.nuspec",
  3695. "useSharedDesignerContext.txt",
  3696. "version.txt"
  3697. ]
  3698. },
  3699. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3700. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3701. "type": "package",
  3702. "path": "microsoft.extensions.caching.memory/5.0.0",
  3703. "files": [
  3704. ".nupkg.metadata",
  3705. ".signature.p7s",
  3706. "Icon.png",
  3707. "LICENSE.TXT",
  3708. "THIRD-PARTY-NOTICES.TXT",
  3709. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3710. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3711. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3712. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3713. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3714. "microsoft.extensions.caching.memory.nuspec",
  3715. "useSharedDesignerContext.txt",
  3716. "version.txt"
  3717. ]
  3718. },
  3719. "Microsoft.Extensions.Configuration/5.0.0": {
  3720. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3721. "type": "package",
  3722. "path": "microsoft.extensions.configuration/5.0.0",
  3723. "files": [
  3724. ".nupkg.metadata",
  3725. ".signature.p7s",
  3726. "Icon.png",
  3727. "LICENSE.TXT",
  3728. "THIRD-PARTY-NOTICES.TXT",
  3729. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3730. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3731. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3732. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3733. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3734. "microsoft.extensions.configuration.nuspec",
  3735. "useSharedDesignerContext.txt",
  3736. "version.txt"
  3737. ]
  3738. },
  3739. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3740. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3741. "type": "package",
  3742. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3743. "files": [
  3744. ".nupkg.metadata",
  3745. ".signature.p7s",
  3746. "Icon.png",
  3747. "LICENSE.TXT",
  3748. "THIRD-PARTY-NOTICES.TXT",
  3749. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3750. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3751. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3752. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3753. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3754. "microsoft.extensions.configuration.abstractions.nuspec",
  3755. "useSharedDesignerContext.txt",
  3756. "version.txt"
  3757. ]
  3758. },
  3759. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3760. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3761. "type": "package",
  3762. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3763. "files": [
  3764. ".nupkg.metadata",
  3765. ".signature.p7s",
  3766. "Icon.png",
  3767. "LICENSE.TXT",
  3768. "THIRD-PARTY-NOTICES.TXT",
  3769. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3770. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3771. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3772. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3773. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3774. "microsoft.extensions.configuration.binder.nuspec",
  3775. "useSharedDesignerContext.txt",
  3776. "version.txt"
  3777. ]
  3778. },
  3779. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3780. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3781. "type": "package",
  3782. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3783. "files": [
  3784. ".nupkg.metadata",
  3785. ".signature.p7s",
  3786. "Icon.png",
  3787. "LICENSE.TXT",
  3788. "THIRD-PARTY-NOTICES.TXT",
  3789. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3790. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3791. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3792. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3793. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3794. "microsoft.extensions.configuration.fileextensions.nuspec",
  3795. "useSharedDesignerContext.txt",
  3796. "version.txt"
  3797. ]
  3798. },
  3799. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3800. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3801. "type": "package",
  3802. "path": "microsoft.extensions.configuration.json/5.0.0",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "Icon.png",
  3807. "LICENSE.TXT",
  3808. "THIRD-PARTY-NOTICES.TXT",
  3809. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3810. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3811. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3812. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3813. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3814. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3815. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3816. "microsoft.extensions.configuration.json.nuspec",
  3817. "useSharedDesignerContext.txt",
  3818. "version.txt"
  3819. ]
  3820. },
  3821. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3822. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3823. "type": "package",
  3824. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3825. "files": [
  3826. ".nupkg.metadata",
  3827. ".signature.p7s",
  3828. "Icon.png",
  3829. "LICENSE.TXT",
  3830. "THIRD-PARTY-NOTICES.TXT",
  3831. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3832. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3833. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3834. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3835. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3836. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3837. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3838. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3839. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3840. "microsoft.extensions.dependencyinjection.nuspec",
  3841. "useSharedDesignerContext.txt",
  3842. "version.txt"
  3843. ]
  3844. },
  3845. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3846. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3847. "type": "package",
  3848. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3849. "files": [
  3850. ".nupkg.metadata",
  3851. ".signature.p7s",
  3852. "Icon.png",
  3853. "LICENSE.TXT",
  3854. "THIRD-PARTY-NOTICES.TXT",
  3855. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3856. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3857. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3858. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3859. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3860. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3861. "useSharedDesignerContext.txt",
  3862. "version.txt"
  3863. ]
  3864. },
  3865. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3866. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3867. "type": "package",
  3868. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3869. "files": [
  3870. ".nupkg.metadata",
  3871. ".signature.p7s",
  3872. "Icon.png",
  3873. "LICENSE.TXT",
  3874. "THIRD-PARTY-NOTICES.TXT",
  3875. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3876. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3877. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3878. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3879. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3880. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3881. "useSharedDesignerContext.txt",
  3882. "version.txt"
  3883. ]
  3884. },
  3885. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3886. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3887. "type": "package",
  3888. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3889. "files": [
  3890. ".nupkg.metadata",
  3891. ".signature.p7s",
  3892. "Icon.png",
  3893. "LICENSE.TXT",
  3894. "THIRD-PARTY-NOTICES.TXT",
  3895. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3896. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3897. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3898. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3899. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3900. "microsoft.extensions.fileproviders.physical.nuspec",
  3901. "useSharedDesignerContext.txt",
  3902. "version.txt"
  3903. ]
  3904. },
  3905. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3906. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3907. "type": "package",
  3908. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3909. "files": [
  3910. ".nupkg.metadata",
  3911. ".signature.p7s",
  3912. "Icon.png",
  3913. "LICENSE.TXT",
  3914. "THIRD-PARTY-NOTICES.TXT",
  3915. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3916. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3917. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3918. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3919. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3920. "microsoft.extensions.filesystemglobbing.nuspec",
  3921. "useSharedDesignerContext.txt",
  3922. "version.txt"
  3923. ]
  3924. },
  3925. "Microsoft.Extensions.Hosting/2.1.0": {
  3926. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  3927. "type": "package",
  3928. "path": "microsoft.extensions.hosting/2.1.0",
  3929. "files": [
  3930. ".nupkg.metadata",
  3931. ".signature.p7s",
  3932. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  3933. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  3934. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  3935. "microsoft.extensions.hosting.nuspec"
  3936. ]
  3937. },
  3938. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  3939. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  3940. "type": "package",
  3941. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  3942. "files": [
  3943. ".nupkg.metadata",
  3944. ".signature.p7s",
  3945. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3946. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3947. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3948. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3949. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  3950. "microsoft.extensions.hosting.abstractions.nuspec",
  3951. "packageIcon.png"
  3952. ]
  3953. },
  3954. "Microsoft.Extensions.Http/5.0.0": {
  3955. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  3956. "type": "package",
  3957. "path": "microsoft.extensions.http/5.0.0",
  3958. "files": [
  3959. ".nupkg.metadata",
  3960. ".signature.p7s",
  3961. "Icon.png",
  3962. "LICENSE.TXT",
  3963. "THIRD-PARTY-NOTICES.TXT",
  3964. "lib/net461/Microsoft.Extensions.Http.dll",
  3965. "lib/net461/Microsoft.Extensions.Http.xml",
  3966. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  3967. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  3968. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  3969. "microsoft.extensions.http.nuspec",
  3970. "useSharedDesignerContext.txt",
  3971. "version.txt"
  3972. ]
  3973. },
  3974. "Microsoft.Extensions.Logging/5.0.0": {
  3975. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3976. "type": "package",
  3977. "path": "microsoft.extensions.logging/5.0.0",
  3978. "files": [
  3979. ".nupkg.metadata",
  3980. ".signature.p7s",
  3981. "Icon.png",
  3982. "LICENSE.TXT",
  3983. "THIRD-PARTY-NOTICES.TXT",
  3984. "lib/net461/Microsoft.Extensions.Logging.dll",
  3985. "lib/net461/Microsoft.Extensions.Logging.xml",
  3986. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3987. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3988. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3989. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3990. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3991. "microsoft.extensions.logging.nuspec",
  3992. "useSharedDesignerContext.txt",
  3993. "version.txt"
  3994. ]
  3995. },
  3996. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3997. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3998. "type": "package",
  3999. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4000. "files": [
  4001. ".nupkg.metadata",
  4002. ".signature.p7s",
  4003. "Icon.png",
  4004. "LICENSE.TXT",
  4005. "THIRD-PARTY-NOTICES.TXT",
  4006. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4007. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4008. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4009. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4010. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4011. "microsoft.extensions.logging.abstractions.nuspec",
  4012. "useSharedDesignerContext.txt",
  4013. "version.txt"
  4014. ]
  4015. },
  4016. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4017. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4018. "type": "package",
  4019. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4020. "files": [
  4021. ".nupkg.metadata",
  4022. ".signature.p7s",
  4023. "Icon.png",
  4024. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4025. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4026. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4027. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4028. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4029. "microsoft.extensions.logging.configuration.nuspec"
  4030. ]
  4031. },
  4032. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4033. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4034. "type": "package",
  4035. "path": "microsoft.extensions.logging.console/3.1.30",
  4036. "files": [
  4037. ".nupkg.metadata",
  4038. ".signature.p7s",
  4039. "Icon.png",
  4040. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4041. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4042. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4043. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4044. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4045. "microsoft.extensions.logging.console.nuspec"
  4046. ]
  4047. },
  4048. "Microsoft.Extensions.Options/5.0.0": {
  4049. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4050. "type": "package",
  4051. "path": "microsoft.extensions.options/5.0.0",
  4052. "files": [
  4053. ".nupkg.metadata",
  4054. ".signature.p7s",
  4055. "Icon.png",
  4056. "LICENSE.TXT",
  4057. "THIRD-PARTY-NOTICES.TXT",
  4058. "lib/net461/Microsoft.Extensions.Options.dll",
  4059. "lib/net461/Microsoft.Extensions.Options.xml",
  4060. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4061. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4062. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4063. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4064. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4065. "microsoft.extensions.options.nuspec",
  4066. "useSharedDesignerContext.txt",
  4067. "version.txt"
  4068. ]
  4069. },
  4070. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4071. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4072. "type": "package",
  4073. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4074. "files": [
  4075. ".nupkg.metadata",
  4076. ".signature.p7s",
  4077. "Icon.png",
  4078. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4079. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4080. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4081. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4082. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4083. "microsoft.extensions.options.configurationextensions.nuspec"
  4084. ]
  4085. },
  4086. "Microsoft.Extensions.Primitives/5.0.0": {
  4087. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4088. "type": "package",
  4089. "path": "microsoft.extensions.primitives/5.0.0",
  4090. "files": [
  4091. ".nupkg.metadata",
  4092. ".signature.p7s",
  4093. "Icon.png",
  4094. "LICENSE.TXT",
  4095. "THIRD-PARTY-NOTICES.TXT",
  4096. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4097. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4098. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4099. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4100. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4101. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4102. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4103. "microsoft.extensions.primitives.nuspec",
  4104. "useSharedDesignerContext.txt",
  4105. "version.txt"
  4106. ]
  4107. },
  4108. "Microsoft.NETCore.Platforms/5.0.0": {
  4109. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4110. "type": "package",
  4111. "path": "microsoft.netcore.platforms/5.0.0",
  4112. "files": [
  4113. ".nupkg.metadata",
  4114. ".signature.p7s",
  4115. "Icon.png",
  4116. "LICENSE.TXT",
  4117. "THIRD-PARTY-NOTICES.TXT",
  4118. "lib/netstandard1.0/_._",
  4119. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4120. "microsoft.netcore.platforms.nuspec",
  4121. "runtime.json",
  4122. "useSharedDesignerContext.txt",
  4123. "version.txt"
  4124. ]
  4125. },
  4126. "Microsoft.NETCore.Targets/1.1.0": {
  4127. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4128. "type": "package",
  4129. "path": "microsoft.netcore.targets/1.1.0",
  4130. "files": [
  4131. ".nupkg.metadata",
  4132. ".signature.p7s",
  4133. "ThirdPartyNotices.txt",
  4134. "dotnet_library_license.txt",
  4135. "lib/netstandard1.0/_._",
  4136. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4137. "microsoft.netcore.targets.nuspec",
  4138. "runtime.json"
  4139. ]
  4140. },
  4141. "Microsoft.OpenApi/1.2.3": {
  4142. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4143. "type": "package",
  4144. "path": "microsoft.openapi/1.2.3",
  4145. "files": [
  4146. ".nupkg.metadata",
  4147. ".signature.p7s",
  4148. "lib/net46/Microsoft.OpenApi.dll",
  4149. "lib/net46/Microsoft.OpenApi.pdb",
  4150. "lib/net46/Microsoft.OpenApi.xml",
  4151. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4152. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4153. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4154. "microsoft.openapi.1.2.3.nupkg.sha512",
  4155. "microsoft.openapi.nuspec"
  4156. ]
  4157. },
  4158. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4159. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4160. "type": "package",
  4161. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4162. "hasTools": true,
  4163. "files": [
  4164. ".nupkg.metadata",
  4165. ".signature.p7s",
  4166. "CHANGELOG.md",
  4167. "EULA.md",
  4168. "ThirdPartyNotices.txt",
  4169. "build/Container.props",
  4170. "build/Container.targets",
  4171. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4172. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4173. "build/Rules/GeneralBrowseObject.xaml",
  4174. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4175. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4176. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4177. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4178. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4179. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4180. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4181. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4182. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4183. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4184. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4185. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4186. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4187. "build/ToolsTarget.props",
  4188. "build/ToolsTarget.targets",
  4189. "icon.png",
  4190. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4191. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4192. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4193. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4194. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4195. "tools/Newtonsoft.Json.dll",
  4196. "tools/System.Security.Principal.Windows.dll",
  4197. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4198. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4199. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4200. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4201. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4202. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4203. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4204. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4205. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4206. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4207. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4208. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4209. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4210. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4211. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4212. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4213. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4214. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4215. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4216. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4217. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4218. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4219. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4220. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4221. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4222. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4223. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4224. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4225. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4226. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4227. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4228. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4229. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4230. "tools/utils/KillProcess.exe",
  4231. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4232. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4233. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4234. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4235. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4236. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4237. ]
  4238. },
  4239. "Microsoft.Win32.Primitives/4.3.0": {
  4240. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4241. "type": "package",
  4242. "path": "microsoft.win32.primitives/4.3.0",
  4243. "files": [
  4244. ".nupkg.metadata",
  4245. ".signature.p7s",
  4246. "ThirdPartyNotices.txt",
  4247. "dotnet_library_license.txt",
  4248. "lib/MonoAndroid10/_._",
  4249. "lib/MonoTouch10/_._",
  4250. "lib/net46/Microsoft.Win32.Primitives.dll",
  4251. "lib/xamarinios10/_._",
  4252. "lib/xamarinmac20/_._",
  4253. "lib/xamarintvos10/_._",
  4254. "lib/xamarinwatchos10/_._",
  4255. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4256. "microsoft.win32.primitives.nuspec",
  4257. "ref/MonoAndroid10/_._",
  4258. "ref/MonoTouch10/_._",
  4259. "ref/net46/Microsoft.Win32.Primitives.dll",
  4260. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4261. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4262. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4263. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4264. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4265. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4266. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4267. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4268. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4269. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4270. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4271. "ref/xamarinios10/_._",
  4272. "ref/xamarinmac20/_._",
  4273. "ref/xamarintvos10/_._",
  4274. "ref/xamarinwatchos10/_._"
  4275. ]
  4276. },
  4277. "Microsoft.Win32.SystemEvents/5.0.0": {
  4278. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4279. "type": "package",
  4280. "path": "microsoft.win32.systemevents/5.0.0",
  4281. "files": [
  4282. ".nupkg.metadata",
  4283. ".signature.p7s",
  4284. "Icon.png",
  4285. "LICENSE.TXT",
  4286. "THIRD-PARTY-NOTICES.TXT",
  4287. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4288. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4289. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4290. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4291. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4292. "microsoft.win32.systemevents.nuspec",
  4293. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4294. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4295. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4296. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4297. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4298. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4299. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4300. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4301. "useSharedDesignerContext.txt",
  4302. "version.txt"
  4303. ]
  4304. },
  4305. "MySql.Data/8.0.23": {
  4306. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4307. "type": "package",
  4308. "path": "mysql.data/8.0.23",
  4309. "files": [
  4310. ".nupkg.metadata",
  4311. ".signature.p7s",
  4312. "lib/net452/MySql.Data.dll",
  4313. "lib/net452/MySql.Data.xml",
  4314. "lib/net452/Ubiety.Dns.Core.dll",
  4315. "lib/net452/Zstandard.Net.dll",
  4316. "lib/net48/MySql.Data.dll",
  4317. "lib/net48/MySql.Data.xml",
  4318. "lib/net48/Ubiety.Dns.Core.dll",
  4319. "lib/net48/Zstandard.Net.dll",
  4320. "lib/net5.0/MySql.Data.dll",
  4321. "lib/net5.0/MySql.Data.xml",
  4322. "lib/net5.0/Ubiety.Dns.Core.dll",
  4323. "lib/net5.0/Zstandard.Net.dll",
  4324. "lib/netstandard2.0/MySql.Data.dll",
  4325. "lib/netstandard2.0/MySql.Data.xml",
  4326. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4327. "lib/netstandard2.0/Zstandard.Net.dll",
  4328. "lib/netstandard2.1/MySql.Data.dll",
  4329. "lib/netstandard2.1/MySql.Data.xml",
  4330. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4331. "lib/netstandard2.1/Zstandard.Net.dll",
  4332. "mysql.data.8.0.23.nupkg.sha512",
  4333. "mysql.data.nuspec"
  4334. ]
  4335. },
  4336. "MySqlConnector/1.1.0": {
  4337. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4338. "type": "package",
  4339. "path": "mysqlconnector/1.1.0",
  4340. "files": [
  4341. ".nupkg.metadata",
  4342. ".signature.p7s",
  4343. "lib/net45/MySqlConnector.dll",
  4344. "lib/net45/MySqlConnector.xml",
  4345. "lib/net461/MySqlConnector.dll",
  4346. "lib/net461/MySqlConnector.xml",
  4347. "lib/net471/MySqlConnector.dll",
  4348. "lib/net471/MySqlConnector.xml",
  4349. "lib/net5.0/MySqlConnector.dll",
  4350. "lib/net5.0/MySqlConnector.xml",
  4351. "lib/netcoreapp2.1/MySqlConnector.dll",
  4352. "lib/netcoreapp2.1/MySqlConnector.xml",
  4353. "lib/netcoreapp3.1/MySqlConnector.dll",
  4354. "lib/netcoreapp3.1/MySqlConnector.xml",
  4355. "lib/netstandard1.3/MySqlConnector.dll",
  4356. "lib/netstandard1.3/MySqlConnector.xml",
  4357. "lib/netstandard2.0/MySqlConnector.dll",
  4358. "lib/netstandard2.0/MySqlConnector.xml",
  4359. "lib/netstandard2.1/MySqlConnector.dll",
  4360. "lib/netstandard2.1/MySqlConnector.xml",
  4361. "logo.png",
  4362. "mysqlconnector.1.1.0.nupkg.sha512",
  4363. "mysqlconnector.nuspec"
  4364. ]
  4365. },
  4366. "NETStandard.Library/1.6.1": {
  4367. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4368. "type": "package",
  4369. "path": "netstandard.library/1.6.1",
  4370. "files": [
  4371. ".nupkg.metadata",
  4372. ".signature.p7s",
  4373. "ThirdPartyNotices.txt",
  4374. "dotnet_library_license.txt",
  4375. "netstandard.library.1.6.1.nupkg.sha512",
  4376. "netstandard.library.nuspec"
  4377. ]
  4378. },
  4379. "Newtonsoft.Json/13.0.1": {
  4380. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4381. "type": "package",
  4382. "path": "newtonsoft.json/13.0.1",
  4383. "files": [
  4384. ".nupkg.metadata",
  4385. ".signature.p7s",
  4386. "LICENSE.md",
  4387. "lib/net20/Newtonsoft.Json.dll",
  4388. "lib/net20/Newtonsoft.Json.xml",
  4389. "lib/net35/Newtonsoft.Json.dll",
  4390. "lib/net35/Newtonsoft.Json.xml",
  4391. "lib/net40/Newtonsoft.Json.dll",
  4392. "lib/net40/Newtonsoft.Json.xml",
  4393. "lib/net45/Newtonsoft.Json.dll",
  4394. "lib/net45/Newtonsoft.Json.xml",
  4395. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4396. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4397. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4398. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4399. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4400. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4401. "newtonsoft.json.13.0.1.nupkg.sha512",
  4402. "newtonsoft.json.nuspec",
  4403. "packageIcon.png"
  4404. ]
  4405. },
  4406. "Nito.AsyncEx.Coordination/5.0.0": {
  4407. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4408. "type": "package",
  4409. "path": "nito.asyncex.coordination/5.0.0",
  4410. "files": [
  4411. ".nupkg.metadata",
  4412. ".signature.p7s",
  4413. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4414. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4415. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4416. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4417. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4418. "nito.asyncex.coordination.nuspec"
  4419. ]
  4420. },
  4421. "Nito.AsyncEx.Tasks/5.0.0": {
  4422. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4423. "type": "package",
  4424. "path": "nito.asyncex.tasks/5.0.0",
  4425. "files": [
  4426. ".nupkg.metadata",
  4427. ".signature.p7s",
  4428. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4429. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4430. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4431. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4432. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4433. "nito.asyncex.tasks.nuspec"
  4434. ]
  4435. },
  4436. "Nito.Collections.Deque/1.0.4": {
  4437. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4438. "type": "package",
  4439. "path": "nito.collections.deque/1.0.4",
  4440. "files": [
  4441. ".nupkg.metadata",
  4442. ".signature.p7s",
  4443. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4444. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4445. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4446. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4447. "nito.collections.deque.1.0.4.nupkg.sha512",
  4448. "nito.collections.deque.nuspec"
  4449. ]
  4450. },
  4451. "Nito.Disposables/2.0.0": {
  4452. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4453. "type": "package",
  4454. "path": "nito.disposables/2.0.0",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. ".signature.p7s",
  4458. "lib/netstandard1.0/Nito.Disposables.dll",
  4459. "lib/netstandard1.0/Nito.Disposables.pdb",
  4460. "lib/netstandard1.0/Nito.Disposables.xml",
  4461. "lib/netstandard2.0/Nito.Disposables.dll",
  4462. "lib/netstandard2.0/Nito.Disposables.pdb",
  4463. "lib/netstandard2.0/Nito.Disposables.xml",
  4464. "nito.disposables.2.0.0.nupkg.sha512",
  4465. "nito.disposables.nuspec"
  4466. ]
  4467. },
  4468. "NodaTime/2.4.7": {
  4469. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4470. "type": "package",
  4471. "path": "nodatime/2.4.7",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "lib/net45/NodaTime.dll",
  4476. "lib/net45/NodaTime.pdb",
  4477. "lib/net45/NodaTime.xml",
  4478. "lib/netstandard1.3/NodaTime.dll",
  4479. "lib/netstandard1.3/NodaTime.pdb",
  4480. "lib/netstandard1.3/NodaTime.xml",
  4481. "lib/netstandard2.0/NodaTime.dll",
  4482. "lib/netstandard2.0/NodaTime.pdb",
  4483. "lib/netstandard2.0/NodaTime.xml",
  4484. "nodatime.2.4.7.nupkg.sha512",
  4485. "nodatime.nuspec"
  4486. ]
  4487. },
  4488. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4489. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4490. "type": "package",
  4491. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4492. "files": [
  4493. ".nupkg.metadata",
  4494. ".signature.p7s",
  4495. "icon.png",
  4496. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4497. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4498. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4499. "pomelo.entityframeworkcore.mysql.nuspec"
  4500. ]
  4501. },
  4502. "QRCoder/1.4.3": {
  4503. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4504. "type": "package",
  4505. "path": "qrcoder/1.4.3",
  4506. "files": [
  4507. ".nupkg.metadata",
  4508. ".signature.p7s",
  4509. "lib/net35/QRCoder.dll",
  4510. "lib/net40/QRCoder.dll",
  4511. "lib/net5.0-windows7.0/QRCoder.dll",
  4512. "lib/net5.0/QRCoder.dll",
  4513. "lib/net6.0-windows7.0/QRCoder.dll",
  4514. "lib/net6.0/QRCoder.dll",
  4515. "lib/netstandard1.3/QRCoder.dll",
  4516. "lib/netstandard2.0/QRCoder.dll",
  4517. "nuget-icon.png",
  4518. "nuget-readme.md",
  4519. "qrcoder.1.4.3.nupkg.sha512",
  4520. "qrcoder.nuspec"
  4521. ]
  4522. },
  4523. "RabbitMQ.Client/6.8.1": {
  4524. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4525. "type": "package",
  4526. "path": "rabbitmq.client/6.8.1",
  4527. "files": [
  4528. ".nupkg.metadata",
  4529. ".signature.p7s",
  4530. "README.md",
  4531. "icon.png",
  4532. "lib/net462/RabbitMQ.Client.dll",
  4533. "lib/net462/RabbitMQ.Client.xml",
  4534. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4535. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4536. "rabbitmq.client.6.8.1.nupkg.sha512",
  4537. "rabbitmq.client.nuspec"
  4538. ]
  4539. },
  4540. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4541. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4542. "type": "package",
  4543. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4544. "files": [
  4545. ".nupkg.metadata",
  4546. ".signature.p7s",
  4547. "ThirdPartyNotices.txt",
  4548. "dotnet_library_license.txt",
  4549. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4550. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4551. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4552. ]
  4553. },
  4554. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4555. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4556. "type": "package",
  4557. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4558. "files": [
  4559. ".nupkg.metadata",
  4560. ".signature.p7s",
  4561. "ThirdPartyNotices.txt",
  4562. "dotnet_library_license.txt",
  4563. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4564. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4565. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4566. ]
  4567. },
  4568. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4569. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4570. "type": "package",
  4571. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4572. "files": [
  4573. ".nupkg.metadata",
  4574. ".signature.p7s",
  4575. "ThirdPartyNotices.txt",
  4576. "dotnet_library_license.txt",
  4577. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4578. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4579. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4580. ]
  4581. },
  4582. "runtime.native.System/4.3.0": {
  4583. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4584. "type": "package",
  4585. "path": "runtime.native.system/4.3.0",
  4586. "files": [
  4587. ".nupkg.metadata",
  4588. ".signature.p7s",
  4589. "ThirdPartyNotices.txt",
  4590. "dotnet_library_license.txt",
  4591. "lib/netstandard1.0/_._",
  4592. "runtime.native.system.4.3.0.nupkg.sha512",
  4593. "runtime.native.system.nuspec"
  4594. ]
  4595. },
  4596. "runtime.native.System.IO.Compression/4.3.0": {
  4597. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4598. "type": "package",
  4599. "path": "runtime.native.system.io.compression/4.3.0",
  4600. "files": [
  4601. ".nupkg.metadata",
  4602. ".signature.p7s",
  4603. "ThirdPartyNotices.txt",
  4604. "dotnet_library_license.txt",
  4605. "lib/netstandard1.0/_._",
  4606. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4607. "runtime.native.system.io.compression.nuspec"
  4608. ]
  4609. },
  4610. "runtime.native.System.Net.Http/4.3.0": {
  4611. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4612. "type": "package",
  4613. "path": "runtime.native.system.net.http/4.3.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "ThirdPartyNotices.txt",
  4618. "dotnet_library_license.txt",
  4619. "lib/netstandard1.0/_._",
  4620. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4621. "runtime.native.system.net.http.nuspec"
  4622. ]
  4623. },
  4624. "runtime.native.System.Net.Security/4.3.0": {
  4625. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4626. "type": "package",
  4627. "path": "runtime.native.system.net.security/4.3.0",
  4628. "files": [
  4629. ".nupkg.metadata",
  4630. ".signature.p7s",
  4631. "ThirdPartyNotices.txt",
  4632. "dotnet_library_license.txt",
  4633. "lib/netstandard1.0/_._",
  4634. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4635. "runtime.native.system.net.security.nuspec"
  4636. ]
  4637. },
  4638. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4639. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4640. "type": "package",
  4641. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4642. "files": [
  4643. ".nupkg.metadata",
  4644. ".signature.p7s",
  4645. "ThirdPartyNotices.txt",
  4646. "dotnet_library_license.txt",
  4647. "lib/netstandard1.0/_._",
  4648. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4649. "runtime.native.system.security.cryptography.apple.nuspec"
  4650. ]
  4651. },
  4652. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4653. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4654. "type": "package",
  4655. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4656. "files": [
  4657. ".nupkg.metadata",
  4658. ".signature.p7s",
  4659. "ThirdPartyNotices.txt",
  4660. "dotnet_library_license.txt",
  4661. "lib/netstandard1.0/_._",
  4662. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4663. "runtime.native.system.security.cryptography.openssl.nuspec"
  4664. ]
  4665. },
  4666. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4667. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4668. "type": "package",
  4669. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "ThirdPartyNotices.txt",
  4674. "dotnet_library_license.txt",
  4675. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4676. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4677. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4678. ]
  4679. },
  4680. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4681. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4682. "type": "package",
  4683. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4684. "files": [
  4685. ".nupkg.metadata",
  4686. ".signature.p7s",
  4687. "ThirdPartyNotices.txt",
  4688. "dotnet_library_license.txt",
  4689. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4690. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4691. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4692. ]
  4693. },
  4694. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4695. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4696. "type": "package",
  4697. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4698. "files": [
  4699. ".nupkg.metadata",
  4700. ".signature.p7s",
  4701. "ThirdPartyNotices.txt",
  4702. "dotnet_library_license.txt",
  4703. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4704. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4705. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4706. ]
  4707. },
  4708. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4709. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4710. "type": "package",
  4711. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4712. "files": [
  4713. ".nupkg.metadata",
  4714. ".signature.p7s",
  4715. "ThirdPartyNotices.txt",
  4716. "dotnet_library_license.txt",
  4717. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4718. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4719. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4720. ]
  4721. },
  4722. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4723. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4724. "type": "package",
  4725. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4726. "files": [
  4727. ".nupkg.metadata",
  4728. ".signature.p7s",
  4729. "ThirdPartyNotices.txt",
  4730. "dotnet_library_license.txt",
  4731. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4732. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4733. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4734. ]
  4735. },
  4736. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4737. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4738. "type": "package",
  4739. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4740. "files": [
  4741. ".nupkg.metadata",
  4742. ".signature.p7s",
  4743. "ThirdPartyNotices.txt",
  4744. "dotnet_library_license.txt",
  4745. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4746. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4747. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4748. ]
  4749. },
  4750. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4751. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4752. "type": "package",
  4753. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4754. "files": [
  4755. ".nupkg.metadata",
  4756. ".signature.p7s",
  4757. "ThirdPartyNotices.txt",
  4758. "dotnet_library_license.txt",
  4759. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4760. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4761. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4762. ]
  4763. },
  4764. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4765. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4766. "type": "package",
  4767. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4768. "files": [
  4769. ".nupkg.metadata",
  4770. ".signature.p7s",
  4771. "ThirdPartyNotices.txt",
  4772. "dotnet_library_license.txt",
  4773. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4774. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4775. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4776. ]
  4777. },
  4778. "SixLabors.ImageSharp/2.1.6": {
  4779. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4780. "type": "package",
  4781. "path": "sixlabors.imagesharp/2.1.6",
  4782. "files": [
  4783. ".nupkg.metadata",
  4784. ".signature.p7s",
  4785. "lib/net472/SixLabors.ImageSharp.dll",
  4786. "lib/net472/SixLabors.ImageSharp.xml",
  4787. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4788. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4789. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4790. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4791. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4792. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4793. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4794. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4795. "sixlabors.imagesharp.128.png",
  4796. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4797. "sixlabors.imagesharp.nuspec"
  4798. ]
  4799. },
  4800. "SSH.NET/2020.0.0-beta1": {
  4801. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4802. "type": "package",
  4803. "path": "ssh.net/2020.0.0-beta1",
  4804. "files": [
  4805. ".nupkg.metadata",
  4806. ".signature.p7s",
  4807. "lib/net35/Renci.SshNet.dll",
  4808. "lib/net35/Renci.SshNet.xml",
  4809. "lib/net40/Renci.SshNet.dll",
  4810. "lib/net40/Renci.SshNet.xml",
  4811. "lib/netstandard1.3/Renci.SshNet.dll",
  4812. "lib/netstandard1.3/Renci.SshNet.xml",
  4813. "lib/netstandard2.0/Renci.SshNet.dll",
  4814. "lib/netstandard2.0/Renci.SshNet.xml",
  4815. "lib/sl4/Renci.SshNet.dll",
  4816. "lib/sl4/Renci.SshNet.xml",
  4817. "lib/sl5/Renci.SshNet.dll",
  4818. "lib/sl5/Renci.SshNet.xml",
  4819. "lib/uap10/Renci.SshNet.dll",
  4820. "lib/uap10/Renci.SshNet.xml",
  4821. "lib/wp71/Renci.SshNet.dll",
  4822. "lib/wp71/Renci.SshNet.xml",
  4823. "lib/wp8/Renci.SshNet.dll",
  4824. "lib/wp8/Renci.SshNet.xml",
  4825. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4826. "ssh.net.nuspec"
  4827. ]
  4828. },
  4829. "SshNet.Security.Cryptography/1.3.0": {
  4830. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4831. "type": "package",
  4832. "path": "sshnet.security.cryptography/1.3.0",
  4833. "files": [
  4834. ".nupkg.metadata",
  4835. ".signature.p7s",
  4836. "lib/net20/SshNet.Security.Cryptography.dll",
  4837. "lib/net20/SshNet.Security.Cryptography.xml",
  4838. "lib/net40/SshNet.Security.Cryptography.dll",
  4839. "lib/net40/SshNet.Security.Cryptography.xml",
  4840. "lib/net45/SshNet.Security.Cryptography.dll",
  4841. "lib/net45/SshNet.Security.Cryptography.xml",
  4842. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4843. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4844. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4845. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4846. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4847. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4848. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4849. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4850. "lib/sl4/SshNet.Security.Cryptography.dll",
  4851. "lib/sl4/SshNet.Security.Cryptography.xml",
  4852. "lib/sl5/SshNet.Security.Cryptography.dll",
  4853. "lib/sl5/SshNet.Security.Cryptography.xml",
  4854. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4855. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4856. "lib/wp71/SshNet.Security.Cryptography.dll",
  4857. "lib/wp71/SshNet.Security.Cryptography.xml",
  4858. "lib/wp8/SshNet.Security.Cryptography.dll",
  4859. "lib/wp8/SshNet.Security.Cryptography.xml",
  4860. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4861. "sshnet.security.cryptography.nuspec"
  4862. ]
  4863. },
  4864. "StackExchange.Redis/1.2.4": {
  4865. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4866. "type": "package",
  4867. "path": "stackexchange.redis/1.2.4",
  4868. "files": [
  4869. ".nupkg.metadata",
  4870. ".signature.p7s",
  4871. "lib/net45/StackExchange.Redis.dll",
  4872. "lib/net45/StackExchange.Redis.xml",
  4873. "lib/net46/StackExchange.Redis.dll",
  4874. "lib/net46/StackExchange.Redis.xml",
  4875. "lib/netstandard1.5/StackExchange.Redis.dll",
  4876. "lib/netstandard1.5/StackExchange.Redis.xml",
  4877. "stackexchange.redis.1.2.4.nupkg.sha512",
  4878. "stackexchange.redis.nuspec"
  4879. ]
  4880. },
  4881. "Swashbuckle.AspNetCore/5.6.3": {
  4882. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  4883. "type": "package",
  4884. "path": "swashbuckle.aspnetcore/5.6.3",
  4885. "files": [
  4886. ".nupkg.metadata",
  4887. ".signature.p7s",
  4888. "build/Swashbuckle.AspNetCore.props",
  4889. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  4890. "swashbuckle.aspnetcore.nuspec"
  4891. ]
  4892. },
  4893. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  4894. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  4895. "type": "package",
  4896. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  4897. "files": [
  4898. ".nupkg.metadata",
  4899. ".signature.p7s",
  4900. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4901. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4902. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4903. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4904. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4905. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4906. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  4907. "swashbuckle.aspnetcore.swagger.nuspec"
  4908. ]
  4909. },
  4910. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  4911. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  4912. "type": "package",
  4913. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  4914. "files": [
  4915. ".nupkg.metadata",
  4916. ".signature.p7s",
  4917. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4918. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4919. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4920. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4921. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4922. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4923. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  4924. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4925. ]
  4926. },
  4927. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  4928. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  4929. "type": "package",
  4930. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  4931. "files": [
  4932. ".nupkg.metadata",
  4933. ".signature.p7s",
  4934. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4935. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4936. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4937. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4938. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4939. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4940. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  4941. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4942. ]
  4943. },
  4944. "System.AppContext/4.3.0": {
  4945. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4946. "type": "package",
  4947. "path": "system.appcontext/4.3.0",
  4948. "files": [
  4949. ".nupkg.metadata",
  4950. ".signature.p7s",
  4951. "ThirdPartyNotices.txt",
  4952. "dotnet_library_license.txt",
  4953. "lib/MonoAndroid10/_._",
  4954. "lib/MonoTouch10/_._",
  4955. "lib/net46/System.AppContext.dll",
  4956. "lib/net463/System.AppContext.dll",
  4957. "lib/netcore50/System.AppContext.dll",
  4958. "lib/netstandard1.6/System.AppContext.dll",
  4959. "lib/xamarinios10/_._",
  4960. "lib/xamarinmac20/_._",
  4961. "lib/xamarintvos10/_._",
  4962. "lib/xamarinwatchos10/_._",
  4963. "ref/MonoAndroid10/_._",
  4964. "ref/MonoTouch10/_._",
  4965. "ref/net46/System.AppContext.dll",
  4966. "ref/net463/System.AppContext.dll",
  4967. "ref/netstandard/_._",
  4968. "ref/netstandard1.3/System.AppContext.dll",
  4969. "ref/netstandard1.3/System.AppContext.xml",
  4970. "ref/netstandard1.3/de/System.AppContext.xml",
  4971. "ref/netstandard1.3/es/System.AppContext.xml",
  4972. "ref/netstandard1.3/fr/System.AppContext.xml",
  4973. "ref/netstandard1.3/it/System.AppContext.xml",
  4974. "ref/netstandard1.3/ja/System.AppContext.xml",
  4975. "ref/netstandard1.3/ko/System.AppContext.xml",
  4976. "ref/netstandard1.3/ru/System.AppContext.xml",
  4977. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4978. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4979. "ref/netstandard1.6/System.AppContext.dll",
  4980. "ref/netstandard1.6/System.AppContext.xml",
  4981. "ref/netstandard1.6/de/System.AppContext.xml",
  4982. "ref/netstandard1.6/es/System.AppContext.xml",
  4983. "ref/netstandard1.6/fr/System.AppContext.xml",
  4984. "ref/netstandard1.6/it/System.AppContext.xml",
  4985. "ref/netstandard1.6/ja/System.AppContext.xml",
  4986. "ref/netstandard1.6/ko/System.AppContext.xml",
  4987. "ref/netstandard1.6/ru/System.AppContext.xml",
  4988. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4989. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4990. "ref/xamarinios10/_._",
  4991. "ref/xamarinmac20/_._",
  4992. "ref/xamarintvos10/_._",
  4993. "ref/xamarinwatchos10/_._",
  4994. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4995. "system.appcontext.4.3.0.nupkg.sha512",
  4996. "system.appcontext.nuspec"
  4997. ]
  4998. },
  4999. "System.Buffers/4.5.1": {
  5000. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5001. "type": "package",
  5002. "path": "system.buffers/4.5.1",
  5003. "files": [
  5004. ".nupkg.metadata",
  5005. ".signature.p7s",
  5006. "LICENSE.TXT",
  5007. "THIRD-PARTY-NOTICES.TXT",
  5008. "lib/net461/System.Buffers.dll",
  5009. "lib/net461/System.Buffers.xml",
  5010. "lib/netcoreapp2.0/_._",
  5011. "lib/netstandard1.1/System.Buffers.dll",
  5012. "lib/netstandard1.1/System.Buffers.xml",
  5013. "lib/netstandard2.0/System.Buffers.dll",
  5014. "lib/netstandard2.0/System.Buffers.xml",
  5015. "lib/uap10.0.16299/_._",
  5016. "ref/net45/System.Buffers.dll",
  5017. "ref/net45/System.Buffers.xml",
  5018. "ref/netcoreapp2.0/_._",
  5019. "ref/netstandard1.1/System.Buffers.dll",
  5020. "ref/netstandard1.1/System.Buffers.xml",
  5021. "ref/netstandard2.0/System.Buffers.dll",
  5022. "ref/netstandard2.0/System.Buffers.xml",
  5023. "ref/uap10.0.16299/_._",
  5024. "system.buffers.4.5.1.nupkg.sha512",
  5025. "system.buffers.nuspec",
  5026. "useSharedDesignerContext.txt",
  5027. "version.txt"
  5028. ]
  5029. },
  5030. "System.Collections/4.3.0": {
  5031. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5032. "type": "package",
  5033. "path": "system.collections/4.3.0",
  5034. "files": [
  5035. ".nupkg.metadata",
  5036. ".signature.p7s",
  5037. "ThirdPartyNotices.txt",
  5038. "dotnet_library_license.txt",
  5039. "lib/MonoAndroid10/_._",
  5040. "lib/MonoTouch10/_._",
  5041. "lib/net45/_._",
  5042. "lib/portable-net45+win8+wp8+wpa81/_._",
  5043. "lib/win8/_._",
  5044. "lib/wp80/_._",
  5045. "lib/wpa81/_._",
  5046. "lib/xamarinios10/_._",
  5047. "lib/xamarinmac20/_._",
  5048. "lib/xamarintvos10/_._",
  5049. "lib/xamarinwatchos10/_._",
  5050. "ref/MonoAndroid10/_._",
  5051. "ref/MonoTouch10/_._",
  5052. "ref/net45/_._",
  5053. "ref/netcore50/System.Collections.dll",
  5054. "ref/netcore50/System.Collections.xml",
  5055. "ref/netcore50/de/System.Collections.xml",
  5056. "ref/netcore50/es/System.Collections.xml",
  5057. "ref/netcore50/fr/System.Collections.xml",
  5058. "ref/netcore50/it/System.Collections.xml",
  5059. "ref/netcore50/ja/System.Collections.xml",
  5060. "ref/netcore50/ko/System.Collections.xml",
  5061. "ref/netcore50/ru/System.Collections.xml",
  5062. "ref/netcore50/zh-hans/System.Collections.xml",
  5063. "ref/netcore50/zh-hant/System.Collections.xml",
  5064. "ref/netstandard1.0/System.Collections.dll",
  5065. "ref/netstandard1.0/System.Collections.xml",
  5066. "ref/netstandard1.0/de/System.Collections.xml",
  5067. "ref/netstandard1.0/es/System.Collections.xml",
  5068. "ref/netstandard1.0/fr/System.Collections.xml",
  5069. "ref/netstandard1.0/it/System.Collections.xml",
  5070. "ref/netstandard1.0/ja/System.Collections.xml",
  5071. "ref/netstandard1.0/ko/System.Collections.xml",
  5072. "ref/netstandard1.0/ru/System.Collections.xml",
  5073. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5074. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5075. "ref/netstandard1.3/System.Collections.dll",
  5076. "ref/netstandard1.3/System.Collections.xml",
  5077. "ref/netstandard1.3/de/System.Collections.xml",
  5078. "ref/netstandard1.3/es/System.Collections.xml",
  5079. "ref/netstandard1.3/fr/System.Collections.xml",
  5080. "ref/netstandard1.3/it/System.Collections.xml",
  5081. "ref/netstandard1.3/ja/System.Collections.xml",
  5082. "ref/netstandard1.3/ko/System.Collections.xml",
  5083. "ref/netstandard1.3/ru/System.Collections.xml",
  5084. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5085. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5086. "ref/portable-net45+win8+wp8+wpa81/_._",
  5087. "ref/win8/_._",
  5088. "ref/wp80/_._",
  5089. "ref/wpa81/_._",
  5090. "ref/xamarinios10/_._",
  5091. "ref/xamarinmac20/_._",
  5092. "ref/xamarintvos10/_._",
  5093. "ref/xamarinwatchos10/_._",
  5094. "system.collections.4.3.0.nupkg.sha512",
  5095. "system.collections.nuspec"
  5096. ]
  5097. },
  5098. "System.Collections.Concurrent/4.3.0": {
  5099. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5100. "type": "package",
  5101. "path": "system.collections.concurrent/4.3.0",
  5102. "files": [
  5103. ".nupkg.metadata",
  5104. ".signature.p7s",
  5105. "ThirdPartyNotices.txt",
  5106. "dotnet_library_license.txt",
  5107. "lib/MonoAndroid10/_._",
  5108. "lib/MonoTouch10/_._",
  5109. "lib/net45/_._",
  5110. "lib/netcore50/System.Collections.Concurrent.dll",
  5111. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5112. "lib/portable-net45+win8+wpa81/_._",
  5113. "lib/win8/_._",
  5114. "lib/wpa81/_._",
  5115. "lib/xamarinios10/_._",
  5116. "lib/xamarinmac20/_._",
  5117. "lib/xamarintvos10/_._",
  5118. "lib/xamarinwatchos10/_._",
  5119. "ref/MonoAndroid10/_._",
  5120. "ref/MonoTouch10/_._",
  5121. "ref/net45/_._",
  5122. "ref/netcore50/System.Collections.Concurrent.dll",
  5123. "ref/netcore50/System.Collections.Concurrent.xml",
  5124. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5125. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5126. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5127. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5128. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5129. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5130. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5131. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5132. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5133. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5134. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5135. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5136. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5137. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5138. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5139. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5140. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5141. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5142. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5143. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5144. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5145. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5146. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5147. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5148. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5149. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5150. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5151. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5152. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5153. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5154. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5155. "ref/portable-net45+win8+wpa81/_._",
  5156. "ref/win8/_._",
  5157. "ref/wpa81/_._",
  5158. "ref/xamarinios10/_._",
  5159. "ref/xamarinmac20/_._",
  5160. "ref/xamarintvos10/_._",
  5161. "ref/xamarinwatchos10/_._",
  5162. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5163. "system.collections.concurrent.nuspec"
  5164. ]
  5165. },
  5166. "System.Collections.Immutable/5.0.0": {
  5167. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5168. "type": "package",
  5169. "path": "system.collections.immutable/5.0.0",
  5170. "files": [
  5171. ".nupkg.metadata",
  5172. ".signature.p7s",
  5173. "Icon.png",
  5174. "LICENSE.TXT",
  5175. "THIRD-PARTY-NOTICES.TXT",
  5176. "lib/net461/System.Collections.Immutable.dll",
  5177. "lib/net461/System.Collections.Immutable.xml",
  5178. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5179. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5180. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5181. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5182. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5183. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5184. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5185. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5186. "system.collections.immutable.5.0.0.nupkg.sha512",
  5187. "system.collections.immutable.nuspec",
  5188. "useSharedDesignerContext.txt",
  5189. "version.txt"
  5190. ]
  5191. },
  5192. "System.Collections.NonGeneric/4.3.0": {
  5193. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5194. "type": "package",
  5195. "path": "system.collections.nongeneric/4.3.0",
  5196. "files": [
  5197. ".nupkg.metadata",
  5198. ".signature.p7s",
  5199. "ThirdPartyNotices.txt",
  5200. "dotnet_library_license.txt",
  5201. "lib/MonoAndroid10/_._",
  5202. "lib/MonoTouch10/_._",
  5203. "lib/net46/System.Collections.NonGeneric.dll",
  5204. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5205. "lib/xamarinios10/_._",
  5206. "lib/xamarinmac20/_._",
  5207. "lib/xamarintvos10/_._",
  5208. "lib/xamarinwatchos10/_._",
  5209. "ref/MonoAndroid10/_._",
  5210. "ref/MonoTouch10/_._",
  5211. "ref/net46/System.Collections.NonGeneric.dll",
  5212. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5213. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5214. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5215. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5216. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5217. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5218. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5219. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5220. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5221. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5222. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5223. "ref/xamarinios10/_._",
  5224. "ref/xamarinmac20/_._",
  5225. "ref/xamarintvos10/_._",
  5226. "ref/xamarinwatchos10/_._",
  5227. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5228. "system.collections.nongeneric.nuspec"
  5229. ]
  5230. },
  5231. "System.ComponentModel/4.3.0": {
  5232. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5233. "type": "package",
  5234. "path": "system.componentmodel/4.3.0",
  5235. "files": [
  5236. ".nupkg.metadata",
  5237. ".signature.p7s",
  5238. "ThirdPartyNotices.txt",
  5239. "dotnet_library_license.txt",
  5240. "lib/MonoAndroid10/_._",
  5241. "lib/MonoTouch10/_._",
  5242. "lib/net45/_._",
  5243. "lib/netcore50/System.ComponentModel.dll",
  5244. "lib/netstandard1.3/System.ComponentModel.dll",
  5245. "lib/portable-net45+win8+wp8+wpa81/_._",
  5246. "lib/win8/_._",
  5247. "lib/wp80/_._",
  5248. "lib/wpa81/_._",
  5249. "lib/xamarinios10/_._",
  5250. "lib/xamarinmac20/_._",
  5251. "lib/xamarintvos10/_._",
  5252. "lib/xamarinwatchos10/_._",
  5253. "ref/MonoAndroid10/_._",
  5254. "ref/MonoTouch10/_._",
  5255. "ref/net45/_._",
  5256. "ref/netcore50/System.ComponentModel.dll",
  5257. "ref/netcore50/System.ComponentModel.xml",
  5258. "ref/netcore50/de/System.ComponentModel.xml",
  5259. "ref/netcore50/es/System.ComponentModel.xml",
  5260. "ref/netcore50/fr/System.ComponentModel.xml",
  5261. "ref/netcore50/it/System.ComponentModel.xml",
  5262. "ref/netcore50/ja/System.ComponentModel.xml",
  5263. "ref/netcore50/ko/System.ComponentModel.xml",
  5264. "ref/netcore50/ru/System.ComponentModel.xml",
  5265. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5266. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5267. "ref/netstandard1.0/System.ComponentModel.dll",
  5268. "ref/netstandard1.0/System.ComponentModel.xml",
  5269. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5270. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5271. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5272. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5273. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5274. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5275. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5276. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5277. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5278. "ref/portable-net45+win8+wp8+wpa81/_._",
  5279. "ref/win8/_._",
  5280. "ref/wp80/_._",
  5281. "ref/wpa81/_._",
  5282. "ref/xamarinios10/_._",
  5283. "ref/xamarinmac20/_._",
  5284. "ref/xamarintvos10/_._",
  5285. "ref/xamarinwatchos10/_._",
  5286. "system.componentmodel.4.3.0.nupkg.sha512",
  5287. "system.componentmodel.nuspec"
  5288. ]
  5289. },
  5290. "System.ComponentModel.Annotations/5.0.0": {
  5291. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5292. "type": "package",
  5293. "path": "system.componentmodel.annotations/5.0.0",
  5294. "files": [
  5295. ".nupkg.metadata",
  5296. ".signature.p7s",
  5297. "Icon.png",
  5298. "LICENSE.TXT",
  5299. "THIRD-PARTY-NOTICES.TXT",
  5300. "lib/MonoAndroid10/_._",
  5301. "lib/MonoTouch10/_._",
  5302. "lib/net45/_._",
  5303. "lib/net461/System.ComponentModel.Annotations.dll",
  5304. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5305. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5306. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5307. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5308. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5309. "lib/portable-net45+win8/_._",
  5310. "lib/win8/_._",
  5311. "lib/xamarinios10/_._",
  5312. "lib/xamarinmac20/_._",
  5313. "lib/xamarintvos10/_._",
  5314. "lib/xamarinwatchos10/_._",
  5315. "ref/MonoAndroid10/_._",
  5316. "ref/MonoTouch10/_._",
  5317. "ref/net45/_._",
  5318. "ref/net461/System.ComponentModel.Annotations.dll",
  5319. "ref/net461/System.ComponentModel.Annotations.xml",
  5320. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5321. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5322. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5323. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5324. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5325. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5326. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5327. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5328. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5329. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5330. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5331. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5332. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5333. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5334. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5335. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5336. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5337. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5338. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5339. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5340. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5341. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5342. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5343. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5344. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5345. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5346. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5347. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5348. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5349. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5350. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5351. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5352. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5353. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5354. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5355. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5356. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5357. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5358. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5359. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5360. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5361. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5362. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5363. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5364. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5365. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5366. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5367. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5368. "ref/portable-net45+win8/_._",
  5369. "ref/win8/_._",
  5370. "ref/xamarinios10/_._",
  5371. "ref/xamarinmac20/_._",
  5372. "ref/xamarintvos10/_._",
  5373. "ref/xamarinwatchos10/_._",
  5374. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5375. "system.componentmodel.annotations.nuspec",
  5376. "useSharedDesignerContext.txt",
  5377. "version.txt"
  5378. ]
  5379. },
  5380. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5381. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5382. "type": "package",
  5383. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5384. "files": [
  5385. ".nupkg.metadata",
  5386. ".signature.p7s",
  5387. "ThirdPartyNotices.txt",
  5388. "dotnet_library_license.txt",
  5389. "lib/MonoAndroid10/_._",
  5390. "lib/MonoTouch10/_._",
  5391. "lib/net45/_._",
  5392. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5393. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5394. "lib/portable-net45+win8+wp8+wpa81/_._",
  5395. "lib/win8/_._",
  5396. "lib/wp80/_._",
  5397. "lib/wpa81/_._",
  5398. "lib/xamarinios10/_._",
  5399. "lib/xamarinmac20/_._",
  5400. "lib/xamarintvos10/_._",
  5401. "lib/xamarinwatchos10/_._",
  5402. "ref/MonoAndroid10/_._",
  5403. "ref/MonoTouch10/_._",
  5404. "ref/net45/_._",
  5405. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5406. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5407. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5408. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5409. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5410. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5411. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5412. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5413. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5414. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5415. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5416. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5417. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5418. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5419. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5420. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5421. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5422. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5423. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5424. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5425. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5426. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5427. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5428. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5429. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5430. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5431. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5432. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5433. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5434. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5435. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5436. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5437. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5438. "ref/portable-net45+win8+wp8+wpa81/_._",
  5439. "ref/win8/_._",
  5440. "ref/wp80/_._",
  5441. "ref/wpa81/_._",
  5442. "ref/xamarinios10/_._",
  5443. "ref/xamarinmac20/_._",
  5444. "ref/xamarintvos10/_._",
  5445. "ref/xamarinwatchos10/_._",
  5446. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5447. "system.componentmodel.eventbasedasync.nuspec"
  5448. ]
  5449. },
  5450. "System.ComponentModel.Primitives/4.3.0": {
  5451. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5452. "type": "package",
  5453. "path": "system.componentmodel.primitives/4.3.0",
  5454. "files": [
  5455. ".nupkg.metadata",
  5456. ".signature.p7s",
  5457. "ThirdPartyNotices.txt",
  5458. "dotnet_library_license.txt",
  5459. "lib/MonoAndroid10/_._",
  5460. "lib/MonoTouch10/_._",
  5461. "lib/net45/System.ComponentModel.Primitives.dll",
  5462. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5463. "lib/xamarinios10/_._",
  5464. "lib/xamarinmac20/_._",
  5465. "lib/xamarintvos10/_._",
  5466. "lib/xamarinwatchos10/_._",
  5467. "ref/MonoAndroid10/_._",
  5468. "ref/MonoTouch10/_._",
  5469. "ref/net45/System.ComponentModel.Primitives.dll",
  5470. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5471. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5472. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5473. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5474. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5475. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5476. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5477. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5478. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5479. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5480. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5481. "ref/xamarinios10/_._",
  5482. "ref/xamarinmac20/_._",
  5483. "ref/xamarintvos10/_._",
  5484. "ref/xamarinwatchos10/_._",
  5485. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5486. "system.componentmodel.primitives.nuspec"
  5487. ]
  5488. },
  5489. "System.Configuration.ConfigurationManager/4.5.0": {
  5490. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5491. "type": "package",
  5492. "path": "system.configuration.configurationmanager/4.5.0",
  5493. "files": [
  5494. ".nupkg.metadata",
  5495. ".signature.p7s",
  5496. "LICENSE.TXT",
  5497. "THIRD-PARTY-NOTICES.TXT",
  5498. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5499. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5500. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5501. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5502. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5503. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5504. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5505. "system.configuration.configurationmanager.nuspec",
  5506. "useSharedDesignerContext.txt",
  5507. "version.txt"
  5508. ]
  5509. },
  5510. "System.Console/4.3.0": {
  5511. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5512. "type": "package",
  5513. "path": "system.console/4.3.0",
  5514. "files": [
  5515. ".nupkg.metadata",
  5516. ".signature.p7s",
  5517. "ThirdPartyNotices.txt",
  5518. "dotnet_library_license.txt",
  5519. "lib/MonoAndroid10/_._",
  5520. "lib/MonoTouch10/_._",
  5521. "lib/net46/System.Console.dll",
  5522. "lib/xamarinios10/_._",
  5523. "lib/xamarinmac20/_._",
  5524. "lib/xamarintvos10/_._",
  5525. "lib/xamarinwatchos10/_._",
  5526. "ref/MonoAndroid10/_._",
  5527. "ref/MonoTouch10/_._",
  5528. "ref/net46/System.Console.dll",
  5529. "ref/netstandard1.3/System.Console.dll",
  5530. "ref/netstandard1.3/System.Console.xml",
  5531. "ref/netstandard1.3/de/System.Console.xml",
  5532. "ref/netstandard1.3/es/System.Console.xml",
  5533. "ref/netstandard1.3/fr/System.Console.xml",
  5534. "ref/netstandard1.3/it/System.Console.xml",
  5535. "ref/netstandard1.3/ja/System.Console.xml",
  5536. "ref/netstandard1.3/ko/System.Console.xml",
  5537. "ref/netstandard1.3/ru/System.Console.xml",
  5538. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5539. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5540. "ref/xamarinios10/_._",
  5541. "ref/xamarinmac20/_._",
  5542. "ref/xamarintvos10/_._",
  5543. "ref/xamarinwatchos10/_._",
  5544. "system.console.4.3.0.nupkg.sha512",
  5545. "system.console.nuspec"
  5546. ]
  5547. },
  5548. "System.Diagnostics.Debug/4.3.0": {
  5549. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5550. "type": "package",
  5551. "path": "system.diagnostics.debug/4.3.0",
  5552. "files": [
  5553. ".nupkg.metadata",
  5554. ".signature.p7s",
  5555. "ThirdPartyNotices.txt",
  5556. "dotnet_library_license.txt",
  5557. "lib/MonoAndroid10/_._",
  5558. "lib/MonoTouch10/_._",
  5559. "lib/net45/_._",
  5560. "lib/portable-net45+win8+wp8+wpa81/_._",
  5561. "lib/win8/_._",
  5562. "lib/wp80/_._",
  5563. "lib/wpa81/_._",
  5564. "lib/xamarinios10/_._",
  5565. "lib/xamarinmac20/_._",
  5566. "lib/xamarintvos10/_._",
  5567. "lib/xamarinwatchos10/_._",
  5568. "ref/MonoAndroid10/_._",
  5569. "ref/MonoTouch10/_._",
  5570. "ref/net45/_._",
  5571. "ref/netcore50/System.Diagnostics.Debug.dll",
  5572. "ref/netcore50/System.Diagnostics.Debug.xml",
  5573. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5574. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5575. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5576. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5577. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5578. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5579. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5580. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5581. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5582. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5583. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5584. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5585. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5586. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5587. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5588. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5589. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5590. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5591. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5592. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5593. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5594. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5595. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5596. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5597. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5598. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5599. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5600. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5601. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5602. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5603. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5604. "ref/portable-net45+win8+wp8+wpa81/_._",
  5605. "ref/win8/_._",
  5606. "ref/wp80/_._",
  5607. "ref/wpa81/_._",
  5608. "ref/xamarinios10/_._",
  5609. "ref/xamarinmac20/_._",
  5610. "ref/xamarintvos10/_._",
  5611. "ref/xamarinwatchos10/_._",
  5612. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5613. "system.diagnostics.debug.nuspec"
  5614. ]
  5615. },
  5616. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5617. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5618. "type": "package",
  5619. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5620. "files": [
  5621. ".nupkg.metadata",
  5622. ".signature.p7s",
  5623. "Icon.png",
  5624. "LICENSE.TXT",
  5625. "THIRD-PARTY-NOTICES.TXT",
  5626. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5627. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5628. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5629. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5630. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5631. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5632. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5633. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5634. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5635. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5636. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5637. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5638. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5639. "system.diagnostics.diagnosticsource.nuspec",
  5640. "useSharedDesignerContext.txt",
  5641. "version.txt"
  5642. ]
  5643. },
  5644. "System.Diagnostics.Tools/4.3.0": {
  5645. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5646. "type": "package",
  5647. "path": "system.diagnostics.tools/4.3.0",
  5648. "files": [
  5649. ".nupkg.metadata",
  5650. ".signature.p7s",
  5651. "ThirdPartyNotices.txt",
  5652. "dotnet_library_license.txt",
  5653. "lib/MonoAndroid10/_._",
  5654. "lib/MonoTouch10/_._",
  5655. "lib/net45/_._",
  5656. "lib/portable-net45+win8+wp8+wpa81/_._",
  5657. "lib/win8/_._",
  5658. "lib/wp80/_._",
  5659. "lib/wpa81/_._",
  5660. "lib/xamarinios10/_._",
  5661. "lib/xamarinmac20/_._",
  5662. "lib/xamarintvos10/_._",
  5663. "lib/xamarinwatchos10/_._",
  5664. "ref/MonoAndroid10/_._",
  5665. "ref/MonoTouch10/_._",
  5666. "ref/net45/_._",
  5667. "ref/netcore50/System.Diagnostics.Tools.dll",
  5668. "ref/netcore50/System.Diagnostics.Tools.xml",
  5669. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5670. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5671. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5672. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5673. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5674. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5675. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5676. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5677. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5678. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5679. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5680. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5681. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5682. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5683. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5684. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5685. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5686. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5687. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5688. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5689. "ref/portable-net45+win8+wp8+wpa81/_._",
  5690. "ref/win8/_._",
  5691. "ref/wp80/_._",
  5692. "ref/wpa81/_._",
  5693. "ref/xamarinios10/_._",
  5694. "ref/xamarinmac20/_._",
  5695. "ref/xamarintvos10/_._",
  5696. "ref/xamarinwatchos10/_._",
  5697. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5698. "system.diagnostics.tools.nuspec"
  5699. ]
  5700. },
  5701. "System.Diagnostics.Tracing/4.3.0": {
  5702. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5703. "type": "package",
  5704. "path": "system.diagnostics.tracing/4.3.0",
  5705. "files": [
  5706. ".nupkg.metadata",
  5707. ".signature.p7s",
  5708. "ThirdPartyNotices.txt",
  5709. "dotnet_library_license.txt",
  5710. "lib/MonoAndroid10/_._",
  5711. "lib/MonoTouch10/_._",
  5712. "lib/net45/_._",
  5713. "lib/net462/System.Diagnostics.Tracing.dll",
  5714. "lib/portable-net45+win8+wpa81/_._",
  5715. "lib/win8/_._",
  5716. "lib/wpa81/_._",
  5717. "lib/xamarinios10/_._",
  5718. "lib/xamarinmac20/_._",
  5719. "lib/xamarintvos10/_._",
  5720. "lib/xamarinwatchos10/_._",
  5721. "ref/MonoAndroid10/_._",
  5722. "ref/MonoTouch10/_._",
  5723. "ref/net45/_._",
  5724. "ref/net462/System.Diagnostics.Tracing.dll",
  5725. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5726. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5727. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5728. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5729. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5730. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5731. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5732. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5733. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5734. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5735. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5736. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5737. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5738. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5739. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5740. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5741. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5742. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5743. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5744. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5745. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5746. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5747. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5748. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5749. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5750. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5751. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5752. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5753. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5754. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5755. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5756. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5757. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5758. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5759. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5760. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5761. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5762. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5763. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5764. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5765. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5766. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5767. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5768. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5769. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5770. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5771. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5772. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5773. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5774. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5775. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5776. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5777. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5778. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5779. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5780. "ref/portable-net45+win8+wpa81/_._",
  5781. "ref/win8/_._",
  5782. "ref/wpa81/_._",
  5783. "ref/xamarinios10/_._",
  5784. "ref/xamarinmac20/_._",
  5785. "ref/xamarintvos10/_._",
  5786. "ref/xamarinwatchos10/_._",
  5787. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5788. "system.diagnostics.tracing.nuspec"
  5789. ]
  5790. },
  5791. "System.Drawing.Common/5.0.3": {
  5792. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5793. "type": "package",
  5794. "path": "system.drawing.common/5.0.3",
  5795. "files": [
  5796. ".nupkg.metadata",
  5797. ".signature.p7s",
  5798. "Icon.png",
  5799. "LICENSE.TXT",
  5800. "THIRD-PARTY-NOTICES.TXT",
  5801. "lib/MonoAndroid10/_._",
  5802. "lib/MonoTouch10/_._",
  5803. "lib/net461/System.Drawing.Common.dll",
  5804. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5805. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5806. "lib/netstandard2.0/System.Drawing.Common.dll",
  5807. "lib/xamarinios10/_._",
  5808. "lib/xamarinmac20/_._",
  5809. "lib/xamarintvos10/_._",
  5810. "lib/xamarinwatchos10/_._",
  5811. "ref/MonoAndroid10/_._",
  5812. "ref/MonoTouch10/_._",
  5813. "ref/net461/System.Drawing.Common.dll",
  5814. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5815. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5816. "ref/netstandard2.0/System.Drawing.Common.dll",
  5817. "ref/xamarinios10/_._",
  5818. "ref/xamarinmac20/_._",
  5819. "ref/xamarintvos10/_._",
  5820. "ref/xamarinwatchos10/_._",
  5821. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5822. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5823. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5824. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5825. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5826. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5827. "system.drawing.common.5.0.3.nupkg.sha512",
  5828. "system.drawing.common.nuspec",
  5829. "useSharedDesignerContext.txt",
  5830. "version.txt"
  5831. ]
  5832. },
  5833. "System.Globalization/4.3.0": {
  5834. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5835. "type": "package",
  5836. "path": "system.globalization/4.3.0",
  5837. "files": [
  5838. ".nupkg.metadata",
  5839. ".signature.p7s",
  5840. "ThirdPartyNotices.txt",
  5841. "dotnet_library_license.txt",
  5842. "lib/MonoAndroid10/_._",
  5843. "lib/MonoTouch10/_._",
  5844. "lib/net45/_._",
  5845. "lib/portable-net45+win8+wp8+wpa81/_._",
  5846. "lib/win8/_._",
  5847. "lib/wp80/_._",
  5848. "lib/wpa81/_._",
  5849. "lib/xamarinios10/_._",
  5850. "lib/xamarinmac20/_._",
  5851. "lib/xamarintvos10/_._",
  5852. "lib/xamarinwatchos10/_._",
  5853. "ref/MonoAndroid10/_._",
  5854. "ref/MonoTouch10/_._",
  5855. "ref/net45/_._",
  5856. "ref/netcore50/System.Globalization.dll",
  5857. "ref/netcore50/System.Globalization.xml",
  5858. "ref/netcore50/de/System.Globalization.xml",
  5859. "ref/netcore50/es/System.Globalization.xml",
  5860. "ref/netcore50/fr/System.Globalization.xml",
  5861. "ref/netcore50/it/System.Globalization.xml",
  5862. "ref/netcore50/ja/System.Globalization.xml",
  5863. "ref/netcore50/ko/System.Globalization.xml",
  5864. "ref/netcore50/ru/System.Globalization.xml",
  5865. "ref/netcore50/zh-hans/System.Globalization.xml",
  5866. "ref/netcore50/zh-hant/System.Globalization.xml",
  5867. "ref/netstandard1.0/System.Globalization.dll",
  5868. "ref/netstandard1.0/System.Globalization.xml",
  5869. "ref/netstandard1.0/de/System.Globalization.xml",
  5870. "ref/netstandard1.0/es/System.Globalization.xml",
  5871. "ref/netstandard1.0/fr/System.Globalization.xml",
  5872. "ref/netstandard1.0/it/System.Globalization.xml",
  5873. "ref/netstandard1.0/ja/System.Globalization.xml",
  5874. "ref/netstandard1.0/ko/System.Globalization.xml",
  5875. "ref/netstandard1.0/ru/System.Globalization.xml",
  5876. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5877. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5878. "ref/netstandard1.3/System.Globalization.dll",
  5879. "ref/netstandard1.3/System.Globalization.xml",
  5880. "ref/netstandard1.3/de/System.Globalization.xml",
  5881. "ref/netstandard1.3/es/System.Globalization.xml",
  5882. "ref/netstandard1.3/fr/System.Globalization.xml",
  5883. "ref/netstandard1.3/it/System.Globalization.xml",
  5884. "ref/netstandard1.3/ja/System.Globalization.xml",
  5885. "ref/netstandard1.3/ko/System.Globalization.xml",
  5886. "ref/netstandard1.3/ru/System.Globalization.xml",
  5887. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5888. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5889. "ref/portable-net45+win8+wp8+wpa81/_._",
  5890. "ref/win8/_._",
  5891. "ref/wp80/_._",
  5892. "ref/wpa81/_._",
  5893. "ref/xamarinios10/_._",
  5894. "ref/xamarinmac20/_._",
  5895. "ref/xamarintvos10/_._",
  5896. "ref/xamarinwatchos10/_._",
  5897. "system.globalization.4.3.0.nupkg.sha512",
  5898. "system.globalization.nuspec"
  5899. ]
  5900. },
  5901. "System.Globalization.Calendars/4.3.0": {
  5902. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5903. "type": "package",
  5904. "path": "system.globalization.calendars/4.3.0",
  5905. "files": [
  5906. ".nupkg.metadata",
  5907. ".signature.p7s",
  5908. "ThirdPartyNotices.txt",
  5909. "dotnet_library_license.txt",
  5910. "lib/MonoAndroid10/_._",
  5911. "lib/MonoTouch10/_._",
  5912. "lib/net46/System.Globalization.Calendars.dll",
  5913. "lib/xamarinios10/_._",
  5914. "lib/xamarinmac20/_._",
  5915. "lib/xamarintvos10/_._",
  5916. "lib/xamarinwatchos10/_._",
  5917. "ref/MonoAndroid10/_._",
  5918. "ref/MonoTouch10/_._",
  5919. "ref/net46/System.Globalization.Calendars.dll",
  5920. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5921. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5922. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5923. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5924. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5925. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5926. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5927. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5928. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5929. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5930. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5931. "ref/xamarinios10/_._",
  5932. "ref/xamarinmac20/_._",
  5933. "ref/xamarintvos10/_._",
  5934. "ref/xamarinwatchos10/_._",
  5935. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5936. "system.globalization.calendars.nuspec"
  5937. ]
  5938. },
  5939. "System.Globalization.Extensions/4.3.0": {
  5940. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5941. "type": "package",
  5942. "path": "system.globalization.extensions/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/net46/System.Globalization.Extensions.dll",
  5951. "lib/xamarinios10/_._",
  5952. "lib/xamarinmac20/_._",
  5953. "lib/xamarintvos10/_._",
  5954. "lib/xamarinwatchos10/_._",
  5955. "ref/MonoAndroid10/_._",
  5956. "ref/MonoTouch10/_._",
  5957. "ref/net46/System.Globalization.Extensions.dll",
  5958. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5959. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5960. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5961. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5962. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5963. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5964. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5965. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5966. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5967. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5968. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5969. "ref/xamarinios10/_._",
  5970. "ref/xamarinmac20/_._",
  5971. "ref/xamarintvos10/_._",
  5972. "ref/xamarinwatchos10/_._",
  5973. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5974. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5975. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5976. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5977. "system.globalization.extensions.nuspec"
  5978. ]
  5979. },
  5980. "System.IO/4.3.0": {
  5981. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5982. "type": "package",
  5983. "path": "system.io/4.3.0",
  5984. "files": [
  5985. ".nupkg.metadata",
  5986. ".signature.p7s",
  5987. "ThirdPartyNotices.txt",
  5988. "dotnet_library_license.txt",
  5989. "lib/MonoAndroid10/_._",
  5990. "lib/MonoTouch10/_._",
  5991. "lib/net45/_._",
  5992. "lib/net462/System.IO.dll",
  5993. "lib/portable-net45+win8+wp8+wpa81/_._",
  5994. "lib/win8/_._",
  5995. "lib/wp80/_._",
  5996. "lib/wpa81/_._",
  5997. "lib/xamarinios10/_._",
  5998. "lib/xamarinmac20/_._",
  5999. "lib/xamarintvos10/_._",
  6000. "lib/xamarinwatchos10/_._",
  6001. "ref/MonoAndroid10/_._",
  6002. "ref/MonoTouch10/_._",
  6003. "ref/net45/_._",
  6004. "ref/net462/System.IO.dll",
  6005. "ref/netcore50/System.IO.dll",
  6006. "ref/netcore50/System.IO.xml",
  6007. "ref/netcore50/de/System.IO.xml",
  6008. "ref/netcore50/es/System.IO.xml",
  6009. "ref/netcore50/fr/System.IO.xml",
  6010. "ref/netcore50/it/System.IO.xml",
  6011. "ref/netcore50/ja/System.IO.xml",
  6012. "ref/netcore50/ko/System.IO.xml",
  6013. "ref/netcore50/ru/System.IO.xml",
  6014. "ref/netcore50/zh-hans/System.IO.xml",
  6015. "ref/netcore50/zh-hant/System.IO.xml",
  6016. "ref/netstandard1.0/System.IO.dll",
  6017. "ref/netstandard1.0/System.IO.xml",
  6018. "ref/netstandard1.0/de/System.IO.xml",
  6019. "ref/netstandard1.0/es/System.IO.xml",
  6020. "ref/netstandard1.0/fr/System.IO.xml",
  6021. "ref/netstandard1.0/it/System.IO.xml",
  6022. "ref/netstandard1.0/ja/System.IO.xml",
  6023. "ref/netstandard1.0/ko/System.IO.xml",
  6024. "ref/netstandard1.0/ru/System.IO.xml",
  6025. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6026. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6027. "ref/netstandard1.3/System.IO.dll",
  6028. "ref/netstandard1.3/System.IO.xml",
  6029. "ref/netstandard1.3/de/System.IO.xml",
  6030. "ref/netstandard1.3/es/System.IO.xml",
  6031. "ref/netstandard1.3/fr/System.IO.xml",
  6032. "ref/netstandard1.3/it/System.IO.xml",
  6033. "ref/netstandard1.3/ja/System.IO.xml",
  6034. "ref/netstandard1.3/ko/System.IO.xml",
  6035. "ref/netstandard1.3/ru/System.IO.xml",
  6036. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6037. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6038. "ref/netstandard1.5/System.IO.dll",
  6039. "ref/netstandard1.5/System.IO.xml",
  6040. "ref/netstandard1.5/de/System.IO.xml",
  6041. "ref/netstandard1.5/es/System.IO.xml",
  6042. "ref/netstandard1.5/fr/System.IO.xml",
  6043. "ref/netstandard1.5/it/System.IO.xml",
  6044. "ref/netstandard1.5/ja/System.IO.xml",
  6045. "ref/netstandard1.5/ko/System.IO.xml",
  6046. "ref/netstandard1.5/ru/System.IO.xml",
  6047. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6048. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6049. "ref/portable-net45+win8+wp8+wpa81/_._",
  6050. "ref/win8/_._",
  6051. "ref/wp80/_._",
  6052. "ref/wpa81/_._",
  6053. "ref/xamarinios10/_._",
  6054. "ref/xamarinmac20/_._",
  6055. "ref/xamarintvos10/_._",
  6056. "ref/xamarinwatchos10/_._",
  6057. "system.io.4.3.0.nupkg.sha512",
  6058. "system.io.nuspec"
  6059. ]
  6060. },
  6061. "System.IO.Compression/4.3.0": {
  6062. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6063. "type": "package",
  6064. "path": "system.io.compression/4.3.0",
  6065. "files": [
  6066. ".nupkg.metadata",
  6067. ".signature.p7s",
  6068. "ThirdPartyNotices.txt",
  6069. "dotnet_library_license.txt",
  6070. "lib/MonoAndroid10/_._",
  6071. "lib/MonoTouch10/_._",
  6072. "lib/net45/_._",
  6073. "lib/net46/System.IO.Compression.dll",
  6074. "lib/portable-net45+win8+wpa81/_._",
  6075. "lib/win8/_._",
  6076. "lib/wpa81/_._",
  6077. "lib/xamarinios10/_._",
  6078. "lib/xamarinmac20/_._",
  6079. "lib/xamarintvos10/_._",
  6080. "lib/xamarinwatchos10/_._",
  6081. "ref/MonoAndroid10/_._",
  6082. "ref/MonoTouch10/_._",
  6083. "ref/net45/_._",
  6084. "ref/net46/System.IO.Compression.dll",
  6085. "ref/netcore50/System.IO.Compression.dll",
  6086. "ref/netcore50/System.IO.Compression.xml",
  6087. "ref/netcore50/de/System.IO.Compression.xml",
  6088. "ref/netcore50/es/System.IO.Compression.xml",
  6089. "ref/netcore50/fr/System.IO.Compression.xml",
  6090. "ref/netcore50/it/System.IO.Compression.xml",
  6091. "ref/netcore50/ja/System.IO.Compression.xml",
  6092. "ref/netcore50/ko/System.IO.Compression.xml",
  6093. "ref/netcore50/ru/System.IO.Compression.xml",
  6094. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6095. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6096. "ref/netstandard1.1/System.IO.Compression.dll",
  6097. "ref/netstandard1.1/System.IO.Compression.xml",
  6098. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6099. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6100. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6101. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6102. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6103. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6104. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6105. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6106. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6107. "ref/netstandard1.3/System.IO.Compression.dll",
  6108. "ref/netstandard1.3/System.IO.Compression.xml",
  6109. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6110. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6111. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6112. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6113. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6114. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6115. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6116. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6117. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6118. "ref/portable-net45+win8+wpa81/_._",
  6119. "ref/win8/_._",
  6120. "ref/wpa81/_._",
  6121. "ref/xamarinios10/_._",
  6122. "ref/xamarinmac20/_._",
  6123. "ref/xamarintvos10/_._",
  6124. "ref/xamarinwatchos10/_._",
  6125. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6126. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6127. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6128. "system.io.compression.4.3.0.nupkg.sha512",
  6129. "system.io.compression.nuspec"
  6130. ]
  6131. },
  6132. "System.IO.Compression.ZipFile/4.3.0": {
  6133. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6134. "type": "package",
  6135. "path": "system.io.compression.zipfile/4.3.0",
  6136. "files": [
  6137. ".nupkg.metadata",
  6138. ".signature.p7s",
  6139. "ThirdPartyNotices.txt",
  6140. "dotnet_library_license.txt",
  6141. "lib/MonoAndroid10/_._",
  6142. "lib/MonoTouch10/_._",
  6143. "lib/net46/System.IO.Compression.ZipFile.dll",
  6144. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6145. "lib/xamarinios10/_._",
  6146. "lib/xamarinmac20/_._",
  6147. "lib/xamarintvos10/_._",
  6148. "lib/xamarinwatchos10/_._",
  6149. "ref/MonoAndroid10/_._",
  6150. "ref/MonoTouch10/_._",
  6151. "ref/net46/System.IO.Compression.ZipFile.dll",
  6152. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6153. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6154. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6155. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6156. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6157. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6158. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6159. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6160. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6161. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6162. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6163. "ref/xamarinios10/_._",
  6164. "ref/xamarinmac20/_._",
  6165. "ref/xamarintvos10/_._",
  6166. "ref/xamarinwatchos10/_._",
  6167. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6168. "system.io.compression.zipfile.nuspec"
  6169. ]
  6170. },
  6171. "System.IO.FileSystem/4.3.0": {
  6172. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6173. "type": "package",
  6174. "path": "system.io.filesystem/4.3.0",
  6175. "files": [
  6176. ".nupkg.metadata",
  6177. ".signature.p7s",
  6178. "ThirdPartyNotices.txt",
  6179. "dotnet_library_license.txt",
  6180. "lib/MonoAndroid10/_._",
  6181. "lib/MonoTouch10/_._",
  6182. "lib/net46/System.IO.FileSystem.dll",
  6183. "lib/xamarinios10/_._",
  6184. "lib/xamarinmac20/_._",
  6185. "lib/xamarintvos10/_._",
  6186. "lib/xamarinwatchos10/_._",
  6187. "ref/MonoAndroid10/_._",
  6188. "ref/MonoTouch10/_._",
  6189. "ref/net46/System.IO.FileSystem.dll",
  6190. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6191. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6192. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6193. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6194. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6195. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6196. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6197. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6198. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6199. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6200. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6201. "ref/xamarinios10/_._",
  6202. "ref/xamarinmac20/_._",
  6203. "ref/xamarintvos10/_._",
  6204. "ref/xamarinwatchos10/_._",
  6205. "system.io.filesystem.4.3.0.nupkg.sha512",
  6206. "system.io.filesystem.nuspec"
  6207. ]
  6208. },
  6209. "System.IO.FileSystem.Primitives/4.3.0": {
  6210. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6211. "type": "package",
  6212. "path": "system.io.filesystem.primitives/4.3.0",
  6213. "files": [
  6214. ".nupkg.metadata",
  6215. ".signature.p7s",
  6216. "ThirdPartyNotices.txt",
  6217. "dotnet_library_license.txt",
  6218. "lib/MonoAndroid10/_._",
  6219. "lib/MonoTouch10/_._",
  6220. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6221. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6222. "lib/xamarinios10/_._",
  6223. "lib/xamarinmac20/_._",
  6224. "lib/xamarintvos10/_._",
  6225. "lib/xamarinwatchos10/_._",
  6226. "ref/MonoAndroid10/_._",
  6227. "ref/MonoTouch10/_._",
  6228. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6229. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6230. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6231. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6232. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6233. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6234. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6235. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6236. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6237. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6238. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6239. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6240. "ref/xamarinios10/_._",
  6241. "ref/xamarinmac20/_._",
  6242. "ref/xamarintvos10/_._",
  6243. "ref/xamarinwatchos10/_._",
  6244. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6245. "system.io.filesystem.primitives.nuspec"
  6246. ]
  6247. },
  6248. "System.IO.Pipelines/5.0.0": {
  6249. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6250. "type": "package",
  6251. "path": "system.io.pipelines/5.0.0",
  6252. "files": [
  6253. ".nupkg.metadata",
  6254. ".signature.p7s",
  6255. "Icon.png",
  6256. "LICENSE.TXT",
  6257. "THIRD-PARTY-NOTICES.TXT",
  6258. "lib/net461/System.IO.Pipelines.dll",
  6259. "lib/net461/System.IO.Pipelines.xml",
  6260. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6261. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6262. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6263. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6264. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6265. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6266. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6267. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6268. "system.io.pipelines.5.0.0.nupkg.sha512",
  6269. "system.io.pipelines.nuspec",
  6270. "useSharedDesignerContext.txt",
  6271. "version.txt"
  6272. ]
  6273. },
  6274. "System.Linq/4.3.0": {
  6275. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6276. "type": "package",
  6277. "path": "system.linq/4.3.0",
  6278. "files": [
  6279. ".nupkg.metadata",
  6280. ".signature.p7s",
  6281. "ThirdPartyNotices.txt",
  6282. "dotnet_library_license.txt",
  6283. "lib/MonoAndroid10/_._",
  6284. "lib/MonoTouch10/_._",
  6285. "lib/net45/_._",
  6286. "lib/net463/System.Linq.dll",
  6287. "lib/netcore50/System.Linq.dll",
  6288. "lib/netstandard1.6/System.Linq.dll",
  6289. "lib/portable-net45+win8+wp8+wpa81/_._",
  6290. "lib/win8/_._",
  6291. "lib/wp80/_._",
  6292. "lib/wpa81/_._",
  6293. "lib/xamarinios10/_._",
  6294. "lib/xamarinmac20/_._",
  6295. "lib/xamarintvos10/_._",
  6296. "lib/xamarinwatchos10/_._",
  6297. "ref/MonoAndroid10/_._",
  6298. "ref/MonoTouch10/_._",
  6299. "ref/net45/_._",
  6300. "ref/net463/System.Linq.dll",
  6301. "ref/netcore50/System.Linq.dll",
  6302. "ref/netcore50/System.Linq.xml",
  6303. "ref/netcore50/de/System.Linq.xml",
  6304. "ref/netcore50/es/System.Linq.xml",
  6305. "ref/netcore50/fr/System.Linq.xml",
  6306. "ref/netcore50/it/System.Linq.xml",
  6307. "ref/netcore50/ja/System.Linq.xml",
  6308. "ref/netcore50/ko/System.Linq.xml",
  6309. "ref/netcore50/ru/System.Linq.xml",
  6310. "ref/netcore50/zh-hans/System.Linq.xml",
  6311. "ref/netcore50/zh-hant/System.Linq.xml",
  6312. "ref/netstandard1.0/System.Linq.dll",
  6313. "ref/netstandard1.0/System.Linq.xml",
  6314. "ref/netstandard1.0/de/System.Linq.xml",
  6315. "ref/netstandard1.0/es/System.Linq.xml",
  6316. "ref/netstandard1.0/fr/System.Linq.xml",
  6317. "ref/netstandard1.0/it/System.Linq.xml",
  6318. "ref/netstandard1.0/ja/System.Linq.xml",
  6319. "ref/netstandard1.0/ko/System.Linq.xml",
  6320. "ref/netstandard1.0/ru/System.Linq.xml",
  6321. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6322. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6323. "ref/netstandard1.6/System.Linq.dll",
  6324. "ref/netstandard1.6/System.Linq.xml",
  6325. "ref/netstandard1.6/de/System.Linq.xml",
  6326. "ref/netstandard1.6/es/System.Linq.xml",
  6327. "ref/netstandard1.6/fr/System.Linq.xml",
  6328. "ref/netstandard1.6/it/System.Linq.xml",
  6329. "ref/netstandard1.6/ja/System.Linq.xml",
  6330. "ref/netstandard1.6/ko/System.Linq.xml",
  6331. "ref/netstandard1.6/ru/System.Linq.xml",
  6332. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6333. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6334. "ref/portable-net45+win8+wp8+wpa81/_._",
  6335. "ref/win8/_._",
  6336. "ref/wp80/_._",
  6337. "ref/wpa81/_._",
  6338. "ref/xamarinios10/_._",
  6339. "ref/xamarinmac20/_._",
  6340. "ref/xamarintvos10/_._",
  6341. "ref/xamarinwatchos10/_._",
  6342. "system.linq.4.3.0.nupkg.sha512",
  6343. "system.linq.nuspec"
  6344. ]
  6345. },
  6346. "System.Linq.Expressions/4.3.0": {
  6347. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6348. "type": "package",
  6349. "path": "system.linq.expressions/4.3.0",
  6350. "files": [
  6351. ".nupkg.metadata",
  6352. ".signature.p7s",
  6353. "ThirdPartyNotices.txt",
  6354. "dotnet_library_license.txt",
  6355. "lib/MonoAndroid10/_._",
  6356. "lib/MonoTouch10/_._",
  6357. "lib/net45/_._",
  6358. "lib/net463/System.Linq.Expressions.dll",
  6359. "lib/netcore50/System.Linq.Expressions.dll",
  6360. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6361. "lib/portable-net45+win8+wp8+wpa81/_._",
  6362. "lib/win8/_._",
  6363. "lib/wp80/_._",
  6364. "lib/wpa81/_._",
  6365. "lib/xamarinios10/_._",
  6366. "lib/xamarinmac20/_._",
  6367. "lib/xamarintvos10/_._",
  6368. "lib/xamarinwatchos10/_._",
  6369. "ref/MonoAndroid10/_._",
  6370. "ref/MonoTouch10/_._",
  6371. "ref/net45/_._",
  6372. "ref/net463/System.Linq.Expressions.dll",
  6373. "ref/netcore50/System.Linq.Expressions.dll",
  6374. "ref/netcore50/System.Linq.Expressions.xml",
  6375. "ref/netcore50/de/System.Linq.Expressions.xml",
  6376. "ref/netcore50/es/System.Linq.Expressions.xml",
  6377. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6378. "ref/netcore50/it/System.Linq.Expressions.xml",
  6379. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6380. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6381. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6382. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6383. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6384. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6385. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6386. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6387. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6388. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6389. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6390. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6391. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6392. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6393. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6394. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6395. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6396. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6397. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6398. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6399. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6400. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6401. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6402. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6403. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6404. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6405. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6406. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6407. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6408. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6409. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6410. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6411. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6412. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6413. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6414. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6415. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6416. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6417. "ref/portable-net45+win8+wp8+wpa81/_._",
  6418. "ref/win8/_._",
  6419. "ref/wp80/_._",
  6420. "ref/wpa81/_._",
  6421. "ref/xamarinios10/_._",
  6422. "ref/xamarinmac20/_._",
  6423. "ref/xamarintvos10/_._",
  6424. "ref/xamarinwatchos10/_._",
  6425. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6426. "system.linq.expressions.4.3.0.nupkg.sha512",
  6427. "system.linq.expressions.nuspec"
  6428. ]
  6429. },
  6430. "System.Memory/4.5.5": {
  6431. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6432. "type": "package",
  6433. "path": "system.memory/4.5.5",
  6434. "files": [
  6435. ".nupkg.metadata",
  6436. ".signature.p7s",
  6437. "LICENSE.TXT",
  6438. "THIRD-PARTY-NOTICES.TXT",
  6439. "lib/net461/System.Memory.dll",
  6440. "lib/net461/System.Memory.xml",
  6441. "lib/netcoreapp2.1/_._",
  6442. "lib/netstandard1.1/System.Memory.dll",
  6443. "lib/netstandard1.1/System.Memory.xml",
  6444. "lib/netstandard2.0/System.Memory.dll",
  6445. "lib/netstandard2.0/System.Memory.xml",
  6446. "ref/netcoreapp2.1/_._",
  6447. "system.memory.4.5.5.nupkg.sha512",
  6448. "system.memory.nuspec",
  6449. "useSharedDesignerContext.txt",
  6450. "version.txt"
  6451. ]
  6452. },
  6453. "System.Net.Http/4.3.2": {
  6454. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  6455. "type": "package",
  6456. "path": "system.net.http/4.3.2",
  6457. "files": [
  6458. ".nupkg.metadata",
  6459. ".signature.p7s",
  6460. "ThirdPartyNotices.txt",
  6461. "dotnet_library_license.txt",
  6462. "lib/Xamarinmac20/_._",
  6463. "lib/monoandroid10/_._",
  6464. "lib/monotouch10/_._",
  6465. "lib/net45/_._",
  6466. "lib/net46/System.Net.Http.dll",
  6467. "lib/portable-net45+win8+wpa81/_._",
  6468. "lib/win8/_._",
  6469. "lib/wpa81/_._",
  6470. "lib/xamarinios10/_._",
  6471. "lib/xamarintvos10/_._",
  6472. "lib/xamarinwatchos10/_._",
  6473. "ref/Xamarinmac20/_._",
  6474. "ref/monoandroid10/_._",
  6475. "ref/monotouch10/_._",
  6476. "ref/net45/_._",
  6477. "ref/net46/System.Net.Http.dll",
  6478. "ref/netcore50/System.Net.Http.dll",
  6479. "ref/netstandard1.1/System.Net.Http.dll",
  6480. "ref/netstandard1.3/System.Net.Http.dll",
  6481. "ref/portable-net45+win8+wpa81/_._",
  6482. "ref/win8/_._",
  6483. "ref/wpa81/_._",
  6484. "ref/xamarinios10/_._",
  6485. "ref/xamarintvos10/_._",
  6486. "ref/xamarinwatchos10/_._",
  6487. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6488. "runtimes/win/lib/net46/System.Net.Http.dll",
  6489. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6490. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6491. "system.net.http.4.3.2.nupkg.sha512",
  6492. "system.net.http.nuspec"
  6493. ]
  6494. },
  6495. "System.Net.NameResolution/4.3.0": {
  6496. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6497. "type": "package",
  6498. "path": "system.net.nameresolution/4.3.0",
  6499. "files": [
  6500. ".nupkg.metadata",
  6501. ".signature.p7s",
  6502. "ThirdPartyNotices.txt",
  6503. "dotnet_library_license.txt",
  6504. "lib/MonoAndroid10/_._",
  6505. "lib/MonoTouch10/_._",
  6506. "lib/net46/System.Net.NameResolution.dll",
  6507. "lib/xamarinios10/_._",
  6508. "lib/xamarinmac20/_._",
  6509. "lib/xamarintvos10/_._",
  6510. "lib/xamarinwatchos10/_._",
  6511. "ref/MonoAndroid10/_._",
  6512. "ref/MonoTouch10/_._",
  6513. "ref/net46/System.Net.NameResolution.dll",
  6514. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6515. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6516. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6517. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6518. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6519. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6520. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6521. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6522. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6523. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6524. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6525. "ref/xamarinios10/_._",
  6526. "ref/xamarinmac20/_._",
  6527. "ref/xamarintvos10/_._",
  6528. "ref/xamarinwatchos10/_._",
  6529. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6530. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6531. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6532. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6533. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6534. "system.net.nameresolution.nuspec"
  6535. ]
  6536. },
  6537. "System.Net.Primitives/4.3.0": {
  6538. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6539. "type": "package",
  6540. "path": "system.net.primitives/4.3.0",
  6541. "files": [
  6542. ".nupkg.metadata",
  6543. ".signature.p7s",
  6544. "ThirdPartyNotices.txt",
  6545. "dotnet_library_license.txt",
  6546. "lib/MonoAndroid10/_._",
  6547. "lib/MonoTouch10/_._",
  6548. "lib/net45/_._",
  6549. "lib/portable-net45+win8+wp8+wpa81/_._",
  6550. "lib/win8/_._",
  6551. "lib/wp80/_._",
  6552. "lib/wpa81/_._",
  6553. "lib/xamarinios10/_._",
  6554. "lib/xamarinmac20/_._",
  6555. "lib/xamarintvos10/_._",
  6556. "lib/xamarinwatchos10/_._",
  6557. "ref/MonoAndroid10/_._",
  6558. "ref/MonoTouch10/_._",
  6559. "ref/net45/_._",
  6560. "ref/netcore50/System.Net.Primitives.dll",
  6561. "ref/netcore50/System.Net.Primitives.xml",
  6562. "ref/netcore50/de/System.Net.Primitives.xml",
  6563. "ref/netcore50/es/System.Net.Primitives.xml",
  6564. "ref/netcore50/fr/System.Net.Primitives.xml",
  6565. "ref/netcore50/it/System.Net.Primitives.xml",
  6566. "ref/netcore50/ja/System.Net.Primitives.xml",
  6567. "ref/netcore50/ko/System.Net.Primitives.xml",
  6568. "ref/netcore50/ru/System.Net.Primitives.xml",
  6569. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6570. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6571. "ref/netstandard1.0/System.Net.Primitives.dll",
  6572. "ref/netstandard1.0/System.Net.Primitives.xml",
  6573. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6574. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6575. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6576. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6577. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6578. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6579. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6580. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6581. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6582. "ref/netstandard1.1/System.Net.Primitives.dll",
  6583. "ref/netstandard1.1/System.Net.Primitives.xml",
  6584. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6585. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6586. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6587. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6588. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6589. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6590. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6591. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6592. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6593. "ref/netstandard1.3/System.Net.Primitives.dll",
  6594. "ref/netstandard1.3/System.Net.Primitives.xml",
  6595. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6596. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6597. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6598. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6599. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6600. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6601. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6602. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6603. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6604. "ref/portable-net45+win8+wp8+wpa81/_._",
  6605. "ref/win8/_._",
  6606. "ref/wp80/_._",
  6607. "ref/wpa81/_._",
  6608. "ref/xamarinios10/_._",
  6609. "ref/xamarinmac20/_._",
  6610. "ref/xamarintvos10/_._",
  6611. "ref/xamarinwatchos10/_._",
  6612. "system.net.primitives.4.3.0.nupkg.sha512",
  6613. "system.net.primitives.nuspec"
  6614. ]
  6615. },
  6616. "System.Net.Security/4.3.0": {
  6617. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6618. "type": "package",
  6619. "path": "system.net.security/4.3.0",
  6620. "files": [
  6621. ".nupkg.metadata",
  6622. ".signature.p7s",
  6623. "ThirdPartyNotices.txt",
  6624. "dotnet_library_license.txt",
  6625. "lib/MonoAndroid10/_._",
  6626. "lib/MonoTouch10/_._",
  6627. "lib/net46/System.Net.Security.dll",
  6628. "lib/xamarinios10/_._",
  6629. "lib/xamarinmac20/_._",
  6630. "lib/xamarintvos10/_._",
  6631. "lib/xamarinwatchos10/_._",
  6632. "ref/MonoAndroid10/_._",
  6633. "ref/MonoTouch10/_._",
  6634. "ref/net46/System.Net.Security.dll",
  6635. "ref/netstandard1.3/System.Net.Security.dll",
  6636. "ref/netstandard1.3/System.Net.Security.xml",
  6637. "ref/netstandard1.3/de/System.Net.Security.xml",
  6638. "ref/netstandard1.3/es/System.Net.Security.xml",
  6639. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6640. "ref/netstandard1.3/it/System.Net.Security.xml",
  6641. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6642. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6643. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6644. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6645. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6646. "ref/xamarinios10/_._",
  6647. "ref/xamarinmac20/_._",
  6648. "ref/xamarintvos10/_._",
  6649. "ref/xamarinwatchos10/_._",
  6650. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6651. "runtimes/win/lib/net46/System.Net.Security.dll",
  6652. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6653. "runtimes/win7/lib/netcore50/_._",
  6654. "system.net.security.4.3.0.nupkg.sha512",
  6655. "system.net.security.nuspec"
  6656. ]
  6657. },
  6658. "System.Net.Sockets/4.3.0": {
  6659. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6660. "type": "package",
  6661. "path": "system.net.sockets/4.3.0",
  6662. "files": [
  6663. ".nupkg.metadata",
  6664. ".signature.p7s",
  6665. "ThirdPartyNotices.txt",
  6666. "dotnet_library_license.txt",
  6667. "lib/MonoAndroid10/_._",
  6668. "lib/MonoTouch10/_._",
  6669. "lib/net46/System.Net.Sockets.dll",
  6670. "lib/xamarinios10/_._",
  6671. "lib/xamarinmac20/_._",
  6672. "lib/xamarintvos10/_._",
  6673. "lib/xamarinwatchos10/_._",
  6674. "ref/MonoAndroid10/_._",
  6675. "ref/MonoTouch10/_._",
  6676. "ref/net46/System.Net.Sockets.dll",
  6677. "ref/netstandard1.3/System.Net.Sockets.dll",
  6678. "ref/netstandard1.3/System.Net.Sockets.xml",
  6679. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6680. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6681. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6682. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6683. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6684. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6685. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6686. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6687. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6688. "ref/xamarinios10/_._",
  6689. "ref/xamarinmac20/_._",
  6690. "ref/xamarintvos10/_._",
  6691. "ref/xamarinwatchos10/_._",
  6692. "system.net.sockets.4.3.0.nupkg.sha512",
  6693. "system.net.sockets.nuspec"
  6694. ]
  6695. },
  6696. "System.ObjectModel/4.3.0": {
  6697. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6698. "type": "package",
  6699. "path": "system.objectmodel/4.3.0",
  6700. "files": [
  6701. ".nupkg.metadata",
  6702. ".signature.p7s",
  6703. "ThirdPartyNotices.txt",
  6704. "dotnet_library_license.txt",
  6705. "lib/MonoAndroid10/_._",
  6706. "lib/MonoTouch10/_._",
  6707. "lib/net45/_._",
  6708. "lib/netcore50/System.ObjectModel.dll",
  6709. "lib/netstandard1.3/System.ObjectModel.dll",
  6710. "lib/portable-net45+win8+wp8+wpa81/_._",
  6711. "lib/win8/_._",
  6712. "lib/wp80/_._",
  6713. "lib/wpa81/_._",
  6714. "lib/xamarinios10/_._",
  6715. "lib/xamarinmac20/_._",
  6716. "lib/xamarintvos10/_._",
  6717. "lib/xamarinwatchos10/_._",
  6718. "ref/MonoAndroid10/_._",
  6719. "ref/MonoTouch10/_._",
  6720. "ref/net45/_._",
  6721. "ref/netcore50/System.ObjectModel.dll",
  6722. "ref/netcore50/System.ObjectModel.xml",
  6723. "ref/netcore50/de/System.ObjectModel.xml",
  6724. "ref/netcore50/es/System.ObjectModel.xml",
  6725. "ref/netcore50/fr/System.ObjectModel.xml",
  6726. "ref/netcore50/it/System.ObjectModel.xml",
  6727. "ref/netcore50/ja/System.ObjectModel.xml",
  6728. "ref/netcore50/ko/System.ObjectModel.xml",
  6729. "ref/netcore50/ru/System.ObjectModel.xml",
  6730. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6731. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6732. "ref/netstandard1.0/System.ObjectModel.dll",
  6733. "ref/netstandard1.0/System.ObjectModel.xml",
  6734. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6735. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6736. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6737. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6738. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6739. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6740. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6741. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6742. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6743. "ref/netstandard1.3/System.ObjectModel.dll",
  6744. "ref/netstandard1.3/System.ObjectModel.xml",
  6745. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6746. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6747. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6748. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6749. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6750. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6751. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6752. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6753. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6754. "ref/portable-net45+win8+wp8+wpa81/_._",
  6755. "ref/win8/_._",
  6756. "ref/wp80/_._",
  6757. "ref/wpa81/_._",
  6758. "ref/xamarinios10/_._",
  6759. "ref/xamarinmac20/_._",
  6760. "ref/xamarintvos10/_._",
  6761. "ref/xamarinwatchos10/_._",
  6762. "system.objectmodel.4.3.0.nupkg.sha512",
  6763. "system.objectmodel.nuspec"
  6764. ]
  6765. },
  6766. "System.Reactive/4.4.1": {
  6767. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  6768. "type": "package",
  6769. "path": "system.reactive/4.4.1",
  6770. "files": [
  6771. ".nupkg.metadata",
  6772. ".signature.p7s",
  6773. "build/netcoreapp3.0/System.Reactive.dll",
  6774. "build/netcoreapp3.0/System.Reactive.targets",
  6775. "build/netcoreapp3.0/System.Reactive.xml",
  6776. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  6777. "lib/net46/System.Reactive.dll",
  6778. "lib/net46/System.Reactive.xml",
  6779. "lib/netcoreapp3.0/_._",
  6780. "lib/netstandard2.0/System.Reactive.dll",
  6781. "lib/netstandard2.0/System.Reactive.xml",
  6782. "lib/uap10.0.16299/System.Reactive.dll",
  6783. "lib/uap10.0.16299/System.Reactive.pri",
  6784. "lib/uap10.0.16299/System.Reactive.xml",
  6785. "lib/uap10.0/System.Reactive.dll",
  6786. "lib/uap10.0/System.Reactive.pri",
  6787. "lib/uap10.0/System.Reactive.xml",
  6788. "system.reactive.4.4.1.nupkg.sha512",
  6789. "system.reactive.nuspec"
  6790. ]
  6791. },
  6792. "System.Reflection/4.3.0": {
  6793. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6794. "type": "package",
  6795. "path": "system.reflection/4.3.0",
  6796. "files": [
  6797. ".nupkg.metadata",
  6798. ".signature.p7s",
  6799. "ThirdPartyNotices.txt",
  6800. "dotnet_library_license.txt",
  6801. "lib/MonoAndroid10/_._",
  6802. "lib/MonoTouch10/_._",
  6803. "lib/net45/_._",
  6804. "lib/net462/System.Reflection.dll",
  6805. "lib/portable-net45+win8+wp8+wpa81/_._",
  6806. "lib/win8/_._",
  6807. "lib/wp80/_._",
  6808. "lib/wpa81/_._",
  6809. "lib/xamarinios10/_._",
  6810. "lib/xamarinmac20/_._",
  6811. "lib/xamarintvos10/_._",
  6812. "lib/xamarinwatchos10/_._",
  6813. "ref/MonoAndroid10/_._",
  6814. "ref/MonoTouch10/_._",
  6815. "ref/net45/_._",
  6816. "ref/net462/System.Reflection.dll",
  6817. "ref/netcore50/System.Reflection.dll",
  6818. "ref/netcore50/System.Reflection.xml",
  6819. "ref/netcore50/de/System.Reflection.xml",
  6820. "ref/netcore50/es/System.Reflection.xml",
  6821. "ref/netcore50/fr/System.Reflection.xml",
  6822. "ref/netcore50/it/System.Reflection.xml",
  6823. "ref/netcore50/ja/System.Reflection.xml",
  6824. "ref/netcore50/ko/System.Reflection.xml",
  6825. "ref/netcore50/ru/System.Reflection.xml",
  6826. "ref/netcore50/zh-hans/System.Reflection.xml",
  6827. "ref/netcore50/zh-hant/System.Reflection.xml",
  6828. "ref/netstandard1.0/System.Reflection.dll",
  6829. "ref/netstandard1.0/System.Reflection.xml",
  6830. "ref/netstandard1.0/de/System.Reflection.xml",
  6831. "ref/netstandard1.0/es/System.Reflection.xml",
  6832. "ref/netstandard1.0/fr/System.Reflection.xml",
  6833. "ref/netstandard1.0/it/System.Reflection.xml",
  6834. "ref/netstandard1.0/ja/System.Reflection.xml",
  6835. "ref/netstandard1.0/ko/System.Reflection.xml",
  6836. "ref/netstandard1.0/ru/System.Reflection.xml",
  6837. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6838. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6839. "ref/netstandard1.3/System.Reflection.dll",
  6840. "ref/netstandard1.3/System.Reflection.xml",
  6841. "ref/netstandard1.3/de/System.Reflection.xml",
  6842. "ref/netstandard1.3/es/System.Reflection.xml",
  6843. "ref/netstandard1.3/fr/System.Reflection.xml",
  6844. "ref/netstandard1.3/it/System.Reflection.xml",
  6845. "ref/netstandard1.3/ja/System.Reflection.xml",
  6846. "ref/netstandard1.3/ko/System.Reflection.xml",
  6847. "ref/netstandard1.3/ru/System.Reflection.xml",
  6848. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6849. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6850. "ref/netstandard1.5/System.Reflection.dll",
  6851. "ref/netstandard1.5/System.Reflection.xml",
  6852. "ref/netstandard1.5/de/System.Reflection.xml",
  6853. "ref/netstandard1.5/es/System.Reflection.xml",
  6854. "ref/netstandard1.5/fr/System.Reflection.xml",
  6855. "ref/netstandard1.5/it/System.Reflection.xml",
  6856. "ref/netstandard1.5/ja/System.Reflection.xml",
  6857. "ref/netstandard1.5/ko/System.Reflection.xml",
  6858. "ref/netstandard1.5/ru/System.Reflection.xml",
  6859. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6860. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6861. "ref/portable-net45+win8+wp8+wpa81/_._",
  6862. "ref/win8/_._",
  6863. "ref/wp80/_._",
  6864. "ref/wpa81/_._",
  6865. "ref/xamarinios10/_._",
  6866. "ref/xamarinmac20/_._",
  6867. "ref/xamarintvos10/_._",
  6868. "ref/xamarinwatchos10/_._",
  6869. "system.reflection.4.3.0.nupkg.sha512",
  6870. "system.reflection.nuspec"
  6871. ]
  6872. },
  6873. "System.Reflection.Emit/4.3.0": {
  6874. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6875. "type": "package",
  6876. "path": "system.reflection.emit/4.3.0",
  6877. "files": [
  6878. ".nupkg.metadata",
  6879. ".signature.p7s",
  6880. "ThirdPartyNotices.txt",
  6881. "dotnet_library_license.txt",
  6882. "lib/MonoAndroid10/_._",
  6883. "lib/monotouch10/_._",
  6884. "lib/net45/_._",
  6885. "lib/netcore50/System.Reflection.Emit.dll",
  6886. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6887. "lib/xamarinios10/_._",
  6888. "lib/xamarinmac20/_._",
  6889. "lib/xamarintvos10/_._",
  6890. "lib/xamarinwatchos10/_._",
  6891. "ref/MonoAndroid10/_._",
  6892. "ref/net45/_._",
  6893. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6894. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6895. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6896. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6897. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6898. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6899. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6900. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6901. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6902. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6903. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6904. "ref/xamarinmac20/_._",
  6905. "system.reflection.emit.4.3.0.nupkg.sha512",
  6906. "system.reflection.emit.nuspec"
  6907. ]
  6908. },
  6909. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6910. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6911. "type": "package",
  6912. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6913. "files": [
  6914. ".nupkg.metadata",
  6915. ".signature.p7s",
  6916. "ThirdPartyNotices.txt",
  6917. "dotnet_library_license.txt",
  6918. "lib/MonoAndroid10/_._",
  6919. "lib/MonoTouch10/_._",
  6920. "lib/net45/_._",
  6921. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6922. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6923. "lib/portable-net45+wp8/_._",
  6924. "lib/wp80/_._",
  6925. "lib/xamarinios10/_._",
  6926. "lib/xamarinmac20/_._",
  6927. "lib/xamarintvos10/_._",
  6928. "lib/xamarinwatchos10/_._",
  6929. "ref/MonoAndroid10/_._",
  6930. "ref/MonoTouch10/_._",
  6931. "ref/net45/_._",
  6932. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6933. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6934. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6935. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6936. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6937. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6938. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6939. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6940. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6941. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6942. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6943. "ref/portable-net45+wp8/_._",
  6944. "ref/wp80/_._",
  6945. "ref/xamarinios10/_._",
  6946. "ref/xamarinmac20/_._",
  6947. "ref/xamarintvos10/_._",
  6948. "ref/xamarinwatchos10/_._",
  6949. "runtimes/aot/lib/netcore50/_._",
  6950. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6951. "system.reflection.emit.ilgeneration.nuspec"
  6952. ]
  6953. },
  6954. "System.Reflection.Emit.Lightweight/4.3.0": {
  6955. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6956. "type": "package",
  6957. "path": "system.reflection.emit.lightweight/4.3.0",
  6958. "files": [
  6959. ".nupkg.metadata",
  6960. ".signature.p7s",
  6961. "ThirdPartyNotices.txt",
  6962. "dotnet_library_license.txt",
  6963. "lib/MonoAndroid10/_._",
  6964. "lib/MonoTouch10/_._",
  6965. "lib/net45/_._",
  6966. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6967. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6968. "lib/portable-net45+wp8/_._",
  6969. "lib/wp80/_._",
  6970. "lib/xamarinios10/_._",
  6971. "lib/xamarinmac20/_._",
  6972. "lib/xamarintvos10/_._",
  6973. "lib/xamarinwatchos10/_._",
  6974. "ref/MonoAndroid10/_._",
  6975. "ref/MonoTouch10/_._",
  6976. "ref/net45/_._",
  6977. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6978. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6979. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6980. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6981. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6982. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6983. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6984. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6985. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6986. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6987. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6988. "ref/portable-net45+wp8/_._",
  6989. "ref/wp80/_._",
  6990. "ref/xamarinios10/_._",
  6991. "ref/xamarinmac20/_._",
  6992. "ref/xamarintvos10/_._",
  6993. "ref/xamarinwatchos10/_._",
  6994. "runtimes/aot/lib/netcore50/_._",
  6995. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6996. "system.reflection.emit.lightweight.nuspec"
  6997. ]
  6998. },
  6999. "System.Reflection.Extensions/4.3.0": {
  7000. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7001. "type": "package",
  7002. "path": "system.reflection.extensions/4.3.0",
  7003. "files": [
  7004. ".nupkg.metadata",
  7005. ".signature.p7s",
  7006. "ThirdPartyNotices.txt",
  7007. "dotnet_library_license.txt",
  7008. "lib/MonoAndroid10/_._",
  7009. "lib/MonoTouch10/_._",
  7010. "lib/net45/_._",
  7011. "lib/portable-net45+win8+wp8+wpa81/_._",
  7012. "lib/win8/_._",
  7013. "lib/wp80/_._",
  7014. "lib/wpa81/_._",
  7015. "lib/xamarinios10/_._",
  7016. "lib/xamarinmac20/_._",
  7017. "lib/xamarintvos10/_._",
  7018. "lib/xamarinwatchos10/_._",
  7019. "ref/MonoAndroid10/_._",
  7020. "ref/MonoTouch10/_._",
  7021. "ref/net45/_._",
  7022. "ref/netcore50/System.Reflection.Extensions.dll",
  7023. "ref/netcore50/System.Reflection.Extensions.xml",
  7024. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7025. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7026. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7027. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7028. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7029. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7030. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7031. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7032. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7033. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7034. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7035. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7036. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7037. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7038. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7039. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7040. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7041. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7042. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7043. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7044. "ref/portable-net45+win8+wp8+wpa81/_._",
  7045. "ref/win8/_._",
  7046. "ref/wp80/_._",
  7047. "ref/wpa81/_._",
  7048. "ref/xamarinios10/_._",
  7049. "ref/xamarinmac20/_._",
  7050. "ref/xamarintvos10/_._",
  7051. "ref/xamarinwatchos10/_._",
  7052. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7053. "system.reflection.extensions.nuspec"
  7054. ]
  7055. },
  7056. "System.Reflection.Primitives/4.3.0": {
  7057. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7058. "type": "package",
  7059. "path": "system.reflection.primitives/4.3.0",
  7060. "files": [
  7061. ".nupkg.metadata",
  7062. ".signature.p7s",
  7063. "ThirdPartyNotices.txt",
  7064. "dotnet_library_license.txt",
  7065. "lib/MonoAndroid10/_._",
  7066. "lib/MonoTouch10/_._",
  7067. "lib/net45/_._",
  7068. "lib/portable-net45+win8+wp8+wpa81/_._",
  7069. "lib/win8/_._",
  7070. "lib/wp80/_._",
  7071. "lib/wpa81/_._",
  7072. "lib/xamarinios10/_._",
  7073. "lib/xamarinmac20/_._",
  7074. "lib/xamarintvos10/_._",
  7075. "lib/xamarinwatchos10/_._",
  7076. "ref/MonoAndroid10/_._",
  7077. "ref/MonoTouch10/_._",
  7078. "ref/net45/_._",
  7079. "ref/netcore50/System.Reflection.Primitives.dll",
  7080. "ref/netcore50/System.Reflection.Primitives.xml",
  7081. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7082. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7083. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7084. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7085. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7086. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7087. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7088. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7089. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7090. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7091. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7092. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7093. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7094. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7095. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7096. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7097. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7098. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7099. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7100. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7101. "ref/portable-net45+win8+wp8+wpa81/_._",
  7102. "ref/win8/_._",
  7103. "ref/wp80/_._",
  7104. "ref/wpa81/_._",
  7105. "ref/xamarinios10/_._",
  7106. "ref/xamarinmac20/_._",
  7107. "ref/xamarintvos10/_._",
  7108. "ref/xamarinwatchos10/_._",
  7109. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7110. "system.reflection.primitives.nuspec"
  7111. ]
  7112. },
  7113. "System.Reflection.TypeExtensions/4.3.0": {
  7114. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7115. "type": "package",
  7116. "path": "system.reflection.typeextensions/4.3.0",
  7117. "files": [
  7118. ".nupkg.metadata",
  7119. ".signature.p7s",
  7120. "ThirdPartyNotices.txt",
  7121. "dotnet_library_license.txt",
  7122. "lib/MonoAndroid10/_._",
  7123. "lib/MonoTouch10/_._",
  7124. "lib/net46/System.Reflection.TypeExtensions.dll",
  7125. "lib/net462/System.Reflection.TypeExtensions.dll",
  7126. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7127. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7128. "lib/xamarinios10/_._",
  7129. "lib/xamarinmac20/_._",
  7130. "lib/xamarintvos10/_._",
  7131. "lib/xamarinwatchos10/_._",
  7132. "ref/MonoAndroid10/_._",
  7133. "ref/MonoTouch10/_._",
  7134. "ref/net46/System.Reflection.TypeExtensions.dll",
  7135. "ref/net462/System.Reflection.TypeExtensions.dll",
  7136. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7137. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7138. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7139. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7140. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7141. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7142. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7143. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7144. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7145. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7146. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7147. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7148. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7149. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7150. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7151. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7152. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7153. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7154. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7155. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7156. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7157. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7158. "ref/xamarinios10/_._",
  7159. "ref/xamarinmac20/_._",
  7160. "ref/xamarintvos10/_._",
  7161. "ref/xamarinwatchos10/_._",
  7162. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7163. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7164. "system.reflection.typeextensions.nuspec"
  7165. ]
  7166. },
  7167. "System.Resources.ResourceManager/4.3.0": {
  7168. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7169. "type": "package",
  7170. "path": "system.resources.resourcemanager/4.3.0",
  7171. "files": [
  7172. ".nupkg.metadata",
  7173. ".signature.p7s",
  7174. "ThirdPartyNotices.txt",
  7175. "dotnet_library_license.txt",
  7176. "lib/MonoAndroid10/_._",
  7177. "lib/MonoTouch10/_._",
  7178. "lib/net45/_._",
  7179. "lib/portable-net45+win8+wp8+wpa81/_._",
  7180. "lib/win8/_._",
  7181. "lib/wp80/_._",
  7182. "lib/wpa81/_._",
  7183. "lib/xamarinios10/_._",
  7184. "lib/xamarinmac20/_._",
  7185. "lib/xamarintvos10/_._",
  7186. "lib/xamarinwatchos10/_._",
  7187. "ref/MonoAndroid10/_._",
  7188. "ref/MonoTouch10/_._",
  7189. "ref/net45/_._",
  7190. "ref/netcore50/System.Resources.ResourceManager.dll",
  7191. "ref/netcore50/System.Resources.ResourceManager.xml",
  7192. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7193. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7194. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7195. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7196. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7197. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7198. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7199. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7200. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7201. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7202. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7203. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7204. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7205. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7206. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7207. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7208. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7209. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7210. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7211. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7212. "ref/portable-net45+win8+wp8+wpa81/_._",
  7213. "ref/win8/_._",
  7214. "ref/wp80/_._",
  7215. "ref/wpa81/_._",
  7216. "ref/xamarinios10/_._",
  7217. "ref/xamarinmac20/_._",
  7218. "ref/xamarintvos10/_._",
  7219. "ref/xamarinwatchos10/_._",
  7220. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7221. "system.resources.resourcemanager.nuspec"
  7222. ]
  7223. },
  7224. "System.Runtime/4.3.0": {
  7225. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7226. "type": "package",
  7227. "path": "system.runtime/4.3.0",
  7228. "files": [
  7229. ".nupkg.metadata",
  7230. ".signature.p7s",
  7231. "ThirdPartyNotices.txt",
  7232. "dotnet_library_license.txt",
  7233. "lib/MonoAndroid10/_._",
  7234. "lib/MonoTouch10/_._",
  7235. "lib/net45/_._",
  7236. "lib/net462/System.Runtime.dll",
  7237. "lib/portable-net45+win8+wp80+wpa81/_._",
  7238. "lib/win8/_._",
  7239. "lib/wp80/_._",
  7240. "lib/wpa81/_._",
  7241. "lib/xamarinios10/_._",
  7242. "lib/xamarinmac20/_._",
  7243. "lib/xamarintvos10/_._",
  7244. "lib/xamarinwatchos10/_._",
  7245. "ref/MonoAndroid10/_._",
  7246. "ref/MonoTouch10/_._",
  7247. "ref/net45/_._",
  7248. "ref/net462/System.Runtime.dll",
  7249. "ref/netcore50/System.Runtime.dll",
  7250. "ref/netcore50/System.Runtime.xml",
  7251. "ref/netcore50/de/System.Runtime.xml",
  7252. "ref/netcore50/es/System.Runtime.xml",
  7253. "ref/netcore50/fr/System.Runtime.xml",
  7254. "ref/netcore50/it/System.Runtime.xml",
  7255. "ref/netcore50/ja/System.Runtime.xml",
  7256. "ref/netcore50/ko/System.Runtime.xml",
  7257. "ref/netcore50/ru/System.Runtime.xml",
  7258. "ref/netcore50/zh-hans/System.Runtime.xml",
  7259. "ref/netcore50/zh-hant/System.Runtime.xml",
  7260. "ref/netstandard1.0/System.Runtime.dll",
  7261. "ref/netstandard1.0/System.Runtime.xml",
  7262. "ref/netstandard1.0/de/System.Runtime.xml",
  7263. "ref/netstandard1.0/es/System.Runtime.xml",
  7264. "ref/netstandard1.0/fr/System.Runtime.xml",
  7265. "ref/netstandard1.0/it/System.Runtime.xml",
  7266. "ref/netstandard1.0/ja/System.Runtime.xml",
  7267. "ref/netstandard1.0/ko/System.Runtime.xml",
  7268. "ref/netstandard1.0/ru/System.Runtime.xml",
  7269. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7270. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7271. "ref/netstandard1.2/System.Runtime.dll",
  7272. "ref/netstandard1.2/System.Runtime.xml",
  7273. "ref/netstandard1.2/de/System.Runtime.xml",
  7274. "ref/netstandard1.2/es/System.Runtime.xml",
  7275. "ref/netstandard1.2/fr/System.Runtime.xml",
  7276. "ref/netstandard1.2/it/System.Runtime.xml",
  7277. "ref/netstandard1.2/ja/System.Runtime.xml",
  7278. "ref/netstandard1.2/ko/System.Runtime.xml",
  7279. "ref/netstandard1.2/ru/System.Runtime.xml",
  7280. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7281. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7282. "ref/netstandard1.3/System.Runtime.dll",
  7283. "ref/netstandard1.3/System.Runtime.xml",
  7284. "ref/netstandard1.3/de/System.Runtime.xml",
  7285. "ref/netstandard1.3/es/System.Runtime.xml",
  7286. "ref/netstandard1.3/fr/System.Runtime.xml",
  7287. "ref/netstandard1.3/it/System.Runtime.xml",
  7288. "ref/netstandard1.3/ja/System.Runtime.xml",
  7289. "ref/netstandard1.3/ko/System.Runtime.xml",
  7290. "ref/netstandard1.3/ru/System.Runtime.xml",
  7291. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7292. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7293. "ref/netstandard1.5/System.Runtime.dll",
  7294. "ref/netstandard1.5/System.Runtime.xml",
  7295. "ref/netstandard1.5/de/System.Runtime.xml",
  7296. "ref/netstandard1.5/es/System.Runtime.xml",
  7297. "ref/netstandard1.5/fr/System.Runtime.xml",
  7298. "ref/netstandard1.5/it/System.Runtime.xml",
  7299. "ref/netstandard1.5/ja/System.Runtime.xml",
  7300. "ref/netstandard1.5/ko/System.Runtime.xml",
  7301. "ref/netstandard1.5/ru/System.Runtime.xml",
  7302. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7303. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7304. "ref/portable-net45+win8+wp80+wpa81/_._",
  7305. "ref/win8/_._",
  7306. "ref/wp80/_._",
  7307. "ref/wpa81/_._",
  7308. "ref/xamarinios10/_._",
  7309. "ref/xamarinmac20/_._",
  7310. "ref/xamarintvos10/_._",
  7311. "ref/xamarinwatchos10/_._",
  7312. "system.runtime.4.3.0.nupkg.sha512",
  7313. "system.runtime.nuspec"
  7314. ]
  7315. },
  7316. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7317. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7318. "type": "package",
  7319. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7320. "files": [
  7321. ".nupkg.metadata",
  7322. ".signature.p7s",
  7323. "Icon.png",
  7324. "LICENSE.TXT",
  7325. "THIRD-PARTY-NOTICES.TXT",
  7326. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7327. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7328. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7329. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7330. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7331. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7332. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7333. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7334. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7335. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7336. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7337. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7338. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7339. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7340. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7341. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7342. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7343. "system.runtime.compilerservices.unsafe.nuspec",
  7344. "useSharedDesignerContext.txt",
  7345. "version.txt"
  7346. ]
  7347. },
  7348. "System.Runtime.Extensions/4.3.0": {
  7349. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7350. "type": "package",
  7351. "path": "system.runtime.extensions/4.3.0",
  7352. "files": [
  7353. ".nupkg.metadata",
  7354. ".signature.p7s",
  7355. "ThirdPartyNotices.txt",
  7356. "dotnet_library_license.txt",
  7357. "lib/MonoAndroid10/_._",
  7358. "lib/MonoTouch10/_._",
  7359. "lib/net45/_._",
  7360. "lib/net462/System.Runtime.Extensions.dll",
  7361. "lib/portable-net45+win8+wp8+wpa81/_._",
  7362. "lib/win8/_._",
  7363. "lib/wp80/_._",
  7364. "lib/wpa81/_._",
  7365. "lib/xamarinios10/_._",
  7366. "lib/xamarinmac20/_._",
  7367. "lib/xamarintvos10/_._",
  7368. "lib/xamarinwatchos10/_._",
  7369. "ref/MonoAndroid10/_._",
  7370. "ref/MonoTouch10/_._",
  7371. "ref/net45/_._",
  7372. "ref/net462/System.Runtime.Extensions.dll",
  7373. "ref/netcore50/System.Runtime.Extensions.dll",
  7374. "ref/netcore50/System.Runtime.Extensions.xml",
  7375. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7376. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7377. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7378. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7379. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7380. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7381. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7382. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7383. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7384. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7385. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7386. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7387. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7388. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7389. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7390. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7391. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7392. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7393. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7394. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7395. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7396. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7397. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7398. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7399. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7400. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7401. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7402. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7403. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7404. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7405. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7406. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7407. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7408. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7409. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7410. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7411. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7412. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7413. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7414. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7415. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7416. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7417. "ref/portable-net45+win8+wp8+wpa81/_._",
  7418. "ref/win8/_._",
  7419. "ref/wp80/_._",
  7420. "ref/wpa81/_._",
  7421. "ref/xamarinios10/_._",
  7422. "ref/xamarinmac20/_._",
  7423. "ref/xamarintvos10/_._",
  7424. "ref/xamarinwatchos10/_._",
  7425. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7426. "system.runtime.extensions.nuspec"
  7427. ]
  7428. },
  7429. "System.Runtime.Handles/4.3.0": {
  7430. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7431. "type": "package",
  7432. "path": "system.runtime.handles/4.3.0",
  7433. "files": [
  7434. ".nupkg.metadata",
  7435. ".signature.p7s",
  7436. "ThirdPartyNotices.txt",
  7437. "dotnet_library_license.txt",
  7438. "lib/MonoAndroid10/_._",
  7439. "lib/MonoTouch10/_._",
  7440. "lib/net46/_._",
  7441. "lib/xamarinios10/_._",
  7442. "lib/xamarinmac20/_._",
  7443. "lib/xamarintvos10/_._",
  7444. "lib/xamarinwatchos10/_._",
  7445. "ref/MonoAndroid10/_._",
  7446. "ref/MonoTouch10/_._",
  7447. "ref/net46/_._",
  7448. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7449. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7450. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7451. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7452. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7453. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7454. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7455. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7456. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7457. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7458. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7459. "ref/xamarinios10/_._",
  7460. "ref/xamarinmac20/_._",
  7461. "ref/xamarintvos10/_._",
  7462. "ref/xamarinwatchos10/_._",
  7463. "system.runtime.handles.4.3.0.nupkg.sha512",
  7464. "system.runtime.handles.nuspec"
  7465. ]
  7466. },
  7467. "System.Runtime.InteropServices/4.3.0": {
  7468. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7469. "type": "package",
  7470. "path": "system.runtime.interopservices/4.3.0",
  7471. "files": [
  7472. ".nupkg.metadata",
  7473. ".signature.p7s",
  7474. "ThirdPartyNotices.txt",
  7475. "dotnet_library_license.txt",
  7476. "lib/MonoAndroid10/_._",
  7477. "lib/MonoTouch10/_._",
  7478. "lib/net45/_._",
  7479. "lib/net462/System.Runtime.InteropServices.dll",
  7480. "lib/net463/System.Runtime.InteropServices.dll",
  7481. "lib/portable-net45+win8+wpa81/_._",
  7482. "lib/win8/_._",
  7483. "lib/wpa81/_._",
  7484. "lib/xamarinios10/_._",
  7485. "lib/xamarinmac20/_._",
  7486. "lib/xamarintvos10/_._",
  7487. "lib/xamarinwatchos10/_._",
  7488. "ref/MonoAndroid10/_._",
  7489. "ref/MonoTouch10/_._",
  7490. "ref/net45/_._",
  7491. "ref/net462/System.Runtime.InteropServices.dll",
  7492. "ref/net463/System.Runtime.InteropServices.dll",
  7493. "ref/netcore50/System.Runtime.InteropServices.dll",
  7494. "ref/netcore50/System.Runtime.InteropServices.xml",
  7495. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7496. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7497. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7498. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7499. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7500. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7501. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7502. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7503. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7504. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7505. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7506. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7507. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7508. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7509. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7510. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7511. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7512. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7513. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7514. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7515. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7516. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7517. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7518. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7519. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7520. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7521. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7522. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7523. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7524. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7525. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7526. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7527. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7528. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7529. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7530. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7531. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7532. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7533. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7534. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7535. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7536. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7537. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7538. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7539. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7540. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7541. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7542. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7543. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7544. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7545. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7546. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7547. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7548. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7549. "ref/portable-net45+win8+wpa81/_._",
  7550. "ref/win8/_._",
  7551. "ref/wpa81/_._",
  7552. "ref/xamarinios10/_._",
  7553. "ref/xamarinmac20/_._",
  7554. "ref/xamarintvos10/_._",
  7555. "ref/xamarinwatchos10/_._",
  7556. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7557. "system.runtime.interopservices.nuspec"
  7558. ]
  7559. },
  7560. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7561. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7562. "type": "package",
  7563. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7564. "files": [
  7565. ".nupkg.metadata",
  7566. ".signature.p7s",
  7567. "ThirdPartyNotices.txt",
  7568. "dotnet_library_license.txt",
  7569. "lib/MonoAndroid10/_._",
  7570. "lib/MonoTouch10/_._",
  7571. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7572. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7573. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7574. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7575. "lib/xamarinios10/_._",
  7576. "lib/xamarinmac20/_._",
  7577. "lib/xamarintvos10/_._",
  7578. "lib/xamarinwatchos10/_._",
  7579. "ref/MonoAndroid10/_._",
  7580. "ref/MonoTouch10/_._",
  7581. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7582. "ref/xamarinios10/_._",
  7583. "ref/xamarinmac20/_._",
  7584. "ref/xamarintvos10/_._",
  7585. "ref/xamarinwatchos10/_._",
  7586. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7587. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7588. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7589. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7590. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7591. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7592. "system.runtime.interopservices.runtimeinformation.nuspec"
  7593. ]
  7594. },
  7595. "System.Runtime.Numerics/4.3.0": {
  7596. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7597. "type": "package",
  7598. "path": "system.runtime.numerics/4.3.0",
  7599. "files": [
  7600. ".nupkg.metadata",
  7601. ".signature.p7s",
  7602. "ThirdPartyNotices.txt",
  7603. "dotnet_library_license.txt",
  7604. "lib/MonoAndroid10/_._",
  7605. "lib/MonoTouch10/_._",
  7606. "lib/net45/_._",
  7607. "lib/netcore50/System.Runtime.Numerics.dll",
  7608. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7609. "lib/portable-net45+win8+wpa81/_._",
  7610. "lib/win8/_._",
  7611. "lib/wpa81/_._",
  7612. "lib/xamarinios10/_._",
  7613. "lib/xamarinmac20/_._",
  7614. "lib/xamarintvos10/_._",
  7615. "lib/xamarinwatchos10/_._",
  7616. "ref/MonoAndroid10/_._",
  7617. "ref/MonoTouch10/_._",
  7618. "ref/net45/_._",
  7619. "ref/netcore50/System.Runtime.Numerics.dll",
  7620. "ref/netcore50/System.Runtime.Numerics.xml",
  7621. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7622. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7623. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7624. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7625. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7626. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7627. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7628. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7629. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7630. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7631. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7632. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7633. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7634. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7635. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7636. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7637. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7638. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7639. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7640. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7641. "ref/portable-net45+win8+wpa81/_._",
  7642. "ref/win8/_._",
  7643. "ref/wpa81/_._",
  7644. "ref/xamarinios10/_._",
  7645. "ref/xamarinmac20/_._",
  7646. "ref/xamarintvos10/_._",
  7647. "ref/xamarinwatchos10/_._",
  7648. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7649. "system.runtime.numerics.nuspec"
  7650. ]
  7651. },
  7652. "System.Runtime.Serialization.Primitives/4.3.0": {
  7653. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7654. "type": "package",
  7655. "path": "system.runtime.serialization.primitives/4.3.0",
  7656. "files": [
  7657. ".nupkg.metadata",
  7658. ".signature.p7s",
  7659. "ThirdPartyNotices.txt",
  7660. "dotnet_library_license.txt",
  7661. "lib/MonoAndroid10/_._",
  7662. "lib/MonoTouch10/_._",
  7663. "lib/net45/_._",
  7664. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7665. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7666. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7667. "lib/portable-net45+win8+wp8+wpa81/_._",
  7668. "lib/win8/_._",
  7669. "lib/wp80/_._",
  7670. "lib/wpa81/_._",
  7671. "lib/xamarinios10/_._",
  7672. "lib/xamarinmac20/_._",
  7673. "lib/xamarintvos10/_._",
  7674. "lib/xamarinwatchos10/_._",
  7675. "ref/MonoAndroid10/_._",
  7676. "ref/MonoTouch10/_._",
  7677. "ref/net45/_._",
  7678. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7679. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7680. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7681. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7682. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7683. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7684. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7685. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7686. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7687. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7688. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7689. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7690. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7691. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7692. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7693. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7694. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7695. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7696. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7697. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7698. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7699. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7700. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7701. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7702. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7703. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7704. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7705. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7706. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7707. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7708. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7709. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7710. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7711. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7712. "ref/portable-net45+win8+wp8+wpa81/_._",
  7713. "ref/win8/_._",
  7714. "ref/wp80/_._",
  7715. "ref/wpa81/_._",
  7716. "ref/xamarinios10/_._",
  7717. "ref/xamarinmac20/_._",
  7718. "ref/xamarintvos10/_._",
  7719. "ref/xamarinwatchos10/_._",
  7720. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7721. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7722. "system.runtime.serialization.primitives.nuspec"
  7723. ]
  7724. },
  7725. "System.Security.AccessControl/4.7.0": {
  7726. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7727. "type": "package",
  7728. "path": "system.security.accesscontrol/4.7.0",
  7729. "files": [
  7730. ".nupkg.metadata",
  7731. ".signature.p7s",
  7732. "LICENSE.TXT",
  7733. "THIRD-PARTY-NOTICES.TXT",
  7734. "lib/net46/System.Security.AccessControl.dll",
  7735. "lib/net461/System.Security.AccessControl.dll",
  7736. "lib/net461/System.Security.AccessControl.xml",
  7737. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7738. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7739. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7740. "lib/uap10.0.16299/_._",
  7741. "ref/net46/System.Security.AccessControl.dll",
  7742. "ref/net461/System.Security.AccessControl.dll",
  7743. "ref/net461/System.Security.AccessControl.xml",
  7744. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7745. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7746. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7747. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7748. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7749. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7750. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7751. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7752. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7753. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7754. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7755. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7756. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7757. "ref/uap10.0.16299/_._",
  7758. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7759. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7760. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7761. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7762. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7763. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7764. "runtimes/win/lib/uap10.0.16299/_._",
  7765. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7766. "system.security.accesscontrol.nuspec",
  7767. "useSharedDesignerContext.txt",
  7768. "version.txt"
  7769. ]
  7770. },
  7771. "System.Security.Claims/4.3.0": {
  7772. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7773. "type": "package",
  7774. "path": "system.security.claims/4.3.0",
  7775. "files": [
  7776. ".nupkg.metadata",
  7777. ".signature.p7s",
  7778. "ThirdPartyNotices.txt",
  7779. "dotnet_library_license.txt",
  7780. "lib/MonoAndroid10/_._",
  7781. "lib/MonoTouch10/_._",
  7782. "lib/net46/System.Security.Claims.dll",
  7783. "lib/netstandard1.3/System.Security.Claims.dll",
  7784. "lib/xamarinios10/_._",
  7785. "lib/xamarinmac20/_._",
  7786. "lib/xamarintvos10/_._",
  7787. "lib/xamarinwatchos10/_._",
  7788. "ref/MonoAndroid10/_._",
  7789. "ref/MonoTouch10/_._",
  7790. "ref/net46/System.Security.Claims.dll",
  7791. "ref/netstandard1.3/System.Security.Claims.dll",
  7792. "ref/netstandard1.3/System.Security.Claims.xml",
  7793. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7794. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7795. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7796. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7797. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7798. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7799. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7800. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7801. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7802. "ref/xamarinios10/_._",
  7803. "ref/xamarinmac20/_._",
  7804. "ref/xamarintvos10/_._",
  7805. "ref/xamarinwatchos10/_._",
  7806. "system.security.claims.4.3.0.nupkg.sha512",
  7807. "system.security.claims.nuspec"
  7808. ]
  7809. },
  7810. "System.Security.Cryptography.Algorithms/4.3.0": {
  7811. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7812. "type": "package",
  7813. "path": "system.security.cryptography.algorithms/4.3.0",
  7814. "files": [
  7815. ".nupkg.metadata",
  7816. ".signature.p7s",
  7817. "ThirdPartyNotices.txt",
  7818. "dotnet_library_license.txt",
  7819. "lib/MonoAndroid10/_._",
  7820. "lib/MonoTouch10/_._",
  7821. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7822. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7823. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7824. "lib/xamarinios10/_._",
  7825. "lib/xamarinmac20/_._",
  7826. "lib/xamarintvos10/_._",
  7827. "lib/xamarinwatchos10/_._",
  7828. "ref/MonoAndroid10/_._",
  7829. "ref/MonoTouch10/_._",
  7830. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7831. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7832. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7833. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7834. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7835. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7836. "ref/xamarinios10/_._",
  7837. "ref/xamarinmac20/_._",
  7838. "ref/xamarintvos10/_._",
  7839. "ref/xamarinwatchos10/_._",
  7840. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7841. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7842. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7843. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7844. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7845. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7846. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7847. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7848. "system.security.cryptography.algorithms.nuspec"
  7849. ]
  7850. },
  7851. "System.Security.Cryptography.Cng/4.3.0": {
  7852. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7853. "type": "package",
  7854. "path": "system.security.cryptography.cng/4.3.0",
  7855. "files": [
  7856. ".nupkg.metadata",
  7857. ".signature.p7s",
  7858. "ThirdPartyNotices.txt",
  7859. "dotnet_library_license.txt",
  7860. "lib/net46/System.Security.Cryptography.Cng.dll",
  7861. "lib/net461/System.Security.Cryptography.Cng.dll",
  7862. "lib/net463/System.Security.Cryptography.Cng.dll",
  7863. "ref/net46/System.Security.Cryptography.Cng.dll",
  7864. "ref/net461/System.Security.Cryptography.Cng.dll",
  7865. "ref/net463/System.Security.Cryptography.Cng.dll",
  7866. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7867. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7868. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7869. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7870. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7871. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7872. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  7873. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7874. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7875. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  7876. "system.security.cryptography.cng.nuspec"
  7877. ]
  7878. },
  7879. "System.Security.Cryptography.Csp/4.3.0": {
  7880. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7881. "type": "package",
  7882. "path": "system.security.cryptography.csp/4.3.0",
  7883. "files": [
  7884. ".nupkg.metadata",
  7885. ".signature.p7s",
  7886. "ThirdPartyNotices.txt",
  7887. "dotnet_library_license.txt",
  7888. "lib/MonoAndroid10/_._",
  7889. "lib/MonoTouch10/_._",
  7890. "lib/net46/System.Security.Cryptography.Csp.dll",
  7891. "lib/xamarinios10/_._",
  7892. "lib/xamarinmac20/_._",
  7893. "lib/xamarintvos10/_._",
  7894. "lib/xamarinwatchos10/_._",
  7895. "ref/MonoAndroid10/_._",
  7896. "ref/MonoTouch10/_._",
  7897. "ref/net46/System.Security.Cryptography.Csp.dll",
  7898. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7899. "ref/xamarinios10/_._",
  7900. "ref/xamarinmac20/_._",
  7901. "ref/xamarintvos10/_._",
  7902. "ref/xamarinwatchos10/_._",
  7903. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7904. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7905. "runtimes/win/lib/netcore50/_._",
  7906. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7907. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7908. "system.security.cryptography.csp.nuspec"
  7909. ]
  7910. },
  7911. "System.Security.Cryptography.Encoding/4.3.0": {
  7912. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7913. "type": "package",
  7914. "path": "system.security.cryptography.encoding/4.3.0",
  7915. "files": [
  7916. ".nupkg.metadata",
  7917. ".signature.p7s",
  7918. "ThirdPartyNotices.txt",
  7919. "dotnet_library_license.txt",
  7920. "lib/MonoAndroid10/_._",
  7921. "lib/MonoTouch10/_._",
  7922. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7923. "lib/xamarinios10/_._",
  7924. "lib/xamarinmac20/_._",
  7925. "lib/xamarintvos10/_._",
  7926. "lib/xamarinwatchos10/_._",
  7927. "ref/MonoAndroid10/_._",
  7928. "ref/MonoTouch10/_._",
  7929. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7930. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7931. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7932. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7933. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7934. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7935. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7936. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7937. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7938. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7939. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7940. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7941. "ref/xamarinios10/_._",
  7942. "ref/xamarinmac20/_._",
  7943. "ref/xamarintvos10/_._",
  7944. "ref/xamarinwatchos10/_._",
  7945. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7946. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7947. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7948. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7949. "system.security.cryptography.encoding.nuspec"
  7950. ]
  7951. },
  7952. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7953. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7954. "type": "package",
  7955. "path": "system.security.cryptography.openssl/4.3.0",
  7956. "files": [
  7957. ".nupkg.metadata",
  7958. ".signature.p7s",
  7959. "ThirdPartyNotices.txt",
  7960. "dotnet_library_license.txt",
  7961. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7962. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7963. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7964. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7965. "system.security.cryptography.openssl.nuspec"
  7966. ]
  7967. },
  7968. "System.Security.Cryptography.Primitives/4.3.0": {
  7969. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7970. "type": "package",
  7971. "path": "system.security.cryptography.primitives/4.3.0",
  7972. "files": [
  7973. ".nupkg.metadata",
  7974. ".signature.p7s",
  7975. "ThirdPartyNotices.txt",
  7976. "dotnet_library_license.txt",
  7977. "lib/MonoAndroid10/_._",
  7978. "lib/MonoTouch10/_._",
  7979. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7980. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7981. "lib/xamarinios10/_._",
  7982. "lib/xamarinmac20/_._",
  7983. "lib/xamarintvos10/_._",
  7984. "lib/xamarinwatchos10/_._",
  7985. "ref/MonoAndroid10/_._",
  7986. "ref/MonoTouch10/_._",
  7987. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7988. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7989. "ref/xamarinios10/_._",
  7990. "ref/xamarinmac20/_._",
  7991. "ref/xamarintvos10/_._",
  7992. "ref/xamarinwatchos10/_._",
  7993. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7994. "system.security.cryptography.primitives.nuspec"
  7995. ]
  7996. },
  7997. "System.Security.Cryptography.ProtectedData/4.5.0": {
  7998. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  7999. "type": "package",
  8000. "path": "system.security.cryptography.protecteddata/4.5.0",
  8001. "files": [
  8002. ".nupkg.metadata",
  8003. ".signature.p7s",
  8004. "LICENSE.TXT",
  8005. "THIRD-PARTY-NOTICES.TXT",
  8006. "lib/MonoAndroid10/_._",
  8007. "lib/MonoTouch10/_._",
  8008. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8009. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8010. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8011. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8012. "lib/xamarinios10/_._",
  8013. "lib/xamarinmac20/_._",
  8014. "lib/xamarintvos10/_._",
  8015. "lib/xamarinwatchos10/_._",
  8016. "ref/MonoAndroid10/_._",
  8017. "ref/MonoTouch10/_._",
  8018. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8019. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8020. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8021. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8022. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8023. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8024. "ref/xamarinios10/_._",
  8025. "ref/xamarinmac20/_._",
  8026. "ref/xamarintvos10/_._",
  8027. "ref/xamarinwatchos10/_._",
  8028. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8029. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8030. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8031. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8032. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8033. "system.security.cryptography.protecteddata.nuspec",
  8034. "useSharedDesignerContext.txt",
  8035. "version.txt"
  8036. ]
  8037. },
  8038. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8039. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8040. "type": "package",
  8041. "path": "system.security.cryptography.x509certificates/4.3.0",
  8042. "files": [
  8043. ".nupkg.metadata",
  8044. ".signature.p7s",
  8045. "ThirdPartyNotices.txt",
  8046. "dotnet_library_license.txt",
  8047. "lib/MonoAndroid10/_._",
  8048. "lib/MonoTouch10/_._",
  8049. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8050. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8051. "lib/xamarinios10/_._",
  8052. "lib/xamarinmac20/_._",
  8053. "lib/xamarintvos10/_._",
  8054. "lib/xamarinwatchos10/_._",
  8055. "ref/MonoAndroid10/_._",
  8056. "ref/MonoTouch10/_._",
  8057. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8058. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8059. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8060. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8061. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8062. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8063. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8064. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8065. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8066. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8067. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8068. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8069. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8070. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8071. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8072. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8073. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8074. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8075. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8076. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8077. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8078. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8079. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8080. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8081. "ref/xamarinios10/_._",
  8082. "ref/xamarinmac20/_._",
  8083. "ref/xamarintvos10/_._",
  8084. "ref/xamarinwatchos10/_._",
  8085. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8086. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8087. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8088. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8089. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8090. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8091. "system.security.cryptography.x509certificates.nuspec"
  8092. ]
  8093. },
  8094. "System.Security.Permissions/4.7.0": {
  8095. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8096. "type": "package",
  8097. "path": "system.security.permissions/4.7.0",
  8098. "files": [
  8099. ".nupkg.metadata",
  8100. ".signature.p7s",
  8101. "LICENSE.TXT",
  8102. "THIRD-PARTY-NOTICES.TXT",
  8103. "lib/net461/System.Security.Permissions.dll",
  8104. "lib/net461/System.Security.Permissions.xml",
  8105. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8106. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8107. "lib/netstandard2.0/System.Security.Permissions.dll",
  8108. "lib/netstandard2.0/System.Security.Permissions.xml",
  8109. "ref/net461/System.Security.Permissions.dll",
  8110. "ref/net461/System.Security.Permissions.xml",
  8111. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8112. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8113. "ref/netstandard2.0/System.Security.Permissions.dll",
  8114. "ref/netstandard2.0/System.Security.Permissions.xml",
  8115. "system.security.permissions.4.7.0.nupkg.sha512",
  8116. "system.security.permissions.nuspec",
  8117. "useSharedDesignerContext.txt",
  8118. "version.txt"
  8119. ]
  8120. },
  8121. "System.Security.Principal/4.3.0": {
  8122. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8123. "type": "package",
  8124. "path": "system.security.principal/4.3.0",
  8125. "files": [
  8126. ".nupkg.metadata",
  8127. ".signature.p7s",
  8128. "ThirdPartyNotices.txt",
  8129. "dotnet_library_license.txt",
  8130. "lib/MonoAndroid10/_._",
  8131. "lib/MonoTouch10/_._",
  8132. "lib/net45/_._",
  8133. "lib/netcore50/System.Security.Principal.dll",
  8134. "lib/netstandard1.0/System.Security.Principal.dll",
  8135. "lib/portable-net45+win8+wp8+wpa81/_._",
  8136. "lib/win8/_._",
  8137. "lib/wp80/_._",
  8138. "lib/wpa81/_._",
  8139. "lib/xamarinios10/_._",
  8140. "lib/xamarinmac20/_._",
  8141. "lib/xamarintvos10/_._",
  8142. "lib/xamarinwatchos10/_._",
  8143. "ref/MonoAndroid10/_._",
  8144. "ref/MonoTouch10/_._",
  8145. "ref/net45/_._",
  8146. "ref/netcore50/System.Security.Principal.dll",
  8147. "ref/netcore50/System.Security.Principal.xml",
  8148. "ref/netcore50/de/System.Security.Principal.xml",
  8149. "ref/netcore50/es/System.Security.Principal.xml",
  8150. "ref/netcore50/fr/System.Security.Principal.xml",
  8151. "ref/netcore50/it/System.Security.Principal.xml",
  8152. "ref/netcore50/ja/System.Security.Principal.xml",
  8153. "ref/netcore50/ko/System.Security.Principal.xml",
  8154. "ref/netcore50/ru/System.Security.Principal.xml",
  8155. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8156. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8157. "ref/netstandard1.0/System.Security.Principal.dll",
  8158. "ref/netstandard1.0/System.Security.Principal.xml",
  8159. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8160. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8161. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8162. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8163. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8164. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8165. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8166. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8167. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8168. "ref/portable-net45+win8+wp8+wpa81/_._",
  8169. "ref/win8/_._",
  8170. "ref/wp80/_._",
  8171. "ref/wpa81/_._",
  8172. "ref/xamarinios10/_._",
  8173. "ref/xamarinmac20/_._",
  8174. "ref/xamarintvos10/_._",
  8175. "ref/xamarinwatchos10/_._",
  8176. "system.security.principal.4.3.0.nupkg.sha512",
  8177. "system.security.principal.nuspec"
  8178. ]
  8179. },
  8180. "System.Security.Principal.Windows/4.7.0": {
  8181. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8182. "type": "package",
  8183. "path": "system.security.principal.windows/4.7.0",
  8184. "files": [
  8185. ".nupkg.metadata",
  8186. ".signature.p7s",
  8187. "LICENSE.TXT",
  8188. "THIRD-PARTY-NOTICES.TXT",
  8189. "lib/net46/System.Security.Principal.Windows.dll",
  8190. "lib/net461/System.Security.Principal.Windows.dll",
  8191. "lib/net461/System.Security.Principal.Windows.xml",
  8192. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8193. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8194. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8195. "lib/uap10.0.16299/_._",
  8196. "ref/net46/System.Security.Principal.Windows.dll",
  8197. "ref/net461/System.Security.Principal.Windows.dll",
  8198. "ref/net461/System.Security.Principal.Windows.xml",
  8199. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8200. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8201. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8202. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8203. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8204. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8205. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8206. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8207. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8208. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8209. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8210. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8211. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8212. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8213. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8214. "ref/uap10.0.16299/_._",
  8215. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8216. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8217. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8218. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8219. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8220. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8221. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8222. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8223. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8224. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8225. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8226. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8227. "runtimes/win/lib/uap10.0.16299/_._",
  8228. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8229. "system.security.principal.windows.nuspec",
  8230. "useSharedDesignerContext.txt",
  8231. "version.txt"
  8232. ]
  8233. },
  8234. "System.Text.Encoding/4.3.0": {
  8235. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8236. "type": "package",
  8237. "path": "system.text.encoding/4.3.0",
  8238. "files": [
  8239. ".nupkg.metadata",
  8240. ".signature.p7s",
  8241. "ThirdPartyNotices.txt",
  8242. "dotnet_library_license.txt",
  8243. "lib/MonoAndroid10/_._",
  8244. "lib/MonoTouch10/_._",
  8245. "lib/net45/_._",
  8246. "lib/portable-net45+win8+wp8+wpa81/_._",
  8247. "lib/win8/_._",
  8248. "lib/wp80/_._",
  8249. "lib/wpa81/_._",
  8250. "lib/xamarinios10/_._",
  8251. "lib/xamarinmac20/_._",
  8252. "lib/xamarintvos10/_._",
  8253. "lib/xamarinwatchos10/_._",
  8254. "ref/MonoAndroid10/_._",
  8255. "ref/MonoTouch10/_._",
  8256. "ref/net45/_._",
  8257. "ref/netcore50/System.Text.Encoding.dll",
  8258. "ref/netcore50/System.Text.Encoding.xml",
  8259. "ref/netcore50/de/System.Text.Encoding.xml",
  8260. "ref/netcore50/es/System.Text.Encoding.xml",
  8261. "ref/netcore50/fr/System.Text.Encoding.xml",
  8262. "ref/netcore50/it/System.Text.Encoding.xml",
  8263. "ref/netcore50/ja/System.Text.Encoding.xml",
  8264. "ref/netcore50/ko/System.Text.Encoding.xml",
  8265. "ref/netcore50/ru/System.Text.Encoding.xml",
  8266. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8267. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8268. "ref/netstandard1.0/System.Text.Encoding.dll",
  8269. "ref/netstandard1.0/System.Text.Encoding.xml",
  8270. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8271. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8272. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8273. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8274. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8275. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8276. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8277. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8278. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8279. "ref/netstandard1.3/System.Text.Encoding.dll",
  8280. "ref/netstandard1.3/System.Text.Encoding.xml",
  8281. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8282. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8283. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8284. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8285. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8286. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8287. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8288. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8289. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8290. "ref/portable-net45+win8+wp8+wpa81/_._",
  8291. "ref/win8/_._",
  8292. "ref/wp80/_._",
  8293. "ref/wpa81/_._",
  8294. "ref/xamarinios10/_._",
  8295. "ref/xamarinmac20/_._",
  8296. "ref/xamarintvos10/_._",
  8297. "ref/xamarinwatchos10/_._",
  8298. "system.text.encoding.4.3.0.nupkg.sha512",
  8299. "system.text.encoding.nuspec"
  8300. ]
  8301. },
  8302. "System.Text.Encoding.CodePages/5.0.0": {
  8303. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8304. "type": "package",
  8305. "path": "system.text.encoding.codepages/5.0.0",
  8306. "files": [
  8307. ".nupkg.metadata",
  8308. ".signature.p7s",
  8309. "Icon.png",
  8310. "LICENSE.TXT",
  8311. "THIRD-PARTY-NOTICES.TXT",
  8312. "lib/MonoAndroid10/_._",
  8313. "lib/MonoTouch10/_._",
  8314. "lib/net46/System.Text.Encoding.CodePages.dll",
  8315. "lib/net461/System.Text.Encoding.CodePages.dll",
  8316. "lib/net461/System.Text.Encoding.CodePages.xml",
  8317. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8318. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8319. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8320. "lib/xamarinios10/_._",
  8321. "lib/xamarinmac20/_._",
  8322. "lib/xamarintvos10/_._",
  8323. "lib/xamarinwatchos10/_._",
  8324. "ref/MonoAndroid10/_._",
  8325. "ref/MonoTouch10/_._",
  8326. "ref/xamarinios10/_._",
  8327. "ref/xamarinmac20/_._",
  8328. "ref/xamarintvos10/_._",
  8329. "ref/xamarinwatchos10/_._",
  8330. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8331. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8332. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8333. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8334. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8335. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8336. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8337. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8338. "system.text.encoding.codepages.nuspec",
  8339. "useSharedDesignerContext.txt",
  8340. "version.txt"
  8341. ]
  8342. },
  8343. "System.Text.Encoding.Extensions/4.3.0": {
  8344. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8345. "type": "package",
  8346. "path": "system.text.encoding.extensions/4.3.0",
  8347. "files": [
  8348. ".nupkg.metadata",
  8349. ".signature.p7s",
  8350. "ThirdPartyNotices.txt",
  8351. "dotnet_library_license.txt",
  8352. "lib/MonoAndroid10/_._",
  8353. "lib/MonoTouch10/_._",
  8354. "lib/net45/_._",
  8355. "lib/portable-net45+win8+wp8+wpa81/_._",
  8356. "lib/win8/_._",
  8357. "lib/wp80/_._",
  8358. "lib/wpa81/_._",
  8359. "lib/xamarinios10/_._",
  8360. "lib/xamarinmac20/_._",
  8361. "lib/xamarintvos10/_._",
  8362. "lib/xamarinwatchos10/_._",
  8363. "ref/MonoAndroid10/_._",
  8364. "ref/MonoTouch10/_._",
  8365. "ref/net45/_._",
  8366. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8367. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8368. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8369. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8370. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8371. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8372. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8373. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8374. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8375. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8376. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8377. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8378. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8379. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8380. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8381. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8382. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8383. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8384. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8385. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8386. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8387. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8388. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8389. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8390. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8391. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8392. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8393. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8394. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8395. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8396. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8397. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8398. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8399. "ref/portable-net45+win8+wp8+wpa81/_._",
  8400. "ref/win8/_._",
  8401. "ref/wp80/_._",
  8402. "ref/wpa81/_._",
  8403. "ref/xamarinios10/_._",
  8404. "ref/xamarinmac20/_._",
  8405. "ref/xamarintvos10/_._",
  8406. "ref/xamarinwatchos10/_._",
  8407. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8408. "system.text.encoding.extensions.nuspec"
  8409. ]
  8410. },
  8411. "System.Text.Encodings.Web/4.7.0": {
  8412. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  8413. "type": "package",
  8414. "path": "system.text.encodings.web/4.7.0",
  8415. "files": [
  8416. ".nupkg.metadata",
  8417. ".signature.p7s",
  8418. "LICENSE.TXT",
  8419. "THIRD-PARTY-NOTICES.TXT",
  8420. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8421. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8422. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8423. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8424. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  8425. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  8426. "system.text.encodings.web.4.7.0.nupkg.sha512",
  8427. "system.text.encodings.web.nuspec",
  8428. "useSharedDesignerContext.txt",
  8429. "version.txt"
  8430. ]
  8431. },
  8432. "System.Text.RegularExpressions/4.3.0": {
  8433. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8434. "type": "package",
  8435. "path": "system.text.regularexpressions/4.3.0",
  8436. "files": [
  8437. ".nupkg.metadata",
  8438. ".signature.p7s",
  8439. "ThirdPartyNotices.txt",
  8440. "dotnet_library_license.txt",
  8441. "lib/MonoAndroid10/_._",
  8442. "lib/MonoTouch10/_._",
  8443. "lib/net45/_._",
  8444. "lib/net463/System.Text.RegularExpressions.dll",
  8445. "lib/netcore50/System.Text.RegularExpressions.dll",
  8446. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8447. "lib/portable-net45+win8+wp8+wpa81/_._",
  8448. "lib/win8/_._",
  8449. "lib/wp80/_._",
  8450. "lib/wpa81/_._",
  8451. "lib/xamarinios10/_._",
  8452. "lib/xamarinmac20/_._",
  8453. "lib/xamarintvos10/_._",
  8454. "lib/xamarinwatchos10/_._",
  8455. "ref/MonoAndroid10/_._",
  8456. "ref/MonoTouch10/_._",
  8457. "ref/net45/_._",
  8458. "ref/net463/System.Text.RegularExpressions.dll",
  8459. "ref/netcore50/System.Text.RegularExpressions.dll",
  8460. "ref/netcore50/System.Text.RegularExpressions.xml",
  8461. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8462. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8463. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8464. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8465. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8466. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8467. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8468. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8469. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8470. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8471. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8472. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8473. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8474. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8475. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8476. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8477. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8478. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8479. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8480. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8481. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8482. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8483. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8484. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8485. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8486. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8487. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8488. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8489. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8490. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8491. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8492. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8493. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8494. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8495. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8496. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8497. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8498. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8499. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8500. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8501. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8502. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8503. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8504. "ref/portable-net45+win8+wp8+wpa81/_._",
  8505. "ref/win8/_._",
  8506. "ref/wp80/_._",
  8507. "ref/wpa81/_._",
  8508. "ref/xamarinios10/_._",
  8509. "ref/xamarinmac20/_._",
  8510. "ref/xamarintvos10/_._",
  8511. "ref/xamarinwatchos10/_._",
  8512. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8513. "system.text.regularexpressions.nuspec"
  8514. ]
  8515. },
  8516. "System.Threading/4.3.0": {
  8517. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8518. "type": "package",
  8519. "path": "system.threading/4.3.0",
  8520. "files": [
  8521. ".nupkg.metadata",
  8522. ".signature.p7s",
  8523. "ThirdPartyNotices.txt",
  8524. "dotnet_library_license.txt",
  8525. "lib/MonoAndroid10/_._",
  8526. "lib/MonoTouch10/_._",
  8527. "lib/net45/_._",
  8528. "lib/netcore50/System.Threading.dll",
  8529. "lib/netstandard1.3/System.Threading.dll",
  8530. "lib/portable-net45+win8+wp8+wpa81/_._",
  8531. "lib/win8/_._",
  8532. "lib/wp80/_._",
  8533. "lib/wpa81/_._",
  8534. "lib/xamarinios10/_._",
  8535. "lib/xamarinmac20/_._",
  8536. "lib/xamarintvos10/_._",
  8537. "lib/xamarinwatchos10/_._",
  8538. "ref/MonoAndroid10/_._",
  8539. "ref/MonoTouch10/_._",
  8540. "ref/net45/_._",
  8541. "ref/netcore50/System.Threading.dll",
  8542. "ref/netcore50/System.Threading.xml",
  8543. "ref/netcore50/de/System.Threading.xml",
  8544. "ref/netcore50/es/System.Threading.xml",
  8545. "ref/netcore50/fr/System.Threading.xml",
  8546. "ref/netcore50/it/System.Threading.xml",
  8547. "ref/netcore50/ja/System.Threading.xml",
  8548. "ref/netcore50/ko/System.Threading.xml",
  8549. "ref/netcore50/ru/System.Threading.xml",
  8550. "ref/netcore50/zh-hans/System.Threading.xml",
  8551. "ref/netcore50/zh-hant/System.Threading.xml",
  8552. "ref/netstandard1.0/System.Threading.dll",
  8553. "ref/netstandard1.0/System.Threading.xml",
  8554. "ref/netstandard1.0/de/System.Threading.xml",
  8555. "ref/netstandard1.0/es/System.Threading.xml",
  8556. "ref/netstandard1.0/fr/System.Threading.xml",
  8557. "ref/netstandard1.0/it/System.Threading.xml",
  8558. "ref/netstandard1.0/ja/System.Threading.xml",
  8559. "ref/netstandard1.0/ko/System.Threading.xml",
  8560. "ref/netstandard1.0/ru/System.Threading.xml",
  8561. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8562. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8563. "ref/netstandard1.3/System.Threading.dll",
  8564. "ref/netstandard1.3/System.Threading.xml",
  8565. "ref/netstandard1.3/de/System.Threading.xml",
  8566. "ref/netstandard1.3/es/System.Threading.xml",
  8567. "ref/netstandard1.3/fr/System.Threading.xml",
  8568. "ref/netstandard1.3/it/System.Threading.xml",
  8569. "ref/netstandard1.3/ja/System.Threading.xml",
  8570. "ref/netstandard1.3/ko/System.Threading.xml",
  8571. "ref/netstandard1.3/ru/System.Threading.xml",
  8572. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8573. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8574. "ref/portable-net45+win8+wp8+wpa81/_._",
  8575. "ref/win8/_._",
  8576. "ref/wp80/_._",
  8577. "ref/wpa81/_._",
  8578. "ref/xamarinios10/_._",
  8579. "ref/xamarinmac20/_._",
  8580. "ref/xamarintvos10/_._",
  8581. "ref/xamarinwatchos10/_._",
  8582. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8583. "system.threading.4.3.0.nupkg.sha512",
  8584. "system.threading.nuspec"
  8585. ]
  8586. },
  8587. "System.Threading.Channels/7.0.0": {
  8588. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8589. "type": "package",
  8590. "path": "system.threading.channels/7.0.0",
  8591. "files": [
  8592. ".nupkg.metadata",
  8593. ".signature.p7s",
  8594. "Icon.png",
  8595. "LICENSE.TXT",
  8596. "THIRD-PARTY-NOTICES.TXT",
  8597. "buildTransitive/net461/System.Threading.Channels.targets",
  8598. "buildTransitive/net462/_._",
  8599. "buildTransitive/net6.0/_._",
  8600. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8601. "lib/net462/System.Threading.Channels.dll",
  8602. "lib/net462/System.Threading.Channels.xml",
  8603. "lib/net6.0/System.Threading.Channels.dll",
  8604. "lib/net6.0/System.Threading.Channels.xml",
  8605. "lib/net7.0/System.Threading.Channels.dll",
  8606. "lib/net7.0/System.Threading.Channels.xml",
  8607. "lib/netstandard2.0/System.Threading.Channels.dll",
  8608. "lib/netstandard2.0/System.Threading.Channels.xml",
  8609. "lib/netstandard2.1/System.Threading.Channels.dll",
  8610. "lib/netstandard2.1/System.Threading.Channels.xml",
  8611. "system.threading.channels.7.0.0.nupkg.sha512",
  8612. "system.threading.channels.nuspec",
  8613. "useSharedDesignerContext.txt"
  8614. ]
  8615. },
  8616. "System.Threading.Tasks/4.3.0": {
  8617. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8618. "type": "package",
  8619. "path": "system.threading.tasks/4.3.0",
  8620. "files": [
  8621. ".nupkg.metadata",
  8622. ".signature.p7s",
  8623. "ThirdPartyNotices.txt",
  8624. "dotnet_library_license.txt",
  8625. "lib/MonoAndroid10/_._",
  8626. "lib/MonoTouch10/_._",
  8627. "lib/net45/_._",
  8628. "lib/portable-net45+win8+wp8+wpa81/_._",
  8629. "lib/win8/_._",
  8630. "lib/wp80/_._",
  8631. "lib/wpa81/_._",
  8632. "lib/xamarinios10/_._",
  8633. "lib/xamarinmac20/_._",
  8634. "lib/xamarintvos10/_._",
  8635. "lib/xamarinwatchos10/_._",
  8636. "ref/MonoAndroid10/_._",
  8637. "ref/MonoTouch10/_._",
  8638. "ref/net45/_._",
  8639. "ref/netcore50/System.Threading.Tasks.dll",
  8640. "ref/netcore50/System.Threading.Tasks.xml",
  8641. "ref/netcore50/de/System.Threading.Tasks.xml",
  8642. "ref/netcore50/es/System.Threading.Tasks.xml",
  8643. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8644. "ref/netcore50/it/System.Threading.Tasks.xml",
  8645. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8646. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8647. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8648. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8649. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8650. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8651. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8652. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8653. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8654. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8655. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8656. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8657. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8658. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8659. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8660. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8661. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8662. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8663. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8664. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8665. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8666. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8667. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8668. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8669. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8670. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8671. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8672. "ref/portable-net45+win8+wp8+wpa81/_._",
  8673. "ref/win8/_._",
  8674. "ref/wp80/_._",
  8675. "ref/wpa81/_._",
  8676. "ref/xamarinios10/_._",
  8677. "ref/xamarinmac20/_._",
  8678. "ref/xamarintvos10/_._",
  8679. "ref/xamarinwatchos10/_._",
  8680. "system.threading.tasks.4.3.0.nupkg.sha512",
  8681. "system.threading.tasks.nuspec"
  8682. ]
  8683. },
  8684. "System.Threading.Tasks.Extensions/4.3.0": {
  8685. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8686. "type": "package",
  8687. "path": "system.threading.tasks.extensions/4.3.0",
  8688. "files": [
  8689. ".nupkg.metadata",
  8690. ".signature.p7s",
  8691. "ThirdPartyNotices.txt",
  8692. "dotnet_library_license.txt",
  8693. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8694. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8695. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8696. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8697. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8698. "system.threading.tasks.extensions.nuspec"
  8699. ]
  8700. },
  8701. "System.Threading.Thread/4.3.0": {
  8702. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8703. "type": "package",
  8704. "path": "system.threading.thread/4.3.0",
  8705. "files": [
  8706. ".nupkg.metadata",
  8707. ".signature.p7s",
  8708. "ThirdPartyNotices.txt",
  8709. "dotnet_library_license.txt",
  8710. "lib/MonoAndroid10/_._",
  8711. "lib/MonoTouch10/_._",
  8712. "lib/net46/System.Threading.Thread.dll",
  8713. "lib/netcore50/_._",
  8714. "lib/netstandard1.3/System.Threading.Thread.dll",
  8715. "lib/xamarinios10/_._",
  8716. "lib/xamarinmac20/_._",
  8717. "lib/xamarintvos10/_._",
  8718. "lib/xamarinwatchos10/_._",
  8719. "ref/MonoAndroid10/_._",
  8720. "ref/MonoTouch10/_._",
  8721. "ref/net46/System.Threading.Thread.dll",
  8722. "ref/netstandard1.3/System.Threading.Thread.dll",
  8723. "ref/netstandard1.3/System.Threading.Thread.xml",
  8724. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8725. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8726. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8727. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8728. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8729. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8730. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8731. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8732. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8733. "ref/xamarinios10/_._",
  8734. "ref/xamarinmac20/_._",
  8735. "ref/xamarintvos10/_._",
  8736. "ref/xamarinwatchos10/_._",
  8737. "system.threading.thread.4.3.0.nupkg.sha512",
  8738. "system.threading.thread.nuspec"
  8739. ]
  8740. },
  8741. "System.Threading.ThreadPool/4.3.0": {
  8742. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8743. "type": "package",
  8744. "path": "system.threading.threadpool/4.3.0",
  8745. "files": [
  8746. ".nupkg.metadata",
  8747. ".signature.p7s",
  8748. "ThirdPartyNotices.txt",
  8749. "dotnet_library_license.txt",
  8750. "lib/MonoAndroid10/_._",
  8751. "lib/MonoTouch10/_._",
  8752. "lib/net46/System.Threading.ThreadPool.dll",
  8753. "lib/netcore50/_._",
  8754. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8755. "lib/xamarinios10/_._",
  8756. "lib/xamarinmac20/_._",
  8757. "lib/xamarintvos10/_._",
  8758. "lib/xamarinwatchos10/_._",
  8759. "ref/MonoAndroid10/_._",
  8760. "ref/MonoTouch10/_._",
  8761. "ref/net46/System.Threading.ThreadPool.dll",
  8762. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8763. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8764. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8765. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8766. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8767. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8768. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8769. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8770. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8771. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8772. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8773. "ref/xamarinios10/_._",
  8774. "ref/xamarinmac20/_._",
  8775. "ref/xamarintvos10/_._",
  8776. "ref/xamarinwatchos10/_._",
  8777. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8778. "system.threading.threadpool.nuspec"
  8779. ]
  8780. },
  8781. "System.Threading.Timer/4.3.0": {
  8782. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8783. "type": "package",
  8784. "path": "system.threading.timer/4.3.0",
  8785. "files": [
  8786. ".nupkg.metadata",
  8787. ".signature.p7s",
  8788. "ThirdPartyNotices.txt",
  8789. "dotnet_library_license.txt",
  8790. "lib/MonoAndroid10/_._",
  8791. "lib/MonoTouch10/_._",
  8792. "lib/net451/_._",
  8793. "lib/portable-net451+win81+wpa81/_._",
  8794. "lib/win81/_._",
  8795. "lib/wpa81/_._",
  8796. "lib/xamarinios10/_._",
  8797. "lib/xamarinmac20/_._",
  8798. "lib/xamarintvos10/_._",
  8799. "lib/xamarinwatchos10/_._",
  8800. "ref/MonoAndroid10/_._",
  8801. "ref/MonoTouch10/_._",
  8802. "ref/net451/_._",
  8803. "ref/netcore50/System.Threading.Timer.dll",
  8804. "ref/netcore50/System.Threading.Timer.xml",
  8805. "ref/netcore50/de/System.Threading.Timer.xml",
  8806. "ref/netcore50/es/System.Threading.Timer.xml",
  8807. "ref/netcore50/fr/System.Threading.Timer.xml",
  8808. "ref/netcore50/it/System.Threading.Timer.xml",
  8809. "ref/netcore50/ja/System.Threading.Timer.xml",
  8810. "ref/netcore50/ko/System.Threading.Timer.xml",
  8811. "ref/netcore50/ru/System.Threading.Timer.xml",
  8812. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8813. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8814. "ref/netstandard1.2/System.Threading.Timer.dll",
  8815. "ref/netstandard1.2/System.Threading.Timer.xml",
  8816. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8817. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8818. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8819. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8820. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8821. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8822. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8823. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8824. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8825. "ref/portable-net451+win81+wpa81/_._",
  8826. "ref/win81/_._",
  8827. "ref/wpa81/_._",
  8828. "ref/xamarinios10/_._",
  8829. "ref/xamarinmac20/_._",
  8830. "ref/xamarintvos10/_._",
  8831. "ref/xamarinwatchos10/_._",
  8832. "system.threading.timer.4.3.0.nupkg.sha512",
  8833. "system.threading.timer.nuspec"
  8834. ]
  8835. },
  8836. "System.Windows.Extensions/4.7.0": {
  8837. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8838. "type": "package",
  8839. "path": "system.windows.extensions/4.7.0",
  8840. "files": [
  8841. ".nupkg.metadata",
  8842. ".signature.p7s",
  8843. "LICENSE.TXT",
  8844. "THIRD-PARTY-NOTICES.TXT",
  8845. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8846. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8847. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8848. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8849. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8850. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8851. "system.windows.extensions.4.7.0.nupkg.sha512",
  8852. "system.windows.extensions.nuspec",
  8853. "useSharedDesignerContext.txt",
  8854. "version.txt"
  8855. ]
  8856. },
  8857. "System.Xml.ReaderWriter/4.3.0": {
  8858. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8859. "type": "package",
  8860. "path": "system.xml.readerwriter/4.3.0",
  8861. "files": [
  8862. ".nupkg.metadata",
  8863. ".signature.p7s",
  8864. "ThirdPartyNotices.txt",
  8865. "dotnet_library_license.txt",
  8866. "lib/MonoAndroid10/_._",
  8867. "lib/MonoTouch10/_._",
  8868. "lib/net45/_._",
  8869. "lib/net46/System.Xml.ReaderWriter.dll",
  8870. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8871. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8872. "lib/portable-net45+win8+wp8+wpa81/_._",
  8873. "lib/win8/_._",
  8874. "lib/wp80/_._",
  8875. "lib/wpa81/_._",
  8876. "lib/xamarinios10/_._",
  8877. "lib/xamarinmac20/_._",
  8878. "lib/xamarintvos10/_._",
  8879. "lib/xamarinwatchos10/_._",
  8880. "ref/MonoAndroid10/_._",
  8881. "ref/MonoTouch10/_._",
  8882. "ref/net45/_._",
  8883. "ref/net46/System.Xml.ReaderWriter.dll",
  8884. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8885. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8886. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8887. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8888. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8889. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8890. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8891. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8892. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8893. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8894. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8895. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8896. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8897. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8898. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8899. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8900. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8901. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8902. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8903. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8904. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8905. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8906. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8907. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8908. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8909. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8910. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8911. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8912. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8913. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8914. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8915. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8916. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8917. "ref/portable-net45+win8+wp8+wpa81/_._",
  8918. "ref/win8/_._",
  8919. "ref/wp80/_._",
  8920. "ref/wpa81/_._",
  8921. "ref/xamarinios10/_._",
  8922. "ref/xamarinmac20/_._",
  8923. "ref/xamarintvos10/_._",
  8924. "ref/xamarinwatchos10/_._",
  8925. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8926. "system.xml.readerwriter.nuspec"
  8927. ]
  8928. },
  8929. "System.Xml.XDocument/4.3.0": {
  8930. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8931. "type": "package",
  8932. "path": "system.xml.xdocument/4.3.0",
  8933. "files": [
  8934. ".nupkg.metadata",
  8935. ".signature.p7s",
  8936. "ThirdPartyNotices.txt",
  8937. "dotnet_library_license.txt",
  8938. "lib/MonoAndroid10/_._",
  8939. "lib/MonoTouch10/_._",
  8940. "lib/net45/_._",
  8941. "lib/netcore50/System.Xml.XDocument.dll",
  8942. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8943. "lib/portable-net45+win8+wp8+wpa81/_._",
  8944. "lib/win8/_._",
  8945. "lib/wp80/_._",
  8946. "lib/wpa81/_._",
  8947. "lib/xamarinios10/_._",
  8948. "lib/xamarinmac20/_._",
  8949. "lib/xamarintvos10/_._",
  8950. "lib/xamarinwatchos10/_._",
  8951. "ref/MonoAndroid10/_._",
  8952. "ref/MonoTouch10/_._",
  8953. "ref/net45/_._",
  8954. "ref/netcore50/System.Xml.XDocument.dll",
  8955. "ref/netcore50/System.Xml.XDocument.xml",
  8956. "ref/netcore50/de/System.Xml.XDocument.xml",
  8957. "ref/netcore50/es/System.Xml.XDocument.xml",
  8958. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8959. "ref/netcore50/it/System.Xml.XDocument.xml",
  8960. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8961. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8962. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8963. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8964. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8965. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8966. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8967. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8968. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8969. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8970. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8971. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8972. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8973. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8974. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8975. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8976. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8977. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8978. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8979. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8980. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8981. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8982. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8983. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8984. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8985. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8986. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8987. "ref/portable-net45+win8+wp8+wpa81/_._",
  8988. "ref/win8/_._",
  8989. "ref/wp80/_._",
  8990. "ref/wpa81/_._",
  8991. "ref/xamarinios10/_._",
  8992. "ref/xamarinmac20/_._",
  8993. "ref/xamarintvos10/_._",
  8994. "ref/xamarinwatchos10/_._",
  8995. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8996. "system.xml.xdocument.nuspec"
  8997. ]
  8998. },
  8999. "ToolGood.Words/3.1.0.2": {
  9000. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  9001. "type": "package",
  9002. "path": "toolgood.words/3.1.0.2",
  9003. "files": [
  9004. ".nupkg.metadata",
  9005. ".signature.p7s",
  9006. "LICENSE",
  9007. "lib/net6.0/ToolGood.Words.dll",
  9008. "lib/net6.0/ToolGood.Words.xml",
  9009. "lib/net8.0/ToolGood.Words.dll",
  9010. "lib/net8.0/ToolGood.Words.xml",
  9011. "lib/net9.0/ToolGood.Words.dll",
  9012. "lib/net9.0/ToolGood.Words.xml",
  9013. "lib/netstandard2.1/ToolGood.Words.dll",
  9014. "lib/netstandard2.1/ToolGood.Words.xml",
  9015. "toolgood.words.3.1.0.2.nupkg.sha512",
  9016. "toolgood.words.nuspec"
  9017. ]
  9018. },
  9019. "ZXing.Net/0.16.9": {
  9020. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9021. "type": "package",
  9022. "path": "zxing.net/0.16.9",
  9023. "files": [
  9024. ".nupkg.metadata",
  9025. ".signature.p7s",
  9026. "lib/native/zxing.XML",
  9027. "lib/native/zxing.pri",
  9028. "lib/native/zxing.winmd",
  9029. "lib/net20-cf/zxing.ce2.0.dll",
  9030. "lib/net20-cf/zxing.ce2.0.xml",
  9031. "lib/net20/zxing.XML",
  9032. "lib/net20/zxing.dll",
  9033. "lib/net35-cf/zxing.ce3.5.dll",
  9034. "lib/net35-cf/zxing.ce3.5.xml",
  9035. "lib/net35/zxing.XML",
  9036. "lib/net35/zxing.dll",
  9037. "lib/net40/zxing.XML",
  9038. "lib/net40/zxing.dll",
  9039. "lib/net40/zxing.presentation.XML",
  9040. "lib/net40/zxing.presentation.dll",
  9041. "lib/net45/zxing.XML",
  9042. "lib/net45/zxing.dll",
  9043. "lib/net45/zxing.presentation.XML",
  9044. "lib/net45/zxing.presentation.dll",
  9045. "lib/net461/zxing.XML",
  9046. "lib/net461/zxing.dll",
  9047. "lib/net461/zxing.presentation.XML",
  9048. "lib/net461/zxing.presentation.dll",
  9049. "lib/net47/zxing.XML",
  9050. "lib/net47/zxing.dll",
  9051. "lib/net47/zxing.presentation.XML",
  9052. "lib/net47/zxing.presentation.dll",
  9053. "lib/net48/zxing.XML",
  9054. "lib/net48/zxing.dll",
  9055. "lib/net48/zxing.presentation.XML",
  9056. "lib/net48/zxing.presentation.dll",
  9057. "lib/net5.0/zxing.XML",
  9058. "lib/net5.0/zxing.dll",
  9059. "lib/net6.0/zxing.XML",
  9060. "lib/net6.0/zxing.dll",
  9061. "lib/net7.0/zxing.XML",
  9062. "lib/net7.0/zxing.dll",
  9063. "lib/netcoreapp3.0/zxing.dll",
  9064. "lib/netcoreapp3.0/zxing.xml",
  9065. "lib/netcoreapp3.1/zxing.dll",
  9066. "lib/netcoreapp3.1/zxing.xml",
  9067. "lib/netstandard1.0/zxing.dll",
  9068. "lib/netstandard1.0/zxing.xml",
  9069. "lib/netstandard1.1/zxing.dll",
  9070. "lib/netstandard1.1/zxing.xml",
  9071. "lib/netstandard1.3/zxing.dll",
  9072. "lib/netstandard1.3/zxing.xml",
  9073. "lib/netstandard2.0/zxing.dll",
  9074. "lib/netstandard2.0/zxing.xml",
  9075. "lib/netstandard2.1/zxing.dll",
  9076. "lib/netstandard2.1/zxing.xml",
  9077. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9078. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9079. "lib/sl3-wp/zxing.wp7.0.XML",
  9080. "lib/sl3-wp/zxing.wp7.0.dll",
  9081. "lib/sl4-wp71/zxing.wp7.1.XML",
  9082. "lib/sl4-wp71/zxing.wp7.1.dll",
  9083. "lib/sl4/zxing.sl4.XML",
  9084. "lib/sl4/zxing.sl4.dll",
  9085. "lib/sl5/zxing.sl5.XML",
  9086. "lib/sl5/zxing.sl5.dll",
  9087. "lib/uap10/zxing.dll",
  9088. "lib/uap10/zxing.pri",
  9089. "lib/uap10/zxing.xml",
  9090. "lib/windows8-managed/zxing.winrt.XML",
  9091. "lib/windows8-managed/zxing.winrt.dll",
  9092. "lib/windows8/zxing.XML",
  9093. "lib/windows8/zxing.pri",
  9094. "lib/windows8/zxing.winmd",
  9095. "lib/wp8/zxing.wp8.0.XML",
  9096. "lib/wp8/zxing.wp8.0.dll",
  9097. "logo.jpg",
  9098. "zxing.net.0.16.9.nupkg.sha512",
  9099. "zxing.net.nuspec"
  9100. ]
  9101. },
  9102. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9103. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9104. "type": "package",
  9105. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9106. "files": [
  9107. ".nupkg.metadata",
  9108. ".signature.p7s",
  9109. "lib/net472/ZXing.ImageSharp.V2.dll",
  9110. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9111. "lib/net472/ZXing.ImageSharp.V2.xml",
  9112. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9113. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9114. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9115. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9116. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9117. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9118. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9119. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9120. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9121. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9122. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9123. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9124. "logo.jpg",
  9125. "readme.md",
  9126. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9127. "zxing.net.bindings.imagesharp.v2.nuspec"
  9128. ]
  9129. },
  9130. "Ropin.Core.Common/1.0.0": {
  9131. "type": "project",
  9132. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9133. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9134. },
  9135. "Ropin.Inspection.Common/1.0.0": {
  9136. "type": "project",
  9137. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9138. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9139. },
  9140. "Ropin.Inspection.Model/1.0.0": {
  9141. "type": "project",
  9142. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9143. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9144. },
  9145. "Ropin.Inspection.Repository/1.0.0": {
  9146. "type": "project",
  9147. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9148. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9149. }
  9150. },
  9151. "projectFileDependencyGroups": {
  9152. "net5.0": [
  9153. "FBoxClientDriver >= 1.2.0",
  9154. "InitQ >= 1.0.0.14",
  9155. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9156. "RabbitMQ.Client >= 6.8.1",
  9157. "Ropin.Core.Common >= 1.0.0",
  9158. "Ropin.Inspection.Common >= 1.0.0",
  9159. "Ropin.Inspection.Model >= 1.0.0",
  9160. "Ropin.Inspection.Repository >= 1.0.0",
  9161. "Swashbuckle.AspNetCore >= 5.6.3",
  9162. "log4net >= 2.0.17"
  9163. ]
  9164. },
  9165. "packageFolders": {
  9166. "D:\\.nuget\\packages": {},
  9167. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9168. },
  9169. "project": {
  9170. "version": "1.0.0",
  9171. "restore": {
  9172. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\Ropin.Environmentally.VideoService.csproj",
  9173. "projectName": "Ropin.Environmentally.VideoService",
  9174. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\Ropin.Environmentally.VideoService.csproj",
  9175. "packagesPath": "D:\\.nuget\\packages",
  9176. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\obj\\",
  9177. "projectStyle": "PackageReference",
  9178. "fallbackFolders": [
  9179. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9180. ],
  9181. "configFilePaths": [
  9182. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9183. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9184. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9185. ],
  9186. "originalTargetFrameworks": [
  9187. "net5.0"
  9188. ],
  9189. "sources": {
  9190. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9191. "C:\\Program Files\\dotnet\\library-packs": {},
  9192. "https://api.nuget.org/v3/index.json": {}
  9193. },
  9194. "frameworks": {
  9195. "net5.0": {
  9196. "targetAlias": "net5.0",
  9197. "projectReferences": {
  9198. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9199. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9200. },
  9201. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9202. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9203. },
  9204. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9205. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9206. },
  9207. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9208. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9209. }
  9210. }
  9211. }
  9212. },
  9213. "warningProperties": {
  9214. "warnAsError": [
  9215. "NU1605"
  9216. ]
  9217. }
  9218. },
  9219. "frameworks": {
  9220. "net5.0": {
  9221. "targetAlias": "net5.0",
  9222. "dependencies": {
  9223. "FBoxClientDriver": {
  9224. "target": "Package",
  9225. "version": "[1.2.0, )"
  9226. },
  9227. "InitQ": {
  9228. "target": "Package",
  9229. "version": "[1.0.0.14, )"
  9230. },
  9231. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9232. "target": "Package",
  9233. "version": "[1.17.2, )"
  9234. },
  9235. "RabbitMQ.Client": {
  9236. "target": "Package",
  9237. "version": "[6.8.1, )"
  9238. },
  9239. "Swashbuckle.AspNetCore": {
  9240. "target": "Package",
  9241. "version": "[5.6.3, )"
  9242. },
  9243. "log4net": {
  9244. "target": "Package",
  9245. "version": "[2.0.17, )"
  9246. }
  9247. },
  9248. "imports": [
  9249. "net461",
  9250. "net462",
  9251. "net47",
  9252. "net471",
  9253. "net472",
  9254. "net48",
  9255. "net481"
  9256. ],
  9257. "assetTargetFallback": true,
  9258. "warn": true,
  9259. "frameworkReferences": {
  9260. "Microsoft.AspNetCore.App": {
  9261. "privateAssets": "none"
  9262. },
  9263. "Microsoft.NETCore.App": {
  9264. "privateAssets": "all"
  9265. }
  9266. },
  9267. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9268. }
  9269. }
  9270. }
  9271. }