project.assets.json 424 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/net5.0/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/net5.0/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "Autofac.Extras.DynamicProxy/6.0.0": {
  52. "type": "package",
  53. "dependencies": {
  54. "Autofac": "6.0.0",
  55. "Castle.Core": "4.4.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  59. "related": ".pdb;.xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  64. "related": ".pdb;.xml"
  65. }
  66. }
  67. },
  68. "AutoMapper/10.1.1": {
  69. "type": "package",
  70. "dependencies": {
  71. "Microsoft.CSharp": "4.7.0",
  72. "System.Reflection.Emit": "4.7.0"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/AutoMapper.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/netstandard2.0/AutoMapper.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  86. "type": "package",
  87. "dependencies": {
  88. "AutoMapper": "[10.1.1, 11.0.0)",
  89. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  90. "Microsoft.Extensions.Options": "3.0.0"
  91. },
  92. "compile": {
  93. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  94. },
  95. "runtime": {
  96. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  97. }
  98. },
  99. "BouncyCastle.Cryptography/2.2.1": {
  100. "type": "package",
  101. "compile": {
  102. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "BouncyCastle.NetCore/1.8.5": {
  113. "type": "package",
  114. "compile": {
  115. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  116. "related": ".xml"
  117. }
  118. },
  119. "runtime": {
  120. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  121. "related": ".xml"
  122. }
  123. }
  124. },
  125. "Castle.Core/4.4.0": {
  126. "type": "package",
  127. "dependencies": {
  128. "NETStandard.Library": "1.6.1",
  129. "System.Collections.Specialized": "4.3.0",
  130. "System.ComponentModel": "4.3.0",
  131. "System.ComponentModel.TypeConverter": "4.3.0",
  132. "System.Diagnostics.TraceSource": "4.3.0",
  133. "System.Dynamic.Runtime": "4.3.0",
  134. "System.Reflection": "4.3.0",
  135. "System.Reflection.Emit": "4.3.0",
  136. "System.Reflection.TypeExtensions": "4.3.0",
  137. "System.Xml.XmlDocument": "4.3.0"
  138. },
  139. "compile": {
  140. "lib/netstandard1.5/Castle.Core.dll": {
  141. "related": ".xml"
  142. }
  143. },
  144. "runtime": {
  145. "lib/netstandard1.5/Castle.Core.dll": {
  146. "related": ".xml"
  147. }
  148. }
  149. },
  150. "Coravel/4.2.1": {
  151. "type": "package",
  152. "dependencies": {
  153. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  154. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  155. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  156. },
  157. "compile": {
  158. "lib/netstandard2.0/Coravel.dll": {
  159. "related": ".xml"
  160. }
  161. },
  162. "runtime": {
  163. "lib/netstandard2.0/Coravel.dll": {
  164. "related": ".xml"
  165. }
  166. }
  167. },
  168. "Enums.NET/4.0.1": {
  169. "type": "package",
  170. "compile": {
  171. "lib/netcoreapp3.0/Enums.NET.dll": {
  172. "related": ".pdb;.xml"
  173. }
  174. },
  175. "runtime": {
  176. "lib/netcoreapp3.0/Enums.NET.dll": {
  177. "related": ".pdb;.xml"
  178. }
  179. }
  180. },
  181. "FluentEmail.Core/3.0.2": {
  182. "type": "package",
  183. "dependencies": {
  184. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  185. },
  186. "compile": {
  187. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  191. }
  192. },
  193. "FluentEmail.Smtp/3.0.2": {
  194. "type": "package",
  195. "dependencies": {
  196. "FluentEmail.Core": "3.0.2"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  200. },
  201. "runtime": {
  202. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  203. }
  204. },
  205. "Google.Protobuf/3.11.4": {
  206. "type": "package",
  207. "dependencies": {
  208. "System.Memory": "4.5.2"
  209. },
  210. "compile": {
  211. "lib/netstandard2.0/Google.Protobuf.dll": {
  212. "related": ".pdb;.xml"
  213. }
  214. },
  215. "runtime": {
  216. "lib/netstandard2.0/Google.Protobuf.dll": {
  217. "related": ".pdb;.xml"
  218. }
  219. }
  220. },
  221. "Humanizer.Core/2.8.26": {
  222. "type": "package",
  223. "compile": {
  224. "lib/netstandard2.0/_._": {
  225. "related": ".xml"
  226. }
  227. },
  228. "runtime": {
  229. "lib/netstandard2.0/Humanizer.dll": {
  230. "related": ".xml"
  231. }
  232. }
  233. },
  234. "InfluxData.Net/8.0.1": {
  235. "type": "package",
  236. "dependencies": {
  237. "Newtonsoft.Json": "10.0.3",
  238. "System.Net.Http": "4.3.2"
  239. },
  240. "compile": {
  241. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  242. "related": ".dll.config;.pdb"
  243. },
  244. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  245. "related": ".dll.config;.pdb"
  246. },
  247. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  248. "related": ".dll.config;.pdb"
  249. },
  250. "lib/netstandard2.0/InfluxData.Net.dll": {
  251. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  252. }
  253. },
  254. "runtime": {
  255. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  256. "related": ".dll.config;.pdb"
  257. },
  258. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  259. "related": ".dll.config;.pdb"
  260. },
  261. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  262. "related": ".dll.config;.pdb"
  263. },
  264. "lib/netstandard2.0/InfluxData.Net.dll": {
  265. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  266. }
  267. }
  268. },
  269. "IP2Region.Ex/1.2.0": {
  270. "type": "package",
  271. "compile": {
  272. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  273. },
  274. "runtime": {
  275. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  276. }
  277. },
  278. "IPTools.China/1.6.0": {
  279. "type": "package",
  280. "dependencies": {
  281. "IP2Region.Ex": "1.2.0",
  282. "IPTools.Core": "1.6.0"
  283. },
  284. "compile": {
  285. "lib/net5.0/IPTools.China.dll": {}
  286. },
  287. "runtime": {
  288. "lib/net5.0/IPTools.China.dll": {}
  289. }
  290. },
  291. "IPTools.Core/1.6.0": {
  292. "type": "package",
  293. "dependencies": {
  294. "IP2Region.Ex": "1.2.0"
  295. },
  296. "compile": {
  297. "lib/net5.0/IPTools.Core.dll": {}
  298. },
  299. "runtime": {
  300. "lib/net5.0/IPTools.Core.dll": {}
  301. },
  302. "frameworkReferences": [
  303. "Microsoft.AspNetCore.App"
  304. ]
  305. },
  306. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  307. "type": "package",
  308. "dependencies": {
  309. "AdvancedStringBuilder": "0.1.0",
  310. "JavaScriptEngineSwitcher.Core": "3.21.0"
  311. },
  312. "compile": {
  313. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  314. "related": ".xml"
  315. }
  316. },
  317. "runtime": {
  318. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  319. "related": ".xml"
  320. }
  321. },
  322. "resource": {
  323. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  324. "locale": "ru-RU"
  325. }
  326. }
  327. },
  328. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  329. "type": "package",
  330. "runtimeTargets": {
  331. "runtimes/linux-x64/native/libChakraCore.so": {
  332. "assetType": "native",
  333. "rid": "linux-x64"
  334. }
  335. }
  336. },
  337. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  338. "type": "package",
  339. "build": {
  340. "build/_._": {}
  341. },
  342. "runtimeTargets": {
  343. "runtimes/win-x64/native/ChakraCore.dll": {
  344. "assetType": "native",
  345. "rid": "win-x64"
  346. }
  347. }
  348. },
  349. "JavaScriptEngineSwitcher.Core/3.21.0": {
  350. "type": "package",
  351. "dependencies": {
  352. "AdvancedStringBuilder": "0.1.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  361. "related": ".xml"
  362. }
  363. },
  364. "resource": {
  365. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  366. "locale": "ru-RU"
  367. }
  368. }
  369. },
  370. "K4os.Compression.LZ4/1.1.11": {
  371. "type": "package",
  372. "dependencies": {
  373. "System.Memory": "4.5.3"
  374. },
  375. "compile": {
  376. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "runtime": {
  381. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  382. "related": ".xml"
  383. }
  384. }
  385. },
  386. "K4os.Compression.LZ4.Streams/1.1.11": {
  387. "type": "package",
  388. "dependencies": {
  389. "K4os.Compression.LZ4": "1.1.11",
  390. "K4os.Hash.xxHash": "1.0.6"
  391. },
  392. "compile": {
  393. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  394. "related": ".xml"
  395. }
  396. },
  397. "runtime": {
  398. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  399. "related": ".xml"
  400. }
  401. }
  402. },
  403. "K4os.Hash.xxHash/1.0.6": {
  404. "type": "package",
  405. "dependencies": {
  406. "System.Memory": "4.5.3"
  407. },
  408. "compile": {
  409. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  410. "related": ".xml"
  411. }
  412. },
  413. "runtime": {
  414. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  415. "related": ".xml"
  416. }
  417. }
  418. },
  419. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  420. "type": "package",
  421. "dependencies": {
  422. "Microsoft.EntityFrameworkCore": "5.0.0"
  423. },
  424. "compile": {
  425. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  426. "related": ".xml"
  427. }
  428. },
  429. "runtime": {
  430. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  431. "related": ".xml"
  432. }
  433. }
  434. },
  435. "log4net/2.0.17": {
  436. "type": "package",
  437. "dependencies": {
  438. "System.Configuration.ConfigurationManager": "4.5.0"
  439. },
  440. "compile": {
  441. "lib/netstandard2.0/log4net.dll": {
  442. "related": ".xml"
  443. }
  444. },
  445. "runtime": {
  446. "lib/netstandard2.0/log4net.dll": {
  447. "related": ".xml"
  448. }
  449. }
  450. },
  451. "MathNet.Numerics.Signed/4.15.0": {
  452. "type": "package",
  453. "compile": {
  454. "lib/netstandard2.0/MathNet.Numerics.dll": {
  455. "related": ".xml"
  456. }
  457. },
  458. "runtime": {
  459. "lib/netstandard2.0/MathNet.Numerics.dll": {
  460. "related": ".xml"
  461. }
  462. }
  463. },
  464. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  465. "type": "package",
  466. "dependencies": {
  467. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  468. },
  469. "compile": {
  470. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  471. "related": ".xml"
  472. }
  473. },
  474. "runtime": {
  475. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  476. "related": ".xml"
  477. }
  478. },
  479. "frameworkReferences": [
  480. "Microsoft.AspNetCore.App"
  481. ]
  482. },
  483. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  487. },
  488. "compile": {
  489. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  490. "related": ".xml"
  491. }
  492. },
  493. "runtime": {
  494. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  495. "related": ".xml"
  496. }
  497. },
  498. "frameworkReferences": [
  499. "Microsoft.AspNetCore.App"
  500. ]
  501. },
  502. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  503. "type": "package",
  504. "dependencies": {
  505. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  506. "System.Text.Encodings.Web": "4.5.0"
  507. },
  508. "compile": {
  509. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  510. "related": ".xml"
  511. }
  512. },
  513. "runtime": {
  514. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  515. "related": ".xml"
  516. }
  517. }
  518. },
  519. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Extensions.Primitives": "5.0.0",
  523. "System.IO.Pipelines": "5.0.0"
  524. },
  525. "compile": {
  526. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  527. "related": ".xml"
  528. }
  529. },
  530. "runtime": {
  531. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  532. "related": ".xml"
  533. }
  534. }
  535. },
  536. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  537. "type": "package",
  538. "dependencies": {
  539. "Microsoft.CSharp": "4.7.0",
  540. "Newtonsoft.Json": "12.0.2"
  541. },
  542. "compile": {
  543. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  544. "related": ".xml"
  545. }
  546. },
  547. "runtime": {
  548. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  549. "related": ".xml"
  550. }
  551. }
  552. },
  553. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  554. "type": "package",
  555. "dependencies": {
  556. "Microsoft.AspNetCore.JsonPatch": "5.0.0",
  557. "Newtonsoft.Json": "12.0.2",
  558. "Newtonsoft.Json.Bson": "1.0.2"
  559. },
  560. "compile": {
  561. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  562. "related": ".xml"
  563. }
  564. },
  565. "runtime": {
  566. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  567. "related": ".xml"
  568. }
  569. },
  570. "frameworkReferences": [
  571. "Microsoft.AspNetCore.App"
  572. ]
  573. },
  574. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  575. "type": "package",
  576. "dependencies": {
  577. "Microsoft.Extensions.Logging.Console": "3.1.30",
  578. "Newtonsoft.Json": "13.0.1"
  579. },
  580. "compile": {
  581. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  582. },
  583. "runtime": {
  584. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  585. },
  586. "frameworkReferences": [
  587. "Microsoft.AspNetCore.App"
  588. ]
  589. },
  590. "Microsoft.CSharp/4.7.0": {
  591. "type": "package",
  592. "compile": {
  593. "ref/netcoreapp2.0/_._": {}
  594. },
  595. "runtime": {
  596. "lib/netcoreapp2.0/_._": {}
  597. }
  598. },
  599. "Microsoft.EntityFrameworkCore/5.0.4": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.4",
  603. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.4",
  604. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  605. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  606. "Microsoft.Extensions.Logging": "5.0.0",
  607. "System.Collections.Immutable": "5.0.0",
  608. "System.ComponentModel.Annotations": "5.0.0",
  609. "System.Diagnostics.DiagnosticSource": "5.0.1"
  610. },
  611. "compile": {
  612. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  613. "related": ".xml"
  614. }
  615. },
  616. "runtime": {
  617. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  618. "related": ".xml"
  619. }
  620. }
  621. },
  622. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  623. "type": "package",
  624. "compile": {
  625. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  626. "related": ".xml"
  627. }
  628. },
  629. "runtime": {
  630. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  631. "related": ".xml"
  632. }
  633. }
  634. },
  635. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  636. "type": "package",
  637. "compile": {
  638. "lib/netstandard2.0/_._": {}
  639. },
  640. "runtime": {
  641. "lib/netstandard2.0/_._": {}
  642. }
  643. },
  644. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  645. "type": "package",
  646. "dependencies": {
  647. "Humanizer.Core": "2.8.26",
  648. "Microsoft.CSharp": "4.7.0",
  649. "Microsoft.EntityFrameworkCore.Relational": "5.0.4"
  650. },
  651. "compile": {
  652. "lib/netstandard2.1/_._": {
  653. "related": ".xml"
  654. }
  655. },
  656. "runtime": {
  657. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {
  658. "related": ".xml"
  659. }
  660. },
  661. "build": {
  662. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {}
  663. }
  664. },
  665. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  666. "type": "package",
  667. "dependencies": {
  668. "Microsoft.EntityFrameworkCore": "5.0.4",
  669. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  670. },
  671. "compile": {
  672. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  678. "related": ".xml"
  679. }
  680. }
  681. },
  682. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  683. "type": "package",
  684. "build": {
  685. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  686. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  687. },
  688. "buildMultiTargeting": {
  689. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  690. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  691. }
  692. },
  693. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  694. "type": "package",
  695. "dependencies": {
  696. "Microsoft.Extensions.Primitives": "5.0.0"
  697. },
  698. "compile": {
  699. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  700. "related": ".xml"
  701. }
  702. },
  703. "runtime": {
  704. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  705. "related": ".xml"
  706. }
  707. }
  708. },
  709. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  710. "type": "package",
  711. "dependencies": {
  712. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  713. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  714. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  715. "Microsoft.Extensions.Options": "5.0.0",
  716. "Microsoft.Extensions.Primitives": "5.0.0"
  717. },
  718. "compile": {
  719. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  720. "related": ".xml"
  721. }
  722. },
  723. "runtime": {
  724. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  725. "related": ".xml"
  726. }
  727. }
  728. },
  729. "Microsoft.Extensions.Configuration/5.0.0": {
  730. "type": "package",
  731. "dependencies": {
  732. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  733. "Microsoft.Extensions.Primitives": "5.0.0"
  734. },
  735. "compile": {
  736. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  737. "related": ".xml"
  738. }
  739. },
  740. "runtime": {
  741. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  742. "related": ".xml"
  743. }
  744. }
  745. },
  746. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  747. "type": "package",
  748. "dependencies": {
  749. "Microsoft.Extensions.Primitives": "5.0.0"
  750. },
  751. "compile": {
  752. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  753. "related": ".xml"
  754. }
  755. },
  756. "runtime": {
  757. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  758. "related": ".xml"
  759. }
  760. }
  761. },
  762. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  763. "type": "package",
  764. "dependencies": {
  765. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  766. },
  767. "compile": {
  768. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  769. "related": ".xml"
  770. }
  771. },
  772. "runtime": {
  773. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  774. "related": ".xml"
  775. }
  776. }
  777. },
  778. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  779. "type": "package",
  780. "dependencies": {
  781. "Microsoft.Extensions.Configuration": "5.0.0",
  782. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  783. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  784. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  785. "Microsoft.Extensions.Primitives": "5.0.0"
  786. },
  787. "compile": {
  788. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  789. "related": ".xml"
  790. }
  791. },
  792. "runtime": {
  793. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  794. "related": ".xml"
  795. }
  796. }
  797. },
  798. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  799. "type": "package",
  800. "dependencies": {
  801. "Microsoft.Extensions.Configuration": "5.0.0",
  802. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  803. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  804. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  805. },
  806. "compile": {
  807. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  808. "related": ".xml"
  809. }
  810. },
  811. "runtime": {
  812. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  813. "related": ".xml"
  814. }
  815. }
  816. },
  817. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  818. "type": "package",
  819. "dependencies": {
  820. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  821. },
  822. "compile": {
  823. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  824. "related": ".xml"
  825. }
  826. },
  827. "runtime": {
  828. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  829. "related": ".xml"
  830. }
  831. }
  832. },
  833. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  834. "type": "package",
  835. "compile": {
  836. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  837. "related": ".xml"
  838. }
  839. },
  840. "runtime": {
  841. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  842. "related": ".xml"
  843. }
  844. }
  845. },
  846. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.Extensions.Primitives": "5.0.0"
  850. },
  851. "compile": {
  852. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  853. "related": ".xml"
  854. }
  855. },
  856. "runtime": {
  857. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  858. "related": ".xml"
  859. }
  860. }
  861. },
  862. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  863. "type": "package",
  864. "dependencies": {
  865. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  866. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  867. "Microsoft.Extensions.Primitives": "5.0.0"
  868. },
  869. "compile": {
  870. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  871. "related": ".xml"
  872. }
  873. },
  874. "runtime": {
  875. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  876. "related": ".xml"
  877. }
  878. }
  879. },
  880. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  881. "type": "package",
  882. "compile": {
  883. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  884. "related": ".xml"
  885. }
  886. },
  887. "runtime": {
  888. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  889. "related": ".xml"
  890. }
  891. }
  892. },
  893. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  894. "type": "package",
  895. "dependencies": {
  896. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  897. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  898. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  899. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  900. },
  901. "compile": {
  902. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  903. "related": ".xml"
  904. }
  905. },
  906. "runtime": {
  907. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  908. "related": ".xml"
  909. }
  910. }
  911. },
  912. "Microsoft.Extensions.Http/5.0.0": {
  913. "type": "package",
  914. "dependencies": {
  915. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  916. "Microsoft.Extensions.Logging": "5.0.0",
  917. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  918. "Microsoft.Extensions.Options": "5.0.0"
  919. },
  920. "compile": {
  921. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  922. "related": ".xml"
  923. }
  924. },
  925. "runtime": {
  926. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  927. "related": ".xml"
  928. }
  929. }
  930. },
  931. "Microsoft.Extensions.Logging/5.0.0": {
  932. "type": "package",
  933. "dependencies": {
  934. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  935. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  936. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  937. "Microsoft.Extensions.Options": "5.0.0"
  938. },
  939. "compile": {
  940. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  941. "related": ".xml"
  942. }
  943. },
  944. "runtime": {
  945. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  946. "related": ".xml"
  947. }
  948. }
  949. },
  950. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  951. "type": "package",
  952. "compile": {
  953. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  954. "related": ".xml"
  955. }
  956. },
  957. "runtime": {
  958. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  959. "related": ".xml"
  960. }
  961. }
  962. },
  963. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  964. "type": "package",
  965. "dependencies": {
  966. "Microsoft.Extensions.Logging": "3.1.30",
  967. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  968. },
  969. "compile": {
  970. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  971. "related": ".xml"
  972. }
  973. },
  974. "runtime": {
  975. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  976. "related": ".xml"
  977. }
  978. }
  979. },
  980. "Microsoft.Extensions.Logging.Console/3.1.30": {
  981. "type": "package",
  982. "dependencies": {
  983. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  984. "Microsoft.Extensions.Logging": "3.1.30",
  985. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  986. },
  987. "compile": {
  988. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  989. "related": ".xml"
  990. }
  991. },
  992. "runtime": {
  993. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  994. "related": ".xml"
  995. }
  996. }
  997. },
  998. "Microsoft.Extensions.Options/5.0.0": {
  999. "type": "package",
  1000. "dependencies": {
  1001. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1002. "Microsoft.Extensions.Primitives": "5.0.0"
  1003. },
  1004. "compile": {
  1005. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1006. "related": ".xml"
  1007. }
  1008. },
  1009. "runtime": {
  1010. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1011. "related": ".xml"
  1012. }
  1013. }
  1014. },
  1015. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1019. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1020. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1021. "Microsoft.Extensions.Options": "3.1.30"
  1022. },
  1023. "compile": {
  1024. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1025. "related": ".xml"
  1026. }
  1027. },
  1028. "runtime": {
  1029. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1030. "related": ".xml"
  1031. }
  1032. }
  1033. },
  1034. "Microsoft.Extensions.Primitives/5.0.0": {
  1035. "type": "package",
  1036. "compile": {
  1037. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1038. "related": ".xml"
  1039. }
  1040. },
  1041. "runtime": {
  1042. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1043. "related": ".xml"
  1044. }
  1045. }
  1046. },
  1047. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  1048. "type": "package",
  1049. "dependencies": {
  1050. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1051. },
  1052. "compile": {
  1053. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1054. "related": ".xml"
  1055. }
  1056. },
  1057. "runtime": {
  1058. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1059. "related": ".xml"
  1060. }
  1061. }
  1062. },
  1063. "Microsoft.IdentityModel.Logging/6.7.1": {
  1064. "type": "package",
  1065. "compile": {
  1066. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1067. "related": ".xml"
  1068. }
  1069. },
  1070. "runtime": {
  1071. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1072. "related": ".xml"
  1073. }
  1074. }
  1075. },
  1076. "Microsoft.IdentityModel.Protocols/6.7.1": {
  1077. "type": "package",
  1078. "dependencies": {
  1079. "Microsoft.IdentityModel.Logging": "6.7.1",
  1080. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1081. },
  1082. "compile": {
  1083. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1084. "related": ".xml"
  1085. }
  1086. },
  1087. "runtime": {
  1088. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1089. "related": ".xml"
  1090. }
  1091. }
  1092. },
  1093. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  1094. "type": "package",
  1095. "dependencies": {
  1096. "Microsoft.IdentityModel.Protocols": "6.7.1",
  1097. "System.IdentityModel.Tokens.Jwt": "6.7.1"
  1098. },
  1099. "compile": {
  1100. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1101. "related": ".xml"
  1102. }
  1103. },
  1104. "runtime": {
  1105. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1106. "related": ".xml"
  1107. }
  1108. }
  1109. },
  1110. "Microsoft.IdentityModel.Tokens/6.7.1": {
  1111. "type": "package",
  1112. "dependencies": {
  1113. "Microsoft.CSharp": "4.5.0",
  1114. "Microsoft.IdentityModel.Logging": "6.7.1",
  1115. "System.Security.Cryptography.Cng": "4.5.0"
  1116. },
  1117. "compile": {
  1118. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1119. "related": ".xml"
  1120. }
  1121. },
  1122. "runtime": {
  1123. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1124. "related": ".xml"
  1125. }
  1126. }
  1127. },
  1128. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  1129. "type": "package",
  1130. "compile": {
  1131. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1132. "related": ".xml"
  1133. }
  1134. },
  1135. "runtime": {
  1136. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1137. "related": ".xml"
  1138. }
  1139. }
  1140. },
  1141. "Microsoft.NETCore.Platforms/5.0.0": {
  1142. "type": "package",
  1143. "compile": {
  1144. "lib/netstandard1.0/_._": {}
  1145. },
  1146. "runtime": {
  1147. "lib/netstandard1.0/_._": {}
  1148. }
  1149. },
  1150. "Microsoft.NETCore.Targets/1.1.0": {
  1151. "type": "package",
  1152. "compile": {
  1153. "lib/netstandard1.0/_._": {}
  1154. },
  1155. "runtime": {
  1156. "lib/netstandard1.0/_._": {}
  1157. }
  1158. },
  1159. "Microsoft.OpenApi/1.2.3": {
  1160. "type": "package",
  1161. "compile": {
  1162. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1163. "related": ".pdb;.xml"
  1164. }
  1165. },
  1166. "runtime": {
  1167. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1168. "related": ".pdb;.xml"
  1169. }
  1170. }
  1171. },
  1172. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  1173. "type": "package",
  1174. "build": {
  1175. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1176. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1177. }
  1178. },
  1179. "Microsoft.Win32.Primitives/4.3.0": {
  1180. "type": "package",
  1181. "dependencies": {
  1182. "Microsoft.NETCore.Platforms": "1.1.0",
  1183. "Microsoft.NETCore.Targets": "1.1.0",
  1184. "System.Runtime": "4.3.0"
  1185. },
  1186. "compile": {
  1187. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1188. "related": ".xml"
  1189. }
  1190. }
  1191. },
  1192. "Microsoft.Win32.SystemEvents/6.0.0": {
  1193. "type": "package",
  1194. "compile": {
  1195. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1196. "related": ".xml"
  1197. }
  1198. },
  1199. "runtime": {
  1200. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1201. "related": ".xml"
  1202. }
  1203. },
  1204. "build": {
  1205. "buildTransitive/netcoreapp3.1/_._": {}
  1206. },
  1207. "runtimeTargets": {
  1208. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1209. "assetType": "runtime",
  1210. "rid": "win"
  1211. }
  1212. }
  1213. },
  1214. "MySql.Data/8.0.23": {
  1215. "type": "package",
  1216. "dependencies": {
  1217. "BouncyCastle.NetCore": "1.8.5",
  1218. "Google.Protobuf": "3.11.4",
  1219. "K4os.Compression.LZ4": "1.1.11",
  1220. "K4os.Compression.LZ4.Streams": "1.1.11",
  1221. "K4os.Hash.xxHash": "1.0.6",
  1222. "SSH.NET": "2020.0.0-beta1",
  1223. "System.Buffers": "4.5.1",
  1224. "System.Configuration.ConfigurationManager": "4.4.1",
  1225. "System.Security.Permissions": "4.7.0",
  1226. "System.Text.Encoding.CodePages": "4.4.0"
  1227. },
  1228. "compile": {
  1229. "lib/net5.0/MySql.Data.dll": {
  1230. "related": ".xml"
  1231. },
  1232. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1233. "lib/net5.0/Zstandard.Net.dll": {}
  1234. },
  1235. "runtime": {
  1236. "lib/net5.0/MySql.Data.dll": {
  1237. "related": ".xml"
  1238. },
  1239. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1240. "lib/net5.0/Zstandard.Net.dll": {}
  1241. }
  1242. },
  1243. "MySqlConnector/1.1.0": {
  1244. "type": "package",
  1245. "compile": {
  1246. "lib/net5.0/MySqlConnector.dll": {
  1247. "related": ".xml"
  1248. }
  1249. },
  1250. "runtime": {
  1251. "lib/net5.0/MySqlConnector.dll": {
  1252. "related": ".xml"
  1253. }
  1254. }
  1255. },
  1256. "NETStandard.Library/1.6.1": {
  1257. "type": "package",
  1258. "dependencies": {
  1259. "Microsoft.NETCore.Platforms": "1.1.0",
  1260. "Microsoft.Win32.Primitives": "4.3.0",
  1261. "System.AppContext": "4.3.0",
  1262. "System.Collections": "4.3.0",
  1263. "System.Collections.Concurrent": "4.3.0",
  1264. "System.Console": "4.3.0",
  1265. "System.Diagnostics.Debug": "4.3.0",
  1266. "System.Diagnostics.Tools": "4.3.0",
  1267. "System.Diagnostics.Tracing": "4.3.0",
  1268. "System.Globalization": "4.3.0",
  1269. "System.Globalization.Calendars": "4.3.0",
  1270. "System.IO": "4.3.0",
  1271. "System.IO.Compression": "4.3.0",
  1272. "System.IO.Compression.ZipFile": "4.3.0",
  1273. "System.IO.FileSystem": "4.3.0",
  1274. "System.IO.FileSystem.Primitives": "4.3.0",
  1275. "System.Linq": "4.3.0",
  1276. "System.Linq.Expressions": "4.3.0",
  1277. "System.Net.Http": "4.3.0",
  1278. "System.Net.Primitives": "4.3.0",
  1279. "System.Net.Sockets": "4.3.0",
  1280. "System.ObjectModel": "4.3.0",
  1281. "System.Reflection": "4.3.0",
  1282. "System.Reflection.Extensions": "4.3.0",
  1283. "System.Reflection.Primitives": "4.3.0",
  1284. "System.Resources.ResourceManager": "4.3.0",
  1285. "System.Runtime": "4.3.0",
  1286. "System.Runtime.Extensions": "4.3.0",
  1287. "System.Runtime.Handles": "4.3.0",
  1288. "System.Runtime.InteropServices": "4.3.0",
  1289. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1290. "System.Runtime.Numerics": "4.3.0",
  1291. "System.Security.Cryptography.Algorithms": "4.3.0",
  1292. "System.Security.Cryptography.Encoding": "4.3.0",
  1293. "System.Security.Cryptography.Primitives": "4.3.0",
  1294. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1295. "System.Text.Encoding": "4.3.0",
  1296. "System.Text.Encoding.Extensions": "4.3.0",
  1297. "System.Text.RegularExpressions": "4.3.0",
  1298. "System.Threading": "4.3.0",
  1299. "System.Threading.Tasks": "4.3.0",
  1300. "System.Threading.Timer": "4.3.0",
  1301. "System.Xml.ReaderWriter": "4.3.0",
  1302. "System.Xml.XDocument": "4.3.0"
  1303. }
  1304. },
  1305. "Newtonsoft.Json/13.0.1": {
  1306. "type": "package",
  1307. "compile": {
  1308. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1309. "related": ".xml"
  1310. }
  1311. },
  1312. "runtime": {
  1313. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1314. "related": ".xml"
  1315. }
  1316. }
  1317. },
  1318. "Newtonsoft.Json.Bson/1.0.2": {
  1319. "type": "package",
  1320. "dependencies": {
  1321. "Newtonsoft.Json": "12.0.1"
  1322. },
  1323. "compile": {
  1324. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1325. "related": ".pdb;.xml"
  1326. }
  1327. },
  1328. "runtime": {
  1329. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1330. "related": ".pdb;.xml"
  1331. }
  1332. }
  1333. },
  1334. "NPOI/2.6.2": {
  1335. "type": "package",
  1336. "dependencies": {
  1337. "BouncyCastle.Cryptography": "2.2.1",
  1338. "Enums.NET": "4.0.1",
  1339. "MathNet.Numerics.Signed": "4.15.0",
  1340. "Microsoft.IO.RecyclableMemoryStream": "2.3.2",
  1341. "SharpZipLib": "1.3.3",
  1342. "SixLabors.Fonts": "1.0.0",
  1343. "SixLabors.ImageSharp": "2.1.4",
  1344. "System.Configuration.ConfigurationManager": "6.0.0",
  1345. "System.Security.Cryptography.Xml": "6.0.1"
  1346. },
  1347. "compile": {
  1348. "lib/netstandard2.1/NPOI.Core.dll": {
  1349. "related": ".pdb;.xml"
  1350. },
  1351. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1352. "related": ".pdb;.xml"
  1353. },
  1354. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1355. "related": ".pdb;.xml"
  1356. },
  1357. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1358. "related": ".pdb;.xml"
  1359. }
  1360. },
  1361. "runtime": {
  1362. "lib/netstandard2.1/NPOI.Core.dll": {
  1363. "related": ".pdb;.xml"
  1364. },
  1365. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1366. "related": ".pdb;.xml"
  1367. },
  1368. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1369. "related": ".pdb;.xml"
  1370. },
  1371. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1372. "related": ".pdb;.xml"
  1373. }
  1374. }
  1375. },
  1376. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1377. "type": "package",
  1378. "dependencies": {
  1379. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1380. "MySqlConnector": "1.1.0"
  1381. },
  1382. "compile": {
  1383. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1384. "related": ".xml"
  1385. }
  1386. },
  1387. "runtime": {
  1388. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1389. "related": ".xml"
  1390. }
  1391. }
  1392. },
  1393. "QRCoder/1.4.3": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "System.Drawing.Common": "5.0.3"
  1397. },
  1398. "compile": {
  1399. "lib/net5.0/QRCoder.dll": {}
  1400. },
  1401. "runtime": {
  1402. "lib/net5.0/QRCoder.dll": {}
  1403. }
  1404. },
  1405. "Quartz/3.3.3": {
  1406. "type": "package",
  1407. "dependencies": {
  1408. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1409. "System.Configuration.ConfigurationManager": "4.7.0",
  1410. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1411. },
  1412. "compile": {
  1413. "lib/netstandard2.0/Quartz.dll": {
  1414. "related": ".xml"
  1415. }
  1416. },
  1417. "runtime": {
  1418. "lib/netstandard2.0/Quartz.dll": {
  1419. "related": ".xml"
  1420. }
  1421. }
  1422. },
  1423. "RabbitMQ.Client/6.8.1": {
  1424. "type": "package",
  1425. "dependencies": {
  1426. "System.Memory": "4.5.5",
  1427. "System.Threading.Channels": "7.0.0"
  1428. },
  1429. "compile": {
  1430. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1431. "related": ".xml"
  1432. }
  1433. },
  1434. "runtime": {
  1435. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1436. "related": ".xml"
  1437. }
  1438. }
  1439. },
  1440. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1441. "type": "package",
  1442. "runtimeTargets": {
  1443. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1444. "assetType": "native",
  1445. "rid": "debian.8-x64"
  1446. }
  1447. }
  1448. },
  1449. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1450. "type": "package",
  1451. "runtimeTargets": {
  1452. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1453. "assetType": "native",
  1454. "rid": "fedora.23-x64"
  1455. }
  1456. }
  1457. },
  1458. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1459. "type": "package",
  1460. "runtimeTargets": {
  1461. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1462. "assetType": "native",
  1463. "rid": "fedora.24-x64"
  1464. }
  1465. }
  1466. },
  1467. "runtime.native.System/4.3.0": {
  1468. "type": "package",
  1469. "dependencies": {
  1470. "Microsoft.NETCore.Platforms": "1.1.0",
  1471. "Microsoft.NETCore.Targets": "1.1.0"
  1472. },
  1473. "compile": {
  1474. "lib/netstandard1.0/_._": {}
  1475. },
  1476. "runtime": {
  1477. "lib/netstandard1.0/_._": {}
  1478. }
  1479. },
  1480. "runtime.native.System.IO.Compression/4.3.0": {
  1481. "type": "package",
  1482. "dependencies": {
  1483. "Microsoft.NETCore.Platforms": "1.1.0",
  1484. "Microsoft.NETCore.Targets": "1.1.0"
  1485. },
  1486. "compile": {
  1487. "lib/netstandard1.0/_._": {}
  1488. },
  1489. "runtime": {
  1490. "lib/netstandard1.0/_._": {}
  1491. }
  1492. },
  1493. "runtime.native.System.Net.Http/4.3.0": {
  1494. "type": "package",
  1495. "dependencies": {
  1496. "Microsoft.NETCore.Platforms": "1.1.0",
  1497. "Microsoft.NETCore.Targets": "1.1.0"
  1498. },
  1499. "compile": {
  1500. "lib/netstandard1.0/_._": {}
  1501. },
  1502. "runtime": {
  1503. "lib/netstandard1.0/_._": {}
  1504. }
  1505. },
  1506. "runtime.native.System.Net.Security/4.3.0": {
  1507. "type": "package",
  1508. "dependencies": {
  1509. "Microsoft.NETCore.Platforms": "1.1.0",
  1510. "Microsoft.NETCore.Targets": "1.1.0"
  1511. },
  1512. "compile": {
  1513. "lib/netstandard1.0/_._": {}
  1514. },
  1515. "runtime": {
  1516. "lib/netstandard1.0/_._": {}
  1517. }
  1518. },
  1519. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1520. "type": "package",
  1521. "dependencies": {
  1522. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1523. },
  1524. "compile": {
  1525. "lib/netstandard1.0/_._": {}
  1526. },
  1527. "runtime": {
  1528. "lib/netstandard1.0/_._": {}
  1529. }
  1530. },
  1531. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1532. "type": "package",
  1533. "dependencies": {
  1534. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1535. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1536. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1537. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1538. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1539. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1540. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1541. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1542. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1543. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1544. },
  1545. "compile": {
  1546. "lib/netstandard1.0/_._": {}
  1547. },
  1548. "runtime": {
  1549. "lib/netstandard1.0/_._": {}
  1550. }
  1551. },
  1552. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1553. "type": "package",
  1554. "runtimeTargets": {
  1555. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1556. "assetType": "native",
  1557. "rid": "opensuse.13.2-x64"
  1558. }
  1559. }
  1560. },
  1561. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1562. "type": "package",
  1563. "runtimeTargets": {
  1564. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1565. "assetType": "native",
  1566. "rid": "opensuse.42.1-x64"
  1567. }
  1568. }
  1569. },
  1570. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1571. "type": "package",
  1572. "runtimeTargets": {
  1573. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1574. "assetType": "native",
  1575. "rid": "osx.10.10-x64"
  1576. }
  1577. }
  1578. },
  1579. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1580. "type": "package",
  1581. "runtimeTargets": {
  1582. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1583. "assetType": "native",
  1584. "rid": "osx.10.10-x64"
  1585. }
  1586. }
  1587. },
  1588. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1589. "type": "package",
  1590. "runtimeTargets": {
  1591. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1592. "assetType": "native",
  1593. "rid": "rhel.7-x64"
  1594. }
  1595. }
  1596. },
  1597. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1598. "type": "package",
  1599. "runtimeTargets": {
  1600. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1601. "assetType": "native",
  1602. "rid": "ubuntu.14.04-x64"
  1603. }
  1604. }
  1605. },
  1606. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1607. "type": "package",
  1608. "runtimeTargets": {
  1609. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1610. "assetType": "native",
  1611. "rid": "ubuntu.16.04-x64"
  1612. }
  1613. }
  1614. },
  1615. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1616. "type": "package",
  1617. "runtimeTargets": {
  1618. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1619. "assetType": "native",
  1620. "rid": "ubuntu.16.10-x64"
  1621. }
  1622. }
  1623. },
  1624. "SharpZipLib/1.3.3": {
  1625. "type": "package",
  1626. "compile": {
  1627. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1628. "related": ".pdb;.xml"
  1629. }
  1630. },
  1631. "runtime": {
  1632. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1633. "related": ".pdb;.xml"
  1634. }
  1635. }
  1636. },
  1637. "SixLabors.Fonts/1.0.0": {
  1638. "type": "package",
  1639. "compile": {
  1640. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1641. "related": ".xml"
  1642. }
  1643. },
  1644. "runtime": {
  1645. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1646. "related": ".xml"
  1647. }
  1648. }
  1649. },
  1650. "SixLabors.ImageSharp/2.1.6": {
  1651. "type": "package",
  1652. "dependencies": {
  1653. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1654. "System.Text.Encoding.CodePages": "5.0.0"
  1655. },
  1656. "compile": {
  1657. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1658. "related": ".xml"
  1659. }
  1660. },
  1661. "runtime": {
  1662. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1663. "related": ".xml"
  1664. }
  1665. }
  1666. },
  1667. "SSH.NET/2020.0.0-beta1": {
  1668. "type": "package",
  1669. "dependencies": {
  1670. "SshNet.Security.Cryptography": "[1.3.0]"
  1671. },
  1672. "compile": {
  1673. "lib/netstandard2.0/Renci.SshNet.dll": {
  1674. "related": ".xml"
  1675. }
  1676. },
  1677. "runtime": {
  1678. "lib/netstandard2.0/Renci.SshNet.dll": {
  1679. "related": ".xml"
  1680. }
  1681. }
  1682. },
  1683. "SshNet.Security.Cryptography/1.3.0": {
  1684. "type": "package",
  1685. "compile": {
  1686. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1687. "related": ".xml"
  1688. }
  1689. },
  1690. "runtime": {
  1691. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1692. "related": ".xml"
  1693. }
  1694. }
  1695. },
  1696. "StackExchange.Redis/1.2.4": {
  1697. "type": "package",
  1698. "dependencies": {
  1699. "NETStandard.Library": "1.6.1",
  1700. "System.Collections": "4.3.0",
  1701. "System.Collections.Concurrent": "4.3.0",
  1702. "System.Collections.NonGeneric": "4.3.0",
  1703. "System.Diagnostics.Tools": "4.3.0",
  1704. "System.IO.Compression": "4.3.0",
  1705. "System.IO.FileSystem": "4.3.0",
  1706. "System.Linq": "4.3.0",
  1707. "System.Net.NameResolution": "4.3.0",
  1708. "System.Net.Security": "4.3.0",
  1709. "System.Net.Sockets": "4.3.0",
  1710. "System.Reflection.Emit": "4.3.0",
  1711. "System.Reflection.Emit.Lightweight": "4.3.0",
  1712. "System.Reflection.TypeExtensions": "4.3.0",
  1713. "System.Runtime.Extensions": "4.3.0",
  1714. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1715. "System.Security.Cryptography.Algorithms": "4.3.0",
  1716. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1717. "System.Text.RegularExpressions": "4.3.0",
  1718. "System.Threading": "4.3.0",
  1719. "System.Threading.Thread": "4.3.0",
  1720. "System.Threading.ThreadPool": "4.3.0",
  1721. "System.Threading.Timer": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1725. "related": ".xml"
  1726. }
  1727. },
  1728. "runtime": {
  1729. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1730. "related": ".xml"
  1731. }
  1732. }
  1733. },
  1734. "Swashbuckle.AspNetCore/5.6.3": {
  1735. "type": "package",
  1736. "dependencies": {
  1737. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1738. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1739. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1740. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1741. },
  1742. "build": {
  1743. "build/Swashbuckle.AspNetCore.props": {}
  1744. }
  1745. },
  1746. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1747. "type": "package",
  1748. "dependencies": {
  1749. "Microsoft.OpenApi": "1.2.3"
  1750. },
  1751. "compile": {
  1752. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1753. "related": ".pdb;.xml"
  1754. }
  1755. },
  1756. "runtime": {
  1757. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1758. "related": ".pdb;.xml"
  1759. }
  1760. },
  1761. "frameworkReferences": [
  1762. "Microsoft.AspNetCore.App"
  1763. ]
  1764. },
  1765. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1766. "type": "package",
  1767. "dependencies": {
  1768. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1769. },
  1770. "compile": {
  1771. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1772. "related": ".pdb;.xml"
  1773. }
  1774. },
  1775. "runtime": {
  1776. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1777. "related": ".pdb;.xml"
  1778. }
  1779. },
  1780. "frameworkReferences": [
  1781. "Microsoft.AspNetCore.App"
  1782. ]
  1783. },
  1784. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1785. "type": "package",
  1786. "compile": {
  1787. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1788. "related": ".pdb;.xml"
  1789. }
  1790. },
  1791. "runtime": {
  1792. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1793. "related": ".pdb;.xml"
  1794. }
  1795. },
  1796. "frameworkReferences": [
  1797. "Microsoft.AspNetCore.App"
  1798. ]
  1799. },
  1800. "System.AppContext/4.3.0": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "System.Runtime": "4.3.0"
  1804. },
  1805. "compile": {
  1806. "ref/netstandard1.6/System.AppContext.dll": {
  1807. "related": ".xml"
  1808. }
  1809. },
  1810. "runtime": {
  1811. "lib/netstandard1.6/System.AppContext.dll": {}
  1812. }
  1813. },
  1814. "System.Buffers/4.5.1": {
  1815. "type": "package",
  1816. "compile": {
  1817. "ref/netcoreapp2.0/_._": {}
  1818. },
  1819. "runtime": {
  1820. "lib/netcoreapp2.0/_._": {}
  1821. }
  1822. },
  1823. "System.Collections/4.3.0": {
  1824. "type": "package",
  1825. "dependencies": {
  1826. "Microsoft.NETCore.Platforms": "1.1.0",
  1827. "Microsoft.NETCore.Targets": "1.1.0",
  1828. "System.Runtime": "4.3.0"
  1829. },
  1830. "compile": {
  1831. "ref/netstandard1.3/System.Collections.dll": {
  1832. "related": ".xml"
  1833. }
  1834. }
  1835. },
  1836. "System.Collections.Concurrent/4.3.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "System.Collections": "4.3.0",
  1840. "System.Diagnostics.Debug": "4.3.0",
  1841. "System.Diagnostics.Tracing": "4.3.0",
  1842. "System.Globalization": "4.3.0",
  1843. "System.Reflection": "4.3.0",
  1844. "System.Resources.ResourceManager": "4.3.0",
  1845. "System.Runtime": "4.3.0",
  1846. "System.Runtime.Extensions": "4.3.0",
  1847. "System.Threading": "4.3.0",
  1848. "System.Threading.Tasks": "4.3.0"
  1849. },
  1850. "compile": {
  1851. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1852. "related": ".xml"
  1853. }
  1854. },
  1855. "runtime": {
  1856. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1857. }
  1858. },
  1859. "System.Collections.Immutable/5.0.0": {
  1860. "type": "package",
  1861. "compile": {
  1862. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1863. "related": ".xml"
  1864. }
  1865. },
  1866. "runtime": {
  1867. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1868. "related": ".xml"
  1869. }
  1870. }
  1871. },
  1872. "System.Collections.NonGeneric/4.3.0": {
  1873. "type": "package",
  1874. "dependencies": {
  1875. "System.Diagnostics.Debug": "4.3.0",
  1876. "System.Globalization": "4.3.0",
  1877. "System.Resources.ResourceManager": "4.3.0",
  1878. "System.Runtime": "4.3.0",
  1879. "System.Runtime.Extensions": "4.3.0",
  1880. "System.Threading": "4.3.0"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1884. "related": ".xml"
  1885. }
  1886. },
  1887. "runtime": {
  1888. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1889. }
  1890. },
  1891. "System.Collections.Specialized/4.3.0": {
  1892. "type": "package",
  1893. "dependencies": {
  1894. "System.Collections.NonGeneric": "4.3.0",
  1895. "System.Globalization": "4.3.0",
  1896. "System.Globalization.Extensions": "4.3.0",
  1897. "System.Resources.ResourceManager": "4.3.0",
  1898. "System.Runtime": "4.3.0",
  1899. "System.Runtime.Extensions": "4.3.0",
  1900. "System.Threading": "4.3.0"
  1901. },
  1902. "compile": {
  1903. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1904. "related": ".xml"
  1905. }
  1906. },
  1907. "runtime": {
  1908. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1909. }
  1910. },
  1911. "System.ComponentModel/4.3.0": {
  1912. "type": "package",
  1913. "dependencies": {
  1914. "System.Runtime": "4.3.0"
  1915. },
  1916. "compile": {
  1917. "ref/netstandard1.0/System.ComponentModel.dll": {
  1918. "related": ".xml"
  1919. }
  1920. },
  1921. "runtime": {
  1922. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1923. }
  1924. },
  1925. "System.ComponentModel.Annotations/5.0.0": {
  1926. "type": "package",
  1927. "compile": {
  1928. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1929. "related": ".xml"
  1930. }
  1931. },
  1932. "runtime": {
  1933. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1934. "related": ".xml"
  1935. }
  1936. }
  1937. },
  1938. "System.ComponentModel.Primitives/4.3.0": {
  1939. "type": "package",
  1940. "dependencies": {
  1941. "System.ComponentModel": "4.3.0",
  1942. "System.Resources.ResourceManager": "4.3.0",
  1943. "System.Runtime": "4.3.0"
  1944. },
  1945. "compile": {
  1946. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1947. "related": ".xml"
  1948. }
  1949. },
  1950. "runtime": {
  1951. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1952. }
  1953. },
  1954. "System.ComponentModel.TypeConverter/4.3.0": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "System.Collections": "4.3.0",
  1958. "System.Collections.NonGeneric": "4.3.0",
  1959. "System.Collections.Specialized": "4.3.0",
  1960. "System.ComponentModel": "4.3.0",
  1961. "System.ComponentModel.Primitives": "4.3.0",
  1962. "System.Globalization": "4.3.0",
  1963. "System.Linq": "4.3.0",
  1964. "System.Reflection": "4.3.0",
  1965. "System.Reflection.Extensions": "4.3.0",
  1966. "System.Reflection.Primitives": "4.3.0",
  1967. "System.Reflection.TypeExtensions": "4.3.0",
  1968. "System.Resources.ResourceManager": "4.3.0",
  1969. "System.Runtime": "4.3.0",
  1970. "System.Runtime.Extensions": "4.3.0",
  1971. "System.Threading": "4.3.0"
  1972. },
  1973. "compile": {
  1974. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1975. "related": ".xml"
  1976. }
  1977. },
  1978. "runtime": {
  1979. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1980. }
  1981. },
  1982. "System.Configuration.ConfigurationManager/6.0.0": {
  1983. "type": "package",
  1984. "dependencies": {
  1985. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1986. "System.Security.Permissions": "6.0.0"
  1987. },
  1988. "compile": {
  1989. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1990. "related": ".xml"
  1991. }
  1992. },
  1993. "runtime": {
  1994. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1995. "related": ".xml"
  1996. }
  1997. },
  1998. "build": {
  1999. "buildTransitive/netcoreapp3.1/_._": {}
  2000. }
  2001. },
  2002. "System.Console/4.3.0": {
  2003. "type": "package",
  2004. "dependencies": {
  2005. "Microsoft.NETCore.Platforms": "1.1.0",
  2006. "Microsoft.NETCore.Targets": "1.1.0",
  2007. "System.IO": "4.3.0",
  2008. "System.Runtime": "4.3.0",
  2009. "System.Text.Encoding": "4.3.0"
  2010. },
  2011. "compile": {
  2012. "ref/netstandard1.3/System.Console.dll": {
  2013. "related": ".xml"
  2014. }
  2015. }
  2016. },
  2017. "System.Diagnostics.Debug/4.3.0": {
  2018. "type": "package",
  2019. "dependencies": {
  2020. "Microsoft.NETCore.Platforms": "1.1.0",
  2021. "Microsoft.NETCore.Targets": "1.1.0",
  2022. "System.Runtime": "4.3.0"
  2023. },
  2024. "compile": {
  2025. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2026. "related": ".xml"
  2027. }
  2028. }
  2029. },
  2030. "System.Diagnostics.DiagnosticSource/5.0.1": {
  2031. "type": "package",
  2032. "compile": {
  2033. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2034. "related": ".xml"
  2035. }
  2036. },
  2037. "runtime": {
  2038. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2039. "related": ".xml"
  2040. }
  2041. }
  2042. },
  2043. "System.Diagnostics.Tools/4.3.0": {
  2044. "type": "package",
  2045. "dependencies": {
  2046. "Microsoft.NETCore.Platforms": "1.1.0",
  2047. "Microsoft.NETCore.Targets": "1.1.0",
  2048. "System.Runtime": "4.3.0"
  2049. },
  2050. "compile": {
  2051. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2052. "related": ".xml"
  2053. }
  2054. }
  2055. },
  2056. "System.Diagnostics.TraceSource/4.3.0": {
  2057. "type": "package",
  2058. "dependencies": {
  2059. "Microsoft.NETCore.Platforms": "1.1.0",
  2060. "System.Collections": "4.3.0",
  2061. "System.Diagnostics.Debug": "4.3.0",
  2062. "System.Globalization": "4.3.0",
  2063. "System.Resources.ResourceManager": "4.3.0",
  2064. "System.Runtime": "4.3.0",
  2065. "System.Runtime.Extensions": "4.3.0",
  2066. "System.Threading": "4.3.0",
  2067. "runtime.native.System": "4.3.0"
  2068. },
  2069. "compile": {
  2070. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2071. "related": ".xml"
  2072. }
  2073. },
  2074. "runtimeTargets": {
  2075. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2076. "assetType": "runtime",
  2077. "rid": "unix"
  2078. },
  2079. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2080. "assetType": "runtime",
  2081. "rid": "win"
  2082. }
  2083. }
  2084. },
  2085. "System.Diagnostics.Tracing/4.3.0": {
  2086. "type": "package",
  2087. "dependencies": {
  2088. "Microsoft.NETCore.Platforms": "1.1.0",
  2089. "Microsoft.NETCore.Targets": "1.1.0",
  2090. "System.Runtime": "4.3.0"
  2091. },
  2092. "compile": {
  2093. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2094. "related": ".xml"
  2095. }
  2096. }
  2097. },
  2098. "System.Drawing.Common/6.0.0": {
  2099. "type": "package",
  2100. "dependencies": {
  2101. "Microsoft.Win32.SystemEvents": "6.0.0"
  2102. },
  2103. "compile": {
  2104. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2105. "related": ".xml"
  2106. }
  2107. },
  2108. "runtime": {
  2109. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2110. "related": ".xml"
  2111. }
  2112. },
  2113. "build": {
  2114. "buildTransitive/netcoreapp3.1/_._": {}
  2115. },
  2116. "runtimeTargets": {
  2117. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2118. "assetType": "runtime",
  2119. "rid": "unix"
  2120. },
  2121. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2122. "assetType": "runtime",
  2123. "rid": "win"
  2124. }
  2125. }
  2126. },
  2127. "System.Dynamic.Runtime/4.3.0": {
  2128. "type": "package",
  2129. "dependencies": {
  2130. "System.Collections": "4.3.0",
  2131. "System.Diagnostics.Debug": "4.3.0",
  2132. "System.Linq": "4.3.0",
  2133. "System.Linq.Expressions": "4.3.0",
  2134. "System.ObjectModel": "4.3.0",
  2135. "System.Reflection": "4.3.0",
  2136. "System.Reflection.Emit": "4.3.0",
  2137. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2138. "System.Reflection.Primitives": "4.3.0",
  2139. "System.Reflection.TypeExtensions": "4.3.0",
  2140. "System.Resources.ResourceManager": "4.3.0",
  2141. "System.Runtime": "4.3.0",
  2142. "System.Runtime.Extensions": "4.3.0",
  2143. "System.Threading": "4.3.0"
  2144. },
  2145. "compile": {
  2146. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2147. "related": ".xml"
  2148. }
  2149. },
  2150. "runtime": {
  2151. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2152. }
  2153. },
  2154. "System.Formats.Asn1/6.0.0": {
  2155. "type": "package",
  2156. "dependencies": {
  2157. "System.Buffers": "4.5.1",
  2158. "System.Memory": "4.5.4"
  2159. },
  2160. "compile": {
  2161. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2162. "related": ".xml"
  2163. }
  2164. },
  2165. "runtime": {
  2166. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2167. "related": ".xml"
  2168. }
  2169. },
  2170. "build": {
  2171. "buildTransitive/netcoreapp3.1/_._": {}
  2172. }
  2173. },
  2174. "System.Globalization/4.3.0": {
  2175. "type": "package",
  2176. "dependencies": {
  2177. "Microsoft.NETCore.Platforms": "1.1.0",
  2178. "Microsoft.NETCore.Targets": "1.1.0",
  2179. "System.Runtime": "4.3.0"
  2180. },
  2181. "compile": {
  2182. "ref/netstandard1.3/System.Globalization.dll": {
  2183. "related": ".xml"
  2184. }
  2185. }
  2186. },
  2187. "System.Globalization.Calendars/4.3.0": {
  2188. "type": "package",
  2189. "dependencies": {
  2190. "Microsoft.NETCore.Platforms": "1.1.0",
  2191. "Microsoft.NETCore.Targets": "1.1.0",
  2192. "System.Globalization": "4.3.0",
  2193. "System.Runtime": "4.3.0"
  2194. },
  2195. "compile": {
  2196. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2197. "related": ".xml"
  2198. }
  2199. }
  2200. },
  2201. "System.Globalization.Extensions/4.3.0": {
  2202. "type": "package",
  2203. "dependencies": {
  2204. "Microsoft.NETCore.Platforms": "1.1.0",
  2205. "System.Globalization": "4.3.0",
  2206. "System.Resources.ResourceManager": "4.3.0",
  2207. "System.Runtime": "4.3.0",
  2208. "System.Runtime.Extensions": "4.3.0",
  2209. "System.Runtime.InteropServices": "4.3.0"
  2210. },
  2211. "compile": {
  2212. "ref/netstandard1.3/_._": {
  2213. "related": ".xml"
  2214. }
  2215. },
  2216. "runtimeTargets": {
  2217. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2218. "assetType": "runtime",
  2219. "rid": "unix"
  2220. },
  2221. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "win"
  2224. }
  2225. }
  2226. },
  2227. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  2228. "type": "package",
  2229. "dependencies": {
  2230. "Microsoft.IdentityModel.JsonWebTokens": "6.7.1",
  2231. "Microsoft.IdentityModel.Tokens": "6.7.1"
  2232. },
  2233. "compile": {
  2234. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2235. "related": ".xml"
  2236. }
  2237. },
  2238. "runtime": {
  2239. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2240. "related": ".xml"
  2241. }
  2242. }
  2243. },
  2244. "System.IO/4.3.0": {
  2245. "type": "package",
  2246. "dependencies": {
  2247. "Microsoft.NETCore.Platforms": "1.1.0",
  2248. "Microsoft.NETCore.Targets": "1.1.0",
  2249. "System.Runtime": "4.3.0",
  2250. "System.Text.Encoding": "4.3.0",
  2251. "System.Threading.Tasks": "4.3.0"
  2252. },
  2253. "compile": {
  2254. "ref/netstandard1.5/System.IO.dll": {
  2255. "related": ".xml"
  2256. }
  2257. }
  2258. },
  2259. "System.IO.Compression/4.3.0": {
  2260. "type": "package",
  2261. "dependencies": {
  2262. "Microsoft.NETCore.Platforms": "1.1.0",
  2263. "System.Buffers": "4.3.0",
  2264. "System.Collections": "4.3.0",
  2265. "System.Diagnostics.Debug": "4.3.0",
  2266. "System.IO": "4.3.0",
  2267. "System.Resources.ResourceManager": "4.3.0",
  2268. "System.Runtime": "4.3.0",
  2269. "System.Runtime.Extensions": "4.3.0",
  2270. "System.Runtime.Handles": "4.3.0",
  2271. "System.Runtime.InteropServices": "4.3.0",
  2272. "System.Text.Encoding": "4.3.0",
  2273. "System.Threading": "4.3.0",
  2274. "System.Threading.Tasks": "4.3.0",
  2275. "runtime.native.System": "4.3.0",
  2276. "runtime.native.System.IO.Compression": "4.3.0"
  2277. },
  2278. "compile": {
  2279. "ref/netstandard1.3/System.IO.Compression.dll": {
  2280. "related": ".xml"
  2281. }
  2282. },
  2283. "runtimeTargets": {
  2284. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2285. "assetType": "runtime",
  2286. "rid": "unix"
  2287. },
  2288. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2289. "assetType": "runtime",
  2290. "rid": "win"
  2291. }
  2292. }
  2293. },
  2294. "System.IO.Compression.ZipFile/4.3.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "System.Buffers": "4.3.0",
  2298. "System.IO": "4.3.0",
  2299. "System.IO.Compression": "4.3.0",
  2300. "System.IO.FileSystem": "4.3.0",
  2301. "System.IO.FileSystem.Primitives": "4.3.0",
  2302. "System.Resources.ResourceManager": "4.3.0",
  2303. "System.Runtime": "4.3.0",
  2304. "System.Runtime.Extensions": "4.3.0",
  2305. "System.Text.Encoding": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2309. "related": ".xml"
  2310. }
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2314. }
  2315. },
  2316. "System.IO.FileSystem/4.3.0": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "Microsoft.NETCore.Platforms": "1.1.0",
  2320. "Microsoft.NETCore.Targets": "1.1.0",
  2321. "System.IO": "4.3.0",
  2322. "System.IO.FileSystem.Primitives": "4.3.0",
  2323. "System.Runtime": "4.3.0",
  2324. "System.Runtime.Handles": "4.3.0",
  2325. "System.Text.Encoding": "4.3.0",
  2326. "System.Threading.Tasks": "4.3.0"
  2327. },
  2328. "compile": {
  2329. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2330. "related": ".xml"
  2331. }
  2332. }
  2333. },
  2334. "System.IO.FileSystem.Primitives/4.3.0": {
  2335. "type": "package",
  2336. "dependencies": {
  2337. "System.Runtime": "4.3.0"
  2338. },
  2339. "compile": {
  2340. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2341. "related": ".xml"
  2342. }
  2343. },
  2344. "runtime": {
  2345. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2346. }
  2347. },
  2348. "System.IO.Pipelines/5.0.0": {
  2349. "type": "package",
  2350. "compile": {
  2351. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2352. "related": ".xml"
  2353. }
  2354. },
  2355. "runtime": {
  2356. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2357. "related": ".xml"
  2358. }
  2359. }
  2360. },
  2361. "System.Linq/4.3.0": {
  2362. "type": "package",
  2363. "dependencies": {
  2364. "System.Collections": "4.3.0",
  2365. "System.Diagnostics.Debug": "4.3.0",
  2366. "System.Resources.ResourceManager": "4.3.0",
  2367. "System.Runtime": "4.3.0",
  2368. "System.Runtime.Extensions": "4.3.0"
  2369. },
  2370. "compile": {
  2371. "ref/netstandard1.6/System.Linq.dll": {
  2372. "related": ".xml"
  2373. }
  2374. },
  2375. "runtime": {
  2376. "lib/netstandard1.6/System.Linq.dll": {}
  2377. }
  2378. },
  2379. "System.Linq.Expressions/4.3.0": {
  2380. "type": "package",
  2381. "dependencies": {
  2382. "System.Collections": "4.3.0",
  2383. "System.Diagnostics.Debug": "4.3.0",
  2384. "System.Globalization": "4.3.0",
  2385. "System.IO": "4.3.0",
  2386. "System.Linq": "4.3.0",
  2387. "System.ObjectModel": "4.3.0",
  2388. "System.Reflection": "4.3.0",
  2389. "System.Reflection.Emit": "4.3.0",
  2390. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2391. "System.Reflection.Emit.Lightweight": "4.3.0",
  2392. "System.Reflection.Extensions": "4.3.0",
  2393. "System.Reflection.Primitives": "4.3.0",
  2394. "System.Reflection.TypeExtensions": "4.3.0",
  2395. "System.Resources.ResourceManager": "4.3.0",
  2396. "System.Runtime": "4.3.0",
  2397. "System.Runtime.Extensions": "4.3.0",
  2398. "System.Threading": "4.3.0"
  2399. },
  2400. "compile": {
  2401. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2402. "related": ".xml"
  2403. }
  2404. },
  2405. "runtime": {
  2406. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2407. }
  2408. },
  2409. "System.Memory/4.5.5": {
  2410. "type": "package",
  2411. "compile": {
  2412. "ref/netcoreapp2.1/_._": {}
  2413. },
  2414. "runtime": {
  2415. "lib/netcoreapp2.1/_._": {}
  2416. }
  2417. },
  2418. "System.Net.Http/4.3.2": {
  2419. "type": "package",
  2420. "dependencies": {
  2421. "Microsoft.NETCore.Platforms": "1.1.0",
  2422. "System.Collections": "4.3.0",
  2423. "System.Diagnostics.Debug": "4.3.0",
  2424. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2425. "System.Diagnostics.Tracing": "4.3.0",
  2426. "System.Globalization": "4.3.0",
  2427. "System.Globalization.Extensions": "4.3.0",
  2428. "System.IO": "4.3.0",
  2429. "System.IO.FileSystem": "4.3.0",
  2430. "System.Net.Primitives": "4.3.0",
  2431. "System.Resources.ResourceManager": "4.3.0",
  2432. "System.Runtime": "4.3.0",
  2433. "System.Runtime.Extensions": "4.3.0",
  2434. "System.Runtime.Handles": "4.3.0",
  2435. "System.Runtime.InteropServices": "4.3.0",
  2436. "System.Security.Cryptography.Algorithms": "4.3.0",
  2437. "System.Security.Cryptography.Encoding": "4.3.0",
  2438. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2439. "System.Security.Cryptography.Primitives": "4.3.0",
  2440. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2441. "System.Text.Encoding": "4.3.0",
  2442. "System.Threading": "4.3.0",
  2443. "System.Threading.Tasks": "4.3.0",
  2444. "runtime.native.System": "4.3.0",
  2445. "runtime.native.System.Net.Http": "4.3.0",
  2446. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2447. },
  2448. "compile": {
  2449. "ref/netstandard1.3/System.Net.Http.dll": {}
  2450. },
  2451. "runtimeTargets": {
  2452. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2453. "assetType": "runtime",
  2454. "rid": "unix"
  2455. },
  2456. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2457. "assetType": "runtime",
  2458. "rid": "win"
  2459. }
  2460. }
  2461. },
  2462. "System.Net.NameResolution/4.3.0": {
  2463. "type": "package",
  2464. "dependencies": {
  2465. "Microsoft.NETCore.Platforms": "1.1.0",
  2466. "System.Collections": "4.3.0",
  2467. "System.Diagnostics.Tracing": "4.3.0",
  2468. "System.Globalization": "4.3.0",
  2469. "System.Net.Primitives": "4.3.0",
  2470. "System.Resources.ResourceManager": "4.3.0",
  2471. "System.Runtime": "4.3.0",
  2472. "System.Runtime.Extensions": "4.3.0",
  2473. "System.Runtime.Handles": "4.3.0",
  2474. "System.Runtime.InteropServices": "4.3.0",
  2475. "System.Security.Principal.Windows": "4.3.0",
  2476. "System.Threading": "4.3.0",
  2477. "System.Threading.Tasks": "4.3.0",
  2478. "runtime.native.System": "4.3.0"
  2479. },
  2480. "compile": {
  2481. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2482. "related": ".xml"
  2483. }
  2484. },
  2485. "runtimeTargets": {
  2486. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2487. "assetType": "runtime",
  2488. "rid": "unix"
  2489. },
  2490. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2491. "assetType": "runtime",
  2492. "rid": "win"
  2493. }
  2494. }
  2495. },
  2496. "System.Net.Primitives/4.3.0": {
  2497. "type": "package",
  2498. "dependencies": {
  2499. "Microsoft.NETCore.Platforms": "1.1.0",
  2500. "Microsoft.NETCore.Targets": "1.1.0",
  2501. "System.Runtime": "4.3.0",
  2502. "System.Runtime.Handles": "4.3.0"
  2503. },
  2504. "compile": {
  2505. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2506. "related": ".xml"
  2507. }
  2508. }
  2509. },
  2510. "System.Net.Security/4.3.0": {
  2511. "type": "package",
  2512. "dependencies": {
  2513. "Microsoft.NETCore.Platforms": "1.1.0",
  2514. "Microsoft.Win32.Primitives": "4.3.0",
  2515. "System.Collections": "4.3.0",
  2516. "System.Collections.Concurrent": "4.3.0",
  2517. "System.Diagnostics.Tracing": "4.3.0",
  2518. "System.Globalization": "4.3.0",
  2519. "System.Globalization.Extensions": "4.3.0",
  2520. "System.IO": "4.3.0",
  2521. "System.Net.Primitives": "4.3.0",
  2522. "System.Resources.ResourceManager": "4.3.0",
  2523. "System.Runtime": "4.3.0",
  2524. "System.Runtime.Extensions": "4.3.0",
  2525. "System.Runtime.Handles": "4.3.0",
  2526. "System.Runtime.InteropServices": "4.3.0",
  2527. "System.Security.Claims": "4.3.0",
  2528. "System.Security.Cryptography.Algorithms": "4.3.0",
  2529. "System.Security.Cryptography.Encoding": "4.3.0",
  2530. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2531. "System.Security.Cryptography.Primitives": "4.3.0",
  2532. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2533. "System.Security.Principal": "4.3.0",
  2534. "System.Text.Encoding": "4.3.0",
  2535. "System.Threading": "4.3.0",
  2536. "System.Threading.Tasks": "4.3.0",
  2537. "System.Threading.ThreadPool": "4.3.0",
  2538. "runtime.native.System": "4.3.0",
  2539. "runtime.native.System.Net.Security": "4.3.0",
  2540. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2541. },
  2542. "compile": {
  2543. "ref/netstandard1.3/System.Net.Security.dll": {
  2544. "related": ".xml"
  2545. }
  2546. },
  2547. "runtimeTargets": {
  2548. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2549. "assetType": "runtime",
  2550. "rid": "unix"
  2551. },
  2552. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2553. "assetType": "runtime",
  2554. "rid": "win"
  2555. }
  2556. }
  2557. },
  2558. "System.Net.Sockets/4.3.0": {
  2559. "type": "package",
  2560. "dependencies": {
  2561. "Microsoft.NETCore.Platforms": "1.1.0",
  2562. "Microsoft.NETCore.Targets": "1.1.0",
  2563. "System.IO": "4.3.0",
  2564. "System.Net.Primitives": "4.3.0",
  2565. "System.Runtime": "4.3.0",
  2566. "System.Threading.Tasks": "4.3.0"
  2567. },
  2568. "compile": {
  2569. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2570. "related": ".xml"
  2571. }
  2572. }
  2573. },
  2574. "System.ObjectModel/4.3.0": {
  2575. "type": "package",
  2576. "dependencies": {
  2577. "System.Collections": "4.3.0",
  2578. "System.Diagnostics.Debug": "4.3.0",
  2579. "System.Resources.ResourceManager": "4.3.0",
  2580. "System.Runtime": "4.3.0",
  2581. "System.Threading": "4.3.0"
  2582. },
  2583. "compile": {
  2584. "ref/netstandard1.3/System.ObjectModel.dll": {
  2585. "related": ".xml"
  2586. }
  2587. },
  2588. "runtime": {
  2589. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2590. }
  2591. },
  2592. "System.Reflection/4.3.0": {
  2593. "type": "package",
  2594. "dependencies": {
  2595. "Microsoft.NETCore.Platforms": "1.1.0",
  2596. "Microsoft.NETCore.Targets": "1.1.0",
  2597. "System.IO": "4.3.0",
  2598. "System.Reflection.Primitives": "4.3.0",
  2599. "System.Runtime": "4.3.0"
  2600. },
  2601. "compile": {
  2602. "ref/netstandard1.5/System.Reflection.dll": {
  2603. "related": ".xml"
  2604. }
  2605. }
  2606. },
  2607. "System.Reflection.Emit/4.7.0": {
  2608. "type": "package",
  2609. "compile": {
  2610. "ref/netcoreapp2.0/_._": {}
  2611. },
  2612. "runtime": {
  2613. "lib/netcoreapp2.0/_._": {}
  2614. }
  2615. },
  2616. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2617. "type": "package",
  2618. "dependencies": {
  2619. "System.Reflection": "4.3.0",
  2620. "System.Reflection.Primitives": "4.3.0",
  2621. "System.Runtime": "4.3.0"
  2622. },
  2623. "compile": {
  2624. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2625. "related": ".xml"
  2626. }
  2627. },
  2628. "runtime": {
  2629. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2630. }
  2631. },
  2632. "System.Reflection.Emit.Lightweight/4.3.0": {
  2633. "type": "package",
  2634. "dependencies": {
  2635. "System.Reflection": "4.3.0",
  2636. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2637. "System.Reflection.Primitives": "4.3.0",
  2638. "System.Runtime": "4.3.0"
  2639. },
  2640. "compile": {
  2641. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2642. "related": ".xml"
  2643. }
  2644. },
  2645. "runtime": {
  2646. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2647. }
  2648. },
  2649. "System.Reflection.Extensions/4.3.0": {
  2650. "type": "package",
  2651. "dependencies": {
  2652. "Microsoft.NETCore.Platforms": "1.1.0",
  2653. "Microsoft.NETCore.Targets": "1.1.0",
  2654. "System.Reflection": "4.3.0",
  2655. "System.Runtime": "4.3.0"
  2656. },
  2657. "compile": {
  2658. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2659. "related": ".xml"
  2660. }
  2661. }
  2662. },
  2663. "System.Reflection.Primitives/4.3.0": {
  2664. "type": "package",
  2665. "dependencies": {
  2666. "Microsoft.NETCore.Platforms": "1.1.0",
  2667. "Microsoft.NETCore.Targets": "1.1.0",
  2668. "System.Runtime": "4.3.0"
  2669. },
  2670. "compile": {
  2671. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2672. "related": ".xml"
  2673. }
  2674. }
  2675. },
  2676. "System.Reflection.TypeExtensions/4.3.0": {
  2677. "type": "package",
  2678. "dependencies": {
  2679. "System.Reflection": "4.3.0",
  2680. "System.Runtime": "4.3.0"
  2681. },
  2682. "compile": {
  2683. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2684. "related": ".xml"
  2685. }
  2686. },
  2687. "runtime": {
  2688. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2689. }
  2690. },
  2691. "System.Resources.ResourceManager/4.3.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "Microsoft.NETCore.Platforms": "1.1.0",
  2695. "Microsoft.NETCore.Targets": "1.1.0",
  2696. "System.Globalization": "4.3.0",
  2697. "System.Reflection": "4.3.0",
  2698. "System.Runtime": "4.3.0"
  2699. },
  2700. "compile": {
  2701. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2702. "related": ".xml"
  2703. }
  2704. }
  2705. },
  2706. "System.Runtime/4.3.0": {
  2707. "type": "package",
  2708. "dependencies": {
  2709. "Microsoft.NETCore.Platforms": "1.1.0",
  2710. "Microsoft.NETCore.Targets": "1.1.0"
  2711. },
  2712. "compile": {
  2713. "ref/netstandard1.5/System.Runtime.dll": {
  2714. "related": ".xml"
  2715. }
  2716. }
  2717. },
  2718. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2719. "type": "package",
  2720. "compile": {
  2721. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2722. "related": ".xml"
  2723. }
  2724. },
  2725. "runtime": {
  2726. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2727. "related": ".xml"
  2728. }
  2729. }
  2730. },
  2731. "System.Runtime.Extensions/4.3.0": {
  2732. "type": "package",
  2733. "dependencies": {
  2734. "Microsoft.NETCore.Platforms": "1.1.0",
  2735. "Microsoft.NETCore.Targets": "1.1.0",
  2736. "System.Runtime": "4.3.0"
  2737. },
  2738. "compile": {
  2739. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2740. "related": ".xml"
  2741. }
  2742. }
  2743. },
  2744. "System.Runtime.Handles/4.3.0": {
  2745. "type": "package",
  2746. "dependencies": {
  2747. "Microsoft.NETCore.Platforms": "1.1.0",
  2748. "Microsoft.NETCore.Targets": "1.1.0",
  2749. "System.Runtime": "4.3.0"
  2750. },
  2751. "compile": {
  2752. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2753. "related": ".xml"
  2754. }
  2755. }
  2756. },
  2757. "System.Runtime.InteropServices/4.3.0": {
  2758. "type": "package",
  2759. "dependencies": {
  2760. "Microsoft.NETCore.Platforms": "1.1.0",
  2761. "Microsoft.NETCore.Targets": "1.1.0",
  2762. "System.Reflection": "4.3.0",
  2763. "System.Reflection.Primitives": "4.3.0",
  2764. "System.Runtime": "4.3.0",
  2765. "System.Runtime.Handles": "4.3.0"
  2766. },
  2767. "compile": {
  2768. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2769. }
  2770. },
  2771. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2772. "type": "package",
  2773. "dependencies": {
  2774. "System.Reflection": "4.3.0",
  2775. "System.Reflection.Extensions": "4.3.0",
  2776. "System.Resources.ResourceManager": "4.3.0",
  2777. "System.Runtime": "4.3.0",
  2778. "System.Runtime.InteropServices": "4.3.0",
  2779. "System.Threading": "4.3.0",
  2780. "runtime.native.System": "4.3.0"
  2781. },
  2782. "compile": {
  2783. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2784. },
  2785. "runtime": {
  2786. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2787. },
  2788. "runtimeTargets": {
  2789. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2790. "assetType": "runtime",
  2791. "rid": "unix"
  2792. },
  2793. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2794. "assetType": "runtime",
  2795. "rid": "win"
  2796. }
  2797. }
  2798. },
  2799. "System.Runtime.Numerics/4.3.0": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Globalization": "4.3.0",
  2803. "System.Resources.ResourceManager": "4.3.0",
  2804. "System.Runtime": "4.3.0",
  2805. "System.Runtime.Extensions": "4.3.0"
  2806. },
  2807. "compile": {
  2808. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2809. "related": ".xml"
  2810. }
  2811. },
  2812. "runtime": {
  2813. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2814. }
  2815. },
  2816. "System.Security.AccessControl/6.0.0": {
  2817. "type": "package",
  2818. "dependencies": {
  2819. "System.Security.Principal.Windows": "5.0.0"
  2820. },
  2821. "compile": {
  2822. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2823. "related": ".xml"
  2824. }
  2825. },
  2826. "runtime": {
  2827. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2828. "related": ".xml"
  2829. }
  2830. },
  2831. "build": {
  2832. "buildTransitive/netcoreapp3.1/_._": {}
  2833. },
  2834. "runtimeTargets": {
  2835. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  2836. "assetType": "runtime",
  2837. "rid": "win"
  2838. }
  2839. }
  2840. },
  2841. "System.Security.Claims/4.3.0": {
  2842. "type": "package",
  2843. "dependencies": {
  2844. "System.Collections": "4.3.0",
  2845. "System.Globalization": "4.3.0",
  2846. "System.IO": "4.3.0",
  2847. "System.Resources.ResourceManager": "4.3.0",
  2848. "System.Runtime": "4.3.0",
  2849. "System.Runtime.Extensions": "4.3.0",
  2850. "System.Security.Principal": "4.3.0"
  2851. },
  2852. "compile": {
  2853. "ref/netstandard1.3/_._": {
  2854. "related": ".xml"
  2855. }
  2856. },
  2857. "runtime": {
  2858. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2859. }
  2860. },
  2861. "System.Security.Cryptography.Algorithms/4.3.0": {
  2862. "type": "package",
  2863. "dependencies": {
  2864. "Microsoft.NETCore.Platforms": "1.1.0",
  2865. "System.Collections": "4.3.0",
  2866. "System.IO": "4.3.0",
  2867. "System.Resources.ResourceManager": "4.3.0",
  2868. "System.Runtime": "4.3.0",
  2869. "System.Runtime.Extensions": "4.3.0",
  2870. "System.Runtime.Handles": "4.3.0",
  2871. "System.Runtime.InteropServices": "4.3.0",
  2872. "System.Runtime.Numerics": "4.3.0",
  2873. "System.Security.Cryptography.Encoding": "4.3.0",
  2874. "System.Security.Cryptography.Primitives": "4.3.0",
  2875. "System.Text.Encoding": "4.3.0",
  2876. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2877. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2878. },
  2879. "compile": {
  2880. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2881. },
  2882. "runtimeTargets": {
  2883. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2884. "assetType": "runtime",
  2885. "rid": "osx"
  2886. },
  2887. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2888. "assetType": "runtime",
  2889. "rid": "unix"
  2890. },
  2891. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2892. "assetType": "runtime",
  2893. "rid": "win"
  2894. }
  2895. }
  2896. },
  2897. "System.Security.Cryptography.Cng/5.0.0": {
  2898. "type": "package",
  2899. "dependencies": {
  2900. "System.Formats.Asn1": "5.0.0"
  2901. },
  2902. "compile": {
  2903. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2904. "related": ".xml"
  2905. }
  2906. },
  2907. "runtime": {
  2908. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2909. "related": ".xml"
  2910. }
  2911. },
  2912. "runtimeTargets": {
  2913. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2914. "assetType": "runtime",
  2915. "rid": "win"
  2916. }
  2917. }
  2918. },
  2919. "System.Security.Cryptography.Csp/4.3.0": {
  2920. "type": "package",
  2921. "dependencies": {
  2922. "Microsoft.NETCore.Platforms": "1.1.0",
  2923. "System.IO": "4.3.0",
  2924. "System.Reflection": "4.3.0",
  2925. "System.Resources.ResourceManager": "4.3.0",
  2926. "System.Runtime": "4.3.0",
  2927. "System.Runtime.Extensions": "4.3.0",
  2928. "System.Runtime.Handles": "4.3.0",
  2929. "System.Runtime.InteropServices": "4.3.0",
  2930. "System.Security.Cryptography.Algorithms": "4.3.0",
  2931. "System.Security.Cryptography.Encoding": "4.3.0",
  2932. "System.Security.Cryptography.Primitives": "4.3.0",
  2933. "System.Text.Encoding": "4.3.0",
  2934. "System.Threading": "4.3.0"
  2935. },
  2936. "compile": {
  2937. "ref/netstandard1.3/_._": {}
  2938. },
  2939. "runtimeTargets": {
  2940. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2941. "assetType": "runtime",
  2942. "rid": "unix"
  2943. },
  2944. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2945. "assetType": "runtime",
  2946. "rid": "win"
  2947. }
  2948. }
  2949. },
  2950. "System.Security.Cryptography.Encoding/4.3.0": {
  2951. "type": "package",
  2952. "dependencies": {
  2953. "Microsoft.NETCore.Platforms": "1.1.0",
  2954. "System.Collections": "4.3.0",
  2955. "System.Collections.Concurrent": "4.3.0",
  2956. "System.Linq": "4.3.0",
  2957. "System.Resources.ResourceManager": "4.3.0",
  2958. "System.Runtime": "4.3.0",
  2959. "System.Runtime.Extensions": "4.3.0",
  2960. "System.Runtime.Handles": "4.3.0",
  2961. "System.Runtime.InteropServices": "4.3.0",
  2962. "System.Security.Cryptography.Primitives": "4.3.0",
  2963. "System.Text.Encoding": "4.3.0",
  2964. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2965. },
  2966. "compile": {
  2967. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2968. "related": ".xml"
  2969. }
  2970. },
  2971. "runtimeTargets": {
  2972. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2973. "assetType": "runtime",
  2974. "rid": "unix"
  2975. },
  2976. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2977. "assetType": "runtime",
  2978. "rid": "win"
  2979. }
  2980. }
  2981. },
  2982. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2983. "type": "package",
  2984. "dependencies": {
  2985. "System.Collections": "4.3.0",
  2986. "System.IO": "4.3.0",
  2987. "System.Resources.ResourceManager": "4.3.0",
  2988. "System.Runtime": "4.3.0",
  2989. "System.Runtime.Extensions": "4.3.0",
  2990. "System.Runtime.Handles": "4.3.0",
  2991. "System.Runtime.InteropServices": "4.3.0",
  2992. "System.Runtime.Numerics": "4.3.0",
  2993. "System.Security.Cryptography.Algorithms": "4.3.0",
  2994. "System.Security.Cryptography.Encoding": "4.3.0",
  2995. "System.Security.Cryptography.Primitives": "4.3.0",
  2996. "System.Text.Encoding": "4.3.0",
  2997. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2998. },
  2999. "compile": {
  3000. "ref/netstandard1.6/_._": {}
  3001. },
  3002. "runtime": {
  3003. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3004. },
  3005. "runtimeTargets": {
  3006. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3007. "assetType": "runtime",
  3008. "rid": "unix"
  3009. }
  3010. }
  3011. },
  3012. "System.Security.Cryptography.Pkcs/6.0.1": {
  3013. "type": "package",
  3014. "dependencies": {
  3015. "System.Formats.Asn1": "6.0.0",
  3016. "System.Security.Cryptography.Cng": "5.0.0"
  3017. },
  3018. "compile": {
  3019. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3020. "related": ".xml"
  3021. }
  3022. },
  3023. "runtime": {
  3024. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3025. "related": ".xml"
  3026. }
  3027. },
  3028. "build": {
  3029. "buildTransitive/netcoreapp3.1/_._": {}
  3030. },
  3031. "runtimeTargets": {
  3032. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3033. "assetType": "runtime",
  3034. "rid": "win"
  3035. }
  3036. }
  3037. },
  3038. "System.Security.Cryptography.Primitives/4.3.0": {
  3039. "type": "package",
  3040. "dependencies": {
  3041. "System.Diagnostics.Debug": "4.3.0",
  3042. "System.Globalization": "4.3.0",
  3043. "System.IO": "4.3.0",
  3044. "System.Resources.ResourceManager": "4.3.0",
  3045. "System.Runtime": "4.3.0",
  3046. "System.Threading": "4.3.0",
  3047. "System.Threading.Tasks": "4.3.0"
  3048. },
  3049. "compile": {
  3050. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3051. },
  3052. "runtime": {
  3053. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3054. }
  3055. },
  3056. "System.Security.Cryptography.ProtectedData/6.0.0": {
  3057. "type": "package",
  3058. "dependencies": {
  3059. "System.Memory": "4.5.4"
  3060. },
  3061. "compile": {
  3062. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3063. "related": ".xml"
  3064. }
  3065. },
  3066. "runtime": {
  3067. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3068. "related": ".xml"
  3069. }
  3070. },
  3071. "build": {
  3072. "buildTransitive/netcoreapp3.1/_._": {}
  3073. },
  3074. "runtimeTargets": {
  3075. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3076. "assetType": "runtime",
  3077. "rid": "win"
  3078. }
  3079. }
  3080. },
  3081. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3082. "type": "package",
  3083. "dependencies": {
  3084. "Microsoft.NETCore.Platforms": "1.1.0",
  3085. "System.Collections": "4.3.0",
  3086. "System.Diagnostics.Debug": "4.3.0",
  3087. "System.Globalization": "4.3.0",
  3088. "System.Globalization.Calendars": "4.3.0",
  3089. "System.IO": "4.3.0",
  3090. "System.IO.FileSystem": "4.3.0",
  3091. "System.IO.FileSystem.Primitives": "4.3.0",
  3092. "System.Resources.ResourceManager": "4.3.0",
  3093. "System.Runtime": "4.3.0",
  3094. "System.Runtime.Extensions": "4.3.0",
  3095. "System.Runtime.Handles": "4.3.0",
  3096. "System.Runtime.InteropServices": "4.3.0",
  3097. "System.Runtime.Numerics": "4.3.0",
  3098. "System.Security.Cryptography.Algorithms": "4.3.0",
  3099. "System.Security.Cryptography.Cng": "4.3.0",
  3100. "System.Security.Cryptography.Csp": "4.3.0",
  3101. "System.Security.Cryptography.Encoding": "4.3.0",
  3102. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3103. "System.Security.Cryptography.Primitives": "4.3.0",
  3104. "System.Text.Encoding": "4.3.0",
  3105. "System.Threading": "4.3.0",
  3106. "runtime.native.System": "4.3.0",
  3107. "runtime.native.System.Net.Http": "4.3.0",
  3108. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3109. },
  3110. "compile": {
  3111. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3112. "related": ".xml"
  3113. }
  3114. },
  3115. "runtimeTargets": {
  3116. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3117. "assetType": "runtime",
  3118. "rid": "unix"
  3119. },
  3120. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3121. "assetType": "runtime",
  3122. "rid": "win"
  3123. }
  3124. }
  3125. },
  3126. "System.Security.Cryptography.Xml/6.0.1": {
  3127. "type": "package",
  3128. "dependencies": {
  3129. "System.Memory": "4.5.4",
  3130. "System.Security.AccessControl": "6.0.0",
  3131. "System.Security.Cryptography.Pkcs": "6.0.1"
  3132. },
  3133. "compile": {
  3134. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3135. "related": ".xml"
  3136. }
  3137. },
  3138. "runtime": {
  3139. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3140. "related": ".xml"
  3141. }
  3142. },
  3143. "build": {
  3144. "buildTransitive/netcoreapp3.1/_._": {}
  3145. }
  3146. },
  3147. "System.Security.Permissions/6.0.0": {
  3148. "type": "package",
  3149. "dependencies": {
  3150. "System.Security.AccessControl": "6.0.0",
  3151. "System.Windows.Extensions": "6.0.0"
  3152. },
  3153. "compile": {
  3154. "lib/net5.0/System.Security.Permissions.dll": {
  3155. "related": ".xml"
  3156. }
  3157. },
  3158. "runtime": {
  3159. "lib/net5.0/System.Security.Permissions.dll": {
  3160. "related": ".xml"
  3161. }
  3162. },
  3163. "build": {
  3164. "buildTransitive/netcoreapp3.1/_._": {}
  3165. }
  3166. },
  3167. "System.Security.Principal/4.3.0": {
  3168. "type": "package",
  3169. "dependencies": {
  3170. "System.Runtime": "4.3.0"
  3171. },
  3172. "compile": {
  3173. "ref/netstandard1.0/System.Security.Principal.dll": {
  3174. "related": ".xml"
  3175. }
  3176. },
  3177. "runtime": {
  3178. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3179. }
  3180. },
  3181. "System.Security.Principal.Windows/5.0.0": {
  3182. "type": "package",
  3183. "compile": {
  3184. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3185. "related": ".xml"
  3186. }
  3187. },
  3188. "runtime": {
  3189. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3190. "related": ".xml"
  3191. }
  3192. },
  3193. "runtimeTargets": {
  3194. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3195. "assetType": "runtime",
  3196. "rid": "unix"
  3197. },
  3198. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3199. "assetType": "runtime",
  3200. "rid": "win"
  3201. }
  3202. }
  3203. },
  3204. "System.Text.Encoding/4.3.0": {
  3205. "type": "package",
  3206. "dependencies": {
  3207. "Microsoft.NETCore.Platforms": "1.1.0",
  3208. "Microsoft.NETCore.Targets": "1.1.0",
  3209. "System.Runtime": "4.3.0"
  3210. },
  3211. "compile": {
  3212. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3213. "related": ".xml"
  3214. }
  3215. }
  3216. },
  3217. "System.Text.Encoding.CodePages/5.0.0": {
  3218. "type": "package",
  3219. "dependencies": {
  3220. "Microsoft.NETCore.Platforms": "5.0.0"
  3221. },
  3222. "compile": {
  3223. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3224. "related": ".xml"
  3225. }
  3226. },
  3227. "runtime": {
  3228. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3229. "related": ".xml"
  3230. }
  3231. },
  3232. "runtimeTargets": {
  3233. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3234. "assetType": "runtime",
  3235. "rid": "win"
  3236. }
  3237. }
  3238. },
  3239. "System.Text.Encoding.Extensions/4.3.0": {
  3240. "type": "package",
  3241. "dependencies": {
  3242. "Microsoft.NETCore.Platforms": "1.1.0",
  3243. "Microsoft.NETCore.Targets": "1.1.0",
  3244. "System.Runtime": "4.3.0",
  3245. "System.Text.Encoding": "4.3.0"
  3246. },
  3247. "compile": {
  3248. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3249. "related": ".xml"
  3250. }
  3251. }
  3252. },
  3253. "System.Text.Encodings.Web/4.5.0": {
  3254. "type": "package",
  3255. "compile": {
  3256. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3257. "related": ".xml"
  3258. }
  3259. },
  3260. "runtime": {
  3261. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3262. "related": ".xml"
  3263. }
  3264. }
  3265. },
  3266. "System.Text.RegularExpressions/4.3.0": {
  3267. "type": "package",
  3268. "dependencies": {
  3269. "System.Runtime": "4.3.0"
  3270. },
  3271. "compile": {
  3272. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3273. },
  3274. "runtime": {
  3275. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3276. }
  3277. },
  3278. "System.Threading/4.3.0": {
  3279. "type": "package",
  3280. "dependencies": {
  3281. "System.Runtime": "4.3.0",
  3282. "System.Threading.Tasks": "4.3.0"
  3283. },
  3284. "compile": {
  3285. "ref/netstandard1.3/System.Threading.dll": {
  3286. "related": ".xml"
  3287. }
  3288. },
  3289. "runtime": {
  3290. "lib/netstandard1.3/System.Threading.dll": {}
  3291. }
  3292. },
  3293. "System.Threading.Channels/7.0.0": {
  3294. "type": "package",
  3295. "compile": {
  3296. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3297. "related": ".xml"
  3298. }
  3299. },
  3300. "runtime": {
  3301. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3302. "related": ".xml"
  3303. }
  3304. },
  3305. "build": {
  3306. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3307. }
  3308. },
  3309. "System.Threading.Tasks/4.3.0": {
  3310. "type": "package",
  3311. "dependencies": {
  3312. "Microsoft.NETCore.Platforms": "1.1.0",
  3313. "Microsoft.NETCore.Targets": "1.1.0",
  3314. "System.Runtime": "4.3.0"
  3315. },
  3316. "compile": {
  3317. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3318. "related": ".xml"
  3319. }
  3320. }
  3321. },
  3322. "System.Threading.Tasks.Extensions/4.3.0": {
  3323. "type": "package",
  3324. "dependencies": {
  3325. "System.Collections": "4.3.0",
  3326. "System.Runtime": "4.3.0",
  3327. "System.Threading.Tasks": "4.3.0"
  3328. },
  3329. "compile": {
  3330. "lib/netstandard1.0/_._": {
  3331. "related": ".xml"
  3332. }
  3333. },
  3334. "runtime": {
  3335. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  3336. "related": ".xml"
  3337. }
  3338. }
  3339. },
  3340. "System.Threading.Thread/4.3.0": {
  3341. "type": "package",
  3342. "dependencies": {
  3343. "System.Runtime": "4.3.0"
  3344. },
  3345. "compile": {
  3346. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3347. "related": ".xml"
  3348. }
  3349. },
  3350. "runtime": {
  3351. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3352. }
  3353. },
  3354. "System.Threading.ThreadPool/4.3.0": {
  3355. "type": "package",
  3356. "dependencies": {
  3357. "System.Runtime": "4.3.0",
  3358. "System.Runtime.Handles": "4.3.0"
  3359. },
  3360. "compile": {
  3361. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3362. "related": ".xml"
  3363. }
  3364. },
  3365. "runtime": {
  3366. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3367. }
  3368. },
  3369. "System.Threading.Timer/4.3.0": {
  3370. "type": "package",
  3371. "dependencies": {
  3372. "Microsoft.NETCore.Platforms": "1.1.0",
  3373. "Microsoft.NETCore.Targets": "1.1.0",
  3374. "System.Runtime": "4.3.0"
  3375. },
  3376. "compile": {
  3377. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3378. "related": ".xml"
  3379. }
  3380. }
  3381. },
  3382. "System.Windows.Extensions/6.0.0": {
  3383. "type": "package",
  3384. "dependencies": {
  3385. "System.Drawing.Common": "6.0.0"
  3386. },
  3387. "compile": {
  3388. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3389. "related": ".xml"
  3390. }
  3391. },
  3392. "runtime": {
  3393. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3394. "related": ".xml"
  3395. }
  3396. },
  3397. "runtimeTargets": {
  3398. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3399. "assetType": "runtime",
  3400. "rid": "win"
  3401. }
  3402. }
  3403. },
  3404. "System.Xml.ReaderWriter/4.3.0": {
  3405. "type": "package",
  3406. "dependencies": {
  3407. "System.Collections": "4.3.0",
  3408. "System.Diagnostics.Debug": "4.3.0",
  3409. "System.Globalization": "4.3.0",
  3410. "System.IO": "4.3.0",
  3411. "System.IO.FileSystem": "4.3.0",
  3412. "System.IO.FileSystem.Primitives": "4.3.0",
  3413. "System.Resources.ResourceManager": "4.3.0",
  3414. "System.Runtime": "4.3.0",
  3415. "System.Runtime.Extensions": "4.3.0",
  3416. "System.Runtime.InteropServices": "4.3.0",
  3417. "System.Text.Encoding": "4.3.0",
  3418. "System.Text.Encoding.Extensions": "4.3.0",
  3419. "System.Text.RegularExpressions": "4.3.0",
  3420. "System.Threading.Tasks": "4.3.0",
  3421. "System.Threading.Tasks.Extensions": "4.3.0"
  3422. },
  3423. "compile": {
  3424. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3425. "related": ".xml"
  3426. }
  3427. },
  3428. "runtime": {
  3429. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3430. }
  3431. },
  3432. "System.Xml.XDocument/4.3.0": {
  3433. "type": "package",
  3434. "dependencies": {
  3435. "System.Collections": "4.3.0",
  3436. "System.Diagnostics.Debug": "4.3.0",
  3437. "System.Diagnostics.Tools": "4.3.0",
  3438. "System.Globalization": "4.3.0",
  3439. "System.IO": "4.3.0",
  3440. "System.Reflection": "4.3.0",
  3441. "System.Resources.ResourceManager": "4.3.0",
  3442. "System.Runtime": "4.3.0",
  3443. "System.Runtime.Extensions": "4.3.0",
  3444. "System.Text.Encoding": "4.3.0",
  3445. "System.Threading": "4.3.0",
  3446. "System.Xml.ReaderWriter": "4.3.0"
  3447. },
  3448. "compile": {
  3449. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3450. "related": ".xml"
  3451. }
  3452. },
  3453. "runtime": {
  3454. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3455. }
  3456. },
  3457. "System.Xml.XmlDocument/4.3.0": {
  3458. "type": "package",
  3459. "dependencies": {
  3460. "System.Collections": "4.3.0",
  3461. "System.Diagnostics.Debug": "4.3.0",
  3462. "System.Globalization": "4.3.0",
  3463. "System.IO": "4.3.0",
  3464. "System.Resources.ResourceManager": "4.3.0",
  3465. "System.Runtime": "4.3.0",
  3466. "System.Runtime.Extensions": "4.3.0",
  3467. "System.Text.Encoding": "4.3.0",
  3468. "System.Threading": "4.3.0",
  3469. "System.Xml.ReaderWriter": "4.3.0"
  3470. },
  3471. "compile": {
  3472. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3473. "related": ".xml"
  3474. }
  3475. },
  3476. "runtime": {
  3477. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3478. }
  3479. },
  3480. "UAParser/3.1.47": {
  3481. "type": "package",
  3482. "compile": {
  3483. "lib/netcoreapp2.0/UAParser.dll": {
  3484. "related": ".xml"
  3485. }
  3486. },
  3487. "runtime": {
  3488. "lib/netcoreapp2.0/UAParser.dll": {
  3489. "related": ".xml"
  3490. }
  3491. }
  3492. },
  3493. "ZXing.Net/0.16.9": {
  3494. "type": "package",
  3495. "compile": {
  3496. "lib/net5.0/zxing.dll": {
  3497. "related": ".XML"
  3498. }
  3499. },
  3500. "runtime": {
  3501. "lib/net5.0/zxing.dll": {
  3502. "related": ".XML"
  3503. }
  3504. }
  3505. },
  3506. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3507. "type": "package",
  3508. "dependencies": {
  3509. "SixLabors.ImageSharp": "2.1.3",
  3510. "ZXing.Net": "0.16.9"
  3511. },
  3512. "compile": {
  3513. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3514. "related": ".pdb;.xml"
  3515. }
  3516. },
  3517. "runtime": {
  3518. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3519. "related": ".pdb;.xml"
  3520. }
  3521. }
  3522. },
  3523. "Ropin.Core.Common/1.0.0": {
  3524. "type": "project",
  3525. "framework": ".NETCoreApp,Version=v5.0",
  3526. "dependencies": {
  3527. "Coravel": "4.2.1",
  3528. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3529. "Newtonsoft.Json": "13.0.1",
  3530. "QRCoder": "1.4.3",
  3531. "SixLabors.ImageSharp": "2.1.6",
  3532. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3533. },
  3534. "compile": {
  3535. "bin/placeholder/Ropin.Core.Common.dll": {}
  3536. },
  3537. "runtime": {
  3538. "bin/placeholder/Ropin.Core.Common.dll": {}
  3539. }
  3540. },
  3541. "Ropin.Core.Extensions/1.0.0": {
  3542. "type": "project",
  3543. "framework": ".NETCoreApp,Version=v5.0",
  3544. "dependencies": {
  3545. "Autofac": "6.2.0",
  3546. "Autofac.Extras.DynamicProxy": "6.0.0",
  3547. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3548. "Ropin.Core.Common": "1.0.0",
  3549. "Ropin.Inspection.Common": "1.0.0",
  3550. "Ropin.Inspection.Service": "1.0.0",
  3551. "Ropin.Inspection.Tasks": "1.0.0",
  3552. "StackExchange.Redis": "1.2.4",
  3553. "log4net": "2.0.17"
  3554. },
  3555. "compile": {
  3556. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3557. },
  3558. "runtime": {
  3559. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3560. }
  3561. },
  3562. "Ropin.Inspection.Common/1.0.0": {
  3563. "type": "project",
  3564. "framework": ".NETCoreApp,Version=v5.0",
  3565. "dependencies": {
  3566. "FluentEmail.Smtp": "3.0.2",
  3567. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3568. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3569. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3570. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3571. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3572. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3573. "Microsoft.Extensions.Configuration": "5.0.0",
  3574. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3575. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3576. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3577. "Microsoft.Extensions.Http": "5.0.0",
  3578. "Newtonsoft.Json": "13.0.1",
  3579. "RabbitMQ.Client": "6.8.1",
  3580. "log4net": "2.0.17"
  3581. },
  3582. "compile": {
  3583. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3584. },
  3585. "runtime": {
  3586. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3587. }
  3588. },
  3589. "Ropin.Inspection.Model/1.0.0": {
  3590. "type": "project",
  3591. "framework": ".NETCoreApp,Version=v5.0",
  3592. "dependencies": {
  3593. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3594. "Microsoft.EntityFrameworkCore": "5.0.0",
  3595. "MySql.Data": "8.0.23",
  3596. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3597. "Ropin.Inspection.Common": "1.0.0"
  3598. },
  3599. "compile": {
  3600. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3601. },
  3602. "runtime": {
  3603. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3604. }
  3605. },
  3606. "Ropin.Inspection.Repository/1.0.0": {
  3607. "type": "project",
  3608. "framework": ".NETCoreApp,Version=v5.0",
  3609. "dependencies": {
  3610. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3611. "Microsoft.EntityFrameworkCore": "5.0.0",
  3612. "Ropin.Inspection.Model": "1.0.0"
  3613. },
  3614. "compile": {
  3615. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3616. },
  3617. "runtime": {
  3618. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3619. }
  3620. },
  3621. "Ropin.Inspection.Service/1.0.0": {
  3622. "type": "project",
  3623. "framework": ".NETCoreApp,Version=v5.0",
  3624. "dependencies": {
  3625. "AutoMapper": "10.1.1",
  3626. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3627. "Newtonsoft.Json": "13.0.1",
  3628. "Ropin.Core.Common": "1.0.0",
  3629. "Ropin.Inspection.Common": "1.0.0",
  3630. "Ropin.Inspection.Model": "1.0.0",
  3631. "Ropin.Inspection.Repository": "1.0.0",
  3632. "log4net": "2.0.17"
  3633. },
  3634. "compile": {
  3635. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3636. },
  3637. "runtime": {
  3638. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3639. }
  3640. },
  3641. "Ropin.Inspection.Tasks/1.0.0": {
  3642. "type": "project",
  3643. "framework": ".NETCoreApp,Version=v5.0",
  3644. "dependencies": {
  3645. "Quartz": "3.3.3",
  3646. "Ropin.Inspection.Common": "1.0.0",
  3647. "Ropin.Inspection.Model": "1.0.0",
  3648. "Ropin.Inspection.Service": "1.0.0"
  3649. },
  3650. "compile": {
  3651. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3652. },
  3653. "runtime": {
  3654. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3655. }
  3656. }
  3657. }
  3658. },
  3659. "libraries": {
  3660. "AdvancedStringBuilder/0.1.0": {
  3661. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3662. "type": "package",
  3663. "path": "advancedstringbuilder/0.1.0",
  3664. "files": [
  3665. ".nupkg.metadata",
  3666. ".signature.p7s",
  3667. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3668. "advancedstringbuilder.nuspec",
  3669. "lib/net40-client/AdvancedStringBuilder.dll",
  3670. "lib/net40-client/AdvancedStringBuilder.xml",
  3671. "lib/net45/AdvancedStringBuilder.dll",
  3672. "lib/net45/AdvancedStringBuilder.xml",
  3673. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3674. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3675. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3676. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3677. ]
  3678. },
  3679. "Autofac/6.2.0": {
  3680. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3681. "type": "package",
  3682. "path": "autofac/6.2.0",
  3683. "files": [
  3684. ".nupkg.metadata",
  3685. ".signature.p7s",
  3686. "autofac.6.2.0.nupkg.sha512",
  3687. "autofac.nuspec",
  3688. "icon.png",
  3689. "lib/net5.0/Autofac.dll",
  3690. "lib/net5.0/Autofac.pdb",
  3691. "lib/net5.0/Autofac.xml",
  3692. "lib/netstandard2.0/Autofac.dll",
  3693. "lib/netstandard2.0/Autofac.pdb",
  3694. "lib/netstandard2.0/Autofac.xml",
  3695. "lib/netstandard2.1/Autofac.dll",
  3696. "lib/netstandard2.1/Autofac.pdb",
  3697. "lib/netstandard2.1/Autofac.xml"
  3698. ]
  3699. },
  3700. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3701. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3702. "type": "package",
  3703. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3704. "files": [
  3705. ".nupkg.metadata",
  3706. ".signature.p7s",
  3707. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3708. "autofac.extensions.dependencyinjection.nuspec",
  3709. "icon.png",
  3710. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3711. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3712. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3713. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3714. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3715. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3716. ]
  3717. },
  3718. "Autofac.Extras.DynamicProxy/6.0.0": {
  3719. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3720. "type": "package",
  3721. "path": "autofac.extras.dynamicproxy/6.0.0",
  3722. "files": [
  3723. ".nupkg.metadata",
  3724. ".signature.p7s",
  3725. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3726. "autofac.extras.dynamicproxy.nuspec",
  3727. "icon.png",
  3728. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3729. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3730. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3731. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3732. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3733. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3734. ]
  3735. },
  3736. "AutoMapper/10.1.1": {
  3737. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3738. "type": "package",
  3739. "path": "automapper/10.1.1",
  3740. "files": [
  3741. ".nupkg.metadata",
  3742. ".signature.p7s",
  3743. "automapper.10.1.1.nupkg.sha512",
  3744. "automapper.nuspec",
  3745. "icon.png",
  3746. "lib/net461/AutoMapper.dll",
  3747. "lib/net461/AutoMapper.xml",
  3748. "lib/netstandard2.0/AutoMapper.dll",
  3749. "lib/netstandard2.0/AutoMapper.xml"
  3750. ]
  3751. },
  3752. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  3753. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  3754. "type": "package",
  3755. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  3756. "files": [
  3757. ".nupkg.metadata",
  3758. ".signature.p7s",
  3759. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  3760. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  3761. "icon.png",
  3762. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  3763. ]
  3764. },
  3765. "BouncyCastle.Cryptography/2.2.1": {
  3766. "sha512": "A6Zr52zVqJKt18ZBsTnX0qhG0kwIQftVAjLmszmkiR/trSp8H+xj1gUOzk7XHwaKgyREMSV1v9XaKrBUeIOdvQ==",
  3767. "type": "package",
  3768. "path": "bouncycastle.cryptography/2.2.1",
  3769. "files": [
  3770. ".nupkg.metadata",
  3771. ".signature.p7s",
  3772. "LICENSE.md",
  3773. "README.md",
  3774. "bouncycastle.cryptography.2.2.1.nupkg.sha512",
  3775. "bouncycastle.cryptography.nuspec",
  3776. "lib/net461/BouncyCastle.Cryptography.dll",
  3777. "lib/net461/BouncyCastle.Cryptography.xml",
  3778. "lib/net6.0/BouncyCastle.Cryptography.dll",
  3779. "lib/net6.0/BouncyCastle.Cryptography.xml",
  3780. "lib/netstandard2.0/BouncyCastle.Cryptography.dll",
  3781. "lib/netstandard2.0/BouncyCastle.Cryptography.xml",
  3782. "packageIcon.png"
  3783. ]
  3784. },
  3785. "BouncyCastle.NetCore/1.8.5": {
  3786. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3787. "type": "package",
  3788. "path": "bouncycastle.netcore/1.8.5",
  3789. "files": [
  3790. ".nupkg.metadata",
  3791. ".signature.p7s",
  3792. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3793. "bouncycastle.netcore.nuspec",
  3794. "lib/Mono/BouncyCastle.Crypto.dll",
  3795. "lib/Mono/BouncyCastle.Crypto.xml",
  3796. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3797. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3798. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3799. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3800. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3801. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3802. "lib/net20/BouncyCastle.Crypto.dll",
  3803. "lib/net20/BouncyCastle.Crypto.xml",
  3804. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3805. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3806. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3807. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3808. ]
  3809. },
  3810. "Castle.Core/4.4.0": {
  3811. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3812. "type": "package",
  3813. "path": "castle.core/4.4.0",
  3814. "files": [
  3815. ".nupkg.metadata",
  3816. ".signature.p7s",
  3817. "ASL - Apache Software Foundation License.txt",
  3818. "CHANGELOG.md",
  3819. "LICENSE",
  3820. "castle.core.4.4.0.nupkg.sha512",
  3821. "castle.core.nuspec",
  3822. "lib/net35/Castle.Core.dll",
  3823. "lib/net35/Castle.Core.xml",
  3824. "lib/net40/Castle.Core.dll",
  3825. "lib/net40/Castle.Core.xml",
  3826. "lib/net45/Castle.Core.dll",
  3827. "lib/net45/Castle.Core.xml",
  3828. "lib/netstandard1.3/Castle.Core.dll",
  3829. "lib/netstandard1.3/Castle.Core.xml",
  3830. "lib/netstandard1.5/Castle.Core.dll",
  3831. "lib/netstandard1.5/Castle.Core.xml",
  3832. "readme.txt"
  3833. ]
  3834. },
  3835. "Coravel/4.2.1": {
  3836. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3837. "type": "package",
  3838. "path": "coravel/4.2.1",
  3839. "files": [
  3840. ".nupkg.metadata",
  3841. ".signature.p7s",
  3842. "coravel.4.2.1.nupkg.sha512",
  3843. "coravel.nuspec",
  3844. "lib/netstandard2.0/Coravel.dll",
  3845. "lib/netstandard2.0/Coravel.xml",
  3846. "logo.png",
  3847. "readme.md"
  3848. ]
  3849. },
  3850. "Enums.NET/4.0.1": {
  3851. "sha512": "OUGCd5L8zHZ61GAf436G0gf/H6yrSUkEpV5vm2CbCUuz9Rx7iLFLP5iHSSfmOtqNpuyo4vYte0CvYEmPZXRmRQ==",
  3852. "type": "package",
  3853. "path": "enums.net/4.0.1",
  3854. "files": [
  3855. ".nupkg.metadata",
  3856. ".signature.p7s",
  3857. "enums.net.4.0.1.nupkg.sha512",
  3858. "enums.net.nuspec",
  3859. "lib/net45/Enums.NET.dll",
  3860. "lib/net45/Enums.NET.pdb",
  3861. "lib/net45/Enums.NET.xml",
  3862. "lib/netcoreapp3.0/Enums.NET.dll",
  3863. "lib/netcoreapp3.0/Enums.NET.pdb",
  3864. "lib/netcoreapp3.0/Enums.NET.xml",
  3865. "lib/netstandard1.0/Enums.NET.dll",
  3866. "lib/netstandard1.0/Enums.NET.pdb",
  3867. "lib/netstandard1.0/Enums.NET.xml",
  3868. "lib/netstandard1.1/Enums.NET.dll",
  3869. "lib/netstandard1.1/Enums.NET.pdb",
  3870. "lib/netstandard1.1/Enums.NET.xml",
  3871. "lib/netstandard1.3/Enums.NET.dll",
  3872. "lib/netstandard1.3/Enums.NET.pdb",
  3873. "lib/netstandard1.3/Enums.NET.xml",
  3874. "lib/netstandard2.0/Enums.NET.dll",
  3875. "lib/netstandard2.0/Enums.NET.pdb",
  3876. "lib/netstandard2.0/Enums.NET.xml",
  3877. "lib/netstandard2.1/Enums.NET.dll",
  3878. "lib/netstandard2.1/Enums.NET.pdb",
  3879. "lib/netstandard2.1/Enums.NET.xml"
  3880. ]
  3881. },
  3882. "FluentEmail.Core/3.0.2": {
  3883. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3884. "type": "package",
  3885. "path": "fluentemail.core/3.0.2",
  3886. "files": [
  3887. ".nupkg.metadata",
  3888. ".signature.p7s",
  3889. "fluentemail.core.3.0.2.nupkg.sha512",
  3890. "fluentemail.core.nuspec",
  3891. "fluentemail_logo_64x64.png",
  3892. "lib/netstandard2.0/FluentEmail.Core.dll"
  3893. ]
  3894. },
  3895. "FluentEmail.Smtp/3.0.2": {
  3896. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3897. "type": "package",
  3898. "path": "fluentemail.smtp/3.0.2",
  3899. "files": [
  3900. ".nupkg.metadata",
  3901. ".signature.p7s",
  3902. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3903. "fluentemail.smtp.nuspec",
  3904. "fluentemail_logo_64x64.png",
  3905. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3906. ]
  3907. },
  3908. "Google.Protobuf/3.11.4": {
  3909. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3910. "type": "package",
  3911. "path": "google.protobuf/3.11.4",
  3912. "files": [
  3913. ".nupkg.metadata",
  3914. ".signature.p7s",
  3915. "google.protobuf.3.11.4.nupkg.sha512",
  3916. "google.protobuf.nuspec",
  3917. "lib/net45/Google.Protobuf.dll",
  3918. "lib/net45/Google.Protobuf.pdb",
  3919. "lib/net45/Google.Protobuf.xml",
  3920. "lib/netstandard1.0/Google.Protobuf.dll",
  3921. "lib/netstandard1.0/Google.Protobuf.pdb",
  3922. "lib/netstandard1.0/Google.Protobuf.xml",
  3923. "lib/netstandard2.0/Google.Protobuf.dll",
  3924. "lib/netstandard2.0/Google.Protobuf.pdb",
  3925. "lib/netstandard2.0/Google.Protobuf.xml"
  3926. ]
  3927. },
  3928. "Humanizer.Core/2.8.26": {
  3929. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  3930. "type": "package",
  3931. "path": "humanizer.core/2.8.26",
  3932. "files": [
  3933. ".nupkg.metadata",
  3934. ".signature.p7s",
  3935. "humanizer.core.2.8.26.nupkg.sha512",
  3936. "humanizer.core.nuspec",
  3937. "lib/netstandard1.0/Humanizer.dll",
  3938. "lib/netstandard1.0/Humanizer.xml",
  3939. "lib/netstandard2.0/Humanizer.dll",
  3940. "lib/netstandard2.0/Humanizer.xml",
  3941. "logo.png"
  3942. ]
  3943. },
  3944. "InfluxData.Net/8.0.1": {
  3945. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3946. "type": "package",
  3947. "path": "influxdata.net/8.0.1",
  3948. "files": [
  3949. ".nupkg.metadata",
  3950. ".signature.p7s",
  3951. "influxdata.net.8.0.1.nupkg.sha512",
  3952. "influxdata.net.nuspec",
  3953. "lib/net461/InfluxData.Net.Common.dll",
  3954. "lib/net461/InfluxData.Net.Common.dll.config",
  3955. "lib/net461/InfluxData.Net.Common.pdb",
  3956. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3957. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3958. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3959. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3960. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3961. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3962. "lib/net461/InfluxData.Net.dll",
  3963. "lib/net461/InfluxData.Net.dll.config",
  3964. "lib/net461/InfluxData.Net.pdb",
  3965. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3966. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3967. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3968. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3969. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3970. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3971. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3972. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3973. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3974. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3975. "lib/netstandard2.0/InfluxData.Net.dll",
  3976. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3977. "lib/netstandard2.0/InfluxData.Net.pdb"
  3978. ]
  3979. },
  3980. "IP2Region.Ex/1.2.0": {
  3981. "sha512": "B8TxhuAw72cPwjgf8pqDf62l1TJL0jXw4J13fXHg4Igq1OwT7SRotQX6gN6puyIgHVYLtKxnmhFf60oUITxmxA==",
  3982. "type": "package",
  3983. "path": "ip2region.ex/1.2.0",
  3984. "files": [
  3985. ".nupkg.metadata",
  3986. ".signature.p7s",
  3987. "ip2region.ex.1.2.0.nupkg.sha512",
  3988. "ip2region.ex.nuspec",
  3989. "lib/netstandard2.0/IP2Region.Ex.dll"
  3990. ]
  3991. },
  3992. "IPTools.China/1.6.0": {
  3993. "sha512": "12VnC92ffiKlLRwr5Ay3uFvZMCB9SDNn77sVlNycQu1OJAunnuCNBOVZTkg9D2UL2cc+iMwra6if9viXhrrt7w==",
  3994. "type": "package",
  3995. "path": "iptools.china/1.6.0",
  3996. "files": [
  3997. ".nupkg.metadata",
  3998. ".signature.p7s",
  3999. "iptools.china.1.6.0.nupkg.sha512",
  4000. "iptools.china.nuspec",
  4001. "lib/net45/IPTools.China.dll",
  4002. "lib/net451/IPTools.China.dll",
  4003. "lib/net452/IPTools.China.dll",
  4004. "lib/net461/IPTools.China.dll",
  4005. "lib/net5.0/IPTools.China.dll",
  4006. "lib/netcoreapp3.1/IPTools.China.dll"
  4007. ]
  4008. },
  4009. "IPTools.Core/1.6.0": {
  4010. "sha512": "qO+EY5vEwLKtOkQD1aMweM9pIVSFLwTi/Z2ZnX08qBXI4yPdRuguJJvzT2YVk2Addv999A+bWifIS8ahiwJcTg==",
  4011. "type": "package",
  4012. "path": "iptools.core/1.6.0",
  4013. "files": [
  4014. ".nupkg.metadata",
  4015. ".signature.p7s",
  4016. "iptools.core.1.6.0.nupkg.sha512",
  4017. "iptools.core.nuspec",
  4018. "lib/net45/IPTools.Core.dll",
  4019. "lib/net451/IPTools.Core.dll",
  4020. "lib/net452/IPTools.Core.dll",
  4021. "lib/net461/IPTools.Core.dll",
  4022. "lib/net5.0/IPTools.Core.dll",
  4023. "lib/netcoreapp3.1/IPTools.Core.dll"
  4024. ]
  4025. },
  4026. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  4027. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  4028. "type": "package",
  4029. "path": "javascriptengineswitcher.chakracore/3.21.0",
  4030. "files": [
  4031. ".nupkg.metadata",
  4032. ".signature.p7s",
  4033. "LICENSE.txt",
  4034. "advanced-string-builder-license.txt",
  4035. "chakra-samples-license.txt",
  4036. "icon.png",
  4037. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  4038. "javascriptengineswitcher.chakracore.nuspec",
  4039. "jsrt-dotnet-license.txt",
  4040. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  4041. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  4042. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4043. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  4044. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  4045. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4046. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  4047. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  4048. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4049. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  4050. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  4051. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4052. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  4053. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  4054. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4055. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  4056. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  4057. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4058. "polyfills-for-old-dot-net-license.txt",
  4059. "readme.txt"
  4060. ]
  4061. },
  4062. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  4063. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  4064. "type": "package",
  4065. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  4066. "files": [
  4067. ".nupkg.metadata",
  4068. ".signature.p7s",
  4069. "LICENSE.txt",
  4070. "chakra-core-license.txt",
  4071. "icon.png",
  4072. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  4073. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  4074. "readme.txt",
  4075. "runtimes/linux-x64/native/libChakraCore.so"
  4076. ]
  4077. },
  4078. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  4079. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  4080. "type": "package",
  4081. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  4082. "hasTools": true,
  4083. "files": [
  4084. ".nupkg.metadata",
  4085. ".signature.p7s",
  4086. "LICENSE.txt",
  4087. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  4088. "chakra-core-license.txt",
  4089. "icon.png",
  4090. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  4091. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  4092. "readme.txt",
  4093. "runtimes/win-x64/native/ChakraCore.dll",
  4094. "tools/Install.ps1",
  4095. "tools/Uninstall.ps1"
  4096. ]
  4097. },
  4098. "JavaScriptEngineSwitcher.Core/3.21.0": {
  4099. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  4100. "type": "package",
  4101. "path": "javascriptengineswitcher.core/3.21.0",
  4102. "files": [
  4103. ".nupkg.metadata",
  4104. ".signature.p7s",
  4105. "LICENSE.txt",
  4106. "advanced-string-builder-license.txt",
  4107. "icon.png",
  4108. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  4109. "javascriptengineswitcher.core.nuspec",
  4110. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  4111. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  4112. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4113. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  4114. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  4115. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4116. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  4117. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  4118. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4119. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  4120. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  4121. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4122. "readme.txt"
  4123. ]
  4124. },
  4125. "K4os.Compression.LZ4/1.1.11": {
  4126. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  4127. "type": "package",
  4128. "path": "k4os.compression.lz4/1.1.11",
  4129. "files": [
  4130. ".nupkg.metadata",
  4131. ".signature.p7s",
  4132. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  4133. "k4os.compression.lz4.nuspec",
  4134. "lib/net45/K4os.Compression.LZ4.dll",
  4135. "lib/net45/K4os.Compression.LZ4.xml",
  4136. "lib/net46/K4os.Compression.LZ4.dll",
  4137. "lib/net46/K4os.Compression.LZ4.xml",
  4138. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4139. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4140. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4141. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4142. ]
  4143. },
  4144. "K4os.Compression.LZ4.Streams/1.1.11": {
  4145. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4146. "type": "package",
  4147. "path": "k4os.compression.lz4.streams/1.1.11",
  4148. "files": [
  4149. ".nupkg.metadata",
  4150. ".signature.p7s",
  4151. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4152. "k4os.compression.lz4.streams.nuspec",
  4153. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4154. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4155. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4156. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4157. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4158. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4159. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4160. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4161. ]
  4162. },
  4163. "K4os.Hash.xxHash/1.0.6": {
  4164. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4165. "type": "package",
  4166. "path": "k4os.hash.xxhash/1.0.6",
  4167. "files": [
  4168. ".nupkg.metadata",
  4169. ".signature.p7s",
  4170. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4171. "k4os.hash.xxhash.nuspec",
  4172. "lib/net45/K4os.Hash.xxHash.dll",
  4173. "lib/net45/K4os.Hash.xxHash.xml",
  4174. "lib/net46/K4os.Hash.xxHash.dll",
  4175. "lib/net46/K4os.Hash.xxHash.xml",
  4176. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4177. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4178. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4179. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4180. ]
  4181. },
  4182. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4183. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4184. "type": "package",
  4185. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4186. "files": [
  4187. ".nupkg.metadata",
  4188. ".signature.p7s",
  4189. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4190. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4191. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4192. "linqkit.microsoft.entityframeworkcore.nuspec"
  4193. ]
  4194. },
  4195. "log4net/2.0.17": {
  4196. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4197. "type": "package",
  4198. "path": "log4net/2.0.17",
  4199. "files": [
  4200. ".nupkg.metadata",
  4201. ".signature.p7s",
  4202. "lib/net20/log4net.dll",
  4203. "lib/net20/log4net.xml",
  4204. "lib/net35/log4net.dll",
  4205. "lib/net35/log4net.xml",
  4206. "lib/net40-client/log4net.dll",
  4207. "lib/net40-client/log4net.xml",
  4208. "lib/net40/log4net.dll",
  4209. "lib/net40/log4net.xml",
  4210. "lib/net45/log4net.dll",
  4211. "lib/net45/log4net.xml",
  4212. "lib/netstandard1.3/log4net.dll",
  4213. "lib/netstandard1.3/log4net.xml",
  4214. "lib/netstandard2.0/log4net.dll",
  4215. "lib/netstandard2.0/log4net.xml",
  4216. "log4net.2.0.17.nupkg.sha512",
  4217. "log4net.nuspec",
  4218. "package-icon.png"
  4219. ]
  4220. },
  4221. "MathNet.Numerics.Signed/4.15.0": {
  4222. "sha512": "LFjukMRatkg9dgRM7U/gM4uKgaWAX7E0lt3fsVDTPdtBIVuh7uPlksDie290br1/tv1a4Ar/Bz9ywCPSL8PhHg==",
  4223. "type": "package",
  4224. "path": "mathnet.numerics.signed/4.15.0",
  4225. "files": [
  4226. ".nupkg.metadata",
  4227. ".signature.p7s",
  4228. "icon.png",
  4229. "lib/net40/MathNet.Numerics.dll",
  4230. "lib/net40/MathNet.Numerics.xml",
  4231. "lib/net461/MathNet.Numerics.dll",
  4232. "lib/net461/MathNet.Numerics.xml",
  4233. "lib/netstandard1.3/MathNet.Numerics.dll",
  4234. "lib/netstandard1.3/MathNet.Numerics.xml",
  4235. "lib/netstandard2.0/MathNet.Numerics.dll",
  4236. "lib/netstandard2.0/MathNet.Numerics.xml",
  4237. "mathnet.numerics.signed.4.15.0.nupkg.sha512",
  4238. "mathnet.numerics.signed.nuspec"
  4239. ]
  4240. },
  4241. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  4242. "sha512": "26WlfJsOB4QP3VsEVu5GGDSGm5wu6ikQqRUOaZ3BUmyGcMWsD28xFxPxFw4OszYgKpj54QYlyec19KcrEGkqDw==",
  4243. "type": "package",
  4244. "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.0",
  4245. "files": [
  4246. ".nupkg.metadata",
  4247. ".signature.p7s",
  4248. "Icon.png",
  4249. "THIRD-PARTY-NOTICES.TXT",
  4250. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  4251. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  4252. "microsoft.aspnetcore.authentication.jwtbearer.5.0.0.nupkg.sha512",
  4253. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  4254. ]
  4255. },
  4256. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  4257. "sha512": "YzUMJYSVWEEQmHpOhEzOcZ2/ltQ/uP1s8DHK8oaobgsjKUdIeRvEwtVQ5D6zO0vdlj4j9Mw0JD1FrZPGI07fHw==",
  4258. "type": "package",
  4259. "path": "microsoft.aspnetcore.authentication.openidconnect/5.0.0",
  4260. "files": [
  4261. ".nupkg.metadata",
  4262. ".signature.p7s",
  4263. "Icon.png",
  4264. "THIRD-PARTY-NOTICES.TXT",
  4265. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll",
  4266. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml",
  4267. "microsoft.aspnetcore.authentication.openidconnect.5.0.0.nupkg.sha512",
  4268. "microsoft.aspnetcore.authentication.openidconnect.nuspec"
  4269. ]
  4270. },
  4271. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4272. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4273. "type": "package",
  4274. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4275. "files": [
  4276. ".nupkg.metadata",
  4277. ".signature.p7s",
  4278. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4279. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4280. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4281. "microsoft.aspnetcore.http.abstractions.nuspec"
  4282. ]
  4283. },
  4284. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4285. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4286. "type": "package",
  4287. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4288. "files": [
  4289. ".nupkg.metadata",
  4290. ".signature.p7s",
  4291. "Icon.png",
  4292. "THIRD-PARTY-NOTICES.TXT",
  4293. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4294. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4295. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4296. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4297. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4298. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4299. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4300. "microsoft.aspnetcore.http.features.nuspec"
  4301. ]
  4302. },
  4303. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  4304. "sha512": "oy/fvnBHpofNPskGcCrzZv1AhY36YHV0lyWy9NC5ye5eHvEJeJsSKjn2fNk/j1lXOuF13H9qrvZrA9zNkymy5Q==",
  4305. "type": "package",
  4306. "path": "microsoft.aspnetcore.jsonpatch/5.0.0",
  4307. "files": [
  4308. ".nupkg.metadata",
  4309. ".signature.p7s",
  4310. "Icon.png",
  4311. "THIRD-PARTY-NOTICES.TXT",
  4312. "lib/net461/Microsoft.AspNetCore.JsonPatch.dll",
  4313. "lib/net461/Microsoft.AspNetCore.JsonPatch.xml",
  4314. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  4315. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  4316. "microsoft.aspnetcore.jsonpatch.5.0.0.nupkg.sha512",
  4317. "microsoft.aspnetcore.jsonpatch.nuspec"
  4318. ]
  4319. },
  4320. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  4321. "sha512": "EnGI7CGWaijTuvUxY0lncAp/q/R7HZJCm8NwqiUHxDjrEWYdC/5oOHafVgNjVpk2zLsDesyaGnJundLnw5KNVA==",
  4322. "type": "package",
  4323. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/5.0.0",
  4324. "files": [
  4325. ".nupkg.metadata",
  4326. ".signature.p7s",
  4327. "Icon.png",
  4328. "THIRD-PARTY-NOTICES.TXT",
  4329. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  4330. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  4331. "microsoft.aspnetcore.mvc.newtonsoftjson.5.0.0.nupkg.sha512",
  4332. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  4333. ]
  4334. },
  4335. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4336. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4337. "type": "package",
  4338. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4339. "files": [
  4340. ".nupkg.metadata",
  4341. ".signature.p7s",
  4342. "Icon.png",
  4343. "THIRD-PARTY-NOTICES.TXT",
  4344. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4345. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4346. "microsoft.aspnetcore.nodeservices.nuspec"
  4347. ]
  4348. },
  4349. "Microsoft.CSharp/4.7.0": {
  4350. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4351. "type": "package",
  4352. "path": "microsoft.csharp/4.7.0",
  4353. "files": [
  4354. ".nupkg.metadata",
  4355. ".signature.p7s",
  4356. "LICENSE.TXT",
  4357. "THIRD-PARTY-NOTICES.TXT",
  4358. "lib/MonoAndroid10/_._",
  4359. "lib/MonoTouch10/_._",
  4360. "lib/net45/_._",
  4361. "lib/netcore50/Microsoft.CSharp.dll",
  4362. "lib/netcoreapp2.0/_._",
  4363. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4364. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4365. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4366. "lib/portable-net45+win8+wp8+wpa81/_._",
  4367. "lib/uap10.0.16299/_._",
  4368. "lib/win8/_._",
  4369. "lib/wp80/_._",
  4370. "lib/wpa81/_._",
  4371. "lib/xamarinios10/_._",
  4372. "lib/xamarinmac20/_._",
  4373. "lib/xamarintvos10/_._",
  4374. "lib/xamarinwatchos10/_._",
  4375. "microsoft.csharp.4.7.0.nupkg.sha512",
  4376. "microsoft.csharp.nuspec",
  4377. "ref/MonoAndroid10/_._",
  4378. "ref/MonoTouch10/_._",
  4379. "ref/net45/_._",
  4380. "ref/netcore50/Microsoft.CSharp.dll",
  4381. "ref/netcore50/Microsoft.CSharp.xml",
  4382. "ref/netcore50/de/Microsoft.CSharp.xml",
  4383. "ref/netcore50/es/Microsoft.CSharp.xml",
  4384. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4385. "ref/netcore50/it/Microsoft.CSharp.xml",
  4386. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4387. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4388. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4389. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4390. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4391. "ref/netcoreapp2.0/_._",
  4392. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4393. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4394. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4395. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4396. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4397. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4398. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4399. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4400. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4401. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4402. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4403. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4404. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4405. "ref/portable-net45+win8+wp8+wpa81/_._",
  4406. "ref/uap10.0.16299/_._",
  4407. "ref/win8/_._",
  4408. "ref/wp80/_._",
  4409. "ref/wpa81/_._",
  4410. "ref/xamarinios10/_._",
  4411. "ref/xamarinmac20/_._",
  4412. "ref/xamarintvos10/_._",
  4413. "ref/xamarinwatchos10/_._",
  4414. "useSharedDesignerContext.txt",
  4415. "version.txt"
  4416. ]
  4417. },
  4418. "Microsoft.EntityFrameworkCore/5.0.4": {
  4419. "sha512": "upRpXluUeONMYO+O3RU8G+ZZcrnDrnNVWg4eJmSfertTdw7Hc5tgIeg/O8+oBKqf+OvBrQKW0U3PI9yoTsuPYg==",
  4420. "type": "package",
  4421. "path": "microsoft.entityframeworkcore/5.0.4",
  4422. "files": [
  4423. ".nupkg.metadata",
  4424. ".signature.p7s",
  4425. "Icon.png",
  4426. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4427. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4428. "microsoft.entityframeworkcore.5.0.4.nupkg.sha512",
  4429. "microsoft.entityframeworkcore.nuspec"
  4430. ]
  4431. },
  4432. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  4433. "sha512": "4y+y28SHjniLIqj7M7YNRO8khBnCBtkM6TJG8oX0wyEZuLum+3e9vqqna1naaV6Hi4BhXBHcD/sjhIfW1u0ZfQ==",
  4434. "type": "package",
  4435. "path": "microsoft.entityframeworkcore.abstractions/5.0.4",
  4436. "files": [
  4437. ".nupkg.metadata",
  4438. ".signature.p7s",
  4439. "Icon.png",
  4440. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4441. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4442. "microsoft.entityframeworkcore.abstractions.5.0.4.nupkg.sha512",
  4443. "microsoft.entityframeworkcore.abstractions.nuspec"
  4444. ]
  4445. },
  4446. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  4447. "sha512": "z8OMwlXcUZJCArcDdhR0NRkmS0UyNg08l1LXPZCgYqjBeW8RvNXshH3H5ru/7IOVpyOfKrG5Q3nsgdD18OFG/g==",
  4448. "type": "package",
  4449. "path": "microsoft.entityframeworkcore.analyzers/5.0.4",
  4450. "files": [
  4451. ".nupkg.metadata",
  4452. ".signature.p7s",
  4453. "Icon.png",
  4454. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4455. "lib/netstandard2.0/_._",
  4456. "microsoft.entityframeworkcore.analyzers.5.0.4.nupkg.sha512",
  4457. "microsoft.entityframeworkcore.analyzers.nuspec"
  4458. ]
  4459. },
  4460. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  4461. "sha512": "LqyE5MX0IUFjsXu3tNIMpTtC4poY7XQogpGdATjK949tCKopxyJuzTZtgsgdc20LGFWQM0UwwyyfUNjs5kKvsw==",
  4462. "type": "package",
  4463. "path": "microsoft.entityframeworkcore.design/5.0.4",
  4464. "files": [
  4465. ".nupkg.metadata",
  4466. ".signature.p7s",
  4467. "Icon.png",
  4468. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props",
  4469. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll",
  4470. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml",
  4471. "microsoft.entityframeworkcore.design.5.0.4.nupkg.sha512",
  4472. "microsoft.entityframeworkcore.design.nuspec"
  4473. ]
  4474. },
  4475. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  4476. "sha512": "9Qa6SqX+hJZogo99bICsS6kgQ1C5RtEjPrsvQxjInVdY9QSWsXWIYfem0rv3wi+htwkJuMHVHGSaqG1oeAwe+w==",
  4477. "type": "package",
  4478. "path": "microsoft.entityframeworkcore.relational/5.0.4",
  4479. "files": [
  4480. ".nupkg.metadata",
  4481. ".signature.p7s",
  4482. "Icon.png",
  4483. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4484. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4485. "microsoft.entityframeworkcore.relational.5.0.4.nupkg.sha512",
  4486. "microsoft.entityframeworkcore.relational.nuspec"
  4487. ]
  4488. },
  4489. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4490. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4491. "type": "package",
  4492. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4493. "hasTools": true,
  4494. "files": [
  4495. ".nupkg.metadata",
  4496. ".signature.p7s",
  4497. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4498. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4499. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4500. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4501. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4502. "microsoft.extensions.apidescription.server.nuspec",
  4503. "tools/Newtonsoft.Json.dll",
  4504. "tools/dotnet-getdocument.deps.json",
  4505. "tools/dotnet-getdocument.dll",
  4506. "tools/dotnet-getdocument.runtimeconfig.json",
  4507. "tools/net461-x86/GetDocument.Insider.exe",
  4508. "tools/net461-x86/GetDocument.Insider.exe.config",
  4509. "tools/net461/GetDocument.Insider.exe",
  4510. "tools/net461/GetDocument.Insider.exe.config",
  4511. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4512. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4513. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4514. ]
  4515. },
  4516. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4517. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4518. "type": "package",
  4519. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4520. "files": [
  4521. ".nupkg.metadata",
  4522. ".signature.p7s",
  4523. "Icon.png",
  4524. "LICENSE.TXT",
  4525. "THIRD-PARTY-NOTICES.TXT",
  4526. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4527. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4528. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4529. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4530. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4531. "microsoft.extensions.caching.abstractions.nuspec",
  4532. "useSharedDesignerContext.txt",
  4533. "version.txt"
  4534. ]
  4535. },
  4536. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4537. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4538. "type": "package",
  4539. "path": "microsoft.extensions.caching.memory/5.0.0",
  4540. "files": [
  4541. ".nupkg.metadata",
  4542. ".signature.p7s",
  4543. "Icon.png",
  4544. "LICENSE.TXT",
  4545. "THIRD-PARTY-NOTICES.TXT",
  4546. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4547. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4548. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4549. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4550. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4551. "microsoft.extensions.caching.memory.nuspec",
  4552. "useSharedDesignerContext.txt",
  4553. "version.txt"
  4554. ]
  4555. },
  4556. "Microsoft.Extensions.Configuration/5.0.0": {
  4557. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4558. "type": "package",
  4559. "path": "microsoft.extensions.configuration/5.0.0",
  4560. "files": [
  4561. ".nupkg.metadata",
  4562. ".signature.p7s",
  4563. "Icon.png",
  4564. "LICENSE.TXT",
  4565. "THIRD-PARTY-NOTICES.TXT",
  4566. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4567. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4568. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4569. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4570. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4571. "microsoft.extensions.configuration.nuspec",
  4572. "useSharedDesignerContext.txt",
  4573. "version.txt"
  4574. ]
  4575. },
  4576. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4577. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4578. "type": "package",
  4579. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4580. "files": [
  4581. ".nupkg.metadata",
  4582. ".signature.p7s",
  4583. "Icon.png",
  4584. "LICENSE.TXT",
  4585. "THIRD-PARTY-NOTICES.TXT",
  4586. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4587. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4588. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4589. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4590. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4591. "microsoft.extensions.configuration.abstractions.nuspec",
  4592. "useSharedDesignerContext.txt",
  4593. "version.txt"
  4594. ]
  4595. },
  4596. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4597. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4598. "type": "package",
  4599. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4600. "files": [
  4601. ".nupkg.metadata",
  4602. ".signature.p7s",
  4603. "Icon.png",
  4604. "LICENSE.TXT",
  4605. "THIRD-PARTY-NOTICES.TXT",
  4606. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4607. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4608. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4609. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4610. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4611. "microsoft.extensions.configuration.binder.nuspec",
  4612. "useSharedDesignerContext.txt",
  4613. "version.txt"
  4614. ]
  4615. },
  4616. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4617. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4618. "type": "package",
  4619. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4620. "files": [
  4621. ".nupkg.metadata",
  4622. ".signature.p7s",
  4623. "Icon.png",
  4624. "LICENSE.TXT",
  4625. "THIRD-PARTY-NOTICES.TXT",
  4626. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4627. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4628. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4629. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4630. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4631. "microsoft.extensions.configuration.fileextensions.nuspec",
  4632. "useSharedDesignerContext.txt",
  4633. "version.txt"
  4634. ]
  4635. },
  4636. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4637. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4638. "type": "package",
  4639. "path": "microsoft.extensions.configuration.json/5.0.0",
  4640. "files": [
  4641. ".nupkg.metadata",
  4642. ".signature.p7s",
  4643. "Icon.png",
  4644. "LICENSE.TXT",
  4645. "THIRD-PARTY-NOTICES.TXT",
  4646. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4647. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4648. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4649. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4650. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4651. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4652. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4653. "microsoft.extensions.configuration.json.nuspec",
  4654. "useSharedDesignerContext.txt",
  4655. "version.txt"
  4656. ]
  4657. },
  4658. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  4659. "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==",
  4660. "type": "package",
  4661. "path": "microsoft.extensions.dependencyinjection/5.0.1",
  4662. "files": [
  4663. ".nupkg.metadata",
  4664. ".signature.p7s",
  4665. "Icon.png",
  4666. "LICENSE.TXT",
  4667. "Microsoft.Extensions.DependencyInjection.5.0.1.nupkg.sha512",
  4668. "Microsoft.Extensions.DependencyInjection.nuspec",
  4669. "THIRD-PARTY-NOTICES.TXT",
  4670. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4671. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4672. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4673. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4674. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4675. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4676. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4677. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4678. "useSharedDesignerContext.txt",
  4679. "version.txt"
  4680. ]
  4681. },
  4682. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4683. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4684. "type": "package",
  4685. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4686. "files": [
  4687. ".nupkg.metadata",
  4688. ".signature.p7s",
  4689. "Icon.png",
  4690. "LICENSE.TXT",
  4691. "THIRD-PARTY-NOTICES.TXT",
  4692. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4693. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4694. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4695. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4696. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4697. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4698. "useSharedDesignerContext.txt",
  4699. "version.txt"
  4700. ]
  4701. },
  4702. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4703. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4704. "type": "package",
  4705. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4706. "files": [
  4707. ".nupkg.metadata",
  4708. ".signature.p7s",
  4709. "Icon.png",
  4710. "LICENSE.TXT",
  4711. "THIRD-PARTY-NOTICES.TXT",
  4712. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4713. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4714. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4715. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4716. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4717. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4718. "useSharedDesignerContext.txt",
  4719. "version.txt"
  4720. ]
  4721. },
  4722. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4723. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4724. "type": "package",
  4725. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4726. "files": [
  4727. ".nupkg.metadata",
  4728. ".signature.p7s",
  4729. "Icon.png",
  4730. "LICENSE.TXT",
  4731. "THIRD-PARTY-NOTICES.TXT",
  4732. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4733. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4734. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4735. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4736. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4737. "microsoft.extensions.fileproviders.physical.nuspec",
  4738. "useSharedDesignerContext.txt",
  4739. "version.txt"
  4740. ]
  4741. },
  4742. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4743. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4744. "type": "package",
  4745. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4746. "files": [
  4747. ".nupkg.metadata",
  4748. ".signature.p7s",
  4749. "Icon.png",
  4750. "LICENSE.TXT",
  4751. "THIRD-PARTY-NOTICES.TXT",
  4752. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4753. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4754. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4755. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4756. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4757. "microsoft.extensions.filesystemglobbing.nuspec",
  4758. "useSharedDesignerContext.txt",
  4759. "version.txt"
  4760. ]
  4761. },
  4762. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4763. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4764. "type": "package",
  4765. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4766. "files": [
  4767. ".nupkg.metadata",
  4768. ".signature.p7s",
  4769. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4770. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4771. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4772. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4773. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4774. "microsoft.extensions.hosting.abstractions.nuspec",
  4775. "packageIcon.png"
  4776. ]
  4777. },
  4778. "Microsoft.Extensions.Http/5.0.0": {
  4779. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4780. "type": "package",
  4781. "path": "microsoft.extensions.http/5.0.0",
  4782. "files": [
  4783. ".nupkg.metadata",
  4784. ".signature.p7s",
  4785. "Icon.png",
  4786. "LICENSE.TXT",
  4787. "THIRD-PARTY-NOTICES.TXT",
  4788. "lib/net461/Microsoft.Extensions.Http.dll",
  4789. "lib/net461/Microsoft.Extensions.Http.xml",
  4790. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4791. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4792. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4793. "microsoft.extensions.http.nuspec",
  4794. "useSharedDesignerContext.txt",
  4795. "version.txt"
  4796. ]
  4797. },
  4798. "Microsoft.Extensions.Logging/5.0.0": {
  4799. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4800. "type": "package",
  4801. "path": "microsoft.extensions.logging/5.0.0",
  4802. "files": [
  4803. ".nupkg.metadata",
  4804. ".signature.p7s",
  4805. "Icon.png",
  4806. "LICENSE.TXT",
  4807. "THIRD-PARTY-NOTICES.TXT",
  4808. "lib/net461/Microsoft.Extensions.Logging.dll",
  4809. "lib/net461/Microsoft.Extensions.Logging.xml",
  4810. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4811. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4812. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4813. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4814. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4815. "microsoft.extensions.logging.nuspec",
  4816. "useSharedDesignerContext.txt",
  4817. "version.txt"
  4818. ]
  4819. },
  4820. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4821. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4822. "type": "package",
  4823. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4824. "files": [
  4825. ".nupkg.metadata",
  4826. ".signature.p7s",
  4827. "Icon.png",
  4828. "LICENSE.TXT",
  4829. "THIRD-PARTY-NOTICES.TXT",
  4830. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4831. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4832. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4833. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4834. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4835. "microsoft.extensions.logging.abstractions.nuspec",
  4836. "useSharedDesignerContext.txt",
  4837. "version.txt"
  4838. ]
  4839. },
  4840. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4841. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4842. "type": "package",
  4843. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4844. "files": [
  4845. ".nupkg.metadata",
  4846. ".signature.p7s",
  4847. "Icon.png",
  4848. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4849. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4850. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4851. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4852. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4853. "microsoft.extensions.logging.configuration.nuspec"
  4854. ]
  4855. },
  4856. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4857. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4858. "type": "package",
  4859. "path": "microsoft.extensions.logging.console/3.1.30",
  4860. "files": [
  4861. ".nupkg.metadata",
  4862. ".signature.p7s",
  4863. "Icon.png",
  4864. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4865. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4866. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4867. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4868. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4869. "microsoft.extensions.logging.console.nuspec"
  4870. ]
  4871. },
  4872. "Microsoft.Extensions.Options/5.0.0": {
  4873. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4874. "type": "package",
  4875. "path": "microsoft.extensions.options/5.0.0",
  4876. "files": [
  4877. ".nupkg.metadata",
  4878. ".signature.p7s",
  4879. "Icon.png",
  4880. "LICENSE.TXT",
  4881. "THIRD-PARTY-NOTICES.TXT",
  4882. "lib/net461/Microsoft.Extensions.Options.dll",
  4883. "lib/net461/Microsoft.Extensions.Options.xml",
  4884. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4885. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4886. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4887. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4888. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4889. "microsoft.extensions.options.nuspec",
  4890. "useSharedDesignerContext.txt",
  4891. "version.txt"
  4892. ]
  4893. },
  4894. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4895. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4896. "type": "package",
  4897. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4898. "files": [
  4899. ".nupkg.metadata",
  4900. ".signature.p7s",
  4901. "Icon.png",
  4902. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4903. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4904. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4905. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4906. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4907. "microsoft.extensions.options.configurationextensions.nuspec"
  4908. ]
  4909. },
  4910. "Microsoft.Extensions.Primitives/5.0.0": {
  4911. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4912. "type": "package",
  4913. "path": "microsoft.extensions.primitives/5.0.0",
  4914. "files": [
  4915. ".nupkg.metadata",
  4916. ".signature.p7s",
  4917. "Icon.png",
  4918. "LICENSE.TXT",
  4919. "THIRD-PARTY-NOTICES.TXT",
  4920. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4921. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4922. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4923. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4924. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4925. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4926. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4927. "microsoft.extensions.primitives.nuspec",
  4928. "useSharedDesignerContext.txt",
  4929. "version.txt"
  4930. ]
  4931. },
  4932. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  4933. "sha512": "q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==",
  4934. "type": "package",
  4935. "path": "microsoft.identitymodel.jsonwebtokens/6.7.1",
  4936. "files": [
  4937. ".nupkg.metadata",
  4938. ".signature.p7s",
  4939. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  4940. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  4941. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  4942. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  4943. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4944. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4945. "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
  4946. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4947. ]
  4948. },
  4949. "Microsoft.IdentityModel.Logging/6.7.1": {
  4950. "sha512": "WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==",
  4951. "type": "package",
  4952. "path": "microsoft.identitymodel.logging/6.7.1",
  4953. "files": [
  4954. ".nupkg.metadata",
  4955. ".signature.p7s",
  4956. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  4957. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  4958. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  4959. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  4960. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4961. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4962. "microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
  4963. "microsoft.identitymodel.logging.nuspec"
  4964. ]
  4965. },
  4966. "Microsoft.IdentityModel.Protocols/6.7.1": {
  4967. "sha512": "DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==",
  4968. "type": "package",
  4969. "path": "microsoft.identitymodel.protocols/6.7.1",
  4970. "files": [
  4971. ".nupkg.metadata",
  4972. ".signature.p7s",
  4973. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  4974. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  4975. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  4976. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  4977. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  4978. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  4979. "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512",
  4980. "microsoft.identitymodel.protocols.nuspec"
  4981. ]
  4982. },
  4983. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  4984. "sha512": "99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==",
  4985. "type": "package",
  4986. "path": "microsoft.identitymodel.protocols.openidconnect/6.7.1",
  4987. "files": [
  4988. ".nupkg.metadata",
  4989. ".signature.p7s",
  4990. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4991. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4992. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4993. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4994. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4995. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4996. "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512",
  4997. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  4998. ]
  4999. },
  5000. "Microsoft.IdentityModel.Tokens/6.7.1": {
  5001. "sha512": "Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==",
  5002. "type": "package",
  5003. "path": "microsoft.identitymodel.tokens/6.7.1",
  5004. "files": [
  5005. ".nupkg.metadata",
  5006. ".signature.p7s",
  5007. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5008. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5009. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5010. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5011. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5012. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5013. "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
  5014. "microsoft.identitymodel.tokens.nuspec"
  5015. ]
  5016. },
  5017. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  5018. "sha512": "Oh1qXXFdJFcHozvb4H6XYLf2W0meZFuG0A+TfapFPj9z5fd4vxiARGEhAaLj/6XWQaMYIv4SH/9Q6H78Hw0E2Q==",
  5019. "type": "package",
  5020. "path": "microsoft.io.recyclablememorystream/2.3.2",
  5021. "files": [
  5022. ".nupkg.metadata",
  5023. ".signature.p7s",
  5024. "README.md",
  5025. "lib/net462/Microsoft.IO.RecyclableMemoryStream.dll",
  5026. "lib/net462/Microsoft.IO.RecyclableMemoryStream.xml",
  5027. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll",
  5028. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.xml",
  5029. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  5030. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  5031. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  5032. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  5033. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  5034. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  5035. "microsoft.io.recyclablememorystream.2.3.2.nupkg.sha512",
  5036. "microsoft.io.recyclablememorystream.nuspec"
  5037. ]
  5038. },
  5039. "Microsoft.NETCore.Platforms/5.0.0": {
  5040. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5041. "type": "package",
  5042. "path": "microsoft.netcore.platforms/5.0.0",
  5043. "files": [
  5044. ".nupkg.metadata",
  5045. ".signature.p7s",
  5046. "Icon.png",
  5047. "LICENSE.TXT",
  5048. "THIRD-PARTY-NOTICES.TXT",
  5049. "lib/netstandard1.0/_._",
  5050. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5051. "microsoft.netcore.platforms.nuspec",
  5052. "runtime.json",
  5053. "useSharedDesignerContext.txt",
  5054. "version.txt"
  5055. ]
  5056. },
  5057. "Microsoft.NETCore.Targets/1.1.0": {
  5058. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5059. "type": "package",
  5060. "path": "microsoft.netcore.targets/1.1.0",
  5061. "files": [
  5062. ".nupkg.metadata",
  5063. ".signature.p7s",
  5064. "ThirdPartyNotices.txt",
  5065. "dotnet_library_license.txt",
  5066. "lib/netstandard1.0/_._",
  5067. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5068. "microsoft.netcore.targets.nuspec",
  5069. "runtime.json"
  5070. ]
  5071. },
  5072. "Microsoft.OpenApi/1.2.3": {
  5073. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  5074. "type": "package",
  5075. "path": "microsoft.openapi/1.2.3",
  5076. "files": [
  5077. ".nupkg.metadata",
  5078. ".signature.p7s",
  5079. "lib/net46/Microsoft.OpenApi.dll",
  5080. "lib/net46/Microsoft.OpenApi.pdb",
  5081. "lib/net46/Microsoft.OpenApi.xml",
  5082. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  5083. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  5084. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  5085. "microsoft.openapi.1.2.3.nupkg.sha512",
  5086. "microsoft.openapi.nuspec"
  5087. ]
  5088. },
  5089. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  5090. "sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==",
  5091. "type": "package",
  5092. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.10.9",
  5093. "hasTools": true,
  5094. "files": [
  5095. ".nupkg.metadata",
  5096. ".signature.p7s",
  5097. "EULA.md",
  5098. "ThirdPartyNotices.txt",
  5099. "build/Container.props",
  5100. "build/Container.targets",
  5101. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  5102. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  5103. "build/ToolsTarget.props",
  5104. "build/ToolsTarget.targets",
  5105. "microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
  5106. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  5107. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  5108. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  5109. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5110. "tools/Newtonsoft.Json.dll",
  5111. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5112. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5113. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5114. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5115. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5116. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5117. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5118. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5119. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5120. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5121. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5122. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5123. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5124. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5125. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5126. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5127. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5128. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5129. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5130. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5131. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5132. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5133. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5134. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5135. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5136. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5137. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5138. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5139. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5140. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5141. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5142. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5143. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5144. "tools/utils/KillProcess.exe",
  5145. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5146. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5147. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5148. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5149. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5150. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5151. ]
  5152. },
  5153. "Microsoft.Win32.Primitives/4.3.0": {
  5154. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5155. "type": "package",
  5156. "path": "microsoft.win32.primitives/4.3.0",
  5157. "files": [
  5158. ".nupkg.metadata",
  5159. ".signature.p7s",
  5160. "ThirdPartyNotices.txt",
  5161. "dotnet_library_license.txt",
  5162. "lib/MonoAndroid10/_._",
  5163. "lib/MonoTouch10/_._",
  5164. "lib/net46/Microsoft.Win32.Primitives.dll",
  5165. "lib/xamarinios10/_._",
  5166. "lib/xamarinmac20/_._",
  5167. "lib/xamarintvos10/_._",
  5168. "lib/xamarinwatchos10/_._",
  5169. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5170. "microsoft.win32.primitives.nuspec",
  5171. "ref/MonoAndroid10/_._",
  5172. "ref/MonoTouch10/_._",
  5173. "ref/net46/Microsoft.Win32.Primitives.dll",
  5174. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5175. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5176. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5177. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5178. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5179. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5180. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5181. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5182. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5183. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5184. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5185. "ref/xamarinios10/_._",
  5186. "ref/xamarinmac20/_._",
  5187. "ref/xamarintvos10/_._",
  5188. "ref/xamarinwatchos10/_._"
  5189. ]
  5190. },
  5191. "Microsoft.Win32.SystemEvents/6.0.0": {
  5192. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  5193. "type": "package",
  5194. "path": "microsoft.win32.systemevents/6.0.0",
  5195. "files": [
  5196. ".nupkg.metadata",
  5197. ".signature.p7s",
  5198. "Icon.png",
  5199. "LICENSE.TXT",
  5200. "THIRD-PARTY-NOTICES.TXT",
  5201. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  5202. "buildTransitive/netcoreapp3.1/_._",
  5203. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5204. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5205. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5206. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5207. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5208. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5209. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5210. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5211. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  5212. "microsoft.win32.systemevents.nuspec",
  5213. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5214. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5215. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5216. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5217. "useSharedDesignerContext.txt"
  5218. ]
  5219. },
  5220. "MySql.Data/8.0.23": {
  5221. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5222. "type": "package",
  5223. "path": "mysql.data/8.0.23",
  5224. "files": [
  5225. ".nupkg.metadata",
  5226. ".signature.p7s",
  5227. "lib/net452/MySql.Data.dll",
  5228. "lib/net452/MySql.Data.xml",
  5229. "lib/net452/Ubiety.Dns.Core.dll",
  5230. "lib/net452/Zstandard.Net.dll",
  5231. "lib/net48/MySql.Data.dll",
  5232. "lib/net48/MySql.Data.xml",
  5233. "lib/net48/Ubiety.Dns.Core.dll",
  5234. "lib/net48/Zstandard.Net.dll",
  5235. "lib/net5.0/MySql.Data.dll",
  5236. "lib/net5.0/MySql.Data.xml",
  5237. "lib/net5.0/Ubiety.Dns.Core.dll",
  5238. "lib/net5.0/Zstandard.Net.dll",
  5239. "lib/netstandard2.0/MySql.Data.dll",
  5240. "lib/netstandard2.0/MySql.Data.xml",
  5241. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5242. "lib/netstandard2.0/Zstandard.Net.dll",
  5243. "lib/netstandard2.1/MySql.Data.dll",
  5244. "lib/netstandard2.1/MySql.Data.xml",
  5245. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5246. "lib/netstandard2.1/Zstandard.Net.dll",
  5247. "mysql.data.8.0.23.nupkg.sha512",
  5248. "mysql.data.nuspec"
  5249. ]
  5250. },
  5251. "MySqlConnector/1.1.0": {
  5252. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5253. "type": "package",
  5254. "path": "mysqlconnector/1.1.0",
  5255. "files": [
  5256. ".nupkg.metadata",
  5257. ".signature.p7s",
  5258. "lib/net45/MySqlConnector.dll",
  5259. "lib/net45/MySqlConnector.xml",
  5260. "lib/net461/MySqlConnector.dll",
  5261. "lib/net461/MySqlConnector.xml",
  5262. "lib/net471/MySqlConnector.dll",
  5263. "lib/net471/MySqlConnector.xml",
  5264. "lib/net5.0/MySqlConnector.dll",
  5265. "lib/net5.0/MySqlConnector.xml",
  5266. "lib/netcoreapp2.1/MySqlConnector.dll",
  5267. "lib/netcoreapp2.1/MySqlConnector.xml",
  5268. "lib/netcoreapp3.1/MySqlConnector.dll",
  5269. "lib/netcoreapp3.1/MySqlConnector.xml",
  5270. "lib/netstandard1.3/MySqlConnector.dll",
  5271. "lib/netstandard1.3/MySqlConnector.xml",
  5272. "lib/netstandard2.0/MySqlConnector.dll",
  5273. "lib/netstandard2.0/MySqlConnector.xml",
  5274. "lib/netstandard2.1/MySqlConnector.dll",
  5275. "lib/netstandard2.1/MySqlConnector.xml",
  5276. "logo.png",
  5277. "mysqlconnector.1.1.0.nupkg.sha512",
  5278. "mysqlconnector.nuspec"
  5279. ]
  5280. },
  5281. "NETStandard.Library/1.6.1": {
  5282. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5283. "type": "package",
  5284. "path": "netstandard.library/1.6.1",
  5285. "files": [
  5286. ".nupkg.metadata",
  5287. ".signature.p7s",
  5288. "ThirdPartyNotices.txt",
  5289. "dotnet_library_license.txt",
  5290. "netstandard.library.1.6.1.nupkg.sha512",
  5291. "netstandard.library.nuspec"
  5292. ]
  5293. },
  5294. "Newtonsoft.Json/13.0.1": {
  5295. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5296. "type": "package",
  5297. "path": "newtonsoft.json/13.0.1",
  5298. "files": [
  5299. ".nupkg.metadata",
  5300. ".signature.p7s",
  5301. "LICENSE.md",
  5302. "lib/net20/Newtonsoft.Json.dll",
  5303. "lib/net20/Newtonsoft.Json.xml",
  5304. "lib/net35/Newtonsoft.Json.dll",
  5305. "lib/net35/Newtonsoft.Json.xml",
  5306. "lib/net40/Newtonsoft.Json.dll",
  5307. "lib/net40/Newtonsoft.Json.xml",
  5308. "lib/net45/Newtonsoft.Json.dll",
  5309. "lib/net45/Newtonsoft.Json.xml",
  5310. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5311. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5312. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5313. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5314. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5315. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5316. "newtonsoft.json.13.0.1.nupkg.sha512",
  5317. "newtonsoft.json.nuspec",
  5318. "packageIcon.png"
  5319. ]
  5320. },
  5321. "Newtonsoft.Json.Bson/1.0.2": {
  5322. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  5323. "type": "package",
  5324. "path": "newtonsoft.json.bson/1.0.2",
  5325. "files": [
  5326. ".nupkg.metadata",
  5327. ".signature.p7s",
  5328. "LICENSE.md",
  5329. "lib/net45/Newtonsoft.Json.Bson.dll",
  5330. "lib/net45/Newtonsoft.Json.Bson.pdb",
  5331. "lib/net45/Newtonsoft.Json.Bson.xml",
  5332. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  5333. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  5334. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  5335. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  5336. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  5337. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  5338. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  5339. "newtonsoft.json.bson.nuspec"
  5340. ]
  5341. },
  5342. "NPOI/2.6.2": {
  5343. "sha512": "s5lxJQ1Xy2nr3yDvoMH6og2cb2I8reIrUROf2afjKucS+pWNZG07kwITo+CCS3KaXNiPjUn1YaS1PUf8fT9cHg==",
  5344. "type": "package",
  5345. "path": "npoi/2.6.2",
  5346. "files": [
  5347. ".nupkg.metadata",
  5348. ".signature.p7s",
  5349. "LICENSE",
  5350. "Read Me.txt",
  5351. "lib/net472/NPOI.Core.dll",
  5352. "lib/net472/NPOI.Core.pdb",
  5353. "lib/net472/NPOI.Core.xml",
  5354. "lib/net472/NPOI.OOXML.dll",
  5355. "lib/net472/NPOI.OOXML.pdb",
  5356. "lib/net472/NPOI.OOXML.xml",
  5357. "lib/net472/NPOI.OpenXml4Net.dll",
  5358. "lib/net472/NPOI.OpenXml4Net.pdb",
  5359. "lib/net472/NPOI.OpenXml4Net.xml",
  5360. "lib/net472/NPOI.OpenXmlFormats.dll",
  5361. "lib/net472/NPOI.OpenXmlFormats.pdb",
  5362. "lib/net472/NPOI.OpenXmlFormats.xml",
  5363. "lib/net6.0/NPOI.Core.dll",
  5364. "lib/net6.0/NPOI.Core.pdb",
  5365. "lib/net6.0/NPOI.Core.xml",
  5366. "lib/net6.0/NPOI.OOXML.dll",
  5367. "lib/net6.0/NPOI.OOXML.pdb",
  5368. "lib/net6.0/NPOI.OOXML.xml",
  5369. "lib/net6.0/NPOI.OpenXml4Net.dll",
  5370. "lib/net6.0/NPOI.OpenXml4Net.pdb",
  5371. "lib/net6.0/NPOI.OpenXml4Net.xml",
  5372. "lib/net6.0/NPOI.OpenXmlFormats.dll",
  5373. "lib/net6.0/NPOI.OpenXmlFormats.pdb",
  5374. "lib/net6.0/NPOI.OpenXmlFormats.xml",
  5375. "lib/netstandard2.0/NPOI.Core.dll",
  5376. "lib/netstandard2.0/NPOI.Core.pdb",
  5377. "lib/netstandard2.0/NPOI.Core.xml",
  5378. "lib/netstandard2.0/NPOI.OOXML.dll",
  5379. "lib/netstandard2.0/NPOI.OOXML.pdb",
  5380. "lib/netstandard2.0/NPOI.OOXML.xml",
  5381. "lib/netstandard2.0/NPOI.OpenXml4Net.dll",
  5382. "lib/netstandard2.0/NPOI.OpenXml4Net.pdb",
  5383. "lib/netstandard2.0/NPOI.OpenXml4Net.xml",
  5384. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll",
  5385. "lib/netstandard2.0/NPOI.OpenXmlFormats.pdb",
  5386. "lib/netstandard2.0/NPOI.OpenXmlFormats.xml",
  5387. "lib/netstandard2.1/NPOI.Core.dll",
  5388. "lib/netstandard2.1/NPOI.Core.pdb",
  5389. "lib/netstandard2.1/NPOI.Core.xml",
  5390. "lib/netstandard2.1/NPOI.OOXML.dll",
  5391. "lib/netstandard2.1/NPOI.OOXML.pdb",
  5392. "lib/netstandard2.1/NPOI.OOXML.xml",
  5393. "lib/netstandard2.1/NPOI.OpenXml4Net.dll",
  5394. "lib/netstandard2.1/NPOI.OpenXml4Net.pdb",
  5395. "lib/netstandard2.1/NPOI.OpenXml4Net.xml",
  5396. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll",
  5397. "lib/netstandard2.1/NPOI.OpenXmlFormats.pdb",
  5398. "lib/netstandard2.1/NPOI.OpenXmlFormats.xml",
  5399. "logo/120_120.jpg",
  5400. "logo/240_240.png",
  5401. "logo/32_32.jpg",
  5402. "logo/60_60.jpg",
  5403. "npoi.2.6.2.nupkg.sha512",
  5404. "npoi.nuspec"
  5405. ]
  5406. },
  5407. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5408. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5409. "type": "package",
  5410. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5411. "files": [
  5412. ".nupkg.metadata",
  5413. ".signature.p7s",
  5414. "icon.png",
  5415. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5416. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5417. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5418. "pomelo.entityframeworkcore.mysql.nuspec"
  5419. ]
  5420. },
  5421. "QRCoder/1.4.3": {
  5422. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5423. "type": "package",
  5424. "path": "qrcoder/1.4.3",
  5425. "files": [
  5426. ".nupkg.metadata",
  5427. ".signature.p7s",
  5428. "lib/net35/QRCoder.dll",
  5429. "lib/net40/QRCoder.dll",
  5430. "lib/net5.0-windows7.0/QRCoder.dll",
  5431. "lib/net5.0/QRCoder.dll",
  5432. "lib/net6.0-windows7.0/QRCoder.dll",
  5433. "lib/net6.0/QRCoder.dll",
  5434. "lib/netstandard1.3/QRCoder.dll",
  5435. "lib/netstandard2.0/QRCoder.dll",
  5436. "nuget-icon.png",
  5437. "nuget-readme.md",
  5438. "qrcoder.1.4.3.nupkg.sha512",
  5439. "qrcoder.nuspec"
  5440. ]
  5441. },
  5442. "Quartz/3.3.3": {
  5443. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5444. "type": "package",
  5445. "path": "quartz/3.3.3",
  5446. "files": [
  5447. ".nupkg.metadata",
  5448. ".signature.p7s",
  5449. "lib/net461/Quartz.dll",
  5450. "lib/net461/Quartz.xml",
  5451. "lib/net472/Quartz.dll",
  5452. "lib/net472/Quartz.xml",
  5453. "lib/netstandard2.0/Quartz.dll",
  5454. "lib/netstandard2.0/Quartz.xml",
  5455. "quartz-logo-small.png",
  5456. "quartz.3.3.3.nupkg.sha512",
  5457. "quartz.nuspec"
  5458. ]
  5459. },
  5460. "RabbitMQ.Client/6.8.1": {
  5461. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5462. "type": "package",
  5463. "path": "rabbitmq.client/6.8.1",
  5464. "files": [
  5465. ".nupkg.metadata",
  5466. ".signature.p7s",
  5467. "README.md",
  5468. "icon.png",
  5469. "lib/net462/RabbitMQ.Client.dll",
  5470. "lib/net462/RabbitMQ.Client.xml",
  5471. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5472. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5473. "rabbitmq.client.6.8.1.nupkg.sha512",
  5474. "rabbitmq.client.nuspec"
  5475. ]
  5476. },
  5477. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5478. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5479. "type": "package",
  5480. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5481. "files": [
  5482. ".nupkg.metadata",
  5483. ".signature.p7s",
  5484. "ThirdPartyNotices.txt",
  5485. "dotnet_library_license.txt",
  5486. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5487. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5488. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5489. ]
  5490. },
  5491. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5492. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5493. "type": "package",
  5494. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5495. "files": [
  5496. ".nupkg.metadata",
  5497. ".signature.p7s",
  5498. "ThirdPartyNotices.txt",
  5499. "dotnet_library_license.txt",
  5500. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5501. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5502. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5503. ]
  5504. },
  5505. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5506. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5507. "type": "package",
  5508. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5509. "files": [
  5510. ".nupkg.metadata",
  5511. ".signature.p7s",
  5512. "ThirdPartyNotices.txt",
  5513. "dotnet_library_license.txt",
  5514. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5515. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5516. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5517. ]
  5518. },
  5519. "runtime.native.System/4.3.0": {
  5520. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5521. "type": "package",
  5522. "path": "runtime.native.system/4.3.0",
  5523. "files": [
  5524. ".nupkg.metadata",
  5525. ".signature.p7s",
  5526. "ThirdPartyNotices.txt",
  5527. "dotnet_library_license.txt",
  5528. "lib/netstandard1.0/_._",
  5529. "runtime.native.system.4.3.0.nupkg.sha512",
  5530. "runtime.native.system.nuspec"
  5531. ]
  5532. },
  5533. "runtime.native.System.IO.Compression/4.3.0": {
  5534. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5535. "type": "package",
  5536. "path": "runtime.native.system.io.compression/4.3.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/netstandard1.0/_._",
  5543. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5544. "runtime.native.system.io.compression.nuspec"
  5545. ]
  5546. },
  5547. "runtime.native.System.Net.Http/4.3.0": {
  5548. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5549. "type": "package",
  5550. "path": "runtime.native.system.net.http/4.3.0",
  5551. "files": [
  5552. ".nupkg.metadata",
  5553. ".signature.p7s",
  5554. "ThirdPartyNotices.txt",
  5555. "dotnet_library_license.txt",
  5556. "lib/netstandard1.0/_._",
  5557. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5558. "runtime.native.system.net.http.nuspec"
  5559. ]
  5560. },
  5561. "runtime.native.System.Net.Security/4.3.0": {
  5562. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5563. "type": "package",
  5564. "path": "runtime.native.system.net.security/4.3.0",
  5565. "files": [
  5566. ".nupkg.metadata",
  5567. ".signature.p7s",
  5568. "ThirdPartyNotices.txt",
  5569. "dotnet_library_license.txt",
  5570. "lib/netstandard1.0/_._",
  5571. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5572. "runtime.native.system.net.security.nuspec"
  5573. ]
  5574. },
  5575. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5576. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5577. "type": "package",
  5578. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5579. "files": [
  5580. ".nupkg.metadata",
  5581. ".signature.p7s",
  5582. "ThirdPartyNotices.txt",
  5583. "dotnet_library_license.txt",
  5584. "lib/netstandard1.0/_._",
  5585. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5586. "runtime.native.system.security.cryptography.apple.nuspec"
  5587. ]
  5588. },
  5589. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5590. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5591. "type": "package",
  5592. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. ".signature.p7s",
  5596. "ThirdPartyNotices.txt",
  5597. "dotnet_library_license.txt",
  5598. "lib/netstandard1.0/_._",
  5599. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5600. "runtime.native.system.security.cryptography.openssl.nuspec"
  5601. ]
  5602. },
  5603. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5604. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5605. "type": "package",
  5606. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5607. "files": [
  5608. ".nupkg.metadata",
  5609. ".signature.p7s",
  5610. "ThirdPartyNotices.txt",
  5611. "dotnet_library_license.txt",
  5612. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5613. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5614. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5615. ]
  5616. },
  5617. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5618. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5619. "type": "package",
  5620. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5621. "files": [
  5622. ".nupkg.metadata",
  5623. ".signature.p7s",
  5624. "ThirdPartyNotices.txt",
  5625. "dotnet_library_license.txt",
  5626. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5627. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5628. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5629. ]
  5630. },
  5631. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5632. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5633. "type": "package",
  5634. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5635. "files": [
  5636. ".nupkg.metadata",
  5637. ".signature.p7s",
  5638. "ThirdPartyNotices.txt",
  5639. "dotnet_library_license.txt",
  5640. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5641. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5642. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5643. ]
  5644. },
  5645. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5646. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5647. "type": "package",
  5648. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5649. "files": [
  5650. ".nupkg.metadata",
  5651. ".signature.p7s",
  5652. "ThirdPartyNotices.txt",
  5653. "dotnet_library_license.txt",
  5654. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5655. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5656. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5657. ]
  5658. },
  5659. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5660. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5661. "type": "package",
  5662. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5663. "files": [
  5664. ".nupkg.metadata",
  5665. ".signature.p7s",
  5666. "ThirdPartyNotices.txt",
  5667. "dotnet_library_license.txt",
  5668. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5669. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5670. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5671. ]
  5672. },
  5673. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5674. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5675. "type": "package",
  5676. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5677. "files": [
  5678. ".nupkg.metadata",
  5679. ".signature.p7s",
  5680. "ThirdPartyNotices.txt",
  5681. "dotnet_library_license.txt",
  5682. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5683. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5684. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5685. ]
  5686. },
  5687. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5688. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5689. "type": "package",
  5690. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5691. "files": [
  5692. ".nupkg.metadata",
  5693. ".signature.p7s",
  5694. "ThirdPartyNotices.txt",
  5695. "dotnet_library_license.txt",
  5696. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5697. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5698. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5699. ]
  5700. },
  5701. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5702. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5703. "type": "package",
  5704. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5705. "files": [
  5706. ".nupkg.metadata",
  5707. ".signature.p7s",
  5708. "ThirdPartyNotices.txt",
  5709. "dotnet_library_license.txt",
  5710. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5711. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5712. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5713. ]
  5714. },
  5715. "SharpZipLib/1.3.3": {
  5716. "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
  5717. "type": "package",
  5718. "path": "sharpziplib/1.3.3",
  5719. "files": [
  5720. ".nupkg.metadata",
  5721. ".signature.p7s",
  5722. "images/sharpziplib-nuget-256x256.png",
  5723. "lib/net45/ICSharpCode.SharpZipLib.dll",
  5724. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  5725. "lib/net45/ICSharpCode.SharpZipLib.xml",
  5726. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  5727. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  5728. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  5729. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
  5730. "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
  5731. "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
  5732. "sharpziplib.1.3.3.nupkg.sha512",
  5733. "sharpziplib.nuspec"
  5734. ]
  5735. },
  5736. "SixLabors.Fonts/1.0.0": {
  5737. "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==",
  5738. "type": "package",
  5739. "path": "sixlabors.fonts/1.0.0",
  5740. "files": [
  5741. ".nupkg.metadata",
  5742. ".signature.p7s",
  5743. "lib/netcoreapp3.1/SixLabors.Fonts.dll",
  5744. "lib/netcoreapp3.1/SixLabors.Fonts.xml",
  5745. "lib/netstandard2.0/SixLabors.Fonts.dll",
  5746. "lib/netstandard2.0/SixLabors.Fonts.xml",
  5747. "lib/netstandard2.1/SixLabors.Fonts.dll",
  5748. "lib/netstandard2.1/SixLabors.Fonts.xml",
  5749. "sixlabors.fonts.1.0.0.nupkg.sha512",
  5750. "sixlabors.fonts.128.png",
  5751. "sixlabors.fonts.nuspec"
  5752. ]
  5753. },
  5754. "SixLabors.ImageSharp/2.1.6": {
  5755. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  5756. "type": "package",
  5757. "path": "sixlabors.imagesharp/2.1.6",
  5758. "files": [
  5759. ".nupkg.metadata",
  5760. ".signature.p7s",
  5761. "lib/net472/SixLabors.ImageSharp.dll",
  5762. "lib/net472/SixLabors.ImageSharp.xml",
  5763. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  5764. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  5765. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  5766. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  5767. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  5768. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  5769. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  5770. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  5771. "sixlabors.imagesharp.128.png",
  5772. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  5773. "sixlabors.imagesharp.nuspec"
  5774. ]
  5775. },
  5776. "SSH.NET/2020.0.0-beta1": {
  5777. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  5778. "type": "package",
  5779. "path": "ssh.net/2020.0.0-beta1",
  5780. "files": [
  5781. ".nupkg.metadata",
  5782. ".signature.p7s",
  5783. "lib/net35/Renci.SshNet.dll",
  5784. "lib/net35/Renci.SshNet.xml",
  5785. "lib/net40/Renci.SshNet.dll",
  5786. "lib/net40/Renci.SshNet.xml",
  5787. "lib/netstandard1.3/Renci.SshNet.dll",
  5788. "lib/netstandard1.3/Renci.SshNet.xml",
  5789. "lib/netstandard2.0/Renci.SshNet.dll",
  5790. "lib/netstandard2.0/Renci.SshNet.xml",
  5791. "lib/sl4/Renci.SshNet.dll",
  5792. "lib/sl4/Renci.SshNet.xml",
  5793. "lib/sl5/Renci.SshNet.dll",
  5794. "lib/sl5/Renci.SshNet.xml",
  5795. "lib/uap10/Renci.SshNet.dll",
  5796. "lib/uap10/Renci.SshNet.xml",
  5797. "lib/wp71/Renci.SshNet.dll",
  5798. "lib/wp71/Renci.SshNet.xml",
  5799. "lib/wp8/Renci.SshNet.dll",
  5800. "lib/wp8/Renci.SshNet.xml",
  5801. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5802. "ssh.net.nuspec"
  5803. ]
  5804. },
  5805. "SshNet.Security.Cryptography/1.3.0": {
  5806. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5807. "type": "package",
  5808. "path": "sshnet.security.cryptography/1.3.0",
  5809. "files": [
  5810. ".nupkg.metadata",
  5811. ".signature.p7s",
  5812. "lib/net20/SshNet.Security.Cryptography.dll",
  5813. "lib/net20/SshNet.Security.Cryptography.xml",
  5814. "lib/net40/SshNet.Security.Cryptography.dll",
  5815. "lib/net40/SshNet.Security.Cryptography.xml",
  5816. "lib/net45/SshNet.Security.Cryptography.dll",
  5817. "lib/net45/SshNet.Security.Cryptography.xml",
  5818. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5819. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5820. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5821. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5822. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5823. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5824. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5825. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5826. "lib/sl4/SshNet.Security.Cryptography.dll",
  5827. "lib/sl4/SshNet.Security.Cryptography.xml",
  5828. "lib/sl5/SshNet.Security.Cryptography.dll",
  5829. "lib/sl5/SshNet.Security.Cryptography.xml",
  5830. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5831. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5832. "lib/wp71/SshNet.Security.Cryptography.dll",
  5833. "lib/wp71/SshNet.Security.Cryptography.xml",
  5834. "lib/wp8/SshNet.Security.Cryptography.dll",
  5835. "lib/wp8/SshNet.Security.Cryptography.xml",
  5836. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5837. "sshnet.security.cryptography.nuspec"
  5838. ]
  5839. },
  5840. "StackExchange.Redis/1.2.4": {
  5841. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5842. "type": "package",
  5843. "path": "stackexchange.redis/1.2.4",
  5844. "files": [
  5845. ".nupkg.metadata",
  5846. ".signature.p7s",
  5847. "lib/net45/StackExchange.Redis.dll",
  5848. "lib/net45/StackExchange.Redis.xml",
  5849. "lib/net46/StackExchange.Redis.dll",
  5850. "lib/net46/StackExchange.Redis.xml",
  5851. "lib/netstandard1.5/StackExchange.Redis.dll",
  5852. "lib/netstandard1.5/StackExchange.Redis.xml",
  5853. "stackexchange.redis.1.2.4.nupkg.sha512",
  5854. "stackexchange.redis.nuspec"
  5855. ]
  5856. },
  5857. "Swashbuckle.AspNetCore/5.6.3": {
  5858. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5859. "type": "package",
  5860. "path": "swashbuckle.aspnetcore/5.6.3",
  5861. "files": [
  5862. ".nupkg.metadata",
  5863. ".signature.p7s",
  5864. "build/Swashbuckle.AspNetCore.props",
  5865. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5866. "swashbuckle.aspnetcore.nuspec"
  5867. ]
  5868. },
  5869. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5870. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5871. "type": "package",
  5872. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5873. "files": [
  5874. ".nupkg.metadata",
  5875. ".signature.p7s",
  5876. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5877. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5878. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5879. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5880. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5881. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5882. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5883. "swashbuckle.aspnetcore.swagger.nuspec"
  5884. ]
  5885. },
  5886. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5887. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5888. "type": "package",
  5889. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5890. "files": [
  5891. ".nupkg.metadata",
  5892. ".signature.p7s",
  5893. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5894. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5895. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5896. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5897. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5898. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5899. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5900. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5901. ]
  5902. },
  5903. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5904. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5905. "type": "package",
  5906. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5907. "files": [
  5908. ".nupkg.metadata",
  5909. ".signature.p7s",
  5910. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5911. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5912. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5913. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5914. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5915. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5916. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5917. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5918. ]
  5919. },
  5920. "System.AppContext/4.3.0": {
  5921. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5922. "type": "package",
  5923. "path": "system.appcontext/4.3.0",
  5924. "files": [
  5925. ".nupkg.metadata",
  5926. ".signature.p7s",
  5927. "ThirdPartyNotices.txt",
  5928. "dotnet_library_license.txt",
  5929. "lib/MonoAndroid10/_._",
  5930. "lib/MonoTouch10/_._",
  5931. "lib/net46/System.AppContext.dll",
  5932. "lib/net463/System.AppContext.dll",
  5933. "lib/netcore50/System.AppContext.dll",
  5934. "lib/netstandard1.6/System.AppContext.dll",
  5935. "lib/xamarinios10/_._",
  5936. "lib/xamarinmac20/_._",
  5937. "lib/xamarintvos10/_._",
  5938. "lib/xamarinwatchos10/_._",
  5939. "ref/MonoAndroid10/_._",
  5940. "ref/MonoTouch10/_._",
  5941. "ref/net46/System.AppContext.dll",
  5942. "ref/net463/System.AppContext.dll",
  5943. "ref/netstandard/_._",
  5944. "ref/netstandard1.3/System.AppContext.dll",
  5945. "ref/netstandard1.3/System.AppContext.xml",
  5946. "ref/netstandard1.3/de/System.AppContext.xml",
  5947. "ref/netstandard1.3/es/System.AppContext.xml",
  5948. "ref/netstandard1.3/fr/System.AppContext.xml",
  5949. "ref/netstandard1.3/it/System.AppContext.xml",
  5950. "ref/netstandard1.3/ja/System.AppContext.xml",
  5951. "ref/netstandard1.3/ko/System.AppContext.xml",
  5952. "ref/netstandard1.3/ru/System.AppContext.xml",
  5953. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5954. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5955. "ref/netstandard1.6/System.AppContext.dll",
  5956. "ref/netstandard1.6/System.AppContext.xml",
  5957. "ref/netstandard1.6/de/System.AppContext.xml",
  5958. "ref/netstandard1.6/es/System.AppContext.xml",
  5959. "ref/netstandard1.6/fr/System.AppContext.xml",
  5960. "ref/netstandard1.6/it/System.AppContext.xml",
  5961. "ref/netstandard1.6/ja/System.AppContext.xml",
  5962. "ref/netstandard1.6/ko/System.AppContext.xml",
  5963. "ref/netstandard1.6/ru/System.AppContext.xml",
  5964. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5965. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5966. "ref/xamarinios10/_._",
  5967. "ref/xamarinmac20/_._",
  5968. "ref/xamarintvos10/_._",
  5969. "ref/xamarinwatchos10/_._",
  5970. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5971. "system.appcontext.4.3.0.nupkg.sha512",
  5972. "system.appcontext.nuspec"
  5973. ]
  5974. },
  5975. "System.Buffers/4.5.1": {
  5976. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5977. "type": "package",
  5978. "path": "system.buffers/4.5.1",
  5979. "files": [
  5980. ".nupkg.metadata",
  5981. ".signature.p7s",
  5982. "LICENSE.TXT",
  5983. "THIRD-PARTY-NOTICES.TXT",
  5984. "lib/net461/System.Buffers.dll",
  5985. "lib/net461/System.Buffers.xml",
  5986. "lib/netcoreapp2.0/_._",
  5987. "lib/netstandard1.1/System.Buffers.dll",
  5988. "lib/netstandard1.1/System.Buffers.xml",
  5989. "lib/netstandard2.0/System.Buffers.dll",
  5990. "lib/netstandard2.0/System.Buffers.xml",
  5991. "lib/uap10.0.16299/_._",
  5992. "ref/net45/System.Buffers.dll",
  5993. "ref/net45/System.Buffers.xml",
  5994. "ref/netcoreapp2.0/_._",
  5995. "ref/netstandard1.1/System.Buffers.dll",
  5996. "ref/netstandard1.1/System.Buffers.xml",
  5997. "ref/netstandard2.0/System.Buffers.dll",
  5998. "ref/netstandard2.0/System.Buffers.xml",
  5999. "ref/uap10.0.16299/_._",
  6000. "system.buffers.4.5.1.nupkg.sha512",
  6001. "system.buffers.nuspec",
  6002. "useSharedDesignerContext.txt",
  6003. "version.txt"
  6004. ]
  6005. },
  6006. "System.Collections/4.3.0": {
  6007. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6008. "type": "package",
  6009. "path": "system.collections/4.3.0",
  6010. "files": [
  6011. ".nupkg.metadata",
  6012. ".signature.p7s",
  6013. "ThirdPartyNotices.txt",
  6014. "dotnet_library_license.txt",
  6015. "lib/MonoAndroid10/_._",
  6016. "lib/MonoTouch10/_._",
  6017. "lib/net45/_._",
  6018. "lib/portable-net45+win8+wp8+wpa81/_._",
  6019. "lib/win8/_._",
  6020. "lib/wp80/_._",
  6021. "lib/wpa81/_._",
  6022. "lib/xamarinios10/_._",
  6023. "lib/xamarinmac20/_._",
  6024. "lib/xamarintvos10/_._",
  6025. "lib/xamarinwatchos10/_._",
  6026. "ref/MonoAndroid10/_._",
  6027. "ref/MonoTouch10/_._",
  6028. "ref/net45/_._",
  6029. "ref/netcore50/System.Collections.dll",
  6030. "ref/netcore50/System.Collections.xml",
  6031. "ref/netcore50/de/System.Collections.xml",
  6032. "ref/netcore50/es/System.Collections.xml",
  6033. "ref/netcore50/fr/System.Collections.xml",
  6034. "ref/netcore50/it/System.Collections.xml",
  6035. "ref/netcore50/ja/System.Collections.xml",
  6036. "ref/netcore50/ko/System.Collections.xml",
  6037. "ref/netcore50/ru/System.Collections.xml",
  6038. "ref/netcore50/zh-hans/System.Collections.xml",
  6039. "ref/netcore50/zh-hant/System.Collections.xml",
  6040. "ref/netstandard1.0/System.Collections.dll",
  6041. "ref/netstandard1.0/System.Collections.xml",
  6042. "ref/netstandard1.0/de/System.Collections.xml",
  6043. "ref/netstandard1.0/es/System.Collections.xml",
  6044. "ref/netstandard1.0/fr/System.Collections.xml",
  6045. "ref/netstandard1.0/it/System.Collections.xml",
  6046. "ref/netstandard1.0/ja/System.Collections.xml",
  6047. "ref/netstandard1.0/ko/System.Collections.xml",
  6048. "ref/netstandard1.0/ru/System.Collections.xml",
  6049. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6050. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6051. "ref/netstandard1.3/System.Collections.dll",
  6052. "ref/netstandard1.3/System.Collections.xml",
  6053. "ref/netstandard1.3/de/System.Collections.xml",
  6054. "ref/netstandard1.3/es/System.Collections.xml",
  6055. "ref/netstandard1.3/fr/System.Collections.xml",
  6056. "ref/netstandard1.3/it/System.Collections.xml",
  6057. "ref/netstandard1.3/ja/System.Collections.xml",
  6058. "ref/netstandard1.3/ko/System.Collections.xml",
  6059. "ref/netstandard1.3/ru/System.Collections.xml",
  6060. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6061. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6062. "ref/portable-net45+win8+wp8+wpa81/_._",
  6063. "ref/win8/_._",
  6064. "ref/wp80/_._",
  6065. "ref/wpa81/_._",
  6066. "ref/xamarinios10/_._",
  6067. "ref/xamarinmac20/_._",
  6068. "ref/xamarintvos10/_._",
  6069. "ref/xamarinwatchos10/_._",
  6070. "system.collections.4.3.0.nupkg.sha512",
  6071. "system.collections.nuspec"
  6072. ]
  6073. },
  6074. "System.Collections.Concurrent/4.3.0": {
  6075. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6076. "type": "package",
  6077. "path": "system.collections.concurrent/4.3.0",
  6078. "files": [
  6079. ".nupkg.metadata",
  6080. ".signature.p7s",
  6081. "ThirdPartyNotices.txt",
  6082. "dotnet_library_license.txt",
  6083. "lib/MonoAndroid10/_._",
  6084. "lib/MonoTouch10/_._",
  6085. "lib/net45/_._",
  6086. "lib/netcore50/System.Collections.Concurrent.dll",
  6087. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6088. "lib/portable-net45+win8+wpa81/_._",
  6089. "lib/win8/_._",
  6090. "lib/wpa81/_._",
  6091. "lib/xamarinios10/_._",
  6092. "lib/xamarinmac20/_._",
  6093. "lib/xamarintvos10/_._",
  6094. "lib/xamarinwatchos10/_._",
  6095. "ref/MonoAndroid10/_._",
  6096. "ref/MonoTouch10/_._",
  6097. "ref/net45/_._",
  6098. "ref/netcore50/System.Collections.Concurrent.dll",
  6099. "ref/netcore50/System.Collections.Concurrent.xml",
  6100. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6101. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6102. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6103. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6104. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6105. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6106. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6107. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6108. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6109. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6110. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6111. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6112. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6113. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6114. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6115. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6116. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6117. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6118. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6119. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6120. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6121. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6122. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6123. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6124. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6125. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6126. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6127. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6128. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6129. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6130. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6131. "ref/portable-net45+win8+wpa81/_._",
  6132. "ref/win8/_._",
  6133. "ref/wpa81/_._",
  6134. "ref/xamarinios10/_._",
  6135. "ref/xamarinmac20/_._",
  6136. "ref/xamarintvos10/_._",
  6137. "ref/xamarinwatchos10/_._",
  6138. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6139. "system.collections.concurrent.nuspec"
  6140. ]
  6141. },
  6142. "System.Collections.Immutable/5.0.0": {
  6143. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6144. "type": "package",
  6145. "path": "system.collections.immutable/5.0.0",
  6146. "files": [
  6147. ".nupkg.metadata",
  6148. ".signature.p7s",
  6149. "Icon.png",
  6150. "LICENSE.TXT",
  6151. "THIRD-PARTY-NOTICES.TXT",
  6152. "lib/net461/System.Collections.Immutable.dll",
  6153. "lib/net461/System.Collections.Immutable.xml",
  6154. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6155. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6156. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6157. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6158. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6159. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6160. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6161. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6162. "system.collections.immutable.5.0.0.nupkg.sha512",
  6163. "system.collections.immutable.nuspec",
  6164. "useSharedDesignerContext.txt",
  6165. "version.txt"
  6166. ]
  6167. },
  6168. "System.Collections.NonGeneric/4.3.0": {
  6169. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6170. "type": "package",
  6171. "path": "system.collections.nongeneric/4.3.0",
  6172. "files": [
  6173. ".nupkg.metadata",
  6174. ".signature.p7s",
  6175. "ThirdPartyNotices.txt",
  6176. "dotnet_library_license.txt",
  6177. "lib/MonoAndroid10/_._",
  6178. "lib/MonoTouch10/_._",
  6179. "lib/net46/System.Collections.NonGeneric.dll",
  6180. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6181. "lib/xamarinios10/_._",
  6182. "lib/xamarinmac20/_._",
  6183. "lib/xamarintvos10/_._",
  6184. "lib/xamarinwatchos10/_._",
  6185. "ref/MonoAndroid10/_._",
  6186. "ref/MonoTouch10/_._",
  6187. "ref/net46/System.Collections.NonGeneric.dll",
  6188. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6189. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6190. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6191. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6192. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6193. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6194. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6195. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6196. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6197. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6198. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6199. "ref/xamarinios10/_._",
  6200. "ref/xamarinmac20/_._",
  6201. "ref/xamarintvos10/_._",
  6202. "ref/xamarinwatchos10/_._",
  6203. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6204. "system.collections.nongeneric.nuspec"
  6205. ]
  6206. },
  6207. "System.Collections.Specialized/4.3.0": {
  6208. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6209. "type": "package",
  6210. "path": "system.collections.specialized/4.3.0",
  6211. "files": [
  6212. ".nupkg.metadata",
  6213. ".signature.p7s",
  6214. "ThirdPartyNotices.txt",
  6215. "dotnet_library_license.txt",
  6216. "lib/MonoAndroid10/_._",
  6217. "lib/MonoTouch10/_._",
  6218. "lib/net46/System.Collections.Specialized.dll",
  6219. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6220. "lib/xamarinios10/_._",
  6221. "lib/xamarinmac20/_._",
  6222. "lib/xamarintvos10/_._",
  6223. "lib/xamarinwatchos10/_._",
  6224. "ref/MonoAndroid10/_._",
  6225. "ref/MonoTouch10/_._",
  6226. "ref/net46/System.Collections.Specialized.dll",
  6227. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6228. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6229. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6230. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6231. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6232. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6233. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6234. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6235. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6236. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6237. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6238. "ref/xamarinios10/_._",
  6239. "ref/xamarinmac20/_._",
  6240. "ref/xamarintvos10/_._",
  6241. "ref/xamarinwatchos10/_._",
  6242. "system.collections.specialized.4.3.0.nupkg.sha512",
  6243. "system.collections.specialized.nuspec"
  6244. ]
  6245. },
  6246. "System.ComponentModel/4.3.0": {
  6247. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6248. "type": "package",
  6249. "path": "system.componentmodel/4.3.0",
  6250. "files": [
  6251. ".nupkg.metadata",
  6252. ".signature.p7s",
  6253. "ThirdPartyNotices.txt",
  6254. "dotnet_library_license.txt",
  6255. "lib/MonoAndroid10/_._",
  6256. "lib/MonoTouch10/_._",
  6257. "lib/net45/_._",
  6258. "lib/netcore50/System.ComponentModel.dll",
  6259. "lib/netstandard1.3/System.ComponentModel.dll",
  6260. "lib/portable-net45+win8+wp8+wpa81/_._",
  6261. "lib/win8/_._",
  6262. "lib/wp80/_._",
  6263. "lib/wpa81/_._",
  6264. "lib/xamarinios10/_._",
  6265. "lib/xamarinmac20/_._",
  6266. "lib/xamarintvos10/_._",
  6267. "lib/xamarinwatchos10/_._",
  6268. "ref/MonoAndroid10/_._",
  6269. "ref/MonoTouch10/_._",
  6270. "ref/net45/_._",
  6271. "ref/netcore50/System.ComponentModel.dll",
  6272. "ref/netcore50/System.ComponentModel.xml",
  6273. "ref/netcore50/de/System.ComponentModel.xml",
  6274. "ref/netcore50/es/System.ComponentModel.xml",
  6275. "ref/netcore50/fr/System.ComponentModel.xml",
  6276. "ref/netcore50/it/System.ComponentModel.xml",
  6277. "ref/netcore50/ja/System.ComponentModel.xml",
  6278. "ref/netcore50/ko/System.ComponentModel.xml",
  6279. "ref/netcore50/ru/System.ComponentModel.xml",
  6280. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6281. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6282. "ref/netstandard1.0/System.ComponentModel.dll",
  6283. "ref/netstandard1.0/System.ComponentModel.xml",
  6284. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6285. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6286. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6287. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6288. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6289. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6290. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6291. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6292. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6293. "ref/portable-net45+win8+wp8+wpa81/_._",
  6294. "ref/win8/_._",
  6295. "ref/wp80/_._",
  6296. "ref/wpa81/_._",
  6297. "ref/xamarinios10/_._",
  6298. "ref/xamarinmac20/_._",
  6299. "ref/xamarintvos10/_._",
  6300. "ref/xamarinwatchos10/_._",
  6301. "system.componentmodel.4.3.0.nupkg.sha512",
  6302. "system.componentmodel.nuspec"
  6303. ]
  6304. },
  6305. "System.ComponentModel.Annotations/5.0.0": {
  6306. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6307. "type": "package",
  6308. "path": "system.componentmodel.annotations/5.0.0",
  6309. "files": [
  6310. ".nupkg.metadata",
  6311. ".signature.p7s",
  6312. "Icon.png",
  6313. "LICENSE.TXT",
  6314. "THIRD-PARTY-NOTICES.TXT",
  6315. "lib/MonoAndroid10/_._",
  6316. "lib/MonoTouch10/_._",
  6317. "lib/net45/_._",
  6318. "lib/net461/System.ComponentModel.Annotations.dll",
  6319. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6320. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6321. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6322. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6323. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6324. "lib/portable-net45+win8/_._",
  6325. "lib/win8/_._",
  6326. "lib/xamarinios10/_._",
  6327. "lib/xamarinmac20/_._",
  6328. "lib/xamarintvos10/_._",
  6329. "lib/xamarinwatchos10/_._",
  6330. "ref/MonoAndroid10/_._",
  6331. "ref/MonoTouch10/_._",
  6332. "ref/net45/_._",
  6333. "ref/net461/System.ComponentModel.Annotations.dll",
  6334. "ref/net461/System.ComponentModel.Annotations.xml",
  6335. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6336. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6337. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6338. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6339. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6340. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6341. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6342. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6343. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6344. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6345. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6346. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6347. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6348. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6349. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6350. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6351. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6352. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6353. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6354. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6355. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6356. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6357. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6358. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6359. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6360. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6361. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6362. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6363. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6364. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6365. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6366. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6367. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6368. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6369. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6370. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6371. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6372. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6373. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6374. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6375. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6376. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6377. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6378. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6379. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6380. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6381. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6382. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6383. "ref/portable-net45+win8/_._",
  6384. "ref/win8/_._",
  6385. "ref/xamarinios10/_._",
  6386. "ref/xamarinmac20/_._",
  6387. "ref/xamarintvos10/_._",
  6388. "ref/xamarinwatchos10/_._",
  6389. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6390. "system.componentmodel.annotations.nuspec",
  6391. "useSharedDesignerContext.txt",
  6392. "version.txt"
  6393. ]
  6394. },
  6395. "System.ComponentModel.Primitives/4.3.0": {
  6396. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6397. "type": "package",
  6398. "path": "system.componentmodel.primitives/4.3.0",
  6399. "files": [
  6400. ".nupkg.metadata",
  6401. ".signature.p7s",
  6402. "ThirdPartyNotices.txt",
  6403. "dotnet_library_license.txt",
  6404. "lib/MonoAndroid10/_._",
  6405. "lib/MonoTouch10/_._",
  6406. "lib/net45/System.ComponentModel.Primitives.dll",
  6407. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6408. "lib/xamarinios10/_._",
  6409. "lib/xamarinmac20/_._",
  6410. "lib/xamarintvos10/_._",
  6411. "lib/xamarinwatchos10/_._",
  6412. "ref/MonoAndroid10/_._",
  6413. "ref/MonoTouch10/_._",
  6414. "ref/net45/System.ComponentModel.Primitives.dll",
  6415. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6416. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6417. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6418. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6419. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6420. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6421. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6422. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6423. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6424. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6425. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6426. "ref/xamarinios10/_._",
  6427. "ref/xamarinmac20/_._",
  6428. "ref/xamarintvos10/_._",
  6429. "ref/xamarinwatchos10/_._",
  6430. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6431. "system.componentmodel.primitives.nuspec"
  6432. ]
  6433. },
  6434. "System.ComponentModel.TypeConverter/4.3.0": {
  6435. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6436. "type": "package",
  6437. "path": "system.componentmodel.typeconverter/4.3.0",
  6438. "files": [
  6439. ".nupkg.metadata",
  6440. ".signature.p7s",
  6441. "ThirdPartyNotices.txt",
  6442. "dotnet_library_license.txt",
  6443. "lib/MonoAndroid10/_._",
  6444. "lib/MonoTouch10/_._",
  6445. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6446. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6447. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6448. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6449. "lib/xamarinios10/_._",
  6450. "lib/xamarinmac20/_._",
  6451. "lib/xamarintvos10/_._",
  6452. "lib/xamarinwatchos10/_._",
  6453. "ref/MonoAndroid10/_._",
  6454. "ref/MonoTouch10/_._",
  6455. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6456. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6457. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6458. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6459. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6460. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6461. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6462. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6463. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6464. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6465. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6466. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6467. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6468. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6469. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6470. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6471. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6472. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6473. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6474. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6475. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6476. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6477. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6478. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6479. "ref/xamarinios10/_._",
  6480. "ref/xamarinmac20/_._",
  6481. "ref/xamarintvos10/_._",
  6482. "ref/xamarinwatchos10/_._",
  6483. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6484. "system.componentmodel.typeconverter.nuspec"
  6485. ]
  6486. },
  6487. "System.Configuration.ConfigurationManager/6.0.0": {
  6488. "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
  6489. "type": "package",
  6490. "path": "system.configuration.configurationmanager/6.0.0",
  6491. "files": [
  6492. ".nupkg.metadata",
  6493. ".signature.p7s",
  6494. "Icon.png",
  6495. "LICENSE.TXT",
  6496. "THIRD-PARTY-NOTICES.TXT",
  6497. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  6498. "buildTransitive/netcoreapp3.1/_._",
  6499. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6500. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6501. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  6502. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  6503. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6504. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6505. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  6506. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  6507. "system.configuration.configurationmanager.6.0.0.nupkg.sha512",
  6508. "system.configuration.configurationmanager.nuspec",
  6509. "useSharedDesignerContext.txt"
  6510. ]
  6511. },
  6512. "System.Console/4.3.0": {
  6513. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6514. "type": "package",
  6515. "path": "system.console/4.3.0",
  6516. "files": [
  6517. ".nupkg.metadata",
  6518. ".signature.p7s",
  6519. "ThirdPartyNotices.txt",
  6520. "dotnet_library_license.txt",
  6521. "lib/MonoAndroid10/_._",
  6522. "lib/MonoTouch10/_._",
  6523. "lib/net46/System.Console.dll",
  6524. "lib/xamarinios10/_._",
  6525. "lib/xamarinmac20/_._",
  6526. "lib/xamarintvos10/_._",
  6527. "lib/xamarinwatchos10/_._",
  6528. "ref/MonoAndroid10/_._",
  6529. "ref/MonoTouch10/_._",
  6530. "ref/net46/System.Console.dll",
  6531. "ref/netstandard1.3/System.Console.dll",
  6532. "ref/netstandard1.3/System.Console.xml",
  6533. "ref/netstandard1.3/de/System.Console.xml",
  6534. "ref/netstandard1.3/es/System.Console.xml",
  6535. "ref/netstandard1.3/fr/System.Console.xml",
  6536. "ref/netstandard1.3/it/System.Console.xml",
  6537. "ref/netstandard1.3/ja/System.Console.xml",
  6538. "ref/netstandard1.3/ko/System.Console.xml",
  6539. "ref/netstandard1.3/ru/System.Console.xml",
  6540. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6541. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6542. "ref/xamarinios10/_._",
  6543. "ref/xamarinmac20/_._",
  6544. "ref/xamarintvos10/_._",
  6545. "ref/xamarinwatchos10/_._",
  6546. "system.console.4.3.0.nupkg.sha512",
  6547. "system.console.nuspec"
  6548. ]
  6549. },
  6550. "System.Diagnostics.Debug/4.3.0": {
  6551. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6552. "type": "package",
  6553. "path": "system.diagnostics.debug/4.3.0",
  6554. "files": [
  6555. ".nupkg.metadata",
  6556. ".signature.p7s",
  6557. "ThirdPartyNotices.txt",
  6558. "dotnet_library_license.txt",
  6559. "lib/MonoAndroid10/_._",
  6560. "lib/MonoTouch10/_._",
  6561. "lib/net45/_._",
  6562. "lib/portable-net45+win8+wp8+wpa81/_._",
  6563. "lib/win8/_._",
  6564. "lib/wp80/_._",
  6565. "lib/wpa81/_._",
  6566. "lib/xamarinios10/_._",
  6567. "lib/xamarinmac20/_._",
  6568. "lib/xamarintvos10/_._",
  6569. "lib/xamarinwatchos10/_._",
  6570. "ref/MonoAndroid10/_._",
  6571. "ref/MonoTouch10/_._",
  6572. "ref/net45/_._",
  6573. "ref/netcore50/System.Diagnostics.Debug.dll",
  6574. "ref/netcore50/System.Diagnostics.Debug.xml",
  6575. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6576. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6577. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6578. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6579. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6580. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6581. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6582. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6583. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6584. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6585. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6586. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6587. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6588. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6589. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6590. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6591. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6592. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6593. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6594. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6595. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6596. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6597. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6598. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6599. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6600. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6601. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6602. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6603. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6604. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6605. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6606. "ref/portable-net45+win8+wp8+wpa81/_._",
  6607. "ref/win8/_._",
  6608. "ref/wp80/_._",
  6609. "ref/wpa81/_._",
  6610. "ref/xamarinios10/_._",
  6611. "ref/xamarinmac20/_._",
  6612. "ref/xamarintvos10/_._",
  6613. "ref/xamarinwatchos10/_._",
  6614. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6615. "system.diagnostics.debug.nuspec"
  6616. ]
  6617. },
  6618. "System.Diagnostics.DiagnosticSource/5.0.1": {
  6619. "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  6620. "type": "package",
  6621. "path": "system.diagnostics.diagnosticsource/5.0.1",
  6622. "files": [
  6623. ".nupkg.metadata",
  6624. ".signature.p7s",
  6625. "Icon.png",
  6626. "LICENSE.TXT",
  6627. "THIRD-PARTY-NOTICES.TXT",
  6628. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6629. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6630. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6631. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6632. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6633. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6634. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6635. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6636. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6637. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6638. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6639. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6640. "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
  6641. "system.diagnostics.diagnosticsource.nuspec",
  6642. "useSharedDesignerContext.txt",
  6643. "version.txt"
  6644. ]
  6645. },
  6646. "System.Diagnostics.Tools/4.3.0": {
  6647. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6648. "type": "package",
  6649. "path": "system.diagnostics.tools/4.3.0",
  6650. "files": [
  6651. ".nupkg.metadata",
  6652. ".signature.p7s",
  6653. "ThirdPartyNotices.txt",
  6654. "dotnet_library_license.txt",
  6655. "lib/MonoAndroid10/_._",
  6656. "lib/MonoTouch10/_._",
  6657. "lib/net45/_._",
  6658. "lib/portable-net45+win8+wp8+wpa81/_._",
  6659. "lib/win8/_._",
  6660. "lib/wp80/_._",
  6661. "lib/wpa81/_._",
  6662. "lib/xamarinios10/_._",
  6663. "lib/xamarinmac20/_._",
  6664. "lib/xamarintvos10/_._",
  6665. "lib/xamarinwatchos10/_._",
  6666. "ref/MonoAndroid10/_._",
  6667. "ref/MonoTouch10/_._",
  6668. "ref/net45/_._",
  6669. "ref/netcore50/System.Diagnostics.Tools.dll",
  6670. "ref/netcore50/System.Diagnostics.Tools.xml",
  6671. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6672. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6673. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6674. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6675. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6676. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6677. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6678. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6679. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6680. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6681. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6682. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6683. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6684. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6685. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6686. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6687. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6688. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6689. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6690. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6691. "ref/portable-net45+win8+wp8+wpa81/_._",
  6692. "ref/win8/_._",
  6693. "ref/wp80/_._",
  6694. "ref/wpa81/_._",
  6695. "ref/xamarinios10/_._",
  6696. "ref/xamarinmac20/_._",
  6697. "ref/xamarintvos10/_._",
  6698. "ref/xamarinwatchos10/_._",
  6699. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6700. "system.diagnostics.tools.nuspec"
  6701. ]
  6702. },
  6703. "System.Diagnostics.TraceSource/4.3.0": {
  6704. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6705. "type": "package",
  6706. "path": "system.diagnostics.tracesource/4.3.0",
  6707. "files": [
  6708. ".nupkg.metadata",
  6709. ".signature.p7s",
  6710. "ThirdPartyNotices.txt",
  6711. "dotnet_library_license.txt",
  6712. "lib/MonoAndroid10/_._",
  6713. "lib/MonoTouch10/_._",
  6714. "lib/net46/System.Diagnostics.TraceSource.dll",
  6715. "lib/xamarinios10/_._",
  6716. "lib/xamarinmac20/_._",
  6717. "lib/xamarintvos10/_._",
  6718. "lib/xamarinwatchos10/_._",
  6719. "ref/MonoAndroid10/_._",
  6720. "ref/MonoTouch10/_._",
  6721. "ref/net46/System.Diagnostics.TraceSource.dll",
  6722. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6723. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6724. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6725. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6726. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  6727. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  6728. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  6729. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  6730. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  6731. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  6732. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  6733. "ref/xamarinios10/_._",
  6734. "ref/xamarinmac20/_._",
  6735. "ref/xamarintvos10/_._",
  6736. "ref/xamarinwatchos10/_._",
  6737. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6738. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  6739. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6740. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  6741. "system.diagnostics.tracesource.nuspec"
  6742. ]
  6743. },
  6744. "System.Diagnostics.Tracing/4.3.0": {
  6745. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6746. "type": "package",
  6747. "path": "system.diagnostics.tracing/4.3.0",
  6748. "files": [
  6749. ".nupkg.metadata",
  6750. ".signature.p7s",
  6751. "ThirdPartyNotices.txt",
  6752. "dotnet_library_license.txt",
  6753. "lib/MonoAndroid10/_._",
  6754. "lib/MonoTouch10/_._",
  6755. "lib/net45/_._",
  6756. "lib/net462/System.Diagnostics.Tracing.dll",
  6757. "lib/portable-net45+win8+wpa81/_._",
  6758. "lib/win8/_._",
  6759. "lib/wpa81/_._",
  6760. "lib/xamarinios10/_._",
  6761. "lib/xamarinmac20/_._",
  6762. "lib/xamarintvos10/_._",
  6763. "lib/xamarinwatchos10/_._",
  6764. "ref/MonoAndroid10/_._",
  6765. "ref/MonoTouch10/_._",
  6766. "ref/net45/_._",
  6767. "ref/net462/System.Diagnostics.Tracing.dll",
  6768. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6769. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6770. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6771. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6772. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6773. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6774. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6775. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6776. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6777. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6778. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6779. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6780. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6781. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6782. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6783. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6784. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6785. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6786. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6787. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6788. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6789. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6790. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6791. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6792. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6793. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6794. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6795. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6796. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6797. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6798. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6799. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6800. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6801. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6802. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6803. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6804. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6805. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6806. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6807. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6808. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6809. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6810. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6811. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6812. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6813. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6814. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6815. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6816. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6817. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6818. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6819. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6820. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6821. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6822. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6823. "ref/portable-net45+win8+wpa81/_._",
  6824. "ref/win8/_._",
  6825. "ref/wpa81/_._",
  6826. "ref/xamarinios10/_._",
  6827. "ref/xamarinmac20/_._",
  6828. "ref/xamarintvos10/_._",
  6829. "ref/xamarinwatchos10/_._",
  6830. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6831. "system.diagnostics.tracing.nuspec"
  6832. ]
  6833. },
  6834. "System.Drawing.Common/6.0.0": {
  6835. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  6836. "type": "package",
  6837. "path": "system.drawing.common/6.0.0",
  6838. "files": [
  6839. ".nupkg.metadata",
  6840. ".signature.p7s",
  6841. "Icon.png",
  6842. "LICENSE.TXT",
  6843. "THIRD-PARTY-NOTICES.TXT",
  6844. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  6845. "buildTransitive/netcoreapp3.1/_._",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/net461/System.Drawing.Common.dll",
  6849. "lib/net461/System.Drawing.Common.xml",
  6850. "lib/net6.0/System.Drawing.Common.dll",
  6851. "lib/net6.0/System.Drawing.Common.xml",
  6852. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  6853. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  6854. "lib/netstandard2.0/System.Drawing.Common.dll",
  6855. "lib/netstandard2.0/System.Drawing.Common.xml",
  6856. "lib/xamarinios10/_._",
  6857. "lib/xamarinmac20/_._",
  6858. "lib/xamarintvos10/_._",
  6859. "lib/xamarinwatchos10/_._",
  6860. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  6861. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  6862. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  6863. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  6864. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  6865. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  6866. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  6867. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  6868. "system.drawing.common.6.0.0.nupkg.sha512",
  6869. "system.drawing.common.nuspec",
  6870. "useSharedDesignerContext.txt"
  6871. ]
  6872. },
  6873. "System.Dynamic.Runtime/4.3.0": {
  6874. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6875. "type": "package",
  6876. "path": "system.dynamic.runtime/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.Dynamic.Runtime.dll",
  6886. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6887. "lib/portable-net45+win8+wp8+wpa81/_._",
  6888. "lib/win8/_._",
  6889. "lib/wp80/_._",
  6890. "lib/wpa81/_._",
  6891. "lib/xamarinios10/_._",
  6892. "lib/xamarinmac20/_._",
  6893. "lib/xamarintvos10/_._",
  6894. "lib/xamarinwatchos10/_._",
  6895. "ref/MonoAndroid10/_._",
  6896. "ref/MonoTouch10/_._",
  6897. "ref/net45/_._",
  6898. "ref/netcore50/System.Dynamic.Runtime.dll",
  6899. "ref/netcore50/System.Dynamic.Runtime.xml",
  6900. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6901. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6902. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6903. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6904. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6905. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6906. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6907. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6908. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6909. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6910. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6911. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6912. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6913. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6914. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6915. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6916. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6917. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6918. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6919. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6920. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6921. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6922. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6923. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6924. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6925. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6926. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6927. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6928. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6929. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6930. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6931. "ref/portable-net45+win8+wp8+wpa81/_._",
  6932. "ref/win8/_._",
  6933. "ref/wp80/_._",
  6934. "ref/wpa81/_._",
  6935. "ref/xamarinios10/_._",
  6936. "ref/xamarinmac20/_._",
  6937. "ref/xamarintvos10/_._",
  6938. "ref/xamarinwatchos10/_._",
  6939. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6940. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6941. "system.dynamic.runtime.nuspec"
  6942. ]
  6943. },
  6944. "System.Formats.Asn1/6.0.0": {
  6945. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  6946. "type": "package",
  6947. "path": "system.formats.asn1/6.0.0",
  6948. "files": [
  6949. ".nupkg.metadata",
  6950. ".signature.p7s",
  6951. "Icon.png",
  6952. "LICENSE.TXT",
  6953. "THIRD-PARTY-NOTICES.TXT",
  6954. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  6955. "buildTransitive/netcoreapp3.1/_._",
  6956. "lib/net461/System.Formats.Asn1.dll",
  6957. "lib/net461/System.Formats.Asn1.xml",
  6958. "lib/net6.0/System.Formats.Asn1.dll",
  6959. "lib/net6.0/System.Formats.Asn1.xml",
  6960. "lib/netstandard2.0/System.Formats.Asn1.dll",
  6961. "lib/netstandard2.0/System.Formats.Asn1.xml",
  6962. "system.formats.asn1.6.0.0.nupkg.sha512",
  6963. "system.formats.asn1.nuspec",
  6964. "useSharedDesignerContext.txt"
  6965. ]
  6966. },
  6967. "System.Globalization/4.3.0": {
  6968. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6969. "type": "package",
  6970. "path": "system.globalization/4.3.0",
  6971. "files": [
  6972. ".nupkg.metadata",
  6973. ".signature.p7s",
  6974. "ThirdPartyNotices.txt",
  6975. "dotnet_library_license.txt",
  6976. "lib/MonoAndroid10/_._",
  6977. "lib/MonoTouch10/_._",
  6978. "lib/net45/_._",
  6979. "lib/portable-net45+win8+wp8+wpa81/_._",
  6980. "lib/win8/_._",
  6981. "lib/wp80/_._",
  6982. "lib/wpa81/_._",
  6983. "lib/xamarinios10/_._",
  6984. "lib/xamarinmac20/_._",
  6985. "lib/xamarintvos10/_._",
  6986. "lib/xamarinwatchos10/_._",
  6987. "ref/MonoAndroid10/_._",
  6988. "ref/MonoTouch10/_._",
  6989. "ref/net45/_._",
  6990. "ref/netcore50/System.Globalization.dll",
  6991. "ref/netcore50/System.Globalization.xml",
  6992. "ref/netcore50/de/System.Globalization.xml",
  6993. "ref/netcore50/es/System.Globalization.xml",
  6994. "ref/netcore50/fr/System.Globalization.xml",
  6995. "ref/netcore50/it/System.Globalization.xml",
  6996. "ref/netcore50/ja/System.Globalization.xml",
  6997. "ref/netcore50/ko/System.Globalization.xml",
  6998. "ref/netcore50/ru/System.Globalization.xml",
  6999. "ref/netcore50/zh-hans/System.Globalization.xml",
  7000. "ref/netcore50/zh-hant/System.Globalization.xml",
  7001. "ref/netstandard1.0/System.Globalization.dll",
  7002. "ref/netstandard1.0/System.Globalization.xml",
  7003. "ref/netstandard1.0/de/System.Globalization.xml",
  7004. "ref/netstandard1.0/es/System.Globalization.xml",
  7005. "ref/netstandard1.0/fr/System.Globalization.xml",
  7006. "ref/netstandard1.0/it/System.Globalization.xml",
  7007. "ref/netstandard1.0/ja/System.Globalization.xml",
  7008. "ref/netstandard1.0/ko/System.Globalization.xml",
  7009. "ref/netstandard1.0/ru/System.Globalization.xml",
  7010. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7011. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7012. "ref/netstandard1.3/System.Globalization.dll",
  7013. "ref/netstandard1.3/System.Globalization.xml",
  7014. "ref/netstandard1.3/de/System.Globalization.xml",
  7015. "ref/netstandard1.3/es/System.Globalization.xml",
  7016. "ref/netstandard1.3/fr/System.Globalization.xml",
  7017. "ref/netstandard1.3/it/System.Globalization.xml",
  7018. "ref/netstandard1.3/ja/System.Globalization.xml",
  7019. "ref/netstandard1.3/ko/System.Globalization.xml",
  7020. "ref/netstandard1.3/ru/System.Globalization.xml",
  7021. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7022. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7023. "ref/portable-net45+win8+wp8+wpa81/_._",
  7024. "ref/win8/_._",
  7025. "ref/wp80/_._",
  7026. "ref/wpa81/_._",
  7027. "ref/xamarinios10/_._",
  7028. "ref/xamarinmac20/_._",
  7029. "ref/xamarintvos10/_._",
  7030. "ref/xamarinwatchos10/_._",
  7031. "system.globalization.4.3.0.nupkg.sha512",
  7032. "system.globalization.nuspec"
  7033. ]
  7034. },
  7035. "System.Globalization.Calendars/4.3.0": {
  7036. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7037. "type": "package",
  7038. "path": "system.globalization.calendars/4.3.0",
  7039. "files": [
  7040. ".nupkg.metadata",
  7041. ".signature.p7s",
  7042. "ThirdPartyNotices.txt",
  7043. "dotnet_library_license.txt",
  7044. "lib/MonoAndroid10/_._",
  7045. "lib/MonoTouch10/_._",
  7046. "lib/net46/System.Globalization.Calendars.dll",
  7047. "lib/xamarinios10/_._",
  7048. "lib/xamarinmac20/_._",
  7049. "lib/xamarintvos10/_._",
  7050. "lib/xamarinwatchos10/_._",
  7051. "ref/MonoAndroid10/_._",
  7052. "ref/MonoTouch10/_._",
  7053. "ref/net46/System.Globalization.Calendars.dll",
  7054. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7055. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7056. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7057. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7058. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7059. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7060. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7061. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7062. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7063. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7064. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7065. "ref/xamarinios10/_._",
  7066. "ref/xamarinmac20/_._",
  7067. "ref/xamarintvos10/_._",
  7068. "ref/xamarinwatchos10/_._",
  7069. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7070. "system.globalization.calendars.nuspec"
  7071. ]
  7072. },
  7073. "System.Globalization.Extensions/4.3.0": {
  7074. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7075. "type": "package",
  7076. "path": "system.globalization.extensions/4.3.0",
  7077. "files": [
  7078. ".nupkg.metadata",
  7079. ".signature.p7s",
  7080. "ThirdPartyNotices.txt",
  7081. "dotnet_library_license.txt",
  7082. "lib/MonoAndroid10/_._",
  7083. "lib/MonoTouch10/_._",
  7084. "lib/net46/System.Globalization.Extensions.dll",
  7085. "lib/xamarinios10/_._",
  7086. "lib/xamarinmac20/_._",
  7087. "lib/xamarintvos10/_._",
  7088. "lib/xamarinwatchos10/_._",
  7089. "ref/MonoAndroid10/_._",
  7090. "ref/MonoTouch10/_._",
  7091. "ref/net46/System.Globalization.Extensions.dll",
  7092. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7093. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7094. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7095. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7096. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7097. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7098. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7099. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7100. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7101. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7102. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7103. "ref/xamarinios10/_._",
  7104. "ref/xamarinmac20/_._",
  7105. "ref/xamarintvos10/_._",
  7106. "ref/xamarinwatchos10/_._",
  7107. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7108. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7109. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7110. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7111. "system.globalization.extensions.nuspec"
  7112. ]
  7113. },
  7114. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  7115. "sha512": "sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==",
  7116. "type": "package",
  7117. "path": "system.identitymodel.tokens.jwt/6.7.1",
  7118. "files": [
  7119. ".nupkg.metadata",
  7120. ".signature.p7s",
  7121. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  7122. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  7123. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  7124. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  7125. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7126. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7127. "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512",
  7128. "system.identitymodel.tokens.jwt.nuspec"
  7129. ]
  7130. },
  7131. "System.IO/4.3.0": {
  7132. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7133. "type": "package",
  7134. "path": "system.io/4.3.0",
  7135. "files": [
  7136. ".nupkg.metadata",
  7137. ".signature.p7s",
  7138. "ThirdPartyNotices.txt",
  7139. "dotnet_library_license.txt",
  7140. "lib/MonoAndroid10/_._",
  7141. "lib/MonoTouch10/_._",
  7142. "lib/net45/_._",
  7143. "lib/net462/System.IO.dll",
  7144. "lib/portable-net45+win8+wp8+wpa81/_._",
  7145. "lib/win8/_._",
  7146. "lib/wp80/_._",
  7147. "lib/wpa81/_._",
  7148. "lib/xamarinios10/_._",
  7149. "lib/xamarinmac20/_._",
  7150. "lib/xamarintvos10/_._",
  7151. "lib/xamarinwatchos10/_._",
  7152. "ref/MonoAndroid10/_._",
  7153. "ref/MonoTouch10/_._",
  7154. "ref/net45/_._",
  7155. "ref/net462/System.IO.dll",
  7156. "ref/netcore50/System.IO.dll",
  7157. "ref/netcore50/System.IO.xml",
  7158. "ref/netcore50/de/System.IO.xml",
  7159. "ref/netcore50/es/System.IO.xml",
  7160. "ref/netcore50/fr/System.IO.xml",
  7161. "ref/netcore50/it/System.IO.xml",
  7162. "ref/netcore50/ja/System.IO.xml",
  7163. "ref/netcore50/ko/System.IO.xml",
  7164. "ref/netcore50/ru/System.IO.xml",
  7165. "ref/netcore50/zh-hans/System.IO.xml",
  7166. "ref/netcore50/zh-hant/System.IO.xml",
  7167. "ref/netstandard1.0/System.IO.dll",
  7168. "ref/netstandard1.0/System.IO.xml",
  7169. "ref/netstandard1.0/de/System.IO.xml",
  7170. "ref/netstandard1.0/es/System.IO.xml",
  7171. "ref/netstandard1.0/fr/System.IO.xml",
  7172. "ref/netstandard1.0/it/System.IO.xml",
  7173. "ref/netstandard1.0/ja/System.IO.xml",
  7174. "ref/netstandard1.0/ko/System.IO.xml",
  7175. "ref/netstandard1.0/ru/System.IO.xml",
  7176. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7177. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7178. "ref/netstandard1.3/System.IO.dll",
  7179. "ref/netstandard1.3/System.IO.xml",
  7180. "ref/netstandard1.3/de/System.IO.xml",
  7181. "ref/netstandard1.3/es/System.IO.xml",
  7182. "ref/netstandard1.3/fr/System.IO.xml",
  7183. "ref/netstandard1.3/it/System.IO.xml",
  7184. "ref/netstandard1.3/ja/System.IO.xml",
  7185. "ref/netstandard1.3/ko/System.IO.xml",
  7186. "ref/netstandard1.3/ru/System.IO.xml",
  7187. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7188. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7189. "ref/netstandard1.5/System.IO.dll",
  7190. "ref/netstandard1.5/System.IO.xml",
  7191. "ref/netstandard1.5/de/System.IO.xml",
  7192. "ref/netstandard1.5/es/System.IO.xml",
  7193. "ref/netstandard1.5/fr/System.IO.xml",
  7194. "ref/netstandard1.5/it/System.IO.xml",
  7195. "ref/netstandard1.5/ja/System.IO.xml",
  7196. "ref/netstandard1.5/ko/System.IO.xml",
  7197. "ref/netstandard1.5/ru/System.IO.xml",
  7198. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7199. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7200. "ref/portable-net45+win8+wp8+wpa81/_._",
  7201. "ref/win8/_._",
  7202. "ref/wp80/_._",
  7203. "ref/wpa81/_._",
  7204. "ref/xamarinios10/_._",
  7205. "ref/xamarinmac20/_._",
  7206. "ref/xamarintvos10/_._",
  7207. "ref/xamarinwatchos10/_._",
  7208. "system.io.4.3.0.nupkg.sha512",
  7209. "system.io.nuspec"
  7210. ]
  7211. },
  7212. "System.IO.Compression/4.3.0": {
  7213. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7214. "type": "package",
  7215. "path": "system.io.compression/4.3.0",
  7216. "files": [
  7217. ".nupkg.metadata",
  7218. ".signature.p7s",
  7219. "ThirdPartyNotices.txt",
  7220. "dotnet_library_license.txt",
  7221. "lib/MonoAndroid10/_._",
  7222. "lib/MonoTouch10/_._",
  7223. "lib/net45/_._",
  7224. "lib/net46/System.IO.Compression.dll",
  7225. "lib/portable-net45+win8+wpa81/_._",
  7226. "lib/win8/_._",
  7227. "lib/wpa81/_._",
  7228. "lib/xamarinios10/_._",
  7229. "lib/xamarinmac20/_._",
  7230. "lib/xamarintvos10/_._",
  7231. "lib/xamarinwatchos10/_._",
  7232. "ref/MonoAndroid10/_._",
  7233. "ref/MonoTouch10/_._",
  7234. "ref/net45/_._",
  7235. "ref/net46/System.IO.Compression.dll",
  7236. "ref/netcore50/System.IO.Compression.dll",
  7237. "ref/netcore50/System.IO.Compression.xml",
  7238. "ref/netcore50/de/System.IO.Compression.xml",
  7239. "ref/netcore50/es/System.IO.Compression.xml",
  7240. "ref/netcore50/fr/System.IO.Compression.xml",
  7241. "ref/netcore50/it/System.IO.Compression.xml",
  7242. "ref/netcore50/ja/System.IO.Compression.xml",
  7243. "ref/netcore50/ko/System.IO.Compression.xml",
  7244. "ref/netcore50/ru/System.IO.Compression.xml",
  7245. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7246. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7247. "ref/netstandard1.1/System.IO.Compression.dll",
  7248. "ref/netstandard1.1/System.IO.Compression.xml",
  7249. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7250. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7251. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7252. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7253. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7254. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7255. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7256. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7257. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7258. "ref/netstandard1.3/System.IO.Compression.dll",
  7259. "ref/netstandard1.3/System.IO.Compression.xml",
  7260. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7261. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7262. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7263. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7264. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7265. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7266. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7267. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7268. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7269. "ref/portable-net45+win8+wpa81/_._",
  7270. "ref/win8/_._",
  7271. "ref/wpa81/_._",
  7272. "ref/xamarinios10/_._",
  7273. "ref/xamarinmac20/_._",
  7274. "ref/xamarintvos10/_._",
  7275. "ref/xamarinwatchos10/_._",
  7276. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7277. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7278. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7279. "system.io.compression.4.3.0.nupkg.sha512",
  7280. "system.io.compression.nuspec"
  7281. ]
  7282. },
  7283. "System.IO.Compression.ZipFile/4.3.0": {
  7284. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7285. "type": "package",
  7286. "path": "system.io.compression.zipfile/4.3.0",
  7287. "files": [
  7288. ".nupkg.metadata",
  7289. ".signature.p7s",
  7290. "ThirdPartyNotices.txt",
  7291. "dotnet_library_license.txt",
  7292. "lib/MonoAndroid10/_._",
  7293. "lib/MonoTouch10/_._",
  7294. "lib/net46/System.IO.Compression.ZipFile.dll",
  7295. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7296. "lib/xamarinios10/_._",
  7297. "lib/xamarinmac20/_._",
  7298. "lib/xamarintvos10/_._",
  7299. "lib/xamarinwatchos10/_._",
  7300. "ref/MonoAndroid10/_._",
  7301. "ref/MonoTouch10/_._",
  7302. "ref/net46/System.IO.Compression.ZipFile.dll",
  7303. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7304. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7305. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7306. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7307. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7308. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7309. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7310. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7311. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7312. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7313. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7314. "ref/xamarinios10/_._",
  7315. "ref/xamarinmac20/_._",
  7316. "ref/xamarintvos10/_._",
  7317. "ref/xamarinwatchos10/_._",
  7318. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7319. "system.io.compression.zipfile.nuspec"
  7320. ]
  7321. },
  7322. "System.IO.FileSystem/4.3.0": {
  7323. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7324. "type": "package",
  7325. "path": "system.io.filesystem/4.3.0",
  7326. "files": [
  7327. ".nupkg.metadata",
  7328. ".signature.p7s",
  7329. "ThirdPartyNotices.txt",
  7330. "dotnet_library_license.txt",
  7331. "lib/MonoAndroid10/_._",
  7332. "lib/MonoTouch10/_._",
  7333. "lib/net46/System.IO.FileSystem.dll",
  7334. "lib/xamarinios10/_._",
  7335. "lib/xamarinmac20/_._",
  7336. "lib/xamarintvos10/_._",
  7337. "lib/xamarinwatchos10/_._",
  7338. "ref/MonoAndroid10/_._",
  7339. "ref/MonoTouch10/_._",
  7340. "ref/net46/System.IO.FileSystem.dll",
  7341. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7342. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7343. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7344. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7345. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7346. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7347. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7348. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7349. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7350. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7351. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7352. "ref/xamarinios10/_._",
  7353. "ref/xamarinmac20/_._",
  7354. "ref/xamarintvos10/_._",
  7355. "ref/xamarinwatchos10/_._",
  7356. "system.io.filesystem.4.3.0.nupkg.sha512",
  7357. "system.io.filesystem.nuspec"
  7358. ]
  7359. },
  7360. "System.IO.FileSystem.Primitives/4.3.0": {
  7361. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7362. "type": "package",
  7363. "path": "system.io.filesystem.primitives/4.3.0",
  7364. "files": [
  7365. ".nupkg.metadata",
  7366. ".signature.p7s",
  7367. "ThirdPartyNotices.txt",
  7368. "dotnet_library_license.txt",
  7369. "lib/MonoAndroid10/_._",
  7370. "lib/MonoTouch10/_._",
  7371. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7372. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7373. "lib/xamarinios10/_._",
  7374. "lib/xamarinmac20/_._",
  7375. "lib/xamarintvos10/_._",
  7376. "lib/xamarinwatchos10/_._",
  7377. "ref/MonoAndroid10/_._",
  7378. "ref/MonoTouch10/_._",
  7379. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7380. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7381. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7382. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7383. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7384. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7385. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7386. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7387. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7388. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7389. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7390. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7391. "ref/xamarinios10/_._",
  7392. "ref/xamarinmac20/_._",
  7393. "ref/xamarintvos10/_._",
  7394. "ref/xamarinwatchos10/_._",
  7395. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7396. "system.io.filesystem.primitives.nuspec"
  7397. ]
  7398. },
  7399. "System.IO.Pipelines/5.0.0": {
  7400. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7401. "type": "package",
  7402. "path": "system.io.pipelines/5.0.0",
  7403. "files": [
  7404. ".nupkg.metadata",
  7405. ".signature.p7s",
  7406. "Icon.png",
  7407. "LICENSE.TXT",
  7408. "THIRD-PARTY-NOTICES.TXT",
  7409. "lib/net461/System.IO.Pipelines.dll",
  7410. "lib/net461/System.IO.Pipelines.xml",
  7411. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7412. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7413. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7414. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7415. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7416. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7417. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7418. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7419. "system.io.pipelines.5.0.0.nupkg.sha512",
  7420. "system.io.pipelines.nuspec",
  7421. "useSharedDesignerContext.txt",
  7422. "version.txt"
  7423. ]
  7424. },
  7425. "System.Linq/4.3.0": {
  7426. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7427. "type": "package",
  7428. "path": "system.linq/4.3.0",
  7429. "files": [
  7430. ".nupkg.metadata",
  7431. ".signature.p7s",
  7432. "ThirdPartyNotices.txt",
  7433. "dotnet_library_license.txt",
  7434. "lib/MonoAndroid10/_._",
  7435. "lib/MonoTouch10/_._",
  7436. "lib/net45/_._",
  7437. "lib/net463/System.Linq.dll",
  7438. "lib/netcore50/System.Linq.dll",
  7439. "lib/netstandard1.6/System.Linq.dll",
  7440. "lib/portable-net45+win8+wp8+wpa81/_._",
  7441. "lib/win8/_._",
  7442. "lib/wp80/_._",
  7443. "lib/wpa81/_._",
  7444. "lib/xamarinios10/_._",
  7445. "lib/xamarinmac20/_._",
  7446. "lib/xamarintvos10/_._",
  7447. "lib/xamarinwatchos10/_._",
  7448. "ref/MonoAndroid10/_._",
  7449. "ref/MonoTouch10/_._",
  7450. "ref/net45/_._",
  7451. "ref/net463/System.Linq.dll",
  7452. "ref/netcore50/System.Linq.dll",
  7453. "ref/netcore50/System.Linq.xml",
  7454. "ref/netcore50/de/System.Linq.xml",
  7455. "ref/netcore50/es/System.Linq.xml",
  7456. "ref/netcore50/fr/System.Linq.xml",
  7457. "ref/netcore50/it/System.Linq.xml",
  7458. "ref/netcore50/ja/System.Linq.xml",
  7459. "ref/netcore50/ko/System.Linq.xml",
  7460. "ref/netcore50/ru/System.Linq.xml",
  7461. "ref/netcore50/zh-hans/System.Linq.xml",
  7462. "ref/netcore50/zh-hant/System.Linq.xml",
  7463. "ref/netstandard1.0/System.Linq.dll",
  7464. "ref/netstandard1.0/System.Linq.xml",
  7465. "ref/netstandard1.0/de/System.Linq.xml",
  7466. "ref/netstandard1.0/es/System.Linq.xml",
  7467. "ref/netstandard1.0/fr/System.Linq.xml",
  7468. "ref/netstandard1.0/it/System.Linq.xml",
  7469. "ref/netstandard1.0/ja/System.Linq.xml",
  7470. "ref/netstandard1.0/ko/System.Linq.xml",
  7471. "ref/netstandard1.0/ru/System.Linq.xml",
  7472. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7473. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7474. "ref/netstandard1.6/System.Linq.dll",
  7475. "ref/netstandard1.6/System.Linq.xml",
  7476. "ref/netstandard1.6/de/System.Linq.xml",
  7477. "ref/netstandard1.6/es/System.Linq.xml",
  7478. "ref/netstandard1.6/fr/System.Linq.xml",
  7479. "ref/netstandard1.6/it/System.Linq.xml",
  7480. "ref/netstandard1.6/ja/System.Linq.xml",
  7481. "ref/netstandard1.6/ko/System.Linq.xml",
  7482. "ref/netstandard1.6/ru/System.Linq.xml",
  7483. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7484. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7485. "ref/portable-net45+win8+wp8+wpa81/_._",
  7486. "ref/win8/_._",
  7487. "ref/wp80/_._",
  7488. "ref/wpa81/_._",
  7489. "ref/xamarinios10/_._",
  7490. "ref/xamarinmac20/_._",
  7491. "ref/xamarintvos10/_._",
  7492. "ref/xamarinwatchos10/_._",
  7493. "system.linq.4.3.0.nupkg.sha512",
  7494. "system.linq.nuspec"
  7495. ]
  7496. },
  7497. "System.Linq.Expressions/4.3.0": {
  7498. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7499. "type": "package",
  7500. "path": "system.linq.expressions/4.3.0",
  7501. "files": [
  7502. ".nupkg.metadata",
  7503. ".signature.p7s",
  7504. "ThirdPartyNotices.txt",
  7505. "dotnet_library_license.txt",
  7506. "lib/MonoAndroid10/_._",
  7507. "lib/MonoTouch10/_._",
  7508. "lib/net45/_._",
  7509. "lib/net463/System.Linq.Expressions.dll",
  7510. "lib/netcore50/System.Linq.Expressions.dll",
  7511. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7512. "lib/portable-net45+win8+wp8+wpa81/_._",
  7513. "lib/win8/_._",
  7514. "lib/wp80/_._",
  7515. "lib/wpa81/_._",
  7516. "lib/xamarinios10/_._",
  7517. "lib/xamarinmac20/_._",
  7518. "lib/xamarintvos10/_._",
  7519. "lib/xamarinwatchos10/_._",
  7520. "ref/MonoAndroid10/_._",
  7521. "ref/MonoTouch10/_._",
  7522. "ref/net45/_._",
  7523. "ref/net463/System.Linq.Expressions.dll",
  7524. "ref/netcore50/System.Linq.Expressions.dll",
  7525. "ref/netcore50/System.Linq.Expressions.xml",
  7526. "ref/netcore50/de/System.Linq.Expressions.xml",
  7527. "ref/netcore50/es/System.Linq.Expressions.xml",
  7528. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7529. "ref/netcore50/it/System.Linq.Expressions.xml",
  7530. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7531. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7532. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7533. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7534. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7535. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7536. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7537. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7538. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7539. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7540. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7541. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7542. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7543. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7544. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7545. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7546. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7547. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7548. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7549. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7550. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7551. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7552. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7553. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7554. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7555. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7556. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7557. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7558. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7559. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7560. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7561. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7562. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7563. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7564. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7565. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7566. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7567. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7568. "ref/portable-net45+win8+wp8+wpa81/_._",
  7569. "ref/win8/_._",
  7570. "ref/wp80/_._",
  7571. "ref/wpa81/_._",
  7572. "ref/xamarinios10/_._",
  7573. "ref/xamarinmac20/_._",
  7574. "ref/xamarintvos10/_._",
  7575. "ref/xamarinwatchos10/_._",
  7576. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7577. "system.linq.expressions.4.3.0.nupkg.sha512",
  7578. "system.linq.expressions.nuspec"
  7579. ]
  7580. },
  7581. "System.Memory/4.5.5": {
  7582. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7583. "type": "package",
  7584. "path": "system.memory/4.5.5",
  7585. "files": [
  7586. ".nupkg.metadata",
  7587. ".signature.p7s",
  7588. "LICENSE.TXT",
  7589. "THIRD-PARTY-NOTICES.TXT",
  7590. "lib/net461/System.Memory.dll",
  7591. "lib/net461/System.Memory.xml",
  7592. "lib/netcoreapp2.1/_._",
  7593. "lib/netstandard1.1/System.Memory.dll",
  7594. "lib/netstandard1.1/System.Memory.xml",
  7595. "lib/netstandard2.0/System.Memory.dll",
  7596. "lib/netstandard2.0/System.Memory.xml",
  7597. "ref/netcoreapp2.1/_._",
  7598. "system.memory.4.5.5.nupkg.sha512",
  7599. "system.memory.nuspec",
  7600. "useSharedDesignerContext.txt",
  7601. "version.txt"
  7602. ]
  7603. },
  7604. "System.Net.Http/4.3.2": {
  7605. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7606. "type": "package",
  7607. "path": "system.net.http/4.3.2",
  7608. "files": [
  7609. ".nupkg.metadata",
  7610. ".signature.p7s",
  7611. "ThirdPartyNotices.txt",
  7612. "dotnet_library_license.txt",
  7613. "lib/Xamarinmac20/_._",
  7614. "lib/monoandroid10/_._",
  7615. "lib/monotouch10/_._",
  7616. "lib/net45/_._",
  7617. "lib/net46/System.Net.Http.dll",
  7618. "lib/portable-net45+win8+wpa81/_._",
  7619. "lib/win8/_._",
  7620. "lib/wpa81/_._",
  7621. "lib/xamarinios10/_._",
  7622. "lib/xamarintvos10/_._",
  7623. "lib/xamarinwatchos10/_._",
  7624. "ref/Xamarinmac20/_._",
  7625. "ref/monoandroid10/_._",
  7626. "ref/monotouch10/_._",
  7627. "ref/net45/_._",
  7628. "ref/net46/System.Net.Http.dll",
  7629. "ref/netcore50/System.Net.Http.dll",
  7630. "ref/netstandard1.1/System.Net.Http.dll",
  7631. "ref/netstandard1.3/System.Net.Http.dll",
  7632. "ref/portable-net45+win8+wpa81/_._",
  7633. "ref/win8/_._",
  7634. "ref/wpa81/_._",
  7635. "ref/xamarinios10/_._",
  7636. "ref/xamarintvos10/_._",
  7637. "ref/xamarinwatchos10/_._",
  7638. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7639. "runtimes/win/lib/net46/System.Net.Http.dll",
  7640. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7641. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7642. "system.net.http.4.3.2.nupkg.sha512",
  7643. "system.net.http.nuspec"
  7644. ]
  7645. },
  7646. "System.Net.NameResolution/4.3.0": {
  7647. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7648. "type": "package",
  7649. "path": "system.net.nameresolution/4.3.0",
  7650. "files": [
  7651. ".nupkg.metadata",
  7652. ".signature.p7s",
  7653. "ThirdPartyNotices.txt",
  7654. "dotnet_library_license.txt",
  7655. "lib/MonoAndroid10/_._",
  7656. "lib/MonoTouch10/_._",
  7657. "lib/net46/System.Net.NameResolution.dll",
  7658. "lib/xamarinios10/_._",
  7659. "lib/xamarinmac20/_._",
  7660. "lib/xamarintvos10/_._",
  7661. "lib/xamarinwatchos10/_._",
  7662. "ref/MonoAndroid10/_._",
  7663. "ref/MonoTouch10/_._",
  7664. "ref/net46/System.Net.NameResolution.dll",
  7665. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7666. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7667. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7668. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7669. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7670. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7671. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7672. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7673. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7674. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7675. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7676. "ref/xamarinios10/_._",
  7677. "ref/xamarinmac20/_._",
  7678. "ref/xamarintvos10/_._",
  7679. "ref/xamarinwatchos10/_._",
  7680. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7681. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7682. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7683. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7684. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7685. "system.net.nameresolution.nuspec"
  7686. ]
  7687. },
  7688. "System.Net.Primitives/4.3.0": {
  7689. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7690. "type": "package",
  7691. "path": "system.net.primitives/4.3.0",
  7692. "files": [
  7693. ".nupkg.metadata",
  7694. ".signature.p7s",
  7695. "ThirdPartyNotices.txt",
  7696. "dotnet_library_license.txt",
  7697. "lib/MonoAndroid10/_._",
  7698. "lib/MonoTouch10/_._",
  7699. "lib/net45/_._",
  7700. "lib/portable-net45+win8+wp8+wpa81/_._",
  7701. "lib/win8/_._",
  7702. "lib/wp80/_._",
  7703. "lib/wpa81/_._",
  7704. "lib/xamarinios10/_._",
  7705. "lib/xamarinmac20/_._",
  7706. "lib/xamarintvos10/_._",
  7707. "lib/xamarinwatchos10/_._",
  7708. "ref/MonoAndroid10/_._",
  7709. "ref/MonoTouch10/_._",
  7710. "ref/net45/_._",
  7711. "ref/netcore50/System.Net.Primitives.dll",
  7712. "ref/netcore50/System.Net.Primitives.xml",
  7713. "ref/netcore50/de/System.Net.Primitives.xml",
  7714. "ref/netcore50/es/System.Net.Primitives.xml",
  7715. "ref/netcore50/fr/System.Net.Primitives.xml",
  7716. "ref/netcore50/it/System.Net.Primitives.xml",
  7717. "ref/netcore50/ja/System.Net.Primitives.xml",
  7718. "ref/netcore50/ko/System.Net.Primitives.xml",
  7719. "ref/netcore50/ru/System.Net.Primitives.xml",
  7720. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7721. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7722. "ref/netstandard1.0/System.Net.Primitives.dll",
  7723. "ref/netstandard1.0/System.Net.Primitives.xml",
  7724. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7725. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7726. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7727. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7728. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7729. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7730. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7731. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7732. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7733. "ref/netstandard1.1/System.Net.Primitives.dll",
  7734. "ref/netstandard1.1/System.Net.Primitives.xml",
  7735. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7736. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7737. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7738. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7739. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7740. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7741. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7742. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7743. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7744. "ref/netstandard1.3/System.Net.Primitives.dll",
  7745. "ref/netstandard1.3/System.Net.Primitives.xml",
  7746. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7747. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7748. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7749. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7750. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7751. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7752. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7753. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7754. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7755. "ref/portable-net45+win8+wp8+wpa81/_._",
  7756. "ref/win8/_._",
  7757. "ref/wp80/_._",
  7758. "ref/wpa81/_._",
  7759. "ref/xamarinios10/_._",
  7760. "ref/xamarinmac20/_._",
  7761. "ref/xamarintvos10/_._",
  7762. "ref/xamarinwatchos10/_._",
  7763. "system.net.primitives.4.3.0.nupkg.sha512",
  7764. "system.net.primitives.nuspec"
  7765. ]
  7766. },
  7767. "System.Net.Security/4.3.0": {
  7768. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  7769. "type": "package",
  7770. "path": "system.net.security/4.3.0",
  7771. "files": [
  7772. ".nupkg.metadata",
  7773. ".signature.p7s",
  7774. "ThirdPartyNotices.txt",
  7775. "dotnet_library_license.txt",
  7776. "lib/MonoAndroid10/_._",
  7777. "lib/MonoTouch10/_._",
  7778. "lib/net46/System.Net.Security.dll",
  7779. "lib/xamarinios10/_._",
  7780. "lib/xamarinmac20/_._",
  7781. "lib/xamarintvos10/_._",
  7782. "lib/xamarinwatchos10/_._",
  7783. "ref/MonoAndroid10/_._",
  7784. "ref/MonoTouch10/_._",
  7785. "ref/net46/System.Net.Security.dll",
  7786. "ref/netstandard1.3/System.Net.Security.dll",
  7787. "ref/netstandard1.3/System.Net.Security.xml",
  7788. "ref/netstandard1.3/de/System.Net.Security.xml",
  7789. "ref/netstandard1.3/es/System.Net.Security.xml",
  7790. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7791. "ref/netstandard1.3/it/System.Net.Security.xml",
  7792. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7793. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7794. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7795. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7796. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7797. "ref/xamarinios10/_._",
  7798. "ref/xamarinmac20/_._",
  7799. "ref/xamarintvos10/_._",
  7800. "ref/xamarinwatchos10/_._",
  7801. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7802. "runtimes/win/lib/net46/System.Net.Security.dll",
  7803. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7804. "runtimes/win7/lib/netcore50/_._",
  7805. "system.net.security.4.3.0.nupkg.sha512",
  7806. "system.net.security.nuspec"
  7807. ]
  7808. },
  7809. "System.Net.Sockets/4.3.0": {
  7810. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7811. "type": "package",
  7812. "path": "system.net.sockets/4.3.0",
  7813. "files": [
  7814. ".nupkg.metadata",
  7815. ".signature.p7s",
  7816. "ThirdPartyNotices.txt",
  7817. "dotnet_library_license.txt",
  7818. "lib/MonoAndroid10/_._",
  7819. "lib/MonoTouch10/_._",
  7820. "lib/net46/System.Net.Sockets.dll",
  7821. "lib/xamarinios10/_._",
  7822. "lib/xamarinmac20/_._",
  7823. "lib/xamarintvos10/_._",
  7824. "lib/xamarinwatchos10/_._",
  7825. "ref/MonoAndroid10/_._",
  7826. "ref/MonoTouch10/_._",
  7827. "ref/net46/System.Net.Sockets.dll",
  7828. "ref/netstandard1.3/System.Net.Sockets.dll",
  7829. "ref/netstandard1.3/System.Net.Sockets.xml",
  7830. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7831. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7832. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7833. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7834. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7835. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7836. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7837. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7838. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7839. "ref/xamarinios10/_._",
  7840. "ref/xamarinmac20/_._",
  7841. "ref/xamarintvos10/_._",
  7842. "ref/xamarinwatchos10/_._",
  7843. "system.net.sockets.4.3.0.nupkg.sha512",
  7844. "system.net.sockets.nuspec"
  7845. ]
  7846. },
  7847. "System.ObjectModel/4.3.0": {
  7848. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7849. "type": "package",
  7850. "path": "system.objectmodel/4.3.0",
  7851. "files": [
  7852. ".nupkg.metadata",
  7853. ".signature.p7s",
  7854. "ThirdPartyNotices.txt",
  7855. "dotnet_library_license.txt",
  7856. "lib/MonoAndroid10/_._",
  7857. "lib/MonoTouch10/_._",
  7858. "lib/net45/_._",
  7859. "lib/netcore50/System.ObjectModel.dll",
  7860. "lib/netstandard1.3/System.ObjectModel.dll",
  7861. "lib/portable-net45+win8+wp8+wpa81/_._",
  7862. "lib/win8/_._",
  7863. "lib/wp80/_._",
  7864. "lib/wpa81/_._",
  7865. "lib/xamarinios10/_._",
  7866. "lib/xamarinmac20/_._",
  7867. "lib/xamarintvos10/_._",
  7868. "lib/xamarinwatchos10/_._",
  7869. "ref/MonoAndroid10/_._",
  7870. "ref/MonoTouch10/_._",
  7871. "ref/net45/_._",
  7872. "ref/netcore50/System.ObjectModel.dll",
  7873. "ref/netcore50/System.ObjectModel.xml",
  7874. "ref/netcore50/de/System.ObjectModel.xml",
  7875. "ref/netcore50/es/System.ObjectModel.xml",
  7876. "ref/netcore50/fr/System.ObjectModel.xml",
  7877. "ref/netcore50/it/System.ObjectModel.xml",
  7878. "ref/netcore50/ja/System.ObjectModel.xml",
  7879. "ref/netcore50/ko/System.ObjectModel.xml",
  7880. "ref/netcore50/ru/System.ObjectModel.xml",
  7881. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7882. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7883. "ref/netstandard1.0/System.ObjectModel.dll",
  7884. "ref/netstandard1.0/System.ObjectModel.xml",
  7885. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7886. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7887. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7888. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7889. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7890. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7891. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7892. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7893. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7894. "ref/netstandard1.3/System.ObjectModel.dll",
  7895. "ref/netstandard1.3/System.ObjectModel.xml",
  7896. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7897. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7898. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7899. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7900. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7901. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7902. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7903. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7904. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7905. "ref/portable-net45+win8+wp8+wpa81/_._",
  7906. "ref/win8/_._",
  7907. "ref/wp80/_._",
  7908. "ref/wpa81/_._",
  7909. "ref/xamarinios10/_._",
  7910. "ref/xamarinmac20/_._",
  7911. "ref/xamarintvos10/_._",
  7912. "ref/xamarinwatchos10/_._",
  7913. "system.objectmodel.4.3.0.nupkg.sha512",
  7914. "system.objectmodel.nuspec"
  7915. ]
  7916. },
  7917. "System.Reflection/4.3.0": {
  7918. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7919. "type": "package",
  7920. "path": "system.reflection/4.3.0",
  7921. "files": [
  7922. ".nupkg.metadata",
  7923. ".signature.p7s",
  7924. "ThirdPartyNotices.txt",
  7925. "dotnet_library_license.txt",
  7926. "lib/MonoAndroid10/_._",
  7927. "lib/MonoTouch10/_._",
  7928. "lib/net45/_._",
  7929. "lib/net462/System.Reflection.dll",
  7930. "lib/portable-net45+win8+wp8+wpa81/_._",
  7931. "lib/win8/_._",
  7932. "lib/wp80/_._",
  7933. "lib/wpa81/_._",
  7934. "lib/xamarinios10/_._",
  7935. "lib/xamarinmac20/_._",
  7936. "lib/xamarintvos10/_._",
  7937. "lib/xamarinwatchos10/_._",
  7938. "ref/MonoAndroid10/_._",
  7939. "ref/MonoTouch10/_._",
  7940. "ref/net45/_._",
  7941. "ref/net462/System.Reflection.dll",
  7942. "ref/netcore50/System.Reflection.dll",
  7943. "ref/netcore50/System.Reflection.xml",
  7944. "ref/netcore50/de/System.Reflection.xml",
  7945. "ref/netcore50/es/System.Reflection.xml",
  7946. "ref/netcore50/fr/System.Reflection.xml",
  7947. "ref/netcore50/it/System.Reflection.xml",
  7948. "ref/netcore50/ja/System.Reflection.xml",
  7949. "ref/netcore50/ko/System.Reflection.xml",
  7950. "ref/netcore50/ru/System.Reflection.xml",
  7951. "ref/netcore50/zh-hans/System.Reflection.xml",
  7952. "ref/netcore50/zh-hant/System.Reflection.xml",
  7953. "ref/netstandard1.0/System.Reflection.dll",
  7954. "ref/netstandard1.0/System.Reflection.xml",
  7955. "ref/netstandard1.0/de/System.Reflection.xml",
  7956. "ref/netstandard1.0/es/System.Reflection.xml",
  7957. "ref/netstandard1.0/fr/System.Reflection.xml",
  7958. "ref/netstandard1.0/it/System.Reflection.xml",
  7959. "ref/netstandard1.0/ja/System.Reflection.xml",
  7960. "ref/netstandard1.0/ko/System.Reflection.xml",
  7961. "ref/netstandard1.0/ru/System.Reflection.xml",
  7962. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7963. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7964. "ref/netstandard1.3/System.Reflection.dll",
  7965. "ref/netstandard1.3/System.Reflection.xml",
  7966. "ref/netstandard1.3/de/System.Reflection.xml",
  7967. "ref/netstandard1.3/es/System.Reflection.xml",
  7968. "ref/netstandard1.3/fr/System.Reflection.xml",
  7969. "ref/netstandard1.3/it/System.Reflection.xml",
  7970. "ref/netstandard1.3/ja/System.Reflection.xml",
  7971. "ref/netstandard1.3/ko/System.Reflection.xml",
  7972. "ref/netstandard1.3/ru/System.Reflection.xml",
  7973. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7974. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7975. "ref/netstandard1.5/System.Reflection.dll",
  7976. "ref/netstandard1.5/System.Reflection.xml",
  7977. "ref/netstandard1.5/de/System.Reflection.xml",
  7978. "ref/netstandard1.5/es/System.Reflection.xml",
  7979. "ref/netstandard1.5/fr/System.Reflection.xml",
  7980. "ref/netstandard1.5/it/System.Reflection.xml",
  7981. "ref/netstandard1.5/ja/System.Reflection.xml",
  7982. "ref/netstandard1.5/ko/System.Reflection.xml",
  7983. "ref/netstandard1.5/ru/System.Reflection.xml",
  7984. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7985. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7986. "ref/portable-net45+win8+wp8+wpa81/_._",
  7987. "ref/win8/_._",
  7988. "ref/wp80/_._",
  7989. "ref/wpa81/_._",
  7990. "ref/xamarinios10/_._",
  7991. "ref/xamarinmac20/_._",
  7992. "ref/xamarintvos10/_._",
  7993. "ref/xamarinwatchos10/_._",
  7994. "system.reflection.4.3.0.nupkg.sha512",
  7995. "system.reflection.nuspec"
  7996. ]
  7997. },
  7998. "System.Reflection.Emit/4.7.0": {
  7999. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  8000. "type": "package",
  8001. "path": "system.reflection.emit/4.7.0",
  8002. "files": [
  8003. ".nupkg.metadata",
  8004. ".signature.p7s",
  8005. "LICENSE.TXT",
  8006. "THIRD-PARTY-NOTICES.TXT",
  8007. "lib/MonoAndroid10/_._",
  8008. "lib/MonoTouch10/_._",
  8009. "lib/net45/_._",
  8010. "lib/netcore50/System.Reflection.Emit.dll",
  8011. "lib/netcoreapp2.0/_._",
  8012. "lib/netstandard1.1/System.Reflection.Emit.dll",
  8013. "lib/netstandard1.1/System.Reflection.Emit.xml",
  8014. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8015. "lib/netstandard2.0/System.Reflection.Emit.dll",
  8016. "lib/netstandard2.0/System.Reflection.Emit.xml",
  8017. "lib/netstandard2.1/_._",
  8018. "lib/xamarinios10/_._",
  8019. "lib/xamarinmac20/_._",
  8020. "lib/xamarintvos10/_._",
  8021. "lib/xamarinwatchos10/_._",
  8022. "ref/MonoAndroid10/_._",
  8023. "ref/MonoTouch10/_._",
  8024. "ref/net45/_._",
  8025. "ref/netcoreapp2.0/_._",
  8026. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8027. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8028. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8029. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8030. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8031. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8032. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8033. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8034. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8035. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8036. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8037. "ref/netstandard2.0/System.Reflection.Emit.dll",
  8038. "ref/netstandard2.0/System.Reflection.Emit.xml",
  8039. "ref/netstandard2.1/_._",
  8040. "ref/xamarinios10/_._",
  8041. "ref/xamarinmac20/_._",
  8042. "ref/xamarintvos10/_._",
  8043. "ref/xamarinwatchos10/_._",
  8044. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  8045. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  8046. "system.reflection.emit.4.7.0.nupkg.sha512",
  8047. "system.reflection.emit.nuspec",
  8048. "useSharedDesignerContext.txt",
  8049. "version.txt"
  8050. ]
  8051. },
  8052. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8053. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8054. "type": "package",
  8055. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8056. "files": [
  8057. ".nupkg.metadata",
  8058. ".signature.p7s",
  8059. "ThirdPartyNotices.txt",
  8060. "dotnet_library_license.txt",
  8061. "lib/MonoAndroid10/_._",
  8062. "lib/MonoTouch10/_._",
  8063. "lib/net45/_._",
  8064. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8065. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8066. "lib/portable-net45+wp8/_._",
  8067. "lib/wp80/_._",
  8068. "lib/xamarinios10/_._",
  8069. "lib/xamarinmac20/_._",
  8070. "lib/xamarintvos10/_._",
  8071. "lib/xamarinwatchos10/_._",
  8072. "ref/MonoAndroid10/_._",
  8073. "ref/MonoTouch10/_._",
  8074. "ref/net45/_._",
  8075. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8076. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8077. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8078. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8079. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8080. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8081. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8082. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8083. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8084. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8085. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8086. "ref/portable-net45+wp8/_._",
  8087. "ref/wp80/_._",
  8088. "ref/xamarinios10/_._",
  8089. "ref/xamarinmac20/_._",
  8090. "ref/xamarintvos10/_._",
  8091. "ref/xamarinwatchos10/_._",
  8092. "runtimes/aot/lib/netcore50/_._",
  8093. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8094. "system.reflection.emit.ilgeneration.nuspec"
  8095. ]
  8096. },
  8097. "System.Reflection.Emit.Lightweight/4.3.0": {
  8098. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8099. "type": "package",
  8100. "path": "system.reflection.emit.lightweight/4.3.0",
  8101. "files": [
  8102. ".nupkg.metadata",
  8103. ".signature.p7s",
  8104. "ThirdPartyNotices.txt",
  8105. "dotnet_library_license.txt",
  8106. "lib/MonoAndroid10/_._",
  8107. "lib/MonoTouch10/_._",
  8108. "lib/net45/_._",
  8109. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8110. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8111. "lib/portable-net45+wp8/_._",
  8112. "lib/wp80/_._",
  8113. "lib/xamarinios10/_._",
  8114. "lib/xamarinmac20/_._",
  8115. "lib/xamarintvos10/_._",
  8116. "lib/xamarinwatchos10/_._",
  8117. "ref/MonoAndroid10/_._",
  8118. "ref/MonoTouch10/_._",
  8119. "ref/net45/_._",
  8120. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8121. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8122. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8123. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8124. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8125. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8126. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8127. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8128. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8129. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8130. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8131. "ref/portable-net45+wp8/_._",
  8132. "ref/wp80/_._",
  8133. "ref/xamarinios10/_._",
  8134. "ref/xamarinmac20/_._",
  8135. "ref/xamarintvos10/_._",
  8136. "ref/xamarinwatchos10/_._",
  8137. "runtimes/aot/lib/netcore50/_._",
  8138. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8139. "system.reflection.emit.lightweight.nuspec"
  8140. ]
  8141. },
  8142. "System.Reflection.Extensions/4.3.0": {
  8143. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8144. "type": "package",
  8145. "path": "system.reflection.extensions/4.3.0",
  8146. "files": [
  8147. ".nupkg.metadata",
  8148. ".signature.p7s",
  8149. "ThirdPartyNotices.txt",
  8150. "dotnet_library_license.txt",
  8151. "lib/MonoAndroid10/_._",
  8152. "lib/MonoTouch10/_._",
  8153. "lib/net45/_._",
  8154. "lib/portable-net45+win8+wp8+wpa81/_._",
  8155. "lib/win8/_._",
  8156. "lib/wp80/_._",
  8157. "lib/wpa81/_._",
  8158. "lib/xamarinios10/_._",
  8159. "lib/xamarinmac20/_._",
  8160. "lib/xamarintvos10/_._",
  8161. "lib/xamarinwatchos10/_._",
  8162. "ref/MonoAndroid10/_._",
  8163. "ref/MonoTouch10/_._",
  8164. "ref/net45/_._",
  8165. "ref/netcore50/System.Reflection.Extensions.dll",
  8166. "ref/netcore50/System.Reflection.Extensions.xml",
  8167. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8168. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8169. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8170. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8171. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8172. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8173. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8174. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8175. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8176. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8177. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8178. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8179. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8180. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8181. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8182. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8183. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8184. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8185. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8186. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8187. "ref/portable-net45+win8+wp8+wpa81/_._",
  8188. "ref/win8/_._",
  8189. "ref/wp80/_._",
  8190. "ref/wpa81/_._",
  8191. "ref/xamarinios10/_._",
  8192. "ref/xamarinmac20/_._",
  8193. "ref/xamarintvos10/_._",
  8194. "ref/xamarinwatchos10/_._",
  8195. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8196. "system.reflection.extensions.nuspec"
  8197. ]
  8198. },
  8199. "System.Reflection.Primitives/4.3.0": {
  8200. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8201. "type": "package",
  8202. "path": "system.reflection.primitives/4.3.0",
  8203. "files": [
  8204. ".nupkg.metadata",
  8205. ".signature.p7s",
  8206. "ThirdPartyNotices.txt",
  8207. "dotnet_library_license.txt",
  8208. "lib/MonoAndroid10/_._",
  8209. "lib/MonoTouch10/_._",
  8210. "lib/net45/_._",
  8211. "lib/portable-net45+win8+wp8+wpa81/_._",
  8212. "lib/win8/_._",
  8213. "lib/wp80/_._",
  8214. "lib/wpa81/_._",
  8215. "lib/xamarinios10/_._",
  8216. "lib/xamarinmac20/_._",
  8217. "lib/xamarintvos10/_._",
  8218. "lib/xamarinwatchos10/_._",
  8219. "ref/MonoAndroid10/_._",
  8220. "ref/MonoTouch10/_._",
  8221. "ref/net45/_._",
  8222. "ref/netcore50/System.Reflection.Primitives.dll",
  8223. "ref/netcore50/System.Reflection.Primitives.xml",
  8224. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8225. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8226. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8227. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8228. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8229. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8230. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8231. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8232. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8233. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8234. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8235. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8236. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8237. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8238. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8239. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8240. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8241. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8242. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8243. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8244. "ref/portable-net45+win8+wp8+wpa81/_._",
  8245. "ref/win8/_._",
  8246. "ref/wp80/_._",
  8247. "ref/wpa81/_._",
  8248. "ref/xamarinios10/_._",
  8249. "ref/xamarinmac20/_._",
  8250. "ref/xamarintvos10/_._",
  8251. "ref/xamarinwatchos10/_._",
  8252. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8253. "system.reflection.primitives.nuspec"
  8254. ]
  8255. },
  8256. "System.Reflection.TypeExtensions/4.3.0": {
  8257. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8258. "type": "package",
  8259. "path": "system.reflection.typeextensions/4.3.0",
  8260. "files": [
  8261. ".nupkg.metadata",
  8262. ".signature.p7s",
  8263. "ThirdPartyNotices.txt",
  8264. "dotnet_library_license.txt",
  8265. "lib/MonoAndroid10/_._",
  8266. "lib/MonoTouch10/_._",
  8267. "lib/net46/System.Reflection.TypeExtensions.dll",
  8268. "lib/net462/System.Reflection.TypeExtensions.dll",
  8269. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8270. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8271. "lib/xamarinios10/_._",
  8272. "lib/xamarinmac20/_._",
  8273. "lib/xamarintvos10/_._",
  8274. "lib/xamarinwatchos10/_._",
  8275. "ref/MonoAndroid10/_._",
  8276. "ref/MonoTouch10/_._",
  8277. "ref/net46/System.Reflection.TypeExtensions.dll",
  8278. "ref/net462/System.Reflection.TypeExtensions.dll",
  8279. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8280. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8281. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8282. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8283. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8284. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8285. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8286. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8287. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8288. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8289. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8290. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8291. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8292. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8293. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8294. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8295. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8296. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8297. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8298. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8299. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8300. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8301. "ref/xamarinios10/_._",
  8302. "ref/xamarinmac20/_._",
  8303. "ref/xamarintvos10/_._",
  8304. "ref/xamarinwatchos10/_._",
  8305. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8306. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8307. "system.reflection.typeextensions.nuspec"
  8308. ]
  8309. },
  8310. "System.Resources.ResourceManager/4.3.0": {
  8311. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8312. "type": "package",
  8313. "path": "system.resources.resourcemanager/4.3.0",
  8314. "files": [
  8315. ".nupkg.metadata",
  8316. ".signature.p7s",
  8317. "ThirdPartyNotices.txt",
  8318. "dotnet_library_license.txt",
  8319. "lib/MonoAndroid10/_._",
  8320. "lib/MonoTouch10/_._",
  8321. "lib/net45/_._",
  8322. "lib/portable-net45+win8+wp8+wpa81/_._",
  8323. "lib/win8/_._",
  8324. "lib/wp80/_._",
  8325. "lib/wpa81/_._",
  8326. "lib/xamarinios10/_._",
  8327. "lib/xamarinmac20/_._",
  8328. "lib/xamarintvos10/_._",
  8329. "lib/xamarinwatchos10/_._",
  8330. "ref/MonoAndroid10/_._",
  8331. "ref/MonoTouch10/_._",
  8332. "ref/net45/_._",
  8333. "ref/netcore50/System.Resources.ResourceManager.dll",
  8334. "ref/netcore50/System.Resources.ResourceManager.xml",
  8335. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8336. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8337. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8338. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8339. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8340. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8341. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8342. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8343. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8344. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8345. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8346. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8347. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8348. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8349. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8350. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8351. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8352. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8353. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8354. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8355. "ref/portable-net45+win8+wp8+wpa81/_._",
  8356. "ref/win8/_._",
  8357. "ref/wp80/_._",
  8358. "ref/wpa81/_._",
  8359. "ref/xamarinios10/_._",
  8360. "ref/xamarinmac20/_._",
  8361. "ref/xamarintvos10/_._",
  8362. "ref/xamarinwatchos10/_._",
  8363. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8364. "system.resources.resourcemanager.nuspec"
  8365. ]
  8366. },
  8367. "System.Runtime/4.3.0": {
  8368. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8369. "type": "package",
  8370. "path": "system.runtime/4.3.0",
  8371. "files": [
  8372. ".nupkg.metadata",
  8373. ".signature.p7s",
  8374. "ThirdPartyNotices.txt",
  8375. "dotnet_library_license.txt",
  8376. "lib/MonoAndroid10/_._",
  8377. "lib/MonoTouch10/_._",
  8378. "lib/net45/_._",
  8379. "lib/net462/System.Runtime.dll",
  8380. "lib/portable-net45+win8+wp80+wpa81/_._",
  8381. "lib/win8/_._",
  8382. "lib/wp80/_._",
  8383. "lib/wpa81/_._",
  8384. "lib/xamarinios10/_._",
  8385. "lib/xamarinmac20/_._",
  8386. "lib/xamarintvos10/_._",
  8387. "lib/xamarinwatchos10/_._",
  8388. "ref/MonoAndroid10/_._",
  8389. "ref/MonoTouch10/_._",
  8390. "ref/net45/_._",
  8391. "ref/net462/System.Runtime.dll",
  8392. "ref/netcore50/System.Runtime.dll",
  8393. "ref/netcore50/System.Runtime.xml",
  8394. "ref/netcore50/de/System.Runtime.xml",
  8395. "ref/netcore50/es/System.Runtime.xml",
  8396. "ref/netcore50/fr/System.Runtime.xml",
  8397. "ref/netcore50/it/System.Runtime.xml",
  8398. "ref/netcore50/ja/System.Runtime.xml",
  8399. "ref/netcore50/ko/System.Runtime.xml",
  8400. "ref/netcore50/ru/System.Runtime.xml",
  8401. "ref/netcore50/zh-hans/System.Runtime.xml",
  8402. "ref/netcore50/zh-hant/System.Runtime.xml",
  8403. "ref/netstandard1.0/System.Runtime.dll",
  8404. "ref/netstandard1.0/System.Runtime.xml",
  8405. "ref/netstandard1.0/de/System.Runtime.xml",
  8406. "ref/netstandard1.0/es/System.Runtime.xml",
  8407. "ref/netstandard1.0/fr/System.Runtime.xml",
  8408. "ref/netstandard1.0/it/System.Runtime.xml",
  8409. "ref/netstandard1.0/ja/System.Runtime.xml",
  8410. "ref/netstandard1.0/ko/System.Runtime.xml",
  8411. "ref/netstandard1.0/ru/System.Runtime.xml",
  8412. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8413. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8414. "ref/netstandard1.2/System.Runtime.dll",
  8415. "ref/netstandard1.2/System.Runtime.xml",
  8416. "ref/netstandard1.2/de/System.Runtime.xml",
  8417. "ref/netstandard1.2/es/System.Runtime.xml",
  8418. "ref/netstandard1.2/fr/System.Runtime.xml",
  8419. "ref/netstandard1.2/it/System.Runtime.xml",
  8420. "ref/netstandard1.2/ja/System.Runtime.xml",
  8421. "ref/netstandard1.2/ko/System.Runtime.xml",
  8422. "ref/netstandard1.2/ru/System.Runtime.xml",
  8423. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8424. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8425. "ref/netstandard1.3/System.Runtime.dll",
  8426. "ref/netstandard1.3/System.Runtime.xml",
  8427. "ref/netstandard1.3/de/System.Runtime.xml",
  8428. "ref/netstandard1.3/es/System.Runtime.xml",
  8429. "ref/netstandard1.3/fr/System.Runtime.xml",
  8430. "ref/netstandard1.3/it/System.Runtime.xml",
  8431. "ref/netstandard1.3/ja/System.Runtime.xml",
  8432. "ref/netstandard1.3/ko/System.Runtime.xml",
  8433. "ref/netstandard1.3/ru/System.Runtime.xml",
  8434. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8435. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8436. "ref/netstandard1.5/System.Runtime.dll",
  8437. "ref/netstandard1.5/System.Runtime.xml",
  8438. "ref/netstandard1.5/de/System.Runtime.xml",
  8439. "ref/netstandard1.5/es/System.Runtime.xml",
  8440. "ref/netstandard1.5/fr/System.Runtime.xml",
  8441. "ref/netstandard1.5/it/System.Runtime.xml",
  8442. "ref/netstandard1.5/ja/System.Runtime.xml",
  8443. "ref/netstandard1.5/ko/System.Runtime.xml",
  8444. "ref/netstandard1.5/ru/System.Runtime.xml",
  8445. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8446. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8447. "ref/portable-net45+win8+wp80+wpa81/_._",
  8448. "ref/win8/_._",
  8449. "ref/wp80/_._",
  8450. "ref/wpa81/_._",
  8451. "ref/xamarinios10/_._",
  8452. "ref/xamarinmac20/_._",
  8453. "ref/xamarintvos10/_._",
  8454. "ref/xamarinwatchos10/_._",
  8455. "system.runtime.4.3.0.nupkg.sha512",
  8456. "system.runtime.nuspec"
  8457. ]
  8458. },
  8459. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  8460. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  8461. "type": "package",
  8462. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  8463. "files": [
  8464. ".nupkg.metadata",
  8465. ".signature.p7s",
  8466. "Icon.png",
  8467. "LICENSE.TXT",
  8468. "THIRD-PARTY-NOTICES.TXT",
  8469. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  8470. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  8471. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8472. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8473. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8474. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8475. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8476. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8477. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8478. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8479. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8480. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8481. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8482. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8483. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  8484. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  8485. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  8486. "system.runtime.compilerservices.unsafe.nuspec",
  8487. "useSharedDesignerContext.txt",
  8488. "version.txt"
  8489. ]
  8490. },
  8491. "System.Runtime.Extensions/4.3.0": {
  8492. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8493. "type": "package",
  8494. "path": "system.runtime.extensions/4.3.0",
  8495. "files": [
  8496. ".nupkg.metadata",
  8497. ".signature.p7s",
  8498. "ThirdPartyNotices.txt",
  8499. "dotnet_library_license.txt",
  8500. "lib/MonoAndroid10/_._",
  8501. "lib/MonoTouch10/_._",
  8502. "lib/net45/_._",
  8503. "lib/net462/System.Runtime.Extensions.dll",
  8504. "lib/portable-net45+win8+wp8+wpa81/_._",
  8505. "lib/win8/_._",
  8506. "lib/wp80/_._",
  8507. "lib/wpa81/_._",
  8508. "lib/xamarinios10/_._",
  8509. "lib/xamarinmac20/_._",
  8510. "lib/xamarintvos10/_._",
  8511. "lib/xamarinwatchos10/_._",
  8512. "ref/MonoAndroid10/_._",
  8513. "ref/MonoTouch10/_._",
  8514. "ref/net45/_._",
  8515. "ref/net462/System.Runtime.Extensions.dll",
  8516. "ref/netcore50/System.Runtime.Extensions.dll",
  8517. "ref/netcore50/System.Runtime.Extensions.xml",
  8518. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8519. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8520. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8521. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8522. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8523. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8524. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8525. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8526. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8527. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8528. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8529. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8530. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8531. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8532. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8533. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8534. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8535. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8536. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8537. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8538. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8539. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8540. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8541. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8542. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8543. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8544. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8545. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8546. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8547. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8548. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8549. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8550. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8551. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8552. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8553. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8554. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8555. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8556. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8557. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8558. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8559. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8560. "ref/portable-net45+win8+wp8+wpa81/_._",
  8561. "ref/win8/_._",
  8562. "ref/wp80/_._",
  8563. "ref/wpa81/_._",
  8564. "ref/xamarinios10/_._",
  8565. "ref/xamarinmac20/_._",
  8566. "ref/xamarintvos10/_._",
  8567. "ref/xamarinwatchos10/_._",
  8568. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8569. "system.runtime.extensions.nuspec"
  8570. ]
  8571. },
  8572. "System.Runtime.Handles/4.3.0": {
  8573. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8574. "type": "package",
  8575. "path": "system.runtime.handles/4.3.0",
  8576. "files": [
  8577. ".nupkg.metadata",
  8578. ".signature.p7s",
  8579. "ThirdPartyNotices.txt",
  8580. "dotnet_library_license.txt",
  8581. "lib/MonoAndroid10/_._",
  8582. "lib/MonoTouch10/_._",
  8583. "lib/net46/_._",
  8584. "lib/xamarinios10/_._",
  8585. "lib/xamarinmac20/_._",
  8586. "lib/xamarintvos10/_._",
  8587. "lib/xamarinwatchos10/_._",
  8588. "ref/MonoAndroid10/_._",
  8589. "ref/MonoTouch10/_._",
  8590. "ref/net46/_._",
  8591. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8592. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8593. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8594. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8595. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8596. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8597. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8598. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8599. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8600. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8601. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8602. "ref/xamarinios10/_._",
  8603. "ref/xamarinmac20/_._",
  8604. "ref/xamarintvos10/_._",
  8605. "ref/xamarinwatchos10/_._",
  8606. "system.runtime.handles.4.3.0.nupkg.sha512",
  8607. "system.runtime.handles.nuspec"
  8608. ]
  8609. },
  8610. "System.Runtime.InteropServices/4.3.0": {
  8611. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8612. "type": "package",
  8613. "path": "system.runtime.interopservices/4.3.0",
  8614. "files": [
  8615. ".nupkg.metadata",
  8616. ".signature.p7s",
  8617. "ThirdPartyNotices.txt",
  8618. "dotnet_library_license.txt",
  8619. "lib/MonoAndroid10/_._",
  8620. "lib/MonoTouch10/_._",
  8621. "lib/net45/_._",
  8622. "lib/net462/System.Runtime.InteropServices.dll",
  8623. "lib/net463/System.Runtime.InteropServices.dll",
  8624. "lib/portable-net45+win8+wpa81/_._",
  8625. "lib/win8/_._",
  8626. "lib/wpa81/_._",
  8627. "lib/xamarinios10/_._",
  8628. "lib/xamarinmac20/_._",
  8629. "lib/xamarintvos10/_._",
  8630. "lib/xamarinwatchos10/_._",
  8631. "ref/MonoAndroid10/_._",
  8632. "ref/MonoTouch10/_._",
  8633. "ref/net45/_._",
  8634. "ref/net462/System.Runtime.InteropServices.dll",
  8635. "ref/net463/System.Runtime.InteropServices.dll",
  8636. "ref/netcore50/System.Runtime.InteropServices.dll",
  8637. "ref/netcore50/System.Runtime.InteropServices.xml",
  8638. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8639. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8640. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8641. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8642. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8643. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8644. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8645. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8646. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8647. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8648. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8649. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8650. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8651. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8652. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8653. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8654. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8655. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8656. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8657. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8658. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8659. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8660. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8661. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8662. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8663. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8664. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8665. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8666. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8667. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8668. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8669. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8670. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8671. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8672. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8673. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8674. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8675. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8676. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8677. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8678. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8679. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8680. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8681. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8682. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8683. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8684. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8685. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8686. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8687. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8688. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8689. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8690. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8691. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8692. "ref/portable-net45+win8+wpa81/_._",
  8693. "ref/win8/_._",
  8694. "ref/wpa81/_._",
  8695. "ref/xamarinios10/_._",
  8696. "ref/xamarinmac20/_._",
  8697. "ref/xamarintvos10/_._",
  8698. "ref/xamarinwatchos10/_._",
  8699. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8700. "system.runtime.interopservices.nuspec"
  8701. ]
  8702. },
  8703. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8704. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8705. "type": "package",
  8706. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8707. "files": [
  8708. ".nupkg.metadata",
  8709. ".signature.p7s",
  8710. "ThirdPartyNotices.txt",
  8711. "dotnet_library_license.txt",
  8712. "lib/MonoAndroid10/_._",
  8713. "lib/MonoTouch10/_._",
  8714. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8715. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8716. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8717. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8718. "lib/xamarinios10/_._",
  8719. "lib/xamarinmac20/_._",
  8720. "lib/xamarintvos10/_._",
  8721. "lib/xamarinwatchos10/_._",
  8722. "ref/MonoAndroid10/_._",
  8723. "ref/MonoTouch10/_._",
  8724. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8725. "ref/xamarinios10/_._",
  8726. "ref/xamarinmac20/_._",
  8727. "ref/xamarintvos10/_._",
  8728. "ref/xamarinwatchos10/_._",
  8729. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8730. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8731. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8732. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8733. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8734. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8735. "system.runtime.interopservices.runtimeinformation.nuspec"
  8736. ]
  8737. },
  8738. "System.Runtime.Numerics/4.3.0": {
  8739. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8740. "type": "package",
  8741. "path": "system.runtime.numerics/4.3.0",
  8742. "files": [
  8743. ".nupkg.metadata",
  8744. ".signature.p7s",
  8745. "ThirdPartyNotices.txt",
  8746. "dotnet_library_license.txt",
  8747. "lib/MonoAndroid10/_._",
  8748. "lib/MonoTouch10/_._",
  8749. "lib/net45/_._",
  8750. "lib/netcore50/System.Runtime.Numerics.dll",
  8751. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8752. "lib/portable-net45+win8+wpa81/_._",
  8753. "lib/win8/_._",
  8754. "lib/wpa81/_._",
  8755. "lib/xamarinios10/_._",
  8756. "lib/xamarinmac20/_._",
  8757. "lib/xamarintvos10/_._",
  8758. "lib/xamarinwatchos10/_._",
  8759. "ref/MonoAndroid10/_._",
  8760. "ref/MonoTouch10/_._",
  8761. "ref/net45/_._",
  8762. "ref/netcore50/System.Runtime.Numerics.dll",
  8763. "ref/netcore50/System.Runtime.Numerics.xml",
  8764. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8765. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8766. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8767. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8768. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8769. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8770. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8771. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8772. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8773. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8774. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8775. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8776. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8777. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8778. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8779. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8780. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8781. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8782. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8783. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8784. "ref/portable-net45+win8+wpa81/_._",
  8785. "ref/win8/_._",
  8786. "ref/wpa81/_._",
  8787. "ref/xamarinios10/_._",
  8788. "ref/xamarinmac20/_._",
  8789. "ref/xamarintvos10/_._",
  8790. "ref/xamarinwatchos10/_._",
  8791. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8792. "system.runtime.numerics.nuspec"
  8793. ]
  8794. },
  8795. "System.Security.AccessControl/6.0.0": {
  8796. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  8797. "type": "package",
  8798. "path": "system.security.accesscontrol/6.0.0",
  8799. "files": [
  8800. ".nupkg.metadata",
  8801. ".signature.p7s",
  8802. "Icon.png",
  8803. "LICENSE.TXT",
  8804. "THIRD-PARTY-NOTICES.TXT",
  8805. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  8806. "buildTransitive/netcoreapp3.1/_._",
  8807. "lib/net461/System.Security.AccessControl.dll",
  8808. "lib/net461/System.Security.AccessControl.xml",
  8809. "lib/net6.0/System.Security.AccessControl.dll",
  8810. "lib/net6.0/System.Security.AccessControl.xml",
  8811. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8812. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8813. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8814. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8815. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  8816. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  8817. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  8818. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  8819. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  8820. "system.security.accesscontrol.nuspec",
  8821. "useSharedDesignerContext.txt"
  8822. ]
  8823. },
  8824. "System.Security.Claims/4.3.0": {
  8825. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8826. "type": "package",
  8827. "path": "system.security.claims/4.3.0",
  8828. "files": [
  8829. ".nupkg.metadata",
  8830. ".signature.p7s",
  8831. "ThirdPartyNotices.txt",
  8832. "dotnet_library_license.txt",
  8833. "lib/MonoAndroid10/_._",
  8834. "lib/MonoTouch10/_._",
  8835. "lib/net46/System.Security.Claims.dll",
  8836. "lib/netstandard1.3/System.Security.Claims.dll",
  8837. "lib/xamarinios10/_._",
  8838. "lib/xamarinmac20/_._",
  8839. "lib/xamarintvos10/_._",
  8840. "lib/xamarinwatchos10/_._",
  8841. "ref/MonoAndroid10/_._",
  8842. "ref/MonoTouch10/_._",
  8843. "ref/net46/System.Security.Claims.dll",
  8844. "ref/netstandard1.3/System.Security.Claims.dll",
  8845. "ref/netstandard1.3/System.Security.Claims.xml",
  8846. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8847. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8848. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8849. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8850. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8851. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8852. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8853. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8854. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8855. "ref/xamarinios10/_._",
  8856. "ref/xamarinmac20/_._",
  8857. "ref/xamarintvos10/_._",
  8858. "ref/xamarinwatchos10/_._",
  8859. "system.security.claims.4.3.0.nupkg.sha512",
  8860. "system.security.claims.nuspec"
  8861. ]
  8862. },
  8863. "System.Security.Cryptography.Algorithms/4.3.0": {
  8864. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8865. "type": "package",
  8866. "path": "system.security.cryptography.algorithms/4.3.0",
  8867. "files": [
  8868. ".nupkg.metadata",
  8869. ".signature.p7s",
  8870. "ThirdPartyNotices.txt",
  8871. "dotnet_library_license.txt",
  8872. "lib/MonoAndroid10/_._",
  8873. "lib/MonoTouch10/_._",
  8874. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8875. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8876. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8877. "lib/xamarinios10/_._",
  8878. "lib/xamarinmac20/_._",
  8879. "lib/xamarintvos10/_._",
  8880. "lib/xamarinwatchos10/_._",
  8881. "ref/MonoAndroid10/_._",
  8882. "ref/MonoTouch10/_._",
  8883. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8884. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8885. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8886. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8887. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8888. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8889. "ref/xamarinios10/_._",
  8890. "ref/xamarinmac20/_._",
  8891. "ref/xamarintvos10/_._",
  8892. "ref/xamarinwatchos10/_._",
  8893. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8894. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8895. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8896. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8897. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8898. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8899. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8900. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8901. "system.security.cryptography.algorithms.nuspec"
  8902. ]
  8903. },
  8904. "System.Security.Cryptography.Cng/5.0.0": {
  8905. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  8906. "type": "package",
  8907. "path": "system.security.cryptography.cng/5.0.0",
  8908. "files": [
  8909. ".nupkg.metadata",
  8910. ".signature.p7s",
  8911. "Icon.png",
  8912. "LICENSE.TXT",
  8913. "THIRD-PARTY-NOTICES.TXT",
  8914. "lib/MonoAndroid10/_._",
  8915. "lib/MonoTouch10/_._",
  8916. "lib/net46/System.Security.Cryptography.Cng.dll",
  8917. "lib/net461/System.Security.Cryptography.Cng.dll",
  8918. "lib/net461/System.Security.Cryptography.Cng.xml",
  8919. "lib/net462/System.Security.Cryptography.Cng.dll",
  8920. "lib/net462/System.Security.Cryptography.Cng.xml",
  8921. "lib/net47/System.Security.Cryptography.Cng.dll",
  8922. "lib/net47/System.Security.Cryptography.Cng.xml",
  8923. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8924. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8925. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8926. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8927. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8928. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8929. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8930. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8931. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8932. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8933. "lib/uap10.0.16299/_._",
  8934. "lib/xamarinios10/_._",
  8935. "lib/xamarinmac20/_._",
  8936. "lib/xamarintvos10/_._",
  8937. "lib/xamarinwatchos10/_._",
  8938. "ref/MonoAndroid10/_._",
  8939. "ref/MonoTouch10/_._",
  8940. "ref/net46/System.Security.Cryptography.Cng.dll",
  8941. "ref/net461/System.Security.Cryptography.Cng.dll",
  8942. "ref/net461/System.Security.Cryptography.Cng.xml",
  8943. "ref/net462/System.Security.Cryptography.Cng.dll",
  8944. "ref/net462/System.Security.Cryptography.Cng.xml",
  8945. "ref/net47/System.Security.Cryptography.Cng.dll",
  8946. "ref/net47/System.Security.Cryptography.Cng.xml",
  8947. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8948. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8949. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8950. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8951. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8952. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8953. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8954. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8955. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8956. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8957. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8958. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8959. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8960. "ref/uap10.0.16299/_._",
  8961. "ref/xamarinios10/_._",
  8962. "ref/xamarinmac20/_._",
  8963. "ref/xamarintvos10/_._",
  8964. "ref/xamarinwatchos10/_._",
  8965. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8966. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8967. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  8968. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8969. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  8970. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8971. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  8972. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8973. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8974. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8975. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8976. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8977. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8978. "runtimes/win/lib/uap10.0.16299/_._",
  8979. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  8980. "system.security.cryptography.cng.nuspec",
  8981. "useSharedDesignerContext.txt",
  8982. "version.txt"
  8983. ]
  8984. },
  8985. "System.Security.Cryptography.Csp/4.3.0": {
  8986. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8987. "type": "package",
  8988. "path": "system.security.cryptography.csp/4.3.0",
  8989. "files": [
  8990. ".nupkg.metadata",
  8991. ".signature.p7s",
  8992. "ThirdPartyNotices.txt",
  8993. "dotnet_library_license.txt",
  8994. "lib/MonoAndroid10/_._",
  8995. "lib/MonoTouch10/_._",
  8996. "lib/net46/System.Security.Cryptography.Csp.dll",
  8997. "lib/xamarinios10/_._",
  8998. "lib/xamarinmac20/_._",
  8999. "lib/xamarintvos10/_._",
  9000. "lib/xamarinwatchos10/_._",
  9001. "ref/MonoAndroid10/_._",
  9002. "ref/MonoTouch10/_._",
  9003. "ref/net46/System.Security.Cryptography.Csp.dll",
  9004. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9005. "ref/xamarinios10/_._",
  9006. "ref/xamarinmac20/_._",
  9007. "ref/xamarintvos10/_._",
  9008. "ref/xamarinwatchos10/_._",
  9009. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9010. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9011. "runtimes/win/lib/netcore50/_._",
  9012. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9013. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9014. "system.security.cryptography.csp.nuspec"
  9015. ]
  9016. },
  9017. "System.Security.Cryptography.Encoding/4.3.0": {
  9018. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9019. "type": "package",
  9020. "path": "system.security.cryptography.encoding/4.3.0",
  9021. "files": [
  9022. ".nupkg.metadata",
  9023. ".signature.p7s",
  9024. "ThirdPartyNotices.txt",
  9025. "dotnet_library_license.txt",
  9026. "lib/MonoAndroid10/_._",
  9027. "lib/MonoTouch10/_._",
  9028. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9029. "lib/xamarinios10/_._",
  9030. "lib/xamarinmac20/_._",
  9031. "lib/xamarintvos10/_._",
  9032. "lib/xamarinwatchos10/_._",
  9033. "ref/MonoAndroid10/_._",
  9034. "ref/MonoTouch10/_._",
  9035. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9036. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9037. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9038. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9039. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9040. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9041. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9042. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9043. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9044. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9045. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9046. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9047. "ref/xamarinios10/_._",
  9048. "ref/xamarinmac20/_._",
  9049. "ref/xamarintvos10/_._",
  9050. "ref/xamarinwatchos10/_._",
  9051. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9052. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9053. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9054. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9055. "system.security.cryptography.encoding.nuspec"
  9056. ]
  9057. },
  9058. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9059. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9060. "type": "package",
  9061. "path": "system.security.cryptography.openssl/4.3.0",
  9062. "files": [
  9063. ".nupkg.metadata",
  9064. ".signature.p7s",
  9065. "ThirdPartyNotices.txt",
  9066. "dotnet_library_license.txt",
  9067. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9068. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9069. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9070. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9071. "system.security.cryptography.openssl.nuspec"
  9072. ]
  9073. },
  9074. "System.Security.Cryptography.Pkcs/6.0.1": {
  9075. "sha512": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
  9076. "type": "package",
  9077. "path": "system.security.cryptography.pkcs/6.0.1",
  9078. "files": [
  9079. ".nupkg.metadata",
  9080. ".signature.p7s",
  9081. "Icon.png",
  9082. "LICENSE.TXT",
  9083. "THIRD-PARTY-NOTICES.TXT",
  9084. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  9085. "buildTransitive/netcoreapp3.1/_._",
  9086. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  9087. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  9088. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  9089. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  9090. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  9091. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  9092. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9093. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9094. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9095. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9096. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  9097. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  9098. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  9099. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  9100. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  9101. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  9102. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9103. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9104. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9105. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9106. "system.security.cryptography.pkcs.6.0.1.nupkg.sha512",
  9107. "system.security.cryptography.pkcs.nuspec",
  9108. "useSharedDesignerContext.txt"
  9109. ]
  9110. },
  9111. "System.Security.Cryptography.Primitives/4.3.0": {
  9112. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9113. "type": "package",
  9114. "path": "system.security.cryptography.primitives/4.3.0",
  9115. "files": [
  9116. ".nupkg.metadata",
  9117. ".signature.p7s",
  9118. "ThirdPartyNotices.txt",
  9119. "dotnet_library_license.txt",
  9120. "lib/MonoAndroid10/_._",
  9121. "lib/MonoTouch10/_._",
  9122. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9123. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9124. "lib/xamarinios10/_._",
  9125. "lib/xamarinmac20/_._",
  9126. "lib/xamarintvos10/_._",
  9127. "lib/xamarinwatchos10/_._",
  9128. "ref/MonoAndroid10/_._",
  9129. "ref/MonoTouch10/_._",
  9130. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9131. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9132. "ref/xamarinios10/_._",
  9133. "ref/xamarinmac20/_._",
  9134. "ref/xamarintvos10/_._",
  9135. "ref/xamarinwatchos10/_._",
  9136. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9137. "system.security.cryptography.primitives.nuspec"
  9138. ]
  9139. },
  9140. "System.Security.Cryptography.ProtectedData/6.0.0": {
  9141. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  9142. "type": "package",
  9143. "path": "system.security.cryptography.protecteddata/6.0.0",
  9144. "files": [
  9145. ".nupkg.metadata",
  9146. ".signature.p7s",
  9147. "Icon.png",
  9148. "LICENSE.TXT",
  9149. "THIRD-PARTY-NOTICES.TXT",
  9150. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  9151. "buildTransitive/netcoreapp3.1/_._",
  9152. "lib/MonoAndroid10/_._",
  9153. "lib/MonoTouch10/_._",
  9154. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9155. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9156. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  9157. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  9158. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9159. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9160. "lib/xamarinios10/_._",
  9161. "lib/xamarinmac20/_._",
  9162. "lib/xamarintvos10/_._",
  9163. "lib/xamarinwatchos10/_._",
  9164. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9165. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9166. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  9167. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  9168. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9169. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9170. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  9171. "system.security.cryptography.protecteddata.nuspec",
  9172. "useSharedDesignerContext.txt"
  9173. ]
  9174. },
  9175. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9176. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9177. "type": "package",
  9178. "path": "system.security.cryptography.x509certificates/4.3.0",
  9179. "files": [
  9180. ".nupkg.metadata",
  9181. ".signature.p7s",
  9182. "ThirdPartyNotices.txt",
  9183. "dotnet_library_license.txt",
  9184. "lib/MonoAndroid10/_._",
  9185. "lib/MonoTouch10/_._",
  9186. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9187. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9188. "lib/xamarinios10/_._",
  9189. "lib/xamarinmac20/_._",
  9190. "lib/xamarintvos10/_._",
  9191. "lib/xamarinwatchos10/_._",
  9192. "ref/MonoAndroid10/_._",
  9193. "ref/MonoTouch10/_._",
  9194. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9195. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9196. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9197. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9198. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9199. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9200. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9201. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9202. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9203. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9204. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9205. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9206. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9207. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9208. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9209. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9210. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9211. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9212. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9213. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9214. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9215. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9216. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9217. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9218. "ref/xamarinios10/_._",
  9219. "ref/xamarinmac20/_._",
  9220. "ref/xamarintvos10/_._",
  9221. "ref/xamarinwatchos10/_._",
  9222. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9223. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9224. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9225. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9226. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9227. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9228. "system.security.cryptography.x509certificates.nuspec"
  9229. ]
  9230. },
  9231. "System.Security.Cryptography.Xml/6.0.1": {
  9232. "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==",
  9233. "type": "package",
  9234. "path": "system.security.cryptography.xml/6.0.1",
  9235. "files": [
  9236. ".nupkg.metadata",
  9237. ".signature.p7s",
  9238. "Icon.png",
  9239. "LICENSE.TXT",
  9240. "THIRD-PARTY-NOTICES.TXT",
  9241. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
  9242. "buildTransitive/netcoreapp3.1/_._",
  9243. "lib/net461/System.Security.Cryptography.Xml.dll",
  9244. "lib/net461/System.Security.Cryptography.Xml.xml",
  9245. "lib/net6.0/System.Security.Cryptography.Xml.dll",
  9246. "lib/net6.0/System.Security.Cryptography.Xml.xml",
  9247. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  9248. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  9249. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll",
  9250. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml",
  9251. "system.security.cryptography.xml.6.0.1.nupkg.sha512",
  9252. "system.security.cryptography.xml.nuspec",
  9253. "useSharedDesignerContext.txt"
  9254. ]
  9255. },
  9256. "System.Security.Permissions/6.0.0": {
  9257. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  9258. "type": "package",
  9259. "path": "system.security.permissions/6.0.0",
  9260. "files": [
  9261. ".nupkg.metadata",
  9262. ".signature.p7s",
  9263. "Icon.png",
  9264. "LICENSE.TXT",
  9265. "THIRD-PARTY-NOTICES.TXT",
  9266. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  9267. "buildTransitive/netcoreapp3.1/_._",
  9268. "lib/net461/System.Security.Permissions.dll",
  9269. "lib/net461/System.Security.Permissions.xml",
  9270. "lib/net5.0/System.Security.Permissions.dll",
  9271. "lib/net5.0/System.Security.Permissions.xml",
  9272. "lib/net6.0/System.Security.Permissions.dll",
  9273. "lib/net6.0/System.Security.Permissions.xml",
  9274. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  9275. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  9276. "lib/netstandard2.0/System.Security.Permissions.dll",
  9277. "lib/netstandard2.0/System.Security.Permissions.xml",
  9278. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  9279. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  9280. "system.security.permissions.6.0.0.nupkg.sha512",
  9281. "system.security.permissions.nuspec",
  9282. "useSharedDesignerContext.txt"
  9283. ]
  9284. },
  9285. "System.Security.Principal/4.3.0": {
  9286. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9287. "type": "package",
  9288. "path": "system.security.principal/4.3.0",
  9289. "files": [
  9290. ".nupkg.metadata",
  9291. ".signature.p7s",
  9292. "ThirdPartyNotices.txt",
  9293. "dotnet_library_license.txt",
  9294. "lib/MonoAndroid10/_._",
  9295. "lib/MonoTouch10/_._",
  9296. "lib/net45/_._",
  9297. "lib/netcore50/System.Security.Principal.dll",
  9298. "lib/netstandard1.0/System.Security.Principal.dll",
  9299. "lib/portable-net45+win8+wp8+wpa81/_._",
  9300. "lib/win8/_._",
  9301. "lib/wp80/_._",
  9302. "lib/wpa81/_._",
  9303. "lib/xamarinios10/_._",
  9304. "lib/xamarinmac20/_._",
  9305. "lib/xamarintvos10/_._",
  9306. "lib/xamarinwatchos10/_._",
  9307. "ref/MonoAndroid10/_._",
  9308. "ref/MonoTouch10/_._",
  9309. "ref/net45/_._",
  9310. "ref/netcore50/System.Security.Principal.dll",
  9311. "ref/netcore50/System.Security.Principal.xml",
  9312. "ref/netcore50/de/System.Security.Principal.xml",
  9313. "ref/netcore50/es/System.Security.Principal.xml",
  9314. "ref/netcore50/fr/System.Security.Principal.xml",
  9315. "ref/netcore50/it/System.Security.Principal.xml",
  9316. "ref/netcore50/ja/System.Security.Principal.xml",
  9317. "ref/netcore50/ko/System.Security.Principal.xml",
  9318. "ref/netcore50/ru/System.Security.Principal.xml",
  9319. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9320. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9321. "ref/netstandard1.0/System.Security.Principal.dll",
  9322. "ref/netstandard1.0/System.Security.Principal.xml",
  9323. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9324. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9325. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9326. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9327. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9328. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9329. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9330. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9331. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9332. "ref/portable-net45+win8+wp8+wpa81/_._",
  9333. "ref/win8/_._",
  9334. "ref/wp80/_._",
  9335. "ref/wpa81/_._",
  9336. "ref/xamarinios10/_._",
  9337. "ref/xamarinmac20/_._",
  9338. "ref/xamarintvos10/_._",
  9339. "ref/xamarinwatchos10/_._",
  9340. "system.security.principal.4.3.0.nupkg.sha512",
  9341. "system.security.principal.nuspec"
  9342. ]
  9343. },
  9344. "System.Security.Principal.Windows/5.0.0": {
  9345. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  9346. "type": "package",
  9347. "path": "system.security.principal.windows/5.0.0",
  9348. "files": [
  9349. ".nupkg.metadata",
  9350. ".signature.p7s",
  9351. "Icon.png",
  9352. "LICENSE.TXT",
  9353. "THIRD-PARTY-NOTICES.TXT",
  9354. "lib/net46/System.Security.Principal.Windows.dll",
  9355. "lib/net461/System.Security.Principal.Windows.dll",
  9356. "lib/net461/System.Security.Principal.Windows.xml",
  9357. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9358. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9359. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9360. "lib/uap10.0.16299/_._",
  9361. "ref/net46/System.Security.Principal.Windows.dll",
  9362. "ref/net461/System.Security.Principal.Windows.dll",
  9363. "ref/net461/System.Security.Principal.Windows.xml",
  9364. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9365. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9366. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9367. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9368. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9369. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9370. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9371. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9372. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9373. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9374. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9375. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9376. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9377. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9378. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9379. "ref/uap10.0.16299/_._",
  9380. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9381. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9382. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9383. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9384. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9385. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9386. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9387. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9388. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9389. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9390. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9391. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9392. "runtimes/win/lib/uap10.0.16299/_._",
  9393. "system.security.principal.windows.5.0.0.nupkg.sha512",
  9394. "system.security.principal.windows.nuspec",
  9395. "useSharedDesignerContext.txt",
  9396. "version.txt"
  9397. ]
  9398. },
  9399. "System.Text.Encoding/4.3.0": {
  9400. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9401. "type": "package",
  9402. "path": "system.text.encoding/4.3.0",
  9403. "files": [
  9404. ".nupkg.metadata",
  9405. ".signature.p7s",
  9406. "ThirdPartyNotices.txt",
  9407. "dotnet_library_license.txt",
  9408. "lib/MonoAndroid10/_._",
  9409. "lib/MonoTouch10/_._",
  9410. "lib/net45/_._",
  9411. "lib/portable-net45+win8+wp8+wpa81/_._",
  9412. "lib/win8/_._",
  9413. "lib/wp80/_._",
  9414. "lib/wpa81/_._",
  9415. "lib/xamarinios10/_._",
  9416. "lib/xamarinmac20/_._",
  9417. "lib/xamarintvos10/_._",
  9418. "lib/xamarinwatchos10/_._",
  9419. "ref/MonoAndroid10/_._",
  9420. "ref/MonoTouch10/_._",
  9421. "ref/net45/_._",
  9422. "ref/netcore50/System.Text.Encoding.dll",
  9423. "ref/netcore50/System.Text.Encoding.xml",
  9424. "ref/netcore50/de/System.Text.Encoding.xml",
  9425. "ref/netcore50/es/System.Text.Encoding.xml",
  9426. "ref/netcore50/fr/System.Text.Encoding.xml",
  9427. "ref/netcore50/it/System.Text.Encoding.xml",
  9428. "ref/netcore50/ja/System.Text.Encoding.xml",
  9429. "ref/netcore50/ko/System.Text.Encoding.xml",
  9430. "ref/netcore50/ru/System.Text.Encoding.xml",
  9431. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9432. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9433. "ref/netstandard1.0/System.Text.Encoding.dll",
  9434. "ref/netstandard1.0/System.Text.Encoding.xml",
  9435. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9436. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9437. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9438. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9439. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9440. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9441. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9442. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9443. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9444. "ref/netstandard1.3/System.Text.Encoding.dll",
  9445. "ref/netstandard1.3/System.Text.Encoding.xml",
  9446. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9447. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9448. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9449. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9450. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9451. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9452. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9453. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9454. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9455. "ref/portable-net45+win8+wp8+wpa81/_._",
  9456. "ref/win8/_._",
  9457. "ref/wp80/_._",
  9458. "ref/wpa81/_._",
  9459. "ref/xamarinios10/_._",
  9460. "ref/xamarinmac20/_._",
  9461. "ref/xamarintvos10/_._",
  9462. "ref/xamarinwatchos10/_._",
  9463. "system.text.encoding.4.3.0.nupkg.sha512",
  9464. "system.text.encoding.nuspec"
  9465. ]
  9466. },
  9467. "System.Text.Encoding.CodePages/5.0.0": {
  9468. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9469. "type": "package",
  9470. "path": "system.text.encoding.codepages/5.0.0",
  9471. "files": [
  9472. ".nupkg.metadata",
  9473. ".signature.p7s",
  9474. "Icon.png",
  9475. "LICENSE.TXT",
  9476. "THIRD-PARTY-NOTICES.TXT",
  9477. "lib/MonoAndroid10/_._",
  9478. "lib/MonoTouch10/_._",
  9479. "lib/net46/System.Text.Encoding.CodePages.dll",
  9480. "lib/net461/System.Text.Encoding.CodePages.dll",
  9481. "lib/net461/System.Text.Encoding.CodePages.xml",
  9482. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9483. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9484. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9485. "lib/xamarinios10/_._",
  9486. "lib/xamarinmac20/_._",
  9487. "lib/xamarintvos10/_._",
  9488. "lib/xamarinwatchos10/_._",
  9489. "ref/MonoAndroid10/_._",
  9490. "ref/MonoTouch10/_._",
  9491. "ref/xamarinios10/_._",
  9492. "ref/xamarinmac20/_._",
  9493. "ref/xamarintvos10/_._",
  9494. "ref/xamarinwatchos10/_._",
  9495. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9496. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9497. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9498. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9499. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9500. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9501. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9502. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9503. "system.text.encoding.codepages.nuspec",
  9504. "useSharedDesignerContext.txt",
  9505. "version.txt"
  9506. ]
  9507. },
  9508. "System.Text.Encoding.Extensions/4.3.0": {
  9509. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9510. "type": "package",
  9511. "path": "system.text.encoding.extensions/4.3.0",
  9512. "files": [
  9513. ".nupkg.metadata",
  9514. ".signature.p7s",
  9515. "ThirdPartyNotices.txt",
  9516. "dotnet_library_license.txt",
  9517. "lib/MonoAndroid10/_._",
  9518. "lib/MonoTouch10/_._",
  9519. "lib/net45/_._",
  9520. "lib/portable-net45+win8+wp8+wpa81/_._",
  9521. "lib/win8/_._",
  9522. "lib/wp80/_._",
  9523. "lib/wpa81/_._",
  9524. "lib/xamarinios10/_._",
  9525. "lib/xamarinmac20/_._",
  9526. "lib/xamarintvos10/_._",
  9527. "lib/xamarinwatchos10/_._",
  9528. "ref/MonoAndroid10/_._",
  9529. "ref/MonoTouch10/_._",
  9530. "ref/net45/_._",
  9531. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9532. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9533. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9534. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9535. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9536. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9537. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9538. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9539. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9540. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9541. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9542. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9543. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9544. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9545. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9546. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9547. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9548. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9549. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9550. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9551. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9552. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9553. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9554. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9555. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9556. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9557. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9558. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9559. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9560. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9561. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9562. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9563. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9564. "ref/portable-net45+win8+wp8+wpa81/_._",
  9565. "ref/win8/_._",
  9566. "ref/wp80/_._",
  9567. "ref/wpa81/_._",
  9568. "ref/xamarinios10/_._",
  9569. "ref/xamarinmac20/_._",
  9570. "ref/xamarintvos10/_._",
  9571. "ref/xamarinwatchos10/_._",
  9572. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9573. "system.text.encoding.extensions.nuspec"
  9574. ]
  9575. },
  9576. "System.Text.Encodings.Web/4.5.0": {
  9577. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  9578. "type": "package",
  9579. "path": "system.text.encodings.web/4.5.0",
  9580. "files": [
  9581. ".nupkg.metadata",
  9582. ".signature.p7s",
  9583. "LICENSE.TXT",
  9584. "THIRD-PARTY-NOTICES.TXT",
  9585. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9586. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9587. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9588. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9589. "system.text.encodings.web.4.5.0.nupkg.sha512",
  9590. "system.text.encodings.web.nuspec",
  9591. "useSharedDesignerContext.txt",
  9592. "version.txt"
  9593. ]
  9594. },
  9595. "System.Text.RegularExpressions/4.3.0": {
  9596. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9597. "type": "package",
  9598. "path": "system.text.regularexpressions/4.3.0",
  9599. "files": [
  9600. ".nupkg.metadata",
  9601. ".signature.p7s",
  9602. "ThirdPartyNotices.txt",
  9603. "dotnet_library_license.txt",
  9604. "lib/MonoAndroid10/_._",
  9605. "lib/MonoTouch10/_._",
  9606. "lib/net45/_._",
  9607. "lib/net463/System.Text.RegularExpressions.dll",
  9608. "lib/netcore50/System.Text.RegularExpressions.dll",
  9609. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9610. "lib/portable-net45+win8+wp8+wpa81/_._",
  9611. "lib/win8/_._",
  9612. "lib/wp80/_._",
  9613. "lib/wpa81/_._",
  9614. "lib/xamarinios10/_._",
  9615. "lib/xamarinmac20/_._",
  9616. "lib/xamarintvos10/_._",
  9617. "lib/xamarinwatchos10/_._",
  9618. "ref/MonoAndroid10/_._",
  9619. "ref/MonoTouch10/_._",
  9620. "ref/net45/_._",
  9621. "ref/net463/System.Text.RegularExpressions.dll",
  9622. "ref/netcore50/System.Text.RegularExpressions.dll",
  9623. "ref/netcore50/System.Text.RegularExpressions.xml",
  9624. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9625. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9626. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9627. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9628. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9629. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9630. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9631. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9632. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9633. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9634. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9635. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9636. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9637. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9638. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9639. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9640. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9641. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9642. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9643. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9644. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9645. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9646. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9647. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9648. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9649. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9650. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9651. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9652. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9653. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9654. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9655. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9656. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9657. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9658. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9659. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9660. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9661. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9662. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9663. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9664. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9665. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9666. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9667. "ref/portable-net45+win8+wp8+wpa81/_._",
  9668. "ref/win8/_._",
  9669. "ref/wp80/_._",
  9670. "ref/wpa81/_._",
  9671. "ref/xamarinios10/_._",
  9672. "ref/xamarinmac20/_._",
  9673. "ref/xamarintvos10/_._",
  9674. "ref/xamarinwatchos10/_._",
  9675. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9676. "system.text.regularexpressions.nuspec"
  9677. ]
  9678. },
  9679. "System.Threading/4.3.0": {
  9680. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9681. "type": "package",
  9682. "path": "system.threading/4.3.0",
  9683. "files": [
  9684. ".nupkg.metadata",
  9685. ".signature.p7s",
  9686. "ThirdPartyNotices.txt",
  9687. "dotnet_library_license.txt",
  9688. "lib/MonoAndroid10/_._",
  9689. "lib/MonoTouch10/_._",
  9690. "lib/net45/_._",
  9691. "lib/netcore50/System.Threading.dll",
  9692. "lib/netstandard1.3/System.Threading.dll",
  9693. "lib/portable-net45+win8+wp8+wpa81/_._",
  9694. "lib/win8/_._",
  9695. "lib/wp80/_._",
  9696. "lib/wpa81/_._",
  9697. "lib/xamarinios10/_._",
  9698. "lib/xamarinmac20/_._",
  9699. "lib/xamarintvos10/_._",
  9700. "lib/xamarinwatchos10/_._",
  9701. "ref/MonoAndroid10/_._",
  9702. "ref/MonoTouch10/_._",
  9703. "ref/net45/_._",
  9704. "ref/netcore50/System.Threading.dll",
  9705. "ref/netcore50/System.Threading.xml",
  9706. "ref/netcore50/de/System.Threading.xml",
  9707. "ref/netcore50/es/System.Threading.xml",
  9708. "ref/netcore50/fr/System.Threading.xml",
  9709. "ref/netcore50/it/System.Threading.xml",
  9710. "ref/netcore50/ja/System.Threading.xml",
  9711. "ref/netcore50/ko/System.Threading.xml",
  9712. "ref/netcore50/ru/System.Threading.xml",
  9713. "ref/netcore50/zh-hans/System.Threading.xml",
  9714. "ref/netcore50/zh-hant/System.Threading.xml",
  9715. "ref/netstandard1.0/System.Threading.dll",
  9716. "ref/netstandard1.0/System.Threading.xml",
  9717. "ref/netstandard1.0/de/System.Threading.xml",
  9718. "ref/netstandard1.0/es/System.Threading.xml",
  9719. "ref/netstandard1.0/fr/System.Threading.xml",
  9720. "ref/netstandard1.0/it/System.Threading.xml",
  9721. "ref/netstandard1.0/ja/System.Threading.xml",
  9722. "ref/netstandard1.0/ko/System.Threading.xml",
  9723. "ref/netstandard1.0/ru/System.Threading.xml",
  9724. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9725. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9726. "ref/netstandard1.3/System.Threading.dll",
  9727. "ref/netstandard1.3/System.Threading.xml",
  9728. "ref/netstandard1.3/de/System.Threading.xml",
  9729. "ref/netstandard1.3/es/System.Threading.xml",
  9730. "ref/netstandard1.3/fr/System.Threading.xml",
  9731. "ref/netstandard1.3/it/System.Threading.xml",
  9732. "ref/netstandard1.3/ja/System.Threading.xml",
  9733. "ref/netstandard1.3/ko/System.Threading.xml",
  9734. "ref/netstandard1.3/ru/System.Threading.xml",
  9735. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9736. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9737. "ref/portable-net45+win8+wp8+wpa81/_._",
  9738. "ref/win8/_._",
  9739. "ref/wp80/_._",
  9740. "ref/wpa81/_._",
  9741. "ref/xamarinios10/_._",
  9742. "ref/xamarinmac20/_._",
  9743. "ref/xamarintvos10/_._",
  9744. "ref/xamarinwatchos10/_._",
  9745. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9746. "system.threading.4.3.0.nupkg.sha512",
  9747. "system.threading.nuspec"
  9748. ]
  9749. },
  9750. "System.Threading.Channels/7.0.0": {
  9751. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  9752. "type": "package",
  9753. "path": "system.threading.channels/7.0.0",
  9754. "files": [
  9755. ".nupkg.metadata",
  9756. ".signature.p7s",
  9757. "Icon.png",
  9758. "LICENSE.TXT",
  9759. "THIRD-PARTY-NOTICES.TXT",
  9760. "buildTransitive/net461/System.Threading.Channels.targets",
  9761. "buildTransitive/net462/_._",
  9762. "buildTransitive/net6.0/_._",
  9763. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  9764. "lib/net462/System.Threading.Channels.dll",
  9765. "lib/net462/System.Threading.Channels.xml",
  9766. "lib/net6.0/System.Threading.Channels.dll",
  9767. "lib/net6.0/System.Threading.Channels.xml",
  9768. "lib/net7.0/System.Threading.Channels.dll",
  9769. "lib/net7.0/System.Threading.Channels.xml",
  9770. "lib/netstandard2.0/System.Threading.Channels.dll",
  9771. "lib/netstandard2.0/System.Threading.Channels.xml",
  9772. "lib/netstandard2.1/System.Threading.Channels.dll",
  9773. "lib/netstandard2.1/System.Threading.Channels.xml",
  9774. "system.threading.channels.7.0.0.nupkg.sha512",
  9775. "system.threading.channels.nuspec",
  9776. "useSharedDesignerContext.txt"
  9777. ]
  9778. },
  9779. "System.Threading.Tasks/4.3.0": {
  9780. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9781. "type": "package",
  9782. "path": "system.threading.tasks/4.3.0",
  9783. "files": [
  9784. ".nupkg.metadata",
  9785. ".signature.p7s",
  9786. "ThirdPartyNotices.txt",
  9787. "dotnet_library_license.txt",
  9788. "lib/MonoAndroid10/_._",
  9789. "lib/MonoTouch10/_._",
  9790. "lib/net45/_._",
  9791. "lib/portable-net45+win8+wp8+wpa81/_._",
  9792. "lib/win8/_._",
  9793. "lib/wp80/_._",
  9794. "lib/wpa81/_._",
  9795. "lib/xamarinios10/_._",
  9796. "lib/xamarinmac20/_._",
  9797. "lib/xamarintvos10/_._",
  9798. "lib/xamarinwatchos10/_._",
  9799. "ref/MonoAndroid10/_._",
  9800. "ref/MonoTouch10/_._",
  9801. "ref/net45/_._",
  9802. "ref/netcore50/System.Threading.Tasks.dll",
  9803. "ref/netcore50/System.Threading.Tasks.xml",
  9804. "ref/netcore50/de/System.Threading.Tasks.xml",
  9805. "ref/netcore50/es/System.Threading.Tasks.xml",
  9806. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9807. "ref/netcore50/it/System.Threading.Tasks.xml",
  9808. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9809. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9810. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9811. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9812. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9813. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9814. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9815. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9816. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9817. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9818. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9819. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9820. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9821. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9822. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9823. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9824. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9825. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9826. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9827. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9828. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9829. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9830. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9831. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9832. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9833. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9834. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9835. "ref/portable-net45+win8+wp8+wpa81/_._",
  9836. "ref/win8/_._",
  9837. "ref/wp80/_._",
  9838. "ref/wpa81/_._",
  9839. "ref/xamarinios10/_._",
  9840. "ref/xamarinmac20/_._",
  9841. "ref/xamarintvos10/_._",
  9842. "ref/xamarinwatchos10/_._",
  9843. "system.threading.tasks.4.3.0.nupkg.sha512",
  9844. "system.threading.tasks.nuspec"
  9845. ]
  9846. },
  9847. "System.Threading.Tasks.Extensions/4.3.0": {
  9848. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9849. "type": "package",
  9850. "path": "system.threading.tasks.extensions/4.3.0",
  9851. "files": [
  9852. ".nupkg.metadata",
  9853. ".signature.p7s",
  9854. "ThirdPartyNotices.txt",
  9855. "dotnet_library_license.txt",
  9856. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9857. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9858. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9859. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9860. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9861. "system.threading.tasks.extensions.nuspec"
  9862. ]
  9863. },
  9864. "System.Threading.Thread/4.3.0": {
  9865. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9866. "type": "package",
  9867. "path": "system.threading.thread/4.3.0",
  9868. "files": [
  9869. ".nupkg.metadata",
  9870. ".signature.p7s",
  9871. "ThirdPartyNotices.txt",
  9872. "dotnet_library_license.txt",
  9873. "lib/MonoAndroid10/_._",
  9874. "lib/MonoTouch10/_._",
  9875. "lib/net46/System.Threading.Thread.dll",
  9876. "lib/netcore50/_._",
  9877. "lib/netstandard1.3/System.Threading.Thread.dll",
  9878. "lib/xamarinios10/_._",
  9879. "lib/xamarinmac20/_._",
  9880. "lib/xamarintvos10/_._",
  9881. "lib/xamarinwatchos10/_._",
  9882. "ref/MonoAndroid10/_._",
  9883. "ref/MonoTouch10/_._",
  9884. "ref/net46/System.Threading.Thread.dll",
  9885. "ref/netstandard1.3/System.Threading.Thread.dll",
  9886. "ref/netstandard1.3/System.Threading.Thread.xml",
  9887. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9888. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9889. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9890. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9891. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9892. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9893. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9894. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9895. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9896. "ref/xamarinios10/_._",
  9897. "ref/xamarinmac20/_._",
  9898. "ref/xamarintvos10/_._",
  9899. "ref/xamarinwatchos10/_._",
  9900. "system.threading.thread.4.3.0.nupkg.sha512",
  9901. "system.threading.thread.nuspec"
  9902. ]
  9903. },
  9904. "System.Threading.ThreadPool/4.3.0": {
  9905. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  9906. "type": "package",
  9907. "path": "system.threading.threadpool/4.3.0",
  9908. "files": [
  9909. ".nupkg.metadata",
  9910. ".signature.p7s",
  9911. "ThirdPartyNotices.txt",
  9912. "dotnet_library_license.txt",
  9913. "lib/MonoAndroid10/_._",
  9914. "lib/MonoTouch10/_._",
  9915. "lib/net46/System.Threading.ThreadPool.dll",
  9916. "lib/netcore50/_._",
  9917. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9918. "lib/xamarinios10/_._",
  9919. "lib/xamarinmac20/_._",
  9920. "lib/xamarintvos10/_._",
  9921. "lib/xamarinwatchos10/_._",
  9922. "ref/MonoAndroid10/_._",
  9923. "ref/MonoTouch10/_._",
  9924. "ref/net46/System.Threading.ThreadPool.dll",
  9925. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9926. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9927. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9928. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9929. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9930. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9931. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9932. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9933. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9934. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9935. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9936. "ref/xamarinios10/_._",
  9937. "ref/xamarinmac20/_._",
  9938. "ref/xamarintvos10/_._",
  9939. "ref/xamarinwatchos10/_._",
  9940. "system.threading.threadpool.4.3.0.nupkg.sha512",
  9941. "system.threading.threadpool.nuspec"
  9942. ]
  9943. },
  9944. "System.Threading.Timer/4.3.0": {
  9945. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9946. "type": "package",
  9947. "path": "system.threading.timer/4.3.0",
  9948. "files": [
  9949. ".nupkg.metadata",
  9950. ".signature.p7s",
  9951. "ThirdPartyNotices.txt",
  9952. "dotnet_library_license.txt",
  9953. "lib/MonoAndroid10/_._",
  9954. "lib/MonoTouch10/_._",
  9955. "lib/net451/_._",
  9956. "lib/portable-net451+win81+wpa81/_._",
  9957. "lib/win81/_._",
  9958. "lib/wpa81/_._",
  9959. "lib/xamarinios10/_._",
  9960. "lib/xamarinmac20/_._",
  9961. "lib/xamarintvos10/_._",
  9962. "lib/xamarinwatchos10/_._",
  9963. "ref/MonoAndroid10/_._",
  9964. "ref/MonoTouch10/_._",
  9965. "ref/net451/_._",
  9966. "ref/netcore50/System.Threading.Timer.dll",
  9967. "ref/netcore50/System.Threading.Timer.xml",
  9968. "ref/netcore50/de/System.Threading.Timer.xml",
  9969. "ref/netcore50/es/System.Threading.Timer.xml",
  9970. "ref/netcore50/fr/System.Threading.Timer.xml",
  9971. "ref/netcore50/it/System.Threading.Timer.xml",
  9972. "ref/netcore50/ja/System.Threading.Timer.xml",
  9973. "ref/netcore50/ko/System.Threading.Timer.xml",
  9974. "ref/netcore50/ru/System.Threading.Timer.xml",
  9975. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9976. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9977. "ref/netstandard1.2/System.Threading.Timer.dll",
  9978. "ref/netstandard1.2/System.Threading.Timer.xml",
  9979. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9980. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9981. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9982. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9983. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9984. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9985. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9986. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9987. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9988. "ref/portable-net451+win81+wpa81/_._",
  9989. "ref/win81/_._",
  9990. "ref/wpa81/_._",
  9991. "ref/xamarinios10/_._",
  9992. "ref/xamarinmac20/_._",
  9993. "ref/xamarintvos10/_._",
  9994. "ref/xamarinwatchos10/_._",
  9995. "system.threading.timer.4.3.0.nupkg.sha512",
  9996. "system.threading.timer.nuspec"
  9997. ]
  9998. },
  9999. "System.Windows.Extensions/6.0.0": {
  10000. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  10001. "type": "package",
  10002. "path": "system.windows.extensions/6.0.0",
  10003. "files": [
  10004. ".nupkg.metadata",
  10005. ".signature.p7s",
  10006. "Icon.png",
  10007. "LICENSE.TXT",
  10008. "THIRD-PARTY-NOTICES.TXT",
  10009. "lib/net6.0/System.Windows.Extensions.dll",
  10010. "lib/net6.0/System.Windows.Extensions.xml",
  10011. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  10012. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  10013. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  10014. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  10015. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  10016. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  10017. "system.windows.extensions.6.0.0.nupkg.sha512",
  10018. "system.windows.extensions.nuspec",
  10019. "useSharedDesignerContext.txt"
  10020. ]
  10021. },
  10022. "System.Xml.ReaderWriter/4.3.0": {
  10023. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10024. "type": "package",
  10025. "path": "system.xml.readerwriter/4.3.0",
  10026. "files": [
  10027. ".nupkg.metadata",
  10028. ".signature.p7s",
  10029. "ThirdPartyNotices.txt",
  10030. "dotnet_library_license.txt",
  10031. "lib/MonoAndroid10/_._",
  10032. "lib/MonoTouch10/_._",
  10033. "lib/net45/_._",
  10034. "lib/net46/System.Xml.ReaderWriter.dll",
  10035. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10036. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10037. "lib/portable-net45+win8+wp8+wpa81/_._",
  10038. "lib/win8/_._",
  10039. "lib/wp80/_._",
  10040. "lib/wpa81/_._",
  10041. "lib/xamarinios10/_._",
  10042. "lib/xamarinmac20/_._",
  10043. "lib/xamarintvos10/_._",
  10044. "lib/xamarinwatchos10/_._",
  10045. "ref/MonoAndroid10/_._",
  10046. "ref/MonoTouch10/_._",
  10047. "ref/net45/_._",
  10048. "ref/net46/System.Xml.ReaderWriter.dll",
  10049. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10050. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10051. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10052. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10053. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10054. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10055. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10056. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10057. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10058. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10059. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10060. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10061. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10062. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10063. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10064. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10065. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10066. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10067. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10068. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10069. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10070. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10071. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10072. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10073. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10074. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10075. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10076. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10077. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10078. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10079. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10080. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10081. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10082. "ref/portable-net45+win8+wp8+wpa81/_._",
  10083. "ref/win8/_._",
  10084. "ref/wp80/_._",
  10085. "ref/wpa81/_._",
  10086. "ref/xamarinios10/_._",
  10087. "ref/xamarinmac20/_._",
  10088. "ref/xamarintvos10/_._",
  10089. "ref/xamarinwatchos10/_._",
  10090. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10091. "system.xml.readerwriter.nuspec"
  10092. ]
  10093. },
  10094. "System.Xml.XDocument/4.3.0": {
  10095. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10096. "type": "package",
  10097. "path": "system.xml.xdocument/4.3.0",
  10098. "files": [
  10099. ".nupkg.metadata",
  10100. ".signature.p7s",
  10101. "ThirdPartyNotices.txt",
  10102. "dotnet_library_license.txt",
  10103. "lib/MonoAndroid10/_._",
  10104. "lib/MonoTouch10/_._",
  10105. "lib/net45/_._",
  10106. "lib/netcore50/System.Xml.XDocument.dll",
  10107. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10108. "lib/portable-net45+win8+wp8+wpa81/_._",
  10109. "lib/win8/_._",
  10110. "lib/wp80/_._",
  10111. "lib/wpa81/_._",
  10112. "lib/xamarinios10/_._",
  10113. "lib/xamarinmac20/_._",
  10114. "lib/xamarintvos10/_._",
  10115. "lib/xamarinwatchos10/_._",
  10116. "ref/MonoAndroid10/_._",
  10117. "ref/MonoTouch10/_._",
  10118. "ref/net45/_._",
  10119. "ref/netcore50/System.Xml.XDocument.dll",
  10120. "ref/netcore50/System.Xml.XDocument.xml",
  10121. "ref/netcore50/de/System.Xml.XDocument.xml",
  10122. "ref/netcore50/es/System.Xml.XDocument.xml",
  10123. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10124. "ref/netcore50/it/System.Xml.XDocument.xml",
  10125. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10126. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10127. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10128. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10129. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10130. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10131. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10132. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10133. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10134. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10135. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10136. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10137. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10138. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10139. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10140. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10141. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10142. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10143. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10144. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10145. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10146. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10147. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10148. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10149. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10150. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10151. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10152. "ref/portable-net45+win8+wp8+wpa81/_._",
  10153. "ref/win8/_._",
  10154. "ref/wp80/_._",
  10155. "ref/wpa81/_._",
  10156. "ref/xamarinios10/_._",
  10157. "ref/xamarinmac20/_._",
  10158. "ref/xamarintvos10/_._",
  10159. "ref/xamarinwatchos10/_._",
  10160. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10161. "system.xml.xdocument.nuspec"
  10162. ]
  10163. },
  10164. "System.Xml.XmlDocument/4.3.0": {
  10165. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10166. "type": "package",
  10167. "path": "system.xml.xmldocument/4.3.0",
  10168. "files": [
  10169. ".nupkg.metadata",
  10170. ".signature.p7s",
  10171. "ThirdPartyNotices.txt",
  10172. "dotnet_library_license.txt",
  10173. "lib/MonoAndroid10/_._",
  10174. "lib/MonoTouch10/_._",
  10175. "lib/net46/System.Xml.XmlDocument.dll",
  10176. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10177. "lib/xamarinios10/_._",
  10178. "lib/xamarinmac20/_._",
  10179. "lib/xamarintvos10/_._",
  10180. "lib/xamarinwatchos10/_._",
  10181. "ref/MonoAndroid10/_._",
  10182. "ref/MonoTouch10/_._",
  10183. "ref/net46/System.Xml.XmlDocument.dll",
  10184. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10185. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10186. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10187. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10188. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10189. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10190. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10191. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10192. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10193. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10194. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10195. "ref/xamarinios10/_._",
  10196. "ref/xamarinmac20/_._",
  10197. "ref/xamarintvos10/_._",
  10198. "ref/xamarinwatchos10/_._",
  10199. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10200. "system.xml.xmldocument.nuspec"
  10201. ]
  10202. },
  10203. "UAParser/3.1.47": {
  10204. "sha512": "I68Jl/Vs5RQZdz9BbmYtnXgujg0jVd61LhKbyNZOCm9lBxZFGxLbiQo6yFj21VYi7DzPvEvrVOmeC6v41AoLfw==",
  10205. "type": "package",
  10206. "path": "uaparser/3.1.47",
  10207. "files": [
  10208. ".nupkg.metadata",
  10209. ".signature.p7s",
  10210. "lib/net20/UAParser.dll",
  10211. "lib/net20/UAParser.xml",
  10212. "lib/net35/UAParser.dll",
  10213. "lib/net35/UAParser.xml",
  10214. "lib/net40/UAParser.dll",
  10215. "lib/net40/UAParser.xml",
  10216. "lib/net45/UAParser.dll",
  10217. "lib/net45/UAParser.xml",
  10218. "lib/netcoreapp2.0/UAParser.dll",
  10219. "lib/netcoreapp2.0/UAParser.xml",
  10220. "lib/netstandard1.0/UAParser.dll",
  10221. "lib/netstandard1.0/UAParser.xml",
  10222. "lib/netstandard1.3/UAParser.dll",
  10223. "lib/netstandard1.3/UAParser.xml",
  10224. "lib/netstandard1.6/UAParser.dll",
  10225. "lib/netstandard1.6/UAParser.xml",
  10226. "uaparser.3.1.47.nupkg.sha512",
  10227. "uaparser.nuspec"
  10228. ]
  10229. },
  10230. "ZXing.Net/0.16.9": {
  10231. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10232. "type": "package",
  10233. "path": "zxing.net/0.16.9",
  10234. "files": [
  10235. ".nupkg.metadata",
  10236. ".signature.p7s",
  10237. "lib/native/zxing.XML",
  10238. "lib/native/zxing.pri",
  10239. "lib/native/zxing.winmd",
  10240. "lib/net20-cf/zxing.ce2.0.dll",
  10241. "lib/net20-cf/zxing.ce2.0.xml",
  10242. "lib/net20/zxing.XML",
  10243. "lib/net20/zxing.dll",
  10244. "lib/net35-cf/zxing.ce3.5.dll",
  10245. "lib/net35-cf/zxing.ce3.5.xml",
  10246. "lib/net35/zxing.XML",
  10247. "lib/net35/zxing.dll",
  10248. "lib/net40/zxing.XML",
  10249. "lib/net40/zxing.dll",
  10250. "lib/net40/zxing.presentation.XML",
  10251. "lib/net40/zxing.presentation.dll",
  10252. "lib/net45/zxing.XML",
  10253. "lib/net45/zxing.dll",
  10254. "lib/net45/zxing.presentation.XML",
  10255. "lib/net45/zxing.presentation.dll",
  10256. "lib/net461/zxing.XML",
  10257. "lib/net461/zxing.dll",
  10258. "lib/net461/zxing.presentation.XML",
  10259. "lib/net461/zxing.presentation.dll",
  10260. "lib/net47/zxing.XML",
  10261. "lib/net47/zxing.dll",
  10262. "lib/net47/zxing.presentation.XML",
  10263. "lib/net47/zxing.presentation.dll",
  10264. "lib/net48/zxing.XML",
  10265. "lib/net48/zxing.dll",
  10266. "lib/net48/zxing.presentation.XML",
  10267. "lib/net48/zxing.presentation.dll",
  10268. "lib/net5.0/zxing.XML",
  10269. "lib/net5.0/zxing.dll",
  10270. "lib/net6.0/zxing.XML",
  10271. "lib/net6.0/zxing.dll",
  10272. "lib/net7.0/zxing.XML",
  10273. "lib/net7.0/zxing.dll",
  10274. "lib/netcoreapp3.0/zxing.dll",
  10275. "lib/netcoreapp3.0/zxing.xml",
  10276. "lib/netcoreapp3.1/zxing.dll",
  10277. "lib/netcoreapp3.1/zxing.xml",
  10278. "lib/netstandard1.0/zxing.dll",
  10279. "lib/netstandard1.0/zxing.xml",
  10280. "lib/netstandard1.1/zxing.dll",
  10281. "lib/netstandard1.1/zxing.xml",
  10282. "lib/netstandard1.3/zxing.dll",
  10283. "lib/netstandard1.3/zxing.xml",
  10284. "lib/netstandard2.0/zxing.dll",
  10285. "lib/netstandard2.0/zxing.xml",
  10286. "lib/netstandard2.1/zxing.dll",
  10287. "lib/netstandard2.1/zxing.xml",
  10288. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10289. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10290. "lib/sl3-wp/zxing.wp7.0.XML",
  10291. "lib/sl3-wp/zxing.wp7.0.dll",
  10292. "lib/sl4-wp71/zxing.wp7.1.XML",
  10293. "lib/sl4-wp71/zxing.wp7.1.dll",
  10294. "lib/sl4/zxing.sl4.XML",
  10295. "lib/sl4/zxing.sl4.dll",
  10296. "lib/sl5/zxing.sl5.XML",
  10297. "lib/sl5/zxing.sl5.dll",
  10298. "lib/uap10/zxing.dll",
  10299. "lib/uap10/zxing.pri",
  10300. "lib/uap10/zxing.xml",
  10301. "lib/windows8-managed/zxing.winrt.XML",
  10302. "lib/windows8-managed/zxing.winrt.dll",
  10303. "lib/windows8/zxing.XML",
  10304. "lib/windows8/zxing.pri",
  10305. "lib/windows8/zxing.winmd",
  10306. "lib/wp8/zxing.wp8.0.XML",
  10307. "lib/wp8/zxing.wp8.0.dll",
  10308. "logo.jpg",
  10309. "zxing.net.0.16.9.nupkg.sha512",
  10310. "zxing.net.nuspec"
  10311. ]
  10312. },
  10313. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10314. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10315. "type": "package",
  10316. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10317. "files": [
  10318. ".nupkg.metadata",
  10319. ".signature.p7s",
  10320. "lib/net472/ZXing.ImageSharp.V2.dll",
  10321. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10322. "lib/net472/ZXing.ImageSharp.V2.xml",
  10323. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10324. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10325. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10326. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10327. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10328. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10329. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10330. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10331. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10332. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10333. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10334. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10335. "logo.jpg",
  10336. "readme.md",
  10337. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10338. "zxing.net.bindings.imagesharp.v2.nuspec"
  10339. ]
  10340. },
  10341. "Ropin.Core.Common/1.0.0": {
  10342. "type": "project",
  10343. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10344. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10345. },
  10346. "Ropin.Core.Extensions/1.0.0": {
  10347. "type": "project",
  10348. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10349. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10350. },
  10351. "Ropin.Inspection.Common/1.0.0": {
  10352. "type": "project",
  10353. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10354. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10355. },
  10356. "Ropin.Inspection.Model/1.0.0": {
  10357. "type": "project",
  10358. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10359. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10360. },
  10361. "Ropin.Inspection.Repository/1.0.0": {
  10362. "type": "project",
  10363. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10364. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10365. },
  10366. "Ropin.Inspection.Service/1.0.0": {
  10367. "type": "project",
  10368. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10369. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10370. },
  10371. "Ropin.Inspection.Tasks/1.0.0": {
  10372. "type": "project",
  10373. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10374. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10375. }
  10376. },
  10377. "projectFileDependencyGroups": {
  10378. "net5.0": [
  10379. "AutoMapper >= 10.1.1",
  10380. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  10381. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10382. "IPTools.China >= 1.6.0",
  10383. "IPTools.Core >= 1.6.0",
  10384. "InfluxData.Net >= 8.0.1",
  10385. "Microsoft.AspNetCore.Authentication.JwtBearer >= 5.0.0",
  10386. "Microsoft.AspNetCore.Authentication.OpenIdConnect >= 5.0.0",
  10387. "Microsoft.AspNetCore.JsonPatch >= 5.0.0",
  10388. "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 5.0.0",
  10389. "Microsoft.EntityFrameworkCore >= 5.0.4",
  10390. "Microsoft.EntityFrameworkCore.Design >= 5.0.4",
  10391. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9",
  10392. "MySql.Data >= 8.0.23",
  10393. "NPOI >= 2.6.2",
  10394. "Pomelo.EntityFrameworkCore.MySql >= 5.0.0-alpha.2",
  10395. "Ropin.Core.Common >= 1.0.0",
  10396. "Ropin.Core.Extensions >= 1.0.0",
  10397. "Ropin.Inspection.Common >= 1.0.0",
  10398. "Ropin.Inspection.Model >= 1.0.0",
  10399. "Ropin.Inspection.Repository >= 1.0.0",
  10400. "Ropin.Inspection.Service >= 1.0.0",
  10401. "Ropin.Inspection.Tasks >= 1.0.0",
  10402. "Swashbuckle.AspNetCore >= 5.6.3",
  10403. "UAParser >= 3.1.47"
  10404. ]
  10405. },
  10406. "packageFolders": {
  10407. "D:\\.nuget\\packages": {},
  10408. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10409. },
  10410. "project": {
  10411. "version": "1.0.0",
  10412. "restore": {
  10413. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  10414. "projectName": "Ropin.Inspection.Api",
  10415. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  10416. "packagesPath": "D:\\.nuget\\packages",
  10417. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\obj\\",
  10418. "projectStyle": "PackageReference",
  10419. "fallbackFolders": [
  10420. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10421. ],
  10422. "configFilePaths": [
  10423. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10424. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10425. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10426. ],
  10427. "originalTargetFrameworks": [
  10428. "net5.0"
  10429. ],
  10430. "sources": {
  10431. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10432. "C:\\Program Files\\dotnet\\library-packs": {},
  10433. "https://api.nuget.org/v3/index.json": {}
  10434. },
  10435. "frameworks": {
  10436. "net5.0": {
  10437. "targetAlias": "net5.0",
  10438. "projectReferences": {
  10439. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  10440. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  10441. },
  10442. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10443. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10444. },
  10445. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10446. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10447. },
  10448. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10449. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10450. },
  10451. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  10452. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  10453. },
  10454. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  10455. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  10456. },
  10457. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj": {
  10458. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj"
  10459. }
  10460. }
  10461. }
  10462. },
  10463. "warningProperties": {
  10464. "warnAsError": [
  10465. "NU1605"
  10466. ]
  10467. }
  10468. },
  10469. "frameworks": {
  10470. "net5.0": {
  10471. "targetAlias": "net5.0",
  10472. "dependencies": {
  10473. "AutoMapper": {
  10474. "target": "Package",
  10475. "version": "[10.1.1, )"
  10476. },
  10477. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  10478. "target": "Package",
  10479. "version": "[8.1.1, )"
  10480. },
  10481. "Autofac.Extensions.DependencyInjection": {
  10482. "target": "Package",
  10483. "version": "[7.1.0, )"
  10484. },
  10485. "IPTools.China": {
  10486. "target": "Package",
  10487. "version": "[1.6.0, )"
  10488. },
  10489. "IPTools.Core": {
  10490. "target": "Package",
  10491. "version": "[1.6.0, )"
  10492. },
  10493. "InfluxData.Net": {
  10494. "target": "Package",
  10495. "version": "[8.0.1, )"
  10496. },
  10497. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  10498. "target": "Package",
  10499. "version": "[5.0.0, )",
  10500. "noWarn": [
  10501. "NU1605"
  10502. ]
  10503. },
  10504. "Microsoft.AspNetCore.Authentication.OpenIdConnect": {
  10505. "target": "Package",
  10506. "version": "[5.0.0, )",
  10507. "noWarn": [
  10508. "NU1605"
  10509. ]
  10510. },
  10511. "Microsoft.AspNetCore.JsonPatch": {
  10512. "target": "Package",
  10513. "version": "[5.0.0, )"
  10514. },
  10515. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
  10516. "target": "Package",
  10517. "version": "[5.0.0, )"
  10518. },
  10519. "Microsoft.EntityFrameworkCore": {
  10520. "target": "Package",
  10521. "version": "[5.0.4, )"
  10522. },
  10523. "Microsoft.EntityFrameworkCore.Design": {
  10524. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  10525. "suppressParent": "All",
  10526. "target": "Package",
  10527. "version": "[5.0.4, )"
  10528. },
  10529. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10530. "target": "Package",
  10531. "version": "[1.10.9, )"
  10532. },
  10533. "MySql.Data": {
  10534. "target": "Package",
  10535. "version": "[8.0.23, )"
  10536. },
  10537. "NPOI": {
  10538. "target": "Package",
  10539. "version": "[2.6.2, )"
  10540. },
  10541. "Pomelo.EntityFrameworkCore.MySql": {
  10542. "target": "Package",
  10543. "version": "[5.0.0-alpha.2, )"
  10544. },
  10545. "Swashbuckle.AspNetCore": {
  10546. "target": "Package",
  10547. "version": "[5.6.3, )"
  10548. },
  10549. "UAParser": {
  10550. "target": "Package",
  10551. "version": "[3.1.47, )"
  10552. }
  10553. },
  10554. "imports": [
  10555. "net461",
  10556. "net462",
  10557. "net47",
  10558. "net471",
  10559. "net472",
  10560. "net48",
  10561. "net481"
  10562. ],
  10563. "assetTargetFallback": true,
  10564. "warn": true,
  10565. "frameworkReferences": {
  10566. "Microsoft.AspNetCore.App": {
  10567. "privateAssets": "none"
  10568. },
  10569. "Microsoft.NETCore.App": {
  10570. "privateAssets": "all"
  10571. }
  10572. },
  10573. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10574. }
  10575. }
  10576. }
  10577. }