project.assets.json 312 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.0.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/netstandard2.1/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/netstandard2.1/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "AutoMapper/10.1.1": {
  52. "type": "package",
  53. "dependencies": {
  54. "Microsoft.CSharp": "4.7.0",
  55. "System.Reflection.Emit": "4.7.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.0/AutoMapper.dll": {
  59. "related": ".xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.0/AutoMapper.dll": {
  64. "related": ".xml"
  65. }
  66. }
  67. },
  68. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  69. "type": "package",
  70. "dependencies": {
  71. "AutoMapper": "[10.1.1, 11.0.0)",
  72. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  73. "Microsoft.Extensions.Options": "3.0.0"
  74. },
  75. "compile": {
  76. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  77. },
  78. "runtime": {
  79. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  80. }
  81. },
  82. "BouncyCastle.Cryptography/2.2.1": {
  83. "type": "package",
  84. "compile": {
  85. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  86. "related": ".xml"
  87. }
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  91. "related": ".xml"
  92. }
  93. }
  94. },
  95. "BouncyCastle.NetCore/1.8.5": {
  96. "type": "package",
  97. "compile": {
  98. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  99. "related": ".xml"
  100. }
  101. },
  102. "runtime": {
  103. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  104. "related": ".xml"
  105. }
  106. }
  107. },
  108. "Coravel/4.2.1": {
  109. "type": "package",
  110. "dependencies": {
  111. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  112. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  113. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  114. },
  115. "compile": {
  116. "lib/netstandard2.0/Coravel.dll": {
  117. "related": ".xml"
  118. }
  119. },
  120. "runtime": {
  121. "lib/netstandard2.0/Coravel.dll": {
  122. "related": ".xml"
  123. }
  124. }
  125. },
  126. "Enums.NET/4.0.1": {
  127. "type": "package",
  128. "compile": {
  129. "lib/netcoreapp3.0/Enums.NET.dll": {
  130. "related": ".pdb;.xml"
  131. }
  132. },
  133. "runtime": {
  134. "lib/netcoreapp3.0/Enums.NET.dll": {
  135. "related": ".pdb;.xml"
  136. }
  137. }
  138. },
  139. "FluentEmail.Core/3.0.2": {
  140. "type": "package",
  141. "dependencies": {
  142. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  143. },
  144. "compile": {
  145. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  146. },
  147. "runtime": {
  148. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  149. }
  150. },
  151. "FluentEmail.Smtp/3.0.2": {
  152. "type": "package",
  153. "dependencies": {
  154. "FluentEmail.Core": "3.0.2"
  155. },
  156. "compile": {
  157. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  158. },
  159. "runtime": {
  160. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  161. }
  162. },
  163. "Google.Protobuf/3.11.4": {
  164. "type": "package",
  165. "dependencies": {
  166. "System.Memory": "4.5.2"
  167. },
  168. "compile": {
  169. "lib/netstandard2.0/Google.Protobuf.dll": {
  170. "related": ".pdb;.xml"
  171. }
  172. },
  173. "runtime": {
  174. "lib/netstandard2.0/Google.Protobuf.dll": {
  175. "related": ".pdb;.xml"
  176. }
  177. }
  178. },
  179. "Humanizer.Core/2.8.26": {
  180. "type": "package",
  181. "compile": {
  182. "lib/netstandard2.0/_._": {
  183. "related": ".xml"
  184. }
  185. },
  186. "runtime": {
  187. "lib/netstandard2.0/Humanizer.dll": {
  188. "related": ".xml"
  189. }
  190. }
  191. },
  192. "InfluxData.Net/8.0.1": {
  193. "type": "package",
  194. "dependencies": {
  195. "Newtonsoft.Json": "10.0.3",
  196. "System.Net.Http": "4.3.2"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  200. "related": ".dll.config;.pdb"
  201. },
  202. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  203. "related": ".dll.config;.pdb"
  204. },
  205. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  206. "related": ".dll.config;.pdb"
  207. },
  208. "lib/netstandard2.0/InfluxData.Net.dll": {
  209. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  210. }
  211. },
  212. "runtime": {
  213. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  214. "related": ".dll.config;.pdb"
  215. },
  216. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  217. "related": ".dll.config;.pdb"
  218. },
  219. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  220. "related": ".dll.config;.pdb"
  221. },
  222. "lib/netstandard2.0/InfluxData.Net.dll": {
  223. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  224. }
  225. }
  226. },
  227. "IP2Region.Ex/1.2.0": {
  228. "type": "package",
  229. "compile": {
  230. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  231. },
  232. "runtime": {
  233. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  234. }
  235. },
  236. "IPTools.China/1.6.0": {
  237. "type": "package",
  238. "dependencies": {
  239. "IP2Region.Ex": "1.2.0",
  240. "IPTools.Core": "1.6.0"
  241. },
  242. "compile": {
  243. "lib/net5.0/IPTools.China.dll": {}
  244. },
  245. "runtime": {
  246. "lib/net5.0/IPTools.China.dll": {}
  247. }
  248. },
  249. "IPTools.Core/1.6.0": {
  250. "type": "package",
  251. "dependencies": {
  252. "IP2Region.Ex": "1.2.0"
  253. },
  254. "compile": {
  255. "lib/net5.0/IPTools.Core.dll": {}
  256. },
  257. "runtime": {
  258. "lib/net5.0/IPTools.Core.dll": {}
  259. },
  260. "frameworkReferences": [
  261. "Microsoft.AspNetCore.App"
  262. ]
  263. },
  264. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  265. "type": "package",
  266. "dependencies": {
  267. "AdvancedStringBuilder": "0.1.0",
  268. "JavaScriptEngineSwitcher.Core": "3.21.0"
  269. },
  270. "compile": {
  271. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  272. "related": ".xml"
  273. }
  274. },
  275. "runtime": {
  276. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  277. "related": ".xml"
  278. }
  279. },
  280. "resource": {
  281. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  282. "locale": "ru-RU"
  283. }
  284. }
  285. },
  286. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  287. "type": "package",
  288. "runtimeTargets": {
  289. "runtimes/linux-x64/native/libChakraCore.so": {
  290. "assetType": "native",
  291. "rid": "linux-x64"
  292. }
  293. }
  294. },
  295. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  296. "type": "package",
  297. "build": {
  298. "build/_._": {}
  299. },
  300. "runtimeTargets": {
  301. "runtimes/win-x64/native/ChakraCore.dll": {
  302. "assetType": "native",
  303. "rid": "win-x64"
  304. }
  305. }
  306. },
  307. "JavaScriptEngineSwitcher.Core/3.21.0": {
  308. "type": "package",
  309. "dependencies": {
  310. "AdvancedStringBuilder": "0.1.0"
  311. },
  312. "compile": {
  313. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  314. "related": ".xml"
  315. }
  316. },
  317. "runtime": {
  318. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  319. "related": ".xml"
  320. }
  321. },
  322. "resource": {
  323. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  324. "locale": "ru-RU"
  325. }
  326. }
  327. },
  328. "K4os.Compression.LZ4/1.1.11": {
  329. "type": "package",
  330. "dependencies": {
  331. "System.Memory": "4.5.3"
  332. },
  333. "compile": {
  334. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  335. "related": ".xml"
  336. }
  337. },
  338. "runtime": {
  339. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  340. "related": ".xml"
  341. }
  342. }
  343. },
  344. "K4os.Compression.LZ4.Streams/1.1.11": {
  345. "type": "package",
  346. "dependencies": {
  347. "K4os.Compression.LZ4": "1.1.11",
  348. "K4os.Hash.xxHash": "1.0.6"
  349. },
  350. "compile": {
  351. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  352. "related": ".xml"
  353. }
  354. },
  355. "runtime": {
  356. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  357. "related": ".xml"
  358. }
  359. }
  360. },
  361. "K4os.Hash.xxHash/1.0.6": {
  362. "type": "package",
  363. "dependencies": {
  364. "System.Memory": "4.5.3"
  365. },
  366. "compile": {
  367. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  368. "related": ".xml"
  369. }
  370. },
  371. "runtime": {
  372. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  373. "related": ".xml"
  374. }
  375. }
  376. },
  377. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  378. "type": "package",
  379. "dependencies": {
  380. "Microsoft.EntityFrameworkCore": "5.0.0"
  381. },
  382. "compile": {
  383. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  384. "related": ".xml"
  385. }
  386. },
  387. "runtime": {
  388. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  389. "related": ".xml"
  390. }
  391. }
  392. },
  393. "log4net/2.0.17": {
  394. "type": "package",
  395. "dependencies": {
  396. "System.Configuration.ConfigurationManager": "4.5.0"
  397. },
  398. "compile": {
  399. "lib/netstandard2.0/log4net.dll": {
  400. "related": ".xml"
  401. }
  402. },
  403. "runtime": {
  404. "lib/netstandard2.0/log4net.dll": {
  405. "related": ".xml"
  406. }
  407. }
  408. },
  409. "MathNet.Numerics.Signed/4.15.0": {
  410. "type": "package",
  411. "compile": {
  412. "lib/netstandard2.0/MathNet.Numerics.dll": {
  413. "related": ".xml"
  414. }
  415. },
  416. "runtime": {
  417. "lib/netstandard2.0/MathNet.Numerics.dll": {
  418. "related": ".xml"
  419. }
  420. }
  421. },
  422. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  423. "type": "package",
  424. "dependencies": {
  425. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  426. },
  427. "compile": {
  428. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  429. "related": ".xml"
  430. }
  431. },
  432. "runtime": {
  433. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  434. "related": ".xml"
  435. }
  436. },
  437. "frameworkReferences": [
  438. "Microsoft.AspNetCore.App"
  439. ]
  440. },
  441. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  442. "type": "package",
  443. "dependencies": {
  444. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  445. },
  446. "compile": {
  447. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  448. "related": ".xml"
  449. }
  450. },
  451. "runtime": {
  452. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  453. "related": ".xml"
  454. }
  455. },
  456. "frameworkReferences": [
  457. "Microsoft.AspNetCore.App"
  458. ]
  459. },
  460. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  461. "type": "package",
  462. "dependencies": {
  463. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  464. "System.Text.Encodings.Web": "4.5.0"
  465. },
  466. "compile": {
  467. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  473. "related": ".xml"
  474. }
  475. }
  476. },
  477. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.Extensions.Primitives": "5.0.0",
  481. "System.IO.Pipelines": "5.0.0"
  482. },
  483. "compile": {
  484. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  485. "related": ".xml"
  486. }
  487. },
  488. "runtime": {
  489. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  490. "related": ".xml"
  491. }
  492. }
  493. },
  494. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "Microsoft.CSharp": "4.7.0",
  498. "Newtonsoft.Json": "12.0.2"
  499. },
  500. "compile": {
  501. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  502. "related": ".xml"
  503. }
  504. },
  505. "runtime": {
  506. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  507. "related": ".xml"
  508. }
  509. }
  510. },
  511. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  512. "type": "package",
  513. "dependencies": {
  514. "Microsoft.AspNetCore.JsonPatch": "5.0.0",
  515. "Newtonsoft.Json": "12.0.2",
  516. "Newtonsoft.Json.Bson": "1.0.2"
  517. },
  518. "compile": {
  519. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  520. "related": ".xml"
  521. }
  522. },
  523. "runtime": {
  524. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  525. "related": ".xml"
  526. }
  527. },
  528. "frameworkReferences": [
  529. "Microsoft.AspNetCore.App"
  530. ]
  531. },
  532. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  533. "type": "package",
  534. "dependencies": {
  535. "Microsoft.Extensions.Logging.Console": "3.1.30",
  536. "Newtonsoft.Json": "13.0.1"
  537. },
  538. "compile": {
  539. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  540. },
  541. "runtime": {
  542. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  543. },
  544. "frameworkReferences": [
  545. "Microsoft.AspNetCore.App"
  546. ]
  547. },
  548. "Microsoft.CSharp/4.7.0": {
  549. "type": "package",
  550. "compile": {
  551. "ref/netcoreapp2.0/_._": {}
  552. },
  553. "runtime": {
  554. "lib/netcoreapp2.0/_._": {}
  555. }
  556. },
  557. "Microsoft.EntityFrameworkCore/5.0.4": {
  558. "type": "package",
  559. "dependencies": {
  560. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.4",
  561. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.4",
  562. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  563. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  564. "Microsoft.Extensions.Logging": "5.0.0",
  565. "System.Collections.Immutable": "5.0.0",
  566. "System.ComponentModel.Annotations": "5.0.0",
  567. "System.Diagnostics.DiagnosticSource": "5.0.1"
  568. },
  569. "compile": {
  570. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  571. "related": ".xml"
  572. }
  573. },
  574. "runtime": {
  575. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  576. "related": ".xml"
  577. }
  578. }
  579. },
  580. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  581. "type": "package",
  582. "compile": {
  583. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  584. "related": ".xml"
  585. }
  586. },
  587. "runtime": {
  588. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  589. "related": ".xml"
  590. }
  591. }
  592. },
  593. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  594. "type": "package",
  595. "compile": {
  596. "lib/netstandard2.0/_._": {}
  597. },
  598. "runtime": {
  599. "lib/netstandard2.0/_._": {}
  600. }
  601. },
  602. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  603. "type": "package",
  604. "dependencies": {
  605. "Humanizer.Core": "2.8.26",
  606. "Microsoft.CSharp": "4.7.0",
  607. "Microsoft.EntityFrameworkCore.Relational": "5.0.4"
  608. },
  609. "compile": {
  610. "lib/netstandard2.1/_._": {
  611. "related": ".xml"
  612. }
  613. },
  614. "runtime": {
  615. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {
  616. "related": ".xml"
  617. }
  618. },
  619. "build": {
  620. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {}
  621. }
  622. },
  623. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  624. "type": "package",
  625. "dependencies": {
  626. "Microsoft.EntityFrameworkCore": "5.0.4",
  627. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  628. },
  629. "compile": {
  630. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  631. "related": ".xml"
  632. }
  633. },
  634. "runtime": {
  635. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  636. "related": ".xml"
  637. }
  638. }
  639. },
  640. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  641. "type": "package",
  642. "build": {
  643. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  644. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  645. },
  646. "buildMultiTargeting": {
  647. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  648. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  649. }
  650. },
  651. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  652. "type": "package",
  653. "dependencies": {
  654. "Microsoft.Extensions.Primitives": "5.0.0"
  655. },
  656. "compile": {
  657. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  658. "related": ".xml"
  659. }
  660. },
  661. "runtime": {
  662. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  663. "related": ".xml"
  664. }
  665. }
  666. },
  667. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  668. "type": "package",
  669. "dependencies": {
  670. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  671. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  672. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  673. "Microsoft.Extensions.Options": "5.0.0",
  674. "Microsoft.Extensions.Primitives": "5.0.0"
  675. },
  676. "compile": {
  677. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  678. "related": ".xml"
  679. }
  680. },
  681. "runtime": {
  682. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  683. "related": ".xml"
  684. }
  685. }
  686. },
  687. "Microsoft.Extensions.Configuration/5.0.0": {
  688. "type": "package",
  689. "dependencies": {
  690. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  691. "Microsoft.Extensions.Primitives": "5.0.0"
  692. },
  693. "compile": {
  694. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  695. "related": ".xml"
  696. }
  697. },
  698. "runtime": {
  699. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  700. "related": ".xml"
  701. }
  702. }
  703. },
  704. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  705. "type": "package",
  706. "dependencies": {
  707. "Microsoft.Extensions.Primitives": "5.0.0"
  708. },
  709. "compile": {
  710. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  711. "related": ".xml"
  712. }
  713. },
  714. "runtime": {
  715. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  716. "related": ".xml"
  717. }
  718. }
  719. },
  720. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  721. "type": "package",
  722. "dependencies": {
  723. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  724. },
  725. "compile": {
  726. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  727. "related": ".xml"
  728. }
  729. },
  730. "runtime": {
  731. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  732. "related": ".xml"
  733. }
  734. }
  735. },
  736. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  737. "type": "package",
  738. "dependencies": {
  739. "Microsoft.Extensions.Configuration": "5.0.0",
  740. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  741. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  742. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  743. "Microsoft.Extensions.Primitives": "5.0.0"
  744. },
  745. "compile": {
  746. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  747. "related": ".xml"
  748. }
  749. },
  750. "runtime": {
  751. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  752. "related": ".xml"
  753. }
  754. }
  755. },
  756. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  757. "type": "package",
  758. "dependencies": {
  759. "Microsoft.Extensions.Configuration": "5.0.0",
  760. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  761. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  762. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  763. },
  764. "compile": {
  765. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  766. "related": ".xml"
  767. }
  768. },
  769. "runtime": {
  770. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  771. "related": ".xml"
  772. }
  773. }
  774. },
  775. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  776. "type": "package",
  777. "dependencies": {
  778. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  779. },
  780. "compile": {
  781. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  782. "related": ".xml"
  783. }
  784. },
  785. "runtime": {
  786. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  787. "related": ".xml"
  788. }
  789. }
  790. },
  791. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  792. "type": "package",
  793. "compile": {
  794. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  795. "related": ".xml"
  796. }
  797. },
  798. "runtime": {
  799. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  800. "related": ".xml"
  801. }
  802. }
  803. },
  804. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  805. "type": "package",
  806. "dependencies": {
  807. "Microsoft.Extensions.Primitives": "5.0.0"
  808. },
  809. "compile": {
  810. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  811. "related": ".xml"
  812. }
  813. },
  814. "runtime": {
  815. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  816. "related": ".xml"
  817. }
  818. }
  819. },
  820. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  821. "type": "package",
  822. "dependencies": {
  823. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  824. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  825. "Microsoft.Extensions.Primitives": "5.0.0"
  826. },
  827. "compile": {
  828. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  829. "related": ".xml"
  830. }
  831. },
  832. "runtime": {
  833. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  834. "related": ".xml"
  835. }
  836. }
  837. },
  838. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  839. "type": "package",
  840. "compile": {
  841. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  842. "related": ".xml"
  843. }
  844. },
  845. "runtime": {
  846. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  847. "related": ".xml"
  848. }
  849. }
  850. },
  851. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  855. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  856. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  857. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  858. },
  859. "compile": {
  860. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  861. "related": ".xml"
  862. }
  863. },
  864. "runtime": {
  865. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  866. "related": ".xml"
  867. }
  868. }
  869. },
  870. "Microsoft.Extensions.Http/5.0.0": {
  871. "type": "package",
  872. "dependencies": {
  873. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  874. "Microsoft.Extensions.Logging": "5.0.0",
  875. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  876. "Microsoft.Extensions.Options": "5.0.0"
  877. },
  878. "compile": {
  879. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  880. "related": ".xml"
  881. }
  882. },
  883. "runtime": {
  884. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  885. "related": ".xml"
  886. }
  887. }
  888. },
  889. "Microsoft.Extensions.Logging/5.0.0": {
  890. "type": "package",
  891. "dependencies": {
  892. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  893. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  894. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  895. "Microsoft.Extensions.Options": "5.0.0"
  896. },
  897. "compile": {
  898. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  899. "related": ".xml"
  900. }
  901. },
  902. "runtime": {
  903. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  904. "related": ".xml"
  905. }
  906. }
  907. },
  908. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  909. "type": "package",
  910. "compile": {
  911. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  912. "related": ".xml"
  913. }
  914. },
  915. "runtime": {
  916. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  917. "related": ".xml"
  918. }
  919. }
  920. },
  921. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  922. "type": "package",
  923. "dependencies": {
  924. "Microsoft.Extensions.Logging": "3.1.30",
  925. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  926. },
  927. "compile": {
  928. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  929. "related": ".xml"
  930. }
  931. },
  932. "runtime": {
  933. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  934. "related": ".xml"
  935. }
  936. }
  937. },
  938. "Microsoft.Extensions.Logging.Console/3.1.30": {
  939. "type": "package",
  940. "dependencies": {
  941. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  942. "Microsoft.Extensions.Logging": "3.1.30",
  943. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  944. },
  945. "compile": {
  946. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  947. "related": ".xml"
  948. }
  949. },
  950. "runtime": {
  951. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  952. "related": ".xml"
  953. }
  954. }
  955. },
  956. "Microsoft.Extensions.Options/5.0.0": {
  957. "type": "package",
  958. "dependencies": {
  959. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  960. "Microsoft.Extensions.Primitives": "5.0.0"
  961. },
  962. "compile": {
  963. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  964. "related": ".xml"
  965. }
  966. },
  967. "runtime": {
  968. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  969. "related": ".xml"
  970. }
  971. }
  972. },
  973. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  974. "type": "package",
  975. "dependencies": {
  976. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  977. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  978. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  979. "Microsoft.Extensions.Options": "3.1.30"
  980. },
  981. "compile": {
  982. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  983. "related": ".xml"
  984. }
  985. },
  986. "runtime": {
  987. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  988. "related": ".xml"
  989. }
  990. }
  991. },
  992. "Microsoft.Extensions.Primitives/5.0.0": {
  993. "type": "package",
  994. "compile": {
  995. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  996. "related": ".xml"
  997. }
  998. },
  999. "runtime": {
  1000. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1001. "related": ".xml"
  1002. }
  1003. }
  1004. },
  1005. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  1006. "type": "package",
  1007. "dependencies": {
  1008. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1009. },
  1010. "compile": {
  1011. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1012. "related": ".xml"
  1013. }
  1014. },
  1015. "runtime": {
  1016. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1017. "related": ".xml"
  1018. }
  1019. }
  1020. },
  1021. "Microsoft.IdentityModel.Logging/6.7.1": {
  1022. "type": "package",
  1023. "compile": {
  1024. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1025. "related": ".xml"
  1026. }
  1027. },
  1028. "runtime": {
  1029. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1030. "related": ".xml"
  1031. }
  1032. }
  1033. },
  1034. "Microsoft.IdentityModel.Protocols/6.7.1": {
  1035. "type": "package",
  1036. "dependencies": {
  1037. "Microsoft.IdentityModel.Logging": "6.7.1",
  1038. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1039. },
  1040. "compile": {
  1041. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1042. "related": ".xml"
  1043. }
  1044. },
  1045. "runtime": {
  1046. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1047. "related": ".xml"
  1048. }
  1049. }
  1050. },
  1051. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  1052. "type": "package",
  1053. "dependencies": {
  1054. "Microsoft.IdentityModel.Protocols": "6.7.1",
  1055. "System.IdentityModel.Tokens.Jwt": "6.7.1"
  1056. },
  1057. "compile": {
  1058. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1059. "related": ".xml"
  1060. }
  1061. },
  1062. "runtime": {
  1063. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1064. "related": ".xml"
  1065. }
  1066. }
  1067. },
  1068. "Microsoft.IdentityModel.Tokens/6.7.1": {
  1069. "type": "package",
  1070. "dependencies": {
  1071. "Microsoft.CSharp": "4.5.0",
  1072. "Microsoft.IdentityModel.Logging": "6.7.1",
  1073. "System.Security.Cryptography.Cng": "4.5.0"
  1074. },
  1075. "compile": {
  1076. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1077. "related": ".xml"
  1078. }
  1079. },
  1080. "runtime": {
  1081. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1082. "related": ".xml"
  1083. }
  1084. }
  1085. },
  1086. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  1087. "type": "package",
  1088. "compile": {
  1089. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1090. "related": ".xml"
  1091. }
  1092. },
  1093. "runtime": {
  1094. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1095. "related": ".xml"
  1096. }
  1097. }
  1098. },
  1099. "Microsoft.NETCore.Platforms/5.0.0": {
  1100. "type": "package",
  1101. "compile": {
  1102. "lib/netstandard1.0/_._": {}
  1103. },
  1104. "runtime": {
  1105. "lib/netstandard1.0/_._": {}
  1106. }
  1107. },
  1108. "Microsoft.NETCore.Targets/1.1.0": {
  1109. "type": "package",
  1110. "compile": {
  1111. "lib/netstandard1.0/_._": {}
  1112. },
  1113. "runtime": {
  1114. "lib/netstandard1.0/_._": {}
  1115. }
  1116. },
  1117. "Microsoft.OpenApi/1.2.3": {
  1118. "type": "package",
  1119. "compile": {
  1120. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1121. "related": ".pdb;.xml"
  1122. }
  1123. },
  1124. "runtime": {
  1125. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1126. "related": ".pdb;.xml"
  1127. }
  1128. }
  1129. },
  1130. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  1131. "type": "package",
  1132. "build": {
  1133. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1134. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1135. }
  1136. },
  1137. "Microsoft.Win32.SystemEvents/6.0.0": {
  1138. "type": "package",
  1139. "compile": {
  1140. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1141. "related": ".xml"
  1142. }
  1143. },
  1144. "runtime": {
  1145. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1146. "related": ".xml"
  1147. }
  1148. },
  1149. "build": {
  1150. "buildTransitive/netcoreapp3.1/_._": {}
  1151. },
  1152. "runtimeTargets": {
  1153. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1154. "assetType": "runtime",
  1155. "rid": "win"
  1156. }
  1157. }
  1158. },
  1159. "MySql.Data/8.0.23": {
  1160. "type": "package",
  1161. "dependencies": {
  1162. "BouncyCastle.NetCore": "1.8.5",
  1163. "Google.Protobuf": "3.11.4",
  1164. "K4os.Compression.LZ4": "1.1.11",
  1165. "K4os.Compression.LZ4.Streams": "1.1.11",
  1166. "K4os.Hash.xxHash": "1.0.6",
  1167. "SSH.NET": "2020.0.0-beta1",
  1168. "System.Buffers": "4.5.1",
  1169. "System.Configuration.ConfigurationManager": "4.4.1",
  1170. "System.Security.Permissions": "4.7.0",
  1171. "System.Text.Encoding.CodePages": "4.4.0"
  1172. },
  1173. "compile": {
  1174. "lib/net5.0/MySql.Data.dll": {
  1175. "related": ".xml"
  1176. },
  1177. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1178. "lib/net5.0/Zstandard.Net.dll": {}
  1179. },
  1180. "runtime": {
  1181. "lib/net5.0/MySql.Data.dll": {
  1182. "related": ".xml"
  1183. },
  1184. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1185. "lib/net5.0/Zstandard.Net.dll": {}
  1186. }
  1187. },
  1188. "MySqlConnector/1.1.0": {
  1189. "type": "package",
  1190. "compile": {
  1191. "lib/net5.0/MySqlConnector.dll": {
  1192. "related": ".xml"
  1193. }
  1194. },
  1195. "runtime": {
  1196. "lib/net5.0/MySqlConnector.dll": {
  1197. "related": ".xml"
  1198. }
  1199. }
  1200. },
  1201. "Newtonsoft.Json/13.0.1": {
  1202. "type": "package",
  1203. "compile": {
  1204. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1205. "related": ".xml"
  1206. }
  1207. },
  1208. "runtime": {
  1209. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1210. "related": ".xml"
  1211. }
  1212. }
  1213. },
  1214. "Newtonsoft.Json.Bson/1.0.2": {
  1215. "type": "package",
  1216. "dependencies": {
  1217. "Newtonsoft.Json": "12.0.1"
  1218. },
  1219. "compile": {
  1220. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1221. "related": ".pdb;.xml"
  1222. }
  1223. },
  1224. "runtime": {
  1225. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1226. "related": ".pdb;.xml"
  1227. }
  1228. }
  1229. },
  1230. "NPOI/2.6.2": {
  1231. "type": "package",
  1232. "dependencies": {
  1233. "BouncyCastle.Cryptography": "2.2.1",
  1234. "Enums.NET": "4.0.1",
  1235. "MathNet.Numerics.Signed": "4.15.0",
  1236. "Microsoft.IO.RecyclableMemoryStream": "2.3.2",
  1237. "SharpZipLib": "1.3.3",
  1238. "SixLabors.Fonts": "1.0.0",
  1239. "SixLabors.ImageSharp": "2.1.4",
  1240. "System.Configuration.ConfigurationManager": "6.0.0",
  1241. "System.Security.Cryptography.Xml": "6.0.1"
  1242. },
  1243. "compile": {
  1244. "lib/netstandard2.1/NPOI.Core.dll": {
  1245. "related": ".pdb;.xml"
  1246. },
  1247. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1248. "related": ".pdb;.xml"
  1249. },
  1250. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1251. "related": ".pdb;.xml"
  1252. },
  1253. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1254. "related": ".pdb;.xml"
  1255. }
  1256. },
  1257. "runtime": {
  1258. "lib/netstandard2.1/NPOI.Core.dll": {
  1259. "related": ".pdb;.xml"
  1260. },
  1261. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1262. "related": ".pdb;.xml"
  1263. },
  1264. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1265. "related": ".pdb;.xml"
  1266. },
  1267. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1268. "related": ".pdb;.xml"
  1269. }
  1270. }
  1271. },
  1272. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1276. "MySqlConnector": "1.1.0"
  1277. },
  1278. "compile": {
  1279. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1280. "related": ".xml"
  1281. }
  1282. },
  1283. "runtime": {
  1284. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1285. "related": ".xml"
  1286. }
  1287. }
  1288. },
  1289. "QRCoder/1.4.3": {
  1290. "type": "package",
  1291. "dependencies": {
  1292. "System.Drawing.Common": "5.0.3"
  1293. },
  1294. "compile": {
  1295. "lib/net5.0/QRCoder.dll": {}
  1296. },
  1297. "runtime": {
  1298. "lib/net5.0/QRCoder.dll": {}
  1299. }
  1300. },
  1301. "Quartz/3.3.3": {
  1302. "type": "package",
  1303. "dependencies": {
  1304. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1305. "System.Configuration.ConfigurationManager": "4.7.0",
  1306. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1307. },
  1308. "compile": {
  1309. "lib/netstandard2.0/Quartz.dll": {
  1310. "related": ".xml"
  1311. }
  1312. },
  1313. "runtime": {
  1314. "lib/netstandard2.0/Quartz.dll": {
  1315. "related": ".xml"
  1316. }
  1317. }
  1318. },
  1319. "RabbitMQ.Client/6.8.1": {
  1320. "type": "package",
  1321. "dependencies": {
  1322. "System.Memory": "4.5.5",
  1323. "System.Threading.Channels": "7.0.0"
  1324. },
  1325. "compile": {
  1326. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1327. "related": ".xml"
  1328. }
  1329. },
  1330. "runtime": {
  1331. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1332. "related": ".xml"
  1333. }
  1334. }
  1335. },
  1336. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1337. "type": "package",
  1338. "runtimeTargets": {
  1339. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1340. "assetType": "native",
  1341. "rid": "debian.8-x64"
  1342. }
  1343. }
  1344. },
  1345. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1346. "type": "package",
  1347. "runtimeTargets": {
  1348. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1349. "assetType": "native",
  1350. "rid": "fedora.23-x64"
  1351. }
  1352. }
  1353. },
  1354. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1355. "type": "package",
  1356. "runtimeTargets": {
  1357. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1358. "assetType": "native",
  1359. "rid": "fedora.24-x64"
  1360. }
  1361. }
  1362. },
  1363. "runtime.native.System/4.3.0": {
  1364. "type": "package",
  1365. "dependencies": {
  1366. "Microsoft.NETCore.Platforms": "1.1.0",
  1367. "Microsoft.NETCore.Targets": "1.1.0"
  1368. },
  1369. "compile": {
  1370. "lib/netstandard1.0/_._": {}
  1371. },
  1372. "runtime": {
  1373. "lib/netstandard1.0/_._": {}
  1374. }
  1375. },
  1376. "runtime.native.System.Net.Http/4.3.0": {
  1377. "type": "package",
  1378. "dependencies": {
  1379. "Microsoft.NETCore.Platforms": "1.1.0",
  1380. "Microsoft.NETCore.Targets": "1.1.0"
  1381. },
  1382. "compile": {
  1383. "lib/netstandard1.0/_._": {}
  1384. },
  1385. "runtime": {
  1386. "lib/netstandard1.0/_._": {}
  1387. }
  1388. },
  1389. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1390. "type": "package",
  1391. "dependencies": {
  1392. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1393. },
  1394. "compile": {
  1395. "lib/netstandard1.0/_._": {}
  1396. },
  1397. "runtime": {
  1398. "lib/netstandard1.0/_._": {}
  1399. }
  1400. },
  1401. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1402. "type": "package",
  1403. "dependencies": {
  1404. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1405. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1406. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1407. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1408. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1409. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1410. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1411. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1412. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1413. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1414. },
  1415. "compile": {
  1416. "lib/netstandard1.0/_._": {}
  1417. },
  1418. "runtime": {
  1419. "lib/netstandard1.0/_._": {}
  1420. }
  1421. },
  1422. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1423. "type": "package",
  1424. "runtimeTargets": {
  1425. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1426. "assetType": "native",
  1427. "rid": "opensuse.13.2-x64"
  1428. }
  1429. }
  1430. },
  1431. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1432. "type": "package",
  1433. "runtimeTargets": {
  1434. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1435. "assetType": "native",
  1436. "rid": "opensuse.42.1-x64"
  1437. }
  1438. }
  1439. },
  1440. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1441. "type": "package",
  1442. "runtimeTargets": {
  1443. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1444. "assetType": "native",
  1445. "rid": "osx.10.10-x64"
  1446. }
  1447. }
  1448. },
  1449. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1450. "type": "package",
  1451. "runtimeTargets": {
  1452. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1453. "assetType": "native",
  1454. "rid": "osx.10.10-x64"
  1455. }
  1456. }
  1457. },
  1458. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1459. "type": "package",
  1460. "runtimeTargets": {
  1461. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1462. "assetType": "native",
  1463. "rid": "rhel.7-x64"
  1464. }
  1465. }
  1466. },
  1467. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1468. "type": "package",
  1469. "runtimeTargets": {
  1470. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1471. "assetType": "native",
  1472. "rid": "ubuntu.14.04-x64"
  1473. }
  1474. }
  1475. },
  1476. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1477. "type": "package",
  1478. "runtimeTargets": {
  1479. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1480. "assetType": "native",
  1481. "rid": "ubuntu.16.04-x64"
  1482. }
  1483. }
  1484. },
  1485. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1486. "type": "package",
  1487. "runtimeTargets": {
  1488. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1489. "assetType": "native",
  1490. "rid": "ubuntu.16.10-x64"
  1491. }
  1492. }
  1493. },
  1494. "SharpZipLib/1.3.3": {
  1495. "type": "package",
  1496. "compile": {
  1497. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1498. "related": ".pdb;.xml"
  1499. }
  1500. },
  1501. "runtime": {
  1502. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1503. "related": ".pdb;.xml"
  1504. }
  1505. }
  1506. },
  1507. "SixLabors.Fonts/1.0.0": {
  1508. "type": "package",
  1509. "compile": {
  1510. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1511. "related": ".xml"
  1512. }
  1513. },
  1514. "runtime": {
  1515. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1516. "related": ".xml"
  1517. }
  1518. }
  1519. },
  1520. "SixLabors.ImageSharp/2.1.6": {
  1521. "type": "package",
  1522. "dependencies": {
  1523. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1524. "System.Text.Encoding.CodePages": "5.0.0"
  1525. },
  1526. "compile": {
  1527. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1528. "related": ".xml"
  1529. }
  1530. },
  1531. "runtime": {
  1532. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1533. "related": ".xml"
  1534. }
  1535. }
  1536. },
  1537. "SSH.NET/2020.0.0-beta1": {
  1538. "type": "package",
  1539. "dependencies": {
  1540. "SshNet.Security.Cryptography": "[1.3.0]"
  1541. },
  1542. "compile": {
  1543. "lib/netstandard2.0/Renci.SshNet.dll": {
  1544. "related": ".xml"
  1545. }
  1546. },
  1547. "runtime": {
  1548. "lib/netstandard2.0/Renci.SshNet.dll": {
  1549. "related": ".xml"
  1550. }
  1551. }
  1552. },
  1553. "SshNet.Security.Cryptography/1.3.0": {
  1554. "type": "package",
  1555. "compile": {
  1556. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1557. "related": ".xml"
  1558. }
  1559. },
  1560. "runtime": {
  1561. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1562. "related": ".xml"
  1563. }
  1564. }
  1565. },
  1566. "Swashbuckle.AspNetCore/5.6.3": {
  1567. "type": "package",
  1568. "dependencies": {
  1569. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1570. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1571. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1572. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1573. },
  1574. "build": {
  1575. "build/Swashbuckle.AspNetCore.props": {}
  1576. }
  1577. },
  1578. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1579. "type": "package",
  1580. "dependencies": {
  1581. "Microsoft.OpenApi": "1.2.3"
  1582. },
  1583. "compile": {
  1584. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1585. "related": ".pdb;.xml"
  1586. }
  1587. },
  1588. "runtime": {
  1589. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1590. "related": ".pdb;.xml"
  1591. }
  1592. },
  1593. "frameworkReferences": [
  1594. "Microsoft.AspNetCore.App"
  1595. ]
  1596. },
  1597. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1598. "type": "package",
  1599. "dependencies": {
  1600. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1601. },
  1602. "compile": {
  1603. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1604. "related": ".pdb;.xml"
  1605. }
  1606. },
  1607. "runtime": {
  1608. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1609. "related": ".pdb;.xml"
  1610. }
  1611. },
  1612. "frameworkReferences": [
  1613. "Microsoft.AspNetCore.App"
  1614. ]
  1615. },
  1616. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1617. "type": "package",
  1618. "compile": {
  1619. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1620. "related": ".pdb;.xml"
  1621. }
  1622. },
  1623. "runtime": {
  1624. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1625. "related": ".pdb;.xml"
  1626. }
  1627. },
  1628. "frameworkReferences": [
  1629. "Microsoft.AspNetCore.App"
  1630. ]
  1631. },
  1632. "System.Buffers/4.5.1": {
  1633. "type": "package",
  1634. "compile": {
  1635. "ref/netcoreapp2.0/_._": {}
  1636. },
  1637. "runtime": {
  1638. "lib/netcoreapp2.0/_._": {}
  1639. }
  1640. },
  1641. "System.Collections/4.3.0": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "Microsoft.NETCore.Platforms": "1.1.0",
  1645. "Microsoft.NETCore.Targets": "1.1.0",
  1646. "System.Runtime": "4.3.0"
  1647. },
  1648. "compile": {
  1649. "ref/netstandard1.3/_._": {
  1650. "related": ".xml"
  1651. }
  1652. }
  1653. },
  1654. "System.Collections.Concurrent/4.3.0": {
  1655. "type": "package",
  1656. "dependencies": {
  1657. "System.Collections": "4.3.0",
  1658. "System.Diagnostics.Debug": "4.3.0",
  1659. "System.Diagnostics.Tracing": "4.3.0",
  1660. "System.Globalization": "4.3.0",
  1661. "System.Reflection": "4.3.0",
  1662. "System.Resources.ResourceManager": "4.3.0",
  1663. "System.Runtime": "4.3.0",
  1664. "System.Runtime.Extensions": "4.3.0",
  1665. "System.Threading": "4.3.0",
  1666. "System.Threading.Tasks": "4.3.0"
  1667. },
  1668. "compile": {
  1669. "ref/netstandard1.3/_._": {
  1670. "related": ".xml"
  1671. }
  1672. },
  1673. "runtime": {
  1674. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1675. }
  1676. },
  1677. "System.Collections.Immutable/5.0.0": {
  1678. "type": "package",
  1679. "compile": {
  1680. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1681. "related": ".xml"
  1682. }
  1683. },
  1684. "runtime": {
  1685. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1686. "related": ".xml"
  1687. }
  1688. }
  1689. },
  1690. "System.ComponentModel.Annotations/5.0.0": {
  1691. "type": "package",
  1692. "compile": {
  1693. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1694. "related": ".xml"
  1695. }
  1696. },
  1697. "runtime": {
  1698. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1699. "related": ".xml"
  1700. }
  1701. }
  1702. },
  1703. "System.Configuration.ConfigurationManager/6.0.0": {
  1704. "type": "package",
  1705. "dependencies": {
  1706. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1707. "System.Security.Permissions": "6.0.0"
  1708. },
  1709. "compile": {
  1710. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1711. "related": ".xml"
  1712. }
  1713. },
  1714. "runtime": {
  1715. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1716. "related": ".xml"
  1717. }
  1718. },
  1719. "build": {
  1720. "buildTransitive/netcoreapp3.1/_._": {}
  1721. }
  1722. },
  1723. "System.Diagnostics.Debug/4.3.0": {
  1724. "type": "package",
  1725. "dependencies": {
  1726. "Microsoft.NETCore.Platforms": "1.1.0",
  1727. "Microsoft.NETCore.Targets": "1.1.0",
  1728. "System.Runtime": "4.3.0"
  1729. },
  1730. "compile": {
  1731. "ref/netstandard1.3/_._": {
  1732. "related": ".xml"
  1733. }
  1734. }
  1735. },
  1736. "System.Diagnostics.DiagnosticSource/5.0.1": {
  1737. "type": "package",
  1738. "compile": {
  1739. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1740. "related": ".xml"
  1741. }
  1742. },
  1743. "runtime": {
  1744. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1745. "related": ".xml"
  1746. }
  1747. }
  1748. },
  1749. "System.Diagnostics.Tracing/4.3.0": {
  1750. "type": "package",
  1751. "dependencies": {
  1752. "Microsoft.NETCore.Platforms": "1.1.0",
  1753. "Microsoft.NETCore.Targets": "1.1.0",
  1754. "System.Runtime": "4.3.0"
  1755. },
  1756. "compile": {
  1757. "ref/netstandard1.5/_._": {
  1758. "related": ".xml"
  1759. }
  1760. }
  1761. },
  1762. "System.Drawing.Common/6.0.0": {
  1763. "type": "package",
  1764. "dependencies": {
  1765. "Microsoft.Win32.SystemEvents": "6.0.0"
  1766. },
  1767. "compile": {
  1768. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1769. "related": ".xml"
  1770. }
  1771. },
  1772. "runtime": {
  1773. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1774. "related": ".xml"
  1775. }
  1776. },
  1777. "build": {
  1778. "buildTransitive/netcoreapp3.1/_._": {}
  1779. },
  1780. "runtimeTargets": {
  1781. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1782. "assetType": "runtime",
  1783. "rid": "unix"
  1784. },
  1785. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1786. "assetType": "runtime",
  1787. "rid": "win"
  1788. }
  1789. }
  1790. },
  1791. "System.Formats.Asn1/6.0.0": {
  1792. "type": "package",
  1793. "dependencies": {
  1794. "System.Buffers": "4.5.1",
  1795. "System.Memory": "4.5.4"
  1796. },
  1797. "compile": {
  1798. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  1799. "related": ".xml"
  1800. }
  1801. },
  1802. "runtime": {
  1803. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  1804. "related": ".xml"
  1805. }
  1806. },
  1807. "build": {
  1808. "buildTransitive/netcoreapp3.1/_._": {}
  1809. }
  1810. },
  1811. "System.Globalization/4.3.0": {
  1812. "type": "package",
  1813. "dependencies": {
  1814. "Microsoft.NETCore.Platforms": "1.1.0",
  1815. "Microsoft.NETCore.Targets": "1.1.0",
  1816. "System.Runtime": "4.3.0"
  1817. },
  1818. "compile": {
  1819. "ref/netstandard1.3/_._": {
  1820. "related": ".xml"
  1821. }
  1822. }
  1823. },
  1824. "System.Globalization.Calendars/4.3.0": {
  1825. "type": "package",
  1826. "dependencies": {
  1827. "Microsoft.NETCore.Platforms": "1.1.0",
  1828. "Microsoft.NETCore.Targets": "1.1.0",
  1829. "System.Globalization": "4.3.0",
  1830. "System.Runtime": "4.3.0"
  1831. },
  1832. "compile": {
  1833. "ref/netstandard1.3/_._": {
  1834. "related": ".xml"
  1835. }
  1836. }
  1837. },
  1838. "System.Globalization.Extensions/4.3.0": {
  1839. "type": "package",
  1840. "dependencies": {
  1841. "Microsoft.NETCore.Platforms": "1.1.0",
  1842. "System.Globalization": "4.3.0",
  1843. "System.Resources.ResourceManager": "4.3.0",
  1844. "System.Runtime": "4.3.0",
  1845. "System.Runtime.Extensions": "4.3.0",
  1846. "System.Runtime.InteropServices": "4.3.0"
  1847. },
  1848. "compile": {
  1849. "ref/netstandard1.3/_._": {
  1850. "related": ".xml"
  1851. }
  1852. },
  1853. "runtimeTargets": {
  1854. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1855. "assetType": "runtime",
  1856. "rid": "unix"
  1857. },
  1858. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1859. "assetType": "runtime",
  1860. "rid": "win"
  1861. }
  1862. }
  1863. },
  1864. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  1865. "type": "package",
  1866. "dependencies": {
  1867. "Microsoft.IdentityModel.JsonWebTokens": "6.7.1",
  1868. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1869. },
  1870. "compile": {
  1871. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1872. "related": ".xml"
  1873. }
  1874. },
  1875. "runtime": {
  1876. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1877. "related": ".xml"
  1878. }
  1879. }
  1880. },
  1881. "System.IO/4.3.0": {
  1882. "type": "package",
  1883. "dependencies": {
  1884. "Microsoft.NETCore.Platforms": "1.1.0",
  1885. "Microsoft.NETCore.Targets": "1.1.0",
  1886. "System.Runtime": "4.3.0",
  1887. "System.Text.Encoding": "4.3.0",
  1888. "System.Threading.Tasks": "4.3.0"
  1889. },
  1890. "compile": {
  1891. "ref/netstandard1.5/System.IO.dll": {
  1892. "related": ".xml"
  1893. }
  1894. }
  1895. },
  1896. "System.IO.FileSystem/4.3.0": {
  1897. "type": "package",
  1898. "dependencies": {
  1899. "Microsoft.NETCore.Platforms": "1.1.0",
  1900. "Microsoft.NETCore.Targets": "1.1.0",
  1901. "System.IO": "4.3.0",
  1902. "System.IO.FileSystem.Primitives": "4.3.0",
  1903. "System.Runtime": "4.3.0",
  1904. "System.Runtime.Handles": "4.3.0",
  1905. "System.Text.Encoding": "4.3.0",
  1906. "System.Threading.Tasks": "4.3.0"
  1907. },
  1908. "compile": {
  1909. "ref/netstandard1.3/_._": {
  1910. "related": ".xml"
  1911. }
  1912. }
  1913. },
  1914. "System.IO.FileSystem.Primitives/4.3.0": {
  1915. "type": "package",
  1916. "dependencies": {
  1917. "System.Runtime": "4.3.0"
  1918. },
  1919. "compile": {
  1920. "ref/netstandard1.3/_._": {
  1921. "related": ".xml"
  1922. }
  1923. },
  1924. "runtime": {
  1925. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1926. }
  1927. },
  1928. "System.IO.Pipelines/5.0.0": {
  1929. "type": "package",
  1930. "compile": {
  1931. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1932. "related": ".xml"
  1933. }
  1934. },
  1935. "runtime": {
  1936. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1937. "related": ".xml"
  1938. }
  1939. }
  1940. },
  1941. "System.Linq/4.3.0": {
  1942. "type": "package",
  1943. "dependencies": {
  1944. "System.Collections": "4.3.0",
  1945. "System.Diagnostics.Debug": "4.3.0",
  1946. "System.Resources.ResourceManager": "4.3.0",
  1947. "System.Runtime": "4.3.0",
  1948. "System.Runtime.Extensions": "4.3.0"
  1949. },
  1950. "compile": {
  1951. "ref/netstandard1.6/_._": {
  1952. "related": ".xml"
  1953. }
  1954. },
  1955. "runtime": {
  1956. "lib/netstandard1.6/System.Linq.dll": {}
  1957. }
  1958. },
  1959. "System.Memory/4.5.5": {
  1960. "type": "package",
  1961. "compile": {
  1962. "ref/netcoreapp2.1/_._": {}
  1963. },
  1964. "runtime": {
  1965. "lib/netcoreapp2.1/_._": {}
  1966. }
  1967. },
  1968. "System.Net.Http/4.3.2": {
  1969. "type": "package",
  1970. "dependencies": {
  1971. "Microsoft.NETCore.Platforms": "1.1.0",
  1972. "System.Collections": "4.3.0",
  1973. "System.Diagnostics.Debug": "4.3.0",
  1974. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1975. "System.Diagnostics.Tracing": "4.3.0",
  1976. "System.Globalization": "4.3.0",
  1977. "System.Globalization.Extensions": "4.3.0",
  1978. "System.IO": "4.3.0",
  1979. "System.IO.FileSystem": "4.3.0",
  1980. "System.Net.Primitives": "4.3.0",
  1981. "System.Resources.ResourceManager": "4.3.0",
  1982. "System.Runtime": "4.3.0",
  1983. "System.Runtime.Extensions": "4.3.0",
  1984. "System.Runtime.Handles": "4.3.0",
  1985. "System.Runtime.InteropServices": "4.3.0",
  1986. "System.Security.Cryptography.Algorithms": "4.3.0",
  1987. "System.Security.Cryptography.Encoding": "4.3.0",
  1988. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1989. "System.Security.Cryptography.Primitives": "4.3.0",
  1990. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1991. "System.Text.Encoding": "4.3.0",
  1992. "System.Threading": "4.3.0",
  1993. "System.Threading.Tasks": "4.3.0",
  1994. "runtime.native.System": "4.3.0",
  1995. "runtime.native.System.Net.Http": "4.3.0",
  1996. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1997. },
  1998. "compile": {
  1999. "ref/netstandard1.3/System.Net.Http.dll": {}
  2000. },
  2001. "runtimeTargets": {
  2002. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2003. "assetType": "runtime",
  2004. "rid": "unix"
  2005. },
  2006. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2007. "assetType": "runtime",
  2008. "rid": "win"
  2009. }
  2010. }
  2011. },
  2012. "System.Net.Primitives/4.3.0": {
  2013. "type": "package",
  2014. "dependencies": {
  2015. "Microsoft.NETCore.Platforms": "1.1.0",
  2016. "Microsoft.NETCore.Targets": "1.1.0",
  2017. "System.Runtime": "4.3.0",
  2018. "System.Runtime.Handles": "4.3.0"
  2019. },
  2020. "compile": {
  2021. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2022. "related": ".xml"
  2023. }
  2024. }
  2025. },
  2026. "System.Reflection/4.3.0": {
  2027. "type": "package",
  2028. "dependencies": {
  2029. "Microsoft.NETCore.Platforms": "1.1.0",
  2030. "Microsoft.NETCore.Targets": "1.1.0",
  2031. "System.IO": "4.3.0",
  2032. "System.Reflection.Primitives": "4.3.0",
  2033. "System.Runtime": "4.3.0"
  2034. },
  2035. "compile": {
  2036. "ref/netstandard1.5/_._": {
  2037. "related": ".xml"
  2038. }
  2039. }
  2040. },
  2041. "System.Reflection.Emit/4.7.0": {
  2042. "type": "package",
  2043. "compile": {
  2044. "ref/netcoreapp2.0/_._": {}
  2045. },
  2046. "runtime": {
  2047. "lib/netcoreapp2.0/_._": {}
  2048. }
  2049. },
  2050. "System.Reflection.Primitives/4.3.0": {
  2051. "type": "package",
  2052. "dependencies": {
  2053. "Microsoft.NETCore.Platforms": "1.1.0",
  2054. "Microsoft.NETCore.Targets": "1.1.0",
  2055. "System.Runtime": "4.3.0"
  2056. },
  2057. "compile": {
  2058. "ref/netstandard1.0/_._": {
  2059. "related": ".xml"
  2060. }
  2061. }
  2062. },
  2063. "System.Resources.ResourceManager/4.3.0": {
  2064. "type": "package",
  2065. "dependencies": {
  2066. "Microsoft.NETCore.Platforms": "1.1.0",
  2067. "Microsoft.NETCore.Targets": "1.1.0",
  2068. "System.Globalization": "4.3.0",
  2069. "System.Reflection": "4.3.0",
  2070. "System.Runtime": "4.3.0"
  2071. },
  2072. "compile": {
  2073. "ref/netstandard1.0/_._": {
  2074. "related": ".xml"
  2075. }
  2076. }
  2077. },
  2078. "System.Runtime/4.3.0": {
  2079. "type": "package",
  2080. "dependencies": {
  2081. "Microsoft.NETCore.Platforms": "1.1.0",
  2082. "Microsoft.NETCore.Targets": "1.1.0"
  2083. },
  2084. "compile": {
  2085. "ref/netstandard1.5/System.Runtime.dll": {
  2086. "related": ".xml"
  2087. }
  2088. }
  2089. },
  2090. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2091. "type": "package",
  2092. "compile": {
  2093. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2094. "related": ".xml"
  2095. }
  2096. },
  2097. "runtime": {
  2098. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2099. "related": ".xml"
  2100. }
  2101. }
  2102. },
  2103. "System.Runtime.Extensions/4.3.0": {
  2104. "type": "package",
  2105. "dependencies": {
  2106. "Microsoft.NETCore.Platforms": "1.1.0",
  2107. "Microsoft.NETCore.Targets": "1.1.0",
  2108. "System.Runtime": "4.3.0"
  2109. },
  2110. "compile": {
  2111. "ref/netstandard1.5/_._": {
  2112. "related": ".xml"
  2113. }
  2114. }
  2115. },
  2116. "System.Runtime.Handles/4.3.0": {
  2117. "type": "package",
  2118. "dependencies": {
  2119. "Microsoft.NETCore.Platforms": "1.1.0",
  2120. "Microsoft.NETCore.Targets": "1.1.0",
  2121. "System.Runtime": "4.3.0"
  2122. },
  2123. "compile": {
  2124. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2125. "related": ".xml"
  2126. }
  2127. }
  2128. },
  2129. "System.Runtime.InteropServices/4.3.0": {
  2130. "type": "package",
  2131. "dependencies": {
  2132. "Microsoft.NETCore.Platforms": "1.1.0",
  2133. "Microsoft.NETCore.Targets": "1.1.0",
  2134. "System.Reflection": "4.3.0",
  2135. "System.Reflection.Primitives": "4.3.0",
  2136. "System.Runtime": "4.3.0",
  2137. "System.Runtime.Handles": "4.3.0"
  2138. },
  2139. "compile": {
  2140. "ref/netcoreapp1.1/_._": {}
  2141. }
  2142. },
  2143. "System.Runtime.Numerics/4.3.0": {
  2144. "type": "package",
  2145. "dependencies": {
  2146. "System.Globalization": "4.3.0",
  2147. "System.Resources.ResourceManager": "4.3.0",
  2148. "System.Runtime": "4.3.0",
  2149. "System.Runtime.Extensions": "4.3.0"
  2150. },
  2151. "compile": {
  2152. "ref/netstandard1.1/_._": {
  2153. "related": ".xml"
  2154. }
  2155. },
  2156. "runtime": {
  2157. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2158. }
  2159. },
  2160. "System.Security.AccessControl/6.0.0": {
  2161. "type": "package",
  2162. "dependencies": {
  2163. "System.Security.Principal.Windows": "5.0.0"
  2164. },
  2165. "compile": {
  2166. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2167. "related": ".xml"
  2168. }
  2169. },
  2170. "runtime": {
  2171. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2172. "related": ".xml"
  2173. }
  2174. },
  2175. "build": {
  2176. "buildTransitive/netcoreapp3.1/_._": {}
  2177. },
  2178. "runtimeTargets": {
  2179. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  2180. "assetType": "runtime",
  2181. "rid": "win"
  2182. }
  2183. }
  2184. },
  2185. "System.Security.Cryptography.Algorithms/4.3.0": {
  2186. "type": "package",
  2187. "dependencies": {
  2188. "Microsoft.NETCore.Platforms": "1.1.0",
  2189. "System.Collections": "4.3.0",
  2190. "System.IO": "4.3.0",
  2191. "System.Resources.ResourceManager": "4.3.0",
  2192. "System.Runtime": "4.3.0",
  2193. "System.Runtime.Extensions": "4.3.0",
  2194. "System.Runtime.Handles": "4.3.0",
  2195. "System.Runtime.InteropServices": "4.3.0",
  2196. "System.Runtime.Numerics": "4.3.0",
  2197. "System.Security.Cryptography.Encoding": "4.3.0",
  2198. "System.Security.Cryptography.Primitives": "4.3.0",
  2199. "System.Text.Encoding": "4.3.0",
  2200. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2201. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2202. },
  2203. "compile": {
  2204. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2205. },
  2206. "runtimeTargets": {
  2207. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2208. "assetType": "runtime",
  2209. "rid": "osx"
  2210. },
  2211. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2212. "assetType": "runtime",
  2213. "rid": "unix"
  2214. },
  2215. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2216. "assetType": "runtime",
  2217. "rid": "win"
  2218. }
  2219. }
  2220. },
  2221. "System.Security.Cryptography.Cng/5.0.0": {
  2222. "type": "package",
  2223. "dependencies": {
  2224. "System.Formats.Asn1": "5.0.0"
  2225. },
  2226. "compile": {
  2227. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2228. "related": ".xml"
  2229. }
  2230. },
  2231. "runtime": {
  2232. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2233. "related": ".xml"
  2234. }
  2235. },
  2236. "runtimeTargets": {
  2237. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2238. "assetType": "runtime",
  2239. "rid": "win"
  2240. }
  2241. }
  2242. },
  2243. "System.Security.Cryptography.Csp/4.3.0": {
  2244. "type": "package",
  2245. "dependencies": {
  2246. "Microsoft.NETCore.Platforms": "1.1.0",
  2247. "System.IO": "4.3.0",
  2248. "System.Reflection": "4.3.0",
  2249. "System.Resources.ResourceManager": "4.3.0",
  2250. "System.Runtime": "4.3.0",
  2251. "System.Runtime.Extensions": "4.3.0",
  2252. "System.Runtime.Handles": "4.3.0",
  2253. "System.Runtime.InteropServices": "4.3.0",
  2254. "System.Security.Cryptography.Algorithms": "4.3.0",
  2255. "System.Security.Cryptography.Encoding": "4.3.0",
  2256. "System.Security.Cryptography.Primitives": "4.3.0",
  2257. "System.Text.Encoding": "4.3.0",
  2258. "System.Threading": "4.3.0"
  2259. },
  2260. "compile": {
  2261. "ref/netstandard1.3/_._": {}
  2262. },
  2263. "runtimeTargets": {
  2264. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2265. "assetType": "runtime",
  2266. "rid": "unix"
  2267. },
  2268. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2269. "assetType": "runtime",
  2270. "rid": "win"
  2271. }
  2272. }
  2273. },
  2274. "System.Security.Cryptography.Encoding/4.3.0": {
  2275. "type": "package",
  2276. "dependencies": {
  2277. "Microsoft.NETCore.Platforms": "1.1.0",
  2278. "System.Collections": "4.3.0",
  2279. "System.Collections.Concurrent": "4.3.0",
  2280. "System.Linq": "4.3.0",
  2281. "System.Resources.ResourceManager": "4.3.0",
  2282. "System.Runtime": "4.3.0",
  2283. "System.Runtime.Extensions": "4.3.0",
  2284. "System.Runtime.Handles": "4.3.0",
  2285. "System.Runtime.InteropServices": "4.3.0",
  2286. "System.Security.Cryptography.Primitives": "4.3.0",
  2287. "System.Text.Encoding": "4.3.0",
  2288. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2289. },
  2290. "compile": {
  2291. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2292. "related": ".xml"
  2293. }
  2294. },
  2295. "runtimeTargets": {
  2296. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2297. "assetType": "runtime",
  2298. "rid": "unix"
  2299. },
  2300. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2301. "assetType": "runtime",
  2302. "rid": "win"
  2303. }
  2304. }
  2305. },
  2306. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2307. "type": "package",
  2308. "dependencies": {
  2309. "System.Collections": "4.3.0",
  2310. "System.IO": "4.3.0",
  2311. "System.Resources.ResourceManager": "4.3.0",
  2312. "System.Runtime": "4.3.0",
  2313. "System.Runtime.Extensions": "4.3.0",
  2314. "System.Runtime.Handles": "4.3.0",
  2315. "System.Runtime.InteropServices": "4.3.0",
  2316. "System.Runtime.Numerics": "4.3.0",
  2317. "System.Security.Cryptography.Algorithms": "4.3.0",
  2318. "System.Security.Cryptography.Encoding": "4.3.0",
  2319. "System.Security.Cryptography.Primitives": "4.3.0",
  2320. "System.Text.Encoding": "4.3.0",
  2321. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2322. },
  2323. "compile": {
  2324. "ref/netstandard1.6/_._": {}
  2325. },
  2326. "runtime": {
  2327. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2328. },
  2329. "runtimeTargets": {
  2330. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2331. "assetType": "runtime",
  2332. "rid": "unix"
  2333. }
  2334. }
  2335. },
  2336. "System.Security.Cryptography.Pkcs/6.0.1": {
  2337. "type": "package",
  2338. "dependencies": {
  2339. "System.Formats.Asn1": "6.0.0",
  2340. "System.Security.Cryptography.Cng": "5.0.0"
  2341. },
  2342. "compile": {
  2343. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  2344. "related": ".xml"
  2345. }
  2346. },
  2347. "runtime": {
  2348. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  2349. "related": ".xml"
  2350. }
  2351. },
  2352. "build": {
  2353. "buildTransitive/netcoreapp3.1/_._": {}
  2354. },
  2355. "runtimeTargets": {
  2356. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  2357. "assetType": "runtime",
  2358. "rid": "win"
  2359. }
  2360. }
  2361. },
  2362. "System.Security.Cryptography.Primitives/4.3.0": {
  2363. "type": "package",
  2364. "dependencies": {
  2365. "System.Diagnostics.Debug": "4.3.0",
  2366. "System.Globalization": "4.3.0",
  2367. "System.IO": "4.3.0",
  2368. "System.Resources.ResourceManager": "4.3.0",
  2369. "System.Runtime": "4.3.0",
  2370. "System.Threading": "4.3.0",
  2371. "System.Threading.Tasks": "4.3.0"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2375. },
  2376. "runtime": {
  2377. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2378. }
  2379. },
  2380. "System.Security.Cryptography.ProtectedData/6.0.0": {
  2381. "type": "package",
  2382. "dependencies": {
  2383. "System.Memory": "4.5.4"
  2384. },
  2385. "compile": {
  2386. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2387. "related": ".xml"
  2388. }
  2389. },
  2390. "runtime": {
  2391. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2392. "related": ".xml"
  2393. }
  2394. },
  2395. "build": {
  2396. "buildTransitive/netcoreapp3.1/_._": {}
  2397. },
  2398. "runtimeTargets": {
  2399. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2400. "assetType": "runtime",
  2401. "rid": "win"
  2402. }
  2403. }
  2404. },
  2405. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2406. "type": "package",
  2407. "dependencies": {
  2408. "Microsoft.NETCore.Platforms": "1.1.0",
  2409. "System.Collections": "4.3.0",
  2410. "System.Diagnostics.Debug": "4.3.0",
  2411. "System.Globalization": "4.3.0",
  2412. "System.Globalization.Calendars": "4.3.0",
  2413. "System.IO": "4.3.0",
  2414. "System.IO.FileSystem": "4.3.0",
  2415. "System.IO.FileSystem.Primitives": "4.3.0",
  2416. "System.Resources.ResourceManager": "4.3.0",
  2417. "System.Runtime": "4.3.0",
  2418. "System.Runtime.Extensions": "4.3.0",
  2419. "System.Runtime.Handles": "4.3.0",
  2420. "System.Runtime.InteropServices": "4.3.0",
  2421. "System.Runtime.Numerics": "4.3.0",
  2422. "System.Security.Cryptography.Algorithms": "4.3.0",
  2423. "System.Security.Cryptography.Cng": "4.3.0",
  2424. "System.Security.Cryptography.Csp": "4.3.0",
  2425. "System.Security.Cryptography.Encoding": "4.3.0",
  2426. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2427. "System.Security.Cryptography.Primitives": "4.3.0",
  2428. "System.Text.Encoding": "4.3.0",
  2429. "System.Threading": "4.3.0",
  2430. "runtime.native.System": "4.3.0",
  2431. "runtime.native.System.Net.Http": "4.3.0",
  2432. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2433. },
  2434. "compile": {
  2435. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2436. "related": ".xml"
  2437. }
  2438. },
  2439. "runtimeTargets": {
  2440. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2441. "assetType": "runtime",
  2442. "rid": "unix"
  2443. },
  2444. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2445. "assetType": "runtime",
  2446. "rid": "win"
  2447. }
  2448. }
  2449. },
  2450. "System.Security.Cryptography.Xml/6.0.1": {
  2451. "type": "package",
  2452. "dependencies": {
  2453. "System.Memory": "4.5.4",
  2454. "System.Security.AccessControl": "6.0.0",
  2455. "System.Security.Cryptography.Pkcs": "6.0.1"
  2456. },
  2457. "compile": {
  2458. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  2459. "related": ".xml"
  2460. }
  2461. },
  2462. "runtime": {
  2463. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  2464. "related": ".xml"
  2465. }
  2466. },
  2467. "build": {
  2468. "buildTransitive/netcoreapp3.1/_._": {}
  2469. }
  2470. },
  2471. "System.Security.Permissions/6.0.0": {
  2472. "type": "package",
  2473. "dependencies": {
  2474. "System.Security.AccessControl": "6.0.0",
  2475. "System.Windows.Extensions": "6.0.0"
  2476. },
  2477. "compile": {
  2478. "lib/net5.0/System.Security.Permissions.dll": {
  2479. "related": ".xml"
  2480. }
  2481. },
  2482. "runtime": {
  2483. "lib/net5.0/System.Security.Permissions.dll": {
  2484. "related": ".xml"
  2485. }
  2486. },
  2487. "build": {
  2488. "buildTransitive/netcoreapp3.1/_._": {}
  2489. }
  2490. },
  2491. "System.Security.Principal.Windows/5.0.0": {
  2492. "type": "package",
  2493. "compile": {
  2494. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2495. "related": ".xml"
  2496. }
  2497. },
  2498. "runtime": {
  2499. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2500. "related": ".xml"
  2501. }
  2502. },
  2503. "runtimeTargets": {
  2504. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2505. "assetType": "runtime",
  2506. "rid": "unix"
  2507. },
  2508. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2509. "assetType": "runtime",
  2510. "rid": "win"
  2511. }
  2512. }
  2513. },
  2514. "System.Text.Encoding/4.3.0": {
  2515. "type": "package",
  2516. "dependencies": {
  2517. "Microsoft.NETCore.Platforms": "1.1.0",
  2518. "Microsoft.NETCore.Targets": "1.1.0",
  2519. "System.Runtime": "4.3.0"
  2520. },
  2521. "compile": {
  2522. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2523. "related": ".xml"
  2524. }
  2525. }
  2526. },
  2527. "System.Text.Encoding.CodePages/5.0.0": {
  2528. "type": "package",
  2529. "dependencies": {
  2530. "Microsoft.NETCore.Platforms": "5.0.0"
  2531. },
  2532. "compile": {
  2533. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2534. "related": ".xml"
  2535. }
  2536. },
  2537. "runtime": {
  2538. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2539. "related": ".xml"
  2540. }
  2541. },
  2542. "runtimeTargets": {
  2543. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2544. "assetType": "runtime",
  2545. "rid": "win"
  2546. }
  2547. }
  2548. },
  2549. "System.Text.Encodings.Web/4.5.0": {
  2550. "type": "package",
  2551. "compile": {
  2552. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2553. "related": ".xml"
  2554. }
  2555. },
  2556. "runtime": {
  2557. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2558. "related": ".xml"
  2559. }
  2560. }
  2561. },
  2562. "System.Threading/4.3.0": {
  2563. "type": "package",
  2564. "dependencies": {
  2565. "System.Runtime": "4.3.0",
  2566. "System.Threading.Tasks": "4.3.0"
  2567. },
  2568. "compile": {
  2569. "ref/netstandard1.3/_._": {
  2570. "related": ".xml"
  2571. }
  2572. },
  2573. "runtime": {
  2574. "lib/netstandard1.3/System.Threading.dll": {}
  2575. }
  2576. },
  2577. "System.Threading.Channels/7.0.0": {
  2578. "type": "package",
  2579. "compile": {
  2580. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2581. "related": ".xml"
  2582. }
  2583. },
  2584. "runtime": {
  2585. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2586. "related": ".xml"
  2587. }
  2588. },
  2589. "build": {
  2590. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2591. }
  2592. },
  2593. "System.Threading.Tasks/4.3.0": {
  2594. "type": "package",
  2595. "dependencies": {
  2596. "Microsoft.NETCore.Platforms": "1.1.0",
  2597. "Microsoft.NETCore.Targets": "1.1.0",
  2598. "System.Runtime": "4.3.0"
  2599. },
  2600. "compile": {
  2601. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2602. "related": ".xml"
  2603. }
  2604. }
  2605. },
  2606. "System.Windows.Extensions/6.0.0": {
  2607. "type": "package",
  2608. "dependencies": {
  2609. "System.Drawing.Common": "6.0.0"
  2610. },
  2611. "compile": {
  2612. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2613. "related": ".xml"
  2614. }
  2615. },
  2616. "runtime": {
  2617. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2618. "related": ".xml"
  2619. }
  2620. },
  2621. "runtimeTargets": {
  2622. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2623. "assetType": "runtime",
  2624. "rid": "win"
  2625. }
  2626. }
  2627. },
  2628. "UAParser/3.1.47": {
  2629. "type": "package",
  2630. "compile": {
  2631. "lib/netcoreapp2.0/UAParser.dll": {
  2632. "related": ".xml"
  2633. }
  2634. },
  2635. "runtime": {
  2636. "lib/netcoreapp2.0/UAParser.dll": {
  2637. "related": ".xml"
  2638. }
  2639. }
  2640. },
  2641. "ZXing.Net/0.16.9": {
  2642. "type": "package",
  2643. "compile": {
  2644. "lib/net5.0/zxing.dll": {
  2645. "related": ".XML"
  2646. }
  2647. },
  2648. "runtime": {
  2649. "lib/net5.0/zxing.dll": {
  2650. "related": ".XML"
  2651. }
  2652. }
  2653. },
  2654. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  2655. "type": "package",
  2656. "dependencies": {
  2657. "SixLabors.ImageSharp": "2.1.3",
  2658. "ZXing.Net": "0.16.9"
  2659. },
  2660. "compile": {
  2661. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2662. "related": ".pdb;.xml"
  2663. }
  2664. },
  2665. "runtime": {
  2666. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2667. "related": ".pdb;.xml"
  2668. }
  2669. }
  2670. },
  2671. "Ropin.Core.Common/1.0.0": {
  2672. "type": "project",
  2673. "framework": ".NETCoreApp,Version=v5.0",
  2674. "dependencies": {
  2675. "Coravel": "4.2.1",
  2676. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  2677. "Newtonsoft.Json": "13.0.1",
  2678. "QRCoder": "1.4.3",
  2679. "SixLabors.ImageSharp": "2.1.6",
  2680. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  2681. },
  2682. "compile": {
  2683. "bin/placeholder/Ropin.Core.Common.dll": {}
  2684. },
  2685. "runtime": {
  2686. "bin/placeholder/Ropin.Core.Common.dll": {}
  2687. }
  2688. },
  2689. "Ropin.Core.Extensions/1.0.0": {
  2690. "type": "project",
  2691. "framework": ".NETCoreApp,Version=v5.0",
  2692. "dependencies": {
  2693. "Ropin.Core.Common": "1.0.0",
  2694. "Ropin.Inspection.Common": "1.0.0",
  2695. "Ropin.Inspection.Service": "1.0.0",
  2696. "Ropin.Inspection.Tasks": "1.0.0"
  2697. },
  2698. "compile": {
  2699. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  2700. },
  2701. "runtime": {
  2702. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  2703. }
  2704. },
  2705. "Ropin.Inspection.Common/1.0.0": {
  2706. "type": "project",
  2707. "framework": ".NETCoreApp,Version=v5.0",
  2708. "dependencies": {
  2709. "FluentEmail.Smtp": "3.0.2",
  2710. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  2711. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  2712. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  2713. "JavaScriptEngineSwitcher.Core": "3.21.0",
  2714. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2715. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  2716. "Microsoft.Extensions.Configuration": "5.0.0",
  2717. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2718. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  2719. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  2720. "Microsoft.Extensions.Http": "5.0.0",
  2721. "Newtonsoft.Json": "13.0.1",
  2722. "RabbitMQ.Client": "6.8.1",
  2723. "log4net": "2.0.17"
  2724. },
  2725. "compile": {
  2726. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  2727. },
  2728. "runtime": {
  2729. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  2730. }
  2731. },
  2732. "Ropin.Inspection.Model/1.0.0": {
  2733. "type": "project",
  2734. "framework": ".NETCoreApp,Version=v5.0",
  2735. "dependencies": {
  2736. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  2737. "Microsoft.EntityFrameworkCore": "5.0.0",
  2738. "MySql.Data": "8.0.23",
  2739. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  2740. "Ropin.Inspection.Common": "1.0.0"
  2741. },
  2742. "compile": {
  2743. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  2744. },
  2745. "runtime": {
  2746. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  2747. }
  2748. },
  2749. "Ropin.Inspection.Repository/1.0.0": {
  2750. "type": "project",
  2751. "framework": ".NETCoreApp,Version=v5.0",
  2752. "dependencies": {
  2753. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  2754. "Microsoft.EntityFrameworkCore": "5.0.0",
  2755. "Ropin.Inspection.Model": "1.0.0"
  2756. },
  2757. "compile": {
  2758. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  2759. },
  2760. "runtime": {
  2761. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  2762. }
  2763. },
  2764. "Ropin.Inspection.Service/1.0.0": {
  2765. "type": "project",
  2766. "framework": ".NETCoreApp,Version=v5.0",
  2767. "dependencies": {
  2768. "AutoMapper": "10.1.1",
  2769. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2770. "Newtonsoft.Json": "13.0.1",
  2771. "Ropin.Core.Common": "1.0.0",
  2772. "Ropin.Inspection.Common": "1.0.0",
  2773. "Ropin.Inspection.Model": "1.0.0",
  2774. "Ropin.Inspection.Repository": "1.0.0",
  2775. "log4net": "2.0.17"
  2776. },
  2777. "compile": {
  2778. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  2779. },
  2780. "runtime": {
  2781. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  2782. }
  2783. },
  2784. "Ropin.Inspection.Tasks/1.0.0": {
  2785. "type": "project",
  2786. "framework": ".NETCoreApp,Version=v5.0",
  2787. "dependencies": {
  2788. "Quartz": "3.3.3",
  2789. "Ropin.Inspection.Common": "1.0.0",
  2790. "Ropin.Inspection.Model": "1.0.0",
  2791. "Ropin.Inspection.Service": "1.0.0"
  2792. },
  2793. "compile": {
  2794. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  2795. },
  2796. "runtime": {
  2797. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  2798. }
  2799. }
  2800. }
  2801. },
  2802. "libraries": {
  2803. "AdvancedStringBuilder/0.1.0": {
  2804. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  2805. "type": "package",
  2806. "path": "advancedstringbuilder/0.1.0",
  2807. "files": [
  2808. ".nupkg.metadata",
  2809. ".signature.p7s",
  2810. "advancedstringbuilder.0.1.0.nupkg.sha512",
  2811. "advancedstringbuilder.nuspec",
  2812. "lib/net40-client/AdvancedStringBuilder.dll",
  2813. "lib/net40-client/AdvancedStringBuilder.xml",
  2814. "lib/net45/AdvancedStringBuilder.dll",
  2815. "lib/net45/AdvancedStringBuilder.xml",
  2816. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  2817. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  2818. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  2819. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  2820. ]
  2821. },
  2822. "Autofac/6.0.0": {
  2823. "sha512": "tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==",
  2824. "type": "package",
  2825. "path": "autofac/6.0.0",
  2826. "files": [
  2827. ".nupkg.metadata",
  2828. ".signature.p7s",
  2829. "autofac.6.0.0.nupkg.sha512",
  2830. "autofac.nuspec",
  2831. "icon.png",
  2832. "lib/netstandard2.0/Autofac.dll",
  2833. "lib/netstandard2.0/Autofac.pdb",
  2834. "lib/netstandard2.0/Autofac.xml",
  2835. "lib/netstandard2.1/Autofac.dll",
  2836. "lib/netstandard2.1/Autofac.pdb",
  2837. "lib/netstandard2.1/Autofac.xml"
  2838. ]
  2839. },
  2840. "Autofac.Extensions.DependencyInjection/7.1.0": {
  2841. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  2842. "type": "package",
  2843. "path": "autofac.extensions.dependencyinjection/7.1.0",
  2844. "files": [
  2845. ".nupkg.metadata",
  2846. ".signature.p7s",
  2847. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  2848. "autofac.extensions.dependencyinjection.nuspec",
  2849. "icon.png",
  2850. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  2851. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  2852. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  2853. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  2854. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  2855. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  2856. ]
  2857. },
  2858. "AutoMapper/10.1.1": {
  2859. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  2860. "type": "package",
  2861. "path": "automapper/10.1.1",
  2862. "files": [
  2863. ".nupkg.metadata",
  2864. ".signature.p7s",
  2865. "automapper.10.1.1.nupkg.sha512",
  2866. "automapper.nuspec",
  2867. "icon.png",
  2868. "lib/net461/AutoMapper.dll",
  2869. "lib/net461/AutoMapper.xml",
  2870. "lib/netstandard2.0/AutoMapper.dll",
  2871. "lib/netstandard2.0/AutoMapper.xml"
  2872. ]
  2873. },
  2874. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  2875. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  2876. "type": "package",
  2877. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  2878. "files": [
  2879. ".nupkg.metadata",
  2880. ".signature.p7s",
  2881. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  2882. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2883. "icon.png",
  2884. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2885. ]
  2886. },
  2887. "BouncyCastle.Cryptography/2.2.1": {
  2888. "sha512": "A6Zr52zVqJKt18ZBsTnX0qhG0kwIQftVAjLmszmkiR/trSp8H+xj1gUOzk7XHwaKgyREMSV1v9XaKrBUeIOdvQ==",
  2889. "type": "package",
  2890. "path": "bouncycastle.cryptography/2.2.1",
  2891. "files": [
  2892. ".nupkg.metadata",
  2893. ".signature.p7s",
  2894. "LICENSE.md",
  2895. "README.md",
  2896. "bouncycastle.cryptography.2.2.1.nupkg.sha512",
  2897. "bouncycastle.cryptography.nuspec",
  2898. "lib/net461/BouncyCastle.Cryptography.dll",
  2899. "lib/net461/BouncyCastle.Cryptography.xml",
  2900. "lib/net6.0/BouncyCastle.Cryptography.dll",
  2901. "lib/net6.0/BouncyCastle.Cryptography.xml",
  2902. "lib/netstandard2.0/BouncyCastle.Cryptography.dll",
  2903. "lib/netstandard2.0/BouncyCastle.Cryptography.xml",
  2904. "packageIcon.png"
  2905. ]
  2906. },
  2907. "BouncyCastle.NetCore/1.8.5": {
  2908. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  2909. "type": "package",
  2910. "path": "bouncycastle.netcore/1.8.5",
  2911. "files": [
  2912. ".nupkg.metadata",
  2913. ".signature.p7s",
  2914. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  2915. "bouncycastle.netcore.nuspec",
  2916. "lib/Mono/BouncyCastle.Crypto.dll",
  2917. "lib/Mono/BouncyCastle.Crypto.xml",
  2918. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2919. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2920. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2921. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2922. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2923. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2924. "lib/net20/BouncyCastle.Crypto.dll",
  2925. "lib/net20/BouncyCastle.Crypto.xml",
  2926. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2927. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2928. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2929. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2930. ]
  2931. },
  2932. "Coravel/4.2.1": {
  2933. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  2934. "type": "package",
  2935. "path": "coravel/4.2.1",
  2936. "files": [
  2937. ".nupkg.metadata",
  2938. ".signature.p7s",
  2939. "coravel.4.2.1.nupkg.sha512",
  2940. "coravel.nuspec",
  2941. "lib/netstandard2.0/Coravel.dll",
  2942. "lib/netstandard2.0/Coravel.xml",
  2943. "logo.png",
  2944. "readme.md"
  2945. ]
  2946. },
  2947. "Enums.NET/4.0.1": {
  2948. "sha512": "OUGCd5L8zHZ61GAf436G0gf/H6yrSUkEpV5vm2CbCUuz9Rx7iLFLP5iHSSfmOtqNpuyo4vYte0CvYEmPZXRmRQ==",
  2949. "type": "package",
  2950. "path": "enums.net/4.0.1",
  2951. "files": [
  2952. ".nupkg.metadata",
  2953. ".signature.p7s",
  2954. "enums.net.4.0.1.nupkg.sha512",
  2955. "enums.net.nuspec",
  2956. "lib/net45/Enums.NET.dll",
  2957. "lib/net45/Enums.NET.pdb",
  2958. "lib/net45/Enums.NET.xml",
  2959. "lib/netcoreapp3.0/Enums.NET.dll",
  2960. "lib/netcoreapp3.0/Enums.NET.pdb",
  2961. "lib/netcoreapp3.0/Enums.NET.xml",
  2962. "lib/netstandard1.0/Enums.NET.dll",
  2963. "lib/netstandard1.0/Enums.NET.pdb",
  2964. "lib/netstandard1.0/Enums.NET.xml",
  2965. "lib/netstandard1.1/Enums.NET.dll",
  2966. "lib/netstandard1.1/Enums.NET.pdb",
  2967. "lib/netstandard1.1/Enums.NET.xml",
  2968. "lib/netstandard1.3/Enums.NET.dll",
  2969. "lib/netstandard1.3/Enums.NET.pdb",
  2970. "lib/netstandard1.3/Enums.NET.xml",
  2971. "lib/netstandard2.0/Enums.NET.dll",
  2972. "lib/netstandard2.0/Enums.NET.pdb",
  2973. "lib/netstandard2.0/Enums.NET.xml",
  2974. "lib/netstandard2.1/Enums.NET.dll",
  2975. "lib/netstandard2.1/Enums.NET.pdb",
  2976. "lib/netstandard2.1/Enums.NET.xml"
  2977. ]
  2978. },
  2979. "FluentEmail.Core/3.0.2": {
  2980. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  2981. "type": "package",
  2982. "path": "fluentemail.core/3.0.2",
  2983. "files": [
  2984. ".nupkg.metadata",
  2985. ".signature.p7s",
  2986. "fluentemail.core.3.0.2.nupkg.sha512",
  2987. "fluentemail.core.nuspec",
  2988. "fluentemail_logo_64x64.png",
  2989. "lib/netstandard2.0/FluentEmail.Core.dll"
  2990. ]
  2991. },
  2992. "FluentEmail.Smtp/3.0.2": {
  2993. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  2994. "type": "package",
  2995. "path": "fluentemail.smtp/3.0.2",
  2996. "files": [
  2997. ".nupkg.metadata",
  2998. ".signature.p7s",
  2999. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3000. "fluentemail.smtp.nuspec",
  3001. "fluentemail_logo_64x64.png",
  3002. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3003. ]
  3004. },
  3005. "Google.Protobuf/3.11.4": {
  3006. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3007. "type": "package",
  3008. "path": "google.protobuf/3.11.4",
  3009. "files": [
  3010. ".nupkg.metadata",
  3011. ".signature.p7s",
  3012. "google.protobuf.3.11.4.nupkg.sha512",
  3013. "google.protobuf.nuspec",
  3014. "lib/net45/Google.Protobuf.dll",
  3015. "lib/net45/Google.Protobuf.pdb",
  3016. "lib/net45/Google.Protobuf.xml",
  3017. "lib/netstandard1.0/Google.Protobuf.dll",
  3018. "lib/netstandard1.0/Google.Protobuf.pdb",
  3019. "lib/netstandard1.0/Google.Protobuf.xml",
  3020. "lib/netstandard2.0/Google.Protobuf.dll",
  3021. "lib/netstandard2.0/Google.Protobuf.pdb",
  3022. "lib/netstandard2.0/Google.Protobuf.xml"
  3023. ]
  3024. },
  3025. "Humanizer.Core/2.8.26": {
  3026. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  3027. "type": "package",
  3028. "path": "humanizer.core/2.8.26",
  3029. "files": [
  3030. ".nupkg.metadata",
  3031. ".signature.p7s",
  3032. "humanizer.core.2.8.26.nupkg.sha512",
  3033. "humanizer.core.nuspec",
  3034. "lib/netstandard1.0/Humanizer.dll",
  3035. "lib/netstandard1.0/Humanizer.xml",
  3036. "lib/netstandard2.0/Humanizer.dll",
  3037. "lib/netstandard2.0/Humanizer.xml",
  3038. "logo.png"
  3039. ]
  3040. },
  3041. "InfluxData.Net/8.0.1": {
  3042. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3043. "type": "package",
  3044. "path": "influxdata.net/8.0.1",
  3045. "files": [
  3046. ".nupkg.metadata",
  3047. ".signature.p7s",
  3048. "influxdata.net.8.0.1.nupkg.sha512",
  3049. "influxdata.net.nuspec",
  3050. "lib/net461/InfluxData.Net.Common.dll",
  3051. "lib/net461/InfluxData.Net.Common.dll.config",
  3052. "lib/net461/InfluxData.Net.Common.pdb",
  3053. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3054. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3055. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3056. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3057. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3058. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3059. "lib/net461/InfluxData.Net.dll",
  3060. "lib/net461/InfluxData.Net.dll.config",
  3061. "lib/net461/InfluxData.Net.pdb",
  3062. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3063. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3064. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3065. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3066. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3067. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3068. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3069. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3070. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3071. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3072. "lib/netstandard2.0/InfluxData.Net.dll",
  3073. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3074. "lib/netstandard2.0/InfluxData.Net.pdb"
  3075. ]
  3076. },
  3077. "IP2Region.Ex/1.2.0": {
  3078. "sha512": "B8TxhuAw72cPwjgf8pqDf62l1TJL0jXw4J13fXHg4Igq1OwT7SRotQX6gN6puyIgHVYLtKxnmhFf60oUITxmxA==",
  3079. "type": "package",
  3080. "path": "ip2region.ex/1.2.0",
  3081. "files": [
  3082. ".nupkg.metadata",
  3083. ".signature.p7s",
  3084. "ip2region.ex.1.2.0.nupkg.sha512",
  3085. "ip2region.ex.nuspec",
  3086. "lib/netstandard2.0/IP2Region.Ex.dll"
  3087. ]
  3088. },
  3089. "IPTools.China/1.6.0": {
  3090. "sha512": "12VnC92ffiKlLRwr5Ay3uFvZMCB9SDNn77sVlNycQu1OJAunnuCNBOVZTkg9D2UL2cc+iMwra6if9viXhrrt7w==",
  3091. "type": "package",
  3092. "path": "iptools.china/1.6.0",
  3093. "files": [
  3094. ".nupkg.metadata",
  3095. ".signature.p7s",
  3096. "iptools.china.1.6.0.nupkg.sha512",
  3097. "iptools.china.nuspec",
  3098. "lib/net45/IPTools.China.dll",
  3099. "lib/net451/IPTools.China.dll",
  3100. "lib/net452/IPTools.China.dll",
  3101. "lib/net461/IPTools.China.dll",
  3102. "lib/net5.0/IPTools.China.dll",
  3103. "lib/netcoreapp3.1/IPTools.China.dll"
  3104. ]
  3105. },
  3106. "IPTools.Core/1.6.0": {
  3107. "sha512": "qO+EY5vEwLKtOkQD1aMweM9pIVSFLwTi/Z2ZnX08qBXI4yPdRuguJJvzT2YVk2Addv999A+bWifIS8ahiwJcTg==",
  3108. "type": "package",
  3109. "path": "iptools.core/1.6.0",
  3110. "files": [
  3111. ".nupkg.metadata",
  3112. ".signature.p7s",
  3113. "iptools.core.1.6.0.nupkg.sha512",
  3114. "iptools.core.nuspec",
  3115. "lib/net45/IPTools.Core.dll",
  3116. "lib/net451/IPTools.Core.dll",
  3117. "lib/net452/IPTools.Core.dll",
  3118. "lib/net461/IPTools.Core.dll",
  3119. "lib/net5.0/IPTools.Core.dll",
  3120. "lib/netcoreapp3.1/IPTools.Core.dll"
  3121. ]
  3122. },
  3123. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3124. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3125. "type": "package",
  3126. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3127. "files": [
  3128. ".nupkg.metadata",
  3129. ".signature.p7s",
  3130. "LICENSE.txt",
  3131. "advanced-string-builder-license.txt",
  3132. "chakra-samples-license.txt",
  3133. "icon.png",
  3134. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3135. "javascriptengineswitcher.chakracore.nuspec",
  3136. "jsrt-dotnet-license.txt",
  3137. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3138. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3139. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3140. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3141. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3142. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3143. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3144. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3145. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3146. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3147. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3148. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3149. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3150. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3151. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3152. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3153. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3154. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3155. "polyfills-for-old-dot-net-license.txt",
  3156. "readme.txt"
  3157. ]
  3158. },
  3159. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3160. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3161. "type": "package",
  3162. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3163. "files": [
  3164. ".nupkg.metadata",
  3165. ".signature.p7s",
  3166. "LICENSE.txt",
  3167. "chakra-core-license.txt",
  3168. "icon.png",
  3169. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3170. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3171. "readme.txt",
  3172. "runtimes/linux-x64/native/libChakraCore.so"
  3173. ]
  3174. },
  3175. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3176. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3177. "type": "package",
  3178. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3179. "hasTools": true,
  3180. "files": [
  3181. ".nupkg.metadata",
  3182. ".signature.p7s",
  3183. "LICENSE.txt",
  3184. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3185. "chakra-core-license.txt",
  3186. "icon.png",
  3187. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3188. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3189. "readme.txt",
  3190. "runtimes/win-x64/native/ChakraCore.dll",
  3191. "tools/Install.ps1",
  3192. "tools/Uninstall.ps1"
  3193. ]
  3194. },
  3195. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3196. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3197. "type": "package",
  3198. "path": "javascriptengineswitcher.core/3.21.0",
  3199. "files": [
  3200. ".nupkg.metadata",
  3201. ".signature.p7s",
  3202. "LICENSE.txt",
  3203. "advanced-string-builder-license.txt",
  3204. "icon.png",
  3205. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3206. "javascriptengineswitcher.core.nuspec",
  3207. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3208. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3209. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3210. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3211. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3212. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3213. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3214. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3215. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3216. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3217. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3218. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3219. "readme.txt"
  3220. ]
  3221. },
  3222. "K4os.Compression.LZ4/1.1.11": {
  3223. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3224. "type": "package",
  3225. "path": "k4os.compression.lz4/1.1.11",
  3226. "files": [
  3227. ".nupkg.metadata",
  3228. ".signature.p7s",
  3229. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3230. "k4os.compression.lz4.nuspec",
  3231. "lib/net45/K4os.Compression.LZ4.dll",
  3232. "lib/net45/K4os.Compression.LZ4.xml",
  3233. "lib/net46/K4os.Compression.LZ4.dll",
  3234. "lib/net46/K4os.Compression.LZ4.xml",
  3235. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3236. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3237. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3238. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3239. ]
  3240. },
  3241. "K4os.Compression.LZ4.Streams/1.1.11": {
  3242. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3243. "type": "package",
  3244. "path": "k4os.compression.lz4.streams/1.1.11",
  3245. "files": [
  3246. ".nupkg.metadata",
  3247. ".signature.p7s",
  3248. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3249. "k4os.compression.lz4.streams.nuspec",
  3250. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3251. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3252. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3253. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3254. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3255. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3256. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3257. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3258. ]
  3259. },
  3260. "K4os.Hash.xxHash/1.0.6": {
  3261. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3262. "type": "package",
  3263. "path": "k4os.hash.xxhash/1.0.6",
  3264. "files": [
  3265. ".nupkg.metadata",
  3266. ".signature.p7s",
  3267. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3268. "k4os.hash.xxhash.nuspec",
  3269. "lib/net45/K4os.Hash.xxHash.dll",
  3270. "lib/net45/K4os.Hash.xxHash.xml",
  3271. "lib/net46/K4os.Hash.xxHash.dll",
  3272. "lib/net46/K4os.Hash.xxHash.xml",
  3273. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3274. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3275. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3276. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3277. ]
  3278. },
  3279. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3280. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3281. "type": "package",
  3282. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3283. "files": [
  3284. ".nupkg.metadata",
  3285. ".signature.p7s",
  3286. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3287. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3288. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3289. "linqkit.microsoft.entityframeworkcore.nuspec"
  3290. ]
  3291. },
  3292. "log4net/2.0.17": {
  3293. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3294. "type": "package",
  3295. "path": "log4net/2.0.17",
  3296. "files": [
  3297. ".nupkg.metadata",
  3298. ".signature.p7s",
  3299. "lib/net20/log4net.dll",
  3300. "lib/net20/log4net.xml",
  3301. "lib/net35/log4net.dll",
  3302. "lib/net35/log4net.xml",
  3303. "lib/net40-client/log4net.dll",
  3304. "lib/net40-client/log4net.xml",
  3305. "lib/net40/log4net.dll",
  3306. "lib/net40/log4net.xml",
  3307. "lib/net45/log4net.dll",
  3308. "lib/net45/log4net.xml",
  3309. "lib/netstandard1.3/log4net.dll",
  3310. "lib/netstandard1.3/log4net.xml",
  3311. "lib/netstandard2.0/log4net.dll",
  3312. "lib/netstandard2.0/log4net.xml",
  3313. "log4net.2.0.17.nupkg.sha512",
  3314. "log4net.nuspec",
  3315. "package-icon.png"
  3316. ]
  3317. },
  3318. "MathNet.Numerics.Signed/4.15.0": {
  3319. "sha512": "LFjukMRatkg9dgRM7U/gM4uKgaWAX7E0lt3fsVDTPdtBIVuh7uPlksDie290br1/tv1a4Ar/Bz9ywCPSL8PhHg==",
  3320. "type": "package",
  3321. "path": "mathnet.numerics.signed/4.15.0",
  3322. "files": [
  3323. ".nupkg.metadata",
  3324. ".signature.p7s",
  3325. "icon.png",
  3326. "lib/net40/MathNet.Numerics.dll",
  3327. "lib/net40/MathNet.Numerics.xml",
  3328. "lib/net461/MathNet.Numerics.dll",
  3329. "lib/net461/MathNet.Numerics.xml",
  3330. "lib/netstandard1.3/MathNet.Numerics.dll",
  3331. "lib/netstandard1.3/MathNet.Numerics.xml",
  3332. "lib/netstandard2.0/MathNet.Numerics.dll",
  3333. "lib/netstandard2.0/MathNet.Numerics.xml",
  3334. "mathnet.numerics.signed.4.15.0.nupkg.sha512",
  3335. "mathnet.numerics.signed.nuspec"
  3336. ]
  3337. },
  3338. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  3339. "sha512": "26WlfJsOB4QP3VsEVu5GGDSGm5wu6ikQqRUOaZ3BUmyGcMWsD28xFxPxFw4OszYgKpj54QYlyec19KcrEGkqDw==",
  3340. "type": "package",
  3341. "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.0",
  3342. "files": [
  3343. ".nupkg.metadata",
  3344. ".signature.p7s",
  3345. "Icon.png",
  3346. "THIRD-PARTY-NOTICES.TXT",
  3347. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  3348. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  3349. "microsoft.aspnetcore.authentication.jwtbearer.5.0.0.nupkg.sha512",
  3350. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  3351. ]
  3352. },
  3353. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  3354. "sha512": "YzUMJYSVWEEQmHpOhEzOcZ2/ltQ/uP1s8DHK8oaobgsjKUdIeRvEwtVQ5D6zO0vdlj4j9Mw0JD1FrZPGI07fHw==",
  3355. "type": "package",
  3356. "path": "microsoft.aspnetcore.authentication.openidconnect/5.0.0",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "Icon.png",
  3361. "THIRD-PARTY-NOTICES.TXT",
  3362. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll",
  3363. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml",
  3364. "microsoft.aspnetcore.authentication.openidconnect.5.0.0.nupkg.sha512",
  3365. "microsoft.aspnetcore.authentication.openidconnect.nuspec"
  3366. ]
  3367. },
  3368. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3369. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3370. "type": "package",
  3371. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3372. "files": [
  3373. ".nupkg.metadata",
  3374. ".signature.p7s",
  3375. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3376. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3377. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3378. "microsoft.aspnetcore.http.abstractions.nuspec"
  3379. ]
  3380. },
  3381. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3382. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3383. "type": "package",
  3384. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3385. "files": [
  3386. ".nupkg.metadata",
  3387. ".signature.p7s",
  3388. "Icon.png",
  3389. "THIRD-PARTY-NOTICES.TXT",
  3390. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3391. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3392. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3393. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3394. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3395. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3396. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3397. "microsoft.aspnetcore.http.features.nuspec"
  3398. ]
  3399. },
  3400. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  3401. "sha512": "oy/fvnBHpofNPskGcCrzZv1AhY36YHV0lyWy9NC5ye5eHvEJeJsSKjn2fNk/j1lXOuF13H9qrvZrA9zNkymy5Q==",
  3402. "type": "package",
  3403. "path": "microsoft.aspnetcore.jsonpatch/5.0.0",
  3404. "files": [
  3405. ".nupkg.metadata",
  3406. ".signature.p7s",
  3407. "Icon.png",
  3408. "THIRD-PARTY-NOTICES.TXT",
  3409. "lib/net461/Microsoft.AspNetCore.JsonPatch.dll",
  3410. "lib/net461/Microsoft.AspNetCore.JsonPatch.xml",
  3411. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  3412. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  3413. "microsoft.aspnetcore.jsonpatch.5.0.0.nupkg.sha512",
  3414. "microsoft.aspnetcore.jsonpatch.nuspec"
  3415. ]
  3416. },
  3417. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  3418. "sha512": "EnGI7CGWaijTuvUxY0lncAp/q/R7HZJCm8NwqiUHxDjrEWYdC/5oOHafVgNjVpk2zLsDesyaGnJundLnw5KNVA==",
  3419. "type": "package",
  3420. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/5.0.0",
  3421. "files": [
  3422. ".nupkg.metadata",
  3423. ".signature.p7s",
  3424. "Icon.png",
  3425. "THIRD-PARTY-NOTICES.TXT",
  3426. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  3427. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  3428. "microsoft.aspnetcore.mvc.newtonsoftjson.5.0.0.nupkg.sha512",
  3429. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  3430. ]
  3431. },
  3432. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3433. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3434. "type": "package",
  3435. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3436. "files": [
  3437. ".nupkg.metadata",
  3438. ".signature.p7s",
  3439. "Icon.png",
  3440. "THIRD-PARTY-NOTICES.TXT",
  3441. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3442. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3443. "microsoft.aspnetcore.nodeservices.nuspec"
  3444. ]
  3445. },
  3446. "Microsoft.CSharp/4.7.0": {
  3447. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3448. "type": "package",
  3449. "path": "microsoft.csharp/4.7.0",
  3450. "files": [
  3451. ".nupkg.metadata",
  3452. ".signature.p7s",
  3453. "LICENSE.TXT",
  3454. "THIRD-PARTY-NOTICES.TXT",
  3455. "lib/MonoAndroid10/_._",
  3456. "lib/MonoTouch10/_._",
  3457. "lib/net45/_._",
  3458. "lib/netcore50/Microsoft.CSharp.dll",
  3459. "lib/netcoreapp2.0/_._",
  3460. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3461. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3462. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3463. "lib/portable-net45+win8+wp8+wpa81/_._",
  3464. "lib/uap10.0.16299/_._",
  3465. "lib/win8/_._",
  3466. "lib/wp80/_._",
  3467. "lib/wpa81/_._",
  3468. "lib/xamarinios10/_._",
  3469. "lib/xamarinmac20/_._",
  3470. "lib/xamarintvos10/_._",
  3471. "lib/xamarinwatchos10/_._",
  3472. "microsoft.csharp.4.7.0.nupkg.sha512",
  3473. "microsoft.csharp.nuspec",
  3474. "ref/MonoAndroid10/_._",
  3475. "ref/MonoTouch10/_._",
  3476. "ref/net45/_._",
  3477. "ref/netcore50/Microsoft.CSharp.dll",
  3478. "ref/netcore50/Microsoft.CSharp.xml",
  3479. "ref/netcore50/de/Microsoft.CSharp.xml",
  3480. "ref/netcore50/es/Microsoft.CSharp.xml",
  3481. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3482. "ref/netcore50/it/Microsoft.CSharp.xml",
  3483. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3484. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3485. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3486. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3487. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3488. "ref/netcoreapp2.0/_._",
  3489. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3490. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3491. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3492. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3493. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3494. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3495. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3496. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3497. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3498. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3499. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3500. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3501. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3502. "ref/portable-net45+win8+wp8+wpa81/_._",
  3503. "ref/uap10.0.16299/_._",
  3504. "ref/win8/_._",
  3505. "ref/wp80/_._",
  3506. "ref/wpa81/_._",
  3507. "ref/xamarinios10/_._",
  3508. "ref/xamarinmac20/_._",
  3509. "ref/xamarintvos10/_._",
  3510. "ref/xamarinwatchos10/_._",
  3511. "useSharedDesignerContext.txt",
  3512. "version.txt"
  3513. ]
  3514. },
  3515. "Microsoft.EntityFrameworkCore/5.0.4": {
  3516. "sha512": "upRpXluUeONMYO+O3RU8G+ZZcrnDrnNVWg4eJmSfertTdw7Hc5tgIeg/O8+oBKqf+OvBrQKW0U3PI9yoTsuPYg==",
  3517. "type": "package",
  3518. "path": "microsoft.entityframeworkcore/5.0.4",
  3519. "files": [
  3520. ".nupkg.metadata",
  3521. ".signature.p7s",
  3522. "Icon.png",
  3523. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3524. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3525. "microsoft.entityframeworkcore.5.0.4.nupkg.sha512",
  3526. "microsoft.entityframeworkcore.nuspec"
  3527. ]
  3528. },
  3529. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  3530. "sha512": "4y+y28SHjniLIqj7M7YNRO8khBnCBtkM6TJG8oX0wyEZuLum+3e9vqqna1naaV6Hi4BhXBHcD/sjhIfW1u0ZfQ==",
  3531. "type": "package",
  3532. "path": "microsoft.entityframeworkcore.abstractions/5.0.4",
  3533. "files": [
  3534. ".nupkg.metadata",
  3535. ".signature.p7s",
  3536. "Icon.png",
  3537. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3538. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3539. "microsoft.entityframeworkcore.abstractions.5.0.4.nupkg.sha512",
  3540. "microsoft.entityframeworkcore.abstractions.nuspec"
  3541. ]
  3542. },
  3543. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  3544. "sha512": "z8OMwlXcUZJCArcDdhR0NRkmS0UyNg08l1LXPZCgYqjBeW8RvNXshH3H5ru/7IOVpyOfKrG5Q3nsgdD18OFG/g==",
  3545. "type": "package",
  3546. "path": "microsoft.entityframeworkcore.analyzers/5.0.4",
  3547. "files": [
  3548. ".nupkg.metadata",
  3549. ".signature.p7s",
  3550. "Icon.png",
  3551. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3552. "lib/netstandard2.0/_._",
  3553. "microsoft.entityframeworkcore.analyzers.5.0.4.nupkg.sha512",
  3554. "microsoft.entityframeworkcore.analyzers.nuspec"
  3555. ]
  3556. },
  3557. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  3558. "sha512": "LqyE5MX0IUFjsXu3tNIMpTtC4poY7XQogpGdATjK949tCKopxyJuzTZtgsgdc20LGFWQM0UwwyyfUNjs5kKvsw==",
  3559. "type": "package",
  3560. "path": "microsoft.entityframeworkcore.design/5.0.4",
  3561. "files": [
  3562. ".nupkg.metadata",
  3563. ".signature.p7s",
  3564. "Icon.png",
  3565. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props",
  3566. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll",
  3567. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml",
  3568. "microsoft.entityframeworkcore.design.5.0.4.nupkg.sha512",
  3569. "microsoft.entityframeworkcore.design.nuspec"
  3570. ]
  3571. },
  3572. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  3573. "sha512": "9Qa6SqX+hJZogo99bICsS6kgQ1C5RtEjPrsvQxjInVdY9QSWsXWIYfem0rv3wi+htwkJuMHVHGSaqG1oeAwe+w==",
  3574. "type": "package",
  3575. "path": "microsoft.entityframeworkcore.relational/5.0.4",
  3576. "files": [
  3577. ".nupkg.metadata",
  3578. ".signature.p7s",
  3579. "Icon.png",
  3580. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3581. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3582. "microsoft.entityframeworkcore.relational.5.0.4.nupkg.sha512",
  3583. "microsoft.entityframeworkcore.relational.nuspec"
  3584. ]
  3585. },
  3586. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3587. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3588. "type": "package",
  3589. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3590. "hasTools": true,
  3591. "files": [
  3592. ".nupkg.metadata",
  3593. ".signature.p7s",
  3594. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3595. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3596. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3597. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3598. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3599. "microsoft.extensions.apidescription.server.nuspec",
  3600. "tools/Newtonsoft.Json.dll",
  3601. "tools/dotnet-getdocument.deps.json",
  3602. "tools/dotnet-getdocument.dll",
  3603. "tools/dotnet-getdocument.runtimeconfig.json",
  3604. "tools/net461-x86/GetDocument.Insider.exe",
  3605. "tools/net461-x86/GetDocument.Insider.exe.config",
  3606. "tools/net461/GetDocument.Insider.exe",
  3607. "tools/net461/GetDocument.Insider.exe.config",
  3608. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3609. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3610. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3611. ]
  3612. },
  3613. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3614. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3615. "type": "package",
  3616. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3617. "files": [
  3618. ".nupkg.metadata",
  3619. ".signature.p7s",
  3620. "Icon.png",
  3621. "LICENSE.TXT",
  3622. "THIRD-PARTY-NOTICES.TXT",
  3623. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3624. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3625. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3626. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3627. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3628. "microsoft.extensions.caching.abstractions.nuspec",
  3629. "useSharedDesignerContext.txt",
  3630. "version.txt"
  3631. ]
  3632. },
  3633. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3634. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3635. "type": "package",
  3636. "path": "microsoft.extensions.caching.memory/5.0.0",
  3637. "files": [
  3638. ".nupkg.metadata",
  3639. ".signature.p7s",
  3640. "Icon.png",
  3641. "LICENSE.TXT",
  3642. "THIRD-PARTY-NOTICES.TXT",
  3643. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3644. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3645. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3646. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3647. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3648. "microsoft.extensions.caching.memory.nuspec",
  3649. "useSharedDesignerContext.txt",
  3650. "version.txt"
  3651. ]
  3652. },
  3653. "Microsoft.Extensions.Configuration/5.0.0": {
  3654. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3655. "type": "package",
  3656. "path": "microsoft.extensions.configuration/5.0.0",
  3657. "files": [
  3658. ".nupkg.metadata",
  3659. ".signature.p7s",
  3660. "Icon.png",
  3661. "LICENSE.TXT",
  3662. "THIRD-PARTY-NOTICES.TXT",
  3663. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3664. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3665. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3666. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3667. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3668. "microsoft.extensions.configuration.nuspec",
  3669. "useSharedDesignerContext.txt",
  3670. "version.txt"
  3671. ]
  3672. },
  3673. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3674. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3675. "type": "package",
  3676. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3677. "files": [
  3678. ".nupkg.metadata",
  3679. ".signature.p7s",
  3680. "Icon.png",
  3681. "LICENSE.TXT",
  3682. "THIRD-PARTY-NOTICES.TXT",
  3683. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3684. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3685. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3686. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3687. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3688. "microsoft.extensions.configuration.abstractions.nuspec",
  3689. "useSharedDesignerContext.txt",
  3690. "version.txt"
  3691. ]
  3692. },
  3693. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3694. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3695. "type": "package",
  3696. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3697. "files": [
  3698. ".nupkg.metadata",
  3699. ".signature.p7s",
  3700. "Icon.png",
  3701. "LICENSE.TXT",
  3702. "THIRD-PARTY-NOTICES.TXT",
  3703. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3704. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3705. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3706. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3707. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3708. "microsoft.extensions.configuration.binder.nuspec",
  3709. "useSharedDesignerContext.txt",
  3710. "version.txt"
  3711. ]
  3712. },
  3713. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3714. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3715. "type": "package",
  3716. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3717. "files": [
  3718. ".nupkg.metadata",
  3719. ".signature.p7s",
  3720. "Icon.png",
  3721. "LICENSE.TXT",
  3722. "THIRD-PARTY-NOTICES.TXT",
  3723. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3724. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3725. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3726. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3727. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3728. "microsoft.extensions.configuration.fileextensions.nuspec",
  3729. "useSharedDesignerContext.txt",
  3730. "version.txt"
  3731. ]
  3732. },
  3733. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3734. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3735. "type": "package",
  3736. "path": "microsoft.extensions.configuration.json/5.0.0",
  3737. "files": [
  3738. ".nupkg.metadata",
  3739. ".signature.p7s",
  3740. "Icon.png",
  3741. "LICENSE.TXT",
  3742. "THIRD-PARTY-NOTICES.TXT",
  3743. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3744. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3745. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3746. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3747. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3748. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3749. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3750. "microsoft.extensions.configuration.json.nuspec",
  3751. "useSharedDesignerContext.txt",
  3752. "version.txt"
  3753. ]
  3754. },
  3755. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  3756. "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==",
  3757. "type": "package",
  3758. "path": "microsoft.extensions.dependencyinjection/5.0.1",
  3759. "files": [
  3760. ".nupkg.metadata",
  3761. ".signature.p7s",
  3762. "Icon.png",
  3763. "LICENSE.TXT",
  3764. "Microsoft.Extensions.DependencyInjection.5.0.1.nupkg.sha512",
  3765. "Microsoft.Extensions.DependencyInjection.nuspec",
  3766. "THIRD-PARTY-NOTICES.TXT",
  3767. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3768. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3769. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3770. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3771. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3772. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3773. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3774. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3775. "useSharedDesignerContext.txt",
  3776. "version.txt"
  3777. ]
  3778. },
  3779. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3780. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3781. "type": "package",
  3782. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3783. "files": [
  3784. ".nupkg.metadata",
  3785. ".signature.p7s",
  3786. "Icon.png",
  3787. "LICENSE.TXT",
  3788. "THIRD-PARTY-NOTICES.TXT",
  3789. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3790. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3791. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3792. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3793. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3794. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3795. "useSharedDesignerContext.txt",
  3796. "version.txt"
  3797. ]
  3798. },
  3799. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3800. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3801. "type": "package",
  3802. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "Icon.png",
  3807. "LICENSE.TXT",
  3808. "THIRD-PARTY-NOTICES.TXT",
  3809. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3810. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3811. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3812. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3813. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3814. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3815. "useSharedDesignerContext.txt",
  3816. "version.txt"
  3817. ]
  3818. },
  3819. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3820. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3821. "type": "package",
  3822. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3823. "files": [
  3824. ".nupkg.metadata",
  3825. ".signature.p7s",
  3826. "Icon.png",
  3827. "LICENSE.TXT",
  3828. "THIRD-PARTY-NOTICES.TXT",
  3829. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3830. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3831. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3832. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3833. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3834. "microsoft.extensions.fileproviders.physical.nuspec",
  3835. "useSharedDesignerContext.txt",
  3836. "version.txt"
  3837. ]
  3838. },
  3839. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3840. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3841. "type": "package",
  3842. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3843. "files": [
  3844. ".nupkg.metadata",
  3845. ".signature.p7s",
  3846. "Icon.png",
  3847. "LICENSE.TXT",
  3848. "THIRD-PARTY-NOTICES.TXT",
  3849. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3850. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3851. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3852. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3853. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3854. "microsoft.extensions.filesystemglobbing.nuspec",
  3855. "useSharedDesignerContext.txt",
  3856. "version.txt"
  3857. ]
  3858. },
  3859. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  3860. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  3861. "type": "package",
  3862. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  3863. "files": [
  3864. ".nupkg.metadata",
  3865. ".signature.p7s",
  3866. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3867. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3868. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3869. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3870. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  3871. "microsoft.extensions.hosting.abstractions.nuspec",
  3872. "packageIcon.png"
  3873. ]
  3874. },
  3875. "Microsoft.Extensions.Http/5.0.0": {
  3876. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  3877. "type": "package",
  3878. "path": "microsoft.extensions.http/5.0.0",
  3879. "files": [
  3880. ".nupkg.metadata",
  3881. ".signature.p7s",
  3882. "Icon.png",
  3883. "LICENSE.TXT",
  3884. "THIRD-PARTY-NOTICES.TXT",
  3885. "lib/net461/Microsoft.Extensions.Http.dll",
  3886. "lib/net461/Microsoft.Extensions.Http.xml",
  3887. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  3888. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  3889. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  3890. "microsoft.extensions.http.nuspec",
  3891. "useSharedDesignerContext.txt",
  3892. "version.txt"
  3893. ]
  3894. },
  3895. "Microsoft.Extensions.Logging/5.0.0": {
  3896. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3897. "type": "package",
  3898. "path": "microsoft.extensions.logging/5.0.0",
  3899. "files": [
  3900. ".nupkg.metadata",
  3901. ".signature.p7s",
  3902. "Icon.png",
  3903. "LICENSE.TXT",
  3904. "THIRD-PARTY-NOTICES.TXT",
  3905. "lib/net461/Microsoft.Extensions.Logging.dll",
  3906. "lib/net461/Microsoft.Extensions.Logging.xml",
  3907. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3908. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3909. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3910. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3911. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3912. "microsoft.extensions.logging.nuspec",
  3913. "useSharedDesignerContext.txt",
  3914. "version.txt"
  3915. ]
  3916. },
  3917. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3918. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3919. "type": "package",
  3920. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  3921. "files": [
  3922. ".nupkg.metadata",
  3923. ".signature.p7s",
  3924. "Icon.png",
  3925. "LICENSE.TXT",
  3926. "THIRD-PARTY-NOTICES.TXT",
  3927. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3928. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3929. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3930. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3931. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  3932. "microsoft.extensions.logging.abstractions.nuspec",
  3933. "useSharedDesignerContext.txt",
  3934. "version.txt"
  3935. ]
  3936. },
  3937. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  3938. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  3939. "type": "package",
  3940. "path": "microsoft.extensions.logging.configuration/3.1.30",
  3941. "files": [
  3942. ".nupkg.metadata",
  3943. ".signature.p7s",
  3944. "Icon.png",
  3945. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  3946. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  3947. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3948. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3949. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  3950. "microsoft.extensions.logging.configuration.nuspec"
  3951. ]
  3952. },
  3953. "Microsoft.Extensions.Logging.Console/3.1.30": {
  3954. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  3955. "type": "package",
  3956. "path": "microsoft.extensions.logging.console/3.1.30",
  3957. "files": [
  3958. ".nupkg.metadata",
  3959. ".signature.p7s",
  3960. "Icon.png",
  3961. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  3962. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  3963. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3964. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3965. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  3966. "microsoft.extensions.logging.console.nuspec"
  3967. ]
  3968. },
  3969. "Microsoft.Extensions.Options/5.0.0": {
  3970. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  3971. "type": "package",
  3972. "path": "microsoft.extensions.options/5.0.0",
  3973. "files": [
  3974. ".nupkg.metadata",
  3975. ".signature.p7s",
  3976. "Icon.png",
  3977. "LICENSE.TXT",
  3978. "THIRD-PARTY-NOTICES.TXT",
  3979. "lib/net461/Microsoft.Extensions.Options.dll",
  3980. "lib/net461/Microsoft.Extensions.Options.xml",
  3981. "lib/net5.0/Microsoft.Extensions.Options.dll",
  3982. "lib/net5.0/Microsoft.Extensions.Options.xml",
  3983. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3984. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3985. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  3986. "microsoft.extensions.options.nuspec",
  3987. "useSharedDesignerContext.txt",
  3988. "version.txt"
  3989. ]
  3990. },
  3991. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  3992. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  3993. "type": "package",
  3994. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  3995. "files": [
  3996. ".nupkg.metadata",
  3997. ".signature.p7s",
  3998. "Icon.png",
  3999. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4000. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4001. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4002. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4003. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4004. "microsoft.extensions.options.configurationextensions.nuspec"
  4005. ]
  4006. },
  4007. "Microsoft.Extensions.Primitives/5.0.0": {
  4008. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4009. "type": "package",
  4010. "path": "microsoft.extensions.primitives/5.0.0",
  4011. "files": [
  4012. ".nupkg.metadata",
  4013. ".signature.p7s",
  4014. "Icon.png",
  4015. "LICENSE.TXT",
  4016. "THIRD-PARTY-NOTICES.TXT",
  4017. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4018. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4019. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4020. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4021. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4022. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4023. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4024. "microsoft.extensions.primitives.nuspec",
  4025. "useSharedDesignerContext.txt",
  4026. "version.txt"
  4027. ]
  4028. },
  4029. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  4030. "sha512": "q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==",
  4031. "type": "package",
  4032. "path": "microsoft.identitymodel.jsonwebtokens/6.7.1",
  4033. "files": [
  4034. ".nupkg.metadata",
  4035. ".signature.p7s",
  4036. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  4037. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  4038. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  4039. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  4040. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4041. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4042. "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
  4043. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4044. ]
  4045. },
  4046. "Microsoft.IdentityModel.Logging/6.7.1": {
  4047. "sha512": "WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==",
  4048. "type": "package",
  4049. "path": "microsoft.identitymodel.logging/6.7.1",
  4050. "files": [
  4051. ".nupkg.metadata",
  4052. ".signature.p7s",
  4053. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  4054. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  4055. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  4056. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  4057. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4058. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4059. "microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
  4060. "microsoft.identitymodel.logging.nuspec"
  4061. ]
  4062. },
  4063. "Microsoft.IdentityModel.Protocols/6.7.1": {
  4064. "sha512": "DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==",
  4065. "type": "package",
  4066. "path": "microsoft.identitymodel.protocols/6.7.1",
  4067. "files": [
  4068. ".nupkg.metadata",
  4069. ".signature.p7s",
  4070. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  4071. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  4072. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  4073. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  4074. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  4075. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  4076. "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512",
  4077. "microsoft.identitymodel.protocols.nuspec"
  4078. ]
  4079. },
  4080. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  4081. "sha512": "99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==",
  4082. "type": "package",
  4083. "path": "microsoft.identitymodel.protocols.openidconnect/6.7.1",
  4084. "files": [
  4085. ".nupkg.metadata",
  4086. ".signature.p7s",
  4087. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4088. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4089. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4090. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4091. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4092. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4093. "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512",
  4094. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  4095. ]
  4096. },
  4097. "Microsoft.IdentityModel.Tokens/6.7.1": {
  4098. "sha512": "Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==",
  4099. "type": "package",
  4100. "path": "microsoft.identitymodel.tokens/6.7.1",
  4101. "files": [
  4102. ".nupkg.metadata",
  4103. ".signature.p7s",
  4104. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  4105. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  4106. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  4107. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  4108. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  4109. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  4110. "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
  4111. "microsoft.identitymodel.tokens.nuspec"
  4112. ]
  4113. },
  4114. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  4115. "sha512": "Oh1qXXFdJFcHozvb4H6XYLf2W0meZFuG0A+TfapFPj9z5fd4vxiARGEhAaLj/6XWQaMYIv4SH/9Q6H78Hw0E2Q==",
  4116. "type": "package",
  4117. "path": "microsoft.io.recyclablememorystream/2.3.2",
  4118. "files": [
  4119. ".nupkg.metadata",
  4120. ".signature.p7s",
  4121. "README.md",
  4122. "lib/net462/Microsoft.IO.RecyclableMemoryStream.dll",
  4123. "lib/net462/Microsoft.IO.RecyclableMemoryStream.xml",
  4124. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll",
  4125. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.xml",
  4126. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  4127. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  4128. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  4129. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  4130. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  4131. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  4132. "microsoft.io.recyclablememorystream.2.3.2.nupkg.sha512",
  4133. "microsoft.io.recyclablememorystream.nuspec"
  4134. ]
  4135. },
  4136. "Microsoft.NETCore.Platforms/5.0.0": {
  4137. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4138. "type": "package",
  4139. "path": "microsoft.netcore.platforms/5.0.0",
  4140. "files": [
  4141. ".nupkg.metadata",
  4142. ".signature.p7s",
  4143. "Icon.png",
  4144. "LICENSE.TXT",
  4145. "THIRD-PARTY-NOTICES.TXT",
  4146. "lib/netstandard1.0/_._",
  4147. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4148. "microsoft.netcore.platforms.nuspec",
  4149. "runtime.json",
  4150. "useSharedDesignerContext.txt",
  4151. "version.txt"
  4152. ]
  4153. },
  4154. "Microsoft.NETCore.Targets/1.1.0": {
  4155. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4156. "type": "package",
  4157. "path": "microsoft.netcore.targets/1.1.0",
  4158. "files": [
  4159. ".nupkg.metadata",
  4160. ".signature.p7s",
  4161. "ThirdPartyNotices.txt",
  4162. "dotnet_library_license.txt",
  4163. "lib/netstandard1.0/_._",
  4164. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4165. "microsoft.netcore.targets.nuspec",
  4166. "runtime.json"
  4167. ]
  4168. },
  4169. "Microsoft.OpenApi/1.2.3": {
  4170. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4171. "type": "package",
  4172. "path": "microsoft.openapi/1.2.3",
  4173. "files": [
  4174. ".nupkg.metadata",
  4175. ".signature.p7s",
  4176. "lib/net46/Microsoft.OpenApi.dll",
  4177. "lib/net46/Microsoft.OpenApi.pdb",
  4178. "lib/net46/Microsoft.OpenApi.xml",
  4179. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4180. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4181. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4182. "microsoft.openapi.1.2.3.nupkg.sha512",
  4183. "microsoft.openapi.nuspec"
  4184. ]
  4185. },
  4186. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  4187. "sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==",
  4188. "type": "package",
  4189. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.10.9",
  4190. "hasTools": true,
  4191. "files": [
  4192. ".nupkg.metadata",
  4193. ".signature.p7s",
  4194. "EULA.md",
  4195. "ThirdPartyNotices.txt",
  4196. "build/Container.props",
  4197. "build/Container.targets",
  4198. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4199. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4200. "build/ToolsTarget.props",
  4201. "build/ToolsTarget.targets",
  4202. "microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
  4203. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4204. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4205. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4206. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4207. "tools/Newtonsoft.Json.dll",
  4208. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4209. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4210. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4211. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4212. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4213. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4214. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4215. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4216. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4217. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4218. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4219. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4220. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4221. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4222. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4223. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4224. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4225. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4226. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4227. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4228. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4229. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4230. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4231. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4232. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4233. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4234. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4235. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4236. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4237. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4238. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4239. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4240. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4241. "tools/utils/KillProcess.exe",
  4242. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4243. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4244. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4245. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4246. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4247. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4248. ]
  4249. },
  4250. "Microsoft.Win32.SystemEvents/6.0.0": {
  4251. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  4252. "type": "package",
  4253. "path": "microsoft.win32.systemevents/6.0.0",
  4254. "files": [
  4255. ".nupkg.metadata",
  4256. ".signature.p7s",
  4257. "Icon.png",
  4258. "LICENSE.TXT",
  4259. "THIRD-PARTY-NOTICES.TXT",
  4260. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  4261. "buildTransitive/netcoreapp3.1/_._",
  4262. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4263. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4264. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4265. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4266. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  4267. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  4268. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4269. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4270. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  4271. "microsoft.win32.systemevents.nuspec",
  4272. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4273. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4274. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  4275. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  4276. "useSharedDesignerContext.txt"
  4277. ]
  4278. },
  4279. "MySql.Data/8.0.23": {
  4280. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4281. "type": "package",
  4282. "path": "mysql.data/8.0.23",
  4283. "files": [
  4284. ".nupkg.metadata",
  4285. ".signature.p7s",
  4286. "lib/net452/MySql.Data.dll",
  4287. "lib/net452/MySql.Data.xml",
  4288. "lib/net452/Ubiety.Dns.Core.dll",
  4289. "lib/net452/Zstandard.Net.dll",
  4290. "lib/net48/MySql.Data.dll",
  4291. "lib/net48/MySql.Data.xml",
  4292. "lib/net48/Ubiety.Dns.Core.dll",
  4293. "lib/net48/Zstandard.Net.dll",
  4294. "lib/net5.0/MySql.Data.dll",
  4295. "lib/net5.0/MySql.Data.xml",
  4296. "lib/net5.0/Ubiety.Dns.Core.dll",
  4297. "lib/net5.0/Zstandard.Net.dll",
  4298. "lib/netstandard2.0/MySql.Data.dll",
  4299. "lib/netstandard2.0/MySql.Data.xml",
  4300. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4301. "lib/netstandard2.0/Zstandard.Net.dll",
  4302. "lib/netstandard2.1/MySql.Data.dll",
  4303. "lib/netstandard2.1/MySql.Data.xml",
  4304. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4305. "lib/netstandard2.1/Zstandard.Net.dll",
  4306. "mysql.data.8.0.23.nupkg.sha512",
  4307. "mysql.data.nuspec"
  4308. ]
  4309. },
  4310. "MySqlConnector/1.1.0": {
  4311. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4312. "type": "package",
  4313. "path": "mysqlconnector/1.1.0",
  4314. "files": [
  4315. ".nupkg.metadata",
  4316. ".signature.p7s",
  4317. "lib/net45/MySqlConnector.dll",
  4318. "lib/net45/MySqlConnector.xml",
  4319. "lib/net461/MySqlConnector.dll",
  4320. "lib/net461/MySqlConnector.xml",
  4321. "lib/net471/MySqlConnector.dll",
  4322. "lib/net471/MySqlConnector.xml",
  4323. "lib/net5.0/MySqlConnector.dll",
  4324. "lib/net5.0/MySqlConnector.xml",
  4325. "lib/netcoreapp2.1/MySqlConnector.dll",
  4326. "lib/netcoreapp2.1/MySqlConnector.xml",
  4327. "lib/netcoreapp3.1/MySqlConnector.dll",
  4328. "lib/netcoreapp3.1/MySqlConnector.xml",
  4329. "lib/netstandard1.3/MySqlConnector.dll",
  4330. "lib/netstandard1.3/MySqlConnector.xml",
  4331. "lib/netstandard2.0/MySqlConnector.dll",
  4332. "lib/netstandard2.0/MySqlConnector.xml",
  4333. "lib/netstandard2.1/MySqlConnector.dll",
  4334. "lib/netstandard2.1/MySqlConnector.xml",
  4335. "logo.png",
  4336. "mysqlconnector.1.1.0.nupkg.sha512",
  4337. "mysqlconnector.nuspec"
  4338. ]
  4339. },
  4340. "Newtonsoft.Json/13.0.1": {
  4341. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4342. "type": "package",
  4343. "path": "newtonsoft.json/13.0.1",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "LICENSE.md",
  4348. "lib/net20/Newtonsoft.Json.dll",
  4349. "lib/net20/Newtonsoft.Json.xml",
  4350. "lib/net35/Newtonsoft.Json.dll",
  4351. "lib/net35/Newtonsoft.Json.xml",
  4352. "lib/net40/Newtonsoft.Json.dll",
  4353. "lib/net40/Newtonsoft.Json.xml",
  4354. "lib/net45/Newtonsoft.Json.dll",
  4355. "lib/net45/Newtonsoft.Json.xml",
  4356. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4357. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4358. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4359. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4360. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4361. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4362. "newtonsoft.json.13.0.1.nupkg.sha512",
  4363. "newtonsoft.json.nuspec",
  4364. "packageIcon.png"
  4365. ]
  4366. },
  4367. "Newtonsoft.Json.Bson/1.0.2": {
  4368. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  4369. "type": "package",
  4370. "path": "newtonsoft.json.bson/1.0.2",
  4371. "files": [
  4372. ".nupkg.metadata",
  4373. ".signature.p7s",
  4374. "LICENSE.md",
  4375. "lib/net45/Newtonsoft.Json.Bson.dll",
  4376. "lib/net45/Newtonsoft.Json.Bson.pdb",
  4377. "lib/net45/Newtonsoft.Json.Bson.xml",
  4378. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  4379. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  4380. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  4381. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  4382. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  4383. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  4384. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  4385. "newtonsoft.json.bson.nuspec"
  4386. ]
  4387. },
  4388. "NPOI/2.6.2": {
  4389. "sha512": "s5lxJQ1Xy2nr3yDvoMH6og2cb2I8reIrUROf2afjKucS+pWNZG07kwITo+CCS3KaXNiPjUn1YaS1PUf8fT9cHg==",
  4390. "type": "package",
  4391. "path": "npoi/2.6.2",
  4392. "files": [
  4393. ".nupkg.metadata",
  4394. ".signature.p7s",
  4395. "LICENSE",
  4396. "Read Me.txt",
  4397. "lib/net472/NPOI.Core.dll",
  4398. "lib/net472/NPOI.Core.pdb",
  4399. "lib/net472/NPOI.Core.xml",
  4400. "lib/net472/NPOI.OOXML.dll",
  4401. "lib/net472/NPOI.OOXML.pdb",
  4402. "lib/net472/NPOI.OOXML.xml",
  4403. "lib/net472/NPOI.OpenXml4Net.dll",
  4404. "lib/net472/NPOI.OpenXml4Net.pdb",
  4405. "lib/net472/NPOI.OpenXml4Net.xml",
  4406. "lib/net472/NPOI.OpenXmlFormats.dll",
  4407. "lib/net472/NPOI.OpenXmlFormats.pdb",
  4408. "lib/net472/NPOI.OpenXmlFormats.xml",
  4409. "lib/net6.0/NPOI.Core.dll",
  4410. "lib/net6.0/NPOI.Core.pdb",
  4411. "lib/net6.0/NPOI.Core.xml",
  4412. "lib/net6.0/NPOI.OOXML.dll",
  4413. "lib/net6.0/NPOI.OOXML.pdb",
  4414. "lib/net6.0/NPOI.OOXML.xml",
  4415. "lib/net6.0/NPOI.OpenXml4Net.dll",
  4416. "lib/net6.0/NPOI.OpenXml4Net.pdb",
  4417. "lib/net6.0/NPOI.OpenXml4Net.xml",
  4418. "lib/net6.0/NPOI.OpenXmlFormats.dll",
  4419. "lib/net6.0/NPOI.OpenXmlFormats.pdb",
  4420. "lib/net6.0/NPOI.OpenXmlFormats.xml",
  4421. "lib/netstandard2.0/NPOI.Core.dll",
  4422. "lib/netstandard2.0/NPOI.Core.pdb",
  4423. "lib/netstandard2.0/NPOI.Core.xml",
  4424. "lib/netstandard2.0/NPOI.OOXML.dll",
  4425. "lib/netstandard2.0/NPOI.OOXML.pdb",
  4426. "lib/netstandard2.0/NPOI.OOXML.xml",
  4427. "lib/netstandard2.0/NPOI.OpenXml4Net.dll",
  4428. "lib/netstandard2.0/NPOI.OpenXml4Net.pdb",
  4429. "lib/netstandard2.0/NPOI.OpenXml4Net.xml",
  4430. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll",
  4431. "lib/netstandard2.0/NPOI.OpenXmlFormats.pdb",
  4432. "lib/netstandard2.0/NPOI.OpenXmlFormats.xml",
  4433. "lib/netstandard2.1/NPOI.Core.dll",
  4434. "lib/netstandard2.1/NPOI.Core.pdb",
  4435. "lib/netstandard2.1/NPOI.Core.xml",
  4436. "lib/netstandard2.1/NPOI.OOXML.dll",
  4437. "lib/netstandard2.1/NPOI.OOXML.pdb",
  4438. "lib/netstandard2.1/NPOI.OOXML.xml",
  4439. "lib/netstandard2.1/NPOI.OpenXml4Net.dll",
  4440. "lib/netstandard2.1/NPOI.OpenXml4Net.pdb",
  4441. "lib/netstandard2.1/NPOI.OpenXml4Net.xml",
  4442. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll",
  4443. "lib/netstandard2.1/NPOI.OpenXmlFormats.pdb",
  4444. "lib/netstandard2.1/NPOI.OpenXmlFormats.xml",
  4445. "logo/120_120.jpg",
  4446. "logo/240_240.png",
  4447. "logo/32_32.jpg",
  4448. "logo/60_60.jpg",
  4449. "npoi.2.6.2.nupkg.sha512",
  4450. "npoi.nuspec"
  4451. ]
  4452. },
  4453. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4454. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4455. "type": "package",
  4456. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4457. "files": [
  4458. ".nupkg.metadata",
  4459. ".signature.p7s",
  4460. "icon.png",
  4461. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4462. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4463. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4464. "pomelo.entityframeworkcore.mysql.nuspec"
  4465. ]
  4466. },
  4467. "QRCoder/1.4.3": {
  4468. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4469. "type": "package",
  4470. "path": "qrcoder/1.4.3",
  4471. "files": [
  4472. ".nupkg.metadata",
  4473. ".signature.p7s",
  4474. "lib/net35/QRCoder.dll",
  4475. "lib/net40/QRCoder.dll",
  4476. "lib/net5.0-windows7.0/QRCoder.dll",
  4477. "lib/net5.0/QRCoder.dll",
  4478. "lib/net6.0-windows7.0/QRCoder.dll",
  4479. "lib/net6.0/QRCoder.dll",
  4480. "lib/netstandard1.3/QRCoder.dll",
  4481. "lib/netstandard2.0/QRCoder.dll",
  4482. "nuget-icon.png",
  4483. "nuget-readme.md",
  4484. "qrcoder.1.4.3.nupkg.sha512",
  4485. "qrcoder.nuspec"
  4486. ]
  4487. },
  4488. "Quartz/3.3.3": {
  4489. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  4490. "type": "package",
  4491. "path": "quartz/3.3.3",
  4492. "files": [
  4493. ".nupkg.metadata",
  4494. ".signature.p7s",
  4495. "lib/net461/Quartz.dll",
  4496. "lib/net461/Quartz.xml",
  4497. "lib/net472/Quartz.dll",
  4498. "lib/net472/Quartz.xml",
  4499. "lib/netstandard2.0/Quartz.dll",
  4500. "lib/netstandard2.0/Quartz.xml",
  4501. "quartz-logo-small.png",
  4502. "quartz.3.3.3.nupkg.sha512",
  4503. "quartz.nuspec"
  4504. ]
  4505. },
  4506. "RabbitMQ.Client/6.8.1": {
  4507. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4508. "type": "package",
  4509. "path": "rabbitmq.client/6.8.1",
  4510. "files": [
  4511. ".nupkg.metadata",
  4512. ".signature.p7s",
  4513. "README.md",
  4514. "icon.png",
  4515. "lib/net462/RabbitMQ.Client.dll",
  4516. "lib/net462/RabbitMQ.Client.xml",
  4517. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4518. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4519. "rabbitmq.client.6.8.1.nupkg.sha512",
  4520. "rabbitmq.client.nuspec"
  4521. ]
  4522. },
  4523. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4524. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4525. "type": "package",
  4526. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4527. "files": [
  4528. ".nupkg.metadata",
  4529. ".signature.p7s",
  4530. "ThirdPartyNotices.txt",
  4531. "dotnet_library_license.txt",
  4532. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4533. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4534. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4535. ]
  4536. },
  4537. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4538. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4539. "type": "package",
  4540. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4541. "files": [
  4542. ".nupkg.metadata",
  4543. ".signature.p7s",
  4544. "ThirdPartyNotices.txt",
  4545. "dotnet_library_license.txt",
  4546. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4547. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4548. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4549. ]
  4550. },
  4551. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4552. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4553. "type": "package",
  4554. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4555. "files": [
  4556. ".nupkg.metadata",
  4557. ".signature.p7s",
  4558. "ThirdPartyNotices.txt",
  4559. "dotnet_library_license.txt",
  4560. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4561. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4562. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4563. ]
  4564. },
  4565. "runtime.native.System/4.3.0": {
  4566. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4567. "type": "package",
  4568. "path": "runtime.native.system/4.3.0",
  4569. "files": [
  4570. ".nupkg.metadata",
  4571. ".signature.p7s",
  4572. "ThirdPartyNotices.txt",
  4573. "dotnet_library_license.txt",
  4574. "lib/netstandard1.0/_._",
  4575. "runtime.native.system.4.3.0.nupkg.sha512",
  4576. "runtime.native.system.nuspec"
  4577. ]
  4578. },
  4579. "runtime.native.System.Net.Http/4.3.0": {
  4580. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4581. "type": "package",
  4582. "path": "runtime.native.system.net.http/4.3.0",
  4583. "files": [
  4584. ".nupkg.metadata",
  4585. ".signature.p7s",
  4586. "ThirdPartyNotices.txt",
  4587. "dotnet_library_license.txt",
  4588. "lib/netstandard1.0/_._",
  4589. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4590. "runtime.native.system.net.http.nuspec"
  4591. ]
  4592. },
  4593. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4594. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4595. "type": "package",
  4596. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4597. "files": [
  4598. ".nupkg.metadata",
  4599. ".signature.p7s",
  4600. "ThirdPartyNotices.txt",
  4601. "dotnet_library_license.txt",
  4602. "lib/netstandard1.0/_._",
  4603. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4604. "runtime.native.system.security.cryptography.apple.nuspec"
  4605. ]
  4606. },
  4607. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4608. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4609. "type": "package",
  4610. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4611. "files": [
  4612. ".nupkg.metadata",
  4613. ".signature.p7s",
  4614. "ThirdPartyNotices.txt",
  4615. "dotnet_library_license.txt",
  4616. "lib/netstandard1.0/_._",
  4617. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4618. "runtime.native.system.security.cryptography.openssl.nuspec"
  4619. ]
  4620. },
  4621. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4622. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4623. "type": "package",
  4624. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4625. "files": [
  4626. ".nupkg.metadata",
  4627. ".signature.p7s",
  4628. "ThirdPartyNotices.txt",
  4629. "dotnet_library_license.txt",
  4630. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4631. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4632. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4633. ]
  4634. },
  4635. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4636. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4637. "type": "package",
  4638. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4639. "files": [
  4640. ".nupkg.metadata",
  4641. ".signature.p7s",
  4642. "ThirdPartyNotices.txt",
  4643. "dotnet_library_license.txt",
  4644. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4645. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4646. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4647. ]
  4648. },
  4649. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4650. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4651. "type": "package",
  4652. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4653. "files": [
  4654. ".nupkg.metadata",
  4655. ".signature.p7s",
  4656. "ThirdPartyNotices.txt",
  4657. "dotnet_library_license.txt",
  4658. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4659. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4660. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4661. ]
  4662. },
  4663. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4664. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4665. "type": "package",
  4666. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4667. "files": [
  4668. ".nupkg.metadata",
  4669. ".signature.p7s",
  4670. "ThirdPartyNotices.txt",
  4671. "dotnet_library_license.txt",
  4672. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4673. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4674. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4675. ]
  4676. },
  4677. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4678. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4679. "type": "package",
  4680. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4681. "files": [
  4682. ".nupkg.metadata",
  4683. ".signature.p7s",
  4684. "ThirdPartyNotices.txt",
  4685. "dotnet_library_license.txt",
  4686. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4687. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4688. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4689. ]
  4690. },
  4691. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4692. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4693. "type": "package",
  4694. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4695. "files": [
  4696. ".nupkg.metadata",
  4697. ".signature.p7s",
  4698. "ThirdPartyNotices.txt",
  4699. "dotnet_library_license.txt",
  4700. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4701. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4702. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4703. ]
  4704. },
  4705. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4706. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4707. "type": "package",
  4708. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4709. "files": [
  4710. ".nupkg.metadata",
  4711. ".signature.p7s",
  4712. "ThirdPartyNotices.txt",
  4713. "dotnet_library_license.txt",
  4714. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4715. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4716. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4717. ]
  4718. },
  4719. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4720. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4721. "type": "package",
  4722. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4723. "files": [
  4724. ".nupkg.metadata",
  4725. ".signature.p7s",
  4726. "ThirdPartyNotices.txt",
  4727. "dotnet_library_license.txt",
  4728. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4729. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4730. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4731. ]
  4732. },
  4733. "SharpZipLib/1.3.3": {
  4734. "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
  4735. "type": "package",
  4736. "path": "sharpziplib/1.3.3",
  4737. "files": [
  4738. ".nupkg.metadata",
  4739. ".signature.p7s",
  4740. "images/sharpziplib-nuget-256x256.png",
  4741. "lib/net45/ICSharpCode.SharpZipLib.dll",
  4742. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  4743. "lib/net45/ICSharpCode.SharpZipLib.xml",
  4744. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  4745. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  4746. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  4747. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
  4748. "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
  4749. "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
  4750. "sharpziplib.1.3.3.nupkg.sha512",
  4751. "sharpziplib.nuspec"
  4752. ]
  4753. },
  4754. "SixLabors.Fonts/1.0.0": {
  4755. "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==",
  4756. "type": "package",
  4757. "path": "sixlabors.fonts/1.0.0",
  4758. "files": [
  4759. ".nupkg.metadata",
  4760. ".signature.p7s",
  4761. "lib/netcoreapp3.1/SixLabors.Fonts.dll",
  4762. "lib/netcoreapp3.1/SixLabors.Fonts.xml",
  4763. "lib/netstandard2.0/SixLabors.Fonts.dll",
  4764. "lib/netstandard2.0/SixLabors.Fonts.xml",
  4765. "lib/netstandard2.1/SixLabors.Fonts.dll",
  4766. "lib/netstandard2.1/SixLabors.Fonts.xml",
  4767. "sixlabors.fonts.1.0.0.nupkg.sha512",
  4768. "sixlabors.fonts.128.png",
  4769. "sixlabors.fonts.nuspec"
  4770. ]
  4771. },
  4772. "SixLabors.ImageSharp/2.1.6": {
  4773. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4774. "type": "package",
  4775. "path": "sixlabors.imagesharp/2.1.6",
  4776. "files": [
  4777. ".nupkg.metadata",
  4778. ".signature.p7s",
  4779. "lib/net472/SixLabors.ImageSharp.dll",
  4780. "lib/net472/SixLabors.ImageSharp.xml",
  4781. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4782. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4783. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4784. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4785. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4786. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4787. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4788. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4789. "sixlabors.imagesharp.128.png",
  4790. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4791. "sixlabors.imagesharp.nuspec"
  4792. ]
  4793. },
  4794. "SSH.NET/2020.0.0-beta1": {
  4795. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4796. "type": "package",
  4797. "path": "ssh.net/2020.0.0-beta1",
  4798. "files": [
  4799. ".nupkg.metadata",
  4800. ".signature.p7s",
  4801. "lib/net35/Renci.SshNet.dll",
  4802. "lib/net35/Renci.SshNet.xml",
  4803. "lib/net40/Renci.SshNet.dll",
  4804. "lib/net40/Renci.SshNet.xml",
  4805. "lib/netstandard1.3/Renci.SshNet.dll",
  4806. "lib/netstandard1.3/Renci.SshNet.xml",
  4807. "lib/netstandard2.0/Renci.SshNet.dll",
  4808. "lib/netstandard2.0/Renci.SshNet.xml",
  4809. "lib/sl4/Renci.SshNet.dll",
  4810. "lib/sl4/Renci.SshNet.xml",
  4811. "lib/sl5/Renci.SshNet.dll",
  4812. "lib/sl5/Renci.SshNet.xml",
  4813. "lib/uap10/Renci.SshNet.dll",
  4814. "lib/uap10/Renci.SshNet.xml",
  4815. "lib/wp71/Renci.SshNet.dll",
  4816. "lib/wp71/Renci.SshNet.xml",
  4817. "lib/wp8/Renci.SshNet.dll",
  4818. "lib/wp8/Renci.SshNet.xml",
  4819. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4820. "ssh.net.nuspec"
  4821. ]
  4822. },
  4823. "SshNet.Security.Cryptography/1.3.0": {
  4824. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4825. "type": "package",
  4826. "path": "sshnet.security.cryptography/1.3.0",
  4827. "files": [
  4828. ".nupkg.metadata",
  4829. ".signature.p7s",
  4830. "lib/net20/SshNet.Security.Cryptography.dll",
  4831. "lib/net20/SshNet.Security.Cryptography.xml",
  4832. "lib/net40/SshNet.Security.Cryptography.dll",
  4833. "lib/net40/SshNet.Security.Cryptography.xml",
  4834. "lib/net45/SshNet.Security.Cryptography.dll",
  4835. "lib/net45/SshNet.Security.Cryptography.xml",
  4836. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4837. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4838. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4839. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4840. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4841. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4842. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4843. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4844. "lib/sl4/SshNet.Security.Cryptography.dll",
  4845. "lib/sl4/SshNet.Security.Cryptography.xml",
  4846. "lib/sl5/SshNet.Security.Cryptography.dll",
  4847. "lib/sl5/SshNet.Security.Cryptography.xml",
  4848. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4849. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4850. "lib/wp71/SshNet.Security.Cryptography.dll",
  4851. "lib/wp71/SshNet.Security.Cryptography.xml",
  4852. "lib/wp8/SshNet.Security.Cryptography.dll",
  4853. "lib/wp8/SshNet.Security.Cryptography.xml",
  4854. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4855. "sshnet.security.cryptography.nuspec"
  4856. ]
  4857. },
  4858. "Swashbuckle.AspNetCore/5.6.3": {
  4859. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  4860. "type": "package",
  4861. "path": "swashbuckle.aspnetcore/5.6.3",
  4862. "files": [
  4863. ".nupkg.metadata",
  4864. ".signature.p7s",
  4865. "build/Swashbuckle.AspNetCore.props",
  4866. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  4867. "swashbuckle.aspnetcore.nuspec"
  4868. ]
  4869. },
  4870. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  4871. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  4872. "type": "package",
  4873. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  4874. "files": [
  4875. ".nupkg.metadata",
  4876. ".signature.p7s",
  4877. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4878. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4879. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4880. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4881. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4882. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4883. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  4884. "swashbuckle.aspnetcore.swagger.nuspec"
  4885. ]
  4886. },
  4887. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  4888. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  4889. "type": "package",
  4890. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  4891. "files": [
  4892. ".nupkg.metadata",
  4893. ".signature.p7s",
  4894. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4895. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4896. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4897. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4898. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4899. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4900. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  4901. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4902. ]
  4903. },
  4904. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  4905. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  4906. "type": "package",
  4907. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  4908. "files": [
  4909. ".nupkg.metadata",
  4910. ".signature.p7s",
  4911. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4912. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4913. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4914. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4915. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4916. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4917. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  4918. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4919. ]
  4920. },
  4921. "System.Buffers/4.5.1": {
  4922. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4923. "type": "package",
  4924. "path": "system.buffers/4.5.1",
  4925. "files": [
  4926. ".nupkg.metadata",
  4927. ".signature.p7s",
  4928. "LICENSE.TXT",
  4929. "THIRD-PARTY-NOTICES.TXT",
  4930. "lib/net461/System.Buffers.dll",
  4931. "lib/net461/System.Buffers.xml",
  4932. "lib/netcoreapp2.0/_._",
  4933. "lib/netstandard1.1/System.Buffers.dll",
  4934. "lib/netstandard1.1/System.Buffers.xml",
  4935. "lib/netstandard2.0/System.Buffers.dll",
  4936. "lib/netstandard2.0/System.Buffers.xml",
  4937. "lib/uap10.0.16299/_._",
  4938. "ref/net45/System.Buffers.dll",
  4939. "ref/net45/System.Buffers.xml",
  4940. "ref/netcoreapp2.0/_._",
  4941. "ref/netstandard1.1/System.Buffers.dll",
  4942. "ref/netstandard1.1/System.Buffers.xml",
  4943. "ref/netstandard2.0/System.Buffers.dll",
  4944. "ref/netstandard2.0/System.Buffers.xml",
  4945. "ref/uap10.0.16299/_._",
  4946. "system.buffers.4.5.1.nupkg.sha512",
  4947. "system.buffers.nuspec",
  4948. "useSharedDesignerContext.txt",
  4949. "version.txt"
  4950. ]
  4951. },
  4952. "System.Collections/4.3.0": {
  4953. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4954. "type": "package",
  4955. "path": "system.collections/4.3.0",
  4956. "files": [
  4957. ".nupkg.metadata",
  4958. ".signature.p7s",
  4959. "ThirdPartyNotices.txt",
  4960. "dotnet_library_license.txt",
  4961. "lib/MonoAndroid10/_._",
  4962. "lib/MonoTouch10/_._",
  4963. "lib/net45/_._",
  4964. "lib/portable-net45+win8+wp8+wpa81/_._",
  4965. "lib/win8/_._",
  4966. "lib/wp80/_._",
  4967. "lib/wpa81/_._",
  4968. "lib/xamarinios10/_._",
  4969. "lib/xamarinmac20/_._",
  4970. "lib/xamarintvos10/_._",
  4971. "lib/xamarinwatchos10/_._",
  4972. "ref/MonoAndroid10/_._",
  4973. "ref/MonoTouch10/_._",
  4974. "ref/net45/_._",
  4975. "ref/netcore50/System.Collections.dll",
  4976. "ref/netcore50/System.Collections.xml",
  4977. "ref/netcore50/de/System.Collections.xml",
  4978. "ref/netcore50/es/System.Collections.xml",
  4979. "ref/netcore50/fr/System.Collections.xml",
  4980. "ref/netcore50/it/System.Collections.xml",
  4981. "ref/netcore50/ja/System.Collections.xml",
  4982. "ref/netcore50/ko/System.Collections.xml",
  4983. "ref/netcore50/ru/System.Collections.xml",
  4984. "ref/netcore50/zh-hans/System.Collections.xml",
  4985. "ref/netcore50/zh-hant/System.Collections.xml",
  4986. "ref/netstandard1.0/System.Collections.dll",
  4987. "ref/netstandard1.0/System.Collections.xml",
  4988. "ref/netstandard1.0/de/System.Collections.xml",
  4989. "ref/netstandard1.0/es/System.Collections.xml",
  4990. "ref/netstandard1.0/fr/System.Collections.xml",
  4991. "ref/netstandard1.0/it/System.Collections.xml",
  4992. "ref/netstandard1.0/ja/System.Collections.xml",
  4993. "ref/netstandard1.0/ko/System.Collections.xml",
  4994. "ref/netstandard1.0/ru/System.Collections.xml",
  4995. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4996. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4997. "ref/netstandard1.3/System.Collections.dll",
  4998. "ref/netstandard1.3/System.Collections.xml",
  4999. "ref/netstandard1.3/de/System.Collections.xml",
  5000. "ref/netstandard1.3/es/System.Collections.xml",
  5001. "ref/netstandard1.3/fr/System.Collections.xml",
  5002. "ref/netstandard1.3/it/System.Collections.xml",
  5003. "ref/netstandard1.3/ja/System.Collections.xml",
  5004. "ref/netstandard1.3/ko/System.Collections.xml",
  5005. "ref/netstandard1.3/ru/System.Collections.xml",
  5006. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5007. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5008. "ref/portable-net45+win8+wp8+wpa81/_._",
  5009. "ref/win8/_._",
  5010. "ref/wp80/_._",
  5011. "ref/wpa81/_._",
  5012. "ref/xamarinios10/_._",
  5013. "ref/xamarinmac20/_._",
  5014. "ref/xamarintvos10/_._",
  5015. "ref/xamarinwatchos10/_._",
  5016. "system.collections.4.3.0.nupkg.sha512",
  5017. "system.collections.nuspec"
  5018. ]
  5019. },
  5020. "System.Collections.Concurrent/4.3.0": {
  5021. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5022. "type": "package",
  5023. "path": "system.collections.concurrent/4.3.0",
  5024. "files": [
  5025. ".nupkg.metadata",
  5026. ".signature.p7s",
  5027. "ThirdPartyNotices.txt",
  5028. "dotnet_library_license.txt",
  5029. "lib/MonoAndroid10/_._",
  5030. "lib/MonoTouch10/_._",
  5031. "lib/net45/_._",
  5032. "lib/netcore50/System.Collections.Concurrent.dll",
  5033. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5034. "lib/portable-net45+win8+wpa81/_._",
  5035. "lib/win8/_._",
  5036. "lib/wpa81/_._",
  5037. "lib/xamarinios10/_._",
  5038. "lib/xamarinmac20/_._",
  5039. "lib/xamarintvos10/_._",
  5040. "lib/xamarinwatchos10/_._",
  5041. "ref/MonoAndroid10/_._",
  5042. "ref/MonoTouch10/_._",
  5043. "ref/net45/_._",
  5044. "ref/netcore50/System.Collections.Concurrent.dll",
  5045. "ref/netcore50/System.Collections.Concurrent.xml",
  5046. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5047. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5048. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5049. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5050. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5051. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5052. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5053. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5054. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5055. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5056. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5057. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5058. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5059. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5060. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5061. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5062. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5063. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5064. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5065. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5066. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5067. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5068. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5069. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5070. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5071. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5072. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5073. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5074. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5075. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5076. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5077. "ref/portable-net45+win8+wpa81/_._",
  5078. "ref/win8/_._",
  5079. "ref/wpa81/_._",
  5080. "ref/xamarinios10/_._",
  5081. "ref/xamarinmac20/_._",
  5082. "ref/xamarintvos10/_._",
  5083. "ref/xamarinwatchos10/_._",
  5084. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5085. "system.collections.concurrent.nuspec"
  5086. ]
  5087. },
  5088. "System.Collections.Immutable/5.0.0": {
  5089. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5090. "type": "package",
  5091. "path": "system.collections.immutable/5.0.0",
  5092. "files": [
  5093. ".nupkg.metadata",
  5094. ".signature.p7s",
  5095. "Icon.png",
  5096. "LICENSE.TXT",
  5097. "THIRD-PARTY-NOTICES.TXT",
  5098. "lib/net461/System.Collections.Immutable.dll",
  5099. "lib/net461/System.Collections.Immutable.xml",
  5100. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5101. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5102. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5103. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5104. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5105. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5106. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5107. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5108. "system.collections.immutable.5.0.0.nupkg.sha512",
  5109. "system.collections.immutable.nuspec",
  5110. "useSharedDesignerContext.txt",
  5111. "version.txt"
  5112. ]
  5113. },
  5114. "System.ComponentModel.Annotations/5.0.0": {
  5115. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5116. "type": "package",
  5117. "path": "system.componentmodel.annotations/5.0.0",
  5118. "files": [
  5119. ".nupkg.metadata",
  5120. ".signature.p7s",
  5121. "Icon.png",
  5122. "LICENSE.TXT",
  5123. "THIRD-PARTY-NOTICES.TXT",
  5124. "lib/MonoAndroid10/_._",
  5125. "lib/MonoTouch10/_._",
  5126. "lib/net45/_._",
  5127. "lib/net461/System.ComponentModel.Annotations.dll",
  5128. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5129. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5130. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5131. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5132. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5133. "lib/portable-net45+win8/_._",
  5134. "lib/win8/_._",
  5135. "lib/xamarinios10/_._",
  5136. "lib/xamarinmac20/_._",
  5137. "lib/xamarintvos10/_._",
  5138. "lib/xamarinwatchos10/_._",
  5139. "ref/MonoAndroid10/_._",
  5140. "ref/MonoTouch10/_._",
  5141. "ref/net45/_._",
  5142. "ref/net461/System.ComponentModel.Annotations.dll",
  5143. "ref/net461/System.ComponentModel.Annotations.xml",
  5144. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5145. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5146. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5147. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5148. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5149. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5150. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5151. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5152. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5153. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5154. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5155. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5156. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5157. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5158. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5159. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5160. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5161. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5162. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5163. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5164. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5165. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5166. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5167. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5168. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5169. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5170. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5171. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5172. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5173. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5174. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5175. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5176. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5177. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5178. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5179. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5180. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5181. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5182. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5183. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5184. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5185. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5186. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5187. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5188. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5189. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5190. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5191. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5192. "ref/portable-net45+win8/_._",
  5193. "ref/win8/_._",
  5194. "ref/xamarinios10/_._",
  5195. "ref/xamarinmac20/_._",
  5196. "ref/xamarintvos10/_._",
  5197. "ref/xamarinwatchos10/_._",
  5198. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5199. "system.componentmodel.annotations.nuspec",
  5200. "useSharedDesignerContext.txt",
  5201. "version.txt"
  5202. ]
  5203. },
  5204. "System.Configuration.ConfigurationManager/6.0.0": {
  5205. "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
  5206. "type": "package",
  5207. "path": "system.configuration.configurationmanager/6.0.0",
  5208. "files": [
  5209. ".nupkg.metadata",
  5210. ".signature.p7s",
  5211. "Icon.png",
  5212. "LICENSE.TXT",
  5213. "THIRD-PARTY-NOTICES.TXT",
  5214. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  5215. "buildTransitive/netcoreapp3.1/_._",
  5216. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5217. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5218. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  5219. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  5220. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5221. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5222. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  5223. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  5224. "system.configuration.configurationmanager.6.0.0.nupkg.sha512",
  5225. "system.configuration.configurationmanager.nuspec",
  5226. "useSharedDesignerContext.txt"
  5227. ]
  5228. },
  5229. "System.Diagnostics.Debug/4.3.0": {
  5230. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5231. "type": "package",
  5232. "path": "system.diagnostics.debug/4.3.0",
  5233. "files": [
  5234. ".nupkg.metadata",
  5235. ".signature.p7s",
  5236. "ThirdPartyNotices.txt",
  5237. "dotnet_library_license.txt",
  5238. "lib/MonoAndroid10/_._",
  5239. "lib/MonoTouch10/_._",
  5240. "lib/net45/_._",
  5241. "lib/portable-net45+win8+wp8+wpa81/_._",
  5242. "lib/win8/_._",
  5243. "lib/wp80/_._",
  5244. "lib/wpa81/_._",
  5245. "lib/xamarinios10/_._",
  5246. "lib/xamarinmac20/_._",
  5247. "lib/xamarintvos10/_._",
  5248. "lib/xamarinwatchos10/_._",
  5249. "ref/MonoAndroid10/_._",
  5250. "ref/MonoTouch10/_._",
  5251. "ref/net45/_._",
  5252. "ref/netcore50/System.Diagnostics.Debug.dll",
  5253. "ref/netcore50/System.Diagnostics.Debug.xml",
  5254. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5255. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5256. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5257. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5258. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5259. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5260. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5261. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5262. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5263. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5264. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5265. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5266. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5267. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5268. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5269. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5270. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5271. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5272. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5273. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5274. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5275. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5276. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5277. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5278. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5279. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5280. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5281. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5282. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5283. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5284. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5285. "ref/portable-net45+win8+wp8+wpa81/_._",
  5286. "ref/win8/_._",
  5287. "ref/wp80/_._",
  5288. "ref/wpa81/_._",
  5289. "ref/xamarinios10/_._",
  5290. "ref/xamarinmac20/_._",
  5291. "ref/xamarintvos10/_._",
  5292. "ref/xamarinwatchos10/_._",
  5293. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5294. "system.diagnostics.debug.nuspec"
  5295. ]
  5296. },
  5297. "System.Diagnostics.DiagnosticSource/5.0.1": {
  5298. "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  5299. "type": "package",
  5300. "path": "system.diagnostics.diagnosticsource/5.0.1",
  5301. "files": [
  5302. ".nupkg.metadata",
  5303. ".signature.p7s",
  5304. "Icon.png",
  5305. "LICENSE.TXT",
  5306. "THIRD-PARTY-NOTICES.TXT",
  5307. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5308. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5309. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5310. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5311. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5312. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5313. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5314. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5315. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5316. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5317. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5318. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5319. "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
  5320. "system.diagnostics.diagnosticsource.nuspec",
  5321. "useSharedDesignerContext.txt",
  5322. "version.txt"
  5323. ]
  5324. },
  5325. "System.Diagnostics.Tracing/4.3.0": {
  5326. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5327. "type": "package",
  5328. "path": "system.diagnostics.tracing/4.3.0",
  5329. "files": [
  5330. ".nupkg.metadata",
  5331. ".signature.p7s",
  5332. "ThirdPartyNotices.txt",
  5333. "dotnet_library_license.txt",
  5334. "lib/MonoAndroid10/_._",
  5335. "lib/MonoTouch10/_._",
  5336. "lib/net45/_._",
  5337. "lib/net462/System.Diagnostics.Tracing.dll",
  5338. "lib/portable-net45+win8+wpa81/_._",
  5339. "lib/win8/_._",
  5340. "lib/wpa81/_._",
  5341. "lib/xamarinios10/_._",
  5342. "lib/xamarinmac20/_._",
  5343. "lib/xamarintvos10/_._",
  5344. "lib/xamarinwatchos10/_._",
  5345. "ref/MonoAndroid10/_._",
  5346. "ref/MonoTouch10/_._",
  5347. "ref/net45/_._",
  5348. "ref/net462/System.Diagnostics.Tracing.dll",
  5349. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5350. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5351. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5352. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5353. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5354. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5355. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5356. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5357. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5358. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5359. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5360. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5361. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5362. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5363. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5364. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5365. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5366. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5367. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5368. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5369. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5370. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5371. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5372. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5373. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5374. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5375. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5376. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5377. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5378. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5379. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5380. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5381. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5382. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5383. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5384. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5385. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5386. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5387. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5388. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5389. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5390. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5391. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5392. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5393. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5394. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5395. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5396. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5397. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5398. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5399. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5400. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5401. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5402. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5403. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5404. "ref/portable-net45+win8+wpa81/_._",
  5405. "ref/win8/_._",
  5406. "ref/wpa81/_._",
  5407. "ref/xamarinios10/_._",
  5408. "ref/xamarinmac20/_._",
  5409. "ref/xamarintvos10/_._",
  5410. "ref/xamarinwatchos10/_._",
  5411. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5412. "system.diagnostics.tracing.nuspec"
  5413. ]
  5414. },
  5415. "System.Drawing.Common/6.0.0": {
  5416. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  5417. "type": "package",
  5418. "path": "system.drawing.common/6.0.0",
  5419. "files": [
  5420. ".nupkg.metadata",
  5421. ".signature.p7s",
  5422. "Icon.png",
  5423. "LICENSE.TXT",
  5424. "THIRD-PARTY-NOTICES.TXT",
  5425. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  5426. "buildTransitive/netcoreapp3.1/_._",
  5427. "lib/MonoAndroid10/_._",
  5428. "lib/MonoTouch10/_._",
  5429. "lib/net461/System.Drawing.Common.dll",
  5430. "lib/net461/System.Drawing.Common.xml",
  5431. "lib/net6.0/System.Drawing.Common.dll",
  5432. "lib/net6.0/System.Drawing.Common.xml",
  5433. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  5434. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  5435. "lib/netstandard2.0/System.Drawing.Common.dll",
  5436. "lib/netstandard2.0/System.Drawing.Common.xml",
  5437. "lib/xamarinios10/_._",
  5438. "lib/xamarinmac20/_._",
  5439. "lib/xamarintvos10/_._",
  5440. "lib/xamarinwatchos10/_._",
  5441. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  5442. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  5443. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  5444. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  5445. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  5446. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  5447. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  5448. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  5449. "system.drawing.common.6.0.0.nupkg.sha512",
  5450. "system.drawing.common.nuspec",
  5451. "useSharedDesignerContext.txt"
  5452. ]
  5453. },
  5454. "System.Formats.Asn1/6.0.0": {
  5455. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  5456. "type": "package",
  5457. "path": "system.formats.asn1/6.0.0",
  5458. "files": [
  5459. ".nupkg.metadata",
  5460. ".signature.p7s",
  5461. "Icon.png",
  5462. "LICENSE.TXT",
  5463. "THIRD-PARTY-NOTICES.TXT",
  5464. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  5465. "buildTransitive/netcoreapp3.1/_._",
  5466. "lib/net461/System.Formats.Asn1.dll",
  5467. "lib/net461/System.Formats.Asn1.xml",
  5468. "lib/net6.0/System.Formats.Asn1.dll",
  5469. "lib/net6.0/System.Formats.Asn1.xml",
  5470. "lib/netstandard2.0/System.Formats.Asn1.dll",
  5471. "lib/netstandard2.0/System.Formats.Asn1.xml",
  5472. "system.formats.asn1.6.0.0.nupkg.sha512",
  5473. "system.formats.asn1.nuspec",
  5474. "useSharedDesignerContext.txt"
  5475. ]
  5476. },
  5477. "System.Globalization/4.3.0": {
  5478. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5479. "type": "package",
  5480. "path": "system.globalization/4.3.0",
  5481. "files": [
  5482. ".nupkg.metadata",
  5483. ".signature.p7s",
  5484. "ThirdPartyNotices.txt",
  5485. "dotnet_library_license.txt",
  5486. "lib/MonoAndroid10/_._",
  5487. "lib/MonoTouch10/_._",
  5488. "lib/net45/_._",
  5489. "lib/portable-net45+win8+wp8+wpa81/_._",
  5490. "lib/win8/_._",
  5491. "lib/wp80/_._",
  5492. "lib/wpa81/_._",
  5493. "lib/xamarinios10/_._",
  5494. "lib/xamarinmac20/_._",
  5495. "lib/xamarintvos10/_._",
  5496. "lib/xamarinwatchos10/_._",
  5497. "ref/MonoAndroid10/_._",
  5498. "ref/MonoTouch10/_._",
  5499. "ref/net45/_._",
  5500. "ref/netcore50/System.Globalization.dll",
  5501. "ref/netcore50/System.Globalization.xml",
  5502. "ref/netcore50/de/System.Globalization.xml",
  5503. "ref/netcore50/es/System.Globalization.xml",
  5504. "ref/netcore50/fr/System.Globalization.xml",
  5505. "ref/netcore50/it/System.Globalization.xml",
  5506. "ref/netcore50/ja/System.Globalization.xml",
  5507. "ref/netcore50/ko/System.Globalization.xml",
  5508. "ref/netcore50/ru/System.Globalization.xml",
  5509. "ref/netcore50/zh-hans/System.Globalization.xml",
  5510. "ref/netcore50/zh-hant/System.Globalization.xml",
  5511. "ref/netstandard1.0/System.Globalization.dll",
  5512. "ref/netstandard1.0/System.Globalization.xml",
  5513. "ref/netstandard1.0/de/System.Globalization.xml",
  5514. "ref/netstandard1.0/es/System.Globalization.xml",
  5515. "ref/netstandard1.0/fr/System.Globalization.xml",
  5516. "ref/netstandard1.0/it/System.Globalization.xml",
  5517. "ref/netstandard1.0/ja/System.Globalization.xml",
  5518. "ref/netstandard1.0/ko/System.Globalization.xml",
  5519. "ref/netstandard1.0/ru/System.Globalization.xml",
  5520. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5521. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5522. "ref/netstandard1.3/System.Globalization.dll",
  5523. "ref/netstandard1.3/System.Globalization.xml",
  5524. "ref/netstandard1.3/de/System.Globalization.xml",
  5525. "ref/netstandard1.3/es/System.Globalization.xml",
  5526. "ref/netstandard1.3/fr/System.Globalization.xml",
  5527. "ref/netstandard1.3/it/System.Globalization.xml",
  5528. "ref/netstandard1.3/ja/System.Globalization.xml",
  5529. "ref/netstandard1.3/ko/System.Globalization.xml",
  5530. "ref/netstandard1.3/ru/System.Globalization.xml",
  5531. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5532. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5533. "ref/portable-net45+win8+wp8+wpa81/_._",
  5534. "ref/win8/_._",
  5535. "ref/wp80/_._",
  5536. "ref/wpa81/_._",
  5537. "ref/xamarinios10/_._",
  5538. "ref/xamarinmac20/_._",
  5539. "ref/xamarintvos10/_._",
  5540. "ref/xamarinwatchos10/_._",
  5541. "system.globalization.4.3.0.nupkg.sha512",
  5542. "system.globalization.nuspec"
  5543. ]
  5544. },
  5545. "System.Globalization.Calendars/4.3.0": {
  5546. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5547. "type": "package",
  5548. "path": "system.globalization.calendars/4.3.0",
  5549. "files": [
  5550. ".nupkg.metadata",
  5551. ".signature.p7s",
  5552. "ThirdPartyNotices.txt",
  5553. "dotnet_library_license.txt",
  5554. "lib/MonoAndroid10/_._",
  5555. "lib/MonoTouch10/_._",
  5556. "lib/net46/System.Globalization.Calendars.dll",
  5557. "lib/xamarinios10/_._",
  5558. "lib/xamarinmac20/_._",
  5559. "lib/xamarintvos10/_._",
  5560. "lib/xamarinwatchos10/_._",
  5561. "ref/MonoAndroid10/_._",
  5562. "ref/MonoTouch10/_._",
  5563. "ref/net46/System.Globalization.Calendars.dll",
  5564. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5565. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5566. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5567. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5568. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5569. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5570. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5571. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5572. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5573. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5574. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5575. "ref/xamarinios10/_._",
  5576. "ref/xamarinmac20/_._",
  5577. "ref/xamarintvos10/_._",
  5578. "ref/xamarinwatchos10/_._",
  5579. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5580. "system.globalization.calendars.nuspec"
  5581. ]
  5582. },
  5583. "System.Globalization.Extensions/4.3.0": {
  5584. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5585. "type": "package",
  5586. "path": "system.globalization.extensions/4.3.0",
  5587. "files": [
  5588. ".nupkg.metadata",
  5589. ".signature.p7s",
  5590. "ThirdPartyNotices.txt",
  5591. "dotnet_library_license.txt",
  5592. "lib/MonoAndroid10/_._",
  5593. "lib/MonoTouch10/_._",
  5594. "lib/net46/System.Globalization.Extensions.dll",
  5595. "lib/xamarinios10/_._",
  5596. "lib/xamarinmac20/_._",
  5597. "lib/xamarintvos10/_._",
  5598. "lib/xamarinwatchos10/_._",
  5599. "ref/MonoAndroid10/_._",
  5600. "ref/MonoTouch10/_._",
  5601. "ref/net46/System.Globalization.Extensions.dll",
  5602. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5603. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5604. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5605. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5606. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5607. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5608. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5609. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5610. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5611. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5612. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5613. "ref/xamarinios10/_._",
  5614. "ref/xamarinmac20/_._",
  5615. "ref/xamarintvos10/_._",
  5616. "ref/xamarinwatchos10/_._",
  5617. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5618. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5619. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5620. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5621. "system.globalization.extensions.nuspec"
  5622. ]
  5623. },
  5624. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  5625. "sha512": "sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==",
  5626. "type": "package",
  5627. "path": "system.identitymodel.tokens.jwt/6.7.1",
  5628. "files": [
  5629. ".nupkg.metadata",
  5630. ".signature.p7s",
  5631. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  5632. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  5633. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5634. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5635. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5636. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5637. "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512",
  5638. "system.identitymodel.tokens.jwt.nuspec"
  5639. ]
  5640. },
  5641. "System.IO/4.3.0": {
  5642. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5643. "type": "package",
  5644. "path": "system.io/4.3.0",
  5645. "files": [
  5646. ".nupkg.metadata",
  5647. ".signature.p7s",
  5648. "ThirdPartyNotices.txt",
  5649. "dotnet_library_license.txt",
  5650. "lib/MonoAndroid10/_._",
  5651. "lib/MonoTouch10/_._",
  5652. "lib/net45/_._",
  5653. "lib/net462/System.IO.dll",
  5654. "lib/portable-net45+win8+wp8+wpa81/_._",
  5655. "lib/win8/_._",
  5656. "lib/wp80/_._",
  5657. "lib/wpa81/_._",
  5658. "lib/xamarinios10/_._",
  5659. "lib/xamarinmac20/_._",
  5660. "lib/xamarintvos10/_._",
  5661. "lib/xamarinwatchos10/_._",
  5662. "ref/MonoAndroid10/_._",
  5663. "ref/MonoTouch10/_._",
  5664. "ref/net45/_._",
  5665. "ref/net462/System.IO.dll",
  5666. "ref/netcore50/System.IO.dll",
  5667. "ref/netcore50/System.IO.xml",
  5668. "ref/netcore50/de/System.IO.xml",
  5669. "ref/netcore50/es/System.IO.xml",
  5670. "ref/netcore50/fr/System.IO.xml",
  5671. "ref/netcore50/it/System.IO.xml",
  5672. "ref/netcore50/ja/System.IO.xml",
  5673. "ref/netcore50/ko/System.IO.xml",
  5674. "ref/netcore50/ru/System.IO.xml",
  5675. "ref/netcore50/zh-hans/System.IO.xml",
  5676. "ref/netcore50/zh-hant/System.IO.xml",
  5677. "ref/netstandard1.0/System.IO.dll",
  5678. "ref/netstandard1.0/System.IO.xml",
  5679. "ref/netstandard1.0/de/System.IO.xml",
  5680. "ref/netstandard1.0/es/System.IO.xml",
  5681. "ref/netstandard1.0/fr/System.IO.xml",
  5682. "ref/netstandard1.0/it/System.IO.xml",
  5683. "ref/netstandard1.0/ja/System.IO.xml",
  5684. "ref/netstandard1.0/ko/System.IO.xml",
  5685. "ref/netstandard1.0/ru/System.IO.xml",
  5686. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5687. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5688. "ref/netstandard1.3/System.IO.dll",
  5689. "ref/netstandard1.3/System.IO.xml",
  5690. "ref/netstandard1.3/de/System.IO.xml",
  5691. "ref/netstandard1.3/es/System.IO.xml",
  5692. "ref/netstandard1.3/fr/System.IO.xml",
  5693. "ref/netstandard1.3/it/System.IO.xml",
  5694. "ref/netstandard1.3/ja/System.IO.xml",
  5695. "ref/netstandard1.3/ko/System.IO.xml",
  5696. "ref/netstandard1.3/ru/System.IO.xml",
  5697. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5698. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5699. "ref/netstandard1.5/System.IO.dll",
  5700. "ref/netstandard1.5/System.IO.xml",
  5701. "ref/netstandard1.5/de/System.IO.xml",
  5702. "ref/netstandard1.5/es/System.IO.xml",
  5703. "ref/netstandard1.5/fr/System.IO.xml",
  5704. "ref/netstandard1.5/it/System.IO.xml",
  5705. "ref/netstandard1.5/ja/System.IO.xml",
  5706. "ref/netstandard1.5/ko/System.IO.xml",
  5707. "ref/netstandard1.5/ru/System.IO.xml",
  5708. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5709. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5710. "ref/portable-net45+win8+wp8+wpa81/_._",
  5711. "ref/win8/_._",
  5712. "ref/wp80/_._",
  5713. "ref/wpa81/_._",
  5714. "ref/xamarinios10/_._",
  5715. "ref/xamarinmac20/_._",
  5716. "ref/xamarintvos10/_._",
  5717. "ref/xamarinwatchos10/_._",
  5718. "system.io.4.3.0.nupkg.sha512",
  5719. "system.io.nuspec"
  5720. ]
  5721. },
  5722. "System.IO.FileSystem/4.3.0": {
  5723. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5724. "type": "package",
  5725. "path": "system.io.filesystem/4.3.0",
  5726. "files": [
  5727. ".nupkg.metadata",
  5728. ".signature.p7s",
  5729. "ThirdPartyNotices.txt",
  5730. "dotnet_library_license.txt",
  5731. "lib/MonoAndroid10/_._",
  5732. "lib/MonoTouch10/_._",
  5733. "lib/net46/System.IO.FileSystem.dll",
  5734. "lib/xamarinios10/_._",
  5735. "lib/xamarinmac20/_._",
  5736. "lib/xamarintvos10/_._",
  5737. "lib/xamarinwatchos10/_._",
  5738. "ref/MonoAndroid10/_._",
  5739. "ref/MonoTouch10/_._",
  5740. "ref/net46/System.IO.FileSystem.dll",
  5741. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5742. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5743. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5744. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5745. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5746. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5747. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5748. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5749. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5750. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5751. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5752. "ref/xamarinios10/_._",
  5753. "ref/xamarinmac20/_._",
  5754. "ref/xamarintvos10/_._",
  5755. "ref/xamarinwatchos10/_._",
  5756. "system.io.filesystem.4.3.0.nupkg.sha512",
  5757. "system.io.filesystem.nuspec"
  5758. ]
  5759. },
  5760. "System.IO.FileSystem.Primitives/4.3.0": {
  5761. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5762. "type": "package",
  5763. "path": "system.io.filesystem.primitives/4.3.0",
  5764. "files": [
  5765. ".nupkg.metadata",
  5766. ".signature.p7s",
  5767. "ThirdPartyNotices.txt",
  5768. "dotnet_library_license.txt",
  5769. "lib/MonoAndroid10/_._",
  5770. "lib/MonoTouch10/_._",
  5771. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5772. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5773. "lib/xamarinios10/_._",
  5774. "lib/xamarinmac20/_._",
  5775. "lib/xamarintvos10/_._",
  5776. "lib/xamarinwatchos10/_._",
  5777. "ref/MonoAndroid10/_._",
  5778. "ref/MonoTouch10/_._",
  5779. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5780. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5781. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5782. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5783. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5784. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5785. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5786. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5787. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5788. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5789. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5790. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5791. "ref/xamarinios10/_._",
  5792. "ref/xamarinmac20/_._",
  5793. "ref/xamarintvos10/_._",
  5794. "ref/xamarinwatchos10/_._",
  5795. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5796. "system.io.filesystem.primitives.nuspec"
  5797. ]
  5798. },
  5799. "System.IO.Pipelines/5.0.0": {
  5800. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  5801. "type": "package",
  5802. "path": "system.io.pipelines/5.0.0",
  5803. "files": [
  5804. ".nupkg.metadata",
  5805. ".signature.p7s",
  5806. "Icon.png",
  5807. "LICENSE.TXT",
  5808. "THIRD-PARTY-NOTICES.TXT",
  5809. "lib/net461/System.IO.Pipelines.dll",
  5810. "lib/net461/System.IO.Pipelines.xml",
  5811. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  5812. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  5813. "lib/netstandard1.3/System.IO.Pipelines.dll",
  5814. "lib/netstandard1.3/System.IO.Pipelines.xml",
  5815. "lib/netstandard2.0/System.IO.Pipelines.dll",
  5816. "lib/netstandard2.0/System.IO.Pipelines.xml",
  5817. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  5818. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  5819. "system.io.pipelines.5.0.0.nupkg.sha512",
  5820. "system.io.pipelines.nuspec",
  5821. "useSharedDesignerContext.txt",
  5822. "version.txt"
  5823. ]
  5824. },
  5825. "System.Linq/4.3.0": {
  5826. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5827. "type": "package",
  5828. "path": "system.linq/4.3.0",
  5829. "files": [
  5830. ".nupkg.metadata",
  5831. ".signature.p7s",
  5832. "ThirdPartyNotices.txt",
  5833. "dotnet_library_license.txt",
  5834. "lib/MonoAndroid10/_._",
  5835. "lib/MonoTouch10/_._",
  5836. "lib/net45/_._",
  5837. "lib/net463/System.Linq.dll",
  5838. "lib/netcore50/System.Linq.dll",
  5839. "lib/netstandard1.6/System.Linq.dll",
  5840. "lib/portable-net45+win8+wp8+wpa81/_._",
  5841. "lib/win8/_._",
  5842. "lib/wp80/_._",
  5843. "lib/wpa81/_._",
  5844. "lib/xamarinios10/_._",
  5845. "lib/xamarinmac20/_._",
  5846. "lib/xamarintvos10/_._",
  5847. "lib/xamarinwatchos10/_._",
  5848. "ref/MonoAndroid10/_._",
  5849. "ref/MonoTouch10/_._",
  5850. "ref/net45/_._",
  5851. "ref/net463/System.Linq.dll",
  5852. "ref/netcore50/System.Linq.dll",
  5853. "ref/netcore50/System.Linq.xml",
  5854. "ref/netcore50/de/System.Linq.xml",
  5855. "ref/netcore50/es/System.Linq.xml",
  5856. "ref/netcore50/fr/System.Linq.xml",
  5857. "ref/netcore50/it/System.Linq.xml",
  5858. "ref/netcore50/ja/System.Linq.xml",
  5859. "ref/netcore50/ko/System.Linq.xml",
  5860. "ref/netcore50/ru/System.Linq.xml",
  5861. "ref/netcore50/zh-hans/System.Linq.xml",
  5862. "ref/netcore50/zh-hant/System.Linq.xml",
  5863. "ref/netstandard1.0/System.Linq.dll",
  5864. "ref/netstandard1.0/System.Linq.xml",
  5865. "ref/netstandard1.0/de/System.Linq.xml",
  5866. "ref/netstandard1.0/es/System.Linq.xml",
  5867. "ref/netstandard1.0/fr/System.Linq.xml",
  5868. "ref/netstandard1.0/it/System.Linq.xml",
  5869. "ref/netstandard1.0/ja/System.Linq.xml",
  5870. "ref/netstandard1.0/ko/System.Linq.xml",
  5871. "ref/netstandard1.0/ru/System.Linq.xml",
  5872. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5873. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5874. "ref/netstandard1.6/System.Linq.dll",
  5875. "ref/netstandard1.6/System.Linq.xml",
  5876. "ref/netstandard1.6/de/System.Linq.xml",
  5877. "ref/netstandard1.6/es/System.Linq.xml",
  5878. "ref/netstandard1.6/fr/System.Linq.xml",
  5879. "ref/netstandard1.6/it/System.Linq.xml",
  5880. "ref/netstandard1.6/ja/System.Linq.xml",
  5881. "ref/netstandard1.6/ko/System.Linq.xml",
  5882. "ref/netstandard1.6/ru/System.Linq.xml",
  5883. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5884. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5885. "ref/portable-net45+win8+wp8+wpa81/_._",
  5886. "ref/win8/_._",
  5887. "ref/wp80/_._",
  5888. "ref/wpa81/_._",
  5889. "ref/xamarinios10/_._",
  5890. "ref/xamarinmac20/_._",
  5891. "ref/xamarintvos10/_._",
  5892. "ref/xamarinwatchos10/_._",
  5893. "system.linq.4.3.0.nupkg.sha512",
  5894. "system.linq.nuspec"
  5895. ]
  5896. },
  5897. "System.Memory/4.5.5": {
  5898. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  5899. "type": "package",
  5900. "path": "system.memory/4.5.5",
  5901. "files": [
  5902. ".nupkg.metadata",
  5903. ".signature.p7s",
  5904. "LICENSE.TXT",
  5905. "THIRD-PARTY-NOTICES.TXT",
  5906. "lib/net461/System.Memory.dll",
  5907. "lib/net461/System.Memory.xml",
  5908. "lib/netcoreapp2.1/_._",
  5909. "lib/netstandard1.1/System.Memory.dll",
  5910. "lib/netstandard1.1/System.Memory.xml",
  5911. "lib/netstandard2.0/System.Memory.dll",
  5912. "lib/netstandard2.0/System.Memory.xml",
  5913. "ref/netcoreapp2.1/_._",
  5914. "system.memory.4.5.5.nupkg.sha512",
  5915. "system.memory.nuspec",
  5916. "useSharedDesignerContext.txt",
  5917. "version.txt"
  5918. ]
  5919. },
  5920. "System.Net.Http/4.3.2": {
  5921. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  5922. "type": "package",
  5923. "path": "system.net.http/4.3.2",
  5924. "files": [
  5925. ".nupkg.metadata",
  5926. ".signature.p7s",
  5927. "ThirdPartyNotices.txt",
  5928. "dotnet_library_license.txt",
  5929. "lib/Xamarinmac20/_._",
  5930. "lib/monoandroid10/_._",
  5931. "lib/monotouch10/_._",
  5932. "lib/net45/_._",
  5933. "lib/net46/System.Net.Http.dll",
  5934. "lib/portable-net45+win8+wpa81/_._",
  5935. "lib/win8/_._",
  5936. "lib/wpa81/_._",
  5937. "lib/xamarinios10/_._",
  5938. "lib/xamarintvos10/_._",
  5939. "lib/xamarinwatchos10/_._",
  5940. "ref/Xamarinmac20/_._",
  5941. "ref/monoandroid10/_._",
  5942. "ref/monotouch10/_._",
  5943. "ref/net45/_._",
  5944. "ref/net46/System.Net.Http.dll",
  5945. "ref/netcore50/System.Net.Http.dll",
  5946. "ref/netstandard1.1/System.Net.Http.dll",
  5947. "ref/netstandard1.3/System.Net.Http.dll",
  5948. "ref/portable-net45+win8+wpa81/_._",
  5949. "ref/win8/_._",
  5950. "ref/wpa81/_._",
  5951. "ref/xamarinios10/_._",
  5952. "ref/xamarintvos10/_._",
  5953. "ref/xamarinwatchos10/_._",
  5954. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5955. "runtimes/win/lib/net46/System.Net.Http.dll",
  5956. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5957. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5958. "system.net.http.4.3.2.nupkg.sha512",
  5959. "system.net.http.nuspec"
  5960. ]
  5961. },
  5962. "System.Net.Primitives/4.3.0": {
  5963. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5964. "type": "package",
  5965. "path": "system.net.primitives/4.3.0",
  5966. "files": [
  5967. ".nupkg.metadata",
  5968. ".signature.p7s",
  5969. "ThirdPartyNotices.txt",
  5970. "dotnet_library_license.txt",
  5971. "lib/MonoAndroid10/_._",
  5972. "lib/MonoTouch10/_._",
  5973. "lib/net45/_._",
  5974. "lib/portable-net45+win8+wp8+wpa81/_._",
  5975. "lib/win8/_._",
  5976. "lib/wp80/_._",
  5977. "lib/wpa81/_._",
  5978. "lib/xamarinios10/_._",
  5979. "lib/xamarinmac20/_._",
  5980. "lib/xamarintvos10/_._",
  5981. "lib/xamarinwatchos10/_._",
  5982. "ref/MonoAndroid10/_._",
  5983. "ref/MonoTouch10/_._",
  5984. "ref/net45/_._",
  5985. "ref/netcore50/System.Net.Primitives.dll",
  5986. "ref/netcore50/System.Net.Primitives.xml",
  5987. "ref/netcore50/de/System.Net.Primitives.xml",
  5988. "ref/netcore50/es/System.Net.Primitives.xml",
  5989. "ref/netcore50/fr/System.Net.Primitives.xml",
  5990. "ref/netcore50/it/System.Net.Primitives.xml",
  5991. "ref/netcore50/ja/System.Net.Primitives.xml",
  5992. "ref/netcore50/ko/System.Net.Primitives.xml",
  5993. "ref/netcore50/ru/System.Net.Primitives.xml",
  5994. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5995. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5996. "ref/netstandard1.0/System.Net.Primitives.dll",
  5997. "ref/netstandard1.0/System.Net.Primitives.xml",
  5998. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5999. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6000. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6001. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6002. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6003. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6004. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6005. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6006. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6007. "ref/netstandard1.1/System.Net.Primitives.dll",
  6008. "ref/netstandard1.1/System.Net.Primitives.xml",
  6009. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6010. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6011. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6012. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6013. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6014. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6015. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6016. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6017. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6018. "ref/netstandard1.3/System.Net.Primitives.dll",
  6019. "ref/netstandard1.3/System.Net.Primitives.xml",
  6020. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6021. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6022. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6023. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6024. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6025. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6026. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6027. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6028. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6029. "ref/portable-net45+win8+wp8+wpa81/_._",
  6030. "ref/win8/_._",
  6031. "ref/wp80/_._",
  6032. "ref/wpa81/_._",
  6033. "ref/xamarinios10/_._",
  6034. "ref/xamarinmac20/_._",
  6035. "ref/xamarintvos10/_._",
  6036. "ref/xamarinwatchos10/_._",
  6037. "system.net.primitives.4.3.0.nupkg.sha512",
  6038. "system.net.primitives.nuspec"
  6039. ]
  6040. },
  6041. "System.Reflection/4.3.0": {
  6042. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6043. "type": "package",
  6044. "path": "system.reflection/4.3.0",
  6045. "files": [
  6046. ".nupkg.metadata",
  6047. ".signature.p7s",
  6048. "ThirdPartyNotices.txt",
  6049. "dotnet_library_license.txt",
  6050. "lib/MonoAndroid10/_._",
  6051. "lib/MonoTouch10/_._",
  6052. "lib/net45/_._",
  6053. "lib/net462/System.Reflection.dll",
  6054. "lib/portable-net45+win8+wp8+wpa81/_._",
  6055. "lib/win8/_._",
  6056. "lib/wp80/_._",
  6057. "lib/wpa81/_._",
  6058. "lib/xamarinios10/_._",
  6059. "lib/xamarinmac20/_._",
  6060. "lib/xamarintvos10/_._",
  6061. "lib/xamarinwatchos10/_._",
  6062. "ref/MonoAndroid10/_._",
  6063. "ref/MonoTouch10/_._",
  6064. "ref/net45/_._",
  6065. "ref/net462/System.Reflection.dll",
  6066. "ref/netcore50/System.Reflection.dll",
  6067. "ref/netcore50/System.Reflection.xml",
  6068. "ref/netcore50/de/System.Reflection.xml",
  6069. "ref/netcore50/es/System.Reflection.xml",
  6070. "ref/netcore50/fr/System.Reflection.xml",
  6071. "ref/netcore50/it/System.Reflection.xml",
  6072. "ref/netcore50/ja/System.Reflection.xml",
  6073. "ref/netcore50/ko/System.Reflection.xml",
  6074. "ref/netcore50/ru/System.Reflection.xml",
  6075. "ref/netcore50/zh-hans/System.Reflection.xml",
  6076. "ref/netcore50/zh-hant/System.Reflection.xml",
  6077. "ref/netstandard1.0/System.Reflection.dll",
  6078. "ref/netstandard1.0/System.Reflection.xml",
  6079. "ref/netstandard1.0/de/System.Reflection.xml",
  6080. "ref/netstandard1.0/es/System.Reflection.xml",
  6081. "ref/netstandard1.0/fr/System.Reflection.xml",
  6082. "ref/netstandard1.0/it/System.Reflection.xml",
  6083. "ref/netstandard1.0/ja/System.Reflection.xml",
  6084. "ref/netstandard1.0/ko/System.Reflection.xml",
  6085. "ref/netstandard1.0/ru/System.Reflection.xml",
  6086. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6087. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6088. "ref/netstandard1.3/System.Reflection.dll",
  6089. "ref/netstandard1.3/System.Reflection.xml",
  6090. "ref/netstandard1.3/de/System.Reflection.xml",
  6091. "ref/netstandard1.3/es/System.Reflection.xml",
  6092. "ref/netstandard1.3/fr/System.Reflection.xml",
  6093. "ref/netstandard1.3/it/System.Reflection.xml",
  6094. "ref/netstandard1.3/ja/System.Reflection.xml",
  6095. "ref/netstandard1.3/ko/System.Reflection.xml",
  6096. "ref/netstandard1.3/ru/System.Reflection.xml",
  6097. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6098. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6099. "ref/netstandard1.5/System.Reflection.dll",
  6100. "ref/netstandard1.5/System.Reflection.xml",
  6101. "ref/netstandard1.5/de/System.Reflection.xml",
  6102. "ref/netstandard1.5/es/System.Reflection.xml",
  6103. "ref/netstandard1.5/fr/System.Reflection.xml",
  6104. "ref/netstandard1.5/it/System.Reflection.xml",
  6105. "ref/netstandard1.5/ja/System.Reflection.xml",
  6106. "ref/netstandard1.5/ko/System.Reflection.xml",
  6107. "ref/netstandard1.5/ru/System.Reflection.xml",
  6108. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6109. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6110. "ref/portable-net45+win8+wp8+wpa81/_._",
  6111. "ref/win8/_._",
  6112. "ref/wp80/_._",
  6113. "ref/wpa81/_._",
  6114. "ref/xamarinios10/_._",
  6115. "ref/xamarinmac20/_._",
  6116. "ref/xamarintvos10/_._",
  6117. "ref/xamarinwatchos10/_._",
  6118. "system.reflection.4.3.0.nupkg.sha512",
  6119. "system.reflection.nuspec"
  6120. ]
  6121. },
  6122. "System.Reflection.Emit/4.7.0": {
  6123. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  6124. "type": "package",
  6125. "path": "system.reflection.emit/4.7.0",
  6126. "files": [
  6127. ".nupkg.metadata",
  6128. ".signature.p7s",
  6129. "LICENSE.TXT",
  6130. "THIRD-PARTY-NOTICES.TXT",
  6131. "lib/MonoAndroid10/_._",
  6132. "lib/MonoTouch10/_._",
  6133. "lib/net45/_._",
  6134. "lib/netcore50/System.Reflection.Emit.dll",
  6135. "lib/netcoreapp2.0/_._",
  6136. "lib/netstandard1.1/System.Reflection.Emit.dll",
  6137. "lib/netstandard1.1/System.Reflection.Emit.xml",
  6138. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6139. "lib/netstandard2.0/System.Reflection.Emit.dll",
  6140. "lib/netstandard2.0/System.Reflection.Emit.xml",
  6141. "lib/netstandard2.1/_._",
  6142. "lib/xamarinios10/_._",
  6143. "lib/xamarinmac20/_._",
  6144. "lib/xamarintvos10/_._",
  6145. "lib/xamarinwatchos10/_._",
  6146. "ref/MonoAndroid10/_._",
  6147. "ref/MonoTouch10/_._",
  6148. "ref/net45/_._",
  6149. "ref/netcoreapp2.0/_._",
  6150. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6151. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6152. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6153. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6154. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6155. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6156. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6157. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6158. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6159. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6160. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6161. "ref/netstandard2.0/System.Reflection.Emit.dll",
  6162. "ref/netstandard2.0/System.Reflection.Emit.xml",
  6163. "ref/netstandard2.1/_._",
  6164. "ref/xamarinios10/_._",
  6165. "ref/xamarinmac20/_._",
  6166. "ref/xamarintvos10/_._",
  6167. "ref/xamarinwatchos10/_._",
  6168. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  6169. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  6170. "system.reflection.emit.4.7.0.nupkg.sha512",
  6171. "system.reflection.emit.nuspec",
  6172. "useSharedDesignerContext.txt",
  6173. "version.txt"
  6174. ]
  6175. },
  6176. "System.Reflection.Primitives/4.3.0": {
  6177. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6178. "type": "package",
  6179. "path": "system.reflection.primitives/4.3.0",
  6180. "files": [
  6181. ".nupkg.metadata",
  6182. ".signature.p7s",
  6183. "ThirdPartyNotices.txt",
  6184. "dotnet_library_license.txt",
  6185. "lib/MonoAndroid10/_._",
  6186. "lib/MonoTouch10/_._",
  6187. "lib/net45/_._",
  6188. "lib/portable-net45+win8+wp8+wpa81/_._",
  6189. "lib/win8/_._",
  6190. "lib/wp80/_._",
  6191. "lib/wpa81/_._",
  6192. "lib/xamarinios10/_._",
  6193. "lib/xamarinmac20/_._",
  6194. "lib/xamarintvos10/_._",
  6195. "lib/xamarinwatchos10/_._",
  6196. "ref/MonoAndroid10/_._",
  6197. "ref/MonoTouch10/_._",
  6198. "ref/net45/_._",
  6199. "ref/netcore50/System.Reflection.Primitives.dll",
  6200. "ref/netcore50/System.Reflection.Primitives.xml",
  6201. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6202. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6203. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6204. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6205. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6206. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6207. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6208. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6209. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6210. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6211. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6212. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6213. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6214. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6215. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6216. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6217. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6218. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6219. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6220. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6221. "ref/portable-net45+win8+wp8+wpa81/_._",
  6222. "ref/win8/_._",
  6223. "ref/wp80/_._",
  6224. "ref/wpa81/_._",
  6225. "ref/xamarinios10/_._",
  6226. "ref/xamarinmac20/_._",
  6227. "ref/xamarintvos10/_._",
  6228. "ref/xamarinwatchos10/_._",
  6229. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6230. "system.reflection.primitives.nuspec"
  6231. ]
  6232. },
  6233. "System.Resources.ResourceManager/4.3.0": {
  6234. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6235. "type": "package",
  6236. "path": "system.resources.resourcemanager/4.3.0",
  6237. "files": [
  6238. ".nupkg.metadata",
  6239. ".signature.p7s",
  6240. "ThirdPartyNotices.txt",
  6241. "dotnet_library_license.txt",
  6242. "lib/MonoAndroid10/_._",
  6243. "lib/MonoTouch10/_._",
  6244. "lib/net45/_._",
  6245. "lib/portable-net45+win8+wp8+wpa81/_._",
  6246. "lib/win8/_._",
  6247. "lib/wp80/_._",
  6248. "lib/wpa81/_._",
  6249. "lib/xamarinios10/_._",
  6250. "lib/xamarinmac20/_._",
  6251. "lib/xamarintvos10/_._",
  6252. "lib/xamarinwatchos10/_._",
  6253. "ref/MonoAndroid10/_._",
  6254. "ref/MonoTouch10/_._",
  6255. "ref/net45/_._",
  6256. "ref/netcore50/System.Resources.ResourceManager.dll",
  6257. "ref/netcore50/System.Resources.ResourceManager.xml",
  6258. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6259. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6260. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6261. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6262. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6263. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6264. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6265. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6266. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6267. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6268. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6269. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6270. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6271. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6272. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6273. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6274. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6275. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6276. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6277. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6278. "ref/portable-net45+win8+wp8+wpa81/_._",
  6279. "ref/win8/_._",
  6280. "ref/wp80/_._",
  6281. "ref/wpa81/_._",
  6282. "ref/xamarinios10/_._",
  6283. "ref/xamarinmac20/_._",
  6284. "ref/xamarintvos10/_._",
  6285. "ref/xamarinwatchos10/_._",
  6286. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6287. "system.resources.resourcemanager.nuspec"
  6288. ]
  6289. },
  6290. "System.Runtime/4.3.0": {
  6291. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6292. "type": "package",
  6293. "path": "system.runtime/4.3.0",
  6294. "files": [
  6295. ".nupkg.metadata",
  6296. ".signature.p7s",
  6297. "ThirdPartyNotices.txt",
  6298. "dotnet_library_license.txt",
  6299. "lib/MonoAndroid10/_._",
  6300. "lib/MonoTouch10/_._",
  6301. "lib/net45/_._",
  6302. "lib/net462/System.Runtime.dll",
  6303. "lib/portable-net45+win8+wp80+wpa81/_._",
  6304. "lib/win8/_._",
  6305. "lib/wp80/_._",
  6306. "lib/wpa81/_._",
  6307. "lib/xamarinios10/_._",
  6308. "lib/xamarinmac20/_._",
  6309. "lib/xamarintvos10/_._",
  6310. "lib/xamarinwatchos10/_._",
  6311. "ref/MonoAndroid10/_._",
  6312. "ref/MonoTouch10/_._",
  6313. "ref/net45/_._",
  6314. "ref/net462/System.Runtime.dll",
  6315. "ref/netcore50/System.Runtime.dll",
  6316. "ref/netcore50/System.Runtime.xml",
  6317. "ref/netcore50/de/System.Runtime.xml",
  6318. "ref/netcore50/es/System.Runtime.xml",
  6319. "ref/netcore50/fr/System.Runtime.xml",
  6320. "ref/netcore50/it/System.Runtime.xml",
  6321. "ref/netcore50/ja/System.Runtime.xml",
  6322. "ref/netcore50/ko/System.Runtime.xml",
  6323. "ref/netcore50/ru/System.Runtime.xml",
  6324. "ref/netcore50/zh-hans/System.Runtime.xml",
  6325. "ref/netcore50/zh-hant/System.Runtime.xml",
  6326. "ref/netstandard1.0/System.Runtime.dll",
  6327. "ref/netstandard1.0/System.Runtime.xml",
  6328. "ref/netstandard1.0/de/System.Runtime.xml",
  6329. "ref/netstandard1.0/es/System.Runtime.xml",
  6330. "ref/netstandard1.0/fr/System.Runtime.xml",
  6331. "ref/netstandard1.0/it/System.Runtime.xml",
  6332. "ref/netstandard1.0/ja/System.Runtime.xml",
  6333. "ref/netstandard1.0/ko/System.Runtime.xml",
  6334. "ref/netstandard1.0/ru/System.Runtime.xml",
  6335. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6336. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6337. "ref/netstandard1.2/System.Runtime.dll",
  6338. "ref/netstandard1.2/System.Runtime.xml",
  6339. "ref/netstandard1.2/de/System.Runtime.xml",
  6340. "ref/netstandard1.2/es/System.Runtime.xml",
  6341. "ref/netstandard1.2/fr/System.Runtime.xml",
  6342. "ref/netstandard1.2/it/System.Runtime.xml",
  6343. "ref/netstandard1.2/ja/System.Runtime.xml",
  6344. "ref/netstandard1.2/ko/System.Runtime.xml",
  6345. "ref/netstandard1.2/ru/System.Runtime.xml",
  6346. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6347. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6348. "ref/netstandard1.3/System.Runtime.dll",
  6349. "ref/netstandard1.3/System.Runtime.xml",
  6350. "ref/netstandard1.3/de/System.Runtime.xml",
  6351. "ref/netstandard1.3/es/System.Runtime.xml",
  6352. "ref/netstandard1.3/fr/System.Runtime.xml",
  6353. "ref/netstandard1.3/it/System.Runtime.xml",
  6354. "ref/netstandard1.3/ja/System.Runtime.xml",
  6355. "ref/netstandard1.3/ko/System.Runtime.xml",
  6356. "ref/netstandard1.3/ru/System.Runtime.xml",
  6357. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6358. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6359. "ref/netstandard1.5/System.Runtime.dll",
  6360. "ref/netstandard1.5/System.Runtime.xml",
  6361. "ref/netstandard1.5/de/System.Runtime.xml",
  6362. "ref/netstandard1.5/es/System.Runtime.xml",
  6363. "ref/netstandard1.5/fr/System.Runtime.xml",
  6364. "ref/netstandard1.5/it/System.Runtime.xml",
  6365. "ref/netstandard1.5/ja/System.Runtime.xml",
  6366. "ref/netstandard1.5/ko/System.Runtime.xml",
  6367. "ref/netstandard1.5/ru/System.Runtime.xml",
  6368. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6369. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6370. "ref/portable-net45+win8+wp80+wpa81/_._",
  6371. "ref/win8/_._",
  6372. "ref/wp80/_._",
  6373. "ref/wpa81/_._",
  6374. "ref/xamarinios10/_._",
  6375. "ref/xamarinmac20/_._",
  6376. "ref/xamarintvos10/_._",
  6377. "ref/xamarinwatchos10/_._",
  6378. "system.runtime.4.3.0.nupkg.sha512",
  6379. "system.runtime.nuspec"
  6380. ]
  6381. },
  6382. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  6383. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  6384. "type": "package",
  6385. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  6386. "files": [
  6387. ".nupkg.metadata",
  6388. ".signature.p7s",
  6389. "Icon.png",
  6390. "LICENSE.TXT",
  6391. "THIRD-PARTY-NOTICES.TXT",
  6392. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  6393. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  6394. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6395. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6396. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6397. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6398. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6399. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6400. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6401. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6402. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6403. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6404. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6405. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6406. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  6407. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  6408. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  6409. "system.runtime.compilerservices.unsafe.nuspec",
  6410. "useSharedDesignerContext.txt",
  6411. "version.txt"
  6412. ]
  6413. },
  6414. "System.Runtime.Extensions/4.3.0": {
  6415. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6416. "type": "package",
  6417. "path": "system.runtime.extensions/4.3.0",
  6418. "files": [
  6419. ".nupkg.metadata",
  6420. ".signature.p7s",
  6421. "ThirdPartyNotices.txt",
  6422. "dotnet_library_license.txt",
  6423. "lib/MonoAndroid10/_._",
  6424. "lib/MonoTouch10/_._",
  6425. "lib/net45/_._",
  6426. "lib/net462/System.Runtime.Extensions.dll",
  6427. "lib/portable-net45+win8+wp8+wpa81/_._",
  6428. "lib/win8/_._",
  6429. "lib/wp80/_._",
  6430. "lib/wpa81/_._",
  6431. "lib/xamarinios10/_._",
  6432. "lib/xamarinmac20/_._",
  6433. "lib/xamarintvos10/_._",
  6434. "lib/xamarinwatchos10/_._",
  6435. "ref/MonoAndroid10/_._",
  6436. "ref/MonoTouch10/_._",
  6437. "ref/net45/_._",
  6438. "ref/net462/System.Runtime.Extensions.dll",
  6439. "ref/netcore50/System.Runtime.Extensions.dll",
  6440. "ref/netcore50/System.Runtime.Extensions.xml",
  6441. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6442. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6443. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6444. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6445. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6446. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6447. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6448. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6449. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6450. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6451. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6452. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6453. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6454. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6455. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6456. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6457. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6458. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6459. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6460. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6461. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6462. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6463. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6464. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6465. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6466. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6467. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6468. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6469. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6470. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6471. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6472. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6473. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6474. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6475. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6476. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6477. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6478. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6479. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6480. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6481. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6482. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6483. "ref/portable-net45+win8+wp8+wpa81/_._",
  6484. "ref/win8/_._",
  6485. "ref/wp80/_._",
  6486. "ref/wpa81/_._",
  6487. "ref/xamarinios10/_._",
  6488. "ref/xamarinmac20/_._",
  6489. "ref/xamarintvos10/_._",
  6490. "ref/xamarinwatchos10/_._",
  6491. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6492. "system.runtime.extensions.nuspec"
  6493. ]
  6494. },
  6495. "System.Runtime.Handles/4.3.0": {
  6496. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6497. "type": "package",
  6498. "path": "system.runtime.handles/4.3.0",
  6499. "files": [
  6500. ".nupkg.metadata",
  6501. ".signature.p7s",
  6502. "ThirdPartyNotices.txt",
  6503. "dotnet_library_license.txt",
  6504. "lib/MonoAndroid10/_._",
  6505. "lib/MonoTouch10/_._",
  6506. "lib/net46/_._",
  6507. "lib/xamarinios10/_._",
  6508. "lib/xamarinmac20/_._",
  6509. "lib/xamarintvos10/_._",
  6510. "lib/xamarinwatchos10/_._",
  6511. "ref/MonoAndroid10/_._",
  6512. "ref/MonoTouch10/_._",
  6513. "ref/net46/_._",
  6514. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6515. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6516. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6517. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6518. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6519. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6520. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6521. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6522. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6523. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6524. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6525. "ref/xamarinios10/_._",
  6526. "ref/xamarinmac20/_._",
  6527. "ref/xamarintvos10/_._",
  6528. "ref/xamarinwatchos10/_._",
  6529. "system.runtime.handles.4.3.0.nupkg.sha512",
  6530. "system.runtime.handles.nuspec"
  6531. ]
  6532. },
  6533. "System.Runtime.InteropServices/4.3.0": {
  6534. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6535. "type": "package",
  6536. "path": "system.runtime.interopservices/4.3.0",
  6537. "files": [
  6538. ".nupkg.metadata",
  6539. ".signature.p7s",
  6540. "ThirdPartyNotices.txt",
  6541. "dotnet_library_license.txt",
  6542. "lib/MonoAndroid10/_._",
  6543. "lib/MonoTouch10/_._",
  6544. "lib/net45/_._",
  6545. "lib/net462/System.Runtime.InteropServices.dll",
  6546. "lib/net463/System.Runtime.InteropServices.dll",
  6547. "lib/portable-net45+win8+wpa81/_._",
  6548. "lib/win8/_._",
  6549. "lib/wpa81/_._",
  6550. "lib/xamarinios10/_._",
  6551. "lib/xamarinmac20/_._",
  6552. "lib/xamarintvos10/_._",
  6553. "lib/xamarinwatchos10/_._",
  6554. "ref/MonoAndroid10/_._",
  6555. "ref/MonoTouch10/_._",
  6556. "ref/net45/_._",
  6557. "ref/net462/System.Runtime.InteropServices.dll",
  6558. "ref/net463/System.Runtime.InteropServices.dll",
  6559. "ref/netcore50/System.Runtime.InteropServices.dll",
  6560. "ref/netcore50/System.Runtime.InteropServices.xml",
  6561. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6562. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6563. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6564. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6565. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6566. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6567. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6568. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6569. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6570. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6571. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6572. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6573. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6574. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6575. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6576. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6577. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6578. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6579. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6580. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6581. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6582. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6583. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6584. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6585. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6586. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6587. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6588. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6589. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6590. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6591. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6592. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6593. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6594. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6595. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6596. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6597. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6598. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6599. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6600. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6601. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6602. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6603. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6604. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6605. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6606. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6607. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6608. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6609. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6610. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6611. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6612. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6613. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6614. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6615. "ref/portable-net45+win8+wpa81/_._",
  6616. "ref/win8/_._",
  6617. "ref/wpa81/_._",
  6618. "ref/xamarinios10/_._",
  6619. "ref/xamarinmac20/_._",
  6620. "ref/xamarintvos10/_._",
  6621. "ref/xamarinwatchos10/_._",
  6622. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6623. "system.runtime.interopservices.nuspec"
  6624. ]
  6625. },
  6626. "System.Runtime.Numerics/4.3.0": {
  6627. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6628. "type": "package",
  6629. "path": "system.runtime.numerics/4.3.0",
  6630. "files": [
  6631. ".nupkg.metadata",
  6632. ".signature.p7s",
  6633. "ThirdPartyNotices.txt",
  6634. "dotnet_library_license.txt",
  6635. "lib/MonoAndroid10/_._",
  6636. "lib/MonoTouch10/_._",
  6637. "lib/net45/_._",
  6638. "lib/netcore50/System.Runtime.Numerics.dll",
  6639. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6640. "lib/portable-net45+win8+wpa81/_._",
  6641. "lib/win8/_._",
  6642. "lib/wpa81/_._",
  6643. "lib/xamarinios10/_._",
  6644. "lib/xamarinmac20/_._",
  6645. "lib/xamarintvos10/_._",
  6646. "lib/xamarinwatchos10/_._",
  6647. "ref/MonoAndroid10/_._",
  6648. "ref/MonoTouch10/_._",
  6649. "ref/net45/_._",
  6650. "ref/netcore50/System.Runtime.Numerics.dll",
  6651. "ref/netcore50/System.Runtime.Numerics.xml",
  6652. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6653. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6654. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6655. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6656. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6657. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6658. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6659. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6660. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6661. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6662. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6663. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6664. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6665. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6666. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6667. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6668. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6669. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6670. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6671. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6672. "ref/portable-net45+win8+wpa81/_._",
  6673. "ref/win8/_._",
  6674. "ref/wpa81/_._",
  6675. "ref/xamarinios10/_._",
  6676. "ref/xamarinmac20/_._",
  6677. "ref/xamarintvos10/_._",
  6678. "ref/xamarinwatchos10/_._",
  6679. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6680. "system.runtime.numerics.nuspec"
  6681. ]
  6682. },
  6683. "System.Security.AccessControl/6.0.0": {
  6684. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  6685. "type": "package",
  6686. "path": "system.security.accesscontrol/6.0.0",
  6687. "files": [
  6688. ".nupkg.metadata",
  6689. ".signature.p7s",
  6690. "Icon.png",
  6691. "LICENSE.TXT",
  6692. "THIRD-PARTY-NOTICES.TXT",
  6693. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  6694. "buildTransitive/netcoreapp3.1/_._",
  6695. "lib/net461/System.Security.AccessControl.dll",
  6696. "lib/net461/System.Security.AccessControl.xml",
  6697. "lib/net6.0/System.Security.AccessControl.dll",
  6698. "lib/net6.0/System.Security.AccessControl.xml",
  6699. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6700. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6701. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6702. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6703. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  6704. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  6705. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  6706. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  6707. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  6708. "system.security.accesscontrol.nuspec",
  6709. "useSharedDesignerContext.txt"
  6710. ]
  6711. },
  6712. "System.Security.Cryptography.Algorithms/4.3.0": {
  6713. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6714. "type": "package",
  6715. "path": "system.security.cryptography.algorithms/4.3.0",
  6716. "files": [
  6717. ".nupkg.metadata",
  6718. ".signature.p7s",
  6719. "ThirdPartyNotices.txt",
  6720. "dotnet_library_license.txt",
  6721. "lib/MonoAndroid10/_._",
  6722. "lib/MonoTouch10/_._",
  6723. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6724. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6725. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6726. "lib/xamarinios10/_._",
  6727. "lib/xamarinmac20/_._",
  6728. "lib/xamarintvos10/_._",
  6729. "lib/xamarinwatchos10/_._",
  6730. "ref/MonoAndroid10/_._",
  6731. "ref/MonoTouch10/_._",
  6732. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6733. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6734. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6735. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6736. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6737. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6738. "ref/xamarinios10/_._",
  6739. "ref/xamarinmac20/_._",
  6740. "ref/xamarintvos10/_._",
  6741. "ref/xamarinwatchos10/_._",
  6742. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6743. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6744. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6745. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6746. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6747. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6748. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6749. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6750. "system.security.cryptography.algorithms.nuspec"
  6751. ]
  6752. },
  6753. "System.Security.Cryptography.Cng/5.0.0": {
  6754. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  6755. "type": "package",
  6756. "path": "system.security.cryptography.cng/5.0.0",
  6757. "files": [
  6758. ".nupkg.metadata",
  6759. ".signature.p7s",
  6760. "Icon.png",
  6761. "LICENSE.TXT",
  6762. "THIRD-PARTY-NOTICES.TXT",
  6763. "lib/MonoAndroid10/_._",
  6764. "lib/MonoTouch10/_._",
  6765. "lib/net46/System.Security.Cryptography.Cng.dll",
  6766. "lib/net461/System.Security.Cryptography.Cng.dll",
  6767. "lib/net461/System.Security.Cryptography.Cng.xml",
  6768. "lib/net462/System.Security.Cryptography.Cng.dll",
  6769. "lib/net462/System.Security.Cryptography.Cng.xml",
  6770. "lib/net47/System.Security.Cryptography.Cng.dll",
  6771. "lib/net47/System.Security.Cryptography.Cng.xml",
  6772. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6773. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  6774. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  6775. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6776. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6777. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6778. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6779. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6780. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  6781. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  6782. "lib/uap10.0.16299/_._",
  6783. "lib/xamarinios10/_._",
  6784. "lib/xamarinmac20/_._",
  6785. "lib/xamarintvos10/_._",
  6786. "lib/xamarinwatchos10/_._",
  6787. "ref/MonoAndroid10/_._",
  6788. "ref/MonoTouch10/_._",
  6789. "ref/net46/System.Security.Cryptography.Cng.dll",
  6790. "ref/net461/System.Security.Cryptography.Cng.dll",
  6791. "ref/net461/System.Security.Cryptography.Cng.xml",
  6792. "ref/net462/System.Security.Cryptography.Cng.dll",
  6793. "ref/net462/System.Security.Cryptography.Cng.xml",
  6794. "ref/net47/System.Security.Cryptography.Cng.dll",
  6795. "ref/net47/System.Security.Cryptography.Cng.xml",
  6796. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6797. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6798. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6799. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6800. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  6801. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  6802. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6803. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6804. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6805. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6806. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6807. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  6808. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  6809. "ref/uap10.0.16299/_._",
  6810. "ref/xamarinios10/_._",
  6811. "ref/xamarinmac20/_._",
  6812. "ref/xamarintvos10/_._",
  6813. "ref/xamarinwatchos10/_._",
  6814. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6815. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6816. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  6817. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6818. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  6819. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6820. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  6821. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6822. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6823. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  6824. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  6825. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6826. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6827. "runtimes/win/lib/uap10.0.16299/_._",
  6828. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  6829. "system.security.cryptography.cng.nuspec",
  6830. "useSharedDesignerContext.txt",
  6831. "version.txt"
  6832. ]
  6833. },
  6834. "System.Security.Cryptography.Csp/4.3.0": {
  6835. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  6836. "type": "package",
  6837. "path": "system.security.cryptography.csp/4.3.0",
  6838. "files": [
  6839. ".nupkg.metadata",
  6840. ".signature.p7s",
  6841. "ThirdPartyNotices.txt",
  6842. "dotnet_library_license.txt",
  6843. "lib/MonoAndroid10/_._",
  6844. "lib/MonoTouch10/_._",
  6845. "lib/net46/System.Security.Cryptography.Csp.dll",
  6846. "lib/xamarinios10/_._",
  6847. "lib/xamarinmac20/_._",
  6848. "lib/xamarintvos10/_._",
  6849. "lib/xamarinwatchos10/_._",
  6850. "ref/MonoAndroid10/_._",
  6851. "ref/MonoTouch10/_._",
  6852. "ref/net46/System.Security.Cryptography.Csp.dll",
  6853. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6854. "ref/xamarinios10/_._",
  6855. "ref/xamarinmac20/_._",
  6856. "ref/xamarintvos10/_._",
  6857. "ref/xamarinwatchos10/_._",
  6858. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6859. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6860. "runtimes/win/lib/netcore50/_._",
  6861. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6862. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  6863. "system.security.cryptography.csp.nuspec"
  6864. ]
  6865. },
  6866. "System.Security.Cryptography.Encoding/4.3.0": {
  6867. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  6868. "type": "package",
  6869. "path": "system.security.cryptography.encoding/4.3.0",
  6870. "files": [
  6871. ".nupkg.metadata",
  6872. ".signature.p7s",
  6873. "ThirdPartyNotices.txt",
  6874. "dotnet_library_license.txt",
  6875. "lib/MonoAndroid10/_._",
  6876. "lib/MonoTouch10/_._",
  6877. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6878. "lib/xamarinios10/_._",
  6879. "lib/xamarinmac20/_._",
  6880. "lib/xamarintvos10/_._",
  6881. "lib/xamarinwatchos10/_._",
  6882. "ref/MonoAndroid10/_._",
  6883. "ref/MonoTouch10/_._",
  6884. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6885. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6886. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6887. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6888. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6889. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6890. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6891. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6892. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6893. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6894. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6895. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6896. "ref/xamarinios10/_._",
  6897. "ref/xamarinmac20/_._",
  6898. "ref/xamarintvos10/_._",
  6899. "ref/xamarinwatchos10/_._",
  6900. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6901. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6902. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6903. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  6904. "system.security.cryptography.encoding.nuspec"
  6905. ]
  6906. },
  6907. "System.Security.Cryptography.OpenSsl/4.3.0": {
  6908. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  6909. "type": "package",
  6910. "path": "system.security.cryptography.openssl/4.3.0",
  6911. "files": [
  6912. ".nupkg.metadata",
  6913. ".signature.p7s",
  6914. "ThirdPartyNotices.txt",
  6915. "dotnet_library_license.txt",
  6916. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6917. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6918. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6919. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6920. "system.security.cryptography.openssl.nuspec"
  6921. ]
  6922. },
  6923. "System.Security.Cryptography.Pkcs/6.0.1": {
  6924. "sha512": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
  6925. "type": "package",
  6926. "path": "system.security.cryptography.pkcs/6.0.1",
  6927. "files": [
  6928. ".nupkg.metadata",
  6929. ".signature.p7s",
  6930. "Icon.png",
  6931. "LICENSE.TXT",
  6932. "THIRD-PARTY-NOTICES.TXT",
  6933. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  6934. "buildTransitive/netcoreapp3.1/_._",
  6935. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  6936. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  6937. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  6938. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  6939. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  6940. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  6941. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  6942. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  6943. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  6944. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  6945. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  6946. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  6947. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  6948. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  6949. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  6950. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  6951. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  6952. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  6953. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  6954. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  6955. "system.security.cryptography.pkcs.6.0.1.nupkg.sha512",
  6956. "system.security.cryptography.pkcs.nuspec",
  6957. "useSharedDesignerContext.txt"
  6958. ]
  6959. },
  6960. "System.Security.Cryptography.Primitives/4.3.0": {
  6961. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  6962. "type": "package",
  6963. "path": "system.security.cryptography.primitives/4.3.0",
  6964. "files": [
  6965. ".nupkg.metadata",
  6966. ".signature.p7s",
  6967. "ThirdPartyNotices.txt",
  6968. "dotnet_library_license.txt",
  6969. "lib/MonoAndroid10/_._",
  6970. "lib/MonoTouch10/_._",
  6971. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6972. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6973. "lib/xamarinios10/_._",
  6974. "lib/xamarinmac20/_._",
  6975. "lib/xamarintvos10/_._",
  6976. "lib/xamarinwatchos10/_._",
  6977. "ref/MonoAndroid10/_._",
  6978. "ref/MonoTouch10/_._",
  6979. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6980. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6981. "ref/xamarinios10/_._",
  6982. "ref/xamarinmac20/_._",
  6983. "ref/xamarintvos10/_._",
  6984. "ref/xamarinwatchos10/_._",
  6985. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  6986. "system.security.cryptography.primitives.nuspec"
  6987. ]
  6988. },
  6989. "System.Security.Cryptography.ProtectedData/6.0.0": {
  6990. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  6991. "type": "package",
  6992. "path": "system.security.cryptography.protecteddata/6.0.0",
  6993. "files": [
  6994. ".nupkg.metadata",
  6995. ".signature.p7s",
  6996. "Icon.png",
  6997. "LICENSE.TXT",
  6998. "THIRD-PARTY-NOTICES.TXT",
  6999. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  7000. "buildTransitive/netcoreapp3.1/_._",
  7001. "lib/MonoAndroid10/_._",
  7002. "lib/MonoTouch10/_._",
  7003. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7004. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7005. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7006. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7007. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7008. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7009. "lib/xamarinios10/_._",
  7010. "lib/xamarinmac20/_._",
  7011. "lib/xamarintvos10/_._",
  7012. "lib/xamarinwatchos10/_._",
  7013. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7014. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7015. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7016. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7017. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7018. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7019. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  7020. "system.security.cryptography.protecteddata.nuspec",
  7021. "useSharedDesignerContext.txt"
  7022. ]
  7023. },
  7024. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7025. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7026. "type": "package",
  7027. "path": "system.security.cryptography.x509certificates/4.3.0",
  7028. "files": [
  7029. ".nupkg.metadata",
  7030. ".signature.p7s",
  7031. "ThirdPartyNotices.txt",
  7032. "dotnet_library_license.txt",
  7033. "lib/MonoAndroid10/_._",
  7034. "lib/MonoTouch10/_._",
  7035. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7036. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7037. "lib/xamarinios10/_._",
  7038. "lib/xamarinmac20/_._",
  7039. "lib/xamarintvos10/_._",
  7040. "lib/xamarinwatchos10/_._",
  7041. "ref/MonoAndroid10/_._",
  7042. "ref/MonoTouch10/_._",
  7043. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7044. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7045. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7046. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7047. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7048. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7049. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7050. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7051. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7052. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7053. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7054. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7055. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7056. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7057. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7058. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7059. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7060. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7061. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7062. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7063. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7064. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7065. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7066. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7067. "ref/xamarinios10/_._",
  7068. "ref/xamarinmac20/_._",
  7069. "ref/xamarintvos10/_._",
  7070. "ref/xamarinwatchos10/_._",
  7071. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7072. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7073. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7074. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7075. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7076. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7077. "system.security.cryptography.x509certificates.nuspec"
  7078. ]
  7079. },
  7080. "System.Security.Cryptography.Xml/6.0.1": {
  7081. "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==",
  7082. "type": "package",
  7083. "path": "system.security.cryptography.xml/6.0.1",
  7084. "files": [
  7085. ".nupkg.metadata",
  7086. ".signature.p7s",
  7087. "Icon.png",
  7088. "LICENSE.TXT",
  7089. "THIRD-PARTY-NOTICES.TXT",
  7090. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
  7091. "buildTransitive/netcoreapp3.1/_._",
  7092. "lib/net461/System.Security.Cryptography.Xml.dll",
  7093. "lib/net461/System.Security.Cryptography.Xml.xml",
  7094. "lib/net6.0/System.Security.Cryptography.Xml.dll",
  7095. "lib/net6.0/System.Security.Cryptography.Xml.xml",
  7096. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  7097. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  7098. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll",
  7099. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml",
  7100. "system.security.cryptography.xml.6.0.1.nupkg.sha512",
  7101. "system.security.cryptography.xml.nuspec",
  7102. "useSharedDesignerContext.txt"
  7103. ]
  7104. },
  7105. "System.Security.Permissions/6.0.0": {
  7106. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  7107. "type": "package",
  7108. "path": "system.security.permissions/6.0.0",
  7109. "files": [
  7110. ".nupkg.metadata",
  7111. ".signature.p7s",
  7112. "Icon.png",
  7113. "LICENSE.TXT",
  7114. "THIRD-PARTY-NOTICES.TXT",
  7115. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  7116. "buildTransitive/netcoreapp3.1/_._",
  7117. "lib/net461/System.Security.Permissions.dll",
  7118. "lib/net461/System.Security.Permissions.xml",
  7119. "lib/net5.0/System.Security.Permissions.dll",
  7120. "lib/net5.0/System.Security.Permissions.xml",
  7121. "lib/net6.0/System.Security.Permissions.dll",
  7122. "lib/net6.0/System.Security.Permissions.xml",
  7123. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  7124. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  7125. "lib/netstandard2.0/System.Security.Permissions.dll",
  7126. "lib/netstandard2.0/System.Security.Permissions.xml",
  7127. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  7128. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  7129. "system.security.permissions.6.0.0.nupkg.sha512",
  7130. "system.security.permissions.nuspec",
  7131. "useSharedDesignerContext.txt"
  7132. ]
  7133. },
  7134. "System.Security.Principal.Windows/5.0.0": {
  7135. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7136. "type": "package",
  7137. "path": "system.security.principal.windows/5.0.0",
  7138. "files": [
  7139. ".nupkg.metadata",
  7140. ".signature.p7s",
  7141. "Icon.png",
  7142. "LICENSE.TXT",
  7143. "THIRD-PARTY-NOTICES.TXT",
  7144. "lib/net46/System.Security.Principal.Windows.dll",
  7145. "lib/net461/System.Security.Principal.Windows.dll",
  7146. "lib/net461/System.Security.Principal.Windows.xml",
  7147. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7148. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7149. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7150. "lib/uap10.0.16299/_._",
  7151. "ref/net46/System.Security.Principal.Windows.dll",
  7152. "ref/net461/System.Security.Principal.Windows.dll",
  7153. "ref/net461/System.Security.Principal.Windows.xml",
  7154. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7155. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7156. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7157. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7158. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7159. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7160. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7161. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7162. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7163. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7164. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7165. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7166. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7167. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7168. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7169. "ref/uap10.0.16299/_._",
  7170. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7171. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7172. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7173. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7174. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7175. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7176. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7177. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7178. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7179. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7180. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7181. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7182. "runtimes/win/lib/uap10.0.16299/_._",
  7183. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7184. "system.security.principal.windows.nuspec",
  7185. "useSharedDesignerContext.txt",
  7186. "version.txt"
  7187. ]
  7188. },
  7189. "System.Text.Encoding/4.3.0": {
  7190. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7191. "type": "package",
  7192. "path": "system.text.encoding/4.3.0",
  7193. "files": [
  7194. ".nupkg.metadata",
  7195. ".signature.p7s",
  7196. "ThirdPartyNotices.txt",
  7197. "dotnet_library_license.txt",
  7198. "lib/MonoAndroid10/_._",
  7199. "lib/MonoTouch10/_._",
  7200. "lib/net45/_._",
  7201. "lib/portable-net45+win8+wp8+wpa81/_._",
  7202. "lib/win8/_._",
  7203. "lib/wp80/_._",
  7204. "lib/wpa81/_._",
  7205. "lib/xamarinios10/_._",
  7206. "lib/xamarinmac20/_._",
  7207. "lib/xamarintvos10/_._",
  7208. "lib/xamarinwatchos10/_._",
  7209. "ref/MonoAndroid10/_._",
  7210. "ref/MonoTouch10/_._",
  7211. "ref/net45/_._",
  7212. "ref/netcore50/System.Text.Encoding.dll",
  7213. "ref/netcore50/System.Text.Encoding.xml",
  7214. "ref/netcore50/de/System.Text.Encoding.xml",
  7215. "ref/netcore50/es/System.Text.Encoding.xml",
  7216. "ref/netcore50/fr/System.Text.Encoding.xml",
  7217. "ref/netcore50/it/System.Text.Encoding.xml",
  7218. "ref/netcore50/ja/System.Text.Encoding.xml",
  7219. "ref/netcore50/ko/System.Text.Encoding.xml",
  7220. "ref/netcore50/ru/System.Text.Encoding.xml",
  7221. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7222. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7223. "ref/netstandard1.0/System.Text.Encoding.dll",
  7224. "ref/netstandard1.0/System.Text.Encoding.xml",
  7225. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7226. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7227. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7228. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7229. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7230. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7231. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7232. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7233. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7234. "ref/netstandard1.3/System.Text.Encoding.dll",
  7235. "ref/netstandard1.3/System.Text.Encoding.xml",
  7236. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7237. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7238. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7239. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7240. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7241. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7242. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7243. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7244. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7245. "ref/portable-net45+win8+wp8+wpa81/_._",
  7246. "ref/win8/_._",
  7247. "ref/wp80/_._",
  7248. "ref/wpa81/_._",
  7249. "ref/xamarinios10/_._",
  7250. "ref/xamarinmac20/_._",
  7251. "ref/xamarintvos10/_._",
  7252. "ref/xamarinwatchos10/_._",
  7253. "system.text.encoding.4.3.0.nupkg.sha512",
  7254. "system.text.encoding.nuspec"
  7255. ]
  7256. },
  7257. "System.Text.Encoding.CodePages/5.0.0": {
  7258. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  7259. "type": "package",
  7260. "path": "system.text.encoding.codepages/5.0.0",
  7261. "files": [
  7262. ".nupkg.metadata",
  7263. ".signature.p7s",
  7264. "Icon.png",
  7265. "LICENSE.TXT",
  7266. "THIRD-PARTY-NOTICES.TXT",
  7267. "lib/MonoAndroid10/_._",
  7268. "lib/MonoTouch10/_._",
  7269. "lib/net46/System.Text.Encoding.CodePages.dll",
  7270. "lib/net461/System.Text.Encoding.CodePages.dll",
  7271. "lib/net461/System.Text.Encoding.CodePages.xml",
  7272. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7273. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7274. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7275. "lib/xamarinios10/_._",
  7276. "lib/xamarinmac20/_._",
  7277. "lib/xamarintvos10/_._",
  7278. "lib/xamarinwatchos10/_._",
  7279. "ref/MonoAndroid10/_._",
  7280. "ref/MonoTouch10/_._",
  7281. "ref/xamarinios10/_._",
  7282. "ref/xamarinmac20/_._",
  7283. "ref/xamarintvos10/_._",
  7284. "ref/xamarinwatchos10/_._",
  7285. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7286. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7287. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7288. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7289. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7290. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7291. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7292. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  7293. "system.text.encoding.codepages.nuspec",
  7294. "useSharedDesignerContext.txt",
  7295. "version.txt"
  7296. ]
  7297. },
  7298. "System.Text.Encodings.Web/4.5.0": {
  7299. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  7300. "type": "package",
  7301. "path": "system.text.encodings.web/4.5.0",
  7302. "files": [
  7303. ".nupkg.metadata",
  7304. ".signature.p7s",
  7305. "LICENSE.TXT",
  7306. "THIRD-PARTY-NOTICES.TXT",
  7307. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7308. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7309. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7310. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7311. "system.text.encodings.web.4.5.0.nupkg.sha512",
  7312. "system.text.encodings.web.nuspec",
  7313. "useSharedDesignerContext.txt",
  7314. "version.txt"
  7315. ]
  7316. },
  7317. "System.Threading/4.3.0": {
  7318. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7319. "type": "package",
  7320. "path": "system.threading/4.3.0",
  7321. "files": [
  7322. ".nupkg.metadata",
  7323. ".signature.p7s",
  7324. "ThirdPartyNotices.txt",
  7325. "dotnet_library_license.txt",
  7326. "lib/MonoAndroid10/_._",
  7327. "lib/MonoTouch10/_._",
  7328. "lib/net45/_._",
  7329. "lib/netcore50/System.Threading.dll",
  7330. "lib/netstandard1.3/System.Threading.dll",
  7331. "lib/portable-net45+win8+wp8+wpa81/_._",
  7332. "lib/win8/_._",
  7333. "lib/wp80/_._",
  7334. "lib/wpa81/_._",
  7335. "lib/xamarinios10/_._",
  7336. "lib/xamarinmac20/_._",
  7337. "lib/xamarintvos10/_._",
  7338. "lib/xamarinwatchos10/_._",
  7339. "ref/MonoAndroid10/_._",
  7340. "ref/MonoTouch10/_._",
  7341. "ref/net45/_._",
  7342. "ref/netcore50/System.Threading.dll",
  7343. "ref/netcore50/System.Threading.xml",
  7344. "ref/netcore50/de/System.Threading.xml",
  7345. "ref/netcore50/es/System.Threading.xml",
  7346. "ref/netcore50/fr/System.Threading.xml",
  7347. "ref/netcore50/it/System.Threading.xml",
  7348. "ref/netcore50/ja/System.Threading.xml",
  7349. "ref/netcore50/ko/System.Threading.xml",
  7350. "ref/netcore50/ru/System.Threading.xml",
  7351. "ref/netcore50/zh-hans/System.Threading.xml",
  7352. "ref/netcore50/zh-hant/System.Threading.xml",
  7353. "ref/netstandard1.0/System.Threading.dll",
  7354. "ref/netstandard1.0/System.Threading.xml",
  7355. "ref/netstandard1.0/de/System.Threading.xml",
  7356. "ref/netstandard1.0/es/System.Threading.xml",
  7357. "ref/netstandard1.0/fr/System.Threading.xml",
  7358. "ref/netstandard1.0/it/System.Threading.xml",
  7359. "ref/netstandard1.0/ja/System.Threading.xml",
  7360. "ref/netstandard1.0/ko/System.Threading.xml",
  7361. "ref/netstandard1.0/ru/System.Threading.xml",
  7362. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7363. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7364. "ref/netstandard1.3/System.Threading.dll",
  7365. "ref/netstandard1.3/System.Threading.xml",
  7366. "ref/netstandard1.3/de/System.Threading.xml",
  7367. "ref/netstandard1.3/es/System.Threading.xml",
  7368. "ref/netstandard1.3/fr/System.Threading.xml",
  7369. "ref/netstandard1.3/it/System.Threading.xml",
  7370. "ref/netstandard1.3/ja/System.Threading.xml",
  7371. "ref/netstandard1.3/ko/System.Threading.xml",
  7372. "ref/netstandard1.3/ru/System.Threading.xml",
  7373. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7374. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7375. "ref/portable-net45+win8+wp8+wpa81/_._",
  7376. "ref/win8/_._",
  7377. "ref/wp80/_._",
  7378. "ref/wpa81/_._",
  7379. "ref/xamarinios10/_._",
  7380. "ref/xamarinmac20/_._",
  7381. "ref/xamarintvos10/_._",
  7382. "ref/xamarinwatchos10/_._",
  7383. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7384. "system.threading.4.3.0.nupkg.sha512",
  7385. "system.threading.nuspec"
  7386. ]
  7387. },
  7388. "System.Threading.Channels/7.0.0": {
  7389. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  7390. "type": "package",
  7391. "path": "system.threading.channels/7.0.0",
  7392. "files": [
  7393. ".nupkg.metadata",
  7394. ".signature.p7s",
  7395. "Icon.png",
  7396. "LICENSE.TXT",
  7397. "THIRD-PARTY-NOTICES.TXT",
  7398. "buildTransitive/net461/System.Threading.Channels.targets",
  7399. "buildTransitive/net462/_._",
  7400. "buildTransitive/net6.0/_._",
  7401. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  7402. "lib/net462/System.Threading.Channels.dll",
  7403. "lib/net462/System.Threading.Channels.xml",
  7404. "lib/net6.0/System.Threading.Channels.dll",
  7405. "lib/net6.0/System.Threading.Channels.xml",
  7406. "lib/net7.0/System.Threading.Channels.dll",
  7407. "lib/net7.0/System.Threading.Channels.xml",
  7408. "lib/netstandard2.0/System.Threading.Channels.dll",
  7409. "lib/netstandard2.0/System.Threading.Channels.xml",
  7410. "lib/netstandard2.1/System.Threading.Channels.dll",
  7411. "lib/netstandard2.1/System.Threading.Channels.xml",
  7412. "system.threading.channels.7.0.0.nupkg.sha512",
  7413. "system.threading.channels.nuspec",
  7414. "useSharedDesignerContext.txt"
  7415. ]
  7416. },
  7417. "System.Threading.Tasks/4.3.0": {
  7418. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7419. "type": "package",
  7420. "path": "system.threading.tasks/4.3.0",
  7421. "files": [
  7422. ".nupkg.metadata",
  7423. ".signature.p7s",
  7424. "ThirdPartyNotices.txt",
  7425. "dotnet_library_license.txt",
  7426. "lib/MonoAndroid10/_._",
  7427. "lib/MonoTouch10/_._",
  7428. "lib/net45/_._",
  7429. "lib/portable-net45+win8+wp8+wpa81/_._",
  7430. "lib/win8/_._",
  7431. "lib/wp80/_._",
  7432. "lib/wpa81/_._",
  7433. "lib/xamarinios10/_._",
  7434. "lib/xamarinmac20/_._",
  7435. "lib/xamarintvos10/_._",
  7436. "lib/xamarinwatchos10/_._",
  7437. "ref/MonoAndroid10/_._",
  7438. "ref/MonoTouch10/_._",
  7439. "ref/net45/_._",
  7440. "ref/netcore50/System.Threading.Tasks.dll",
  7441. "ref/netcore50/System.Threading.Tasks.xml",
  7442. "ref/netcore50/de/System.Threading.Tasks.xml",
  7443. "ref/netcore50/es/System.Threading.Tasks.xml",
  7444. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7445. "ref/netcore50/it/System.Threading.Tasks.xml",
  7446. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7447. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7448. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7449. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7450. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7451. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7452. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7453. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7454. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7455. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7456. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7457. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7458. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7459. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7460. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7461. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7462. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7463. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7464. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7465. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7466. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7467. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7468. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7469. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7470. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7471. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7472. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7473. "ref/portable-net45+win8+wp8+wpa81/_._",
  7474. "ref/win8/_._",
  7475. "ref/wp80/_._",
  7476. "ref/wpa81/_._",
  7477. "ref/xamarinios10/_._",
  7478. "ref/xamarinmac20/_._",
  7479. "ref/xamarintvos10/_._",
  7480. "ref/xamarinwatchos10/_._",
  7481. "system.threading.tasks.4.3.0.nupkg.sha512",
  7482. "system.threading.tasks.nuspec"
  7483. ]
  7484. },
  7485. "System.Windows.Extensions/6.0.0": {
  7486. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  7487. "type": "package",
  7488. "path": "system.windows.extensions/6.0.0",
  7489. "files": [
  7490. ".nupkg.metadata",
  7491. ".signature.p7s",
  7492. "Icon.png",
  7493. "LICENSE.TXT",
  7494. "THIRD-PARTY-NOTICES.TXT",
  7495. "lib/net6.0/System.Windows.Extensions.dll",
  7496. "lib/net6.0/System.Windows.Extensions.xml",
  7497. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  7498. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  7499. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  7500. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  7501. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  7502. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  7503. "system.windows.extensions.6.0.0.nupkg.sha512",
  7504. "system.windows.extensions.nuspec",
  7505. "useSharedDesignerContext.txt"
  7506. ]
  7507. },
  7508. "UAParser/3.1.47": {
  7509. "sha512": "I68Jl/Vs5RQZdz9BbmYtnXgujg0jVd61LhKbyNZOCm9lBxZFGxLbiQo6yFj21VYi7DzPvEvrVOmeC6v41AoLfw==",
  7510. "type": "package",
  7511. "path": "uaparser/3.1.47",
  7512. "files": [
  7513. ".nupkg.metadata",
  7514. ".signature.p7s",
  7515. "lib/net20/UAParser.dll",
  7516. "lib/net20/UAParser.xml",
  7517. "lib/net35/UAParser.dll",
  7518. "lib/net35/UAParser.xml",
  7519. "lib/net40/UAParser.dll",
  7520. "lib/net40/UAParser.xml",
  7521. "lib/net45/UAParser.dll",
  7522. "lib/net45/UAParser.xml",
  7523. "lib/netcoreapp2.0/UAParser.dll",
  7524. "lib/netcoreapp2.0/UAParser.xml",
  7525. "lib/netstandard1.0/UAParser.dll",
  7526. "lib/netstandard1.0/UAParser.xml",
  7527. "lib/netstandard1.3/UAParser.dll",
  7528. "lib/netstandard1.3/UAParser.xml",
  7529. "lib/netstandard1.6/UAParser.dll",
  7530. "lib/netstandard1.6/UAParser.xml",
  7531. "uaparser.3.1.47.nupkg.sha512",
  7532. "uaparser.nuspec"
  7533. ]
  7534. },
  7535. "ZXing.Net/0.16.9": {
  7536. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  7537. "type": "package",
  7538. "path": "zxing.net/0.16.9",
  7539. "files": [
  7540. ".nupkg.metadata",
  7541. ".signature.p7s",
  7542. "lib/native/zxing.XML",
  7543. "lib/native/zxing.pri",
  7544. "lib/native/zxing.winmd",
  7545. "lib/net20-cf/zxing.ce2.0.dll",
  7546. "lib/net20-cf/zxing.ce2.0.xml",
  7547. "lib/net20/zxing.XML",
  7548. "lib/net20/zxing.dll",
  7549. "lib/net35-cf/zxing.ce3.5.dll",
  7550. "lib/net35-cf/zxing.ce3.5.xml",
  7551. "lib/net35/zxing.XML",
  7552. "lib/net35/zxing.dll",
  7553. "lib/net40/zxing.XML",
  7554. "lib/net40/zxing.dll",
  7555. "lib/net40/zxing.presentation.XML",
  7556. "lib/net40/zxing.presentation.dll",
  7557. "lib/net45/zxing.XML",
  7558. "lib/net45/zxing.dll",
  7559. "lib/net45/zxing.presentation.XML",
  7560. "lib/net45/zxing.presentation.dll",
  7561. "lib/net461/zxing.XML",
  7562. "lib/net461/zxing.dll",
  7563. "lib/net461/zxing.presentation.XML",
  7564. "lib/net461/zxing.presentation.dll",
  7565. "lib/net47/zxing.XML",
  7566. "lib/net47/zxing.dll",
  7567. "lib/net47/zxing.presentation.XML",
  7568. "lib/net47/zxing.presentation.dll",
  7569. "lib/net48/zxing.XML",
  7570. "lib/net48/zxing.dll",
  7571. "lib/net48/zxing.presentation.XML",
  7572. "lib/net48/zxing.presentation.dll",
  7573. "lib/net5.0/zxing.XML",
  7574. "lib/net5.0/zxing.dll",
  7575. "lib/net6.0/zxing.XML",
  7576. "lib/net6.0/zxing.dll",
  7577. "lib/net7.0/zxing.XML",
  7578. "lib/net7.0/zxing.dll",
  7579. "lib/netcoreapp3.0/zxing.dll",
  7580. "lib/netcoreapp3.0/zxing.xml",
  7581. "lib/netcoreapp3.1/zxing.dll",
  7582. "lib/netcoreapp3.1/zxing.xml",
  7583. "lib/netstandard1.0/zxing.dll",
  7584. "lib/netstandard1.0/zxing.xml",
  7585. "lib/netstandard1.1/zxing.dll",
  7586. "lib/netstandard1.1/zxing.xml",
  7587. "lib/netstandard1.3/zxing.dll",
  7588. "lib/netstandard1.3/zxing.xml",
  7589. "lib/netstandard2.0/zxing.dll",
  7590. "lib/netstandard2.0/zxing.xml",
  7591. "lib/netstandard2.1/zxing.dll",
  7592. "lib/netstandard2.1/zxing.xml",
  7593. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  7594. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  7595. "lib/sl3-wp/zxing.wp7.0.XML",
  7596. "lib/sl3-wp/zxing.wp7.0.dll",
  7597. "lib/sl4-wp71/zxing.wp7.1.XML",
  7598. "lib/sl4-wp71/zxing.wp7.1.dll",
  7599. "lib/sl4/zxing.sl4.XML",
  7600. "lib/sl4/zxing.sl4.dll",
  7601. "lib/sl5/zxing.sl5.XML",
  7602. "lib/sl5/zxing.sl5.dll",
  7603. "lib/uap10/zxing.dll",
  7604. "lib/uap10/zxing.pri",
  7605. "lib/uap10/zxing.xml",
  7606. "lib/windows8-managed/zxing.winrt.XML",
  7607. "lib/windows8-managed/zxing.winrt.dll",
  7608. "lib/windows8/zxing.XML",
  7609. "lib/windows8/zxing.pri",
  7610. "lib/windows8/zxing.winmd",
  7611. "lib/wp8/zxing.wp8.0.XML",
  7612. "lib/wp8/zxing.wp8.0.dll",
  7613. "logo.jpg",
  7614. "zxing.net.0.16.9.nupkg.sha512",
  7615. "zxing.net.nuspec"
  7616. ]
  7617. },
  7618. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  7619. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  7620. "type": "package",
  7621. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  7622. "files": [
  7623. ".nupkg.metadata",
  7624. ".signature.p7s",
  7625. "lib/net472/ZXing.ImageSharp.V2.dll",
  7626. "lib/net472/ZXing.ImageSharp.V2.pdb",
  7627. "lib/net472/ZXing.ImageSharp.V2.xml",
  7628. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  7629. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  7630. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  7631. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  7632. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  7633. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  7634. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  7635. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  7636. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  7637. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  7638. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  7639. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  7640. "logo.jpg",
  7641. "readme.md",
  7642. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  7643. "zxing.net.bindings.imagesharp.v2.nuspec"
  7644. ]
  7645. },
  7646. "Ropin.Core.Common/1.0.0": {
  7647. "type": "project",
  7648. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  7649. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  7650. },
  7651. "Ropin.Core.Extensions/1.0.0": {
  7652. "type": "project",
  7653. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  7654. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  7655. },
  7656. "Ropin.Inspection.Common/1.0.0": {
  7657. "type": "project",
  7658. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  7659. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  7660. },
  7661. "Ropin.Inspection.Model/1.0.0": {
  7662. "type": "project",
  7663. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  7664. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  7665. },
  7666. "Ropin.Inspection.Repository/1.0.0": {
  7667. "type": "project",
  7668. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  7669. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  7670. },
  7671. "Ropin.Inspection.Service/1.0.0": {
  7672. "type": "project",
  7673. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  7674. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  7675. },
  7676. "Ropin.Inspection.Tasks/1.0.0": {
  7677. "type": "project",
  7678. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  7679. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  7680. }
  7681. },
  7682. "projectFileDependencyGroups": {
  7683. "net5.0": [
  7684. "AutoMapper >= 10.1.1",
  7685. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  7686. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  7687. "IPTools.China >= 1.6.0",
  7688. "IPTools.Core >= 1.6.0",
  7689. "InfluxData.Net >= 8.0.1",
  7690. "Microsoft.AspNetCore.Authentication.JwtBearer >= 5.0.0",
  7691. "Microsoft.AspNetCore.Authentication.OpenIdConnect >= 5.0.0",
  7692. "Microsoft.AspNetCore.JsonPatch >= 5.0.0",
  7693. "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 5.0.0",
  7694. "Microsoft.EntityFrameworkCore >= 5.0.4",
  7695. "Microsoft.EntityFrameworkCore.Design >= 5.0.4",
  7696. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9",
  7697. "MySql.Data >= 8.0.23",
  7698. "NPOI >= 2.6.2",
  7699. "Pomelo.EntityFrameworkCore.MySql >= 5.0.0-alpha.2",
  7700. "Ropin.Core.Common >= 1.0.0",
  7701. "Ropin.Core.Extensions >= 1.0.0",
  7702. "Ropin.Inspection.Common >= 1.0.0",
  7703. "Ropin.Inspection.Model >= 1.0.0",
  7704. "Ropin.Inspection.Repository >= 1.0.0",
  7705. "Ropin.Inspection.Service >= 1.0.0",
  7706. "Ropin.Inspection.Tasks >= 1.0.0",
  7707. "Swashbuckle.AspNetCore >= 5.6.3",
  7708. "UAParser >= 3.1.47"
  7709. ]
  7710. },
  7711. "packageFolders": {
  7712. "D:\\.nuget\\packages": {},
  7713. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  7714. },
  7715. "project": {
  7716. "version": "1.0.0",
  7717. "restore": {
  7718. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  7719. "projectName": "Ropin.Inspection.Api",
  7720. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  7721. "packagesPath": "D:\\.nuget\\packages",
  7722. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\obj\\",
  7723. "projectStyle": "PackageReference",
  7724. "fallbackFolders": [
  7725. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  7726. ],
  7727. "configFilePaths": [
  7728. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  7729. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  7730. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  7731. ],
  7732. "originalTargetFrameworks": [
  7733. "net5.0"
  7734. ],
  7735. "sources": {
  7736. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  7737. "C:\\Program Files\\dotnet\\library-packs": {},
  7738. "https://api.nuget.org/v3/index.json": {}
  7739. },
  7740. "frameworks": {
  7741. "net5.0": {
  7742. "targetAlias": "net5.0",
  7743. "projectReferences": {
  7744. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  7745. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  7746. },
  7747. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  7748. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  7749. },
  7750. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  7751. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  7752. },
  7753. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  7754. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  7755. },
  7756. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  7757. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  7758. },
  7759. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  7760. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  7761. },
  7762. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj": {
  7763. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj"
  7764. }
  7765. }
  7766. }
  7767. },
  7768. "warningProperties": {
  7769. "warnAsError": [
  7770. "NU1605"
  7771. ]
  7772. }
  7773. },
  7774. "frameworks": {
  7775. "net5.0": {
  7776. "targetAlias": "net5.0",
  7777. "dependencies": {
  7778. "AutoMapper": {
  7779. "target": "Package",
  7780. "version": "[10.1.1, )"
  7781. },
  7782. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  7783. "target": "Package",
  7784. "version": "[8.1.1, )"
  7785. },
  7786. "Autofac.Extensions.DependencyInjection": {
  7787. "target": "Package",
  7788. "version": "[7.1.0, )"
  7789. },
  7790. "IPTools.China": {
  7791. "target": "Package",
  7792. "version": "[1.6.0, )"
  7793. },
  7794. "IPTools.Core": {
  7795. "target": "Package",
  7796. "version": "[1.6.0, )"
  7797. },
  7798. "InfluxData.Net": {
  7799. "target": "Package",
  7800. "version": "[8.0.1, )"
  7801. },
  7802. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  7803. "target": "Package",
  7804. "version": "[5.0.0, )",
  7805. "noWarn": [
  7806. "NU1605"
  7807. ]
  7808. },
  7809. "Microsoft.AspNetCore.Authentication.OpenIdConnect": {
  7810. "target": "Package",
  7811. "version": "[5.0.0, )",
  7812. "noWarn": [
  7813. "NU1605"
  7814. ]
  7815. },
  7816. "Microsoft.AspNetCore.JsonPatch": {
  7817. "target": "Package",
  7818. "version": "[5.0.0, )"
  7819. },
  7820. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
  7821. "target": "Package",
  7822. "version": "[5.0.0, )"
  7823. },
  7824. "Microsoft.EntityFrameworkCore": {
  7825. "target": "Package",
  7826. "version": "[5.0.4, )"
  7827. },
  7828. "Microsoft.EntityFrameworkCore.Design": {
  7829. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  7830. "suppressParent": "All",
  7831. "target": "Package",
  7832. "version": "[5.0.4, )"
  7833. },
  7834. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  7835. "target": "Package",
  7836. "version": "[1.10.9, )"
  7837. },
  7838. "MySql.Data": {
  7839. "target": "Package",
  7840. "version": "[8.0.23, )"
  7841. },
  7842. "NPOI": {
  7843. "target": "Package",
  7844. "version": "[2.6.2, )"
  7845. },
  7846. "Pomelo.EntityFrameworkCore.MySql": {
  7847. "target": "Package",
  7848. "version": "[5.0.0-alpha.2, )"
  7849. },
  7850. "Swashbuckle.AspNetCore": {
  7851. "target": "Package",
  7852. "version": "[5.6.3, )"
  7853. },
  7854. "UAParser": {
  7855. "target": "Package",
  7856. "version": "[3.1.47, )"
  7857. }
  7858. },
  7859. "imports": [
  7860. "net461",
  7861. "net462",
  7862. "net47",
  7863. "net471",
  7864. "net472",
  7865. "net48",
  7866. "net481"
  7867. ],
  7868. "assetTargetFallback": true,
  7869. "warn": true,
  7870. "frameworkReferences": {
  7871. "Microsoft.AspNetCore.App": {
  7872. "privateAssets": "none"
  7873. },
  7874. "Microsoft.NETCore.App": {
  7875. "privateAssets": "all"
  7876. }
  7877. },
  7878. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  7879. }
  7880. }
  7881. }
  7882. }