project.assets.json 351 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Autofac/6.4.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Diagnostics.DiagnosticSource": "4.7.1"
  9. },
  10. "compile": {
  11. "lib/net6.0/Autofac.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/net6.0/Autofac.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "Autofac.Extensions.DependencyInjection/8.0.0": {
  22. "type": "package",
  23. "dependencies": {
  24. "Autofac": "6.4.0",
  25. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  29. "related": ".xml"
  30. }
  31. },
  32. "runtime": {
  33. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  34. "related": ".xml"
  35. }
  36. }
  37. },
  38. "Autofac.Extras.DynamicProxy/6.0.1": {
  39. "type": "package",
  40. "dependencies": {
  41. "Autofac": "6.2.0",
  42. "Castle.Core": "4.4.0"
  43. },
  44. "compile": {
  45. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  46. "related": ".xml"
  47. }
  48. },
  49. "runtime": {
  50. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  51. "related": ".xml"
  52. }
  53. }
  54. },
  55. "AutoMapper/11.0.1": {
  56. "type": "package",
  57. "dependencies": {
  58. "Microsoft.CSharp": "4.7.0"
  59. },
  60. "compile": {
  61. "lib/netstandard2.1/AutoMapper.dll": {
  62. "related": ".xml"
  63. }
  64. },
  65. "runtime": {
  66. "lib/netstandard2.1/AutoMapper.dll": {
  67. "related": ".xml"
  68. }
  69. }
  70. },
  71. "Castle.Core/5.0.0": {
  72. "type": "package",
  73. "dependencies": {
  74. "System.Diagnostics.EventLog": "6.0.0"
  75. },
  76. "compile": {
  77. "lib/net6.0/Castle.Core.dll": {
  78. "related": ".xml"
  79. }
  80. },
  81. "runtime": {
  82. "lib/net6.0/Castle.Core.dll": {
  83. "related": ".xml"
  84. }
  85. }
  86. },
  87. "Castle.Core.AsyncInterceptor/2.1.0": {
  88. "type": "package",
  89. "dependencies": {
  90. "Castle.Core": "4.4.0"
  91. },
  92. "compile": {
  93. "lib/net6.0/Castle.Core.AsyncInterceptor.dll": {
  94. "related": ".xml"
  95. }
  96. },
  97. "runtime": {
  98. "lib/net6.0/Castle.Core.AsyncInterceptor.dll": {
  99. "related": ".xml"
  100. }
  101. }
  102. },
  103. "Humanizer.Core/2.8.26": {
  104. "type": "package",
  105. "compile": {
  106. "lib/netstandard2.0/_._": {
  107. "related": ".xml"
  108. }
  109. },
  110. "runtime": {
  111. "lib/netstandard2.0/Humanizer.dll": {
  112. "related": ".xml"
  113. }
  114. }
  115. },
  116. "IdentityModel/4.0.0": {
  117. "type": "package",
  118. "dependencies": {
  119. "Newtonsoft.Json": "11.0.2",
  120. "System.Text.Encodings.Web": "4.5.0"
  121. },
  122. "compile": {
  123. "lib/netstandard2.0/IdentityModel.dll": {
  124. "related": ".pdb;.xml"
  125. }
  126. },
  127. "runtime": {
  128. "lib/netstandard2.0/IdentityModel.dll": {
  129. "related": ".pdb;.xml"
  130. }
  131. }
  132. },
  133. "IdentityModel.AspNetCore.OAuth2Introspection/4.0.1": {
  134. "type": "package",
  135. "dependencies": {
  136. "IdentityModel": "4.0.0"
  137. },
  138. "compile": {
  139. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.dll": {
  140. "related": ".pdb;.xml"
  141. }
  142. },
  143. "runtime": {
  144. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.dll": {
  145. "related": ".pdb;.xml"
  146. }
  147. },
  148. "frameworkReferences": [
  149. "Microsoft.AspNetCore.App"
  150. ]
  151. },
  152. "IdentityServer4.AccessTokenValidation/3.0.1": {
  153. "type": "package",
  154. "dependencies": {
  155. "IdentityModel.AspNetCore.OAuth2Introspection": "4.0.1",
  156. "Microsoft.AspNetCore.Authentication.JwtBearer": "3.0.0"
  157. },
  158. "compile": {
  159. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.dll": {
  160. "related": ".pdb;.xml"
  161. }
  162. },
  163. "runtime": {
  164. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.dll": {
  165. "related": ".pdb;.xml"
  166. }
  167. },
  168. "frameworkReferences": [
  169. "Microsoft.AspNetCore.App"
  170. ]
  171. },
  172. "JetBrains.Annotations/2022.1.0": {
  173. "type": "package",
  174. "compile": {
  175. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  176. "related": ".deps.json;.xml"
  177. }
  178. },
  179. "runtime": {
  180. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  181. "related": ".deps.json;.xml"
  182. }
  183. }
  184. },
  185. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  186. "type": "package",
  187. "dependencies": {
  188. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.5.0"
  189. },
  190. "compile": {
  191. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  192. "related": ".xml"
  193. }
  194. },
  195. "runtime": {
  196. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  197. "related": ".xml"
  198. }
  199. },
  200. "frameworkReferences": [
  201. "Microsoft.AspNetCore.App"
  202. ]
  203. },
  204. "Microsoft.AspNetCore.Authorization/6.0.5": {
  205. "type": "package",
  206. "dependencies": {
  207. "Microsoft.AspNetCore.Metadata": "6.0.5",
  208. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  209. "Microsoft.Extensions.Options": "6.0.0"
  210. },
  211. "compile": {
  212. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  213. "related": ".xml"
  214. }
  215. },
  216. "runtime": {
  217. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  218. "related": ".xml"
  219. }
  220. }
  221. },
  222. "Microsoft.AspNetCore.Cryptography.Internal/6.0.3": {
  223. "type": "package",
  224. "compile": {
  225. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  226. "related": ".xml"
  227. }
  228. },
  229. "runtime": {
  230. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  231. "related": ".xml"
  232. }
  233. }
  234. },
  235. "Microsoft.AspNetCore.DataProtection/6.0.3": {
  236. "type": "package",
  237. "dependencies": {
  238. "Microsoft.AspNetCore.Cryptography.Internal": "6.0.3",
  239. "Microsoft.AspNetCore.DataProtection.Abstractions": "6.0.3",
  240. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  241. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  242. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  243. "Microsoft.Extensions.Options": "6.0.0",
  244. "System.Security.Cryptography.Xml": "6.0.0"
  245. },
  246. "compile": {
  247. "lib/net6.0/Microsoft.AspNetCore.DataProtection.dll": {
  248. "related": ".xml"
  249. }
  250. },
  251. "runtime": {
  252. "lib/net6.0/Microsoft.AspNetCore.DataProtection.dll": {
  253. "related": ".xml"
  254. }
  255. }
  256. },
  257. "Microsoft.AspNetCore.DataProtection.Abstractions/6.0.3": {
  258. "type": "package",
  259. "compile": {
  260. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  261. "related": ".xml"
  262. }
  263. },
  264. "runtime": {
  265. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  266. "related": ".xml"
  267. }
  268. }
  269. },
  270. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis/6.0.3": {
  271. "type": "package",
  272. "dependencies": {
  273. "Microsoft.AspNetCore.DataProtection": "6.0.3",
  274. "StackExchange.Redis": "2.2.4"
  275. },
  276. "compile": {
  277. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll": {
  278. "related": ".xml"
  279. }
  280. },
  281. "runtime": {
  282. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll": {
  283. "related": ".xml"
  284. }
  285. }
  286. },
  287. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  288. "type": "package",
  289. "dependencies": {
  290. "Microsoft.Extensions.Primitives": "5.0.1",
  291. "System.IO.Pipelines": "5.0.2"
  292. },
  293. "compile": {
  294. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  295. "related": ".xml"
  296. }
  297. },
  298. "runtime": {
  299. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  300. "related": ".xml"
  301. }
  302. }
  303. },
  304. "Microsoft.AspNetCore.JsonPatch/6.0.5": {
  305. "type": "package",
  306. "dependencies": {
  307. "Microsoft.CSharp": "4.7.0",
  308. "Newtonsoft.Json": "13.0.1"
  309. },
  310. "compile": {
  311. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {
  312. "related": ".xml"
  313. }
  314. },
  315. "runtime": {
  316. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {
  317. "related": ".xml"
  318. }
  319. }
  320. },
  321. "Microsoft.AspNetCore.Metadata/6.0.5": {
  322. "type": "package",
  323. "compile": {
  324. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  325. "related": ".xml"
  326. }
  327. },
  328. "runtime": {
  329. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  330. "related": ".xml"
  331. }
  332. }
  333. },
  334. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.5": {
  335. "type": "package",
  336. "dependencies": {
  337. "Microsoft.AspNetCore.JsonPatch": "6.0.5",
  338. "Newtonsoft.Json": "13.0.1",
  339. "Newtonsoft.Json.Bson": "1.0.2"
  340. },
  341. "compile": {
  342. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  343. "related": ".xml"
  344. }
  345. },
  346. "runtime": {
  347. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  348. "related": ".xml"
  349. }
  350. },
  351. "frameworkReferences": [
  352. "Microsoft.AspNetCore.App"
  353. ]
  354. },
  355. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.5": {
  356. "type": "package",
  357. "dependencies": {
  358. "Microsoft.AspNetCore.Razor.Language": "6.0.5",
  359. "Microsoft.CodeAnalysis.Razor": "6.0.5"
  360. },
  361. "compile": {
  362. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  363. },
  364. "runtime": {
  365. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  366. }
  367. },
  368. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.5": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.5",
  372. "Microsoft.CodeAnalysis.Razor": "6.0.5",
  373. "Microsoft.Extensions.DependencyModel": "6.0.0"
  374. },
  375. "compile": {
  376. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "runtime": {
  381. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  382. "related": ".xml"
  383. }
  384. },
  385. "frameworkReferences": [
  386. "Microsoft.AspNetCore.App"
  387. ],
  388. "build": {
  389. "buildTransitive/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {}
  390. }
  391. },
  392. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  393. "type": "package",
  394. "compile": {
  395. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
  396. "related": ".pdb;.xml"
  397. }
  398. },
  399. "runtime": {
  400. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
  401. "related": ".pdb;.xml"
  402. }
  403. },
  404. "frameworkReferences": [
  405. "Microsoft.AspNetCore.App"
  406. ]
  407. },
  408. "Microsoft.AspNetCore.Razor.Language/6.0.5": {
  409. "type": "package",
  410. "compile": {
  411. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  412. },
  413. "runtime": {
  414. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  415. }
  416. },
  417. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  418. "type": "package",
  419. "compile": {
  420. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  421. "related": ".xml"
  422. }
  423. },
  424. "runtime": {
  425. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  426. "related": ".xml"
  427. }
  428. }
  429. },
  430. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  431. "type": "package",
  432. "build": {
  433. "build/_._": {}
  434. }
  435. },
  436. "Microsoft.CodeAnalysis.Common/4.0.0": {
  437. "type": "package",
  438. "dependencies": {
  439. "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
  440. "System.Collections.Immutable": "5.0.0",
  441. "System.Memory": "4.5.4",
  442. "System.Reflection.Metadata": "5.0.0",
  443. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  444. "System.Text.Encoding.CodePages": "4.5.1",
  445. "System.Threading.Tasks.Extensions": "4.5.4"
  446. },
  447. "compile": {
  448. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  449. "related": ".pdb;.xml"
  450. }
  451. },
  452. "runtime": {
  453. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  454. "related": ".pdb;.xml"
  455. }
  456. },
  457. "resource": {
  458. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  459. "locale": "cs"
  460. },
  461. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  462. "locale": "de"
  463. },
  464. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  465. "locale": "es"
  466. },
  467. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  468. "locale": "fr"
  469. },
  470. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  471. "locale": "it"
  472. },
  473. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  474. "locale": "ja"
  475. },
  476. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  477. "locale": "ko"
  478. },
  479. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  480. "locale": "pl"
  481. },
  482. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  483. "locale": "pt-BR"
  484. },
  485. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  486. "locale": "ru"
  487. },
  488. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  489. "locale": "tr"
  490. },
  491. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  492. "locale": "zh-Hans"
  493. },
  494. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  495. "locale": "zh-Hant"
  496. }
  497. }
  498. },
  499. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  500. "type": "package",
  501. "dependencies": {
  502. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  503. },
  504. "compile": {
  505. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  506. "related": ".pdb;.xml"
  507. }
  508. },
  509. "runtime": {
  510. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  511. "related": ".pdb;.xml"
  512. }
  513. },
  514. "resource": {
  515. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  516. "locale": "cs"
  517. },
  518. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  519. "locale": "de"
  520. },
  521. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  522. "locale": "es"
  523. },
  524. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  525. "locale": "fr"
  526. },
  527. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  528. "locale": "it"
  529. },
  530. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  531. "locale": "ja"
  532. },
  533. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  534. "locale": "ko"
  535. },
  536. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  537. "locale": "pl"
  538. },
  539. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  540. "locale": "pt-BR"
  541. },
  542. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  543. "locale": "ru"
  544. },
  545. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  546. "locale": "tr"
  547. },
  548. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  549. "locale": "zh-Hans"
  550. },
  551. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  552. "locale": "zh-Hant"
  553. }
  554. }
  555. },
  556. "Microsoft.CodeAnalysis.Razor/6.0.5": {
  557. "type": "package",
  558. "dependencies": {
  559. "Microsoft.AspNetCore.Razor.Language": "6.0.5",
  560. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  561. "Microsoft.CodeAnalysis.Common": "4.0.0"
  562. },
  563. "compile": {
  564. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  565. },
  566. "runtime": {
  567. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  568. }
  569. },
  570. "Microsoft.CSharp/4.7.0": {
  571. "type": "package",
  572. "compile": {
  573. "ref/netcoreapp2.0/_._": {}
  574. },
  575. "runtime": {
  576. "lib/netcoreapp2.0/_._": {}
  577. }
  578. },
  579. "Microsoft.EntityFrameworkCore/6.0.5": {
  580. "type": "package",
  581. "dependencies": {
  582. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.5",
  583. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.5",
  584. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  585. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  586. "Microsoft.Extensions.Logging": "6.0.0",
  587. "System.Collections.Immutable": "6.0.0",
  588. "System.Diagnostics.DiagnosticSource": "6.0.0"
  589. },
  590. "compile": {
  591. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  592. "related": ".xml"
  593. }
  594. },
  595. "runtime": {
  596. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  597. "related": ".xml"
  598. }
  599. }
  600. },
  601. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  602. "type": "package",
  603. "compile": {
  604. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  605. "related": ".xml"
  606. }
  607. },
  608. "runtime": {
  609. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  610. "related": ".xml"
  611. }
  612. }
  613. },
  614. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  615. "type": "package",
  616. "compile": {
  617. "lib/netstandard2.0/_._": {}
  618. },
  619. "runtime": {
  620. "lib/netstandard2.0/_._": {}
  621. }
  622. },
  623. "Microsoft.EntityFrameworkCore.Design/6.0.5": {
  624. "type": "package",
  625. "dependencies": {
  626. "Humanizer.Core": "2.8.26",
  627. "Microsoft.EntityFrameworkCore.Relational": "6.0.5"
  628. },
  629. "compile": {
  630. "lib/net6.0/_._": {
  631. "related": ".xml"
  632. }
  633. },
  634. "runtime": {
  635. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  636. "related": ".xml"
  637. }
  638. },
  639. "build": {
  640. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  641. }
  642. },
  643. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  644. "type": "package",
  645. "dependencies": {
  646. "Microsoft.EntityFrameworkCore": "6.0.5",
  647. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  648. },
  649. "compile": {
  650. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  651. "related": ".xml"
  652. }
  653. },
  654. "runtime": {
  655. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  656. "related": ".xml"
  657. }
  658. }
  659. },
  660. "Microsoft.EntityFrameworkCore.Tools/6.0.5": {
  661. "type": "package",
  662. "dependencies": {
  663. "Microsoft.EntityFrameworkCore.Design": "6.0.5"
  664. },
  665. "compile": {
  666. "lib/net6.0/_._": {}
  667. },
  668. "runtime": {
  669. "lib/net6.0/_._": {}
  670. }
  671. },
  672. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  673. "type": "package",
  674. "build": {
  675. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  676. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  677. },
  678. "buildMultiTargeting": {
  679. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  680. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  681. }
  682. },
  683. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  684. "type": "package",
  685. "dependencies": {
  686. "Microsoft.Extensions.Primitives": "6.0.0"
  687. },
  688. "compile": {
  689. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  690. "related": ".xml"
  691. }
  692. },
  693. "runtime": {
  694. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  695. "related": ".xml"
  696. }
  697. }
  698. },
  699. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  700. "type": "package",
  701. "dependencies": {
  702. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  703. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  704. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  705. "Microsoft.Extensions.Options": "6.0.0",
  706. "Microsoft.Extensions.Primitives": "6.0.0"
  707. },
  708. "compile": {
  709. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  710. "related": ".xml"
  711. }
  712. },
  713. "runtime": {
  714. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  715. "related": ".xml"
  716. }
  717. }
  718. },
  719. "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.3": {
  720. "type": "package",
  721. "dependencies": {
  722. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  723. "Microsoft.Extensions.Options": "6.0.0",
  724. "StackExchange.Redis": "2.2.4"
  725. },
  726. "compile": {
  727. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": {
  728. "related": ".xml"
  729. }
  730. },
  731. "runtime": {
  732. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": {
  733. "related": ".xml"
  734. }
  735. }
  736. },
  737. "Microsoft.Extensions.Configuration/6.0.0": {
  738. "type": "package",
  739. "dependencies": {
  740. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  741. "Microsoft.Extensions.Primitives": "6.0.0"
  742. },
  743. "compile": {
  744. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  745. "related": ".xml"
  746. }
  747. },
  748. "runtime": {
  749. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  750. "related": ".xml"
  751. }
  752. }
  753. },
  754. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  755. "type": "package",
  756. "dependencies": {
  757. "Microsoft.Extensions.Primitives": "6.0.0"
  758. },
  759. "compile": {
  760. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  761. "related": ".xml"
  762. }
  763. },
  764. "runtime": {
  765. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  766. "related": ".xml"
  767. }
  768. }
  769. },
  770. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  771. "type": "package",
  772. "dependencies": {
  773. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  774. },
  775. "compile": {
  776. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  777. "related": ".xml"
  778. }
  779. },
  780. "runtime": {
  781. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  782. "related": ".xml"
  783. }
  784. }
  785. },
  786. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.Configuration": "6.0.0",
  790. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  791. },
  792. "compile": {
  793. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  794. "related": ".xml"
  795. }
  796. },
  797. "runtime": {
  798. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  799. "related": ".xml"
  800. }
  801. }
  802. },
  803. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.Extensions.Configuration": "6.0.0",
  807. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  808. },
  809. "compile": {
  810. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  811. "related": ".xml"
  812. }
  813. },
  814. "runtime": {
  815. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  816. "related": ".xml"
  817. }
  818. }
  819. },
  820. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  821. "type": "package",
  822. "dependencies": {
  823. "Microsoft.Extensions.Configuration": "6.0.0",
  824. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  825. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  826. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  827. "Microsoft.Extensions.Primitives": "6.0.0"
  828. },
  829. "compile": {
  830. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  831. "related": ".xml"
  832. }
  833. },
  834. "runtime": {
  835. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  836. "related": ".xml"
  837. }
  838. }
  839. },
  840. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  841. "type": "package",
  842. "dependencies": {
  843. "Microsoft.Extensions.Configuration": "6.0.0",
  844. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  845. "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
  846. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  847. "System.Text.Json": "6.0.0"
  848. },
  849. "compile": {
  850. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  851. "related": ".xml"
  852. }
  853. },
  854. "runtime": {
  855. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  856. "related": ".xml"
  857. }
  858. }
  859. },
  860. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  861. "type": "package",
  862. "dependencies": {
  863. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  864. "Microsoft.Extensions.Configuration.Json": "6.0.0",
  865. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  866. "Microsoft.Extensions.FileProviders.Physical": "6.0.0"
  867. },
  868. "compile": {
  869. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  870. "related": ".xml"
  871. }
  872. },
  873. "runtime": {
  874. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  875. "related": ".xml"
  876. }
  877. },
  878. "build": {
  879. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  880. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  881. }
  882. },
  883. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  884. "type": "package",
  885. "dependencies": {
  886. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  887. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  888. },
  889. "compile": {
  890. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  891. "related": ".xml"
  892. }
  893. },
  894. "runtime": {
  895. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  896. "related": ".xml"
  897. }
  898. },
  899. "build": {
  900. "buildTransitive/netcoreapp3.1/_._": {}
  901. }
  902. },
  903. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  904. "type": "package",
  905. "compile": {
  906. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  907. "related": ".xml"
  908. }
  909. },
  910. "runtime": {
  911. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  912. "related": ".xml"
  913. }
  914. },
  915. "build": {
  916. "buildTransitive/netcoreapp3.1/_._": {}
  917. }
  918. },
  919. "Microsoft.Extensions.DependencyModel/6.0.0": {
  920. "type": "package",
  921. "dependencies": {
  922. "System.Buffers": "4.5.1",
  923. "System.Memory": "4.5.4",
  924. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  925. "System.Text.Encodings.Web": "6.0.0",
  926. "System.Text.Json": "6.0.0"
  927. },
  928. "compile": {
  929. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  930. "related": ".xml"
  931. }
  932. },
  933. "runtime": {
  934. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  935. "related": ".xml"
  936. }
  937. }
  938. },
  939. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  940. "type": "package",
  941. "dependencies": {
  942. "Microsoft.Extensions.Primitives": "6.0.0"
  943. },
  944. "compile": {
  945. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  946. "related": ".xml"
  947. }
  948. },
  949. "runtime": {
  950. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  951. "related": ".xml"
  952. }
  953. },
  954. "build": {
  955. "buildTransitive/netcoreapp3.1/_._": {}
  956. }
  957. },
  958. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  959. "type": "package",
  960. "dependencies": {
  961. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  962. "Microsoft.Extensions.Primitives": "6.0.0"
  963. },
  964. "compile": {
  965. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  966. "related": ".xml"
  967. }
  968. },
  969. "runtime": {
  970. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  971. "related": ".xml"
  972. }
  973. }
  974. },
  975. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  976. "type": "package",
  977. "dependencies": {
  978. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  979. },
  980. "compile": {
  981. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  982. "related": ".xml"
  983. }
  984. },
  985. "runtime": {
  986. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  987. "related": ".xml"
  988. }
  989. },
  990. "build": {
  991. "build/netstandard2.0/_._": {}
  992. },
  993. "buildMultiTargeting": {
  994. "buildMultiTargeting/_._": {}
  995. }
  996. },
  997. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  998. "type": "package",
  999. "dependencies": {
  1000. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1001. "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
  1002. "Microsoft.Extensions.Primitives": "6.0.0"
  1003. },
  1004. "compile": {
  1005. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1006. "related": ".xml"
  1007. }
  1008. },
  1009. "runtime": {
  1010. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1011. "related": ".xml"
  1012. }
  1013. },
  1014. "build": {
  1015. "buildTransitive/netcoreapp3.1/_._": {}
  1016. }
  1017. },
  1018. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  1019. "type": "package",
  1020. "compile": {
  1021. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1022. "related": ".xml"
  1023. }
  1024. },
  1025. "runtime": {
  1026. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1027. "related": ".xml"
  1028. }
  1029. },
  1030. "build": {
  1031. "buildTransitive/netcoreapp3.1/_._": {}
  1032. }
  1033. },
  1034. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  1035. "type": "package",
  1036. "dependencies": {
  1037. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1038. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1039. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  1040. },
  1041. "compile": {
  1042. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1043. "related": ".xml"
  1044. }
  1045. },
  1046. "runtime": {
  1047. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1048. "related": ".xml"
  1049. }
  1050. }
  1051. },
  1052. "Microsoft.Extensions.Localization/6.0.5": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1056. "Microsoft.Extensions.Localization.Abstractions": "6.0.5",
  1057. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  1058. "Microsoft.Extensions.Options": "6.0.0"
  1059. },
  1060. "compile": {
  1061. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  1062. "related": ".xml"
  1063. }
  1064. },
  1065. "runtime": {
  1066. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  1067. "related": ".xml"
  1068. }
  1069. }
  1070. },
  1071. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  1072. "type": "package",
  1073. "compile": {
  1074. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1075. "related": ".xml"
  1076. }
  1077. },
  1078. "runtime": {
  1079. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1080. "related": ".xml"
  1081. }
  1082. }
  1083. },
  1084. "Microsoft.Extensions.Logging/6.0.0": {
  1085. "type": "package",
  1086. "dependencies": {
  1087. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1088. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1089. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1090. "Microsoft.Extensions.Options": "6.0.0",
  1091. "System.Diagnostics.DiagnosticSource": "6.0.0"
  1092. },
  1093. "compile": {
  1094. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1095. "related": ".xml"
  1096. }
  1097. },
  1098. "runtime": {
  1099. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1100. "related": ".xml"
  1101. }
  1102. }
  1103. },
  1104. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  1105. "type": "package",
  1106. "compile": {
  1107. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1108. "related": ".xml"
  1109. }
  1110. },
  1111. "runtime": {
  1112. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1113. "related": ".xml"
  1114. }
  1115. },
  1116. "build": {
  1117. "buildTransitive/netcoreapp3.1/_._": {}
  1118. }
  1119. },
  1120. "Microsoft.Extensions.Options/6.0.0": {
  1121. "type": "package",
  1122. "dependencies": {
  1123. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1124. "Microsoft.Extensions.Primitives": "6.0.0"
  1125. },
  1126. "compile": {
  1127. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1128. "related": ".xml"
  1129. }
  1130. },
  1131. "runtime": {
  1132. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1133. "related": ".xml"
  1134. }
  1135. }
  1136. },
  1137. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  1138. "type": "package",
  1139. "dependencies": {
  1140. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1141. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  1142. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1143. "Microsoft.Extensions.Options": "6.0.0",
  1144. "Microsoft.Extensions.Primitives": "6.0.0"
  1145. },
  1146. "compile": {
  1147. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1148. "related": ".xml"
  1149. }
  1150. },
  1151. "runtime": {
  1152. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1153. "related": ".xml"
  1154. }
  1155. }
  1156. },
  1157. "Microsoft.Extensions.Primitives/6.0.0": {
  1158. "type": "package",
  1159. "dependencies": {
  1160. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1161. },
  1162. "compile": {
  1163. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1164. "related": ".xml"
  1165. }
  1166. },
  1167. "runtime": {
  1168. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1169. "related": ".xml"
  1170. }
  1171. },
  1172. "build": {
  1173. "buildTransitive/netcoreapp3.1/_._": {}
  1174. }
  1175. },
  1176. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  1177. "type": "package",
  1178. "dependencies": {
  1179. "Microsoft.IdentityModel.Tokens": "5.5.0",
  1180. "Newtonsoft.Json": "10.0.1"
  1181. },
  1182. "compile": {
  1183. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1184. "related": ".xml"
  1185. }
  1186. },
  1187. "runtime": {
  1188. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1189. "related": ".xml"
  1190. }
  1191. }
  1192. },
  1193. "Microsoft.IdentityModel.Logging/5.5.0": {
  1194. "type": "package",
  1195. "compile": {
  1196. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1197. "related": ".xml"
  1198. }
  1199. },
  1200. "runtime": {
  1201. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1202. "related": ".xml"
  1203. }
  1204. }
  1205. },
  1206. "Microsoft.IdentityModel.Protocols/5.5.0": {
  1207. "type": "package",
  1208. "dependencies": {
  1209. "Microsoft.IdentityModel.Logging": "5.5.0",
  1210. "Microsoft.IdentityModel.Tokens": "5.5.0"
  1211. },
  1212. "compile": {
  1213. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1214. "related": ".xml"
  1215. }
  1216. },
  1217. "runtime": {
  1218. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1219. "related": ".xml"
  1220. }
  1221. }
  1222. },
  1223. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  1224. "type": "package",
  1225. "dependencies": {
  1226. "Microsoft.IdentityModel.Protocols": "5.5.0",
  1227. "Newtonsoft.Json": "10.0.1",
  1228. "System.IdentityModel.Tokens.Jwt": "5.5.0"
  1229. },
  1230. "compile": {
  1231. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1232. "related": ".xml"
  1233. }
  1234. },
  1235. "runtime": {
  1236. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1237. "related": ".xml"
  1238. }
  1239. }
  1240. },
  1241. "Microsoft.IdentityModel.Tokens/5.5.0": {
  1242. "type": "package",
  1243. "dependencies": {
  1244. "Microsoft.IdentityModel.Logging": "5.5.0",
  1245. "Newtonsoft.Json": "10.0.1",
  1246. "System.Security.Cryptography.Cng": "4.5.0"
  1247. },
  1248. "compile": {
  1249. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1250. "related": ".xml"
  1251. }
  1252. },
  1253. "runtime": {
  1254. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1255. "related": ".xml"
  1256. }
  1257. }
  1258. },
  1259. "Microsoft.NETCore.Platforms/5.0.0": {
  1260. "type": "package",
  1261. "compile": {
  1262. "lib/netstandard1.0/_._": {}
  1263. },
  1264. "runtime": {
  1265. "lib/netstandard1.0/_._": {}
  1266. }
  1267. },
  1268. "Microsoft.NETCore.Targets/1.1.0": {
  1269. "type": "package",
  1270. "compile": {
  1271. "lib/netstandard1.0/_._": {}
  1272. },
  1273. "runtime": {
  1274. "lib/netstandard1.0/_._": {}
  1275. }
  1276. },
  1277. "Microsoft.OpenApi/1.2.3": {
  1278. "type": "package",
  1279. "compile": {
  1280. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1281. "related": ".pdb;.xml"
  1282. }
  1283. },
  1284. "runtime": {
  1285. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1286. "related": ".pdb;.xml"
  1287. }
  1288. }
  1289. },
  1290. "Microsoft.Win32.Registry/5.0.0": {
  1291. "type": "package",
  1292. "dependencies": {
  1293. "System.Security.AccessControl": "5.0.0",
  1294. "System.Security.Principal.Windows": "5.0.0"
  1295. },
  1296. "compile": {
  1297. "ref/netstandard2.0/_._": {
  1298. "related": ".xml"
  1299. }
  1300. },
  1301. "runtime": {
  1302. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1303. "related": ".xml"
  1304. }
  1305. },
  1306. "runtimeTargets": {
  1307. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1308. "assetType": "runtime",
  1309. "rid": "win"
  1310. }
  1311. }
  1312. },
  1313. "Microsoft.Win32.SystemEvents/5.0.0": {
  1314. "type": "package",
  1315. "dependencies": {
  1316. "Microsoft.NETCore.Platforms": "5.0.0"
  1317. },
  1318. "compile": {
  1319. "ref/netstandard2.0/_._": {
  1320. "related": ".xml"
  1321. }
  1322. },
  1323. "runtime": {
  1324. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1325. "related": ".xml"
  1326. }
  1327. },
  1328. "runtimeTargets": {
  1329. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1330. "assetType": "runtime",
  1331. "rid": "win"
  1332. }
  1333. }
  1334. },
  1335. "MySqlConnector/2.0.0": {
  1336. "type": "package",
  1337. "compile": {
  1338. "lib/net6.0/MySqlConnector.dll": {
  1339. "related": ".xml"
  1340. }
  1341. },
  1342. "runtime": {
  1343. "lib/net6.0/MySqlConnector.dll": {
  1344. "related": ".xml"
  1345. }
  1346. }
  1347. },
  1348. "Newtonsoft.Json/13.0.1": {
  1349. "type": "package",
  1350. "compile": {
  1351. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1352. "related": ".xml"
  1353. }
  1354. },
  1355. "runtime": {
  1356. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1357. "related": ".xml"
  1358. }
  1359. }
  1360. },
  1361. "Newtonsoft.Json.Bson/1.0.2": {
  1362. "type": "package",
  1363. "dependencies": {
  1364. "Newtonsoft.Json": "12.0.1"
  1365. },
  1366. "compile": {
  1367. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1368. "related": ".pdb;.xml"
  1369. }
  1370. },
  1371. "runtime": {
  1372. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1373. "related": ".pdb;.xml"
  1374. }
  1375. }
  1376. },
  1377. "Nito.AsyncEx.Context/5.1.2": {
  1378. "type": "package",
  1379. "dependencies": {
  1380. "Nito.AsyncEx.Tasks": "5.1.2"
  1381. },
  1382. "compile": {
  1383. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  1384. "related": ".xml"
  1385. }
  1386. },
  1387. "runtime": {
  1388. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  1389. "related": ".xml"
  1390. }
  1391. }
  1392. },
  1393. "Nito.AsyncEx.Coordination/5.1.2": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "Nito.AsyncEx.Tasks": "5.1.2",
  1397. "Nito.Collections.Deque": "1.1.1"
  1398. },
  1399. "compile": {
  1400. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1401. "related": ".xml"
  1402. }
  1403. },
  1404. "runtime": {
  1405. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1406. "related": ".xml"
  1407. }
  1408. }
  1409. },
  1410. "Nito.AsyncEx.Tasks/5.1.2": {
  1411. "type": "package",
  1412. "dependencies": {
  1413. "Nito.Disposables": "2.2.1"
  1414. },
  1415. "compile": {
  1416. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1417. "related": ".xml"
  1418. }
  1419. },
  1420. "runtime": {
  1421. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1422. "related": ".xml"
  1423. }
  1424. }
  1425. },
  1426. "Nito.Collections.Deque/1.1.1": {
  1427. "type": "package",
  1428. "compile": {
  1429. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1430. "related": ".xml"
  1431. }
  1432. },
  1433. "runtime": {
  1434. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1435. "related": ".xml"
  1436. }
  1437. }
  1438. },
  1439. "Nito.Disposables/2.2.1": {
  1440. "type": "package",
  1441. "dependencies": {
  1442. "System.Collections.Immutable": "1.7.1"
  1443. },
  1444. "compile": {
  1445. "lib/netstandard2.1/Nito.Disposables.dll": {
  1446. "related": ".xml"
  1447. }
  1448. },
  1449. "runtime": {
  1450. "lib/netstandard2.1/Nito.Disposables.dll": {
  1451. "related": ".xml"
  1452. }
  1453. }
  1454. },
  1455. "NUglify/1.20.0": {
  1456. "type": "package",
  1457. "compile": {
  1458. "lib/net5.0/NUglify.dll": {
  1459. "related": ".xml"
  1460. }
  1461. },
  1462. "runtime": {
  1463. "lib/net5.0/NUglify.dll": {
  1464. "related": ".xml"
  1465. }
  1466. }
  1467. },
  1468. "Pipelines.Sockets.Unofficial/2.2.0": {
  1469. "type": "package",
  1470. "dependencies": {
  1471. "System.IO.Pipelines": "5.0.0"
  1472. },
  1473. "compile": {
  1474. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1475. "related": ".xml"
  1476. }
  1477. },
  1478. "runtime": {
  1479. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1480. "related": ".xml"
  1481. }
  1482. }
  1483. },
  1484. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  1485. "type": "package",
  1486. "dependencies": {
  1487. "Microsoft.EntityFrameworkCore.Relational": "[6.0.0, 7.0.0)",
  1488. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1489. "MySqlConnector": "2.0.0"
  1490. },
  1491. "compile": {
  1492. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1493. "related": ".xml"
  1494. }
  1495. },
  1496. "runtime": {
  1497. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1498. "related": ".xml"
  1499. }
  1500. }
  1501. },
  1502. "Serilog/2.11.0": {
  1503. "type": "package",
  1504. "compile": {
  1505. "lib/net5.0/Serilog.dll": {
  1506. "related": ".xml"
  1507. }
  1508. },
  1509. "runtime": {
  1510. "lib/net5.0/Serilog.dll": {
  1511. "related": ".xml"
  1512. }
  1513. }
  1514. },
  1515. "Serilog.AspNetCore/5.0.0": {
  1516. "type": "package",
  1517. "dependencies": {
  1518. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1519. "Microsoft.Extensions.Logging": "5.0.0",
  1520. "Serilog": "2.10.0",
  1521. "Serilog.Extensions.Hosting": "4.2.0",
  1522. "Serilog.Formatting.Compact": "1.1.0",
  1523. "Serilog.Settings.Configuration": "3.3.0",
  1524. "Serilog.Sinks.Console": "4.0.1",
  1525. "Serilog.Sinks.Debug": "2.0.0",
  1526. "Serilog.Sinks.File": "5.0.0"
  1527. },
  1528. "compile": {
  1529. "lib/net5.0/Serilog.AspNetCore.dll": {
  1530. "related": ".xml"
  1531. }
  1532. },
  1533. "runtime": {
  1534. "lib/net5.0/Serilog.AspNetCore.dll": {
  1535. "related": ".xml"
  1536. }
  1537. },
  1538. "frameworkReferences": [
  1539. "Microsoft.AspNetCore.App"
  1540. ]
  1541. },
  1542. "Serilog.Extensions.Hosting/4.2.0": {
  1543. "type": "package",
  1544. "dependencies": {
  1545. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
  1546. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  1547. "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
  1548. "Serilog": "2.10.0",
  1549. "Serilog.Extensions.Logging": "3.1.0"
  1550. },
  1551. "compile": {
  1552. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1553. "related": ".xml"
  1554. }
  1555. },
  1556. "runtime": {
  1557. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1558. "related": ".xml"
  1559. }
  1560. }
  1561. },
  1562. "Serilog.Extensions.Logging/3.1.0": {
  1563. "type": "package",
  1564. "dependencies": {
  1565. "Microsoft.Extensions.Logging": "2.0.0",
  1566. "Serilog": "2.9.0"
  1567. },
  1568. "compile": {
  1569. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1570. "related": ".xml"
  1571. }
  1572. },
  1573. "runtime": {
  1574. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1575. "related": ".xml"
  1576. }
  1577. }
  1578. },
  1579. "Serilog.Formatting.Compact/1.1.0": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "Serilog": "2.8.0"
  1583. },
  1584. "compile": {
  1585. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1586. "related": ".xml"
  1587. }
  1588. },
  1589. "runtime": {
  1590. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1591. "related": ".xml"
  1592. }
  1593. }
  1594. },
  1595. "Serilog.Settings.Configuration/3.3.0": {
  1596. "type": "package",
  1597. "dependencies": {
  1598. "Microsoft.Extensions.DependencyModel": "3.0.0",
  1599. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  1600. "Serilog": "2.10.0"
  1601. },
  1602. "compile": {
  1603. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1604. "related": ".xml"
  1605. }
  1606. },
  1607. "runtime": {
  1608. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1609. "related": ".xml"
  1610. }
  1611. }
  1612. },
  1613. "Serilog.Sinks.Async/1.5.0": {
  1614. "type": "package",
  1615. "dependencies": {
  1616. "Serilog": "2.9.0"
  1617. },
  1618. "compile": {
  1619. "lib/netstandard2.0/Serilog.Sinks.Async.dll": {
  1620. "related": ".xml"
  1621. }
  1622. },
  1623. "runtime": {
  1624. "lib/netstandard2.0/Serilog.Sinks.Async.dll": {
  1625. "related": ".xml"
  1626. }
  1627. }
  1628. },
  1629. "Serilog.Sinks.Console/4.0.1": {
  1630. "type": "package",
  1631. "dependencies": {
  1632. "Serilog": "2.10.0"
  1633. },
  1634. "compile": {
  1635. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1636. "related": ".xml"
  1637. }
  1638. },
  1639. "runtime": {
  1640. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1641. "related": ".xml"
  1642. }
  1643. }
  1644. },
  1645. "Serilog.Sinks.Debug/2.0.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "Serilog": "2.10.0"
  1649. },
  1650. "compile": {
  1651. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1652. "related": ".xml"
  1653. }
  1654. },
  1655. "runtime": {
  1656. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1657. "related": ".xml"
  1658. }
  1659. }
  1660. },
  1661. "Serilog.Sinks.File/5.0.0": {
  1662. "type": "package",
  1663. "dependencies": {
  1664. "Serilog": "2.10.0"
  1665. },
  1666. "compile": {
  1667. "lib/net5.0/Serilog.Sinks.File.dll": {
  1668. "related": ".pdb;.xml"
  1669. }
  1670. },
  1671. "runtime": {
  1672. "lib/net5.0/Serilog.Sinks.File.dll": {
  1673. "related": ".pdb;.xml"
  1674. }
  1675. }
  1676. },
  1677. "StackExchange.Redis/2.2.4": {
  1678. "type": "package",
  1679. "dependencies": {
  1680. "Pipelines.Sockets.Unofficial": "2.2.0",
  1681. "System.Diagnostics.PerformanceCounter": "5.0.0"
  1682. },
  1683. "compile": {
  1684. "lib/net5.0/StackExchange.Redis.dll": {
  1685. "related": ".xml"
  1686. }
  1687. },
  1688. "runtime": {
  1689. "lib/net5.0/StackExchange.Redis.dll": {
  1690. "related": ".xml"
  1691. }
  1692. }
  1693. },
  1694. "Swashbuckle.AspNetCore/6.3.0": {
  1695. "type": "package",
  1696. "dependencies": {
  1697. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1698. "Swashbuckle.AspNetCore.Swagger": "6.3.0",
  1699. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.0",
  1700. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.0"
  1701. },
  1702. "build": {
  1703. "build/Swashbuckle.AspNetCore.props": {}
  1704. }
  1705. },
  1706. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  1707. "type": "package",
  1708. "dependencies": {
  1709. "Microsoft.OpenApi": "1.2.3"
  1710. },
  1711. "compile": {
  1712. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1713. "related": ".pdb;.xml"
  1714. }
  1715. },
  1716. "runtime": {
  1717. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1718. "related": ".pdb;.xml"
  1719. }
  1720. },
  1721. "frameworkReferences": [
  1722. "Microsoft.AspNetCore.App"
  1723. ]
  1724. },
  1725. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  1726. "type": "package",
  1727. "dependencies": {
  1728. "Swashbuckle.AspNetCore.Swagger": "6.3.0"
  1729. },
  1730. "compile": {
  1731. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1732. "related": ".pdb;.xml"
  1733. }
  1734. },
  1735. "runtime": {
  1736. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1737. "related": ".pdb;.xml"
  1738. }
  1739. }
  1740. },
  1741. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  1742. "type": "package",
  1743. "compile": {
  1744. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1745. "related": ".pdb;.xml"
  1746. }
  1747. },
  1748. "runtime": {
  1749. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1750. "related": ".pdb;.xml"
  1751. }
  1752. },
  1753. "frameworkReferences": [
  1754. "Microsoft.AspNetCore.App"
  1755. ]
  1756. },
  1757. "System.Buffers/4.5.1": {
  1758. "type": "package",
  1759. "compile": {
  1760. "ref/netcoreapp2.0/_._": {}
  1761. },
  1762. "runtime": {
  1763. "lib/netcoreapp2.0/_._": {}
  1764. }
  1765. },
  1766. "System.Collections/4.3.0": {
  1767. "type": "package",
  1768. "dependencies": {
  1769. "Microsoft.NETCore.Platforms": "1.1.0",
  1770. "Microsoft.NETCore.Targets": "1.1.0",
  1771. "System.Runtime": "4.3.0"
  1772. },
  1773. "compile": {
  1774. "ref/netstandard1.3/System.Collections.dll": {
  1775. "related": ".xml"
  1776. }
  1777. }
  1778. },
  1779. "System.Collections.Immutable/6.0.0": {
  1780. "type": "package",
  1781. "dependencies": {
  1782. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1783. },
  1784. "compile": {
  1785. "lib/net6.0/System.Collections.Immutable.dll": {
  1786. "related": ".xml"
  1787. }
  1788. },
  1789. "runtime": {
  1790. "lib/net6.0/System.Collections.Immutable.dll": {
  1791. "related": ".xml"
  1792. }
  1793. },
  1794. "build": {
  1795. "buildTransitive/netcoreapp3.1/_._": {}
  1796. }
  1797. },
  1798. "System.Configuration.ConfigurationManager/5.0.0": {
  1799. "type": "package",
  1800. "dependencies": {
  1801. "System.Security.Cryptography.ProtectedData": "5.0.0",
  1802. "System.Security.Permissions": "5.0.0"
  1803. },
  1804. "compile": {
  1805. "ref/netstandard2.0/_._": {
  1806. "related": ".xml"
  1807. }
  1808. },
  1809. "runtime": {
  1810. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1811. "related": ".xml"
  1812. }
  1813. }
  1814. },
  1815. "System.Diagnostics.Debug/4.3.0": {
  1816. "type": "package",
  1817. "dependencies": {
  1818. "Microsoft.NETCore.Platforms": "1.1.0",
  1819. "Microsoft.NETCore.Targets": "1.1.0",
  1820. "System.Runtime": "4.3.0"
  1821. },
  1822. "compile": {
  1823. "ref/netstandard1.3/_._": {
  1824. "related": ".xml"
  1825. }
  1826. }
  1827. },
  1828. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1829. "type": "package",
  1830. "dependencies": {
  1831. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1832. },
  1833. "compile": {
  1834. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1835. "related": ".xml"
  1836. }
  1837. },
  1838. "runtime": {
  1839. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1840. "related": ".xml"
  1841. }
  1842. },
  1843. "build": {
  1844. "buildTransitive/netcoreapp3.1/_._": {}
  1845. }
  1846. },
  1847. "System.Diagnostics.EventLog/6.0.0": {
  1848. "type": "package",
  1849. "compile": {
  1850. "lib/net6.0/System.Diagnostics.EventLog.dll": {
  1851. "related": ".xml"
  1852. }
  1853. },
  1854. "runtime": {
  1855. "lib/net6.0/System.Diagnostics.EventLog.dll": {
  1856. "related": ".xml"
  1857. }
  1858. },
  1859. "build": {
  1860. "buildTransitive/netcoreapp3.1/_._": {}
  1861. },
  1862. "runtimeTargets": {
  1863. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": {
  1864. "assetType": "runtime",
  1865. "rid": "win"
  1866. },
  1867. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": {
  1868. "assetType": "runtime",
  1869. "rid": "win"
  1870. }
  1871. }
  1872. },
  1873. "System.Diagnostics.PerformanceCounter/5.0.0": {
  1874. "type": "package",
  1875. "dependencies": {
  1876. "Microsoft.NETCore.Platforms": "5.0.0",
  1877. "Microsoft.Win32.Registry": "5.0.0",
  1878. "System.Configuration.ConfigurationManager": "5.0.0",
  1879. "System.Security.Principal.Windows": "5.0.0"
  1880. },
  1881. "compile": {
  1882. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1883. "related": ".xml"
  1884. }
  1885. },
  1886. "runtime": {
  1887. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1888. "related": ".xml"
  1889. }
  1890. },
  1891. "runtimeTargets": {
  1892. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1893. "assetType": "runtime",
  1894. "rid": "win"
  1895. }
  1896. }
  1897. },
  1898. "System.Drawing.Common/5.0.0": {
  1899. "type": "package",
  1900. "dependencies": {
  1901. "Microsoft.Win32.SystemEvents": "5.0.0"
  1902. },
  1903. "compile": {
  1904. "ref/netcoreapp3.0/_._": {
  1905. "related": ".xml"
  1906. }
  1907. },
  1908. "runtime": {
  1909. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1910. "related": ".xml"
  1911. }
  1912. },
  1913. "runtimeTargets": {
  1914. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1915. "assetType": "runtime",
  1916. "rid": "unix"
  1917. },
  1918. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1919. "assetType": "runtime",
  1920. "rid": "win"
  1921. }
  1922. }
  1923. },
  1924. "System.Formats.Asn1/6.0.0": {
  1925. "type": "package",
  1926. "compile": {
  1927. "lib/net6.0/System.Formats.Asn1.dll": {
  1928. "related": ".xml"
  1929. }
  1930. },
  1931. "runtime": {
  1932. "lib/net6.0/System.Formats.Asn1.dll": {
  1933. "related": ".xml"
  1934. }
  1935. },
  1936. "build": {
  1937. "buildTransitive/netcoreapp3.1/_._": {}
  1938. }
  1939. },
  1940. "System.Globalization/4.3.0": {
  1941. "type": "package",
  1942. "dependencies": {
  1943. "Microsoft.NETCore.Platforms": "1.1.0",
  1944. "Microsoft.NETCore.Targets": "1.1.0",
  1945. "System.Runtime": "4.3.0"
  1946. },
  1947. "compile": {
  1948. "ref/netstandard1.3/_._": {
  1949. "related": ".xml"
  1950. }
  1951. }
  1952. },
  1953. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  1954. "type": "package",
  1955. "dependencies": {
  1956. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  1957. "Microsoft.IdentityModel.Tokens": "5.5.0",
  1958. "Newtonsoft.Json": "10.0.1"
  1959. },
  1960. "compile": {
  1961. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1962. "related": ".xml"
  1963. }
  1964. },
  1965. "runtime": {
  1966. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1967. "related": ".xml"
  1968. }
  1969. }
  1970. },
  1971. "System.IO/4.3.0": {
  1972. "type": "package",
  1973. "dependencies": {
  1974. "Microsoft.NETCore.Platforms": "1.1.0",
  1975. "Microsoft.NETCore.Targets": "1.1.0",
  1976. "System.Runtime": "4.3.0",
  1977. "System.Text.Encoding": "4.3.0",
  1978. "System.Threading.Tasks": "4.3.0"
  1979. },
  1980. "compile": {
  1981. "ref/netstandard1.5/System.IO.dll": {
  1982. "related": ".xml"
  1983. }
  1984. }
  1985. },
  1986. "System.IO.Pipelines/5.0.2": {
  1987. "type": "package",
  1988. "compile": {
  1989. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1990. "related": ".xml"
  1991. }
  1992. },
  1993. "runtime": {
  1994. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1995. "related": ".xml"
  1996. }
  1997. }
  1998. },
  1999. "System.Linq/4.3.0": {
  2000. "type": "package",
  2001. "dependencies": {
  2002. "System.Collections": "4.3.0",
  2003. "System.Diagnostics.Debug": "4.3.0",
  2004. "System.Resources.ResourceManager": "4.3.0",
  2005. "System.Runtime": "4.3.0",
  2006. "System.Runtime.Extensions": "4.3.0"
  2007. },
  2008. "compile": {
  2009. "ref/netstandard1.6/System.Linq.dll": {
  2010. "related": ".xml"
  2011. }
  2012. },
  2013. "runtime": {
  2014. "lib/netstandard1.6/System.Linq.dll": {}
  2015. }
  2016. },
  2017. "System.Linq.Dynamic.Core/1.2.18": {
  2018. "type": "package",
  2019. "compile": {
  2020. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  2021. "related": ".pdb;.xml"
  2022. }
  2023. },
  2024. "runtime": {
  2025. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  2026. "related": ".pdb;.xml"
  2027. }
  2028. }
  2029. },
  2030. "System.Linq.Expressions/4.3.0": {
  2031. "type": "package",
  2032. "dependencies": {
  2033. "System.Collections": "4.3.0",
  2034. "System.Diagnostics.Debug": "4.3.0",
  2035. "System.Globalization": "4.3.0",
  2036. "System.IO": "4.3.0",
  2037. "System.Linq": "4.3.0",
  2038. "System.ObjectModel": "4.3.0",
  2039. "System.Reflection": "4.3.0",
  2040. "System.Reflection.Emit": "4.3.0",
  2041. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2042. "System.Reflection.Emit.Lightweight": "4.3.0",
  2043. "System.Reflection.Extensions": "4.3.0",
  2044. "System.Reflection.Primitives": "4.3.0",
  2045. "System.Reflection.TypeExtensions": "4.3.0",
  2046. "System.Resources.ResourceManager": "4.3.0",
  2047. "System.Runtime": "4.3.0",
  2048. "System.Runtime.Extensions": "4.3.0",
  2049. "System.Threading": "4.3.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2053. "related": ".xml"
  2054. }
  2055. },
  2056. "runtime": {
  2057. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2058. }
  2059. },
  2060. "System.Linq.Queryable/4.3.0": {
  2061. "type": "package",
  2062. "dependencies": {
  2063. "System.Collections": "4.3.0",
  2064. "System.Diagnostics.Debug": "4.3.0",
  2065. "System.Linq": "4.3.0",
  2066. "System.Linq.Expressions": "4.3.0",
  2067. "System.Reflection": "4.3.0",
  2068. "System.Reflection.Extensions": "4.3.0",
  2069. "System.Resources.ResourceManager": "4.3.0",
  2070. "System.Runtime": "4.3.0"
  2071. },
  2072. "compile": {
  2073. "ref/netstandard1.0/System.Linq.Queryable.dll": {
  2074. "related": ".xml"
  2075. }
  2076. },
  2077. "runtime": {
  2078. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  2079. }
  2080. },
  2081. "System.Memory/4.5.4": {
  2082. "type": "package",
  2083. "compile": {
  2084. "ref/netcoreapp2.1/_._": {}
  2085. },
  2086. "runtime": {
  2087. "lib/netcoreapp2.1/_._": {}
  2088. }
  2089. },
  2090. "System.ObjectModel/4.3.0": {
  2091. "type": "package",
  2092. "dependencies": {
  2093. "System.Collections": "4.3.0",
  2094. "System.Diagnostics.Debug": "4.3.0",
  2095. "System.Resources.ResourceManager": "4.3.0",
  2096. "System.Runtime": "4.3.0",
  2097. "System.Threading": "4.3.0"
  2098. },
  2099. "compile": {
  2100. "ref/netstandard1.3/_._": {
  2101. "related": ".xml"
  2102. }
  2103. },
  2104. "runtime": {
  2105. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2106. }
  2107. },
  2108. "System.Reflection/4.3.0": {
  2109. "type": "package",
  2110. "dependencies": {
  2111. "Microsoft.NETCore.Platforms": "1.1.0",
  2112. "Microsoft.NETCore.Targets": "1.1.0",
  2113. "System.IO": "4.3.0",
  2114. "System.Reflection.Primitives": "4.3.0",
  2115. "System.Runtime": "4.3.0"
  2116. },
  2117. "compile": {
  2118. "ref/netstandard1.5/System.Reflection.dll": {
  2119. "related": ".xml"
  2120. }
  2121. }
  2122. },
  2123. "System.Reflection.Emit/4.3.0": {
  2124. "type": "package",
  2125. "dependencies": {
  2126. "System.IO": "4.3.0",
  2127. "System.Reflection": "4.3.0",
  2128. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2129. "System.Reflection.Primitives": "4.3.0",
  2130. "System.Runtime": "4.3.0"
  2131. },
  2132. "compile": {
  2133. "ref/netstandard1.1/_._": {
  2134. "related": ".xml"
  2135. }
  2136. },
  2137. "runtime": {
  2138. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2139. }
  2140. },
  2141. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2142. "type": "package",
  2143. "dependencies": {
  2144. "System.Reflection": "4.3.0",
  2145. "System.Reflection.Primitives": "4.3.0",
  2146. "System.Runtime": "4.3.0"
  2147. },
  2148. "compile": {
  2149. "ref/netstandard1.0/_._": {
  2150. "related": ".xml"
  2151. }
  2152. },
  2153. "runtime": {
  2154. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2155. }
  2156. },
  2157. "System.Reflection.Emit.Lightweight/4.3.0": {
  2158. "type": "package",
  2159. "dependencies": {
  2160. "System.Reflection": "4.3.0",
  2161. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2162. "System.Reflection.Primitives": "4.3.0",
  2163. "System.Runtime": "4.3.0"
  2164. },
  2165. "compile": {
  2166. "ref/netstandard1.0/_._": {
  2167. "related": ".xml"
  2168. }
  2169. },
  2170. "runtime": {
  2171. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2172. }
  2173. },
  2174. "System.Reflection.Extensions/4.3.0": {
  2175. "type": "package",
  2176. "dependencies": {
  2177. "Microsoft.NETCore.Platforms": "1.1.0",
  2178. "Microsoft.NETCore.Targets": "1.1.0",
  2179. "System.Reflection": "4.3.0",
  2180. "System.Runtime": "4.3.0"
  2181. },
  2182. "compile": {
  2183. "ref/netstandard1.0/_._": {
  2184. "related": ".xml"
  2185. }
  2186. }
  2187. },
  2188. "System.Reflection.Metadata/5.0.0": {
  2189. "type": "package",
  2190. "compile": {
  2191. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2192. "related": ".xml"
  2193. }
  2194. },
  2195. "runtime": {
  2196. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2197. "related": ".xml"
  2198. }
  2199. }
  2200. },
  2201. "System.Reflection.Primitives/4.3.0": {
  2202. "type": "package",
  2203. "dependencies": {
  2204. "Microsoft.NETCore.Platforms": "1.1.0",
  2205. "Microsoft.NETCore.Targets": "1.1.0",
  2206. "System.Runtime": "4.3.0"
  2207. },
  2208. "compile": {
  2209. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2210. "related": ".xml"
  2211. }
  2212. }
  2213. },
  2214. "System.Reflection.TypeExtensions/4.3.0": {
  2215. "type": "package",
  2216. "dependencies": {
  2217. "System.Reflection": "4.3.0",
  2218. "System.Runtime": "4.3.0"
  2219. },
  2220. "compile": {
  2221. "ref/netstandard1.5/_._": {
  2222. "related": ".xml"
  2223. }
  2224. },
  2225. "runtime": {
  2226. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2227. }
  2228. },
  2229. "System.Resources.ResourceManager/4.3.0": {
  2230. "type": "package",
  2231. "dependencies": {
  2232. "Microsoft.NETCore.Platforms": "1.1.0",
  2233. "Microsoft.NETCore.Targets": "1.1.0",
  2234. "System.Globalization": "4.3.0",
  2235. "System.Reflection": "4.3.0",
  2236. "System.Runtime": "4.3.0"
  2237. },
  2238. "compile": {
  2239. "ref/netstandard1.0/_._": {
  2240. "related": ".xml"
  2241. }
  2242. }
  2243. },
  2244. "System.Runtime/4.3.0": {
  2245. "type": "package",
  2246. "dependencies": {
  2247. "Microsoft.NETCore.Platforms": "1.1.0",
  2248. "Microsoft.NETCore.Targets": "1.1.0"
  2249. },
  2250. "compile": {
  2251. "ref/netstandard1.5/System.Runtime.dll": {
  2252. "related": ".xml"
  2253. }
  2254. }
  2255. },
  2256. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2257. "type": "package",
  2258. "compile": {
  2259. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2260. "related": ".xml"
  2261. }
  2262. },
  2263. "runtime": {
  2264. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2265. "related": ".xml"
  2266. }
  2267. },
  2268. "build": {
  2269. "buildTransitive/netcoreapp3.1/_._": {}
  2270. }
  2271. },
  2272. "System.Runtime.Extensions/4.3.0": {
  2273. "type": "package",
  2274. "dependencies": {
  2275. "Microsoft.NETCore.Platforms": "1.1.0",
  2276. "Microsoft.NETCore.Targets": "1.1.0",
  2277. "System.Runtime": "4.3.0"
  2278. },
  2279. "compile": {
  2280. "ref/netstandard1.5/_._": {
  2281. "related": ".xml"
  2282. }
  2283. }
  2284. },
  2285. "System.Runtime.Loader/4.3.0": {
  2286. "type": "package",
  2287. "dependencies": {
  2288. "System.IO": "4.3.0",
  2289. "System.Reflection": "4.3.0",
  2290. "System.Runtime": "4.3.0"
  2291. },
  2292. "compile": {
  2293. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  2294. "related": ".xml"
  2295. }
  2296. },
  2297. "runtime": {
  2298. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2299. }
  2300. },
  2301. "System.Security.AccessControl/6.0.0": {
  2302. "type": "package",
  2303. "compile": {
  2304. "lib/net6.0/System.Security.AccessControl.dll": {
  2305. "related": ".xml"
  2306. }
  2307. },
  2308. "runtime": {
  2309. "lib/net6.0/System.Security.AccessControl.dll": {
  2310. "related": ".xml"
  2311. }
  2312. },
  2313. "build": {
  2314. "buildTransitive/netcoreapp3.1/_._": {}
  2315. },
  2316. "runtimeTargets": {
  2317. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
  2318. "assetType": "runtime",
  2319. "rid": "win"
  2320. }
  2321. }
  2322. },
  2323. "System.Security.Cryptography.Cng/4.5.0": {
  2324. "type": "package",
  2325. "compile": {
  2326. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2327. "related": ".xml"
  2328. }
  2329. },
  2330. "runtime": {
  2331. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2332. },
  2333. "runtimeTargets": {
  2334. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2335. "assetType": "runtime",
  2336. "rid": "win"
  2337. }
  2338. }
  2339. },
  2340. "System.Security.Cryptography.Pkcs/6.0.0": {
  2341. "type": "package",
  2342. "dependencies": {
  2343. "System.Formats.Asn1": "6.0.0"
  2344. },
  2345. "compile": {
  2346. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2347. "related": ".xml"
  2348. }
  2349. },
  2350. "runtime": {
  2351. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2352. "related": ".xml"
  2353. }
  2354. },
  2355. "build": {
  2356. "buildTransitive/netcoreapp3.1/_._": {}
  2357. },
  2358. "runtimeTargets": {
  2359. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2360. "assetType": "runtime",
  2361. "rid": "win"
  2362. }
  2363. }
  2364. },
  2365. "System.Security.Cryptography.ProtectedData/5.0.0": {
  2366. "type": "package",
  2367. "compile": {
  2368. "ref/netstandard2.0/_._": {
  2369. "related": ".xml"
  2370. }
  2371. },
  2372. "runtime": {
  2373. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2374. "related": ".xml"
  2375. }
  2376. },
  2377. "runtimeTargets": {
  2378. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2379. "assetType": "runtime",
  2380. "rid": "win"
  2381. }
  2382. }
  2383. },
  2384. "System.Security.Cryptography.Xml/6.0.0": {
  2385. "type": "package",
  2386. "dependencies": {
  2387. "System.Security.AccessControl": "6.0.0",
  2388. "System.Security.Cryptography.Pkcs": "6.0.0"
  2389. },
  2390. "compile": {
  2391. "lib/net6.0/System.Security.Cryptography.Xml.dll": {
  2392. "related": ".xml"
  2393. }
  2394. },
  2395. "runtime": {
  2396. "lib/net6.0/System.Security.Cryptography.Xml.dll": {
  2397. "related": ".xml"
  2398. }
  2399. },
  2400. "build": {
  2401. "buildTransitive/netcoreapp3.1/_._": {}
  2402. }
  2403. },
  2404. "System.Security.Permissions/5.0.0": {
  2405. "type": "package",
  2406. "dependencies": {
  2407. "System.Security.AccessControl": "5.0.0",
  2408. "System.Windows.Extensions": "5.0.0"
  2409. },
  2410. "compile": {
  2411. "ref/net5.0/_._": {
  2412. "related": ".xml"
  2413. }
  2414. },
  2415. "runtime": {
  2416. "lib/net5.0/System.Security.Permissions.dll": {
  2417. "related": ".xml"
  2418. }
  2419. }
  2420. },
  2421. "System.Security.Principal.Windows/5.0.0": {
  2422. "type": "package",
  2423. "compile": {
  2424. "ref/netcoreapp3.0/_._": {
  2425. "related": ".xml"
  2426. }
  2427. },
  2428. "runtime": {
  2429. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2430. "related": ".xml"
  2431. }
  2432. },
  2433. "runtimeTargets": {
  2434. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2435. "assetType": "runtime",
  2436. "rid": "unix"
  2437. },
  2438. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2439. "assetType": "runtime",
  2440. "rid": "win"
  2441. }
  2442. }
  2443. },
  2444. "System.Text.Encoding/4.3.0": {
  2445. "type": "package",
  2446. "dependencies": {
  2447. "Microsoft.NETCore.Platforms": "1.1.0",
  2448. "Microsoft.NETCore.Targets": "1.1.0",
  2449. "System.Runtime": "4.3.0"
  2450. },
  2451. "compile": {
  2452. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2453. "related": ".xml"
  2454. }
  2455. }
  2456. },
  2457. "System.Text.Encoding.CodePages/4.5.1": {
  2458. "type": "package",
  2459. "dependencies": {
  2460. "Microsoft.NETCore.Platforms": "2.1.2",
  2461. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2462. },
  2463. "compile": {
  2464. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2465. },
  2466. "runtime": {
  2467. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2468. },
  2469. "runtimeTargets": {
  2470. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2471. "assetType": "runtime",
  2472. "rid": "win"
  2473. }
  2474. }
  2475. },
  2476. "System.Text.Encodings.Web/6.0.0": {
  2477. "type": "package",
  2478. "dependencies": {
  2479. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2480. },
  2481. "compile": {
  2482. "lib/net6.0/System.Text.Encodings.Web.dll": {
  2483. "related": ".xml"
  2484. }
  2485. },
  2486. "runtime": {
  2487. "lib/net6.0/System.Text.Encodings.Web.dll": {
  2488. "related": ".xml"
  2489. }
  2490. },
  2491. "build": {
  2492. "buildTransitive/netcoreapp3.1/_._": {}
  2493. },
  2494. "runtimeTargets": {
  2495. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  2496. "assetType": "runtime",
  2497. "rid": "browser"
  2498. }
  2499. }
  2500. },
  2501. "System.Text.Json/6.0.0": {
  2502. "type": "package",
  2503. "dependencies": {
  2504. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2505. "System.Text.Encodings.Web": "6.0.0"
  2506. },
  2507. "compile": {
  2508. "lib/net6.0/System.Text.Json.dll": {
  2509. "related": ".xml"
  2510. }
  2511. },
  2512. "runtime": {
  2513. "lib/net6.0/System.Text.Json.dll": {
  2514. "related": ".xml"
  2515. }
  2516. },
  2517. "build": {
  2518. "buildTransitive/netcoreapp3.1/_._": {}
  2519. }
  2520. },
  2521. "System.Threading/4.3.0": {
  2522. "type": "package",
  2523. "dependencies": {
  2524. "System.Runtime": "4.3.0",
  2525. "System.Threading.Tasks": "4.3.0"
  2526. },
  2527. "compile": {
  2528. "ref/netstandard1.3/_._": {
  2529. "related": ".xml"
  2530. }
  2531. },
  2532. "runtime": {
  2533. "lib/netstandard1.3/System.Threading.dll": {}
  2534. }
  2535. },
  2536. "System.Threading.Tasks/4.3.0": {
  2537. "type": "package",
  2538. "dependencies": {
  2539. "Microsoft.NETCore.Platforms": "1.1.0",
  2540. "Microsoft.NETCore.Targets": "1.1.0",
  2541. "System.Runtime": "4.3.0"
  2542. },
  2543. "compile": {
  2544. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2545. "related": ".xml"
  2546. }
  2547. }
  2548. },
  2549. "System.Threading.Tasks.Extensions/4.5.4": {
  2550. "type": "package",
  2551. "compile": {
  2552. "ref/netcoreapp2.1/_._": {}
  2553. },
  2554. "runtime": {
  2555. "lib/netcoreapp2.1/_._": {}
  2556. }
  2557. },
  2558. "System.Windows.Extensions/5.0.0": {
  2559. "type": "package",
  2560. "dependencies": {
  2561. "System.Drawing.Common": "5.0.0"
  2562. },
  2563. "compile": {
  2564. "ref/netcoreapp3.0/_._": {
  2565. "related": ".xml"
  2566. }
  2567. },
  2568. "runtime": {
  2569. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2570. "related": ".xml"
  2571. }
  2572. },
  2573. "runtimeTargets": {
  2574. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2575. "assetType": "runtime",
  2576. "rid": "win"
  2577. }
  2578. }
  2579. },
  2580. "TimeZoneConverter/5.0.0": {
  2581. "type": "package",
  2582. "compile": {
  2583. "lib/netstandard2.0/TimeZoneConverter.dll": {
  2584. "related": ".xml"
  2585. }
  2586. },
  2587. "runtime": {
  2588. "lib/netstandard2.0/TimeZoneConverter.dll": {
  2589. "related": ".xml"
  2590. }
  2591. }
  2592. },
  2593. "Volo.Abp.ApiVersioning.Abstractions/6.0.0": {
  2594. "type": "package",
  2595. "dependencies": {
  2596. "Volo.Abp.Core": "6.0.0"
  2597. },
  2598. "compile": {
  2599. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {
  2600. "related": ".pdb;.xml"
  2601. }
  2602. },
  2603. "runtime": {
  2604. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {
  2605. "related": ".pdb;.xml"
  2606. }
  2607. }
  2608. },
  2609. "Volo.Abp.AspNetCore/6.0.0": {
  2610. "type": "package",
  2611. "dependencies": {
  2612. "Volo.Abp.Auditing": "6.0.0",
  2613. "Volo.Abp.Authorization": "6.0.0",
  2614. "Volo.Abp.ExceptionHandling": "6.0.0",
  2615. "Volo.Abp.Http": "6.0.0",
  2616. "Volo.Abp.Security": "6.0.0",
  2617. "Volo.Abp.Uow": "6.0.0",
  2618. "Volo.Abp.Validation": "6.0.0",
  2619. "Volo.Abp.VirtualFileSystem": "6.0.0"
  2620. },
  2621. "compile": {
  2622. "lib/net6.0/Volo.Abp.AspNetCore.dll": {
  2623. "related": ".pdb;.xml"
  2624. }
  2625. },
  2626. "runtime": {
  2627. "lib/net6.0/Volo.Abp.AspNetCore.dll": {
  2628. "related": ".pdb;.xml"
  2629. }
  2630. },
  2631. "frameworkReferences": [
  2632. "Microsoft.AspNetCore.App"
  2633. ]
  2634. },
  2635. "Volo.Abp.AspNetCore.MultiTenancy/6.0.0": {
  2636. "type": "package",
  2637. "dependencies": {
  2638. "Volo.Abp.AspNetCore": "6.0.0",
  2639. "Volo.Abp.MultiTenancy": "6.0.0"
  2640. },
  2641. "compile": {
  2642. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll": {
  2643. "related": ".pdb;.xml"
  2644. }
  2645. },
  2646. "runtime": {
  2647. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll": {
  2648. "related": ".pdb;.xml"
  2649. }
  2650. },
  2651. "frameworkReferences": [
  2652. "Microsoft.AspNetCore.App"
  2653. ]
  2654. },
  2655. "Volo.Abp.AspNetCore.Mvc/6.0.0": {
  2656. "type": "package",
  2657. "dependencies": {
  2658. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.5",
  2659. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "6.0.5",
  2660. "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0",
  2661. "Volo.Abp.ApiVersioning.Abstractions": "6.0.0",
  2662. "Volo.Abp.AspNetCore": "6.0.0",
  2663. "Volo.Abp.AspNetCore.Mvc.Contracts": "6.0.0",
  2664. "Volo.Abp.Ddd.Application": "6.0.0",
  2665. "Volo.Abp.GlobalFeatures": "6.0.0",
  2666. "Volo.Abp.Localization": "6.0.0",
  2667. "Volo.Abp.UI.Navigation": "6.0.0"
  2668. },
  2669. "compile": {
  2670. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll": {
  2671. "related": ".pdb;.xml"
  2672. }
  2673. },
  2674. "runtime": {
  2675. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll": {
  2676. "related": ".pdb;.xml"
  2677. }
  2678. }
  2679. },
  2680. "Volo.Abp.AspNetCore.Mvc.Contracts/6.0.0": {
  2681. "type": "package",
  2682. "dependencies": {
  2683. "Volo.Abp.Ddd.Application.Contracts": "6.0.0"
  2684. },
  2685. "compile": {
  2686. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {
  2687. "related": ".pdb;.xml"
  2688. }
  2689. },
  2690. "runtime": {
  2691. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {
  2692. "related": ".pdb;.xml"
  2693. }
  2694. }
  2695. },
  2696. "Volo.Abp.AspNetCore.Serilog/6.0.0": {
  2697. "type": "package",
  2698. "dependencies": {
  2699. "Serilog": "2.11.0",
  2700. "Volo.Abp.AspNetCore": "6.0.0",
  2701. "Volo.Abp.MultiTenancy": "6.0.0"
  2702. },
  2703. "compile": {
  2704. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll": {
  2705. "related": ".pdb;.xml"
  2706. }
  2707. },
  2708. "runtime": {
  2709. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll": {
  2710. "related": ".pdb;.xml"
  2711. }
  2712. },
  2713. "frameworkReferences": [
  2714. "Microsoft.AspNetCore.App"
  2715. ]
  2716. },
  2717. "Volo.Abp.Auditing/6.0.2": {
  2718. "type": "package",
  2719. "dependencies": {
  2720. "Volo.Abp.Auditing.Contracts": "6.0.2",
  2721. "Volo.Abp.Data": "6.0.2",
  2722. "Volo.Abp.Json": "6.0.2",
  2723. "Volo.Abp.MultiTenancy": "6.0.2",
  2724. "Volo.Abp.Security": "6.0.2",
  2725. "Volo.Abp.Threading": "6.0.2",
  2726. "Volo.Abp.Timing": "6.0.2"
  2727. },
  2728. "compile": {
  2729. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  2730. "related": ".pdb;.xml"
  2731. }
  2732. },
  2733. "runtime": {
  2734. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  2735. "related": ".pdb;.xml"
  2736. }
  2737. }
  2738. },
  2739. "Volo.Abp.Auditing.Contracts/6.0.2": {
  2740. "type": "package",
  2741. "dependencies": {
  2742. "Volo.Abp.Core": "6.0.2"
  2743. },
  2744. "compile": {
  2745. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  2746. "related": ".pdb;.xml"
  2747. }
  2748. },
  2749. "runtime": {
  2750. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  2751. "related": ".pdb;.xml"
  2752. }
  2753. }
  2754. },
  2755. "Volo.Abp.Authorization/6.0.0": {
  2756. "type": "package",
  2757. "dependencies": {
  2758. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  2759. "Volo.Abp.Localization": "6.0.0",
  2760. "Volo.Abp.Security": "6.0.0"
  2761. },
  2762. "compile": {
  2763. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  2764. "related": ".pdb;.xml"
  2765. }
  2766. },
  2767. "runtime": {
  2768. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  2769. "related": ".pdb;.xml"
  2770. }
  2771. }
  2772. },
  2773. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  2774. "type": "package",
  2775. "dependencies": {
  2776. "Microsoft.AspNetCore.Authorization": "6.0.5",
  2777. "Volo.Abp.MultiTenancy": "6.0.0"
  2778. },
  2779. "compile": {
  2780. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  2781. "related": ".pdb;.xml"
  2782. }
  2783. },
  2784. "runtime": {
  2785. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  2786. "related": ".pdb;.xml"
  2787. }
  2788. }
  2789. },
  2790. "Volo.Abp.Autofac/6.0.0": {
  2791. "type": "package",
  2792. "dependencies": {
  2793. "Autofac": "6.4.0",
  2794. "Autofac.Extensions.DependencyInjection": "8.0.0",
  2795. "Autofac.Extras.DynamicProxy": "6.0.1",
  2796. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  2797. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  2798. "Volo.Abp.Castle.Core": "6.0.0"
  2799. },
  2800. "compile": {
  2801. "lib/netstandard2.0/Volo.Abp.Autofac.dll": {
  2802. "related": ".pdb;.xml"
  2803. }
  2804. },
  2805. "runtime": {
  2806. "lib/netstandard2.0/Volo.Abp.Autofac.dll": {
  2807. "related": ".pdb;.xml"
  2808. }
  2809. }
  2810. },
  2811. "Volo.Abp.AutoMapper/6.0.0": {
  2812. "type": "package",
  2813. "dependencies": {
  2814. "AutoMapper": "11.0.1",
  2815. "Volo.Abp.Auditing": "6.0.0",
  2816. "Volo.Abp.ObjectExtending": "6.0.0",
  2817. "Volo.Abp.ObjectMapping": "6.0.0"
  2818. },
  2819. "compile": {
  2820. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll": {
  2821. "related": ".pdb;.xml"
  2822. }
  2823. },
  2824. "runtime": {
  2825. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll": {
  2826. "related": ".pdb;.xml"
  2827. }
  2828. }
  2829. },
  2830. "Volo.Abp.BackgroundWorkers/6.0.2": {
  2831. "type": "package",
  2832. "dependencies": {
  2833. "Volo.Abp.Threading": "6.0.2"
  2834. },
  2835. "compile": {
  2836. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  2837. "related": ".pdb;.xml"
  2838. }
  2839. },
  2840. "runtime": {
  2841. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  2842. "related": ".pdb;.xml"
  2843. }
  2844. }
  2845. },
  2846. "Volo.Abp.Caching/6.0.0": {
  2847. "type": "package",
  2848. "dependencies": {
  2849. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  2850. "Volo.Abp.Json": "6.0.0",
  2851. "Volo.Abp.MultiTenancy": "6.0.0",
  2852. "Volo.Abp.Serialization": "6.0.0",
  2853. "Volo.Abp.Threading": "6.0.0"
  2854. },
  2855. "compile": {
  2856. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  2857. "related": ".pdb;.xml"
  2858. }
  2859. },
  2860. "runtime": {
  2861. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  2862. "related": ".pdb;.xml"
  2863. }
  2864. }
  2865. },
  2866. "Volo.Abp.Castle.Core/6.0.0": {
  2867. "type": "package",
  2868. "dependencies": {
  2869. "Castle.Core": "5.0.0",
  2870. "Castle.Core.AsyncInterceptor": "2.1.0",
  2871. "Volo.Abp.Core": "6.0.0"
  2872. },
  2873. "compile": {
  2874. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll": {
  2875. "related": ".pdb;.xml"
  2876. }
  2877. },
  2878. "runtime": {
  2879. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll": {
  2880. "related": ".pdb;.xml"
  2881. }
  2882. }
  2883. },
  2884. "Volo.Abp.Core/6.0.2": {
  2885. "type": "package",
  2886. "dependencies": {
  2887. "JetBrains.Annotations": "2022.1.0",
  2888. "Microsoft.Extensions.Configuration.CommandLine": "6.0.0",
  2889. "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
  2890. "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
  2891. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  2892. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  2893. "Microsoft.Extensions.Localization": "6.0.5",
  2894. "Microsoft.Extensions.Logging": "6.0.0",
  2895. "Microsoft.Extensions.Options": "6.0.0",
  2896. "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0",
  2897. "Nito.AsyncEx.Context": "5.1.2",
  2898. "Nito.AsyncEx.Coordination": "5.1.2",
  2899. "System.Collections.Immutable": "6.0.0",
  2900. "System.Linq.Dynamic.Core": "1.2.18",
  2901. "System.Linq.Queryable": "4.3.0",
  2902. "System.Runtime.Loader": "4.3.0",
  2903. "System.Text.Encodings.Web": "6.0.0"
  2904. },
  2905. "compile": {
  2906. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  2907. "related": ".pdb;.xml"
  2908. }
  2909. },
  2910. "runtime": {
  2911. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  2912. "related": ".pdb;.xml"
  2913. }
  2914. }
  2915. },
  2916. "Volo.Abp.Data/6.0.2": {
  2917. "type": "package",
  2918. "dependencies": {
  2919. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  2920. "Volo.Abp.ObjectExtending": "6.0.2",
  2921. "Volo.Abp.Uow": "6.0.2"
  2922. },
  2923. "compile": {
  2924. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  2925. "related": ".pdb;.xml"
  2926. }
  2927. },
  2928. "runtime": {
  2929. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  2930. "related": ".pdb;.xml"
  2931. }
  2932. }
  2933. },
  2934. "Volo.Abp.Ddd.Application/6.0.0": {
  2935. "type": "package",
  2936. "dependencies": {
  2937. "Volo.Abp.Authorization": "6.0.0",
  2938. "Volo.Abp.Ddd.Application.Contracts": "6.0.0",
  2939. "Volo.Abp.Ddd.Domain": "6.0.0",
  2940. "Volo.Abp.Features": "6.0.0",
  2941. "Volo.Abp.GlobalFeatures": "6.0.0",
  2942. "Volo.Abp.Http.Abstractions": "6.0.0",
  2943. "Volo.Abp.Localization": "6.0.0",
  2944. "Volo.Abp.ObjectMapping": "6.0.0",
  2945. "Volo.Abp.Security": "6.0.0",
  2946. "Volo.Abp.Settings": "6.0.0",
  2947. "Volo.Abp.Validation": "6.0.0"
  2948. },
  2949. "compile": {
  2950. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
  2951. "related": ".pdb;.xml"
  2952. }
  2953. },
  2954. "runtime": {
  2955. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
  2956. "related": ".pdb;.xml"
  2957. }
  2958. }
  2959. },
  2960. "Volo.Abp.Ddd.Application.Contracts/6.0.0": {
  2961. "type": "package",
  2962. "dependencies": {
  2963. "Volo.Abp.Auditing.Contracts": "6.0.0",
  2964. "Volo.Abp.Localization": "6.0.0"
  2965. },
  2966. "compile": {
  2967. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
  2968. "related": ".pdb;.xml"
  2969. }
  2970. },
  2971. "runtime": {
  2972. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
  2973. "related": ".pdb;.xml"
  2974. }
  2975. }
  2976. },
  2977. "Volo.Abp.Ddd.Domain/6.0.2": {
  2978. "type": "package",
  2979. "dependencies": {
  2980. "Volo.Abp.Auditing": "6.0.2",
  2981. "Volo.Abp.Data": "6.0.2",
  2982. "Volo.Abp.EventBus": "6.0.2",
  2983. "Volo.Abp.ExceptionHandling": "6.0.2",
  2984. "Volo.Abp.Guids": "6.0.2",
  2985. "Volo.Abp.MultiTenancy": "6.0.2",
  2986. "Volo.Abp.ObjectMapping": "6.0.2",
  2987. "Volo.Abp.Specifications": "6.0.2",
  2988. "Volo.Abp.Threading": "6.0.2",
  2989. "Volo.Abp.Timing": "6.0.2",
  2990. "Volo.Abp.Uow": "6.0.2"
  2991. },
  2992. "compile": {
  2993. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  2994. "related": ".pdb;.xml"
  2995. }
  2996. },
  2997. "runtime": {
  2998. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  2999. "related": ".pdb;.xml"
  3000. }
  3001. }
  3002. },
  3003. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  3004. "type": "package",
  3005. "dependencies": {
  3006. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  3007. "Volo.Abp.Core": "6.0.2"
  3008. },
  3009. "compile": {
  3010. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  3011. "related": ".pdb;.xml"
  3012. }
  3013. },
  3014. "runtime": {
  3015. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  3016. "related": ".pdb;.xml"
  3017. }
  3018. }
  3019. },
  3020. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  3021. "type": "package",
  3022. "dependencies": {
  3023. "Microsoft.EntityFrameworkCore": "6.0.5",
  3024. "Microsoft.EntityFrameworkCore.Relational": "6.0.5",
  3025. "Volo.Abp.Ddd.Domain": "6.0.2",
  3026. "Volo.Abp.Json": "6.0.2"
  3027. },
  3028. "compile": {
  3029. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  3030. "related": ".pdb;.xml"
  3031. }
  3032. },
  3033. "runtime": {
  3034. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  3035. "related": ".pdb;.xml"
  3036. }
  3037. }
  3038. },
  3039. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.2": {
  3040. "type": "package",
  3041. "dependencies": {
  3042. "Pomelo.EntityFrameworkCore.MySql": "6.0.0",
  3043. "Volo.Abp.EntityFrameworkCore": "6.0.2"
  3044. },
  3045. "compile": {
  3046. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  3047. "related": ".pdb;.xml"
  3048. }
  3049. },
  3050. "runtime": {
  3051. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  3052. "related": ".pdb;.xml"
  3053. }
  3054. }
  3055. },
  3056. "Volo.Abp.EventBus/6.0.2": {
  3057. "type": "package",
  3058. "dependencies": {
  3059. "Volo.Abp.BackgroundWorkers": "6.0.2",
  3060. "Volo.Abp.DistributedLocking.Abstractions": "6.0.2",
  3061. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3062. "Volo.Abp.Guids": "6.0.2",
  3063. "Volo.Abp.Json": "6.0.2",
  3064. "Volo.Abp.MultiTenancy": "6.0.2"
  3065. },
  3066. "compile": {
  3067. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  3068. "related": ".pdb;.xml"
  3069. }
  3070. },
  3071. "runtime": {
  3072. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  3073. "related": ".pdb;.xml"
  3074. }
  3075. }
  3076. },
  3077. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  3078. "type": "package",
  3079. "dependencies": {
  3080. "Volo.Abp.Core": "6.0.2"
  3081. },
  3082. "compile": {
  3083. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  3084. "related": ".pdb;.xml"
  3085. }
  3086. },
  3087. "runtime": {
  3088. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  3089. "related": ".pdb;.xml"
  3090. }
  3091. }
  3092. },
  3093. "Volo.Abp.ExceptionHandling/6.0.2": {
  3094. "type": "package",
  3095. "dependencies": {
  3096. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3097. "Volo.Abp.Localization": "6.0.2"
  3098. },
  3099. "compile": {
  3100. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  3101. "related": ".pdb;.xml"
  3102. }
  3103. },
  3104. "runtime": {
  3105. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  3106. "related": ".pdb;.xml"
  3107. }
  3108. }
  3109. },
  3110. "Volo.Abp.Features/6.0.0": {
  3111. "type": "package",
  3112. "dependencies": {
  3113. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3114. "Volo.Abp.Localization": "6.0.0",
  3115. "Volo.Abp.MultiTenancy": "6.0.0",
  3116. "Volo.Abp.Validation": "6.0.0"
  3117. },
  3118. "compile": {
  3119. "lib/netstandard2.0/Volo.Abp.Features.dll": {
  3120. "related": ".pdb;.xml"
  3121. }
  3122. },
  3123. "runtime": {
  3124. "lib/netstandard2.0/Volo.Abp.Features.dll": {
  3125. "related": ".pdb;.xml"
  3126. }
  3127. }
  3128. },
  3129. "Volo.Abp.GlobalFeatures/6.0.0": {
  3130. "type": "package",
  3131. "dependencies": {
  3132. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3133. "Volo.Abp.Localization": "6.0.0",
  3134. "Volo.Abp.VirtualFileSystem": "6.0.0"
  3135. },
  3136. "compile": {
  3137. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll": {
  3138. "related": ".pdb;.xml"
  3139. }
  3140. },
  3141. "runtime": {
  3142. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll": {
  3143. "related": ".pdb;.xml"
  3144. }
  3145. }
  3146. },
  3147. "Volo.Abp.Guids/6.0.2": {
  3148. "type": "package",
  3149. "dependencies": {
  3150. "Volo.Abp.Core": "6.0.2"
  3151. },
  3152. "compile": {
  3153. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  3154. "related": ".pdb;.xml"
  3155. }
  3156. },
  3157. "runtime": {
  3158. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  3159. "related": ".pdb;.xml"
  3160. }
  3161. }
  3162. },
  3163. "Volo.Abp.Http/6.0.0": {
  3164. "type": "package",
  3165. "dependencies": {
  3166. "Volo.Abp.Http.Abstractions": "6.0.0",
  3167. "Volo.Abp.Json": "6.0.0",
  3168. "Volo.Abp.Minify": "6.0.0"
  3169. },
  3170. "compile": {
  3171. "lib/netstandard2.0/Volo.Abp.Http.dll": {
  3172. "related": ".pdb;.xml"
  3173. }
  3174. },
  3175. "runtime": {
  3176. "lib/netstandard2.0/Volo.Abp.Http.dll": {
  3177. "related": ".pdb;.xml"
  3178. }
  3179. }
  3180. },
  3181. "Volo.Abp.Http.Abstractions/6.0.0": {
  3182. "type": "package",
  3183. "dependencies": {
  3184. "Volo.Abp.Core": "6.0.0"
  3185. },
  3186. "compile": {
  3187. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
  3188. "related": ".pdb;.xml"
  3189. }
  3190. },
  3191. "runtime": {
  3192. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
  3193. "related": ".pdb;.xml"
  3194. }
  3195. }
  3196. },
  3197. "Volo.Abp.Json/6.0.2": {
  3198. "type": "package",
  3199. "dependencies": {
  3200. "Newtonsoft.Json": "13.0.1",
  3201. "Volo.Abp.ObjectExtending": "6.0.2",
  3202. "Volo.Abp.Timing": "6.0.2"
  3203. },
  3204. "compile": {
  3205. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  3206. "related": ".pdb;.xml"
  3207. }
  3208. },
  3209. "runtime": {
  3210. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  3211. "related": ".pdb;.xml"
  3212. }
  3213. }
  3214. },
  3215. "Volo.Abp.Localization/6.0.2": {
  3216. "type": "package",
  3217. "dependencies": {
  3218. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3219. "Volo.Abp.Settings": "6.0.2",
  3220. "Volo.Abp.VirtualFileSystem": "6.0.2"
  3221. },
  3222. "compile": {
  3223. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  3224. "related": ".pdb;.xml"
  3225. }
  3226. },
  3227. "runtime": {
  3228. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  3229. "related": ".pdb;.xml"
  3230. }
  3231. }
  3232. },
  3233. "Volo.Abp.Localization.Abstractions/6.0.2": {
  3234. "type": "package",
  3235. "dependencies": {
  3236. "Volo.Abp.Core": "6.0.2"
  3237. },
  3238. "compile": {
  3239. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  3240. "related": ".pdb;.xml"
  3241. }
  3242. },
  3243. "runtime": {
  3244. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  3245. "related": ".pdb;.xml"
  3246. }
  3247. }
  3248. },
  3249. "Volo.Abp.Minify/6.0.0": {
  3250. "type": "package",
  3251. "dependencies": {
  3252. "NUglify": "1.20.0",
  3253. "Volo.Abp.Core": "6.0.0"
  3254. },
  3255. "compile": {
  3256. "lib/netstandard2.0/Volo.Abp.Minify.dll": {
  3257. "related": ".pdb;.xml"
  3258. }
  3259. },
  3260. "runtime": {
  3261. "lib/netstandard2.0/Volo.Abp.Minify.dll": {
  3262. "related": ".pdb;.xml"
  3263. }
  3264. }
  3265. },
  3266. "Volo.Abp.MultiTenancy/6.0.2": {
  3267. "type": "package",
  3268. "dependencies": {
  3269. "Volo.Abp.Data": "6.0.2",
  3270. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3271. "Volo.Abp.Security": "6.0.2"
  3272. },
  3273. "compile": {
  3274. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  3275. "related": ".pdb;.xml"
  3276. }
  3277. },
  3278. "runtime": {
  3279. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  3280. "related": ".pdb;.xml"
  3281. }
  3282. }
  3283. },
  3284. "Volo.Abp.ObjectExtending/6.0.2": {
  3285. "type": "package",
  3286. "dependencies": {
  3287. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3288. "Volo.Abp.Validation.Abstractions": "6.0.2"
  3289. },
  3290. "compile": {
  3291. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  3292. "related": ".pdb;.xml"
  3293. }
  3294. },
  3295. "runtime": {
  3296. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  3297. "related": ".pdb;.xml"
  3298. }
  3299. }
  3300. },
  3301. "Volo.Abp.ObjectMapping/6.0.2": {
  3302. "type": "package",
  3303. "dependencies": {
  3304. "Volo.Abp.Core": "6.0.2"
  3305. },
  3306. "compile": {
  3307. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  3308. "related": ".pdb;.xml"
  3309. }
  3310. },
  3311. "runtime": {
  3312. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  3313. "related": ".pdb;.xml"
  3314. }
  3315. }
  3316. },
  3317. "Volo.Abp.PermissionManagement.Application.Contracts/6.0.0": {
  3318. "type": "package",
  3319. "dependencies": {
  3320. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3321. "Volo.Abp.Ddd.Application.Contracts": "6.0.0",
  3322. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  3323. },
  3324. "compile": {
  3325. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {
  3326. "related": ".pdb;.xml"
  3327. }
  3328. },
  3329. "runtime": {
  3330. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {
  3331. "related": ".pdb;.xml"
  3332. }
  3333. }
  3334. },
  3335. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  3336. "type": "package",
  3337. "dependencies": {
  3338. "Volo.Abp.Authorization": "6.0.0",
  3339. "Volo.Abp.Caching": "6.0.0",
  3340. "Volo.Abp.Ddd.Domain": "6.0.0",
  3341. "Volo.Abp.Json": "6.0.0",
  3342. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  3343. },
  3344. "compile": {
  3345. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  3346. "related": ".pdb;.xml"
  3347. }
  3348. },
  3349. "runtime": {
  3350. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  3351. "related": ".pdb;.xml"
  3352. }
  3353. }
  3354. },
  3355. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  3356. "type": "package",
  3357. "dependencies": {
  3358. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3359. "Volo.Abp.Validation": "6.0.0"
  3360. },
  3361. "compile": {
  3362. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  3363. "related": ".pdb;.xml"
  3364. }
  3365. },
  3366. "runtime": {
  3367. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  3368. "related": ".pdb;.xml"
  3369. }
  3370. }
  3371. },
  3372. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  3373. "type": "package",
  3374. "dependencies": {
  3375. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  3376. "Volo.Abp.PermissionManagement.Domain": "6.0.0"
  3377. },
  3378. "compile": {
  3379. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  3380. "related": ".pdb;.xml"
  3381. }
  3382. },
  3383. "runtime": {
  3384. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  3385. "related": ".pdb;.xml"
  3386. }
  3387. }
  3388. },
  3389. "Volo.Abp.Security/6.0.2": {
  3390. "type": "package",
  3391. "dependencies": {
  3392. "Volo.Abp.Core": "6.0.2"
  3393. },
  3394. "compile": {
  3395. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  3396. "related": ".pdb;.xml"
  3397. }
  3398. },
  3399. "runtime": {
  3400. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  3401. "related": ".pdb;.xml"
  3402. }
  3403. }
  3404. },
  3405. "Volo.Abp.Serialization/6.0.0": {
  3406. "type": "package",
  3407. "dependencies": {
  3408. "Volo.Abp.Core": "6.0.0"
  3409. },
  3410. "compile": {
  3411. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  3412. "related": ".pdb;.xml"
  3413. }
  3414. },
  3415. "runtime": {
  3416. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  3417. "related": ".pdb;.xml"
  3418. }
  3419. }
  3420. },
  3421. "Volo.Abp.Settings/6.0.2": {
  3422. "type": "package",
  3423. "dependencies": {
  3424. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3425. "Volo.Abp.MultiTenancy": "6.0.2",
  3426. "Volo.Abp.Security": "6.0.2"
  3427. },
  3428. "compile": {
  3429. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  3430. "related": ".pdb;.xml"
  3431. }
  3432. },
  3433. "runtime": {
  3434. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  3435. "related": ".pdb;.xml"
  3436. }
  3437. }
  3438. },
  3439. "Volo.Abp.Specifications/6.0.2": {
  3440. "type": "package",
  3441. "dependencies": {
  3442. "Volo.Abp.Core": "6.0.2"
  3443. },
  3444. "compile": {
  3445. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  3446. "related": ".pdb;.xml"
  3447. }
  3448. },
  3449. "runtime": {
  3450. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  3451. "related": ".pdb;.xml"
  3452. }
  3453. }
  3454. },
  3455. "Volo.Abp.Threading/6.0.2": {
  3456. "type": "package",
  3457. "dependencies": {
  3458. "Volo.Abp.Core": "6.0.2"
  3459. },
  3460. "compile": {
  3461. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  3462. "related": ".pdb;.xml"
  3463. }
  3464. },
  3465. "runtime": {
  3466. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  3467. "related": ".pdb;.xml"
  3468. }
  3469. }
  3470. },
  3471. "Volo.Abp.Timing/6.0.2": {
  3472. "type": "package",
  3473. "dependencies": {
  3474. "TimeZoneConverter": "5.0.0",
  3475. "Volo.Abp.Localization": "6.0.2",
  3476. "Volo.Abp.Settings": "6.0.2"
  3477. },
  3478. "compile": {
  3479. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  3480. "related": ".pdb;.xml"
  3481. }
  3482. },
  3483. "runtime": {
  3484. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  3485. "related": ".pdb;.xml"
  3486. }
  3487. }
  3488. },
  3489. "Volo.Abp.UI/6.0.0": {
  3490. "type": "package",
  3491. "dependencies": {
  3492. "Volo.Abp.ExceptionHandling": "6.0.0"
  3493. },
  3494. "compile": {
  3495. "lib/netstandard2.0/Volo.Abp.UI.dll": {
  3496. "related": ".pdb;.xml"
  3497. }
  3498. },
  3499. "runtime": {
  3500. "lib/netstandard2.0/Volo.Abp.UI.dll": {
  3501. "related": ".pdb;.xml"
  3502. }
  3503. }
  3504. },
  3505. "Volo.Abp.UI.Navigation/6.0.0": {
  3506. "type": "package",
  3507. "dependencies": {
  3508. "Volo.Abp.Authorization": "6.0.0",
  3509. "Volo.Abp.UI": "6.0.0"
  3510. },
  3511. "compile": {
  3512. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll": {
  3513. "related": ".pdb;.xml"
  3514. }
  3515. },
  3516. "runtime": {
  3517. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll": {
  3518. "related": ".pdb;.xml"
  3519. }
  3520. }
  3521. },
  3522. "Volo.Abp.Uow/6.0.2": {
  3523. "type": "package",
  3524. "dependencies": {
  3525. "Volo.Abp.Core": "6.0.2"
  3526. },
  3527. "compile": {
  3528. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  3529. "related": ".pdb;.xml"
  3530. }
  3531. },
  3532. "runtime": {
  3533. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  3534. "related": ".pdb;.xml"
  3535. }
  3536. }
  3537. },
  3538. "Volo.Abp.Validation/6.0.0": {
  3539. "type": "package",
  3540. "dependencies": {
  3541. "Volo.Abp.Localization": "6.0.0",
  3542. "Volo.Abp.Validation.Abstractions": "6.0.0"
  3543. },
  3544. "compile": {
  3545. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  3546. "related": ".pdb;.xml"
  3547. }
  3548. },
  3549. "runtime": {
  3550. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  3551. "related": ".pdb;.xml"
  3552. }
  3553. }
  3554. },
  3555. "Volo.Abp.Validation.Abstractions/6.0.2": {
  3556. "type": "package",
  3557. "dependencies": {
  3558. "Volo.Abp.Core": "6.0.2"
  3559. },
  3560. "compile": {
  3561. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  3562. "related": ".pdb;.xml"
  3563. }
  3564. },
  3565. "runtime": {
  3566. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  3567. "related": ".pdb;.xml"
  3568. }
  3569. }
  3570. },
  3571. "Volo.Abp.VirtualFileSystem/6.0.2": {
  3572. "type": "package",
  3573. "dependencies": {
  3574. "Microsoft.Extensions.FileProviders.Composite": "6.0.0",
  3575. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3576. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  3577. "Volo.Abp.Core": "6.0.2"
  3578. },
  3579. "compile": {
  3580. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  3581. "related": ".pdb;.xml"
  3582. }
  3583. },
  3584. "runtime": {
  3585. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  3586. "related": ".pdb;.xml"
  3587. }
  3588. }
  3589. },
  3590. "Procurement.Application/1.0.0": {
  3591. "type": "project",
  3592. "framework": ".NETCoreApp,Version=v6.0",
  3593. "dependencies": {
  3594. "Procurement.Domain": "1.0.0",
  3595. "Volo.Abp.AspNetCore.Mvc": "6.0.0",
  3596. "Volo.Abp.AutoMapper": "6.0.0",
  3597. "XCZ.Procurement.Application.Contracts": "0.1.1"
  3598. },
  3599. "compile": {
  3600. "bin/placeholder/Procurement.Application.dll": {}
  3601. },
  3602. "runtime": {
  3603. "bin/placeholder/Procurement.Application.dll": {}
  3604. }
  3605. },
  3606. "Procurement.Domain/1.0.0": {
  3607. "type": "project",
  3608. "framework": ".NETCoreApp,Version=v6.0",
  3609. "dependencies": {
  3610. "Volo.Abp.Ddd.Domain": "6.0.0",
  3611. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  3612. "Volo.Abp.Localization": "6.0.0",
  3613. "Volo.Abp.Validation": "6.0.0"
  3614. },
  3615. "compile": {
  3616. "bin/placeholder/Procurement.Domain.dll": {}
  3617. },
  3618. "runtime": {
  3619. "bin/placeholder/Procurement.Domain.dll": {}
  3620. }
  3621. },
  3622. "Procurement.EntityFrameworkCore/1.0.0": {
  3623. "type": "project",
  3624. "framework": ".NETCoreApp,Version=v6.0",
  3625. "dependencies": {
  3626. "Procurement.Domain": "1.0.0",
  3627. "Volo.Abp.EntityFrameworkCore.MySQL": "6.0.0",
  3628. "Volo.Abp.PermissionManagement.EntityFrameworkCore": "6.0.0"
  3629. },
  3630. "compile": {
  3631. "bin/placeholder/Procurement.EntityFrameworkCore.dll": {}
  3632. },
  3633. "runtime": {
  3634. "bin/placeholder/Procurement.EntityFrameworkCore.dll": {}
  3635. }
  3636. },
  3637. "XCZ.Procurement.Application.Contracts/0.1.1": {
  3638. "type": "project",
  3639. "framework": ".NETCoreApp,Version=v6.0",
  3640. "dependencies": {
  3641. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  3642. "Volo.Abp.Ddd.Application": "6.0.0",
  3643. "Volo.Abp.PermissionManagement.Application.Contracts": "6.0.0"
  3644. },
  3645. "compile": {
  3646. "bin/placeholder/XCZ.Procurement.Application.Contracts.dll": {}
  3647. },
  3648. "runtime": {
  3649. "bin/placeholder/XCZ.Procurement.Application.Contracts.dll": {}
  3650. }
  3651. }
  3652. }
  3653. },
  3654. "libraries": {
  3655. "Autofac/6.4.0": {
  3656. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  3657. "type": "package",
  3658. "path": "autofac/6.4.0",
  3659. "files": [
  3660. ".nupkg.metadata",
  3661. ".signature.p7s",
  3662. "README.md",
  3663. "autofac.6.4.0.nupkg.sha512",
  3664. "autofac.nuspec",
  3665. "icon.png",
  3666. "lib/net5.0/Autofac.dll",
  3667. "lib/net5.0/Autofac.xml",
  3668. "lib/net6.0/Autofac.dll",
  3669. "lib/net6.0/Autofac.xml",
  3670. "lib/netstandard2.0/Autofac.dll",
  3671. "lib/netstandard2.0/Autofac.xml",
  3672. "lib/netstandard2.1/Autofac.dll",
  3673. "lib/netstandard2.1/Autofac.xml"
  3674. ]
  3675. },
  3676. "Autofac.Extensions.DependencyInjection/8.0.0": {
  3677. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  3678. "type": "package",
  3679. "path": "autofac.extensions.dependencyinjection/8.0.0",
  3680. "files": [
  3681. ".nupkg.metadata",
  3682. ".signature.p7s",
  3683. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  3684. "autofac.extensions.dependencyinjection.nuspec",
  3685. "icon.png",
  3686. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  3687. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  3688. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  3689. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  3690. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3691. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3692. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3693. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3694. ]
  3695. },
  3696. "Autofac.Extras.DynamicProxy/6.0.1": {
  3697. "sha512": "+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==",
  3698. "type": "package",
  3699. "path": "autofac.extras.dynamicproxy/6.0.1",
  3700. "files": [
  3701. ".nupkg.metadata",
  3702. ".signature.p7s",
  3703. "README.md",
  3704. "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512",
  3705. "autofac.extras.dynamicproxy.nuspec",
  3706. "icon.png",
  3707. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3708. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3709. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3710. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3711. ]
  3712. },
  3713. "AutoMapper/11.0.1": {
  3714. "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==",
  3715. "type": "package",
  3716. "path": "automapper/11.0.1",
  3717. "files": [
  3718. ".nupkg.metadata",
  3719. ".signature.p7s",
  3720. "README.md",
  3721. "automapper.11.0.1.nupkg.sha512",
  3722. "automapper.nuspec",
  3723. "icon.png",
  3724. "lib/netstandard2.1/AutoMapper.dll",
  3725. "lib/netstandard2.1/AutoMapper.xml"
  3726. ]
  3727. },
  3728. "Castle.Core/5.0.0": {
  3729. "sha512": "edc8jjyXqzzy8jFdhs36FZdwmlDDTgqPb2Zy1Q5F/f2uAc88bu/VS/0Tpvgupmpl9zJOvOo5ZizVANb0ltN1NQ==",
  3730. "type": "package",
  3731. "path": "castle.core/5.0.0",
  3732. "files": [
  3733. ".nupkg.metadata",
  3734. ".signature.p7s",
  3735. "ASL - Apache Software Foundation License.txt",
  3736. "CHANGELOG.md",
  3737. "LICENSE",
  3738. "castle-logo.png",
  3739. "castle.core.5.0.0.nupkg.sha512",
  3740. "castle.core.nuspec",
  3741. "lib/net462/Castle.Core.dll",
  3742. "lib/net462/Castle.Core.xml",
  3743. "lib/net6.0/Castle.Core.dll",
  3744. "lib/net6.0/Castle.Core.xml",
  3745. "lib/netstandard2.0/Castle.Core.dll",
  3746. "lib/netstandard2.0/Castle.Core.xml",
  3747. "lib/netstandard2.1/Castle.Core.dll",
  3748. "lib/netstandard2.1/Castle.Core.xml",
  3749. "readme.txt"
  3750. ]
  3751. },
  3752. "Castle.Core.AsyncInterceptor/2.1.0": {
  3753. "sha512": "1vOovJnbjjoCFbPPNLvLTeiqJwoA+aRXkhXcgCQY0pi1eejGqCegJwl58pIIPH/uKDfUXnPIo7aqSrcXEyEH1Q==",
  3754. "type": "package",
  3755. "path": "castle.core.asyncinterceptor/2.1.0",
  3756. "files": [
  3757. ".nupkg.metadata",
  3758. ".signature.p7s",
  3759. "castle-logo.png",
  3760. "castle.core.asyncinterceptor.2.1.0.nupkg.sha512",
  3761. "castle.core.asyncinterceptor.nuspec",
  3762. "lib/net45/Castle.Core.AsyncInterceptor.dll",
  3763. "lib/net45/Castle.Core.AsyncInterceptor.xml",
  3764. "lib/net5.0/Castle.Core.AsyncInterceptor.dll",
  3765. "lib/net5.0/Castle.Core.AsyncInterceptor.xml",
  3766. "lib/net6.0/Castle.Core.AsyncInterceptor.dll",
  3767. "lib/net6.0/Castle.Core.AsyncInterceptor.xml",
  3768. "lib/netstandard2.0/Castle.Core.AsyncInterceptor.dll",
  3769. "lib/netstandard2.0/Castle.Core.AsyncInterceptor.xml"
  3770. ]
  3771. },
  3772. "Humanizer.Core/2.8.26": {
  3773. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  3774. "type": "package",
  3775. "path": "humanizer.core/2.8.26",
  3776. "files": [
  3777. ".nupkg.metadata",
  3778. ".signature.p7s",
  3779. "humanizer.core.2.8.26.nupkg.sha512",
  3780. "humanizer.core.nuspec",
  3781. "lib/netstandard1.0/Humanizer.dll",
  3782. "lib/netstandard1.0/Humanizer.xml",
  3783. "lib/netstandard2.0/Humanizer.dll",
  3784. "lib/netstandard2.0/Humanizer.xml",
  3785. "logo.png"
  3786. ]
  3787. },
  3788. "IdentityModel/4.0.0": {
  3789. "sha512": "Y7i2fezKKKnmxdENfEOpby4Es84e76D16SYcxWKggYraFOvvfKfQAn5KGuuR1X2h1aTrlKZy0lct0NxHg4aVVw==",
  3790. "type": "package",
  3791. "path": "identitymodel/4.0.0",
  3792. "files": [
  3793. ".nupkg.metadata",
  3794. ".signature.p7s",
  3795. "identitymodel.4.0.0.nupkg.sha512",
  3796. "identitymodel.nuspec",
  3797. "lib/net461/IdentityModel.dll",
  3798. "lib/net461/IdentityModel.pdb",
  3799. "lib/net461/IdentityModel.xml",
  3800. "lib/netstandard2.0/IdentityModel.dll",
  3801. "lib/netstandard2.0/IdentityModel.pdb",
  3802. "lib/netstandard2.0/IdentityModel.xml"
  3803. ]
  3804. },
  3805. "IdentityModel.AspNetCore.OAuth2Introspection/4.0.1": {
  3806. "sha512": "ZNdMZMaj9fqR3j50vYsu+1U3QGd6n8+fqwf+a8mCTcmXGor+HgFDfdq0mM34bsmD6uEgAQup7sv2ZW5kR36dbA==",
  3807. "type": "package",
  3808. "path": "identitymodel.aspnetcore.oauth2introspection/4.0.1",
  3809. "files": [
  3810. ".nupkg.metadata",
  3811. ".signature.p7s",
  3812. "icon.jpg",
  3813. "identitymodel.aspnetcore.oauth2introspection.4.0.1.nupkg.sha512",
  3814. "identitymodel.aspnetcore.oauth2introspection.nuspec",
  3815. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.dll",
  3816. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.pdb",
  3817. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.xml"
  3818. ]
  3819. },
  3820. "IdentityServer4.AccessTokenValidation/3.0.1": {
  3821. "sha512": "qu/M6UyN4o9NVep7q545Ms7hYAnsQqSdLbN1Fjjrn4m35lyBfeQPSSNzDryAKHbodyWOQfHaOqKEyMEJQ5Rpgw==",
  3822. "type": "package",
  3823. "path": "identityserver4.accesstokenvalidation/3.0.1",
  3824. "files": [
  3825. ".nupkg.metadata",
  3826. ".signature.p7s",
  3827. "icon.jpg",
  3828. "identityserver4.accesstokenvalidation.3.0.1.nupkg.sha512",
  3829. "identityserver4.accesstokenvalidation.nuspec",
  3830. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.dll",
  3831. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.pdb",
  3832. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.xml"
  3833. ]
  3834. },
  3835. "JetBrains.Annotations/2022.1.0": {
  3836. "sha512": "ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==",
  3837. "type": "package",
  3838. "path": "jetbrains.annotations/2022.1.0",
  3839. "files": [
  3840. ".nupkg.metadata",
  3841. ".signature.p7s",
  3842. "icon.png",
  3843. "jetbrains.annotations.2022.1.0.nupkg.sha512",
  3844. "jetbrains.annotations.nuspec",
  3845. "lib/net20/JetBrains.Annotations.dll",
  3846. "lib/net20/JetBrains.Annotations.xml",
  3847. "lib/netstandard1.0/JetBrains.Annotations.deps.json",
  3848. "lib/netstandard1.0/JetBrains.Annotations.dll",
  3849. "lib/netstandard1.0/JetBrains.Annotations.xml",
  3850. "lib/netstandard2.0/JetBrains.Annotations.deps.json",
  3851. "lib/netstandard2.0/JetBrains.Annotations.dll",
  3852. "lib/netstandard2.0/JetBrains.Annotations.xml",
  3853. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
  3854. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
  3855. ]
  3856. },
  3857. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  3858. "sha512": "FrlxgBG6+FKlYr1IVxXNXSK7jpxiIYf036VNR1UgopKSIUNjaK2zvkhfVgFZVavagitQ/+UZ8Snnm6axyAVRNg==",
  3859. "type": "package",
  3860. "path": "microsoft.aspnetcore.authentication.jwtbearer/3.0.0",
  3861. "files": [
  3862. ".nupkg.metadata",
  3863. ".signature.p7s",
  3864. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  3865. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  3866. "microsoft.aspnetcore.authentication.jwtbearer.3.0.0.nupkg.sha512",
  3867. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  3868. ]
  3869. },
  3870. "Microsoft.AspNetCore.Authorization/6.0.5": {
  3871. "sha512": "T3J4Z4xK/mmJlMv/j7Cs1PZjRLh1fGsvHay3RNBNooP0qhHCk3UnU+WgBvcGApZFnEfeyOEGZBHZv5gb1RrDLA==",
  3872. "type": "package",
  3873. "path": "microsoft.aspnetcore.authorization/6.0.5",
  3874. "files": [
  3875. ".nupkg.metadata",
  3876. ".signature.p7s",
  3877. "Icon.png",
  3878. "THIRD-PARTY-NOTICES.TXT",
  3879. "lib/net461/Microsoft.AspNetCore.Authorization.dll",
  3880. "lib/net461/Microsoft.AspNetCore.Authorization.xml",
  3881. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll",
  3882. "lib/net6.0/Microsoft.AspNetCore.Authorization.xml",
  3883. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  3884. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  3885. "microsoft.aspnetcore.authorization.6.0.5.nupkg.sha512",
  3886. "microsoft.aspnetcore.authorization.nuspec"
  3887. ]
  3888. },
  3889. "Microsoft.AspNetCore.Cryptography.Internal/6.0.3": {
  3890. "sha512": "x90uNiEssA16NRSJ0nYIBJRC2GVVs2pmvHR88MySsolexasmc449PmWkSVHok+FyA1gLfF0oVA4LjkngkWdlGw==",
  3891. "type": "package",
  3892. "path": "microsoft.aspnetcore.cryptography.internal/6.0.3",
  3893. "files": [
  3894. ".nupkg.metadata",
  3895. ".signature.p7s",
  3896. "Icon.png",
  3897. "THIRD-PARTY-NOTICES.TXT",
  3898. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3899. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3900. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3901. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3902. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3903. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3904. "microsoft.aspnetcore.cryptography.internal.6.0.3.nupkg.sha512",
  3905. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3906. ]
  3907. },
  3908. "Microsoft.AspNetCore.DataProtection/6.0.3": {
  3909. "sha512": "bPWpqSMFbhI7fGJ5DuBYdaMrulKxXdfGZYoZCgI3QxCoIn/nYKEQhX40KRXC/ZNucGJAxUGXzBSzz9TV1QTsXg==",
  3910. "type": "package",
  3911. "path": "microsoft.aspnetcore.dataprotection/6.0.3",
  3912. "files": [
  3913. ".nupkg.metadata",
  3914. ".signature.p7s",
  3915. "Icon.png",
  3916. "THIRD-PARTY-NOTICES.TXT",
  3917. "lib/net461/Microsoft.AspNetCore.DataProtection.dll",
  3918. "lib/net461/Microsoft.AspNetCore.DataProtection.xml",
  3919. "lib/net6.0/Microsoft.AspNetCore.DataProtection.dll",
  3920. "lib/net6.0/Microsoft.AspNetCore.DataProtection.xml",
  3921. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  3922. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  3923. "microsoft.aspnetcore.dataprotection.6.0.3.nupkg.sha512",
  3924. "microsoft.aspnetcore.dataprotection.nuspec"
  3925. ]
  3926. },
  3927. "Microsoft.AspNetCore.DataProtection.Abstractions/6.0.3": {
  3928. "sha512": "xCMiU/vTn4GH6IMJEcWiwC2HZTdmTGVZ7BlllAfkVUmKX5yI3EE+CcUgo3SCNMJo3jznYuaq5n82Kt0YsZKymg==",
  3929. "type": "package",
  3930. "path": "microsoft.aspnetcore.dataprotection.abstractions/6.0.3",
  3931. "files": [
  3932. ".nupkg.metadata",
  3933. ".signature.p7s",
  3934. "Icon.png",
  3935. "THIRD-PARTY-NOTICES.TXT",
  3936. "lib/net461/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3937. "lib/net461/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  3938. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3939. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  3940. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3941. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  3942. "microsoft.aspnetcore.dataprotection.abstractions.6.0.3.nupkg.sha512",
  3943. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  3944. ]
  3945. },
  3946. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis/6.0.3": {
  3947. "sha512": "eeG+W7SEtiv+NJs8PqOAKsmXorq/RfiJadTg53WNnND4mc3le/7sTpR/+mazOLjNGNgWfGSkOkh0zCq4y03FUA==",
  3948. "type": "package",
  3949. "path": "microsoft.aspnetcore.dataprotection.stackexchangeredis/6.0.3",
  3950. "files": [
  3951. ".nupkg.metadata",
  3952. ".signature.p7s",
  3953. "Icon.png",
  3954. "THIRD-PARTY-NOTICES.TXT",
  3955. "lib/net461/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  3956. "lib/net461/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  3957. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  3958. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  3959. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  3960. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  3961. "microsoft.aspnetcore.dataprotection.stackexchangeredis.6.0.3.nupkg.sha512",
  3962. "microsoft.aspnetcore.dataprotection.stackexchangeredis.nuspec"
  3963. ]
  3964. },
  3965. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  3966. "sha512": "3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==",
  3967. "type": "package",
  3968. "path": "microsoft.aspnetcore.http.features/5.0.17",
  3969. "files": [
  3970. ".nupkg.metadata",
  3971. ".signature.p7s",
  3972. "Icon.png",
  3973. "THIRD-PARTY-NOTICES.TXT",
  3974. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3975. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3976. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3977. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3978. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3979. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3980. "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
  3981. "microsoft.aspnetcore.http.features.nuspec"
  3982. ]
  3983. },
  3984. "Microsoft.AspNetCore.JsonPatch/6.0.5": {
  3985. "sha512": "kxQR7xCm9pQxnM3UZBp45Z470LFa1VA0qG/hFKhpE5hOJKgLOu4zmxakoVqswptAnHuD6ghd7XGb7hm1s1D0lw==",
  3986. "type": "package",
  3987. "path": "microsoft.aspnetcore.jsonpatch/6.0.5",
  3988. "files": [
  3989. ".nupkg.metadata",
  3990. ".signature.p7s",
  3991. "Icon.png",
  3992. "THIRD-PARTY-NOTICES.TXT",
  3993. "lib/net461/Microsoft.AspNetCore.JsonPatch.dll",
  3994. "lib/net461/Microsoft.AspNetCore.JsonPatch.xml",
  3995. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll",
  3996. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.xml",
  3997. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  3998. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  3999. "microsoft.aspnetcore.jsonpatch.6.0.5.nupkg.sha512",
  4000. "microsoft.aspnetcore.jsonpatch.nuspec"
  4001. ]
  4002. },
  4003. "Microsoft.AspNetCore.Metadata/6.0.5": {
  4004. "sha512": "4VRJoJa/EbncxQTAzM6abqQUUbNrohg5MC1glZ1R1lzzXJM2CdXiRKvcpAfn3luAwPzkwJtHejuLgI6Osn0aDA==",
  4005. "type": "package",
  4006. "path": "microsoft.aspnetcore.metadata/6.0.5",
  4007. "files": [
  4008. ".nupkg.metadata",
  4009. ".signature.p7s",
  4010. "Icon.png",
  4011. "THIRD-PARTY-NOTICES.TXT",
  4012. "lib/net461/Microsoft.AspNetCore.Metadata.dll",
  4013. "lib/net461/Microsoft.AspNetCore.Metadata.xml",
  4014. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll",
  4015. "lib/net6.0/Microsoft.AspNetCore.Metadata.xml",
  4016. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
  4017. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
  4018. "microsoft.aspnetcore.metadata.6.0.5.nupkg.sha512",
  4019. "microsoft.aspnetcore.metadata.nuspec"
  4020. ]
  4021. },
  4022. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.5": {
  4023. "sha512": "ord2AixR+h2xmv7LPAtifz5k4MHV0BVtzyp2UyB1+gILT+xw4usAvTWo0SX1ruBk3GK4kyhHa9cgQt0yafR2dQ==",
  4024. "type": "package",
  4025. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.5",
  4026. "files": [
  4027. ".nupkg.metadata",
  4028. ".signature.p7s",
  4029. "Icon.png",
  4030. "THIRD-PARTY-NOTICES.TXT",
  4031. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  4032. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  4033. "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.5.nupkg.sha512",
  4034. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  4035. ]
  4036. },
  4037. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.5": {
  4038. "sha512": "d+eStMVaYtT43O0B7WxO24RSixQQipiEddOHP6juS7yiDT5mPcvGwXdZ09yvfyqbBbD0+h9dRwsHQOm3jfVgCg==",
  4039. "type": "package",
  4040. "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.5",
  4041. "files": [
  4042. ".nupkg.metadata",
  4043. ".signature.p7s",
  4044. "Icon.png",
  4045. "THIRD-PARTY-NOTICES.TXT",
  4046. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4047. "microsoft.aspnetcore.mvc.razor.extensions.6.0.5.nupkg.sha512",
  4048. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  4049. ]
  4050. },
  4051. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.5": {
  4052. "sha512": "ZojV4R0naJqftc3d9Fjb6kNqrPZxhCVa4yps0ZIRhfRgz+1fy8uIROrixNezduKDGo1hMQErRMDGKOrzB18XQA==",
  4053. "type": "package",
  4054. "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/6.0.5",
  4055. "files": [
  4056. ".nupkg.metadata",
  4057. ".signature.p7s",
  4058. "Icon.png",
  4059. "THIRD-PARTY-NOTICES.TXT",
  4060. "build/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4061. "buildTransitive/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4062. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll",
  4063. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml",
  4064. "microsoft.aspnetcore.mvc.razor.runtimecompilation.6.0.5.nupkg.sha512",
  4065. "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec"
  4066. ]
  4067. },
  4068. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  4069. "sha512": "mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==",
  4070. "type": "package",
  4071. "path": "microsoft.aspnetcore.mvc.versioning/5.0.0",
  4072. "files": [
  4073. ".nupkg.metadata",
  4074. ".signature.p7s",
  4075. "LICENSE.txt",
  4076. "icon.png",
  4077. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll",
  4078. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.pdb",
  4079. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.xml",
  4080. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll",
  4081. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.pdb",
  4082. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.xml",
  4083. "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512",
  4084. "microsoft.aspnetcore.mvc.versioning.nuspec"
  4085. ]
  4086. },
  4087. "Microsoft.AspNetCore.Razor.Language/6.0.5": {
  4088. "sha512": "0U+jIqo4hSUFOf/GiYtQ62aCM2SK2E3LJH+hpmLsSD8hl++0LOSKH5AIQO6KmANfmF04jEdvGPD0B0hBTM3zxA==",
  4089. "type": "package",
  4090. "path": "microsoft.aspnetcore.razor.language/6.0.5",
  4091. "files": [
  4092. ".nupkg.metadata",
  4093. ".signature.p7s",
  4094. "Icon.png",
  4095. "THIRD-PARTY-NOTICES.TXT",
  4096. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  4097. "microsoft.aspnetcore.razor.language.6.0.5.nupkg.sha512",
  4098. "microsoft.aspnetcore.razor.language.nuspec"
  4099. ]
  4100. },
  4101. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  4102. "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  4103. "type": "package",
  4104. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  4105. "files": [
  4106. ".nupkg.metadata",
  4107. ".signature.p7s",
  4108. "Icon.png",
  4109. "LICENSE.TXT",
  4110. "THIRD-PARTY-NOTICES.TXT",
  4111. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  4112. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  4113. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4114. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4115. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4116. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4117. "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
  4118. "microsoft.bcl.asyncinterfaces.nuspec",
  4119. "useSharedDesignerContext.txt"
  4120. ]
  4121. },
  4122. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  4123. "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  4124. "type": "package",
  4125. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  4126. "hasTools": true,
  4127. "files": [
  4128. ".nupkg.metadata",
  4129. ".signature.p7s",
  4130. "EULA.rtf",
  4131. "ThirdPartyNotices.rtf",
  4132. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4133. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4134. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4135. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4136. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4137. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4138. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4139. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4140. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4141. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4142. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4143. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4144. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4145. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4146. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4147. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4148. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4149. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4150. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4151. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4152. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4153. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4154. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4155. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4156. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4157. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4158. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4159. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4160. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4161. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4162. "build/Microsoft.CodeAnalysis.Analyzers.props",
  4163. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  4164. "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig",
  4165. "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig",
  4166. "build/config/AnalysisLevel_2_9_8_Default.editorconfig",
  4167. "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig",
  4168. "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig",
  4169. "build/config/AnalysisLevel_3_3_Default.editorconfig",
  4170. "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig",
  4171. "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig",
  4172. "build/config/AnalysisLevel_3_Default.editorconfig",
  4173. "documentation/Analyzer Configuration.md",
  4174. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  4175. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  4176. "editorconfig/AllRulesDefault/.editorconfig",
  4177. "editorconfig/AllRulesDisabled/.editorconfig",
  4178. "editorconfig/AllRulesEnabled/.editorconfig",
  4179. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  4180. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  4181. "editorconfig/DataflowRulesDefault/.editorconfig",
  4182. "editorconfig/DataflowRulesEnabled/.editorconfig",
  4183. "editorconfig/LibraryRulesDefault/.editorconfig",
  4184. "editorconfig/LibraryRulesEnabled/.editorconfig",
  4185. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  4186. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  4187. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  4188. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  4189. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  4190. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  4191. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  4192. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  4193. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  4194. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  4195. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  4196. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  4197. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  4198. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  4199. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  4200. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  4201. "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
  4202. "microsoft.codeanalysis.analyzers.nuspec",
  4203. "rulesets/AllRulesDefault.ruleset",
  4204. "rulesets/AllRulesDisabled.ruleset",
  4205. "rulesets/AllRulesEnabled.ruleset",
  4206. "rulesets/CorrectnessRulesDefault.ruleset",
  4207. "rulesets/CorrectnessRulesEnabled.ruleset",
  4208. "rulesets/DataflowRulesDefault.ruleset",
  4209. "rulesets/DataflowRulesEnabled.ruleset",
  4210. "rulesets/LibraryRulesDefault.ruleset",
  4211. "rulesets/LibraryRulesEnabled.ruleset",
  4212. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  4213. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  4214. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  4215. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  4216. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  4217. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  4218. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  4219. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  4220. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  4221. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  4222. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  4223. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  4224. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  4225. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  4226. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  4227. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  4228. "tools/install.ps1",
  4229. "tools/uninstall.ps1"
  4230. ]
  4231. },
  4232. "Microsoft.CodeAnalysis.Common/4.0.0": {
  4233. "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==",
  4234. "type": "package",
  4235. "path": "microsoft.codeanalysis.common/4.0.0",
  4236. "files": [
  4237. ".nupkg.metadata",
  4238. ".signature.p7s",
  4239. "Icon.png",
  4240. "ThirdPartyNotices.rtf",
  4241. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  4242. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  4243. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  4244. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  4245. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  4246. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  4247. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  4248. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  4249. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  4250. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  4251. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  4252. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4253. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  4254. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  4255. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4256. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4257. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  4258. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  4259. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  4260. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4261. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  4262. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  4263. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4264. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  4265. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4266. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4267. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4268. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4269. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4270. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4271. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4272. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4273. "microsoft.codeanalysis.common.4.0.0.nupkg.sha512",
  4274. "microsoft.codeanalysis.common.nuspec"
  4275. ]
  4276. },
  4277. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  4278. "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==",
  4279. "type": "package",
  4280. "path": "microsoft.codeanalysis.csharp/4.0.0",
  4281. "files": [
  4282. ".nupkg.metadata",
  4283. ".signature.p7s",
  4284. "Icon.png",
  4285. "ThirdPartyNotices.rtf",
  4286. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  4287. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  4288. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  4289. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4290. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4291. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4292. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4293. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4294. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4295. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4296. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4297. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4298. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4299. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4300. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4301. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4302. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  4303. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4304. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  4305. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4306. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4307. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4308. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4309. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4310. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4311. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4312. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4313. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4314. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4315. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4316. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4317. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4318. "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512",
  4319. "microsoft.codeanalysis.csharp.nuspec"
  4320. ]
  4321. },
  4322. "Microsoft.CodeAnalysis.Razor/6.0.5": {
  4323. "sha512": "hASP/Ift9GVUKWqaC71XqCTYxXGSTuj8Lt+0mI6JBZbyDyNwHLxbNgpcWgddusgwqc6RJnrEkeZXTwFVN1CwOQ==",
  4324. "type": "package",
  4325. "path": "microsoft.codeanalysis.razor/6.0.5",
  4326. "files": [
  4327. ".nupkg.metadata",
  4328. ".signature.p7s",
  4329. "Icon.png",
  4330. "THIRD-PARTY-NOTICES.TXT",
  4331. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  4332. "microsoft.codeanalysis.razor.6.0.5.nupkg.sha512",
  4333. "microsoft.codeanalysis.razor.nuspec"
  4334. ]
  4335. },
  4336. "Microsoft.CSharp/4.7.0": {
  4337. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4338. "type": "package",
  4339. "path": "microsoft.csharp/4.7.0",
  4340. "files": [
  4341. ".nupkg.metadata",
  4342. ".signature.p7s",
  4343. "LICENSE.TXT",
  4344. "THIRD-PARTY-NOTICES.TXT",
  4345. "lib/MonoAndroid10/_._",
  4346. "lib/MonoTouch10/_._",
  4347. "lib/net45/_._",
  4348. "lib/netcore50/Microsoft.CSharp.dll",
  4349. "lib/netcoreapp2.0/_._",
  4350. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4351. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4352. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4353. "lib/portable-net45+win8+wp8+wpa81/_._",
  4354. "lib/uap10.0.16299/_._",
  4355. "lib/win8/_._",
  4356. "lib/wp80/_._",
  4357. "lib/wpa81/_._",
  4358. "lib/xamarinios10/_._",
  4359. "lib/xamarinmac20/_._",
  4360. "lib/xamarintvos10/_._",
  4361. "lib/xamarinwatchos10/_._",
  4362. "microsoft.csharp.4.7.0.nupkg.sha512",
  4363. "microsoft.csharp.nuspec",
  4364. "ref/MonoAndroid10/_._",
  4365. "ref/MonoTouch10/_._",
  4366. "ref/net45/_._",
  4367. "ref/netcore50/Microsoft.CSharp.dll",
  4368. "ref/netcore50/Microsoft.CSharp.xml",
  4369. "ref/netcore50/de/Microsoft.CSharp.xml",
  4370. "ref/netcore50/es/Microsoft.CSharp.xml",
  4371. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4372. "ref/netcore50/it/Microsoft.CSharp.xml",
  4373. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4374. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4375. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4376. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4377. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4378. "ref/netcoreapp2.0/_._",
  4379. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4380. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4381. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4382. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4383. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4384. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4385. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4386. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4387. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4388. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4389. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4390. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4391. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4392. "ref/portable-net45+win8+wp8+wpa81/_._",
  4393. "ref/uap10.0.16299/_._",
  4394. "ref/win8/_._",
  4395. "ref/wp80/_._",
  4396. "ref/wpa81/_._",
  4397. "ref/xamarinios10/_._",
  4398. "ref/xamarinmac20/_._",
  4399. "ref/xamarintvos10/_._",
  4400. "ref/xamarinwatchos10/_._",
  4401. "useSharedDesignerContext.txt",
  4402. "version.txt"
  4403. ]
  4404. },
  4405. "Microsoft.EntityFrameworkCore/6.0.5": {
  4406. "sha512": "hP5J3EvpVdZmCn1D3ovedphvZrIn3OXZaBZfEnCkSCqqbqAu6xzwbNqwRkik0y4R6zOOf4eLh1riwjy4eAUlZA==",
  4407. "type": "package",
  4408. "path": "microsoft.entityframeworkcore/6.0.5",
  4409. "files": [
  4410. ".nupkg.metadata",
  4411. ".signature.p7s",
  4412. "Icon.png",
  4413. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  4414. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  4415. "microsoft.entityframeworkcore.6.0.5.nupkg.sha512",
  4416. "microsoft.entityframeworkcore.nuspec"
  4417. ]
  4418. },
  4419. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  4420. "sha512": "Q3/fKW6XCTfnDk4fYP2BJZi84cD2SuCPkP3A3QqxvCQcXbX90bfSLzVIsoMXzigHGJgZUJ+Un7QodT5Nvk0+Eg==",
  4421. "type": "package",
  4422. "path": "microsoft.entityframeworkcore.abstractions/6.0.5",
  4423. "files": [
  4424. ".nupkg.metadata",
  4425. ".signature.p7s",
  4426. "Icon.png",
  4427. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4428. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4429. "microsoft.entityframeworkcore.abstractions.6.0.5.nupkg.sha512",
  4430. "microsoft.entityframeworkcore.abstractions.nuspec"
  4431. ]
  4432. },
  4433. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  4434. "sha512": "QUeDIhs+O+MoDEc3k60mNyVDbwyDURCqZQlZoKShuZUcSfXSrDMbHKuFSxBIDNQBt092qSjfnwf7w0Ua/IB3Zw==",
  4435. "type": "package",
  4436. "path": "microsoft.entityframeworkcore.analyzers/6.0.5",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "Icon.png",
  4441. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4442. "lib/netstandard2.0/_._",
  4443. "microsoft.entityframeworkcore.analyzers.6.0.5.nupkg.sha512",
  4444. "microsoft.entityframeworkcore.analyzers.nuspec"
  4445. ]
  4446. },
  4447. "Microsoft.EntityFrameworkCore.Design/6.0.5": {
  4448. "sha512": "zNjMWJ6MJ/Qm7S6wFBqVgn7DEpilbDMy0xgA7c4Y1yY9/LoaC2pWwWO4ePaYoPCZpLx/eTViWEr5ZXta/vK//Q==",
  4449. "type": "package",
  4450. "path": "microsoft.entityframeworkcore.design/6.0.5",
  4451. "files": [
  4452. ".nupkg.metadata",
  4453. ".signature.p7s",
  4454. "Icon.png",
  4455. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  4456. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  4457. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  4458. "microsoft.entityframeworkcore.design.6.0.5.nupkg.sha512",
  4459. "microsoft.entityframeworkcore.design.nuspec"
  4460. ]
  4461. },
  4462. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  4463. "sha512": "vhAQizlAgvPfurkh9XysNaFc/g3WPXtSka3Y1rXuQdnT//p16CDKt9lO9h+rYmooD+cA7TijSxwqck4GApDT/Q==",
  4464. "type": "package",
  4465. "path": "microsoft.entityframeworkcore.relational/6.0.5",
  4466. "files": [
  4467. ".nupkg.metadata",
  4468. ".signature.p7s",
  4469. "Icon.png",
  4470. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  4471. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  4472. "microsoft.entityframeworkcore.relational.6.0.5.nupkg.sha512",
  4473. "microsoft.entityframeworkcore.relational.nuspec"
  4474. ]
  4475. },
  4476. "Microsoft.EntityFrameworkCore.Tools/6.0.5": {
  4477. "sha512": "aeCzVNLmDl9IfB19WAjrlKcG61Cl4/ZV/9ubifmifKEps+kvMkKIcams5j+8q6dtx9/UL2x3tbOz2BS3eU0sXQ==",
  4478. "type": "package",
  4479. "path": "microsoft.entityframeworkcore.tools/6.0.5",
  4480. "hasTools": true,
  4481. "files": [
  4482. ".nupkg.metadata",
  4483. ".signature.p7s",
  4484. "Icon.png",
  4485. "lib/net6.0/_._",
  4486. "microsoft.entityframeworkcore.tools.6.0.5.nupkg.sha512",
  4487. "microsoft.entityframeworkcore.tools.nuspec",
  4488. "tools/EntityFrameworkCore.PS2.psd1",
  4489. "tools/EntityFrameworkCore.PS2.psm1",
  4490. "tools/EntityFrameworkCore.psd1",
  4491. "tools/EntityFrameworkCore.psm1",
  4492. "tools/about_EntityFrameworkCore.help.txt",
  4493. "tools/init.ps1",
  4494. "tools/net461/any/ef.exe",
  4495. "tools/net461/win-x86/ef.exe",
  4496. "tools/netcoreapp2.0/any/ef.dll",
  4497. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  4498. ]
  4499. },
  4500. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4501. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4502. "type": "package",
  4503. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4504. "hasTools": true,
  4505. "files": [
  4506. ".nupkg.metadata",
  4507. ".signature.p7s",
  4508. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4509. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4510. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4511. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4512. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4513. "microsoft.extensions.apidescription.server.nuspec",
  4514. "tools/Newtonsoft.Json.dll",
  4515. "tools/dotnet-getdocument.deps.json",
  4516. "tools/dotnet-getdocument.dll",
  4517. "tools/dotnet-getdocument.runtimeconfig.json",
  4518. "tools/net461-x86/GetDocument.Insider.exe",
  4519. "tools/net461-x86/GetDocument.Insider.exe.config",
  4520. "tools/net461/GetDocument.Insider.exe",
  4521. "tools/net461/GetDocument.Insider.exe.config",
  4522. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4523. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4524. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4525. ]
  4526. },
  4527. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  4528. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  4529. "type": "package",
  4530. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  4531. "files": [
  4532. ".nupkg.metadata",
  4533. ".signature.p7s",
  4534. "Icon.png",
  4535. "LICENSE.TXT",
  4536. "THIRD-PARTY-NOTICES.TXT",
  4537. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4538. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4539. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4540. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4541. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  4542. "microsoft.extensions.caching.abstractions.nuspec",
  4543. "useSharedDesignerContext.txt"
  4544. ]
  4545. },
  4546. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  4547. "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  4548. "type": "package",
  4549. "path": "microsoft.extensions.caching.memory/6.0.1",
  4550. "files": [
  4551. ".nupkg.metadata",
  4552. ".signature.p7s",
  4553. "Icon.png",
  4554. "LICENSE.TXT",
  4555. "THIRD-PARTY-NOTICES.TXT",
  4556. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4557. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4558. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4559. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4560. "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
  4561. "microsoft.extensions.caching.memory.nuspec",
  4562. "useSharedDesignerContext.txt"
  4563. ]
  4564. },
  4565. "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.3": {
  4566. "sha512": "kqMJ+kLoSMk2EJe5u+4QQSv7m9cCllcJ+4bjvwfR4cjro3rfAXHIsah/87pedAvdUFk9iMYLl8RYf/uSUEkH2g==",
  4567. "type": "package",
  4568. "path": "microsoft.extensions.caching.stackexchangeredis/6.0.3",
  4569. "files": [
  4570. ".nupkg.metadata",
  4571. ".signature.p7s",
  4572. "Icon.png",
  4573. "THIRD-PARTY-NOTICES.TXT",
  4574. "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  4575. "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  4576. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  4577. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  4578. "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  4579. "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  4580. "microsoft.extensions.caching.stackexchangeredis.6.0.3.nupkg.sha512",
  4581. "microsoft.extensions.caching.stackexchangeredis.nuspec"
  4582. ]
  4583. },
  4584. "Microsoft.Extensions.Configuration/6.0.0": {
  4585. "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
  4586. "type": "package",
  4587. "path": "microsoft.extensions.configuration/6.0.0",
  4588. "files": [
  4589. ".nupkg.metadata",
  4590. ".signature.p7s",
  4591. "Icon.png",
  4592. "LICENSE.TXT",
  4593. "THIRD-PARTY-NOTICES.TXT",
  4594. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4595. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4596. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4597. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4598. "microsoft.extensions.configuration.6.0.0.nupkg.sha512",
  4599. "microsoft.extensions.configuration.nuspec",
  4600. "useSharedDesignerContext.txt"
  4601. ]
  4602. },
  4603. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  4604. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  4605. "type": "package",
  4606. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  4607. "files": [
  4608. ".nupkg.metadata",
  4609. ".signature.p7s",
  4610. "Icon.png",
  4611. "LICENSE.TXT",
  4612. "THIRD-PARTY-NOTICES.TXT",
  4613. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4614. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4615. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4616. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4617. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  4618. "microsoft.extensions.configuration.abstractions.nuspec",
  4619. "useSharedDesignerContext.txt"
  4620. ]
  4621. },
  4622. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  4623. "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
  4624. "type": "package",
  4625. "path": "microsoft.extensions.configuration.binder/6.0.0",
  4626. "files": [
  4627. ".nupkg.metadata",
  4628. ".signature.p7s",
  4629. "Icon.png",
  4630. "LICENSE.TXT",
  4631. "THIRD-PARTY-NOTICES.TXT",
  4632. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4633. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4634. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4635. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4636. "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
  4637. "microsoft.extensions.configuration.binder.nuspec",
  4638. "useSharedDesignerContext.txt"
  4639. ]
  4640. },
  4641. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  4642. "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==",
  4643. "type": "package",
  4644. "path": "microsoft.extensions.configuration.commandline/6.0.0",
  4645. "files": [
  4646. ".nupkg.metadata",
  4647. ".signature.p7s",
  4648. "Icon.png",
  4649. "LICENSE.TXT",
  4650. "THIRD-PARTY-NOTICES.TXT",
  4651. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  4652. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  4653. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  4654. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  4655. "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512",
  4656. "microsoft.extensions.configuration.commandline.nuspec",
  4657. "useSharedDesignerContext.txt"
  4658. ]
  4659. },
  4660. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  4661. "sha512": "pnyXV1LFOsYjGveuC07xp0YHIyGq7jRq5Ncb5zrrIieMLWVwgMyYxcOH0jTnBedDT4Gh1QinSqsjqzcieHk1og==",
  4662. "type": "package",
  4663. "path": "microsoft.extensions.configuration.environmentvariables/6.0.1",
  4664. "files": [
  4665. ".nupkg.metadata",
  4666. ".signature.p7s",
  4667. "Icon.png",
  4668. "LICENSE.TXT",
  4669. "THIRD-PARTY-NOTICES.TXT",
  4670. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4671. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4672. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4673. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4674. "microsoft.extensions.configuration.environmentvariables.6.0.1.nupkg.sha512",
  4675. "microsoft.extensions.configuration.environmentvariables.nuspec",
  4676. "useSharedDesignerContext.txt"
  4677. ]
  4678. },
  4679. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  4680. "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
  4681. "type": "package",
  4682. "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
  4683. "files": [
  4684. ".nupkg.metadata",
  4685. ".signature.p7s",
  4686. "Icon.png",
  4687. "LICENSE.TXT",
  4688. "THIRD-PARTY-NOTICES.TXT",
  4689. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4690. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4691. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4692. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4693. "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
  4694. "microsoft.extensions.configuration.fileextensions.nuspec",
  4695. "useSharedDesignerContext.txt"
  4696. ]
  4697. },
  4698. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  4699. "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
  4700. "type": "package",
  4701. "path": "microsoft.extensions.configuration.json/6.0.0",
  4702. "files": [
  4703. ".nupkg.metadata",
  4704. ".signature.p7s",
  4705. "Icon.png",
  4706. "LICENSE.TXT",
  4707. "THIRD-PARTY-NOTICES.TXT",
  4708. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4709. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4710. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4711. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4712. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4713. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4714. "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
  4715. "microsoft.extensions.configuration.json.nuspec",
  4716. "useSharedDesignerContext.txt"
  4717. ]
  4718. },
  4719. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  4720. "sha512": "Fy8yr4V6obi7ZxvKYI1i85jqtwMq8tqyxQVZpRSkgeA8enqy/KvBIMdcuNdznlxQMZa72mvbHqb7vbg4Pyx95w==",
  4721. "type": "package",
  4722. "path": "microsoft.extensions.configuration.usersecrets/6.0.1",
  4723. "files": [
  4724. ".nupkg.metadata",
  4725. ".signature.p7s",
  4726. "Icon.png",
  4727. "LICENSE.TXT",
  4728. "THIRD-PARTY-NOTICES.TXT",
  4729. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  4730. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  4731. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  4732. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  4733. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  4734. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  4735. "microsoft.extensions.configuration.usersecrets.6.0.1.nupkg.sha512",
  4736. "microsoft.extensions.configuration.usersecrets.nuspec",
  4737. "useSharedDesignerContext.txt"
  4738. ]
  4739. },
  4740. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  4741. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  4742. "type": "package",
  4743. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  4744. "files": [
  4745. ".nupkg.metadata",
  4746. ".signature.p7s",
  4747. "Icon.png",
  4748. "LICENSE.TXT",
  4749. "THIRD-PARTY-NOTICES.TXT",
  4750. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  4751. "buildTransitive/netcoreapp3.1/_._",
  4752. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4753. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4754. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  4755. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  4756. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4757. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4758. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4759. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4760. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  4761. "microsoft.extensions.dependencyinjection.nuspec",
  4762. "useSharedDesignerContext.txt"
  4763. ]
  4764. },
  4765. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  4766. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  4767. "type": "package",
  4768. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  4769. "files": [
  4770. ".nupkg.metadata",
  4771. ".signature.p7s",
  4772. "Icon.png",
  4773. "LICENSE.TXT",
  4774. "THIRD-PARTY-NOTICES.TXT",
  4775. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4776. "buildTransitive/netcoreapp3.1/_._",
  4777. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4778. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4779. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4780. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4781. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4782. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4783. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4784. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4785. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  4786. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4787. "useSharedDesignerContext.txt"
  4788. ]
  4789. },
  4790. "Microsoft.Extensions.DependencyModel/6.0.0": {
  4791. "sha512": "TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
  4792. "type": "package",
  4793. "path": "microsoft.extensions.dependencymodel/6.0.0",
  4794. "files": [
  4795. ".nupkg.metadata",
  4796. ".signature.p7s",
  4797. "Icon.png",
  4798. "LICENSE.TXT",
  4799. "THIRD-PARTY-NOTICES.TXT",
  4800. "lib/net461/Microsoft.Extensions.DependencyModel.dll",
  4801. "lib/net461/Microsoft.Extensions.DependencyModel.xml",
  4802. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  4803. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  4804. "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
  4805. "microsoft.extensions.dependencymodel.nuspec",
  4806. "useSharedDesignerContext.txt"
  4807. ]
  4808. },
  4809. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  4810. "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
  4811. "type": "package",
  4812. "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
  4813. "files": [
  4814. ".nupkg.metadata",
  4815. ".signature.p7s",
  4816. "Icon.png",
  4817. "LICENSE.TXT",
  4818. "THIRD-PARTY-NOTICES.TXT",
  4819. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  4820. "buildTransitive/netcoreapp3.1/_._",
  4821. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4822. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4823. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4824. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4825. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4826. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4827. "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
  4828. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4829. "useSharedDesignerContext.txt"
  4830. ]
  4831. },
  4832. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  4833. "sha512": "Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==",
  4834. "type": "package",
  4835. "path": "microsoft.extensions.fileproviders.composite/6.0.0",
  4836. "files": [
  4837. ".nupkg.metadata",
  4838. ".signature.p7s",
  4839. "Icon.png",
  4840. "LICENSE.TXT",
  4841. "THIRD-PARTY-NOTICES.TXT",
  4842. "lib/net461/Microsoft.Extensions.FileProviders.Composite.dll",
  4843. "lib/net461/Microsoft.Extensions.FileProviders.Composite.xml",
  4844. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  4845. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  4846. "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512",
  4847. "microsoft.extensions.fileproviders.composite.nuspec",
  4848. "useSharedDesignerContext.txt"
  4849. ]
  4850. },
  4851. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  4852. "sha512": "z7M3GpcYfKw1FYUGcurTbv/v0ZZ95LSMOZOjOtYLUztzUIUZZ61H5NFjLXjeQ8G72zxrVrt+jubb4MZGvm0EQw==",
  4853. "type": "package",
  4854. "path": "microsoft.extensions.fileproviders.embedded/6.0.5",
  4855. "files": [
  4856. ".nupkg.metadata",
  4857. ".signature.p7s",
  4858. "Icon.png",
  4859. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  4860. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  4861. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  4862. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  4863. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.dll",
  4864. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.xml",
  4865. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  4866. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  4867. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  4868. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  4869. "microsoft.extensions.fileproviders.embedded.6.0.5.nupkg.sha512",
  4870. "microsoft.extensions.fileproviders.embedded.nuspec",
  4871. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  4872. ]
  4873. },
  4874. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  4875. "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
  4876. "type": "package",
  4877. "path": "microsoft.extensions.fileproviders.physical/6.0.0",
  4878. "files": [
  4879. ".nupkg.metadata",
  4880. ".signature.p7s",
  4881. "Icon.png",
  4882. "LICENSE.TXT",
  4883. "THIRD-PARTY-NOTICES.TXT",
  4884. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  4885. "buildTransitive/netcoreapp3.1/_._",
  4886. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4887. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4888. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4889. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4890. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4891. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4892. "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
  4893. "microsoft.extensions.fileproviders.physical.nuspec",
  4894. "useSharedDesignerContext.txt"
  4895. ]
  4896. },
  4897. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  4898. "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
  4899. "type": "package",
  4900. "path": "microsoft.extensions.filesystemglobbing/6.0.0",
  4901. "files": [
  4902. ".nupkg.metadata",
  4903. ".signature.p7s",
  4904. "Icon.png",
  4905. "LICENSE.TXT",
  4906. "THIRD-PARTY-NOTICES.TXT",
  4907. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  4908. "buildTransitive/netcoreapp3.1/_._",
  4909. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4910. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4911. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4912. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4913. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4914. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4915. "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
  4916. "microsoft.extensions.filesystemglobbing.nuspec",
  4917. "useSharedDesignerContext.txt"
  4918. ]
  4919. },
  4920. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  4921. "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==",
  4922. "type": "package",
  4923. "path": "microsoft.extensions.hosting.abstractions/6.0.0",
  4924. "files": [
  4925. ".nupkg.metadata",
  4926. ".signature.p7s",
  4927. "Icon.png",
  4928. "LICENSE.TXT",
  4929. "THIRD-PARTY-NOTICES.TXT",
  4930. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  4931. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  4932. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4933. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4934. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4935. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4936. "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512",
  4937. "microsoft.extensions.hosting.abstractions.nuspec",
  4938. "useSharedDesignerContext.txt"
  4939. ]
  4940. },
  4941. "Microsoft.Extensions.Localization/6.0.5": {
  4942. "sha512": "mbNGvpCgCYD6o+2IFNT3EZ+AQE8W0yI9GXmXDYWtCXclhvjKn3RJ37QrMRXqzNqOBkWzdiJ/HINVuccrJEenNA==",
  4943. "type": "package",
  4944. "path": "microsoft.extensions.localization/6.0.5",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. ".signature.p7s",
  4948. "Icon.png",
  4949. "THIRD-PARTY-NOTICES.TXT",
  4950. "lib/net461/Microsoft.Extensions.Localization.dll",
  4951. "lib/net461/Microsoft.Extensions.Localization.xml",
  4952. "lib/net6.0/Microsoft.Extensions.Localization.dll",
  4953. "lib/net6.0/Microsoft.Extensions.Localization.xml",
  4954. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  4955. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  4956. "microsoft.extensions.localization.6.0.5.nupkg.sha512",
  4957. "microsoft.extensions.localization.nuspec"
  4958. ]
  4959. },
  4960. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  4961. "sha512": "PzYBMoQk4i1dOC2szAy90hPLBIe6YWdiaGxqoRdWesiJbZwiGCd2syC7kkePp2/ef3f8o202YRMt0tzbLP50rw==",
  4962. "type": "package",
  4963. "path": "microsoft.extensions.localization.abstractions/6.0.5",
  4964. "files": [
  4965. ".nupkg.metadata",
  4966. ".signature.p7s",
  4967. "Icon.png",
  4968. "THIRD-PARTY-NOTICES.TXT",
  4969. "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
  4970. "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
  4971. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4972. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.xml",
  4973. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4974. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  4975. "microsoft.extensions.localization.abstractions.6.0.5.nupkg.sha512",
  4976. "microsoft.extensions.localization.abstractions.nuspec"
  4977. ]
  4978. },
  4979. "Microsoft.Extensions.Logging/6.0.0": {
  4980. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  4981. "type": "package",
  4982. "path": "microsoft.extensions.logging/6.0.0",
  4983. "files": [
  4984. ".nupkg.metadata",
  4985. ".signature.p7s",
  4986. "Icon.png",
  4987. "LICENSE.TXT",
  4988. "THIRD-PARTY-NOTICES.TXT",
  4989. "lib/net461/Microsoft.Extensions.Logging.dll",
  4990. "lib/net461/Microsoft.Extensions.Logging.xml",
  4991. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4992. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4993. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4994. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4995. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  4996. "microsoft.extensions.logging.nuspec",
  4997. "useSharedDesignerContext.txt"
  4998. ]
  4999. },
  5000. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  5001. "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
  5002. "type": "package",
  5003. "path": "microsoft.extensions.logging.abstractions/6.0.1",
  5004. "files": [
  5005. ".nupkg.metadata",
  5006. ".signature.p7s",
  5007. "Icon.png",
  5008. "LICENSE.TXT",
  5009. "THIRD-PARTY-NOTICES.TXT",
  5010. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  5011. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5012. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5013. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5014. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5015. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5016. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5017. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5018. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5019. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5020. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5021. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5022. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5023. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5024. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  5025. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5026. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5027. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5028. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5029. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5030. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5031. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5032. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5033. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5034. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5035. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5036. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5037. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5038. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  5039. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5040. "buildTransitive/netcoreapp3.1/_._",
  5041. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5042. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5043. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5044. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5045. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5046. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5047. "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512",
  5048. "microsoft.extensions.logging.abstractions.nuspec",
  5049. "useSharedDesignerContext.txt"
  5050. ]
  5051. },
  5052. "Microsoft.Extensions.Options/6.0.0": {
  5053. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  5054. "type": "package",
  5055. "path": "microsoft.extensions.options/6.0.0",
  5056. "files": [
  5057. ".nupkg.metadata",
  5058. ".signature.p7s",
  5059. "Icon.png",
  5060. "LICENSE.TXT",
  5061. "THIRD-PARTY-NOTICES.TXT",
  5062. "lib/net461/Microsoft.Extensions.Options.dll",
  5063. "lib/net461/Microsoft.Extensions.Options.xml",
  5064. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5065. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5066. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  5067. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  5068. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  5069. "microsoft.extensions.options.nuspec",
  5070. "useSharedDesignerContext.txt"
  5071. ]
  5072. },
  5073. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  5074. "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==",
  5075. "type": "package",
  5076. "path": "microsoft.extensions.options.configurationextensions/6.0.0",
  5077. "files": [
  5078. ".nupkg.metadata",
  5079. ".signature.p7s",
  5080. "Icon.png",
  5081. "LICENSE.TXT",
  5082. "THIRD-PARTY-NOTICES.TXT",
  5083. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5084. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5085. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5086. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5087. "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
  5088. "microsoft.extensions.options.configurationextensions.nuspec",
  5089. "useSharedDesignerContext.txt"
  5090. ]
  5091. },
  5092. "Microsoft.Extensions.Primitives/6.0.0": {
  5093. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  5094. "type": "package",
  5095. "path": "microsoft.extensions.primitives/6.0.0",
  5096. "files": [
  5097. ".nupkg.metadata",
  5098. ".signature.p7s",
  5099. "Icon.png",
  5100. "LICENSE.TXT",
  5101. "THIRD-PARTY-NOTICES.TXT",
  5102. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  5103. "buildTransitive/netcoreapp3.1/_._",
  5104. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5105. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5106. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  5107. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  5108. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  5109. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  5110. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5111. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5112. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  5113. "microsoft.extensions.primitives.nuspec",
  5114. "useSharedDesignerContext.txt"
  5115. ]
  5116. },
  5117. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  5118. "sha512": "cT9SCW/dN+ulrvAtbh37c36DR6aArENH3S4UtFmvXRx+VGC0ArDgzRaEbEh+ChS4koxdl2oS691250iZhgKvwg==",
  5119. "type": "package",
  5120. "path": "microsoft.identitymodel.jsonwebtokens/5.5.0",
  5121. "files": [
  5122. ".nupkg.metadata",
  5123. ".signature.p7s",
  5124. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  5125. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  5126. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  5127. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  5128. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  5129. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  5130. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  5131. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  5132. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5133. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5134. "microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512",
  5135. "microsoft.identitymodel.jsonwebtokens.nuspec"
  5136. ]
  5137. },
  5138. "Microsoft.IdentityModel.Logging/5.5.0": {
  5139. "sha512": "1w/Hz/7+al+ugQn+6y0tAPmpN8U0u1aBtl1QXYCVkiJfbCC4tgyroFOuhdztOq48rgeM+3JW9bGqOtkfVurW8w==",
  5140. "type": "package",
  5141. "path": "microsoft.identitymodel.logging/5.5.0",
  5142. "files": [
  5143. ".nupkg.metadata",
  5144. ".signature.p7s",
  5145. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  5146. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  5147. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  5148. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  5149. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  5150. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  5151. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  5152. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  5153. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  5154. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  5155. "microsoft.identitymodel.logging.5.5.0.nupkg.sha512",
  5156. "microsoft.identitymodel.logging.nuspec"
  5157. ]
  5158. },
  5159. "Microsoft.IdentityModel.Protocols/5.5.0": {
  5160. "sha512": "m1gwAQwZjUxzRBC+4H40vYSo9Cms9yUbMdW492rQoXHU77G/ItiKxpk2+W9bWYcdsKUDKudye7im3T3MlVxEkg==",
  5161. "type": "package",
  5162. "path": "microsoft.identitymodel.protocols/5.5.0",
  5163. "files": [
  5164. ".nupkg.metadata",
  5165. ".signature.p7s",
  5166. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  5167. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  5168. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  5169. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  5170. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  5171. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  5172. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  5173. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  5174. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  5175. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  5176. "microsoft.identitymodel.protocols.5.5.0.nupkg.sha512",
  5177. "microsoft.identitymodel.protocols.nuspec"
  5178. ]
  5179. },
  5180. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  5181. "sha512": "21F4QlbaD5CXNs2urNRCO6vljbbrhv3gmGT8P18SKGKZ9IYBCn29extoJriHiPfhABd5b8S7RcdKU50XhERkYg==",
  5182. "type": "package",
  5183. "path": "microsoft.identitymodel.protocols.openidconnect/5.5.0",
  5184. "files": [
  5185. ".nupkg.metadata",
  5186. ".signature.p7s",
  5187. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5188. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5189. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5190. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5191. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5192. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5193. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5194. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5195. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5196. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5197. "microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512",
  5198. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  5199. ]
  5200. },
  5201. "Microsoft.IdentityModel.Tokens/5.5.0": {
  5202. "sha512": "cu1klZiuCwVYbXHs0QdnseuoRGG1/85VX9d1Sk0vbJlKp+HJUN/4pAS/fe2m9bTOYyIPdeCHeksMiVHgo1EfAA==",
  5203. "type": "package",
  5204. "path": "microsoft.identitymodel.tokens/5.5.0",
  5205. "files": [
  5206. ".nupkg.metadata",
  5207. ".signature.p7s",
  5208. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5209. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5210. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  5211. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  5212. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5213. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5214. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  5215. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  5216. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5217. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5218. "microsoft.identitymodel.tokens.5.5.0.nupkg.sha512",
  5219. "microsoft.identitymodel.tokens.nuspec"
  5220. ]
  5221. },
  5222. "Microsoft.NETCore.Platforms/5.0.0": {
  5223. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5224. "type": "package",
  5225. "path": "microsoft.netcore.platforms/5.0.0",
  5226. "files": [
  5227. ".nupkg.metadata",
  5228. ".signature.p7s",
  5229. "Icon.png",
  5230. "LICENSE.TXT",
  5231. "THIRD-PARTY-NOTICES.TXT",
  5232. "lib/netstandard1.0/_._",
  5233. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5234. "microsoft.netcore.platforms.nuspec",
  5235. "runtime.json",
  5236. "useSharedDesignerContext.txt",
  5237. "version.txt"
  5238. ]
  5239. },
  5240. "Microsoft.NETCore.Targets/1.1.0": {
  5241. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5242. "type": "package",
  5243. "path": "microsoft.netcore.targets/1.1.0",
  5244. "files": [
  5245. ".nupkg.metadata",
  5246. "ThirdPartyNotices.txt",
  5247. "dotnet_library_license.txt",
  5248. "lib/netstandard1.0/_._",
  5249. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5250. "microsoft.netcore.targets.nuspec",
  5251. "runtime.json"
  5252. ]
  5253. },
  5254. "Microsoft.OpenApi/1.2.3": {
  5255. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  5256. "type": "package",
  5257. "path": "microsoft.openapi/1.2.3",
  5258. "files": [
  5259. ".nupkg.metadata",
  5260. ".signature.p7s",
  5261. "lib/net46/Microsoft.OpenApi.dll",
  5262. "lib/net46/Microsoft.OpenApi.pdb",
  5263. "lib/net46/Microsoft.OpenApi.xml",
  5264. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  5265. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  5266. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  5267. "microsoft.openapi.1.2.3.nupkg.sha512",
  5268. "microsoft.openapi.nuspec"
  5269. ]
  5270. },
  5271. "Microsoft.Win32.Registry/5.0.0": {
  5272. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  5273. "type": "package",
  5274. "path": "microsoft.win32.registry/5.0.0",
  5275. "files": [
  5276. ".nupkg.metadata",
  5277. ".signature.p7s",
  5278. "Icon.png",
  5279. "LICENSE.TXT",
  5280. "THIRD-PARTY-NOTICES.TXT",
  5281. "lib/net46/Microsoft.Win32.Registry.dll",
  5282. "lib/net461/Microsoft.Win32.Registry.dll",
  5283. "lib/net461/Microsoft.Win32.Registry.xml",
  5284. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5285. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5286. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5287. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  5288. "microsoft.win32.registry.nuspec",
  5289. "ref/net46/Microsoft.Win32.Registry.dll",
  5290. "ref/net461/Microsoft.Win32.Registry.dll",
  5291. "ref/net461/Microsoft.Win32.Registry.xml",
  5292. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  5293. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  5294. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  5295. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  5296. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  5297. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  5298. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  5299. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  5300. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  5301. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  5302. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  5303. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  5304. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  5305. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  5306. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  5307. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  5308. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5309. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5310. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5311. "useSharedDesignerContext.txt",
  5312. "version.txt"
  5313. ]
  5314. },
  5315. "Microsoft.Win32.SystemEvents/5.0.0": {
  5316. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  5317. "type": "package",
  5318. "path": "microsoft.win32.systemevents/5.0.0",
  5319. "files": [
  5320. ".nupkg.metadata",
  5321. ".signature.p7s",
  5322. "Icon.png",
  5323. "LICENSE.TXT",
  5324. "THIRD-PARTY-NOTICES.TXT",
  5325. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5326. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5327. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5328. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5329. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5330. "microsoft.win32.systemevents.nuspec",
  5331. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5332. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5333. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5334. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5335. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5336. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5337. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5338. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5339. "useSharedDesignerContext.txt",
  5340. "version.txt"
  5341. ]
  5342. },
  5343. "MySqlConnector/2.0.0": {
  5344. "sha512": "EY0KXqQas+QvdZQU0NPkqBSfJitWAl8IUCg0v/Qn0P7f/KApJTFJFm8czYWoDPyewUjPHrAnE/cSYzzSFGc8Ng==",
  5345. "type": "package",
  5346. "path": "mysqlconnector/2.0.0",
  5347. "files": [
  5348. ".nupkg.metadata",
  5349. ".signature.p7s",
  5350. "README.md",
  5351. "lib/net45/MySqlConnector.dll",
  5352. "lib/net45/MySqlConnector.xml",
  5353. "lib/net461/MySqlConnector.dll",
  5354. "lib/net461/MySqlConnector.xml",
  5355. "lib/net471/MySqlConnector.dll",
  5356. "lib/net471/MySqlConnector.xml",
  5357. "lib/net5.0/MySqlConnector.dll",
  5358. "lib/net5.0/MySqlConnector.xml",
  5359. "lib/net6.0/MySqlConnector.dll",
  5360. "lib/net6.0/MySqlConnector.xml",
  5361. "lib/netcoreapp3.1/MySqlConnector.dll",
  5362. "lib/netcoreapp3.1/MySqlConnector.xml",
  5363. "lib/netstandard2.0/MySqlConnector.dll",
  5364. "lib/netstandard2.0/MySqlConnector.xml",
  5365. "lib/netstandard2.1/MySqlConnector.dll",
  5366. "lib/netstandard2.1/MySqlConnector.xml",
  5367. "logo.png",
  5368. "mysqlconnector.2.0.0.nupkg.sha512",
  5369. "mysqlconnector.nuspec"
  5370. ]
  5371. },
  5372. "Newtonsoft.Json/13.0.1": {
  5373. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5374. "type": "package",
  5375. "path": "newtonsoft.json/13.0.1",
  5376. "files": [
  5377. ".nupkg.metadata",
  5378. ".signature.p7s",
  5379. "LICENSE.md",
  5380. "lib/net20/Newtonsoft.Json.dll",
  5381. "lib/net20/Newtonsoft.Json.xml",
  5382. "lib/net35/Newtonsoft.Json.dll",
  5383. "lib/net35/Newtonsoft.Json.xml",
  5384. "lib/net40/Newtonsoft.Json.dll",
  5385. "lib/net40/Newtonsoft.Json.xml",
  5386. "lib/net45/Newtonsoft.Json.dll",
  5387. "lib/net45/Newtonsoft.Json.xml",
  5388. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5389. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5390. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5391. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5392. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5393. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5394. "newtonsoft.json.13.0.1.nupkg.sha512",
  5395. "newtonsoft.json.nuspec",
  5396. "packageIcon.png"
  5397. ]
  5398. },
  5399. "Newtonsoft.Json.Bson/1.0.2": {
  5400. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  5401. "type": "package",
  5402. "path": "newtonsoft.json.bson/1.0.2",
  5403. "files": [
  5404. ".nupkg.metadata",
  5405. ".signature.p7s",
  5406. "LICENSE.md",
  5407. "lib/net45/Newtonsoft.Json.Bson.dll",
  5408. "lib/net45/Newtonsoft.Json.Bson.pdb",
  5409. "lib/net45/Newtonsoft.Json.Bson.xml",
  5410. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  5411. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  5412. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  5413. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  5414. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  5415. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  5416. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  5417. "newtonsoft.json.bson.nuspec"
  5418. ]
  5419. },
  5420. "Nito.AsyncEx.Context/5.1.2": {
  5421. "sha512": "rMwL7Nj3oNyvFu/jxUzQ/YBobEkM2RQHe+5mpCDRyq6mfD7vCj7Z3rjB6XgpM6Mqcx1CA2xGv0ascU/2Xk8IIg==",
  5422. "type": "package",
  5423. "path": "nito.asyncex.context/5.1.2",
  5424. "files": [
  5425. ".nupkg.metadata",
  5426. ".signature.p7s",
  5427. "icon.png",
  5428. "lib/net461/Nito.AsyncEx.Context.dll",
  5429. "lib/net461/Nito.AsyncEx.Context.xml",
  5430. "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
  5431. "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
  5432. "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
  5433. "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
  5434. "nito.asyncex.context.5.1.2.nupkg.sha512",
  5435. "nito.asyncex.context.nuspec"
  5436. ]
  5437. },
  5438. "Nito.AsyncEx.Coordination/5.1.2": {
  5439. "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==",
  5440. "type": "package",
  5441. "path": "nito.asyncex.coordination/5.1.2",
  5442. "files": [
  5443. ".nupkg.metadata",
  5444. ".signature.p7s",
  5445. "icon.png",
  5446. "lib/net461/Nito.AsyncEx.Coordination.dll",
  5447. "lib/net461/Nito.AsyncEx.Coordination.xml",
  5448. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5449. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5450. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5451. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5452. "nito.asyncex.coordination.5.1.2.nupkg.sha512",
  5453. "nito.asyncex.coordination.nuspec"
  5454. ]
  5455. },
  5456. "Nito.AsyncEx.Tasks/5.1.2": {
  5457. "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==",
  5458. "type": "package",
  5459. "path": "nito.asyncex.tasks/5.1.2",
  5460. "files": [
  5461. ".nupkg.metadata",
  5462. ".signature.p7s",
  5463. "icon.png",
  5464. "lib/net461/Nito.AsyncEx.Tasks.dll",
  5465. "lib/net461/Nito.AsyncEx.Tasks.xml",
  5466. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5467. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5468. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5469. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5470. "nito.asyncex.tasks.5.1.2.nupkg.sha512",
  5471. "nito.asyncex.tasks.nuspec"
  5472. ]
  5473. },
  5474. "Nito.Collections.Deque/1.1.1": {
  5475. "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==",
  5476. "type": "package",
  5477. "path": "nito.collections.deque/1.1.1",
  5478. "files": [
  5479. ".nupkg.metadata",
  5480. ".signature.p7s",
  5481. "icon.png",
  5482. "lib/net461/Nito.Collections.Deque.dll",
  5483. "lib/net461/Nito.Collections.Deque.xml",
  5484. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5485. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5486. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5487. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5488. "nito.collections.deque.1.1.1.nupkg.sha512",
  5489. "nito.collections.deque.nuspec"
  5490. ]
  5491. },
  5492. "Nito.Disposables/2.2.1": {
  5493. "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==",
  5494. "type": "package",
  5495. "path": "nito.disposables/2.2.1",
  5496. "files": [
  5497. ".nupkg.metadata",
  5498. ".signature.p7s",
  5499. "icon.png",
  5500. "lib/net461/Nito.Disposables.dll",
  5501. "lib/net461/Nito.Disposables.xml",
  5502. "lib/netstandard1.0/Nito.Disposables.dll",
  5503. "lib/netstandard1.0/Nito.Disposables.xml",
  5504. "lib/netstandard2.0/Nito.Disposables.dll",
  5505. "lib/netstandard2.0/Nito.Disposables.xml",
  5506. "lib/netstandard2.1/Nito.Disposables.dll",
  5507. "lib/netstandard2.1/Nito.Disposables.xml",
  5508. "nito.disposables.2.2.1.nupkg.sha512",
  5509. "nito.disposables.nuspec"
  5510. ]
  5511. },
  5512. "NUglify/1.20.0": {
  5513. "sha512": "EK1OImD1Xub/tdvFmhLl939KO0bSAkNDqAGwKAaFV4FASelpyOr9iDvgWElSvbniCmS1HMeKgQWJFDF7/QVp/g==",
  5514. "type": "package",
  5515. "path": "nuglify/1.20.0",
  5516. "files": [
  5517. ".nupkg.metadata",
  5518. ".signature.p7s",
  5519. "lib/net35/NUglify.dll",
  5520. "lib/net35/NUglify.xml",
  5521. "lib/net40/NUglify.dll",
  5522. "lib/net40/NUglify.xml",
  5523. "lib/net5.0/NUglify.dll",
  5524. "lib/net5.0/NUglify.xml",
  5525. "lib/netstandard1.3/NUglify.dll",
  5526. "lib/netstandard1.3/NUglify.xml",
  5527. "lib/netstandard2.0/NUglify.dll",
  5528. "lib/netstandard2.0/NUglify.xml",
  5529. "nuglify.1.20.0.nupkg.sha512",
  5530. "nuglify.nuspec",
  5531. "nuglify.png"
  5532. ]
  5533. },
  5534. "Pipelines.Sockets.Unofficial/2.2.0": {
  5535. "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  5536. "type": "package",
  5537. "path": "pipelines.sockets.unofficial/2.2.0",
  5538. "files": [
  5539. ".nupkg.metadata",
  5540. ".signature.p7s",
  5541. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  5542. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  5543. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  5544. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  5545. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  5546. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  5547. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  5548. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  5549. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  5550. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  5551. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  5552. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  5553. "pipelines.sockets.unofficial.2.2.0.nupkg.sha512",
  5554. "pipelines.sockets.unofficial.nuspec"
  5555. ]
  5556. },
  5557. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  5558. "sha512": "iWloXFjpN6BllZA9oPqZTW9mNtFV5Q6DFv0WwFyh1IuOJ71btS3ifTwpLmaFXSlXzuEU9o7Rul0dU0WiwkOq0Q==",
  5559. "type": "package",
  5560. "path": "pomelo.entityframeworkcore.mysql/6.0.0",
  5561. "files": [
  5562. ".nupkg.metadata",
  5563. ".signature.p7s",
  5564. "icon.png",
  5565. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll",
  5566. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.xml",
  5567. "pomelo.entityframeworkcore.mysql.6.0.0.nupkg.sha512",
  5568. "pomelo.entityframeworkcore.mysql.nuspec"
  5569. ]
  5570. },
  5571. "Serilog/2.11.0": {
  5572. "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  5573. "type": "package",
  5574. "path": "serilog/2.11.0",
  5575. "files": [
  5576. ".nupkg.metadata",
  5577. ".signature.p7s",
  5578. "icon.png",
  5579. "lib/net45/Serilog.dll",
  5580. "lib/net45/Serilog.xml",
  5581. "lib/net46/Serilog.dll",
  5582. "lib/net46/Serilog.xml",
  5583. "lib/net5.0/Serilog.dll",
  5584. "lib/net5.0/Serilog.xml",
  5585. "lib/netstandard1.0/Serilog.dll",
  5586. "lib/netstandard1.0/Serilog.xml",
  5587. "lib/netstandard1.3/Serilog.dll",
  5588. "lib/netstandard1.3/Serilog.xml",
  5589. "lib/netstandard2.0/Serilog.dll",
  5590. "lib/netstandard2.0/Serilog.xml",
  5591. "lib/netstandard2.1/Serilog.dll",
  5592. "lib/netstandard2.1/Serilog.xml",
  5593. "serilog.2.11.0.nupkg.sha512",
  5594. "serilog.nuspec"
  5595. ]
  5596. },
  5597. "Serilog.AspNetCore/5.0.0": {
  5598. "sha512": "/JO/txIxRR61x1UXQAgUzG2Sx05o1QHCkokVBWrKzmAoDu+p5EtCAj7L/TVVg7Ezhh3GPiZ0JI9OJCmRO9tSRw==",
  5599. "type": "package",
  5600. "path": "serilog.aspnetcore/5.0.0",
  5601. "files": [
  5602. ".nupkg.metadata",
  5603. ".signature.p7s",
  5604. "icon.png",
  5605. "lib/net5.0/Serilog.AspNetCore.dll",
  5606. "lib/net5.0/Serilog.AspNetCore.xml",
  5607. "lib/netcoreapp3.1/Serilog.AspNetCore.dll",
  5608. "lib/netcoreapp3.1/Serilog.AspNetCore.xml",
  5609. "lib/netstandard2.0/Serilog.AspNetCore.dll",
  5610. "lib/netstandard2.0/Serilog.AspNetCore.xml",
  5611. "lib/netstandard2.1/Serilog.AspNetCore.dll",
  5612. "lib/netstandard2.1/Serilog.AspNetCore.xml",
  5613. "serilog.aspnetcore.5.0.0.nupkg.sha512",
  5614. "serilog.aspnetcore.nuspec"
  5615. ]
  5616. },
  5617. "Serilog.Extensions.Hosting/4.2.0": {
  5618. "sha512": "gT2keceCmPQR9EX0VpXQZvUgELdfE7yqJ7MOxBhm3WLCblcvRgswEOOTgok/DHObbM15A3V/DtF3VdVDQPIZzQ==",
  5619. "type": "package",
  5620. "path": "serilog.extensions.hosting/4.2.0",
  5621. "files": [
  5622. ".nupkg.metadata",
  5623. ".signature.p7s",
  5624. "icon.png",
  5625. "lib/netstandard2.0/Serilog.Extensions.Hosting.dll",
  5626. "lib/netstandard2.0/Serilog.Extensions.Hosting.xml",
  5627. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll",
  5628. "lib/netstandard2.1/Serilog.Extensions.Hosting.xml",
  5629. "serilog.extensions.hosting.4.2.0.nupkg.sha512",
  5630. "serilog.extensions.hosting.nuspec"
  5631. ]
  5632. },
  5633. "Serilog.Extensions.Logging/3.1.0": {
  5634. "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
  5635. "type": "package",
  5636. "path": "serilog.extensions.logging/3.1.0",
  5637. "files": [
  5638. ".nupkg.metadata",
  5639. ".signature.p7s",
  5640. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  5641. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  5642. "serilog-extension-nuget.png",
  5643. "serilog.extensions.logging.3.1.0.nupkg.sha512",
  5644. "serilog.extensions.logging.nuspec"
  5645. ]
  5646. },
  5647. "Serilog.Formatting.Compact/1.1.0": {
  5648. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  5649. "type": "package",
  5650. "path": "serilog.formatting.compact/1.1.0",
  5651. "files": [
  5652. ".nupkg.metadata",
  5653. ".signature.p7s",
  5654. "lib/net452/Serilog.Formatting.Compact.dll",
  5655. "lib/net452/Serilog.Formatting.Compact.xml",
  5656. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  5657. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  5658. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  5659. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  5660. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  5661. "serilog.formatting.compact.nuspec"
  5662. ]
  5663. },
  5664. "Serilog.Settings.Configuration/3.3.0": {
  5665. "sha512": "7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==",
  5666. "type": "package",
  5667. "path": "serilog.settings.configuration/3.3.0",
  5668. "files": [
  5669. ".nupkg.metadata",
  5670. ".signature.p7s",
  5671. "icon.png",
  5672. "lib/net451/Serilog.Settings.Configuration.dll",
  5673. "lib/net451/Serilog.Settings.Configuration.xml",
  5674. "lib/net461/Serilog.Settings.Configuration.dll",
  5675. "lib/net461/Serilog.Settings.Configuration.xml",
  5676. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  5677. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  5678. "serilog.settings.configuration.3.3.0.nupkg.sha512",
  5679. "serilog.settings.configuration.nuspec"
  5680. ]
  5681. },
  5682. "Serilog.Sinks.Async/1.5.0": {
  5683. "sha512": "csHYIqAwI4Gy9oAhXYRwxGrQEAtBg3Ep7WaCzsnA1cZuBZjVAU0n7hWaJhItjO7hbLHh/9gRVxALCUB4Dv+gZw==",
  5684. "type": "package",
  5685. "path": "serilog.sinks.async/1.5.0",
  5686. "files": [
  5687. ".nupkg.metadata",
  5688. ".signature.p7s",
  5689. "lib/net45/Serilog.Sinks.Async.dll",
  5690. "lib/net45/Serilog.Sinks.Async.xml",
  5691. "lib/net461/Serilog.Sinks.Async.dll",
  5692. "lib/net461/Serilog.Sinks.Async.xml",
  5693. "lib/netstandard1.1/Serilog.Sinks.Async.dll",
  5694. "lib/netstandard1.1/Serilog.Sinks.Async.xml",
  5695. "lib/netstandard2.0/Serilog.Sinks.Async.dll",
  5696. "lib/netstandard2.0/Serilog.Sinks.Async.xml",
  5697. "serilog-sink-nuget.png",
  5698. "serilog.sinks.async.1.5.0.nupkg.sha512",
  5699. "serilog.sinks.async.nuspec"
  5700. ]
  5701. },
  5702. "Serilog.Sinks.Console/4.0.1": {
  5703. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  5704. "type": "package",
  5705. "path": "serilog.sinks.console/4.0.1",
  5706. "files": [
  5707. ".nupkg.metadata",
  5708. ".signature.p7s",
  5709. "icon.png",
  5710. "lib/net45/Serilog.Sinks.Console.dll",
  5711. "lib/net45/Serilog.Sinks.Console.xml",
  5712. "lib/net5.0/Serilog.Sinks.Console.dll",
  5713. "lib/net5.0/Serilog.Sinks.Console.xml",
  5714. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  5715. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  5716. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  5717. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  5718. "serilog.sinks.console.4.0.1.nupkg.sha512",
  5719. "serilog.sinks.console.nuspec"
  5720. ]
  5721. },
  5722. "Serilog.Sinks.Debug/2.0.0": {
  5723. "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  5724. "type": "package",
  5725. "path": "serilog.sinks.debug/2.0.0",
  5726. "files": [
  5727. ".nupkg.metadata",
  5728. ".signature.p7s",
  5729. "icon.png",
  5730. "lib/net45/Serilog.Sinks.Debug.dll",
  5731. "lib/net45/Serilog.Sinks.Debug.xml",
  5732. "lib/net46/Serilog.Sinks.Debug.dll",
  5733. "lib/net46/Serilog.Sinks.Debug.xml",
  5734. "lib/netstandard1.0/Serilog.Sinks.Debug.dll",
  5735. "lib/netstandard1.0/Serilog.Sinks.Debug.xml",
  5736. "lib/netstandard2.0/Serilog.Sinks.Debug.dll",
  5737. "lib/netstandard2.0/Serilog.Sinks.Debug.xml",
  5738. "lib/netstandard2.1/Serilog.Sinks.Debug.dll",
  5739. "lib/netstandard2.1/Serilog.Sinks.Debug.xml",
  5740. "serilog.sinks.debug.2.0.0.nupkg.sha512",
  5741. "serilog.sinks.debug.nuspec"
  5742. ]
  5743. },
  5744. "Serilog.Sinks.File/5.0.0": {
  5745. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  5746. "type": "package",
  5747. "path": "serilog.sinks.file/5.0.0",
  5748. "files": [
  5749. ".nupkg.metadata",
  5750. ".signature.p7s",
  5751. "images/icon.png",
  5752. "lib/net45/Serilog.Sinks.File.dll",
  5753. "lib/net45/Serilog.Sinks.File.pdb",
  5754. "lib/net45/Serilog.Sinks.File.xml",
  5755. "lib/net5.0/Serilog.Sinks.File.dll",
  5756. "lib/net5.0/Serilog.Sinks.File.pdb",
  5757. "lib/net5.0/Serilog.Sinks.File.xml",
  5758. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  5759. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  5760. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  5761. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  5762. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  5763. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  5764. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  5765. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  5766. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  5767. "serilog.sinks.file.5.0.0.nupkg.sha512",
  5768. "serilog.sinks.file.nuspec"
  5769. ]
  5770. },
  5771. "StackExchange.Redis/2.2.4": {
  5772. "sha512": "wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==",
  5773. "type": "package",
  5774. "path": "stackexchange.redis/2.2.4",
  5775. "files": [
  5776. ".nupkg.metadata",
  5777. ".signature.p7s",
  5778. "lib/net461/StackExchange.Redis.dll",
  5779. "lib/net461/StackExchange.Redis.xml",
  5780. "lib/net472/StackExchange.Redis.dll",
  5781. "lib/net472/StackExchange.Redis.xml",
  5782. "lib/net5.0/StackExchange.Redis.dll",
  5783. "lib/net5.0/StackExchange.Redis.xml",
  5784. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  5785. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  5786. "lib/netstandard2.0/StackExchange.Redis.dll",
  5787. "lib/netstandard2.0/StackExchange.Redis.xml",
  5788. "stackexchange.redis.2.2.4.nupkg.sha512",
  5789. "stackexchange.redis.nuspec"
  5790. ]
  5791. },
  5792. "Swashbuckle.AspNetCore/6.3.0": {
  5793. "sha512": "3TAV6JqsJF2F5e5d/tiQuW/TlzKXB/n2IcL5QR1FP8ArmLhmPkpeHiLZ3+1YnJ5840/X5ApvpRRJpM9809IjTg==",
  5794. "type": "package",
  5795. "path": "swashbuckle.aspnetcore/6.3.0",
  5796. "files": [
  5797. ".nupkg.metadata",
  5798. ".signature.p7s",
  5799. "build/Swashbuckle.AspNetCore.props",
  5800. "swashbuckle.aspnetcore.6.3.0.nupkg.sha512",
  5801. "swashbuckle.aspnetcore.nuspec"
  5802. ]
  5803. },
  5804. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  5805. "sha512": "+taHh7kowNF+tQo9a82avwDtfqhAC82jTZTqZwypDpauPvwavyVtJ7+ERxE+yDb6U/nOcMicMmDAGbqbJ2Pc+Q==",
  5806. "type": "package",
  5807. "path": "swashbuckle.aspnetcore.swagger/6.3.0",
  5808. "files": [
  5809. ".nupkg.metadata",
  5810. ".signature.p7s",
  5811. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  5812. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5813. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  5814. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  5815. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5816. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  5817. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5818. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5819. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5820. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5821. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5822. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5823. "swashbuckle.aspnetcore.swagger.6.3.0.nupkg.sha512",
  5824. "swashbuckle.aspnetcore.swagger.nuspec"
  5825. ]
  5826. },
  5827. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  5828. "sha512": "8PRLtqCXTIfc+W/pcyab8GqHzHuFRZ3L+9/fix/ssVknwy/pbgkOqgzq9DGWfKz+MZReIp5ajZLR7bXioDdacQ==",
  5829. "type": "package",
  5830. "path": "swashbuckle.aspnetcore.swaggergen/6.3.0",
  5831. "files": [
  5832. ".nupkg.metadata",
  5833. ".signature.p7s",
  5834. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5835. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5836. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5837. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5838. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5839. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5840. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5841. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5842. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5843. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5844. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5845. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5846. "swashbuckle.aspnetcore.swaggergen.6.3.0.nupkg.sha512",
  5847. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5848. ]
  5849. },
  5850. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  5851. "sha512": "OmVLGzyeNBFUAx6E/bqrZW4uxfv9q2MtegYzeHv5Dj8N34ry8104d6OcyRIV4BhwHBSFD1rMvDlPciguFMtQ5w==",
  5852. "type": "package",
  5853. "path": "swashbuckle.aspnetcore.swaggerui/6.3.0",
  5854. "files": [
  5855. ".nupkg.metadata",
  5856. ".signature.p7s",
  5857. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5858. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5859. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5860. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5861. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5862. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5863. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5864. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5865. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5866. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5867. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5868. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5869. "swashbuckle.aspnetcore.swaggerui.6.3.0.nupkg.sha512",
  5870. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5871. ]
  5872. },
  5873. "System.Buffers/4.5.1": {
  5874. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5875. "type": "package",
  5876. "path": "system.buffers/4.5.1",
  5877. "files": [
  5878. ".nupkg.metadata",
  5879. ".signature.p7s",
  5880. "LICENSE.TXT",
  5881. "THIRD-PARTY-NOTICES.TXT",
  5882. "lib/net461/System.Buffers.dll",
  5883. "lib/net461/System.Buffers.xml",
  5884. "lib/netcoreapp2.0/_._",
  5885. "lib/netstandard1.1/System.Buffers.dll",
  5886. "lib/netstandard1.1/System.Buffers.xml",
  5887. "lib/netstandard2.0/System.Buffers.dll",
  5888. "lib/netstandard2.0/System.Buffers.xml",
  5889. "lib/uap10.0.16299/_._",
  5890. "ref/net45/System.Buffers.dll",
  5891. "ref/net45/System.Buffers.xml",
  5892. "ref/netcoreapp2.0/_._",
  5893. "ref/netstandard1.1/System.Buffers.dll",
  5894. "ref/netstandard1.1/System.Buffers.xml",
  5895. "ref/netstandard2.0/System.Buffers.dll",
  5896. "ref/netstandard2.0/System.Buffers.xml",
  5897. "ref/uap10.0.16299/_._",
  5898. "system.buffers.4.5.1.nupkg.sha512",
  5899. "system.buffers.nuspec",
  5900. "useSharedDesignerContext.txt",
  5901. "version.txt"
  5902. ]
  5903. },
  5904. "System.Collections/4.3.0": {
  5905. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5906. "type": "package",
  5907. "path": "system.collections/4.3.0",
  5908. "files": [
  5909. ".nupkg.metadata",
  5910. ".signature.p7s",
  5911. "ThirdPartyNotices.txt",
  5912. "dotnet_library_license.txt",
  5913. "lib/MonoAndroid10/_._",
  5914. "lib/MonoTouch10/_._",
  5915. "lib/net45/_._",
  5916. "lib/portable-net45+win8+wp8+wpa81/_._",
  5917. "lib/win8/_._",
  5918. "lib/wp80/_._",
  5919. "lib/wpa81/_._",
  5920. "lib/xamarinios10/_._",
  5921. "lib/xamarinmac20/_._",
  5922. "lib/xamarintvos10/_._",
  5923. "lib/xamarinwatchos10/_._",
  5924. "ref/MonoAndroid10/_._",
  5925. "ref/MonoTouch10/_._",
  5926. "ref/net45/_._",
  5927. "ref/netcore50/System.Collections.dll",
  5928. "ref/netcore50/System.Collections.xml",
  5929. "ref/netcore50/de/System.Collections.xml",
  5930. "ref/netcore50/es/System.Collections.xml",
  5931. "ref/netcore50/fr/System.Collections.xml",
  5932. "ref/netcore50/it/System.Collections.xml",
  5933. "ref/netcore50/ja/System.Collections.xml",
  5934. "ref/netcore50/ko/System.Collections.xml",
  5935. "ref/netcore50/ru/System.Collections.xml",
  5936. "ref/netcore50/zh-hans/System.Collections.xml",
  5937. "ref/netcore50/zh-hant/System.Collections.xml",
  5938. "ref/netstandard1.0/System.Collections.dll",
  5939. "ref/netstandard1.0/System.Collections.xml",
  5940. "ref/netstandard1.0/de/System.Collections.xml",
  5941. "ref/netstandard1.0/es/System.Collections.xml",
  5942. "ref/netstandard1.0/fr/System.Collections.xml",
  5943. "ref/netstandard1.0/it/System.Collections.xml",
  5944. "ref/netstandard1.0/ja/System.Collections.xml",
  5945. "ref/netstandard1.0/ko/System.Collections.xml",
  5946. "ref/netstandard1.0/ru/System.Collections.xml",
  5947. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5948. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5949. "ref/netstandard1.3/System.Collections.dll",
  5950. "ref/netstandard1.3/System.Collections.xml",
  5951. "ref/netstandard1.3/de/System.Collections.xml",
  5952. "ref/netstandard1.3/es/System.Collections.xml",
  5953. "ref/netstandard1.3/fr/System.Collections.xml",
  5954. "ref/netstandard1.3/it/System.Collections.xml",
  5955. "ref/netstandard1.3/ja/System.Collections.xml",
  5956. "ref/netstandard1.3/ko/System.Collections.xml",
  5957. "ref/netstandard1.3/ru/System.Collections.xml",
  5958. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5959. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5960. "ref/portable-net45+win8+wp8+wpa81/_._",
  5961. "ref/win8/_._",
  5962. "ref/wp80/_._",
  5963. "ref/wpa81/_._",
  5964. "ref/xamarinios10/_._",
  5965. "ref/xamarinmac20/_._",
  5966. "ref/xamarintvos10/_._",
  5967. "ref/xamarinwatchos10/_._",
  5968. "system.collections.4.3.0.nupkg.sha512",
  5969. "system.collections.nuspec"
  5970. ]
  5971. },
  5972. "System.Collections.Immutable/6.0.0": {
  5973. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  5974. "type": "package",
  5975. "path": "system.collections.immutable/6.0.0",
  5976. "files": [
  5977. ".nupkg.metadata",
  5978. ".signature.p7s",
  5979. "Icon.png",
  5980. "LICENSE.TXT",
  5981. "THIRD-PARTY-NOTICES.TXT",
  5982. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  5983. "buildTransitive/netcoreapp3.1/_._",
  5984. "lib/net461/System.Collections.Immutable.dll",
  5985. "lib/net461/System.Collections.Immutable.xml",
  5986. "lib/net6.0/System.Collections.Immutable.dll",
  5987. "lib/net6.0/System.Collections.Immutable.xml",
  5988. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5989. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5990. "system.collections.immutable.6.0.0.nupkg.sha512",
  5991. "system.collections.immutable.nuspec",
  5992. "useSharedDesignerContext.txt"
  5993. ]
  5994. },
  5995. "System.Configuration.ConfigurationManager/5.0.0": {
  5996. "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
  5997. "type": "package",
  5998. "path": "system.configuration.configurationmanager/5.0.0",
  5999. "files": [
  6000. ".nupkg.metadata",
  6001. ".signature.p7s",
  6002. "Icon.png",
  6003. "LICENSE.TXT",
  6004. "THIRD-PARTY-NOTICES.TXT",
  6005. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6006. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6007. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6008. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6009. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6010. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6011. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6012. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6013. "system.configuration.configurationmanager.5.0.0.nupkg.sha512",
  6014. "system.configuration.configurationmanager.nuspec",
  6015. "useSharedDesignerContext.txt",
  6016. "version.txt"
  6017. ]
  6018. },
  6019. "System.Diagnostics.Debug/4.3.0": {
  6020. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6021. "type": "package",
  6022. "path": "system.diagnostics.debug/4.3.0",
  6023. "files": [
  6024. ".nupkg.metadata",
  6025. ".signature.p7s",
  6026. "ThirdPartyNotices.txt",
  6027. "dotnet_library_license.txt",
  6028. "lib/MonoAndroid10/_._",
  6029. "lib/MonoTouch10/_._",
  6030. "lib/net45/_._",
  6031. "lib/portable-net45+win8+wp8+wpa81/_._",
  6032. "lib/win8/_._",
  6033. "lib/wp80/_._",
  6034. "lib/wpa81/_._",
  6035. "lib/xamarinios10/_._",
  6036. "lib/xamarinmac20/_._",
  6037. "lib/xamarintvos10/_._",
  6038. "lib/xamarinwatchos10/_._",
  6039. "ref/MonoAndroid10/_._",
  6040. "ref/MonoTouch10/_._",
  6041. "ref/net45/_._",
  6042. "ref/netcore50/System.Diagnostics.Debug.dll",
  6043. "ref/netcore50/System.Diagnostics.Debug.xml",
  6044. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6045. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6046. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6047. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6048. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6049. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6050. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6051. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6052. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6053. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6054. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6055. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6056. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6057. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6058. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6059. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6060. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6061. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6062. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6063. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6064. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6065. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6066. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6067. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6068. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6069. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6070. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6071. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6072. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6073. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6074. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6075. "ref/portable-net45+win8+wp8+wpa81/_._",
  6076. "ref/win8/_._",
  6077. "ref/wp80/_._",
  6078. "ref/wpa81/_._",
  6079. "ref/xamarinios10/_._",
  6080. "ref/xamarinmac20/_._",
  6081. "ref/xamarintvos10/_._",
  6082. "ref/xamarinwatchos10/_._",
  6083. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6084. "system.diagnostics.debug.nuspec"
  6085. ]
  6086. },
  6087. "System.Diagnostics.DiagnosticSource/6.0.0": {
  6088. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  6089. "type": "package",
  6090. "path": "system.diagnostics.diagnosticsource/6.0.0",
  6091. "files": [
  6092. ".nupkg.metadata",
  6093. ".signature.p7s",
  6094. "Icon.png",
  6095. "LICENSE.TXT",
  6096. "THIRD-PARTY-NOTICES.TXT",
  6097. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6098. "buildTransitive/netcoreapp3.1/_._",
  6099. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  6100. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  6101. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6102. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6103. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6104. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6105. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6106. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6107. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  6108. "system.diagnostics.diagnosticsource.nuspec",
  6109. "useSharedDesignerContext.txt"
  6110. ]
  6111. },
  6112. "System.Diagnostics.EventLog/6.0.0": {
  6113. "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
  6114. "type": "package",
  6115. "path": "system.diagnostics.eventlog/6.0.0",
  6116. "files": [
  6117. ".nupkg.metadata",
  6118. ".signature.p7s",
  6119. "Icon.png",
  6120. "LICENSE.TXT",
  6121. "THIRD-PARTY-NOTICES.TXT",
  6122. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  6123. "buildTransitive/netcoreapp3.1/_._",
  6124. "lib/net461/System.Diagnostics.EventLog.dll",
  6125. "lib/net461/System.Diagnostics.EventLog.xml",
  6126. "lib/net6.0/System.Diagnostics.EventLog.dll",
  6127. "lib/net6.0/System.Diagnostics.EventLog.xml",
  6128. "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
  6129. "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
  6130. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  6131. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  6132. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  6133. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  6134. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  6135. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll",
  6136. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
  6137. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
  6138. "system.diagnostics.eventlog.6.0.0.nupkg.sha512",
  6139. "system.diagnostics.eventlog.nuspec",
  6140. "useSharedDesignerContext.txt"
  6141. ]
  6142. },
  6143. "System.Diagnostics.PerformanceCounter/5.0.0": {
  6144. "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==",
  6145. "type": "package",
  6146. "path": "system.diagnostics.performancecounter/5.0.0",
  6147. "files": [
  6148. ".nupkg.metadata",
  6149. ".signature.p7s",
  6150. "Icon.png",
  6151. "LICENSE.TXT",
  6152. "THIRD-PARTY-NOTICES.TXT",
  6153. "lib/MonoAndroid10/_._",
  6154. "lib/MonoTouch10/_._",
  6155. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  6156. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  6157. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  6158. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  6159. "lib/xamarinios10/_._",
  6160. "lib/xamarinmac20/_._",
  6161. "lib/xamarintvos10/_._",
  6162. "lib/xamarinwatchos10/_._",
  6163. "ref/MonoAndroid10/_._",
  6164. "ref/MonoTouch10/_._",
  6165. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  6166. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  6167. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  6168. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  6169. "ref/xamarinios10/_._",
  6170. "ref/xamarinmac20/_._",
  6171. "ref/xamarintvos10/_._",
  6172. "ref/xamarinwatchos10/_._",
  6173. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  6174. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  6175. "system.diagnostics.performancecounter.5.0.0.nupkg.sha512",
  6176. "system.diagnostics.performancecounter.nuspec",
  6177. "useSharedDesignerContext.txt",
  6178. "version.txt"
  6179. ]
  6180. },
  6181. "System.Drawing.Common/5.0.0": {
  6182. "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
  6183. "type": "package",
  6184. "path": "system.drawing.common/5.0.0",
  6185. "files": [
  6186. ".nupkg.metadata",
  6187. ".signature.p7s",
  6188. "Icon.png",
  6189. "LICENSE.TXT",
  6190. "THIRD-PARTY-NOTICES.TXT",
  6191. "lib/MonoAndroid10/_._",
  6192. "lib/MonoTouch10/_._",
  6193. "lib/net461/System.Drawing.Common.dll",
  6194. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  6195. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  6196. "lib/netstandard2.0/System.Drawing.Common.dll",
  6197. "lib/xamarinios10/_._",
  6198. "lib/xamarinmac20/_._",
  6199. "lib/xamarintvos10/_._",
  6200. "lib/xamarinwatchos10/_._",
  6201. "ref/MonoAndroid10/_._",
  6202. "ref/MonoTouch10/_._",
  6203. "ref/net461/System.Drawing.Common.dll",
  6204. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6205. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6206. "ref/netstandard2.0/System.Drawing.Common.dll",
  6207. "ref/xamarinios10/_._",
  6208. "ref/xamarinmac20/_._",
  6209. "ref/xamarintvos10/_._",
  6210. "ref/xamarinwatchos10/_._",
  6211. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6212. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6213. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6214. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6215. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6216. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6217. "system.drawing.common.5.0.0.nupkg.sha512",
  6218. "system.drawing.common.nuspec",
  6219. "useSharedDesignerContext.txt",
  6220. "version.txt"
  6221. ]
  6222. },
  6223. "System.Formats.Asn1/6.0.0": {
  6224. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  6225. "type": "package",
  6226. "path": "system.formats.asn1/6.0.0",
  6227. "files": [
  6228. ".nupkg.metadata",
  6229. ".signature.p7s",
  6230. "Icon.png",
  6231. "LICENSE.TXT",
  6232. "THIRD-PARTY-NOTICES.TXT",
  6233. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  6234. "buildTransitive/netcoreapp3.1/_._",
  6235. "lib/net461/System.Formats.Asn1.dll",
  6236. "lib/net461/System.Formats.Asn1.xml",
  6237. "lib/net6.0/System.Formats.Asn1.dll",
  6238. "lib/net6.0/System.Formats.Asn1.xml",
  6239. "lib/netstandard2.0/System.Formats.Asn1.dll",
  6240. "lib/netstandard2.0/System.Formats.Asn1.xml",
  6241. "system.formats.asn1.6.0.0.nupkg.sha512",
  6242. "system.formats.asn1.nuspec",
  6243. "useSharedDesignerContext.txt"
  6244. ]
  6245. },
  6246. "System.Globalization/4.3.0": {
  6247. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6248. "type": "package",
  6249. "path": "system.globalization/4.3.0",
  6250. "files": [
  6251. ".nupkg.metadata",
  6252. ".signature.p7s",
  6253. "ThirdPartyNotices.txt",
  6254. "dotnet_library_license.txt",
  6255. "lib/MonoAndroid10/_._",
  6256. "lib/MonoTouch10/_._",
  6257. "lib/net45/_._",
  6258. "lib/portable-net45+win8+wp8+wpa81/_._",
  6259. "lib/win8/_._",
  6260. "lib/wp80/_._",
  6261. "lib/wpa81/_._",
  6262. "lib/xamarinios10/_._",
  6263. "lib/xamarinmac20/_._",
  6264. "lib/xamarintvos10/_._",
  6265. "lib/xamarinwatchos10/_._",
  6266. "ref/MonoAndroid10/_._",
  6267. "ref/MonoTouch10/_._",
  6268. "ref/net45/_._",
  6269. "ref/netcore50/System.Globalization.dll",
  6270. "ref/netcore50/System.Globalization.xml",
  6271. "ref/netcore50/de/System.Globalization.xml",
  6272. "ref/netcore50/es/System.Globalization.xml",
  6273. "ref/netcore50/fr/System.Globalization.xml",
  6274. "ref/netcore50/it/System.Globalization.xml",
  6275. "ref/netcore50/ja/System.Globalization.xml",
  6276. "ref/netcore50/ko/System.Globalization.xml",
  6277. "ref/netcore50/ru/System.Globalization.xml",
  6278. "ref/netcore50/zh-hans/System.Globalization.xml",
  6279. "ref/netcore50/zh-hant/System.Globalization.xml",
  6280. "ref/netstandard1.0/System.Globalization.dll",
  6281. "ref/netstandard1.0/System.Globalization.xml",
  6282. "ref/netstandard1.0/de/System.Globalization.xml",
  6283. "ref/netstandard1.0/es/System.Globalization.xml",
  6284. "ref/netstandard1.0/fr/System.Globalization.xml",
  6285. "ref/netstandard1.0/it/System.Globalization.xml",
  6286. "ref/netstandard1.0/ja/System.Globalization.xml",
  6287. "ref/netstandard1.0/ko/System.Globalization.xml",
  6288. "ref/netstandard1.0/ru/System.Globalization.xml",
  6289. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6290. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6291. "ref/netstandard1.3/System.Globalization.dll",
  6292. "ref/netstandard1.3/System.Globalization.xml",
  6293. "ref/netstandard1.3/de/System.Globalization.xml",
  6294. "ref/netstandard1.3/es/System.Globalization.xml",
  6295. "ref/netstandard1.3/fr/System.Globalization.xml",
  6296. "ref/netstandard1.3/it/System.Globalization.xml",
  6297. "ref/netstandard1.3/ja/System.Globalization.xml",
  6298. "ref/netstandard1.3/ko/System.Globalization.xml",
  6299. "ref/netstandard1.3/ru/System.Globalization.xml",
  6300. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6301. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6302. "ref/portable-net45+win8+wp8+wpa81/_._",
  6303. "ref/win8/_._",
  6304. "ref/wp80/_._",
  6305. "ref/wpa81/_._",
  6306. "ref/xamarinios10/_._",
  6307. "ref/xamarinmac20/_._",
  6308. "ref/xamarintvos10/_._",
  6309. "ref/xamarinwatchos10/_._",
  6310. "system.globalization.4.3.0.nupkg.sha512",
  6311. "system.globalization.nuspec"
  6312. ]
  6313. },
  6314. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  6315. "sha512": "xa8kptJ+uf9hzj366f3pLcs5HFZ6dQMDKzEGq/yZNF0s3mVfyIhuQwgDcTJlAU4AROne/6Z5+vITwrW3gVNKIA==",
  6316. "type": "package",
  6317. "path": "system.identitymodel.tokens.jwt/5.5.0",
  6318. "files": [
  6319. ".nupkg.metadata",
  6320. ".signature.p7s",
  6321. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6322. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6323. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  6324. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  6325. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6326. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6327. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  6328. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  6329. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6330. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6331. "system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512",
  6332. "system.identitymodel.tokens.jwt.nuspec"
  6333. ]
  6334. },
  6335. "System.IO/4.3.0": {
  6336. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6337. "type": "package",
  6338. "path": "system.io/4.3.0",
  6339. "files": [
  6340. ".nupkg.metadata",
  6341. ".signature.p7s",
  6342. "ThirdPartyNotices.txt",
  6343. "dotnet_library_license.txt",
  6344. "lib/MonoAndroid10/_._",
  6345. "lib/MonoTouch10/_._",
  6346. "lib/net45/_._",
  6347. "lib/net462/System.IO.dll",
  6348. "lib/portable-net45+win8+wp8+wpa81/_._",
  6349. "lib/win8/_._",
  6350. "lib/wp80/_._",
  6351. "lib/wpa81/_._",
  6352. "lib/xamarinios10/_._",
  6353. "lib/xamarinmac20/_._",
  6354. "lib/xamarintvos10/_._",
  6355. "lib/xamarinwatchos10/_._",
  6356. "ref/MonoAndroid10/_._",
  6357. "ref/MonoTouch10/_._",
  6358. "ref/net45/_._",
  6359. "ref/net462/System.IO.dll",
  6360. "ref/netcore50/System.IO.dll",
  6361. "ref/netcore50/System.IO.xml",
  6362. "ref/netcore50/de/System.IO.xml",
  6363. "ref/netcore50/es/System.IO.xml",
  6364. "ref/netcore50/fr/System.IO.xml",
  6365. "ref/netcore50/it/System.IO.xml",
  6366. "ref/netcore50/ja/System.IO.xml",
  6367. "ref/netcore50/ko/System.IO.xml",
  6368. "ref/netcore50/ru/System.IO.xml",
  6369. "ref/netcore50/zh-hans/System.IO.xml",
  6370. "ref/netcore50/zh-hant/System.IO.xml",
  6371. "ref/netstandard1.0/System.IO.dll",
  6372. "ref/netstandard1.0/System.IO.xml",
  6373. "ref/netstandard1.0/de/System.IO.xml",
  6374. "ref/netstandard1.0/es/System.IO.xml",
  6375. "ref/netstandard1.0/fr/System.IO.xml",
  6376. "ref/netstandard1.0/it/System.IO.xml",
  6377. "ref/netstandard1.0/ja/System.IO.xml",
  6378. "ref/netstandard1.0/ko/System.IO.xml",
  6379. "ref/netstandard1.0/ru/System.IO.xml",
  6380. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6381. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6382. "ref/netstandard1.3/System.IO.dll",
  6383. "ref/netstandard1.3/System.IO.xml",
  6384. "ref/netstandard1.3/de/System.IO.xml",
  6385. "ref/netstandard1.3/es/System.IO.xml",
  6386. "ref/netstandard1.3/fr/System.IO.xml",
  6387. "ref/netstandard1.3/it/System.IO.xml",
  6388. "ref/netstandard1.3/ja/System.IO.xml",
  6389. "ref/netstandard1.3/ko/System.IO.xml",
  6390. "ref/netstandard1.3/ru/System.IO.xml",
  6391. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6392. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6393. "ref/netstandard1.5/System.IO.dll",
  6394. "ref/netstandard1.5/System.IO.xml",
  6395. "ref/netstandard1.5/de/System.IO.xml",
  6396. "ref/netstandard1.5/es/System.IO.xml",
  6397. "ref/netstandard1.5/fr/System.IO.xml",
  6398. "ref/netstandard1.5/it/System.IO.xml",
  6399. "ref/netstandard1.5/ja/System.IO.xml",
  6400. "ref/netstandard1.5/ko/System.IO.xml",
  6401. "ref/netstandard1.5/ru/System.IO.xml",
  6402. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6403. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6404. "ref/portable-net45+win8+wp8+wpa81/_._",
  6405. "ref/win8/_._",
  6406. "ref/wp80/_._",
  6407. "ref/wpa81/_._",
  6408. "ref/xamarinios10/_._",
  6409. "ref/xamarinmac20/_._",
  6410. "ref/xamarintvos10/_._",
  6411. "ref/xamarinwatchos10/_._",
  6412. "system.io.4.3.0.nupkg.sha512",
  6413. "system.io.nuspec"
  6414. ]
  6415. },
  6416. "System.IO.Pipelines/5.0.2": {
  6417. "sha512": "Iew+dfa6FFiyvWBdRmXApixRY1db+beyutpIck4SOSe0NLM8FD/7AD54MscqVLhvfSMLHO7KadjTRT7fqxOGTA==",
  6418. "type": "package",
  6419. "path": "system.io.pipelines/5.0.2",
  6420. "files": [
  6421. ".nupkg.metadata",
  6422. ".signature.p7s",
  6423. "Icon.png",
  6424. "LICENSE.TXT",
  6425. "THIRD-PARTY-NOTICES.TXT",
  6426. "lib/net461/System.IO.Pipelines.dll",
  6427. "lib/net461/System.IO.Pipelines.xml",
  6428. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6429. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6430. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6431. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6432. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6433. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6434. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6435. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6436. "system.io.pipelines.5.0.2.nupkg.sha512",
  6437. "system.io.pipelines.nuspec",
  6438. "useSharedDesignerContext.txt",
  6439. "version.txt"
  6440. ]
  6441. },
  6442. "System.Linq/4.3.0": {
  6443. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6444. "type": "package",
  6445. "path": "system.linq/4.3.0",
  6446. "files": [
  6447. ".nupkg.metadata",
  6448. ".signature.p7s",
  6449. "ThirdPartyNotices.txt",
  6450. "dotnet_library_license.txt",
  6451. "lib/MonoAndroid10/_._",
  6452. "lib/MonoTouch10/_._",
  6453. "lib/net45/_._",
  6454. "lib/net463/System.Linq.dll",
  6455. "lib/netcore50/System.Linq.dll",
  6456. "lib/netstandard1.6/System.Linq.dll",
  6457. "lib/portable-net45+win8+wp8+wpa81/_._",
  6458. "lib/win8/_._",
  6459. "lib/wp80/_._",
  6460. "lib/wpa81/_._",
  6461. "lib/xamarinios10/_._",
  6462. "lib/xamarinmac20/_._",
  6463. "lib/xamarintvos10/_._",
  6464. "lib/xamarinwatchos10/_._",
  6465. "ref/MonoAndroid10/_._",
  6466. "ref/MonoTouch10/_._",
  6467. "ref/net45/_._",
  6468. "ref/net463/System.Linq.dll",
  6469. "ref/netcore50/System.Linq.dll",
  6470. "ref/netcore50/System.Linq.xml",
  6471. "ref/netcore50/de/System.Linq.xml",
  6472. "ref/netcore50/es/System.Linq.xml",
  6473. "ref/netcore50/fr/System.Linq.xml",
  6474. "ref/netcore50/it/System.Linq.xml",
  6475. "ref/netcore50/ja/System.Linq.xml",
  6476. "ref/netcore50/ko/System.Linq.xml",
  6477. "ref/netcore50/ru/System.Linq.xml",
  6478. "ref/netcore50/zh-hans/System.Linq.xml",
  6479. "ref/netcore50/zh-hant/System.Linq.xml",
  6480. "ref/netstandard1.0/System.Linq.dll",
  6481. "ref/netstandard1.0/System.Linq.xml",
  6482. "ref/netstandard1.0/de/System.Linq.xml",
  6483. "ref/netstandard1.0/es/System.Linq.xml",
  6484. "ref/netstandard1.0/fr/System.Linq.xml",
  6485. "ref/netstandard1.0/it/System.Linq.xml",
  6486. "ref/netstandard1.0/ja/System.Linq.xml",
  6487. "ref/netstandard1.0/ko/System.Linq.xml",
  6488. "ref/netstandard1.0/ru/System.Linq.xml",
  6489. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6490. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6491. "ref/netstandard1.6/System.Linq.dll",
  6492. "ref/netstandard1.6/System.Linq.xml",
  6493. "ref/netstandard1.6/de/System.Linq.xml",
  6494. "ref/netstandard1.6/es/System.Linq.xml",
  6495. "ref/netstandard1.6/fr/System.Linq.xml",
  6496. "ref/netstandard1.6/it/System.Linq.xml",
  6497. "ref/netstandard1.6/ja/System.Linq.xml",
  6498. "ref/netstandard1.6/ko/System.Linq.xml",
  6499. "ref/netstandard1.6/ru/System.Linq.xml",
  6500. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6501. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6502. "ref/portable-net45+win8+wp8+wpa81/_._",
  6503. "ref/win8/_._",
  6504. "ref/wp80/_._",
  6505. "ref/wpa81/_._",
  6506. "ref/xamarinios10/_._",
  6507. "ref/xamarinmac20/_._",
  6508. "ref/xamarintvos10/_._",
  6509. "ref/xamarinwatchos10/_._",
  6510. "system.linq.4.3.0.nupkg.sha512",
  6511. "system.linq.nuspec"
  6512. ]
  6513. },
  6514. "System.Linq.Dynamic.Core/1.2.18": {
  6515. "sha512": "+RH90sKD6SK2c9MD2Xo2jz1hkAJYfgPVyW1VgAwiPURR+JzOJCdvsDBg2Iq97FmTymxlQBY76G1cMxsF6j+6tA==",
  6516. "type": "package",
  6517. "path": "system.linq.dynamic.core/1.2.18",
  6518. "files": [
  6519. ".nupkg.metadata",
  6520. ".signature.p7s",
  6521. "lib/net35/System.Linq.Dynamic.Core.dll",
  6522. "lib/net35/System.Linq.Dynamic.Core.pdb",
  6523. "lib/net35/System.Linq.Dynamic.Core.xml",
  6524. "lib/net40/System.Linq.Dynamic.Core.dll",
  6525. "lib/net40/System.Linq.Dynamic.Core.pdb",
  6526. "lib/net40/System.Linq.Dynamic.Core.xml",
  6527. "lib/net45/System.Linq.Dynamic.Core.dll",
  6528. "lib/net45/System.Linq.Dynamic.Core.pdb",
  6529. "lib/net45/System.Linq.Dynamic.Core.xml",
  6530. "lib/net452/System.Linq.Dynamic.Core.dll",
  6531. "lib/net452/System.Linq.Dynamic.Core.pdb",
  6532. "lib/net452/System.Linq.Dynamic.Core.xml",
  6533. "lib/net46/System.Linq.Dynamic.Core.dll",
  6534. "lib/net46/System.Linq.Dynamic.Core.pdb",
  6535. "lib/net46/System.Linq.Dynamic.Core.xml",
  6536. "lib/net5.0/System.Linq.Dynamic.Core.dll",
  6537. "lib/net5.0/System.Linq.Dynamic.Core.pdb",
  6538. "lib/net5.0/System.Linq.Dynamic.Core.xml",
  6539. "lib/net6.0/System.Linq.Dynamic.Core.dll",
  6540. "lib/net6.0/System.Linq.Dynamic.Core.pdb",
  6541. "lib/net6.0/System.Linq.Dynamic.Core.xml",
  6542. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
  6543. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
  6544. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
  6545. "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
  6546. "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
  6547. "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
  6548. "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
  6549. "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
  6550. "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
  6551. "lib/netstandard2.1/System.Linq.Dynamic.Core.dll",
  6552. "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb",
  6553. "lib/netstandard2.1/System.Linq.Dynamic.Core.xml",
  6554. "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll",
  6555. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb",
  6556. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri",
  6557. "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml",
  6558. "system.linq.dynamic.core.1.2.18.nupkg.sha512",
  6559. "system.linq.dynamic.core.nuspec"
  6560. ]
  6561. },
  6562. "System.Linq.Expressions/4.3.0": {
  6563. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6564. "type": "package",
  6565. "path": "system.linq.expressions/4.3.0",
  6566. "files": [
  6567. ".nupkg.metadata",
  6568. ".signature.p7s",
  6569. "ThirdPartyNotices.txt",
  6570. "dotnet_library_license.txt",
  6571. "lib/MonoAndroid10/_._",
  6572. "lib/MonoTouch10/_._",
  6573. "lib/net45/_._",
  6574. "lib/net463/System.Linq.Expressions.dll",
  6575. "lib/netcore50/System.Linq.Expressions.dll",
  6576. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6577. "lib/portable-net45+win8+wp8+wpa81/_._",
  6578. "lib/win8/_._",
  6579. "lib/wp80/_._",
  6580. "lib/wpa81/_._",
  6581. "lib/xamarinios10/_._",
  6582. "lib/xamarinmac20/_._",
  6583. "lib/xamarintvos10/_._",
  6584. "lib/xamarinwatchos10/_._",
  6585. "ref/MonoAndroid10/_._",
  6586. "ref/MonoTouch10/_._",
  6587. "ref/net45/_._",
  6588. "ref/net463/System.Linq.Expressions.dll",
  6589. "ref/netcore50/System.Linq.Expressions.dll",
  6590. "ref/netcore50/System.Linq.Expressions.xml",
  6591. "ref/netcore50/de/System.Linq.Expressions.xml",
  6592. "ref/netcore50/es/System.Linq.Expressions.xml",
  6593. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6594. "ref/netcore50/it/System.Linq.Expressions.xml",
  6595. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6596. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6597. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6598. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6599. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6600. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6601. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6602. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6603. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6604. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6605. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6606. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6607. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6608. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6609. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6610. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6611. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6612. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6613. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6614. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6615. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6616. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6617. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6618. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6619. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6620. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6621. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6622. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6623. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6624. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6625. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6626. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6627. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6628. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6629. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6630. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6631. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6632. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6633. "ref/portable-net45+win8+wp8+wpa81/_._",
  6634. "ref/win8/_._",
  6635. "ref/wp80/_._",
  6636. "ref/wpa81/_._",
  6637. "ref/xamarinios10/_._",
  6638. "ref/xamarinmac20/_._",
  6639. "ref/xamarintvos10/_._",
  6640. "ref/xamarinwatchos10/_._",
  6641. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6642. "system.linq.expressions.4.3.0.nupkg.sha512",
  6643. "system.linq.expressions.nuspec"
  6644. ]
  6645. },
  6646. "System.Linq.Queryable/4.3.0": {
  6647. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  6648. "type": "package",
  6649. "path": "system.linq.queryable/4.3.0",
  6650. "files": [
  6651. ".nupkg.metadata",
  6652. ".signature.p7s",
  6653. "ThirdPartyNotices.txt",
  6654. "dotnet_library_license.txt",
  6655. "lib/monoandroid10/_._",
  6656. "lib/monotouch10/_._",
  6657. "lib/net45/_._",
  6658. "lib/netcore50/System.Linq.Queryable.dll",
  6659. "lib/netstandard1.3/System.Linq.Queryable.dll",
  6660. "lib/portable-net45+win8+wp8+wpa81/_._",
  6661. "lib/win8/_._",
  6662. "lib/wp80/_._",
  6663. "lib/wpa81/_._",
  6664. "lib/xamarinios10/_._",
  6665. "lib/xamarinmac20/_._",
  6666. "lib/xamarintvos10/_._",
  6667. "lib/xamarinwatchos10/_._",
  6668. "ref/monoandroid10/_._",
  6669. "ref/monotouch10/_._",
  6670. "ref/net45/_._",
  6671. "ref/netcore50/System.Linq.Queryable.dll",
  6672. "ref/netcore50/System.Linq.Queryable.xml",
  6673. "ref/netcore50/de/System.Linq.Queryable.xml",
  6674. "ref/netcore50/es/System.Linq.Queryable.xml",
  6675. "ref/netcore50/fr/System.Linq.Queryable.xml",
  6676. "ref/netcore50/it/System.Linq.Queryable.xml",
  6677. "ref/netcore50/ja/System.Linq.Queryable.xml",
  6678. "ref/netcore50/ko/System.Linq.Queryable.xml",
  6679. "ref/netcore50/ru/System.Linq.Queryable.xml",
  6680. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  6681. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  6682. "ref/netstandard1.0/System.Linq.Queryable.dll",
  6683. "ref/netstandard1.0/System.Linq.Queryable.xml",
  6684. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  6685. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  6686. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  6687. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  6688. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  6689. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  6690. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  6691. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  6692. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  6693. "ref/portable-net45+win8+wp8+wpa81/_._",
  6694. "ref/win8/_._",
  6695. "ref/wp80/_._",
  6696. "ref/wpa81/_._",
  6697. "ref/xamarinios10/_._",
  6698. "ref/xamarinmac20/_._",
  6699. "ref/xamarintvos10/_._",
  6700. "ref/xamarinwatchos10/_._",
  6701. "system.linq.queryable.4.3.0.nupkg.sha512",
  6702. "system.linq.queryable.nuspec"
  6703. ]
  6704. },
  6705. "System.Memory/4.5.4": {
  6706. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  6707. "type": "package",
  6708. "path": "system.memory/4.5.4",
  6709. "files": [
  6710. ".nupkg.metadata",
  6711. ".signature.p7s",
  6712. "LICENSE.TXT",
  6713. "THIRD-PARTY-NOTICES.TXT",
  6714. "lib/net461/System.Memory.dll",
  6715. "lib/net461/System.Memory.xml",
  6716. "lib/netcoreapp2.1/_._",
  6717. "lib/netstandard1.1/System.Memory.dll",
  6718. "lib/netstandard1.1/System.Memory.xml",
  6719. "lib/netstandard2.0/System.Memory.dll",
  6720. "lib/netstandard2.0/System.Memory.xml",
  6721. "ref/netcoreapp2.1/_._",
  6722. "system.memory.4.5.4.nupkg.sha512",
  6723. "system.memory.nuspec",
  6724. "useSharedDesignerContext.txt",
  6725. "version.txt"
  6726. ]
  6727. },
  6728. "System.ObjectModel/4.3.0": {
  6729. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6730. "type": "package",
  6731. "path": "system.objectmodel/4.3.0",
  6732. "files": [
  6733. ".nupkg.metadata",
  6734. ".signature.p7s",
  6735. "ThirdPartyNotices.txt",
  6736. "dotnet_library_license.txt",
  6737. "lib/MonoAndroid10/_._",
  6738. "lib/MonoTouch10/_._",
  6739. "lib/net45/_._",
  6740. "lib/netcore50/System.ObjectModel.dll",
  6741. "lib/netstandard1.3/System.ObjectModel.dll",
  6742. "lib/portable-net45+win8+wp8+wpa81/_._",
  6743. "lib/win8/_._",
  6744. "lib/wp80/_._",
  6745. "lib/wpa81/_._",
  6746. "lib/xamarinios10/_._",
  6747. "lib/xamarinmac20/_._",
  6748. "lib/xamarintvos10/_._",
  6749. "lib/xamarinwatchos10/_._",
  6750. "ref/MonoAndroid10/_._",
  6751. "ref/MonoTouch10/_._",
  6752. "ref/net45/_._",
  6753. "ref/netcore50/System.ObjectModel.dll",
  6754. "ref/netcore50/System.ObjectModel.xml",
  6755. "ref/netcore50/de/System.ObjectModel.xml",
  6756. "ref/netcore50/es/System.ObjectModel.xml",
  6757. "ref/netcore50/fr/System.ObjectModel.xml",
  6758. "ref/netcore50/it/System.ObjectModel.xml",
  6759. "ref/netcore50/ja/System.ObjectModel.xml",
  6760. "ref/netcore50/ko/System.ObjectModel.xml",
  6761. "ref/netcore50/ru/System.ObjectModel.xml",
  6762. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6763. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6764. "ref/netstandard1.0/System.ObjectModel.dll",
  6765. "ref/netstandard1.0/System.ObjectModel.xml",
  6766. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6767. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6768. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6769. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6770. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6771. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6772. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6773. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6774. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6775. "ref/netstandard1.3/System.ObjectModel.dll",
  6776. "ref/netstandard1.3/System.ObjectModel.xml",
  6777. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6778. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6779. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6780. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6781. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6782. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6783. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6784. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6785. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6786. "ref/portable-net45+win8+wp8+wpa81/_._",
  6787. "ref/win8/_._",
  6788. "ref/wp80/_._",
  6789. "ref/wpa81/_._",
  6790. "ref/xamarinios10/_._",
  6791. "ref/xamarinmac20/_._",
  6792. "ref/xamarintvos10/_._",
  6793. "ref/xamarinwatchos10/_._",
  6794. "system.objectmodel.4.3.0.nupkg.sha512",
  6795. "system.objectmodel.nuspec"
  6796. ]
  6797. },
  6798. "System.Reflection/4.3.0": {
  6799. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6800. "type": "package",
  6801. "path": "system.reflection/4.3.0",
  6802. "files": [
  6803. ".nupkg.metadata",
  6804. ".signature.p7s",
  6805. "ThirdPartyNotices.txt",
  6806. "dotnet_library_license.txt",
  6807. "lib/MonoAndroid10/_._",
  6808. "lib/MonoTouch10/_._",
  6809. "lib/net45/_._",
  6810. "lib/net462/System.Reflection.dll",
  6811. "lib/portable-net45+win8+wp8+wpa81/_._",
  6812. "lib/win8/_._",
  6813. "lib/wp80/_._",
  6814. "lib/wpa81/_._",
  6815. "lib/xamarinios10/_._",
  6816. "lib/xamarinmac20/_._",
  6817. "lib/xamarintvos10/_._",
  6818. "lib/xamarinwatchos10/_._",
  6819. "ref/MonoAndroid10/_._",
  6820. "ref/MonoTouch10/_._",
  6821. "ref/net45/_._",
  6822. "ref/net462/System.Reflection.dll",
  6823. "ref/netcore50/System.Reflection.dll",
  6824. "ref/netcore50/System.Reflection.xml",
  6825. "ref/netcore50/de/System.Reflection.xml",
  6826. "ref/netcore50/es/System.Reflection.xml",
  6827. "ref/netcore50/fr/System.Reflection.xml",
  6828. "ref/netcore50/it/System.Reflection.xml",
  6829. "ref/netcore50/ja/System.Reflection.xml",
  6830. "ref/netcore50/ko/System.Reflection.xml",
  6831. "ref/netcore50/ru/System.Reflection.xml",
  6832. "ref/netcore50/zh-hans/System.Reflection.xml",
  6833. "ref/netcore50/zh-hant/System.Reflection.xml",
  6834. "ref/netstandard1.0/System.Reflection.dll",
  6835. "ref/netstandard1.0/System.Reflection.xml",
  6836. "ref/netstandard1.0/de/System.Reflection.xml",
  6837. "ref/netstandard1.0/es/System.Reflection.xml",
  6838. "ref/netstandard1.0/fr/System.Reflection.xml",
  6839. "ref/netstandard1.0/it/System.Reflection.xml",
  6840. "ref/netstandard1.0/ja/System.Reflection.xml",
  6841. "ref/netstandard1.0/ko/System.Reflection.xml",
  6842. "ref/netstandard1.0/ru/System.Reflection.xml",
  6843. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6844. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6845. "ref/netstandard1.3/System.Reflection.dll",
  6846. "ref/netstandard1.3/System.Reflection.xml",
  6847. "ref/netstandard1.3/de/System.Reflection.xml",
  6848. "ref/netstandard1.3/es/System.Reflection.xml",
  6849. "ref/netstandard1.3/fr/System.Reflection.xml",
  6850. "ref/netstandard1.3/it/System.Reflection.xml",
  6851. "ref/netstandard1.3/ja/System.Reflection.xml",
  6852. "ref/netstandard1.3/ko/System.Reflection.xml",
  6853. "ref/netstandard1.3/ru/System.Reflection.xml",
  6854. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6855. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6856. "ref/netstandard1.5/System.Reflection.dll",
  6857. "ref/netstandard1.5/System.Reflection.xml",
  6858. "ref/netstandard1.5/de/System.Reflection.xml",
  6859. "ref/netstandard1.5/es/System.Reflection.xml",
  6860. "ref/netstandard1.5/fr/System.Reflection.xml",
  6861. "ref/netstandard1.5/it/System.Reflection.xml",
  6862. "ref/netstandard1.5/ja/System.Reflection.xml",
  6863. "ref/netstandard1.5/ko/System.Reflection.xml",
  6864. "ref/netstandard1.5/ru/System.Reflection.xml",
  6865. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6866. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6867. "ref/portable-net45+win8+wp8+wpa81/_._",
  6868. "ref/win8/_._",
  6869. "ref/wp80/_._",
  6870. "ref/wpa81/_._",
  6871. "ref/xamarinios10/_._",
  6872. "ref/xamarinmac20/_._",
  6873. "ref/xamarintvos10/_._",
  6874. "ref/xamarinwatchos10/_._",
  6875. "system.reflection.4.3.0.nupkg.sha512",
  6876. "system.reflection.nuspec"
  6877. ]
  6878. },
  6879. "System.Reflection.Emit/4.3.0": {
  6880. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6881. "type": "package",
  6882. "path": "system.reflection.emit/4.3.0",
  6883. "files": [
  6884. ".nupkg.metadata",
  6885. "ThirdPartyNotices.txt",
  6886. "dotnet_library_license.txt",
  6887. "lib/MonoAndroid10/_._",
  6888. "lib/monotouch10/_._",
  6889. "lib/net45/_._",
  6890. "lib/netcore50/System.Reflection.Emit.dll",
  6891. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6892. "lib/xamarinios10/_._",
  6893. "lib/xamarinmac20/_._",
  6894. "lib/xamarintvos10/_._",
  6895. "lib/xamarinwatchos10/_._",
  6896. "ref/MonoAndroid10/_._",
  6897. "ref/net45/_._",
  6898. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6899. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6900. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6901. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6902. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6903. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6904. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6905. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6906. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6907. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6908. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6909. "ref/xamarinmac20/_._",
  6910. "system.reflection.emit.4.3.0.nupkg.sha512",
  6911. "system.reflection.emit.nuspec"
  6912. ]
  6913. },
  6914. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6915. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6916. "type": "package",
  6917. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6918. "files": [
  6919. ".nupkg.metadata",
  6920. "ThirdPartyNotices.txt",
  6921. "dotnet_library_license.txt",
  6922. "lib/MonoAndroid10/_._",
  6923. "lib/MonoTouch10/_._",
  6924. "lib/net45/_._",
  6925. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6926. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6927. "lib/portable-net45+wp8/_._",
  6928. "lib/wp80/_._",
  6929. "lib/xamarinios10/_._",
  6930. "lib/xamarinmac20/_._",
  6931. "lib/xamarintvos10/_._",
  6932. "lib/xamarinwatchos10/_._",
  6933. "ref/MonoAndroid10/_._",
  6934. "ref/MonoTouch10/_._",
  6935. "ref/net45/_._",
  6936. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6937. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6938. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6939. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6940. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6941. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6942. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6943. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6944. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6945. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6946. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6947. "ref/portable-net45+wp8/_._",
  6948. "ref/wp80/_._",
  6949. "ref/xamarinios10/_._",
  6950. "ref/xamarinmac20/_._",
  6951. "ref/xamarintvos10/_._",
  6952. "ref/xamarinwatchos10/_._",
  6953. "runtimes/aot/lib/netcore50/_._",
  6954. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6955. "system.reflection.emit.ilgeneration.nuspec"
  6956. ]
  6957. },
  6958. "System.Reflection.Emit.Lightweight/4.3.0": {
  6959. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6960. "type": "package",
  6961. "path": "system.reflection.emit.lightweight/4.3.0",
  6962. "files": [
  6963. ".nupkg.metadata",
  6964. "ThirdPartyNotices.txt",
  6965. "dotnet_library_license.txt",
  6966. "lib/MonoAndroid10/_._",
  6967. "lib/MonoTouch10/_._",
  6968. "lib/net45/_._",
  6969. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6970. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6971. "lib/portable-net45+wp8/_._",
  6972. "lib/wp80/_._",
  6973. "lib/xamarinios10/_._",
  6974. "lib/xamarinmac20/_._",
  6975. "lib/xamarintvos10/_._",
  6976. "lib/xamarinwatchos10/_._",
  6977. "ref/MonoAndroid10/_._",
  6978. "ref/MonoTouch10/_._",
  6979. "ref/net45/_._",
  6980. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6981. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6982. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6983. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6984. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6985. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6986. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6987. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6988. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6989. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6990. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6991. "ref/portable-net45+wp8/_._",
  6992. "ref/wp80/_._",
  6993. "ref/xamarinios10/_._",
  6994. "ref/xamarinmac20/_._",
  6995. "ref/xamarintvos10/_._",
  6996. "ref/xamarinwatchos10/_._",
  6997. "runtimes/aot/lib/netcore50/_._",
  6998. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6999. "system.reflection.emit.lightweight.nuspec"
  7000. ]
  7001. },
  7002. "System.Reflection.Extensions/4.3.0": {
  7003. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7004. "type": "package",
  7005. "path": "system.reflection.extensions/4.3.0",
  7006. "files": [
  7007. ".nupkg.metadata",
  7008. ".signature.p7s",
  7009. "ThirdPartyNotices.txt",
  7010. "dotnet_library_license.txt",
  7011. "lib/MonoAndroid10/_._",
  7012. "lib/MonoTouch10/_._",
  7013. "lib/net45/_._",
  7014. "lib/portable-net45+win8+wp8+wpa81/_._",
  7015. "lib/win8/_._",
  7016. "lib/wp80/_._",
  7017. "lib/wpa81/_._",
  7018. "lib/xamarinios10/_._",
  7019. "lib/xamarinmac20/_._",
  7020. "lib/xamarintvos10/_._",
  7021. "lib/xamarinwatchos10/_._",
  7022. "ref/MonoAndroid10/_._",
  7023. "ref/MonoTouch10/_._",
  7024. "ref/net45/_._",
  7025. "ref/netcore50/System.Reflection.Extensions.dll",
  7026. "ref/netcore50/System.Reflection.Extensions.xml",
  7027. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7028. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7029. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7030. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7031. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7032. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7033. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7034. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7035. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7036. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7037. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7038. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7039. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7040. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7041. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7042. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7043. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7044. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7045. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7046. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7047. "ref/portable-net45+win8+wp8+wpa81/_._",
  7048. "ref/win8/_._",
  7049. "ref/wp80/_._",
  7050. "ref/wpa81/_._",
  7051. "ref/xamarinios10/_._",
  7052. "ref/xamarinmac20/_._",
  7053. "ref/xamarintvos10/_._",
  7054. "ref/xamarinwatchos10/_._",
  7055. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7056. "system.reflection.extensions.nuspec"
  7057. ]
  7058. },
  7059. "System.Reflection.Metadata/5.0.0": {
  7060. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  7061. "type": "package",
  7062. "path": "system.reflection.metadata/5.0.0",
  7063. "files": [
  7064. ".nupkg.metadata",
  7065. ".signature.p7s",
  7066. "Icon.png",
  7067. "LICENSE.TXT",
  7068. "THIRD-PARTY-NOTICES.TXT",
  7069. "lib/net461/System.Reflection.Metadata.dll",
  7070. "lib/net461/System.Reflection.Metadata.xml",
  7071. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  7072. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  7073. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7074. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7075. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7076. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  7077. "system.reflection.metadata.5.0.0.nupkg.sha512",
  7078. "system.reflection.metadata.nuspec",
  7079. "useSharedDesignerContext.txt",
  7080. "version.txt"
  7081. ]
  7082. },
  7083. "System.Reflection.Primitives/4.3.0": {
  7084. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7085. "type": "package",
  7086. "path": "system.reflection.primitives/4.3.0",
  7087. "files": [
  7088. ".nupkg.metadata",
  7089. ".signature.p7s",
  7090. "ThirdPartyNotices.txt",
  7091. "dotnet_library_license.txt",
  7092. "lib/MonoAndroid10/_._",
  7093. "lib/MonoTouch10/_._",
  7094. "lib/net45/_._",
  7095. "lib/portable-net45+win8+wp8+wpa81/_._",
  7096. "lib/win8/_._",
  7097. "lib/wp80/_._",
  7098. "lib/wpa81/_._",
  7099. "lib/xamarinios10/_._",
  7100. "lib/xamarinmac20/_._",
  7101. "lib/xamarintvos10/_._",
  7102. "lib/xamarinwatchos10/_._",
  7103. "ref/MonoAndroid10/_._",
  7104. "ref/MonoTouch10/_._",
  7105. "ref/net45/_._",
  7106. "ref/netcore50/System.Reflection.Primitives.dll",
  7107. "ref/netcore50/System.Reflection.Primitives.xml",
  7108. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7109. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7110. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7111. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7112. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7113. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7114. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7115. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7116. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7117. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7118. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7119. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7120. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7121. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7122. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7123. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7124. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7125. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7126. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7127. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7128. "ref/portable-net45+win8+wp8+wpa81/_._",
  7129. "ref/win8/_._",
  7130. "ref/wp80/_._",
  7131. "ref/wpa81/_._",
  7132. "ref/xamarinios10/_._",
  7133. "ref/xamarinmac20/_._",
  7134. "ref/xamarintvos10/_._",
  7135. "ref/xamarinwatchos10/_._",
  7136. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7137. "system.reflection.primitives.nuspec"
  7138. ]
  7139. },
  7140. "System.Reflection.TypeExtensions/4.3.0": {
  7141. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7142. "type": "package",
  7143. "path": "system.reflection.typeextensions/4.3.0",
  7144. "files": [
  7145. ".nupkg.metadata",
  7146. "ThirdPartyNotices.txt",
  7147. "dotnet_library_license.txt",
  7148. "lib/MonoAndroid10/_._",
  7149. "lib/MonoTouch10/_._",
  7150. "lib/net46/System.Reflection.TypeExtensions.dll",
  7151. "lib/net462/System.Reflection.TypeExtensions.dll",
  7152. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7153. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7154. "lib/xamarinios10/_._",
  7155. "lib/xamarinmac20/_._",
  7156. "lib/xamarintvos10/_._",
  7157. "lib/xamarinwatchos10/_._",
  7158. "ref/MonoAndroid10/_._",
  7159. "ref/MonoTouch10/_._",
  7160. "ref/net46/System.Reflection.TypeExtensions.dll",
  7161. "ref/net462/System.Reflection.TypeExtensions.dll",
  7162. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7163. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7164. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7165. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7166. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7167. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7168. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7169. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7170. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7171. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7172. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7173. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7174. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7175. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7176. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7177. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7178. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7179. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7180. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7181. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7182. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7183. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7184. "ref/xamarinios10/_._",
  7185. "ref/xamarinmac20/_._",
  7186. "ref/xamarintvos10/_._",
  7187. "ref/xamarinwatchos10/_._",
  7188. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7189. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7190. "system.reflection.typeextensions.nuspec"
  7191. ]
  7192. },
  7193. "System.Resources.ResourceManager/4.3.0": {
  7194. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7195. "type": "package",
  7196. "path": "system.resources.resourcemanager/4.3.0",
  7197. "files": [
  7198. ".nupkg.metadata",
  7199. ".signature.p7s",
  7200. "ThirdPartyNotices.txt",
  7201. "dotnet_library_license.txt",
  7202. "lib/MonoAndroid10/_._",
  7203. "lib/MonoTouch10/_._",
  7204. "lib/net45/_._",
  7205. "lib/portable-net45+win8+wp8+wpa81/_._",
  7206. "lib/win8/_._",
  7207. "lib/wp80/_._",
  7208. "lib/wpa81/_._",
  7209. "lib/xamarinios10/_._",
  7210. "lib/xamarinmac20/_._",
  7211. "lib/xamarintvos10/_._",
  7212. "lib/xamarinwatchos10/_._",
  7213. "ref/MonoAndroid10/_._",
  7214. "ref/MonoTouch10/_._",
  7215. "ref/net45/_._",
  7216. "ref/netcore50/System.Resources.ResourceManager.dll",
  7217. "ref/netcore50/System.Resources.ResourceManager.xml",
  7218. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7219. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7220. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7221. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7222. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7223. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7224. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7225. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7226. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7227. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7228. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7229. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7230. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7231. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7232. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7233. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7234. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7235. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7236. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7237. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7238. "ref/portable-net45+win8+wp8+wpa81/_._",
  7239. "ref/win8/_._",
  7240. "ref/wp80/_._",
  7241. "ref/wpa81/_._",
  7242. "ref/xamarinios10/_._",
  7243. "ref/xamarinmac20/_._",
  7244. "ref/xamarintvos10/_._",
  7245. "ref/xamarinwatchos10/_._",
  7246. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7247. "system.resources.resourcemanager.nuspec"
  7248. ]
  7249. },
  7250. "System.Runtime/4.3.0": {
  7251. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7252. "type": "package",
  7253. "path": "system.runtime/4.3.0",
  7254. "files": [
  7255. ".nupkg.metadata",
  7256. ".signature.p7s",
  7257. "ThirdPartyNotices.txt",
  7258. "dotnet_library_license.txt",
  7259. "lib/MonoAndroid10/_._",
  7260. "lib/MonoTouch10/_._",
  7261. "lib/net45/_._",
  7262. "lib/net462/System.Runtime.dll",
  7263. "lib/portable-net45+win8+wp80+wpa81/_._",
  7264. "lib/win8/_._",
  7265. "lib/wp80/_._",
  7266. "lib/wpa81/_._",
  7267. "lib/xamarinios10/_._",
  7268. "lib/xamarinmac20/_._",
  7269. "lib/xamarintvos10/_._",
  7270. "lib/xamarinwatchos10/_._",
  7271. "ref/MonoAndroid10/_._",
  7272. "ref/MonoTouch10/_._",
  7273. "ref/net45/_._",
  7274. "ref/net462/System.Runtime.dll",
  7275. "ref/netcore50/System.Runtime.dll",
  7276. "ref/netcore50/System.Runtime.xml",
  7277. "ref/netcore50/de/System.Runtime.xml",
  7278. "ref/netcore50/es/System.Runtime.xml",
  7279. "ref/netcore50/fr/System.Runtime.xml",
  7280. "ref/netcore50/it/System.Runtime.xml",
  7281. "ref/netcore50/ja/System.Runtime.xml",
  7282. "ref/netcore50/ko/System.Runtime.xml",
  7283. "ref/netcore50/ru/System.Runtime.xml",
  7284. "ref/netcore50/zh-hans/System.Runtime.xml",
  7285. "ref/netcore50/zh-hant/System.Runtime.xml",
  7286. "ref/netstandard1.0/System.Runtime.dll",
  7287. "ref/netstandard1.0/System.Runtime.xml",
  7288. "ref/netstandard1.0/de/System.Runtime.xml",
  7289. "ref/netstandard1.0/es/System.Runtime.xml",
  7290. "ref/netstandard1.0/fr/System.Runtime.xml",
  7291. "ref/netstandard1.0/it/System.Runtime.xml",
  7292. "ref/netstandard1.0/ja/System.Runtime.xml",
  7293. "ref/netstandard1.0/ko/System.Runtime.xml",
  7294. "ref/netstandard1.0/ru/System.Runtime.xml",
  7295. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7296. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7297. "ref/netstandard1.2/System.Runtime.dll",
  7298. "ref/netstandard1.2/System.Runtime.xml",
  7299. "ref/netstandard1.2/de/System.Runtime.xml",
  7300. "ref/netstandard1.2/es/System.Runtime.xml",
  7301. "ref/netstandard1.2/fr/System.Runtime.xml",
  7302. "ref/netstandard1.2/it/System.Runtime.xml",
  7303. "ref/netstandard1.2/ja/System.Runtime.xml",
  7304. "ref/netstandard1.2/ko/System.Runtime.xml",
  7305. "ref/netstandard1.2/ru/System.Runtime.xml",
  7306. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7307. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7308. "ref/netstandard1.3/System.Runtime.dll",
  7309. "ref/netstandard1.3/System.Runtime.xml",
  7310. "ref/netstandard1.3/de/System.Runtime.xml",
  7311. "ref/netstandard1.3/es/System.Runtime.xml",
  7312. "ref/netstandard1.3/fr/System.Runtime.xml",
  7313. "ref/netstandard1.3/it/System.Runtime.xml",
  7314. "ref/netstandard1.3/ja/System.Runtime.xml",
  7315. "ref/netstandard1.3/ko/System.Runtime.xml",
  7316. "ref/netstandard1.3/ru/System.Runtime.xml",
  7317. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7318. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7319. "ref/netstandard1.5/System.Runtime.dll",
  7320. "ref/netstandard1.5/System.Runtime.xml",
  7321. "ref/netstandard1.5/de/System.Runtime.xml",
  7322. "ref/netstandard1.5/es/System.Runtime.xml",
  7323. "ref/netstandard1.5/fr/System.Runtime.xml",
  7324. "ref/netstandard1.5/it/System.Runtime.xml",
  7325. "ref/netstandard1.5/ja/System.Runtime.xml",
  7326. "ref/netstandard1.5/ko/System.Runtime.xml",
  7327. "ref/netstandard1.5/ru/System.Runtime.xml",
  7328. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7329. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7330. "ref/portable-net45+win8+wp80+wpa81/_._",
  7331. "ref/win8/_._",
  7332. "ref/wp80/_._",
  7333. "ref/wpa81/_._",
  7334. "ref/xamarinios10/_._",
  7335. "ref/xamarinmac20/_._",
  7336. "ref/xamarintvos10/_._",
  7337. "ref/xamarinwatchos10/_._",
  7338. "system.runtime.4.3.0.nupkg.sha512",
  7339. "system.runtime.nuspec"
  7340. ]
  7341. },
  7342. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7343. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7344. "type": "package",
  7345. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7346. "files": [
  7347. ".nupkg.metadata",
  7348. ".signature.p7s",
  7349. "Icon.png",
  7350. "LICENSE.TXT",
  7351. "THIRD-PARTY-NOTICES.TXT",
  7352. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  7353. "buildTransitive/netcoreapp3.1/_._",
  7354. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7355. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7356. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  7357. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  7358. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  7359. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  7360. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7361. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7362. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  7363. "system.runtime.compilerservices.unsafe.nuspec",
  7364. "useSharedDesignerContext.txt"
  7365. ]
  7366. },
  7367. "System.Runtime.Extensions/4.3.0": {
  7368. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7369. "type": "package",
  7370. "path": "system.runtime.extensions/4.3.0",
  7371. "files": [
  7372. ".nupkg.metadata",
  7373. ".signature.p7s",
  7374. "ThirdPartyNotices.txt",
  7375. "dotnet_library_license.txt",
  7376. "lib/MonoAndroid10/_._",
  7377. "lib/MonoTouch10/_._",
  7378. "lib/net45/_._",
  7379. "lib/net462/System.Runtime.Extensions.dll",
  7380. "lib/portable-net45+win8+wp8+wpa81/_._",
  7381. "lib/win8/_._",
  7382. "lib/wp80/_._",
  7383. "lib/wpa81/_._",
  7384. "lib/xamarinios10/_._",
  7385. "lib/xamarinmac20/_._",
  7386. "lib/xamarintvos10/_._",
  7387. "lib/xamarinwatchos10/_._",
  7388. "ref/MonoAndroid10/_._",
  7389. "ref/MonoTouch10/_._",
  7390. "ref/net45/_._",
  7391. "ref/net462/System.Runtime.Extensions.dll",
  7392. "ref/netcore50/System.Runtime.Extensions.dll",
  7393. "ref/netcore50/System.Runtime.Extensions.xml",
  7394. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7395. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7396. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7397. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7398. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7399. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7400. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7401. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7402. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7403. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7404. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7405. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7406. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7407. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7408. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7409. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7410. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7411. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7412. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7413. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7414. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7415. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7416. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7417. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7418. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7419. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7420. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7421. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7422. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7423. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7424. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7425. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7426. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7427. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7428. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7429. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7430. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7431. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7432. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7433. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7434. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7435. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7436. "ref/portable-net45+win8+wp8+wpa81/_._",
  7437. "ref/win8/_._",
  7438. "ref/wp80/_._",
  7439. "ref/wpa81/_._",
  7440. "ref/xamarinios10/_._",
  7441. "ref/xamarinmac20/_._",
  7442. "ref/xamarintvos10/_._",
  7443. "ref/xamarinwatchos10/_._",
  7444. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7445. "system.runtime.extensions.nuspec"
  7446. ]
  7447. },
  7448. "System.Runtime.Loader/4.3.0": {
  7449. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  7450. "type": "package",
  7451. "path": "system.runtime.loader/4.3.0",
  7452. "files": [
  7453. ".nupkg.metadata",
  7454. ".signature.p7s",
  7455. "ThirdPartyNotices.txt",
  7456. "dotnet_library_license.txt",
  7457. "lib/MonoAndroid10/_._",
  7458. "lib/MonoTouch10/_._",
  7459. "lib/net462/_._",
  7460. "lib/netstandard1.5/System.Runtime.Loader.dll",
  7461. "lib/xamarinios10/_._",
  7462. "lib/xamarinmac20/_._",
  7463. "lib/xamarintvos10/_._",
  7464. "lib/xamarinwatchos10/_._",
  7465. "ref/netstandard1.5/System.Runtime.Loader.dll",
  7466. "ref/netstandard1.5/System.Runtime.Loader.xml",
  7467. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  7468. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  7469. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  7470. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  7471. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  7472. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  7473. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  7474. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  7475. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  7476. "system.runtime.loader.4.3.0.nupkg.sha512",
  7477. "system.runtime.loader.nuspec"
  7478. ]
  7479. },
  7480. "System.Security.AccessControl/6.0.0": {
  7481. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  7482. "type": "package",
  7483. "path": "system.security.accesscontrol/6.0.0",
  7484. "files": [
  7485. ".nupkg.metadata",
  7486. ".signature.p7s",
  7487. "Icon.png",
  7488. "LICENSE.TXT",
  7489. "THIRD-PARTY-NOTICES.TXT",
  7490. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  7491. "buildTransitive/netcoreapp3.1/_._",
  7492. "lib/net461/System.Security.AccessControl.dll",
  7493. "lib/net461/System.Security.AccessControl.xml",
  7494. "lib/net6.0/System.Security.AccessControl.dll",
  7495. "lib/net6.0/System.Security.AccessControl.xml",
  7496. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7497. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7498. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7499. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7500. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  7501. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  7502. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  7503. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  7504. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  7505. "system.security.accesscontrol.nuspec",
  7506. "useSharedDesignerContext.txt"
  7507. ]
  7508. },
  7509. "System.Security.Cryptography.Cng/4.5.0": {
  7510. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  7511. "type": "package",
  7512. "path": "system.security.cryptography.cng/4.5.0",
  7513. "files": [
  7514. ".nupkg.metadata",
  7515. ".signature.p7s",
  7516. "LICENSE.TXT",
  7517. "THIRD-PARTY-NOTICES.TXT",
  7518. "lib/MonoAndroid10/_._",
  7519. "lib/MonoTouch10/_._",
  7520. "lib/net46/System.Security.Cryptography.Cng.dll",
  7521. "lib/net461/System.Security.Cryptography.Cng.dll",
  7522. "lib/net462/System.Security.Cryptography.Cng.dll",
  7523. "lib/net47/System.Security.Cryptography.Cng.dll",
  7524. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7525. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7526. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7527. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7528. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7529. "lib/uap10.0.16299/_._",
  7530. "lib/xamarinios10/_._",
  7531. "lib/xamarinmac20/_._",
  7532. "lib/xamarintvos10/_._",
  7533. "lib/xamarinwatchos10/_._",
  7534. "ref/MonoAndroid10/_._",
  7535. "ref/MonoTouch10/_._",
  7536. "ref/net46/System.Security.Cryptography.Cng.dll",
  7537. "ref/net461/System.Security.Cryptography.Cng.dll",
  7538. "ref/net461/System.Security.Cryptography.Cng.xml",
  7539. "ref/net462/System.Security.Cryptography.Cng.dll",
  7540. "ref/net462/System.Security.Cryptography.Cng.xml",
  7541. "ref/net47/System.Security.Cryptography.Cng.dll",
  7542. "ref/net47/System.Security.Cryptography.Cng.xml",
  7543. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7544. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7545. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7546. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7547. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7548. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7549. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7550. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7551. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7552. "ref/uap10.0.16299/_._",
  7553. "ref/xamarinios10/_._",
  7554. "ref/xamarinmac20/_._",
  7555. "ref/xamarintvos10/_._",
  7556. "ref/xamarinwatchos10/_._",
  7557. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7558. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7559. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7560. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7561. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7562. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7563. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7564. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7565. "runtimes/win/lib/uap10.0.16299/_._",
  7566. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  7567. "system.security.cryptography.cng.nuspec",
  7568. "useSharedDesignerContext.txt",
  7569. "version.txt"
  7570. ]
  7571. },
  7572. "System.Security.Cryptography.Pkcs/6.0.0": {
  7573. "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==",
  7574. "type": "package",
  7575. "path": "system.security.cryptography.pkcs/6.0.0",
  7576. "files": [
  7577. ".nupkg.metadata",
  7578. ".signature.p7s",
  7579. "Icon.png",
  7580. "LICENSE.TXT",
  7581. "THIRD-PARTY-NOTICES.TXT",
  7582. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  7583. "buildTransitive/netcoreapp3.1/_._",
  7584. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  7585. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  7586. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  7587. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  7588. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  7589. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  7590. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7591. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7592. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7593. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7594. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  7595. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  7596. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  7597. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  7598. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  7599. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  7600. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7601. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7602. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7603. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7604. "system.security.cryptography.pkcs.6.0.0.nupkg.sha512",
  7605. "system.security.cryptography.pkcs.nuspec",
  7606. "useSharedDesignerContext.txt"
  7607. ]
  7608. },
  7609. "System.Security.Cryptography.ProtectedData/5.0.0": {
  7610. "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
  7611. "type": "package",
  7612. "path": "system.security.cryptography.protecteddata/5.0.0",
  7613. "files": [
  7614. ".nupkg.metadata",
  7615. ".signature.p7s",
  7616. "Icon.png",
  7617. "LICENSE.TXT",
  7618. "THIRD-PARTY-NOTICES.TXT",
  7619. "lib/MonoAndroid10/_._",
  7620. "lib/MonoTouch10/_._",
  7621. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7622. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7623. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7624. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7625. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7626. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7627. "lib/xamarinios10/_._",
  7628. "lib/xamarinmac20/_._",
  7629. "lib/xamarintvos10/_._",
  7630. "lib/xamarinwatchos10/_._",
  7631. "ref/MonoAndroid10/_._",
  7632. "ref/MonoTouch10/_._",
  7633. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7634. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7635. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7636. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7637. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7638. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7639. "ref/xamarinios10/_._",
  7640. "ref/xamarinmac20/_._",
  7641. "ref/xamarintvos10/_._",
  7642. "ref/xamarinwatchos10/_._",
  7643. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7644. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7645. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7646. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7647. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7648. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7649. "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512",
  7650. "system.security.cryptography.protecteddata.nuspec",
  7651. "useSharedDesignerContext.txt",
  7652. "version.txt"
  7653. ]
  7654. },
  7655. "System.Security.Cryptography.Xml/6.0.0": {
  7656. "sha512": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==",
  7657. "type": "package",
  7658. "path": "system.security.cryptography.xml/6.0.0",
  7659. "files": [
  7660. ".nupkg.metadata",
  7661. ".signature.p7s",
  7662. "Icon.png",
  7663. "LICENSE.TXT",
  7664. "THIRD-PARTY-NOTICES.TXT",
  7665. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
  7666. "buildTransitive/netcoreapp3.1/_._",
  7667. "lib/net461/System.Security.Cryptography.Xml.dll",
  7668. "lib/net461/System.Security.Cryptography.Xml.xml",
  7669. "lib/net6.0/System.Security.Cryptography.Xml.dll",
  7670. "lib/net6.0/System.Security.Cryptography.Xml.xml",
  7671. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  7672. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  7673. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll",
  7674. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml",
  7675. "system.security.cryptography.xml.6.0.0.nupkg.sha512",
  7676. "system.security.cryptography.xml.nuspec",
  7677. "useSharedDesignerContext.txt"
  7678. ]
  7679. },
  7680. "System.Security.Permissions/5.0.0": {
  7681. "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
  7682. "type": "package",
  7683. "path": "system.security.permissions/5.0.0",
  7684. "files": [
  7685. ".nupkg.metadata",
  7686. ".signature.p7s",
  7687. "Icon.png",
  7688. "LICENSE.TXT",
  7689. "THIRD-PARTY-NOTICES.TXT",
  7690. "lib/net461/System.Security.Permissions.dll",
  7691. "lib/net461/System.Security.Permissions.xml",
  7692. "lib/net5.0/System.Security.Permissions.dll",
  7693. "lib/net5.0/System.Security.Permissions.xml",
  7694. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  7695. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  7696. "lib/netstandard2.0/System.Security.Permissions.dll",
  7697. "lib/netstandard2.0/System.Security.Permissions.xml",
  7698. "ref/net461/System.Security.Permissions.dll",
  7699. "ref/net461/System.Security.Permissions.xml",
  7700. "ref/net5.0/System.Security.Permissions.dll",
  7701. "ref/net5.0/System.Security.Permissions.xml",
  7702. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  7703. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  7704. "ref/netstandard2.0/System.Security.Permissions.dll",
  7705. "ref/netstandard2.0/System.Security.Permissions.xml",
  7706. "system.security.permissions.5.0.0.nupkg.sha512",
  7707. "system.security.permissions.nuspec",
  7708. "useSharedDesignerContext.txt",
  7709. "version.txt"
  7710. ]
  7711. },
  7712. "System.Security.Principal.Windows/5.0.0": {
  7713. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7714. "type": "package",
  7715. "path": "system.security.principal.windows/5.0.0",
  7716. "files": [
  7717. ".nupkg.metadata",
  7718. ".signature.p7s",
  7719. "Icon.png",
  7720. "LICENSE.TXT",
  7721. "THIRD-PARTY-NOTICES.TXT",
  7722. "lib/net46/System.Security.Principal.Windows.dll",
  7723. "lib/net461/System.Security.Principal.Windows.dll",
  7724. "lib/net461/System.Security.Principal.Windows.xml",
  7725. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7726. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7727. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7728. "lib/uap10.0.16299/_._",
  7729. "ref/net46/System.Security.Principal.Windows.dll",
  7730. "ref/net461/System.Security.Principal.Windows.dll",
  7731. "ref/net461/System.Security.Principal.Windows.xml",
  7732. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7733. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7734. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7735. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7736. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7737. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7738. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7739. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7740. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7741. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7742. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7743. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7744. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7745. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7746. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7747. "ref/uap10.0.16299/_._",
  7748. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7749. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7750. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7751. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7752. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7753. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7754. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7755. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7756. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7757. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7758. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7759. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7760. "runtimes/win/lib/uap10.0.16299/_._",
  7761. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7762. "system.security.principal.windows.nuspec",
  7763. "useSharedDesignerContext.txt",
  7764. "version.txt"
  7765. ]
  7766. },
  7767. "System.Text.Encoding/4.3.0": {
  7768. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7769. "type": "package",
  7770. "path": "system.text.encoding/4.3.0",
  7771. "files": [
  7772. ".nupkg.metadata",
  7773. ".signature.p7s",
  7774. "ThirdPartyNotices.txt",
  7775. "dotnet_library_license.txt",
  7776. "lib/MonoAndroid10/_._",
  7777. "lib/MonoTouch10/_._",
  7778. "lib/net45/_._",
  7779. "lib/portable-net45+win8+wp8+wpa81/_._",
  7780. "lib/win8/_._",
  7781. "lib/wp80/_._",
  7782. "lib/wpa81/_._",
  7783. "lib/xamarinios10/_._",
  7784. "lib/xamarinmac20/_._",
  7785. "lib/xamarintvos10/_._",
  7786. "lib/xamarinwatchos10/_._",
  7787. "ref/MonoAndroid10/_._",
  7788. "ref/MonoTouch10/_._",
  7789. "ref/net45/_._",
  7790. "ref/netcore50/System.Text.Encoding.dll",
  7791. "ref/netcore50/System.Text.Encoding.xml",
  7792. "ref/netcore50/de/System.Text.Encoding.xml",
  7793. "ref/netcore50/es/System.Text.Encoding.xml",
  7794. "ref/netcore50/fr/System.Text.Encoding.xml",
  7795. "ref/netcore50/it/System.Text.Encoding.xml",
  7796. "ref/netcore50/ja/System.Text.Encoding.xml",
  7797. "ref/netcore50/ko/System.Text.Encoding.xml",
  7798. "ref/netcore50/ru/System.Text.Encoding.xml",
  7799. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7800. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7801. "ref/netstandard1.0/System.Text.Encoding.dll",
  7802. "ref/netstandard1.0/System.Text.Encoding.xml",
  7803. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7804. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7805. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7806. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7807. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7808. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7809. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7810. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7811. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7812. "ref/netstandard1.3/System.Text.Encoding.dll",
  7813. "ref/netstandard1.3/System.Text.Encoding.xml",
  7814. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7815. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7816. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7817. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7818. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7819. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7820. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7821. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7822. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7823. "ref/portable-net45+win8+wp8+wpa81/_._",
  7824. "ref/win8/_._",
  7825. "ref/wp80/_._",
  7826. "ref/wpa81/_._",
  7827. "ref/xamarinios10/_._",
  7828. "ref/xamarinmac20/_._",
  7829. "ref/xamarintvos10/_._",
  7830. "ref/xamarinwatchos10/_._",
  7831. "system.text.encoding.4.3.0.nupkg.sha512",
  7832. "system.text.encoding.nuspec"
  7833. ]
  7834. },
  7835. "System.Text.Encoding.CodePages/4.5.1": {
  7836. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  7837. "type": "package",
  7838. "path": "system.text.encoding.codepages/4.5.1",
  7839. "files": [
  7840. ".nupkg.metadata",
  7841. ".signature.p7s",
  7842. "LICENSE.TXT",
  7843. "THIRD-PARTY-NOTICES.TXT",
  7844. "lib/MonoAndroid10/_._",
  7845. "lib/MonoTouch10/_._",
  7846. "lib/net46/System.Text.Encoding.CodePages.dll",
  7847. "lib/net461/System.Text.Encoding.CodePages.dll",
  7848. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7849. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7850. "lib/xamarinios10/_._",
  7851. "lib/xamarinmac20/_._",
  7852. "lib/xamarintvos10/_._",
  7853. "lib/xamarinwatchos10/_._",
  7854. "ref/MonoAndroid10/_._",
  7855. "ref/MonoTouch10/_._",
  7856. "ref/xamarinios10/_._",
  7857. "ref/xamarinmac20/_._",
  7858. "ref/xamarintvos10/_._",
  7859. "ref/xamarinwatchos10/_._",
  7860. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7861. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7862. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7863. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7864. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  7865. "system.text.encoding.codepages.nuspec",
  7866. "useSharedDesignerContext.txt",
  7867. "version.txt"
  7868. ]
  7869. },
  7870. "System.Text.Encodings.Web/6.0.0": {
  7871. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  7872. "type": "package",
  7873. "path": "system.text.encodings.web/6.0.0",
  7874. "files": [
  7875. ".nupkg.metadata",
  7876. ".signature.p7s",
  7877. "Icon.png",
  7878. "LICENSE.TXT",
  7879. "THIRD-PARTY-NOTICES.TXT",
  7880. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  7881. "buildTransitive/netcoreapp3.1/_._",
  7882. "lib/net461/System.Text.Encodings.Web.dll",
  7883. "lib/net461/System.Text.Encodings.Web.xml",
  7884. "lib/net6.0/System.Text.Encodings.Web.dll",
  7885. "lib/net6.0/System.Text.Encodings.Web.xml",
  7886. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  7887. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  7888. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7889. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7890. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  7891. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  7892. "system.text.encodings.web.6.0.0.nupkg.sha512",
  7893. "system.text.encodings.web.nuspec",
  7894. "useSharedDesignerContext.txt"
  7895. ]
  7896. },
  7897. "System.Text.Json/6.0.0": {
  7898. "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
  7899. "type": "package",
  7900. "path": "system.text.json/6.0.0",
  7901. "files": [
  7902. ".nupkg.metadata",
  7903. ".signature.p7s",
  7904. "Icon.png",
  7905. "LICENSE.TXT",
  7906. "THIRD-PARTY-NOTICES.TXT",
  7907. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  7908. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7909. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7910. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7911. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7912. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  7913. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  7914. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  7915. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  7916. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  7917. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  7918. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  7919. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  7920. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  7921. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  7922. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7923. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7924. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7925. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7926. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  7927. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  7928. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  7929. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  7930. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  7931. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  7932. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  7933. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  7934. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  7935. "build/System.Text.Json.targets",
  7936. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  7937. "buildTransitive/netcoreapp3.1/_._",
  7938. "lib/net461/System.Text.Json.dll",
  7939. "lib/net461/System.Text.Json.xml",
  7940. "lib/net6.0/System.Text.Json.dll",
  7941. "lib/net6.0/System.Text.Json.xml",
  7942. "lib/netcoreapp3.1/System.Text.Json.dll",
  7943. "lib/netcoreapp3.1/System.Text.Json.xml",
  7944. "lib/netstandard2.0/System.Text.Json.dll",
  7945. "lib/netstandard2.0/System.Text.Json.xml",
  7946. "system.text.json.6.0.0.nupkg.sha512",
  7947. "system.text.json.nuspec",
  7948. "useSharedDesignerContext.txt"
  7949. ]
  7950. },
  7951. "System.Threading/4.3.0": {
  7952. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7953. "type": "package",
  7954. "path": "system.threading/4.3.0",
  7955. "files": [
  7956. ".nupkg.metadata",
  7957. ".signature.p7s",
  7958. "ThirdPartyNotices.txt",
  7959. "dotnet_library_license.txt",
  7960. "lib/MonoAndroid10/_._",
  7961. "lib/MonoTouch10/_._",
  7962. "lib/net45/_._",
  7963. "lib/netcore50/System.Threading.dll",
  7964. "lib/netstandard1.3/System.Threading.dll",
  7965. "lib/portable-net45+win8+wp8+wpa81/_._",
  7966. "lib/win8/_._",
  7967. "lib/wp80/_._",
  7968. "lib/wpa81/_._",
  7969. "lib/xamarinios10/_._",
  7970. "lib/xamarinmac20/_._",
  7971. "lib/xamarintvos10/_._",
  7972. "lib/xamarinwatchos10/_._",
  7973. "ref/MonoAndroid10/_._",
  7974. "ref/MonoTouch10/_._",
  7975. "ref/net45/_._",
  7976. "ref/netcore50/System.Threading.dll",
  7977. "ref/netcore50/System.Threading.xml",
  7978. "ref/netcore50/de/System.Threading.xml",
  7979. "ref/netcore50/es/System.Threading.xml",
  7980. "ref/netcore50/fr/System.Threading.xml",
  7981. "ref/netcore50/it/System.Threading.xml",
  7982. "ref/netcore50/ja/System.Threading.xml",
  7983. "ref/netcore50/ko/System.Threading.xml",
  7984. "ref/netcore50/ru/System.Threading.xml",
  7985. "ref/netcore50/zh-hans/System.Threading.xml",
  7986. "ref/netcore50/zh-hant/System.Threading.xml",
  7987. "ref/netstandard1.0/System.Threading.dll",
  7988. "ref/netstandard1.0/System.Threading.xml",
  7989. "ref/netstandard1.0/de/System.Threading.xml",
  7990. "ref/netstandard1.0/es/System.Threading.xml",
  7991. "ref/netstandard1.0/fr/System.Threading.xml",
  7992. "ref/netstandard1.0/it/System.Threading.xml",
  7993. "ref/netstandard1.0/ja/System.Threading.xml",
  7994. "ref/netstandard1.0/ko/System.Threading.xml",
  7995. "ref/netstandard1.0/ru/System.Threading.xml",
  7996. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7997. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7998. "ref/netstandard1.3/System.Threading.dll",
  7999. "ref/netstandard1.3/System.Threading.xml",
  8000. "ref/netstandard1.3/de/System.Threading.xml",
  8001. "ref/netstandard1.3/es/System.Threading.xml",
  8002. "ref/netstandard1.3/fr/System.Threading.xml",
  8003. "ref/netstandard1.3/it/System.Threading.xml",
  8004. "ref/netstandard1.3/ja/System.Threading.xml",
  8005. "ref/netstandard1.3/ko/System.Threading.xml",
  8006. "ref/netstandard1.3/ru/System.Threading.xml",
  8007. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8008. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8009. "ref/portable-net45+win8+wp8+wpa81/_._",
  8010. "ref/win8/_._",
  8011. "ref/wp80/_._",
  8012. "ref/wpa81/_._",
  8013. "ref/xamarinios10/_._",
  8014. "ref/xamarinmac20/_._",
  8015. "ref/xamarintvos10/_._",
  8016. "ref/xamarinwatchos10/_._",
  8017. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8018. "system.threading.4.3.0.nupkg.sha512",
  8019. "system.threading.nuspec"
  8020. ]
  8021. },
  8022. "System.Threading.Tasks/4.3.0": {
  8023. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8024. "type": "package",
  8025. "path": "system.threading.tasks/4.3.0",
  8026. "files": [
  8027. ".nupkg.metadata",
  8028. ".signature.p7s",
  8029. "ThirdPartyNotices.txt",
  8030. "dotnet_library_license.txt",
  8031. "lib/MonoAndroid10/_._",
  8032. "lib/MonoTouch10/_._",
  8033. "lib/net45/_._",
  8034. "lib/portable-net45+win8+wp8+wpa81/_._",
  8035. "lib/win8/_._",
  8036. "lib/wp80/_._",
  8037. "lib/wpa81/_._",
  8038. "lib/xamarinios10/_._",
  8039. "lib/xamarinmac20/_._",
  8040. "lib/xamarintvos10/_._",
  8041. "lib/xamarinwatchos10/_._",
  8042. "ref/MonoAndroid10/_._",
  8043. "ref/MonoTouch10/_._",
  8044. "ref/net45/_._",
  8045. "ref/netcore50/System.Threading.Tasks.dll",
  8046. "ref/netcore50/System.Threading.Tasks.xml",
  8047. "ref/netcore50/de/System.Threading.Tasks.xml",
  8048. "ref/netcore50/es/System.Threading.Tasks.xml",
  8049. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8050. "ref/netcore50/it/System.Threading.Tasks.xml",
  8051. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8052. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8053. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8054. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8055. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8056. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8057. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8058. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8059. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8060. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8061. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8062. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8063. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8064. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8065. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8066. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8067. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8068. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8069. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8070. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8071. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8072. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8073. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8074. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8075. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8076. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8077. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8078. "ref/portable-net45+win8+wp8+wpa81/_._",
  8079. "ref/win8/_._",
  8080. "ref/wp80/_._",
  8081. "ref/wpa81/_._",
  8082. "ref/xamarinios10/_._",
  8083. "ref/xamarinmac20/_._",
  8084. "ref/xamarintvos10/_._",
  8085. "ref/xamarinwatchos10/_._",
  8086. "system.threading.tasks.4.3.0.nupkg.sha512",
  8087. "system.threading.tasks.nuspec"
  8088. ]
  8089. },
  8090. "System.Threading.Tasks.Extensions/4.5.4": {
  8091. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  8092. "type": "package",
  8093. "path": "system.threading.tasks.extensions/4.5.4",
  8094. "files": [
  8095. ".nupkg.metadata",
  8096. ".signature.p7s",
  8097. "LICENSE.TXT",
  8098. "THIRD-PARTY-NOTICES.TXT",
  8099. "lib/MonoAndroid10/_._",
  8100. "lib/MonoTouch10/_._",
  8101. "lib/net461/System.Threading.Tasks.Extensions.dll",
  8102. "lib/net461/System.Threading.Tasks.Extensions.xml",
  8103. "lib/netcoreapp2.1/_._",
  8104. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8105. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8106. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8107. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8108. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8109. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8110. "lib/xamarinios10/_._",
  8111. "lib/xamarinmac20/_._",
  8112. "lib/xamarintvos10/_._",
  8113. "lib/xamarinwatchos10/_._",
  8114. "ref/MonoAndroid10/_._",
  8115. "ref/MonoTouch10/_._",
  8116. "ref/netcoreapp2.1/_._",
  8117. "ref/xamarinios10/_._",
  8118. "ref/xamarinmac20/_._",
  8119. "ref/xamarintvos10/_._",
  8120. "ref/xamarinwatchos10/_._",
  8121. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  8122. "system.threading.tasks.extensions.nuspec",
  8123. "useSharedDesignerContext.txt",
  8124. "version.txt"
  8125. ]
  8126. },
  8127. "System.Windows.Extensions/5.0.0": {
  8128. "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
  8129. "type": "package",
  8130. "path": "system.windows.extensions/5.0.0",
  8131. "files": [
  8132. ".nupkg.metadata",
  8133. ".signature.p7s",
  8134. "Icon.png",
  8135. "LICENSE.TXT",
  8136. "THIRD-PARTY-NOTICES.TXT",
  8137. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8138. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8139. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8140. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8141. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8142. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8143. "system.windows.extensions.5.0.0.nupkg.sha512",
  8144. "system.windows.extensions.nuspec",
  8145. "useSharedDesignerContext.txt",
  8146. "version.txt"
  8147. ]
  8148. },
  8149. "TimeZoneConverter/5.0.0": {
  8150. "sha512": "U7Oilf3Ya6Rmu6gOaBfWyT3q0kwy2av6a5PfTn05CF54C+7DvuLsE3ljASvYmCpsSQeJvpnqU5Uzag6+ysWUeA==",
  8151. "type": "package",
  8152. "path": "timezoneconverter/5.0.0",
  8153. "files": [
  8154. ".nupkg.metadata",
  8155. ".signature.p7s",
  8156. "lib/net461/TimeZoneConverter.dll",
  8157. "lib/net461/TimeZoneConverter.xml",
  8158. "lib/netstandard2.0/TimeZoneConverter.dll",
  8159. "lib/netstandard2.0/TimeZoneConverter.xml",
  8160. "timezoneconverter.5.0.0.nupkg.sha512",
  8161. "timezoneconverter.nuspec"
  8162. ]
  8163. },
  8164. "Volo.Abp.ApiVersioning.Abstractions/6.0.0": {
  8165. "sha512": "4iPDUzQxBHHtOHQFa9+QVTk7OHbl1BBU0B3D0TAt9JOY0Y6pFl+qnc5Ce+vDyT+aQIHnueT7B1I7v/OYYiXb8A==",
  8166. "type": "package",
  8167. "path": "volo.abp.apiversioning.abstractions/6.0.0",
  8168. "files": [
  8169. ".nupkg.metadata",
  8170. ".signature.p7s",
  8171. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll",
  8172. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.pdb",
  8173. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.xml",
  8174. "volo.abp.apiversioning.abstractions.6.0.0.nupkg.sha512",
  8175. "volo.abp.apiversioning.abstractions.nuspec"
  8176. ]
  8177. },
  8178. "Volo.Abp.AspNetCore/6.0.0": {
  8179. "sha512": "/HnGtg8RszGpURnfTOvm5EoiA8FTPgKOCHn3+jfrEq6Cw/UJOySfW3n1f1aWivMmHWX8caZQiIub7TeovMGRng==",
  8180. "type": "package",
  8181. "path": "volo.abp.aspnetcore/6.0.0",
  8182. "files": [
  8183. ".nupkg.metadata",
  8184. ".signature.p7s",
  8185. "lib/net6.0/Volo.Abp.AspNetCore.dll",
  8186. "lib/net6.0/Volo.Abp.AspNetCore.pdb",
  8187. "lib/net6.0/Volo.Abp.AspNetCore.xml",
  8188. "volo.abp.aspnetcore.6.0.0.nupkg.sha512",
  8189. "volo.abp.aspnetcore.nuspec"
  8190. ]
  8191. },
  8192. "Volo.Abp.AspNetCore.MultiTenancy/6.0.0": {
  8193. "sha512": "6dLE9E15aiILff9/e+ypqiTccz10WjnFjA/hdQMaKvs29+xEChEUv0E5o/wBy4S+LcVJJwN0zvuHSOwHH7lQHg==",
  8194. "type": "package",
  8195. "path": "volo.abp.aspnetcore.multitenancy/6.0.0",
  8196. "files": [
  8197. ".nupkg.metadata",
  8198. ".signature.p7s",
  8199. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll",
  8200. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.pdb",
  8201. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.xml",
  8202. "volo.abp.aspnetcore.multitenancy.6.0.0.nupkg.sha512",
  8203. "volo.abp.aspnetcore.multitenancy.nuspec"
  8204. ]
  8205. },
  8206. "Volo.Abp.AspNetCore.Mvc/6.0.0": {
  8207. "sha512": "p6Ldko6b06RZKbvEVYZe2DxvBuaUWOmmQXQ2oqHwACJ8qfiTtC5oyjV06rtCAyqWvd2hZkyce7KxHDu8sp3RFg==",
  8208. "type": "package",
  8209. "path": "volo.abp.aspnetcore.mvc/6.0.0",
  8210. "files": [
  8211. ".nupkg.metadata",
  8212. ".signature.p7s",
  8213. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll",
  8214. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.pdb",
  8215. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.xml",
  8216. "volo.abp.aspnetcore.mvc.6.0.0.nupkg.sha512",
  8217. "volo.abp.aspnetcore.mvc.nuspec"
  8218. ]
  8219. },
  8220. "Volo.Abp.AspNetCore.Mvc.Contracts/6.0.0": {
  8221. "sha512": "cslFlSen58M6m33HwoIHgSffACX9eKhOS5/c9phCN1ZnCoXLd92jzpYrwRdaSPw5SabTmyTgA0Y8/SeEMW0vsg==",
  8222. "type": "package",
  8223. "path": "volo.abp.aspnetcore.mvc.contracts/6.0.0",
  8224. "files": [
  8225. ".nupkg.metadata",
  8226. ".signature.p7s",
  8227. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll",
  8228. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.pdb",
  8229. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.xml",
  8230. "volo.abp.aspnetcore.mvc.contracts.6.0.0.nupkg.sha512",
  8231. "volo.abp.aspnetcore.mvc.contracts.nuspec"
  8232. ]
  8233. },
  8234. "Volo.Abp.AspNetCore.Serilog/6.0.0": {
  8235. "sha512": "n8Uz0JKfDjuMEoV+1s7vmjWOafVP3n9W/SyZdsvhmpTbZMscjOxJ64xeHbB7UyVfAW87oMRj1u3gHhrtLv/DZQ==",
  8236. "type": "package",
  8237. "path": "volo.abp.aspnetcore.serilog/6.0.0",
  8238. "files": [
  8239. ".nupkg.metadata",
  8240. ".signature.p7s",
  8241. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll",
  8242. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.pdb",
  8243. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.xml",
  8244. "volo.abp.aspnetcore.serilog.6.0.0.nupkg.sha512",
  8245. "volo.abp.aspnetcore.serilog.nuspec"
  8246. ]
  8247. },
  8248. "Volo.Abp.Auditing/6.0.2": {
  8249. "sha512": "2vkUSnsKYa291+S8l/XPytd3z8eHJ3/3W4jGOliWs5cSiwR8evieJ6jrn4vvlebydOrjEL+t2hQraJKyyj5J6Q==",
  8250. "type": "package",
  8251. "path": "volo.abp.auditing/6.0.2",
  8252. "files": [
  8253. ".nupkg.metadata",
  8254. ".signature.p7s",
  8255. "lib/netstandard2.0/Volo.Abp.Auditing.dll",
  8256. "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
  8257. "lib/netstandard2.0/Volo.Abp.Auditing.xml",
  8258. "volo.abp.auditing.6.0.2.nupkg.sha512",
  8259. "volo.abp.auditing.nuspec"
  8260. ]
  8261. },
  8262. "Volo.Abp.Auditing.Contracts/6.0.2": {
  8263. "sha512": "TNnCpKhIx2052j82Z3hgEpcoE1GQ0/4+NwJog5p7ntTw4T9vkN2zsepIKBxDOpVtAkhrF14p4sHORYMz1Cd0eg==",
  8264. "type": "package",
  8265. "path": "volo.abp.auditing.contracts/6.0.2",
  8266. "files": [
  8267. ".nupkg.metadata",
  8268. ".signature.p7s",
  8269. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll",
  8270. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.pdb",
  8271. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.xml",
  8272. "volo.abp.auditing.contracts.6.0.2.nupkg.sha512",
  8273. "volo.abp.auditing.contracts.nuspec"
  8274. ]
  8275. },
  8276. "Volo.Abp.Authorization/6.0.0": {
  8277. "sha512": "+ktQSujPTlA96lw8ih/iTTmncJXX3f1kTWsEWtjfmI0N3HeiVl2NFLk9g51PxHYuqOpbZpyt4y5498Q8OSpLWw==",
  8278. "type": "package",
  8279. "path": "volo.abp.authorization/6.0.0",
  8280. "files": [
  8281. ".nupkg.metadata",
  8282. ".signature.p7s",
  8283. "lib/netstandard2.0/Volo.Abp.Authorization.dll",
  8284. "lib/netstandard2.0/Volo.Abp.Authorization.pdb",
  8285. "lib/netstandard2.0/Volo.Abp.Authorization.xml",
  8286. "volo.abp.authorization.6.0.0.nupkg.sha512",
  8287. "volo.abp.authorization.nuspec"
  8288. ]
  8289. },
  8290. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  8291. "sha512": "46NIPtnfHGPX12b79kp4uLnCI+zyybD3p1pIGBlpsdlSiNrGiMys5hnar8C7z8zv14I3SUaTeaQAS8hA3JoHxA==",
  8292. "type": "package",
  8293. "path": "volo.abp.authorization.abstractions/6.0.0",
  8294. "files": [
  8295. ".nupkg.metadata",
  8296. ".signature.p7s",
  8297. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll",
  8298. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.pdb",
  8299. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.xml",
  8300. "volo.abp.authorization.abstractions.6.0.0.nupkg.sha512",
  8301. "volo.abp.authorization.abstractions.nuspec"
  8302. ]
  8303. },
  8304. "Volo.Abp.Autofac/6.0.0": {
  8305. "sha512": "F420kKNfTd2sg901bmDJM4moesADvn7qlVYN75eoODuYD3ur9PCKNrgdzJDl5dbpcoylQaagv6j6jZZREO/ycA==",
  8306. "type": "package",
  8307. "path": "volo.abp.autofac/6.0.0",
  8308. "files": [
  8309. ".nupkg.metadata",
  8310. ".signature.p7s",
  8311. "lib/netstandard2.0/Volo.Abp.Autofac.dll",
  8312. "lib/netstandard2.0/Volo.Abp.Autofac.pdb",
  8313. "lib/netstandard2.0/Volo.Abp.Autofac.xml",
  8314. "volo.abp.autofac.6.0.0.nupkg.sha512",
  8315. "volo.abp.autofac.nuspec"
  8316. ]
  8317. },
  8318. "Volo.Abp.AutoMapper/6.0.0": {
  8319. "sha512": "Vl10LTYky3bCPOBxi+EbHAi0ip5IzXFysMFDJquZyvOfJ55AZMJ0eXs43MMauFNVbz/pZgtjl23eQRLu5WFdpQ==",
  8320. "type": "package",
  8321. "path": "volo.abp.automapper/6.0.0",
  8322. "files": [
  8323. ".nupkg.metadata",
  8324. ".signature.p7s",
  8325. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll",
  8326. "lib/netstandard2.1/Volo.Abp.AutoMapper.pdb",
  8327. "lib/netstandard2.1/Volo.Abp.AutoMapper.xml",
  8328. "volo.abp.automapper.6.0.0.nupkg.sha512",
  8329. "volo.abp.automapper.nuspec"
  8330. ]
  8331. },
  8332. "Volo.Abp.BackgroundWorkers/6.0.2": {
  8333. "sha512": "UIvmY1EEDnlT3jjZ92cDTWIsJncVLnntx32gLqqDWKILBAv2tAb/NQehW0yVYYcyezUULj2kJHPUaHr9uRAf9A==",
  8334. "type": "package",
  8335. "path": "volo.abp.backgroundworkers/6.0.2",
  8336. "files": [
  8337. ".nupkg.metadata",
  8338. ".signature.p7s",
  8339. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll",
  8340. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.pdb",
  8341. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.xml",
  8342. "volo.abp.backgroundworkers.6.0.2.nupkg.sha512",
  8343. "volo.abp.backgroundworkers.nuspec"
  8344. ]
  8345. },
  8346. "Volo.Abp.Caching/6.0.0": {
  8347. "sha512": "i+YHjH98KnmS2ohc+T3Gb5LvBLyfeB8M+zVib2LKm4hC/2hn/nFnV5Ss0YTwHgMErEcX1n8vWqBmDpWkcZl4Ug==",
  8348. "type": "package",
  8349. "path": "volo.abp.caching/6.0.0",
  8350. "files": [
  8351. ".nupkg.metadata",
  8352. ".signature.p7s",
  8353. "lib/netstandard2.0/Volo.Abp.Caching.dll",
  8354. "lib/netstandard2.0/Volo.Abp.Caching.pdb",
  8355. "lib/netstandard2.0/Volo.Abp.Caching.xml",
  8356. "volo.abp.caching.6.0.0.nupkg.sha512",
  8357. "volo.abp.caching.nuspec"
  8358. ]
  8359. },
  8360. "Volo.Abp.Castle.Core/6.0.0": {
  8361. "sha512": "rWyHJe7FNm4DunvMQ8y1MAZfiqRrIxEWnBWq1P7kTYy7ig9PKYj+HjSTX9uLc6d9ZScut6qM4hAltMDgFYwuEw==",
  8362. "type": "package",
  8363. "path": "volo.abp.castle.core/6.0.0",
  8364. "files": [
  8365. ".nupkg.metadata",
  8366. ".signature.p7s",
  8367. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll",
  8368. "lib/netstandard2.0/Volo.Abp.Castle.Core.pdb",
  8369. "lib/netstandard2.0/Volo.Abp.Castle.Core.xml",
  8370. "volo.abp.castle.core.6.0.0.nupkg.sha512",
  8371. "volo.abp.castle.core.nuspec"
  8372. ]
  8373. },
  8374. "Volo.Abp.Core/6.0.2": {
  8375. "sha512": "wuY90hoFxowFD0jatwJ0SWJ+bDuwQD4C+Wb00EWJ7sfYDq9Xu0l4Hh7QmUKFQOKPMotLy5Lt8LGirmwE88D00w==",
  8376. "type": "package",
  8377. "path": "volo.abp.core/6.0.2",
  8378. "files": [
  8379. ".nupkg.metadata",
  8380. ".signature.p7s",
  8381. "lib/netstandard2.0/Volo.Abp.Core.dll",
  8382. "lib/netstandard2.0/Volo.Abp.Core.pdb",
  8383. "lib/netstandard2.0/Volo.Abp.Core.xml",
  8384. "volo.abp.core.6.0.2.nupkg.sha512",
  8385. "volo.abp.core.nuspec"
  8386. ]
  8387. },
  8388. "Volo.Abp.Data/6.0.2": {
  8389. "sha512": "JBWe8xpTKv9kUYCbwSL5OvviyWbldGWjkQ517SdmzqXiYbYhTIpBuEBv+XemxjMbgBG+jOxmtrXc/7/77uXd5w==",
  8390. "type": "package",
  8391. "path": "volo.abp.data/6.0.2",
  8392. "files": [
  8393. ".nupkg.metadata",
  8394. ".signature.p7s",
  8395. "lib/netstandard2.0/Volo.Abp.Data.dll",
  8396. "lib/netstandard2.0/Volo.Abp.Data.pdb",
  8397. "lib/netstandard2.0/Volo.Abp.Data.xml",
  8398. "volo.abp.data.6.0.2.nupkg.sha512",
  8399. "volo.abp.data.nuspec"
  8400. ]
  8401. },
  8402. "Volo.Abp.Ddd.Application/6.0.0": {
  8403. "sha512": "dib3NLy7bpgubyZqpZ/wht4mPoP490bBQuh/Kd4bTy0F9wjyT2Dp1St8Tc5N1kKt6C2R1w9bJMcnnJtwyPZcjw==",
  8404. "type": "package",
  8405. "path": "volo.abp.ddd.application/6.0.0",
  8406. "files": [
  8407. ".nupkg.metadata",
  8408. ".signature.p7s",
  8409. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll",
  8410. "lib/netstandard2.0/Volo.Abp.Ddd.Application.pdb",
  8411. "lib/netstandard2.0/Volo.Abp.Ddd.Application.xml",
  8412. "volo.abp.ddd.application.6.0.0.nupkg.sha512",
  8413. "volo.abp.ddd.application.nuspec"
  8414. ]
  8415. },
  8416. "Volo.Abp.Ddd.Application.Contracts/6.0.0": {
  8417. "sha512": "IriSv5WJikdFPxx2su2z8biSmjrJn1bboBN2lf1SCD1tQYDckvrEINwNQUJ7BN1CjaL6SqvN2XHHsGocSXgIvA==",
  8418. "type": "package",
  8419. "path": "volo.abp.ddd.application.contracts/6.0.0",
  8420. "files": [
  8421. ".nupkg.metadata",
  8422. ".signature.p7s",
  8423. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll",
  8424. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.pdb",
  8425. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.xml",
  8426. "volo.abp.ddd.application.contracts.6.0.0.nupkg.sha512",
  8427. "volo.abp.ddd.application.contracts.nuspec"
  8428. ]
  8429. },
  8430. "Volo.Abp.Ddd.Domain/6.0.2": {
  8431. "sha512": "wxcpTFmoLgZ9/5vkdMaZFU1kcxOba5c1DrHQUIrV9KFDiWPguDd9hc3bPbpsCzq/oZgUUZVo42lj03gzbM4zGA==",
  8432. "type": "package",
  8433. "path": "volo.abp.ddd.domain/6.0.2",
  8434. "files": [
  8435. ".nupkg.metadata",
  8436. ".signature.p7s",
  8437. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
  8438. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
  8439. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.xml",
  8440. "volo.abp.ddd.domain.6.0.2.nupkg.sha512",
  8441. "volo.abp.ddd.domain.nuspec"
  8442. ]
  8443. },
  8444. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  8445. "sha512": "luIm9uqOsar7wRA65X3ItlM6O3Sy/iR8nfn6ifU1VoXaODVaqPM+NzUWOoMkxPiUNMfAaap8qbfzKSJ4+PkPug==",
  8446. "type": "package",
  8447. "path": "volo.abp.distributedlocking.abstractions/6.0.2",
  8448. "files": [
  8449. ".nupkg.metadata",
  8450. ".signature.p7s",
  8451. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll",
  8452. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.pdb",
  8453. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.xml",
  8454. "volo.abp.distributedlocking.abstractions.6.0.2.nupkg.sha512",
  8455. "volo.abp.distributedlocking.abstractions.nuspec"
  8456. ]
  8457. },
  8458. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  8459. "sha512": "R0VOj2p5I+TYJ+oFI3WM6FeDGDZRBrXnX3QOqt4JxTBTnnE4oXCKx8I/k6JMrllmGbyKYD2dheRxxuTKpjr0Kg==",
  8460. "type": "package",
  8461. "path": "volo.abp.entityframeworkcore/6.0.2",
  8462. "files": [
  8463. ".nupkg.metadata",
  8464. ".signature.p7s",
  8465. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll",
  8466. "lib/net6.0/Volo.Abp.EntityFrameworkCore.pdb",
  8467. "lib/net6.0/Volo.Abp.EntityFrameworkCore.xml",
  8468. "volo.abp.entityframeworkcore.6.0.2.nupkg.sha512",
  8469. "volo.abp.entityframeworkcore.nuspec"
  8470. ]
  8471. },
  8472. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.2": {
  8473. "sha512": "D/xcqgZlBhQyvTU2GInpThoebi2jKIrrVSNT2HdXUo3PihiBccdIBxSgdPSDDj6DBu/Hhy7A1CEmv7k8c+K/RA==",
  8474. "type": "package",
  8475. "path": "volo.abp.entityframeworkcore.mysql/6.0.2",
  8476. "files": [
  8477. ".nupkg.metadata",
  8478. ".signature.p7s",
  8479. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll",
  8480. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.pdb",
  8481. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.xml",
  8482. "volo.abp.entityframeworkcore.mysql.6.0.2.nupkg.sha512",
  8483. "volo.abp.entityframeworkcore.mysql.nuspec"
  8484. ]
  8485. },
  8486. "Volo.Abp.EventBus/6.0.2": {
  8487. "sha512": "NaGgox4T4L7AzQijPtQERZAH2crWYtyWVLZEmhEqPhDOiyFeJHwzNoP4bCqaz2FqFG0f7SbWZwJV6vdWoHCY8Q==",
  8488. "type": "package",
  8489. "path": "volo.abp.eventbus/6.0.2",
  8490. "files": [
  8491. ".nupkg.metadata",
  8492. ".signature.p7s",
  8493. "lib/netstandard2.0/Volo.Abp.EventBus.dll",
  8494. "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
  8495. "lib/netstandard2.0/Volo.Abp.EventBus.xml",
  8496. "volo.abp.eventbus.6.0.2.nupkg.sha512",
  8497. "volo.abp.eventbus.nuspec"
  8498. ]
  8499. },
  8500. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  8501. "sha512": "9eHrajsiJYfSBf1/hKnF8Wjc8K9aANfS9HKbJIkVJUS1PgRSLiCbLrCuyesCkgORSt3a3VDDywAfP0RhgEJ/zQ==",
  8502. "type": "package",
  8503. "path": "volo.abp.eventbus.abstractions/6.0.2",
  8504. "files": [
  8505. ".nupkg.metadata",
  8506. ".signature.p7s",
  8507. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll",
  8508. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.pdb",
  8509. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.xml",
  8510. "volo.abp.eventbus.abstractions.6.0.2.nupkg.sha512",
  8511. "volo.abp.eventbus.abstractions.nuspec"
  8512. ]
  8513. },
  8514. "Volo.Abp.ExceptionHandling/6.0.2": {
  8515. "sha512": "Gw9biTqWpDvz01dEuVO5KHKGX/po6TWSsAEQMb6XnxEicH9HU7AM6VDSHVduFszO/lhzLZ+3EUaU2rvRfP0b5w==",
  8516. "type": "package",
  8517. "path": "volo.abp.exceptionhandling/6.0.2",
  8518. "files": [
  8519. ".nupkg.metadata",
  8520. ".signature.p7s",
  8521. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll",
  8522. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.pdb",
  8523. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.xml",
  8524. "volo.abp.exceptionhandling.6.0.2.nupkg.sha512",
  8525. "volo.abp.exceptionhandling.nuspec"
  8526. ]
  8527. },
  8528. "Volo.Abp.Features/6.0.0": {
  8529. "sha512": "VgRQwdzfTbS/L3iLP+czBrV+WFAodqvbgDWIq9H50S6rRlx5YGmoqCbP/gmQAjXloZ7Mi77Y0p98pahM2yhWqg==",
  8530. "type": "package",
  8531. "path": "volo.abp.features/6.0.0",
  8532. "files": [
  8533. ".nupkg.metadata",
  8534. ".signature.p7s",
  8535. "lib/netstandard2.0/Volo.Abp.Features.dll",
  8536. "lib/netstandard2.0/Volo.Abp.Features.pdb",
  8537. "lib/netstandard2.0/Volo.Abp.Features.xml",
  8538. "volo.abp.features.6.0.0.nupkg.sha512",
  8539. "volo.abp.features.nuspec"
  8540. ]
  8541. },
  8542. "Volo.Abp.GlobalFeatures/6.0.0": {
  8543. "sha512": "vC0RODYDbO9fX0FpmyOrWFT097um5NBQ4/SkVcrguwigj6Y8CvSA2b9POI06LMGUg6QVFEzEBCoG4hUwWFgq3Q==",
  8544. "type": "package",
  8545. "path": "volo.abp.globalfeatures/6.0.0",
  8546. "files": [
  8547. ".nupkg.metadata",
  8548. ".signature.p7s",
  8549. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll",
  8550. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.pdb",
  8551. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.xml",
  8552. "volo.abp.globalfeatures.6.0.0.nupkg.sha512",
  8553. "volo.abp.globalfeatures.nuspec"
  8554. ]
  8555. },
  8556. "Volo.Abp.Guids/6.0.2": {
  8557. "sha512": "NZJVgg5h6l7WIVpxTIRc27Xkeu1GrsP+BgTXEEgD/+bdbyxwk3jvS1vZpCMTy3c1AxjKldJE+MDbFMSJ1P4QmQ==",
  8558. "type": "package",
  8559. "path": "volo.abp.guids/6.0.2",
  8560. "files": [
  8561. ".nupkg.metadata",
  8562. ".signature.p7s",
  8563. "lib/netstandard2.0/Volo.Abp.Guids.dll",
  8564. "lib/netstandard2.0/Volo.Abp.Guids.pdb",
  8565. "lib/netstandard2.0/Volo.Abp.Guids.xml",
  8566. "volo.abp.guids.6.0.2.nupkg.sha512",
  8567. "volo.abp.guids.nuspec"
  8568. ]
  8569. },
  8570. "Volo.Abp.Http/6.0.0": {
  8571. "sha512": "dBjC0mIbE5rHjCrF0dxbrTHj7Ep4As1LxCPTPgHqjpAGF+Q00Fuf0c7V7C/8mTAUAJ2d37tyPta2anKmYvcEtg==",
  8572. "type": "package",
  8573. "path": "volo.abp.http/6.0.0",
  8574. "files": [
  8575. ".nupkg.metadata",
  8576. ".signature.p7s",
  8577. "lib/netstandard2.0/Volo.Abp.Http.dll",
  8578. "lib/netstandard2.0/Volo.Abp.Http.pdb",
  8579. "lib/netstandard2.0/Volo.Abp.Http.xml",
  8580. "volo.abp.http.6.0.0.nupkg.sha512",
  8581. "volo.abp.http.nuspec"
  8582. ]
  8583. },
  8584. "Volo.Abp.Http.Abstractions/6.0.0": {
  8585. "sha512": "IWB9LuRmW4iuXxNVUqNXN5x1nwpdL1gcgKlwOuU3GVbbHpN5VN3irl/kONfP9buktjd5D0xo/lYaZXKaswi87w==",
  8586. "type": "package",
  8587. "path": "volo.abp.http.abstractions/6.0.0",
  8588. "files": [
  8589. ".nupkg.metadata",
  8590. ".signature.p7s",
  8591. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll",
  8592. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.pdb",
  8593. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.xml",
  8594. "volo.abp.http.abstractions.6.0.0.nupkg.sha512",
  8595. "volo.abp.http.abstractions.nuspec"
  8596. ]
  8597. },
  8598. "Volo.Abp.Json/6.0.2": {
  8599. "sha512": "opT+u/teEACd2U/8OEYYNh4XHZ2JZgx+fdqPCOHcDyV0aJFn6friK8hc8d5dkUw/XY9lbnTX0VA7a5hMFhF+VQ==",
  8600. "type": "package",
  8601. "path": "volo.abp.json/6.0.2",
  8602. "files": [
  8603. ".nupkg.metadata",
  8604. ".signature.p7s",
  8605. "lib/netstandard2.0/Volo.Abp.Json.dll",
  8606. "lib/netstandard2.0/Volo.Abp.Json.pdb",
  8607. "lib/netstandard2.0/Volo.Abp.Json.xml",
  8608. "volo.abp.json.6.0.2.nupkg.sha512",
  8609. "volo.abp.json.nuspec"
  8610. ]
  8611. },
  8612. "Volo.Abp.Localization/6.0.2": {
  8613. "sha512": "YYUEzyfH3u/ILYm045fbPZQKh2asIEXiw1swsh3qyo7fPV1q5xxEsb5xBwfE5SC0F+lcUBy72cJjRmf8HqiQFw==",
  8614. "type": "package",
  8615. "path": "volo.abp.localization/6.0.2",
  8616. "files": [
  8617. ".nupkg.metadata",
  8618. ".signature.p7s",
  8619. "lib/netstandard2.0/Volo.Abp.Localization.dll",
  8620. "lib/netstandard2.0/Volo.Abp.Localization.pdb",
  8621. "lib/netstandard2.0/Volo.Abp.Localization.xml",
  8622. "volo.abp.localization.6.0.2.nupkg.sha512",
  8623. "volo.abp.localization.nuspec"
  8624. ]
  8625. },
  8626. "Volo.Abp.Localization.Abstractions/6.0.2": {
  8627. "sha512": "RE2tYmLJJ6W6BEm4LXiqJHBpY07JE9iiAj7djfYvQzrn3oSonCyLFxH+/UWIBzcGgOrjdhzI/UuF0Y9GHNRWTA==",
  8628. "type": "package",
  8629. "path": "volo.abp.localization.abstractions/6.0.2",
  8630. "files": [
  8631. ".nupkg.metadata",
  8632. ".signature.p7s",
  8633. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
  8634. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
  8635. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.xml",
  8636. "volo.abp.localization.abstractions.6.0.2.nupkg.sha512",
  8637. "volo.abp.localization.abstractions.nuspec"
  8638. ]
  8639. },
  8640. "Volo.Abp.Minify/6.0.0": {
  8641. "sha512": "Gf7+HoBVQTATUs8okymMs30C/OpUQOtud2yn8mr8qJtWX8K7+qCjfZcpbN4g601qx/m2dzhhlVAqS2FO3fhVQQ==",
  8642. "type": "package",
  8643. "path": "volo.abp.minify/6.0.0",
  8644. "files": [
  8645. ".nupkg.metadata",
  8646. ".signature.p7s",
  8647. "lib/netstandard2.0/Volo.Abp.Minify.dll",
  8648. "lib/netstandard2.0/Volo.Abp.Minify.pdb",
  8649. "lib/netstandard2.0/Volo.Abp.Minify.xml",
  8650. "volo.abp.minify.6.0.0.nupkg.sha512",
  8651. "volo.abp.minify.nuspec"
  8652. ]
  8653. },
  8654. "Volo.Abp.MultiTenancy/6.0.2": {
  8655. "sha512": "1RU/gR260DELa1hZKmb8pwFu5yUzF3dv5ilSc3ICcu8CnStod1/wD1gwLl8WbLob2IZX/CqRRqUzawwc4lwY6w==",
  8656. "type": "package",
  8657. "path": "volo.abp.multitenancy/6.0.2",
  8658. "files": [
  8659. ".nupkg.metadata",
  8660. ".signature.p7s",
  8661. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
  8662. "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
  8663. "lib/netstandard2.0/Volo.Abp.MultiTenancy.xml",
  8664. "volo.abp.multitenancy.6.0.2.nupkg.sha512",
  8665. "volo.abp.multitenancy.nuspec"
  8666. ]
  8667. },
  8668. "Volo.Abp.ObjectExtending/6.0.2": {
  8669. "sha512": "KNAIAAoQIJg75TisdF6ZE8roeeqwlyjCMu9PAgnKbwraxwU12F390Rl3ObKhVI9aHAk31aMj4+EZpLTUbCmFpA==",
  8670. "type": "package",
  8671. "path": "volo.abp.objectextending/6.0.2",
  8672. "files": [
  8673. ".nupkg.metadata",
  8674. ".signature.p7s",
  8675. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
  8676. "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
  8677. "lib/netstandard2.0/Volo.Abp.ObjectExtending.xml",
  8678. "volo.abp.objectextending.6.0.2.nupkg.sha512",
  8679. "volo.abp.objectextending.nuspec"
  8680. ]
  8681. },
  8682. "Volo.Abp.ObjectMapping/6.0.2": {
  8683. "sha512": "reUOLtKea9//yOSNwfCno9tPIPrlLyaOFioeP4dDSlIfq6p0q8O45XHnZzv7LJ8SLpB26Xw9DuFZRZ59TVkahw==",
  8684. "type": "package",
  8685. "path": "volo.abp.objectmapping/6.0.2",
  8686. "files": [
  8687. ".nupkg.metadata",
  8688. ".signature.p7s",
  8689. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
  8690. "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
  8691. "lib/netstandard2.0/Volo.Abp.ObjectMapping.xml",
  8692. "volo.abp.objectmapping.6.0.2.nupkg.sha512",
  8693. "volo.abp.objectmapping.nuspec"
  8694. ]
  8695. },
  8696. "Volo.Abp.PermissionManagement.Application.Contracts/6.0.0": {
  8697. "sha512": "TkhbsorTogLAS20sACYSQ9B1O5t86QvxCvqodaLRzbLtraeGdrWwWTZ/dT96bp9f6hT+8KvuCrxu1mhXIgLoaw==",
  8698. "type": "package",
  8699. "path": "volo.abp.permissionmanagement.application.contracts/6.0.0",
  8700. "files": [
  8701. ".nupkg.metadata",
  8702. ".signature.p7s",
  8703. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll",
  8704. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.pdb",
  8705. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.xml",
  8706. "volo.abp.permissionmanagement.application.contracts.6.0.0.nupkg.sha512",
  8707. "volo.abp.permissionmanagement.application.contracts.nuspec"
  8708. ]
  8709. },
  8710. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  8711. "sha512": "qtYyZ/z7Zh5fMfaJXEL06iAuSgtrxt98M2oHN52POuClOx1V0Jix0fejeWsfJvvGs/l1+EyDWb2ul2IiOkuksg==",
  8712. "type": "package",
  8713. "path": "volo.abp.permissionmanagement.domain/6.0.0",
  8714. "files": [
  8715. ".nupkg.metadata",
  8716. ".signature.p7s",
  8717. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll",
  8718. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.pdb",
  8719. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.xml",
  8720. "volo.abp.permissionmanagement.domain.6.0.0.nupkg.sha512",
  8721. "volo.abp.permissionmanagement.domain.nuspec"
  8722. ]
  8723. },
  8724. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  8725. "sha512": "BjLkzErtgq3LYzt4T16QwG7FJF/pe4DrjrWOsEZc852FliAzUF9MVOOPvcAADNgIHpCJQXBJqu6c+yf77g9wsA==",
  8726. "type": "package",
  8727. "path": "volo.abp.permissionmanagement.domain.shared/6.0.0",
  8728. "files": [
  8729. ".nupkg.metadata",
  8730. ".signature.p7s",
  8731. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll",
  8732. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb",
  8733. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.xml",
  8734. "volo.abp.permissionmanagement.domain.shared.6.0.0.nupkg.sha512",
  8735. "volo.abp.permissionmanagement.domain.shared.nuspec"
  8736. ]
  8737. },
  8738. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  8739. "sha512": "xS/RfnfEv49cHWpE90aFSPlg9ZdW2zeHwfSHtBxXdF1t24E0Bbouzc33iUATMPYnH02nwLGMy8n6QDRZht4+pA==",
  8740. "type": "package",
  8741. "path": "volo.abp.permissionmanagement.entityframeworkcore/6.0.0",
  8742. "files": [
  8743. ".nupkg.metadata",
  8744. ".signature.p7s",
  8745. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll",
  8746. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.pdb",
  8747. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.xml",
  8748. "volo.abp.permissionmanagement.entityframeworkcore.6.0.0.nupkg.sha512",
  8749. "volo.abp.permissionmanagement.entityframeworkcore.nuspec"
  8750. ]
  8751. },
  8752. "Volo.Abp.Security/6.0.2": {
  8753. "sha512": "+SxP7wxD+Auc4WXuPXZZ6Ra1VTy1H+UWbkvUBiKnjw8258tdTEsWBLBosOM74OzCcBMysj3uxiKVv/unNg3sWg==",
  8754. "type": "package",
  8755. "path": "volo.abp.security/6.0.2",
  8756. "files": [
  8757. ".nupkg.metadata",
  8758. ".signature.p7s",
  8759. "lib/netstandard2.0/Volo.Abp.Security.dll",
  8760. "lib/netstandard2.0/Volo.Abp.Security.pdb",
  8761. "lib/netstandard2.0/Volo.Abp.Security.xml",
  8762. "volo.abp.security.6.0.2.nupkg.sha512",
  8763. "volo.abp.security.nuspec"
  8764. ]
  8765. },
  8766. "Volo.Abp.Serialization/6.0.0": {
  8767. "sha512": "fQUBF1eyxxrw81UCAehHG/GDr9TqAPh5MzjsV8RW7PhDPwkpxzypKVx1MwR+SFhF+zY0Eml1olk5iJ8u8nxBqQ==",
  8768. "type": "package",
  8769. "path": "volo.abp.serialization/6.0.0",
  8770. "files": [
  8771. ".nupkg.metadata",
  8772. ".signature.p7s",
  8773. "lib/netstandard2.0/Volo.Abp.Serialization.dll",
  8774. "lib/netstandard2.0/Volo.Abp.Serialization.pdb",
  8775. "lib/netstandard2.0/Volo.Abp.Serialization.xml",
  8776. "volo.abp.serialization.6.0.0.nupkg.sha512",
  8777. "volo.abp.serialization.nuspec"
  8778. ]
  8779. },
  8780. "Volo.Abp.Settings/6.0.2": {
  8781. "sha512": "jRlV1GF/TjphMXIwBn/ldkweRdvZY4U/p5iNebVT2hhz8W896Y88jF5yS9JZtjWHT9vs0AitVIYWPs2ZNW8yrQ==",
  8782. "type": "package",
  8783. "path": "volo.abp.settings/6.0.2",
  8784. "files": [
  8785. ".nupkg.metadata",
  8786. ".signature.p7s",
  8787. "lib/netstandard2.0/Volo.Abp.Settings.dll",
  8788. "lib/netstandard2.0/Volo.Abp.Settings.pdb",
  8789. "lib/netstandard2.0/Volo.Abp.Settings.xml",
  8790. "volo.abp.settings.6.0.2.nupkg.sha512",
  8791. "volo.abp.settings.nuspec"
  8792. ]
  8793. },
  8794. "Volo.Abp.Specifications/6.0.2": {
  8795. "sha512": "SYc3Wjco9r9SaeP6+giUvx7x+3jU7ZwEi/AicGQ90oxqngPdL2dSLY86iVItKElM+ZY/JnW5cXwhF9IbJJ6wEw==",
  8796. "type": "package",
  8797. "path": "volo.abp.specifications/6.0.2",
  8798. "files": [
  8799. ".nupkg.metadata",
  8800. ".signature.p7s",
  8801. "lib/netstandard2.0/Volo.Abp.Specifications.dll",
  8802. "lib/netstandard2.0/Volo.Abp.Specifications.pdb",
  8803. "lib/netstandard2.0/Volo.Abp.Specifications.xml",
  8804. "volo.abp.specifications.6.0.2.nupkg.sha512",
  8805. "volo.abp.specifications.nuspec"
  8806. ]
  8807. },
  8808. "Volo.Abp.Threading/6.0.2": {
  8809. "sha512": "tgTehSlQbfNiUPNLMtw3sQRK2AxaCwLdFPf60aJNlwrWbsUTT17HrJ9Yeu9Mn+li8WARS0lvs9tnkk8blUFeuQ==",
  8810. "type": "package",
  8811. "path": "volo.abp.threading/6.0.2",
  8812. "files": [
  8813. ".nupkg.metadata",
  8814. ".signature.p7s",
  8815. "lib/netstandard2.0/Volo.Abp.Threading.dll",
  8816. "lib/netstandard2.0/Volo.Abp.Threading.pdb",
  8817. "lib/netstandard2.0/Volo.Abp.Threading.xml",
  8818. "volo.abp.threading.6.0.2.nupkg.sha512",
  8819. "volo.abp.threading.nuspec"
  8820. ]
  8821. },
  8822. "Volo.Abp.Timing/6.0.2": {
  8823. "sha512": "MbGt9ZJ9U01oHK5+bxUBGuq62w/uI++dFQdR/ghyA3M4r2k435+Snzs+oRoaRcUqvxaE97dPDd578yDwWLl3fQ==",
  8824. "type": "package",
  8825. "path": "volo.abp.timing/6.0.2",
  8826. "files": [
  8827. ".nupkg.metadata",
  8828. ".signature.p7s",
  8829. "lib/netstandard2.0/Volo.Abp.Timing.dll",
  8830. "lib/netstandard2.0/Volo.Abp.Timing.pdb",
  8831. "lib/netstandard2.0/Volo.Abp.Timing.xml",
  8832. "volo.abp.timing.6.0.2.nupkg.sha512",
  8833. "volo.abp.timing.nuspec"
  8834. ]
  8835. },
  8836. "Volo.Abp.UI/6.0.0": {
  8837. "sha512": "9jVrYqJ4eu8s1kcrWA1cQM8I0dJP175wtDUAC5aHbKzCq42P+sbikC8odevQ6t9Ok3GshJCNkIJORcUEt/nAEg==",
  8838. "type": "package",
  8839. "path": "volo.abp.ui/6.0.0",
  8840. "files": [
  8841. ".nupkg.metadata",
  8842. ".signature.p7s",
  8843. "lib/netstandard2.0/Volo.Abp.UI.dll",
  8844. "lib/netstandard2.0/Volo.Abp.UI.pdb",
  8845. "lib/netstandard2.0/Volo.Abp.UI.xml",
  8846. "volo.abp.ui.6.0.0.nupkg.sha512",
  8847. "volo.abp.ui.nuspec"
  8848. ]
  8849. },
  8850. "Volo.Abp.UI.Navigation/6.0.0": {
  8851. "sha512": "/wV50FzsHe6qJ3//dtC94ntX7S/dRHVVmpbGO+WUvlcFIAdXNCy0R5lQx10GyeO4TIYgA0mpu07HLni4A5yDyA==",
  8852. "type": "package",
  8853. "path": "volo.abp.ui.navigation/6.0.0",
  8854. "files": [
  8855. ".nupkg.metadata",
  8856. ".signature.p7s",
  8857. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll",
  8858. "lib/netstandard2.0/Volo.Abp.UI.Navigation.pdb",
  8859. "lib/netstandard2.0/Volo.Abp.UI.Navigation.xml",
  8860. "volo.abp.ui.navigation.6.0.0.nupkg.sha512",
  8861. "volo.abp.ui.navigation.nuspec"
  8862. ]
  8863. },
  8864. "Volo.Abp.Uow/6.0.2": {
  8865. "sha512": "frheu6miUaSeDzSaKpk4IUT1vZQ1a5Yji9s4pRmX7skd13bTeB6P45n+555qDBEf4/plpr4GPz+9Fd+u/EnVvQ==",
  8866. "type": "package",
  8867. "path": "volo.abp.uow/6.0.2",
  8868. "files": [
  8869. ".nupkg.metadata",
  8870. ".signature.p7s",
  8871. "lib/netstandard2.0/Volo.Abp.Uow.dll",
  8872. "lib/netstandard2.0/Volo.Abp.Uow.pdb",
  8873. "lib/netstandard2.0/Volo.Abp.Uow.xml",
  8874. "volo.abp.uow.6.0.2.nupkg.sha512",
  8875. "volo.abp.uow.nuspec"
  8876. ]
  8877. },
  8878. "Volo.Abp.Validation/6.0.0": {
  8879. "sha512": "Iza3FCoOaClOzHb+ue6q1UPd+MzfXjPfZ29YF8AUe6VfWx49EbquvSk0zjYVx3ikOBhnhffQiqv/QzzQtYmq6A==",
  8880. "type": "package",
  8881. "path": "volo.abp.validation/6.0.0",
  8882. "files": [
  8883. ".nupkg.metadata",
  8884. ".signature.p7s",
  8885. "lib/netstandard2.0/Volo.Abp.Validation.dll",
  8886. "lib/netstandard2.0/Volo.Abp.Validation.pdb",
  8887. "lib/netstandard2.0/Volo.Abp.Validation.xml",
  8888. "volo.abp.validation.6.0.0.nupkg.sha512",
  8889. "volo.abp.validation.nuspec"
  8890. ]
  8891. },
  8892. "Volo.Abp.Validation.Abstractions/6.0.2": {
  8893. "sha512": "LEeESHPMPHrrkf0sFjgUKiHayaStq4uTt7PTQyUvU3WaAJZWrENuC3aXkz4aHJhO2jjW2bRoRHNqfmoGjdzqRg==",
  8894. "type": "package",
  8895. "path": "volo.abp.validation.abstractions/6.0.2",
  8896. "files": [
  8897. ".nupkg.metadata",
  8898. ".signature.p7s",
  8899. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
  8900. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
  8901. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.xml",
  8902. "volo.abp.validation.abstractions.6.0.2.nupkg.sha512",
  8903. "volo.abp.validation.abstractions.nuspec"
  8904. ]
  8905. },
  8906. "Volo.Abp.VirtualFileSystem/6.0.2": {
  8907. "sha512": "/uA+KzInBEgg31HRis/z7qDsK1rNT8vCEdgQ4cZzUujB6vV7j8cBJQfsXLVmctSEadt0DibFa/XLn7w51J1oXg==",
  8908. "type": "package",
  8909. "path": "volo.abp.virtualfilesystem/6.0.2",
  8910. "files": [
  8911. ".nupkg.metadata",
  8912. ".signature.p7s",
  8913. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
  8914. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
  8915. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.xml",
  8916. "volo.abp.virtualfilesystem.6.0.2.nupkg.sha512",
  8917. "volo.abp.virtualfilesystem.nuspec"
  8918. ]
  8919. },
  8920. "Procurement.Application/1.0.0": {
  8921. "type": "project",
  8922. "path": "../Procurement.Application/Procurement.Application.csproj",
  8923. "msbuildProject": "../Procurement.Application/Procurement.Application.csproj"
  8924. },
  8925. "Procurement.Domain/1.0.0": {
  8926. "type": "project",
  8927. "path": "../Procurement.Domain/Procurement.Domain.csproj",
  8928. "msbuildProject": "../Procurement.Domain/Procurement.Domain.csproj"
  8929. },
  8930. "Procurement.EntityFrameworkCore/1.0.0": {
  8931. "type": "project",
  8932. "path": "../Procurement.EntityFrameworkCore/Procurement.EntityFrameworkCore.csproj",
  8933. "msbuildProject": "../Procurement.EntityFrameworkCore/Procurement.EntityFrameworkCore.csproj"
  8934. },
  8935. "XCZ.Procurement.Application.Contracts/0.1.1": {
  8936. "type": "project",
  8937. "path": "../Procurement.Application.Contracts/Procurement.Application.Contracts.csproj",
  8938. "msbuildProject": "../Procurement.Application.Contracts/Procurement.Application.Contracts.csproj"
  8939. }
  8940. },
  8941. "projectFileDependencyGroups": {
  8942. "net6.0": [
  8943. "IdentityServer4.AccessTokenValidation >= 3.0.1",
  8944. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis >= 6.0.3",
  8945. "Microsoft.EntityFrameworkCore.Tools >= 6.0.5",
  8946. "Microsoft.Extensions.Caching.StackExchangeRedis >= 6.0.3",
  8947. "Procurement.Application >= 1.0.0",
  8948. "Procurement.EntityFrameworkCore >= 1.0.0",
  8949. "Serilog.AspNetCore >= 5.0.0",
  8950. "Serilog.Sinks.Async >= 1.5.0",
  8951. "Swashbuckle.AspNetCore >= 6.3.0",
  8952. "Volo.Abp.AspNetCore.MultiTenancy >= 6.0.0",
  8953. "Volo.Abp.AspNetCore.Mvc >= 6.0.0",
  8954. "Volo.Abp.AspNetCore.Serilog >= 6.0.0",
  8955. "Volo.Abp.Autofac >= 6.0.0",
  8956. "Volo.Abp.Caching >= 6.0.0",
  8957. "Volo.Abp.EntityFrameworkCore.MySQL >= 6.0.2"
  8958. ]
  8959. },
  8960. "packageFolders": {
  8961. "C:\\Users\\fayimi\\.nuget\\packages\\": {},
  8962. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
  8963. "C:\\Microsoft\\Xamarin\\NuGet\\": {},
  8964. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  8965. },
  8966. "project": {
  8967. "version": "1.0.0",
  8968. "restore": {
  8969. "projectUniqueName": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\Procurement.Host.csproj",
  8970. "projectName": "Procurement.Host",
  8971. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\Procurement.Host.csproj",
  8972. "packagesPath": "C:\\Users\\fayimi\\.nuget\\packages\\",
  8973. "outputPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\obj\\",
  8974. "projectStyle": "PackageReference",
  8975. "fallbackFolders": [
  8976. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
  8977. "C:\\Microsoft\\Xamarin\\NuGet\\",
  8978. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  8979. ],
  8980. "configFilePaths": [
  8981. "C:\\Users\\fayimi\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8982. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8983. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  8984. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  8985. ],
  8986. "originalTargetFrameworks": [
  8987. "net6.0"
  8988. ],
  8989. "sources": {
  8990. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8991. "https://api.nuget.org/v3/index.json": {}
  8992. },
  8993. "frameworks": {
  8994. "net6.0": {
  8995. "targetAlias": "net6.0",
  8996. "projectReferences": {
  8997. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Application\\Procurement.Application.csproj": {
  8998. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Application\\Procurement.Application.csproj"
  8999. },
  9000. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj": {
  9001. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj"
  9002. }
  9003. }
  9004. }
  9005. },
  9006. "warningProperties": {
  9007. "warnAsError": [
  9008. "NU1605"
  9009. ]
  9010. }
  9011. },
  9012. "frameworks": {
  9013. "net6.0": {
  9014. "targetAlias": "net6.0",
  9015. "dependencies": {
  9016. "IdentityServer4.AccessTokenValidation": {
  9017. "target": "Package",
  9018. "version": "[3.0.1, )"
  9019. },
  9020. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis": {
  9021. "target": "Package",
  9022. "version": "[6.0.3, )"
  9023. },
  9024. "Microsoft.EntityFrameworkCore.Tools": {
  9025. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  9026. "suppressParent": "All",
  9027. "target": "Package",
  9028. "version": "[6.0.5, )"
  9029. },
  9030. "Microsoft.Extensions.Caching.StackExchangeRedis": {
  9031. "target": "Package",
  9032. "version": "[6.0.3, )"
  9033. },
  9034. "Serilog.AspNetCore": {
  9035. "target": "Package",
  9036. "version": "[5.0.0, )"
  9037. },
  9038. "Serilog.Sinks.Async": {
  9039. "target": "Package",
  9040. "version": "[1.5.0, )"
  9041. },
  9042. "Swashbuckle.AspNetCore": {
  9043. "target": "Package",
  9044. "version": "[6.3.0, )"
  9045. },
  9046. "Volo.Abp.AspNetCore.MultiTenancy": {
  9047. "target": "Package",
  9048. "version": "[6.0.0, )"
  9049. },
  9050. "Volo.Abp.AspNetCore.Mvc": {
  9051. "target": "Package",
  9052. "version": "[6.0.0, )"
  9053. },
  9054. "Volo.Abp.AspNetCore.Serilog": {
  9055. "target": "Package",
  9056. "version": "[6.0.0, )"
  9057. },
  9058. "Volo.Abp.Autofac": {
  9059. "target": "Package",
  9060. "version": "[6.0.0, )"
  9061. },
  9062. "Volo.Abp.Caching": {
  9063. "target": "Package",
  9064. "version": "[6.0.0, )"
  9065. },
  9066. "Volo.Abp.EntityFrameworkCore.MySQL": {
  9067. "target": "Package",
  9068. "version": "[6.0.2, )"
  9069. }
  9070. },
  9071. "imports": [
  9072. "net461",
  9073. "net462",
  9074. "net47",
  9075. "net471",
  9076. "net472",
  9077. "net48",
  9078. "net481"
  9079. ],
  9080. "assetTargetFallback": true,
  9081. "warn": true,
  9082. "frameworkReferences": {
  9083. "Microsoft.AspNetCore.App": {
  9084. "privateAssets": "none"
  9085. },
  9086. "Microsoft.NETCore.App": {
  9087. "privateAssets": "all"
  9088. }
  9089. },
  9090. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9091. }
  9092. }
  9093. }
  9094. }