project.assets.json 376 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net8.0": {
  5. "Azure.Core/1.38.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  9. "System.ClientModel": "1.0.0",
  10. "System.Diagnostics.DiagnosticSource": "6.0.1",
  11. "System.Memory.Data": "1.0.2",
  12. "System.Numerics.Vectors": "4.5.0",
  13. "System.Text.Encodings.Web": "4.7.2",
  14. "System.Text.Json": "4.7.2",
  15. "System.Threading.Tasks.Extensions": "4.5.4"
  16. },
  17. "compile": {
  18. "lib/net6.0/Azure.Core.dll": {
  19. "related": ".xml"
  20. }
  21. },
  22. "runtime": {
  23. "lib/net6.0/Azure.Core.dll": {
  24. "related": ".xml"
  25. }
  26. }
  27. },
  28. "Azure.Identity/1.11.4": {
  29. "type": "package",
  30. "dependencies": {
  31. "Azure.Core": "1.38.0",
  32. "Microsoft.Identity.Client": "4.61.3",
  33. "Microsoft.Identity.Client.Extensions.Msal": "4.61.3",
  34. "System.Memory": "4.5.4",
  35. "System.Security.Cryptography.ProtectedData": "4.7.0",
  36. "System.Text.Json": "4.7.2",
  37. "System.Threading.Tasks.Extensions": "4.5.4"
  38. },
  39. "compile": {
  40. "lib/netstandard2.0/Azure.Identity.dll": {
  41. "related": ".xml"
  42. }
  43. },
  44. "runtime": {
  45. "lib/netstandard2.0/Azure.Identity.dll": {
  46. "related": ".xml"
  47. }
  48. }
  49. },
  50. "BCrypt.Net-Next/4.0.3": {
  51. "type": "package",
  52. "compile": {
  53. "lib/net6.0/BCrypt.Net-Next.dll": {
  54. "related": ".xml"
  55. }
  56. },
  57. "runtime": {
  58. "lib/net6.0/BCrypt.Net-Next.dll": {
  59. "related": ".xml"
  60. }
  61. }
  62. },
  63. "BuildWebCompiler/1.12.405": {
  64. "type": "package",
  65. "build": {
  66. "build/BuildWebCompiler.targets": {}
  67. }
  68. },
  69. "DeviceDetector.NET/6.4.2": {
  70. "type": "package",
  71. "dependencies": {
  72. "LiteDB": "5.0.21",
  73. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  74. "YamlDotNet": "16.2.1"
  75. },
  76. "compile": {
  77. "lib/net8.0/DeviceDetector.NET.dll": {}
  78. },
  79. "runtime": {
  80. "lib/net8.0/DeviceDetector.NET.dll": {}
  81. }
  82. },
  83. "Humanizer/2.14.1": {
  84. "type": "package",
  85. "dependencies": {
  86. "Humanizer.Core.af": "2.14.1",
  87. "Humanizer.Core.ar": "2.14.1",
  88. "Humanizer.Core.az": "2.14.1",
  89. "Humanizer.Core.bg": "2.14.1",
  90. "Humanizer.Core.bn-BD": "2.14.1",
  91. "Humanizer.Core.cs": "2.14.1",
  92. "Humanizer.Core.da": "2.14.1",
  93. "Humanizer.Core.de": "2.14.1",
  94. "Humanizer.Core.el": "2.14.1",
  95. "Humanizer.Core.es": "2.14.1",
  96. "Humanizer.Core.fa": "2.14.1",
  97. "Humanizer.Core.fi-FI": "2.14.1",
  98. "Humanizer.Core.fr": "2.14.1",
  99. "Humanizer.Core.fr-BE": "2.14.1",
  100. "Humanizer.Core.he": "2.14.1",
  101. "Humanizer.Core.hr": "2.14.1",
  102. "Humanizer.Core.hu": "2.14.1",
  103. "Humanizer.Core.hy": "2.14.1",
  104. "Humanizer.Core.id": "2.14.1",
  105. "Humanizer.Core.is": "2.14.1",
  106. "Humanizer.Core.it": "2.14.1",
  107. "Humanizer.Core.ja": "2.14.1",
  108. "Humanizer.Core.ko-KR": "2.14.1",
  109. "Humanizer.Core.ku": "2.14.1",
  110. "Humanizer.Core.lv": "2.14.1",
  111. "Humanizer.Core.ms-MY": "2.14.1",
  112. "Humanizer.Core.mt": "2.14.1",
  113. "Humanizer.Core.nb": "2.14.1",
  114. "Humanizer.Core.nb-NO": "2.14.1",
  115. "Humanizer.Core.nl": "2.14.1",
  116. "Humanizer.Core.pl": "2.14.1",
  117. "Humanizer.Core.pt": "2.14.1",
  118. "Humanizer.Core.ro": "2.14.1",
  119. "Humanizer.Core.ru": "2.14.1",
  120. "Humanizer.Core.sk": "2.14.1",
  121. "Humanizer.Core.sl": "2.14.1",
  122. "Humanizer.Core.sr": "2.14.1",
  123. "Humanizer.Core.sr-Latn": "2.14.1",
  124. "Humanizer.Core.sv": "2.14.1",
  125. "Humanizer.Core.th-TH": "2.14.1",
  126. "Humanizer.Core.tr": "2.14.1",
  127. "Humanizer.Core.uk": "2.14.1",
  128. "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
  129. "Humanizer.Core.uz-Latn-UZ": "2.14.1",
  130. "Humanizer.Core.vi": "2.14.1",
  131. "Humanizer.Core.zh-CN": "2.14.1",
  132. "Humanizer.Core.zh-Hans": "2.14.1",
  133. "Humanizer.Core.zh-Hant": "2.14.1"
  134. }
  135. },
  136. "Humanizer.Core/2.14.1": {
  137. "type": "package",
  138. "compile": {
  139. "lib/net6.0/Humanizer.dll": {
  140. "related": ".xml"
  141. }
  142. },
  143. "runtime": {
  144. "lib/net6.0/Humanizer.dll": {
  145. "related": ".xml"
  146. }
  147. }
  148. },
  149. "Humanizer.Core.af/2.14.1": {
  150. "type": "package",
  151. "dependencies": {
  152. "Humanizer.Core": "[2.14.1]"
  153. },
  154. "resource": {
  155. "lib/net6.0/af/Humanizer.resources.dll": {
  156. "locale": "af"
  157. }
  158. }
  159. },
  160. "Humanizer.Core.ar/2.14.1": {
  161. "type": "package",
  162. "dependencies": {
  163. "Humanizer.Core": "[2.14.1]"
  164. },
  165. "resource": {
  166. "lib/net6.0/ar/Humanizer.resources.dll": {
  167. "locale": "ar"
  168. }
  169. }
  170. },
  171. "Humanizer.Core.az/2.14.1": {
  172. "type": "package",
  173. "dependencies": {
  174. "Humanizer.Core": "[2.14.1]"
  175. },
  176. "resource": {
  177. "lib/net6.0/az/Humanizer.resources.dll": {
  178. "locale": "az"
  179. }
  180. }
  181. },
  182. "Humanizer.Core.bg/2.14.1": {
  183. "type": "package",
  184. "dependencies": {
  185. "Humanizer.Core": "[2.14.1]"
  186. },
  187. "resource": {
  188. "lib/net6.0/bg/Humanizer.resources.dll": {
  189. "locale": "bg"
  190. }
  191. }
  192. },
  193. "Humanizer.Core.bn-BD/2.14.1": {
  194. "type": "package",
  195. "dependencies": {
  196. "Humanizer.Core": "[2.14.1]"
  197. },
  198. "resource": {
  199. "lib/net6.0/bn-BD/Humanizer.resources.dll": {
  200. "locale": "bn-BD"
  201. }
  202. }
  203. },
  204. "Humanizer.Core.cs/2.14.1": {
  205. "type": "package",
  206. "dependencies": {
  207. "Humanizer.Core": "[2.14.1]"
  208. },
  209. "resource": {
  210. "lib/net6.0/cs/Humanizer.resources.dll": {
  211. "locale": "cs"
  212. }
  213. }
  214. },
  215. "Humanizer.Core.da/2.14.1": {
  216. "type": "package",
  217. "dependencies": {
  218. "Humanizer.Core": "[2.14.1]"
  219. },
  220. "resource": {
  221. "lib/net6.0/da/Humanizer.resources.dll": {
  222. "locale": "da"
  223. }
  224. }
  225. },
  226. "Humanizer.Core.de/2.14.1": {
  227. "type": "package",
  228. "dependencies": {
  229. "Humanizer.Core": "[2.14.1]"
  230. },
  231. "resource": {
  232. "lib/net6.0/de/Humanizer.resources.dll": {
  233. "locale": "de"
  234. }
  235. }
  236. },
  237. "Humanizer.Core.el/2.14.1": {
  238. "type": "package",
  239. "dependencies": {
  240. "Humanizer.Core": "[2.14.1]"
  241. },
  242. "resource": {
  243. "lib/net6.0/el/Humanizer.resources.dll": {
  244. "locale": "el"
  245. }
  246. }
  247. },
  248. "Humanizer.Core.es/2.14.1": {
  249. "type": "package",
  250. "dependencies": {
  251. "Humanizer.Core": "[2.14.1]"
  252. },
  253. "resource": {
  254. "lib/net6.0/es/Humanizer.resources.dll": {
  255. "locale": "es"
  256. }
  257. }
  258. },
  259. "Humanizer.Core.fa/2.14.1": {
  260. "type": "package",
  261. "dependencies": {
  262. "Humanizer.Core": "[2.14.1]"
  263. },
  264. "resource": {
  265. "lib/net6.0/fa/Humanizer.resources.dll": {
  266. "locale": "fa"
  267. }
  268. }
  269. },
  270. "Humanizer.Core.fi-FI/2.14.1": {
  271. "type": "package",
  272. "dependencies": {
  273. "Humanizer.Core": "[2.14.1]"
  274. },
  275. "resource": {
  276. "lib/net6.0/fi-FI/Humanizer.resources.dll": {
  277. "locale": "fi-FI"
  278. }
  279. }
  280. },
  281. "Humanizer.Core.fr/2.14.1": {
  282. "type": "package",
  283. "dependencies": {
  284. "Humanizer.Core": "[2.14.1]"
  285. },
  286. "resource": {
  287. "lib/net6.0/fr/Humanizer.resources.dll": {
  288. "locale": "fr"
  289. }
  290. }
  291. },
  292. "Humanizer.Core.fr-BE/2.14.1": {
  293. "type": "package",
  294. "dependencies": {
  295. "Humanizer.Core": "[2.14.1]"
  296. },
  297. "resource": {
  298. "lib/net6.0/fr-BE/Humanizer.resources.dll": {
  299. "locale": "fr-BE"
  300. }
  301. }
  302. },
  303. "Humanizer.Core.he/2.14.1": {
  304. "type": "package",
  305. "dependencies": {
  306. "Humanizer.Core": "[2.14.1]"
  307. },
  308. "resource": {
  309. "lib/net6.0/he/Humanizer.resources.dll": {
  310. "locale": "he"
  311. }
  312. }
  313. },
  314. "Humanizer.Core.hr/2.14.1": {
  315. "type": "package",
  316. "dependencies": {
  317. "Humanizer.Core": "[2.14.1]"
  318. },
  319. "resource": {
  320. "lib/net6.0/hr/Humanizer.resources.dll": {
  321. "locale": "hr"
  322. }
  323. }
  324. },
  325. "Humanizer.Core.hu/2.14.1": {
  326. "type": "package",
  327. "dependencies": {
  328. "Humanizer.Core": "[2.14.1]"
  329. },
  330. "resource": {
  331. "lib/net6.0/hu/Humanizer.resources.dll": {
  332. "locale": "hu"
  333. }
  334. }
  335. },
  336. "Humanizer.Core.hy/2.14.1": {
  337. "type": "package",
  338. "dependencies": {
  339. "Humanizer.Core": "[2.14.1]"
  340. },
  341. "resource": {
  342. "lib/net6.0/hy/Humanizer.resources.dll": {
  343. "locale": "hy"
  344. }
  345. }
  346. },
  347. "Humanizer.Core.id/2.14.1": {
  348. "type": "package",
  349. "dependencies": {
  350. "Humanizer.Core": "[2.14.1]"
  351. },
  352. "resource": {
  353. "lib/net6.0/id/Humanizer.resources.dll": {
  354. "locale": "id"
  355. }
  356. }
  357. },
  358. "Humanizer.Core.is/2.14.1": {
  359. "type": "package",
  360. "dependencies": {
  361. "Humanizer.Core": "[2.14.1]"
  362. },
  363. "resource": {
  364. "lib/net6.0/is/Humanizer.resources.dll": {
  365. "locale": "is"
  366. }
  367. }
  368. },
  369. "Humanizer.Core.it/2.14.1": {
  370. "type": "package",
  371. "dependencies": {
  372. "Humanizer.Core": "[2.14.1]"
  373. },
  374. "resource": {
  375. "lib/net6.0/it/Humanizer.resources.dll": {
  376. "locale": "it"
  377. }
  378. }
  379. },
  380. "Humanizer.Core.ja/2.14.1": {
  381. "type": "package",
  382. "dependencies": {
  383. "Humanizer.Core": "[2.14.1]"
  384. },
  385. "resource": {
  386. "lib/net6.0/ja/Humanizer.resources.dll": {
  387. "locale": "ja"
  388. }
  389. }
  390. },
  391. "Humanizer.Core.ko-KR/2.14.1": {
  392. "type": "package",
  393. "dependencies": {
  394. "Humanizer.Core": "[2.14.1]"
  395. },
  396. "resource": {
  397. "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": {
  398. "locale": "ko-KR"
  399. }
  400. }
  401. },
  402. "Humanizer.Core.ku/2.14.1": {
  403. "type": "package",
  404. "dependencies": {
  405. "Humanizer.Core": "[2.14.1]"
  406. },
  407. "resource": {
  408. "lib/net6.0/ku/Humanizer.resources.dll": {
  409. "locale": "ku"
  410. }
  411. }
  412. },
  413. "Humanizer.Core.lv/2.14.1": {
  414. "type": "package",
  415. "dependencies": {
  416. "Humanizer.Core": "[2.14.1]"
  417. },
  418. "resource": {
  419. "lib/net6.0/lv/Humanizer.resources.dll": {
  420. "locale": "lv"
  421. }
  422. }
  423. },
  424. "Humanizer.Core.ms-MY/2.14.1": {
  425. "type": "package",
  426. "dependencies": {
  427. "Humanizer.Core": "[2.14.1]"
  428. },
  429. "resource": {
  430. "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": {
  431. "locale": "ms-MY"
  432. }
  433. }
  434. },
  435. "Humanizer.Core.mt/2.14.1": {
  436. "type": "package",
  437. "dependencies": {
  438. "Humanizer.Core": "[2.14.1]"
  439. },
  440. "resource": {
  441. "lib/netstandard2.0/mt/Humanizer.resources.dll": {
  442. "locale": "mt"
  443. }
  444. }
  445. },
  446. "Humanizer.Core.nb/2.14.1": {
  447. "type": "package",
  448. "dependencies": {
  449. "Humanizer.Core": "[2.14.1]"
  450. },
  451. "resource": {
  452. "lib/net6.0/nb/Humanizer.resources.dll": {
  453. "locale": "nb"
  454. }
  455. }
  456. },
  457. "Humanizer.Core.nb-NO/2.14.1": {
  458. "type": "package",
  459. "dependencies": {
  460. "Humanizer.Core": "[2.14.1]"
  461. },
  462. "resource": {
  463. "lib/net6.0/nb-NO/Humanizer.resources.dll": {
  464. "locale": "nb-NO"
  465. }
  466. }
  467. },
  468. "Humanizer.Core.nl/2.14.1": {
  469. "type": "package",
  470. "dependencies": {
  471. "Humanizer.Core": "[2.14.1]"
  472. },
  473. "resource": {
  474. "lib/net6.0/nl/Humanizer.resources.dll": {
  475. "locale": "nl"
  476. }
  477. }
  478. },
  479. "Humanizer.Core.pl/2.14.1": {
  480. "type": "package",
  481. "dependencies": {
  482. "Humanizer.Core": "[2.14.1]"
  483. },
  484. "resource": {
  485. "lib/net6.0/pl/Humanizer.resources.dll": {
  486. "locale": "pl"
  487. }
  488. }
  489. },
  490. "Humanizer.Core.pt/2.14.1": {
  491. "type": "package",
  492. "dependencies": {
  493. "Humanizer.Core": "[2.14.1]"
  494. },
  495. "resource": {
  496. "lib/net6.0/pt/Humanizer.resources.dll": {
  497. "locale": "pt"
  498. }
  499. }
  500. },
  501. "Humanizer.Core.ro/2.14.1": {
  502. "type": "package",
  503. "dependencies": {
  504. "Humanizer.Core": "[2.14.1]"
  505. },
  506. "resource": {
  507. "lib/net6.0/ro/Humanizer.resources.dll": {
  508. "locale": "ro"
  509. }
  510. }
  511. },
  512. "Humanizer.Core.ru/2.14.1": {
  513. "type": "package",
  514. "dependencies": {
  515. "Humanizer.Core": "[2.14.1]"
  516. },
  517. "resource": {
  518. "lib/net6.0/ru/Humanizer.resources.dll": {
  519. "locale": "ru"
  520. }
  521. }
  522. },
  523. "Humanizer.Core.sk/2.14.1": {
  524. "type": "package",
  525. "dependencies": {
  526. "Humanizer.Core": "[2.14.1]"
  527. },
  528. "resource": {
  529. "lib/net6.0/sk/Humanizer.resources.dll": {
  530. "locale": "sk"
  531. }
  532. }
  533. },
  534. "Humanizer.Core.sl/2.14.1": {
  535. "type": "package",
  536. "dependencies": {
  537. "Humanizer.Core": "[2.14.1]"
  538. },
  539. "resource": {
  540. "lib/net6.0/sl/Humanizer.resources.dll": {
  541. "locale": "sl"
  542. }
  543. }
  544. },
  545. "Humanizer.Core.sr/2.14.1": {
  546. "type": "package",
  547. "dependencies": {
  548. "Humanizer.Core": "[2.14.1]"
  549. },
  550. "resource": {
  551. "lib/net6.0/sr/Humanizer.resources.dll": {
  552. "locale": "sr"
  553. }
  554. }
  555. },
  556. "Humanizer.Core.sr-Latn/2.14.1": {
  557. "type": "package",
  558. "dependencies": {
  559. "Humanizer.Core": "[2.14.1]"
  560. },
  561. "resource": {
  562. "lib/net6.0/sr-Latn/Humanizer.resources.dll": {
  563. "locale": "sr-Latn"
  564. }
  565. }
  566. },
  567. "Humanizer.Core.sv/2.14.1": {
  568. "type": "package",
  569. "dependencies": {
  570. "Humanizer.Core": "[2.14.1]"
  571. },
  572. "resource": {
  573. "lib/net6.0/sv/Humanizer.resources.dll": {
  574. "locale": "sv"
  575. }
  576. }
  577. },
  578. "Humanizer.Core.th-TH/2.14.1": {
  579. "type": "package",
  580. "dependencies": {
  581. "Humanizer.Core": "[2.14.1]"
  582. },
  583. "resource": {
  584. "lib/netstandard2.0/th-TH/Humanizer.resources.dll": {
  585. "locale": "th-TH"
  586. }
  587. }
  588. },
  589. "Humanizer.Core.tr/2.14.1": {
  590. "type": "package",
  591. "dependencies": {
  592. "Humanizer.Core": "[2.14.1]"
  593. },
  594. "resource": {
  595. "lib/net6.0/tr/Humanizer.resources.dll": {
  596. "locale": "tr"
  597. }
  598. }
  599. },
  600. "Humanizer.Core.uk/2.14.1": {
  601. "type": "package",
  602. "dependencies": {
  603. "Humanizer.Core": "[2.14.1]"
  604. },
  605. "resource": {
  606. "lib/net6.0/uk/Humanizer.resources.dll": {
  607. "locale": "uk"
  608. }
  609. }
  610. },
  611. "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
  612. "type": "package",
  613. "dependencies": {
  614. "Humanizer.Core": "[2.14.1]"
  615. },
  616. "resource": {
  617. "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": {
  618. "locale": "uz-Cyrl-UZ"
  619. }
  620. }
  621. },
  622. "Humanizer.Core.uz-Latn-UZ/2.14.1": {
  623. "type": "package",
  624. "dependencies": {
  625. "Humanizer.Core": "[2.14.1]"
  626. },
  627. "resource": {
  628. "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": {
  629. "locale": "uz-Latn-UZ"
  630. }
  631. }
  632. },
  633. "Humanizer.Core.vi/2.14.1": {
  634. "type": "package",
  635. "dependencies": {
  636. "Humanizer.Core": "[2.14.1]"
  637. },
  638. "resource": {
  639. "lib/net6.0/vi/Humanizer.resources.dll": {
  640. "locale": "vi"
  641. }
  642. }
  643. },
  644. "Humanizer.Core.zh-CN/2.14.1": {
  645. "type": "package",
  646. "dependencies": {
  647. "Humanizer.Core": "[2.14.1]"
  648. },
  649. "resource": {
  650. "lib/net6.0/zh-CN/Humanizer.resources.dll": {
  651. "locale": "zh-CN"
  652. }
  653. }
  654. },
  655. "Humanizer.Core.zh-Hans/2.14.1": {
  656. "type": "package",
  657. "dependencies": {
  658. "Humanizer.Core": "[2.14.1]"
  659. },
  660. "resource": {
  661. "lib/net6.0/zh-Hans/Humanizer.resources.dll": {
  662. "locale": "zh-Hans"
  663. }
  664. }
  665. },
  666. "Humanizer.Core.zh-Hant/2.14.1": {
  667. "type": "package",
  668. "dependencies": {
  669. "Humanizer.Core": "[2.14.1]"
  670. },
  671. "resource": {
  672. "lib/net6.0/zh-Hant/Humanizer.resources.dll": {
  673. "locale": "zh-Hant"
  674. }
  675. }
  676. },
  677. "LiteDB/5.0.21": {
  678. "type": "package",
  679. "dependencies": {
  680. "System.Buffers": "4.5.1"
  681. },
  682. "compile": {
  683. "lib/netstandard2.0/LiteDB.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "runtime": {
  688. "lib/netstandard2.0/LiteDB.dll": {
  689. "related": ".xml"
  690. }
  691. }
  692. },
  693. "Microsoft.AspNet.WebApi.Client/6.0.0": {
  694. "type": "package",
  695. "dependencies": {
  696. "Newtonsoft.Json": "13.0.1",
  697. "Newtonsoft.Json.Bson": "1.0.2",
  698. "System.Memory": "4.5.5",
  699. "System.Threading.Tasks.Extensions": "4.5.4"
  700. },
  701. "compile": {
  702. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  703. "related": ".xml"
  704. }
  705. },
  706. "runtime": {
  707. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  708. "related": ".xml"
  709. }
  710. }
  711. },
  712. "Microsoft.AspNet.WebApi.Core/5.3.0": {
  713. "type": "package",
  714. "dependencies": {
  715. "Microsoft.AspNet.WebApi.Client": "6.0.0"
  716. },
  717. "compile": {
  718. "lib/net45/System.Web.Http.dll": {
  719. "related": ".xml"
  720. }
  721. },
  722. "runtime": {
  723. "lib/net45/System.Web.Http.dll": {
  724. "related": ".xml"
  725. }
  726. }
  727. },
  728. "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.13": {
  729. "type": "package",
  730. "dependencies": {
  731. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2"
  732. },
  733. "compile": {
  734. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  735. "related": ".xml"
  736. }
  737. },
  738. "runtime": {
  739. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  740. "related": ".xml"
  741. }
  742. },
  743. "frameworkReferences": [
  744. "Microsoft.AspNetCore.App"
  745. ]
  746. },
  747. "Microsoft.AspNetCore.Cryptography.Internal/8.0.13": {
  748. "type": "package",
  749. "compile": {
  750. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  751. "related": ".xml"
  752. }
  753. },
  754. "runtime": {
  755. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  756. "related": ".xml"
  757. }
  758. }
  759. },
  760. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.13": {
  761. "type": "package",
  762. "dependencies": {
  763. "Microsoft.AspNetCore.Cryptography.Internal": "8.0.13"
  764. },
  765. "compile": {
  766. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  767. "related": ".xml"
  768. }
  769. },
  770. "runtime": {
  771. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  772. "related": ".xml"
  773. }
  774. }
  775. },
  776. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.13": {
  777. "type": "package",
  778. "dependencies": {
  779. "Microsoft.EntityFrameworkCore.Relational": "8.0.13",
  780. "Microsoft.Extensions.Identity.Stores": "8.0.13"
  781. },
  782. "compile": {
  783. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  784. "related": ".xml"
  785. }
  786. },
  787. "runtime": {
  788. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  789. "related": ".xml"
  790. }
  791. }
  792. },
  793. "Microsoft.AspNetCore.Identity.UI/8.0.13": {
  794. "type": "package",
  795. "dependencies": {
  796. "Microsoft.Extensions.FileProviders.Embedded": "8.0.13",
  797. "Microsoft.Extensions.Identity.Stores": "8.0.13"
  798. },
  799. "compile": {
  800. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.dll": {
  801. "related": ".xml"
  802. }
  803. },
  804. "runtime": {
  805. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.dll": {
  806. "related": ".xml"
  807. }
  808. },
  809. "frameworkReferences": [
  810. "Microsoft.AspNetCore.App"
  811. ],
  812. "build": {
  813. "build/Microsoft.AspNetCore.Identity.UI.props": {},
  814. "buildTransitive/Microsoft.AspNetCore.Identity.UI.targets": {}
  815. },
  816. "buildMultiTargeting": {
  817. "buildMultiTargeting/Microsoft.AspNetCore.Identity.UI.targets": {}
  818. }
  819. },
  820. "Microsoft.AspNetCore.Razor.Language/6.0.24": {
  821. "type": "package",
  822. "compile": {
  823. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  824. },
  825. "runtime": {
  826. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  827. }
  828. },
  829. "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
  830. "type": "package",
  831. "compile": {
  832. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  833. "related": ".xml"
  834. }
  835. },
  836. "runtime": {
  837. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  838. "related": ".xml"
  839. }
  840. }
  841. },
  842. "Microsoft.Build/17.8.3": {
  843. "type": "package",
  844. "dependencies": {
  845. "Microsoft.Build.Framework": "17.8.3",
  846. "Microsoft.NET.StringTools": "17.8.3",
  847. "System.Collections.Immutable": "7.0.0",
  848. "System.Configuration.ConfigurationManager": "7.0.0",
  849. "System.Reflection.Metadata": "7.0.0",
  850. "System.Reflection.MetadataLoadContext": "7.0.0",
  851. "System.Security.Principal.Windows": "5.0.0",
  852. "System.Threading.Tasks.Dataflow": "7.0.0"
  853. },
  854. "compile": {
  855. "ref/net8.0/Microsoft.Build.dll": {
  856. "related": ".xml"
  857. }
  858. },
  859. "runtime": {
  860. "lib/net8.0/Microsoft.Build.dll": {
  861. "related": ".pdb;.xml"
  862. }
  863. }
  864. },
  865. "Microsoft.Build.Framework/17.8.3": {
  866. "type": "package",
  867. "compile": {
  868. "ref/net8.0/Microsoft.Build.Framework.dll": {
  869. "related": ".xml"
  870. }
  871. },
  872. "runtime": {
  873. "lib/net8.0/Microsoft.Build.Framework.dll": {
  874. "related": ".pdb;.xml"
  875. }
  876. }
  877. },
  878. "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
  879. "type": "package",
  880. "build": {
  881. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {},
  882. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {}
  883. }
  884. },
  885. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  886. "type": "package",
  887. "compile": {
  888. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
  889. "related": ".xml"
  890. }
  891. },
  892. "runtime": {
  893. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
  894. "related": ".xml"
  895. }
  896. }
  897. },
  898. "Microsoft.CodeAnalysis.Common/4.8.0": {
  899. "type": "package",
  900. "dependencies": {
  901. "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
  902. "System.Collections.Immutable": "7.0.0",
  903. "System.Reflection.Metadata": "7.0.0",
  904. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  905. },
  906. "compile": {
  907. "lib/net7.0/Microsoft.CodeAnalysis.dll": {
  908. "related": ".pdb;.xml"
  909. }
  910. },
  911. "runtime": {
  912. "lib/net7.0/Microsoft.CodeAnalysis.dll": {
  913. "related": ".pdb;.xml"
  914. }
  915. },
  916. "resource": {
  917. "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
  918. "locale": "cs"
  919. },
  920. "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
  921. "locale": "de"
  922. },
  923. "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
  924. "locale": "es"
  925. },
  926. "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
  927. "locale": "fr"
  928. },
  929. "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
  930. "locale": "it"
  931. },
  932. "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
  933. "locale": "ja"
  934. },
  935. "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
  936. "locale": "ko"
  937. },
  938. "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
  939. "locale": "pl"
  940. },
  941. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  942. "locale": "pt-BR"
  943. },
  944. "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
  945. "locale": "ru"
  946. },
  947. "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
  948. "locale": "tr"
  949. },
  950. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  951. "locale": "zh-Hans"
  952. },
  953. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  954. "locale": "zh-Hant"
  955. }
  956. }
  957. },
  958. "Microsoft.CodeAnalysis.CSharp/4.8.0": {
  959. "type": "package",
  960. "dependencies": {
  961. "Microsoft.CodeAnalysis.Common": "[4.8.0]"
  962. },
  963. "compile": {
  964. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
  965. "related": ".pdb;.xml"
  966. }
  967. },
  968. "runtime": {
  969. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
  970. "related": ".pdb;.xml"
  971. }
  972. },
  973. "resource": {
  974. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  975. "locale": "cs"
  976. },
  977. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  978. "locale": "de"
  979. },
  980. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  981. "locale": "es"
  982. },
  983. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  984. "locale": "fr"
  985. },
  986. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  987. "locale": "it"
  988. },
  989. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  990. "locale": "ja"
  991. },
  992. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  993. "locale": "ko"
  994. },
  995. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  996. "locale": "pl"
  997. },
  998. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  999. "locale": "pt-BR"
  1000. },
  1001. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  1002. "locale": "ru"
  1003. },
  1004. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  1005. "locale": "tr"
  1006. },
  1007. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  1008. "locale": "zh-Hans"
  1009. },
  1010. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  1011. "locale": "zh-Hant"
  1012. }
  1013. }
  1014. },
  1015. "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Humanizer.Core": "2.14.1",
  1019. "Microsoft.CodeAnalysis.CSharp": "[4.8.0]",
  1020. "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.8.0]",
  1021. "Microsoft.CodeAnalysis.Common": "[4.8.0]",
  1022. "Microsoft.CodeAnalysis.Features": "[4.8.0]",
  1023. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]"
  1024. },
  1025. "compile": {
  1026. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
  1027. "related": ".pdb;.xml"
  1028. }
  1029. },
  1030. "runtime": {
  1031. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
  1032. "related": ".pdb;.xml"
  1033. }
  1034. },
  1035. "resource": {
  1036. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1037. "locale": "cs"
  1038. },
  1039. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1040. "locale": "de"
  1041. },
  1042. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1043. "locale": "es"
  1044. },
  1045. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1046. "locale": "fr"
  1047. },
  1048. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1049. "locale": "it"
  1050. },
  1051. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1052. "locale": "ja"
  1053. },
  1054. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1055. "locale": "ko"
  1056. },
  1057. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1058. "locale": "pl"
  1059. },
  1060. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1061. "locale": "pt-BR"
  1062. },
  1063. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1064. "locale": "ru"
  1065. },
  1066. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1067. "locale": "tr"
  1068. },
  1069. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1070. "locale": "zh-Hans"
  1071. },
  1072. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  1073. "locale": "zh-Hant"
  1074. }
  1075. }
  1076. },
  1077. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
  1078. "type": "package",
  1079. "dependencies": {
  1080. "Humanizer.Core": "2.14.1",
  1081. "Microsoft.CodeAnalysis.CSharp": "[4.8.0]",
  1082. "Microsoft.CodeAnalysis.Common": "[4.8.0]",
  1083. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]"
  1084. },
  1085. "compile": {
  1086. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  1087. "related": ".pdb;.xml"
  1088. }
  1089. },
  1090. "runtime": {
  1091. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  1092. "related": ".pdb;.xml"
  1093. }
  1094. },
  1095. "resource": {
  1096. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1097. "locale": "cs"
  1098. },
  1099. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1100. "locale": "de"
  1101. },
  1102. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1103. "locale": "es"
  1104. },
  1105. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1106. "locale": "fr"
  1107. },
  1108. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1109. "locale": "it"
  1110. },
  1111. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1112. "locale": "ja"
  1113. },
  1114. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1115. "locale": "ko"
  1116. },
  1117. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1118. "locale": "pl"
  1119. },
  1120. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1121. "locale": "pt-BR"
  1122. },
  1123. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1124. "locale": "ru"
  1125. },
  1126. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1127. "locale": "tr"
  1128. },
  1129. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1130. "locale": "zh-Hans"
  1131. },
  1132. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1133. "locale": "zh-Hant"
  1134. }
  1135. }
  1136. },
  1137. "Microsoft.CodeAnalysis.Elfie/1.0.0": {
  1138. "type": "package",
  1139. "dependencies": {
  1140. "System.Configuration.ConfigurationManager": "4.5.0",
  1141. "System.Data.DataSetExtensions": "4.5.0"
  1142. },
  1143. "compile": {
  1144. "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
  1145. },
  1146. "runtime": {
  1147. "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
  1148. }
  1149. },
  1150. "Microsoft.CodeAnalysis.Features/4.8.0": {
  1151. "type": "package",
  1152. "dependencies": {
  1153. "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
  1154. "Microsoft.CodeAnalysis.Common": "[4.8.0]",
  1155. "Microsoft.CodeAnalysis.Elfie": "1.0.0",
  1156. "Microsoft.CodeAnalysis.Scripting.Common": "[4.8.0]",
  1157. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]",
  1158. "Microsoft.DiaSymReader": "2.0.0",
  1159. "System.Text.Json": "7.0.3"
  1160. },
  1161. "compile": {
  1162. "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
  1163. "related": ".pdb;.xml"
  1164. }
  1165. },
  1166. "runtime": {
  1167. "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
  1168. "related": ".pdb;.xml"
  1169. }
  1170. },
  1171. "resource": {
  1172. "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
  1173. "locale": "cs"
  1174. },
  1175. "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": {
  1176. "locale": "de"
  1177. },
  1178. "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": {
  1179. "locale": "es"
  1180. },
  1181. "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
  1182. "locale": "fr"
  1183. },
  1184. "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": {
  1185. "locale": "it"
  1186. },
  1187. "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
  1188. "locale": "ja"
  1189. },
  1190. "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
  1191. "locale": "ko"
  1192. },
  1193. "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
  1194. "locale": "pl"
  1195. },
  1196. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
  1197. "locale": "pt-BR"
  1198. },
  1199. "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
  1200. "locale": "ru"
  1201. },
  1202. "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
  1203. "locale": "tr"
  1204. },
  1205. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
  1206. "locale": "zh-Hans"
  1207. },
  1208. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
  1209. "locale": "zh-Hant"
  1210. }
  1211. }
  1212. },
  1213. "Microsoft.CodeAnalysis.Razor/6.0.24": {
  1214. "type": "package",
  1215. "dependencies": {
  1216. "Microsoft.AspNetCore.Razor.Language": "6.0.24",
  1217. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  1218. "Microsoft.CodeAnalysis.Common": "4.0.0"
  1219. },
  1220. "compile": {
  1221. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  1222. },
  1223. "runtime": {
  1224. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  1225. }
  1226. },
  1227. "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
  1228. "type": "package",
  1229. "dependencies": {
  1230. "Microsoft.CodeAnalysis.Common": "[4.8.0]"
  1231. },
  1232. "compile": {
  1233. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
  1234. "related": ".pdb;.xml"
  1235. }
  1236. },
  1237. "runtime": {
  1238. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
  1239. "related": ".pdb;.xml"
  1240. }
  1241. },
  1242. "resource": {
  1243. "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1244. "locale": "cs"
  1245. },
  1246. "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1247. "locale": "de"
  1248. },
  1249. "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1250. "locale": "es"
  1251. },
  1252. "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1253. "locale": "fr"
  1254. },
  1255. "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1256. "locale": "it"
  1257. },
  1258. "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1259. "locale": "ja"
  1260. },
  1261. "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1262. "locale": "ko"
  1263. },
  1264. "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1265. "locale": "pl"
  1266. },
  1267. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1268. "locale": "pt-BR"
  1269. },
  1270. "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1271. "locale": "ru"
  1272. },
  1273. "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1274. "locale": "tr"
  1275. },
  1276. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1277. "locale": "zh-Hans"
  1278. },
  1279. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1280. "locale": "zh-Hant"
  1281. }
  1282. }
  1283. },
  1284. "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
  1285. "type": "package",
  1286. "dependencies": {
  1287. "Humanizer.Core": "2.14.1",
  1288. "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
  1289. "Microsoft.CodeAnalysis.Common": "[4.8.0]",
  1290. "System.Composition": "7.0.0",
  1291. "System.IO.Pipelines": "7.0.0",
  1292. "System.Threading.Channels": "7.0.0"
  1293. },
  1294. "compile": {
  1295. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
  1296. "related": ".pdb;.xml"
  1297. }
  1298. },
  1299. "runtime": {
  1300. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
  1301. "related": ".pdb;.xml"
  1302. }
  1303. },
  1304. "resource": {
  1305. "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1306. "locale": "cs"
  1307. },
  1308. "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1309. "locale": "de"
  1310. },
  1311. "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1312. "locale": "es"
  1313. },
  1314. "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1315. "locale": "fr"
  1316. },
  1317. "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1318. "locale": "it"
  1319. },
  1320. "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1321. "locale": "ja"
  1322. },
  1323. "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1324. "locale": "ko"
  1325. },
  1326. "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1327. "locale": "pl"
  1328. },
  1329. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1330. "locale": "pt-BR"
  1331. },
  1332. "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1333. "locale": "ru"
  1334. },
  1335. "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1336. "locale": "tr"
  1337. },
  1338. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1339. "locale": "zh-Hans"
  1340. },
  1341. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1342. "locale": "zh-Hant"
  1343. }
  1344. }
  1345. },
  1346. "Microsoft.Data.SqlClient/5.1.6": {
  1347. "type": "package",
  1348. "dependencies": {
  1349. "Azure.Identity": "1.11.4",
  1350. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
  1351. "Microsoft.Identity.Client": "4.61.3",
  1352. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  1353. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
  1354. "Microsoft.SqlServer.Server": "1.0.0",
  1355. "System.Configuration.ConfigurationManager": "6.0.1",
  1356. "System.Diagnostics.DiagnosticSource": "6.0.1",
  1357. "System.Runtime.Caching": "6.0.0",
  1358. "System.Security.Cryptography.Cng": "5.0.0",
  1359. "System.Security.Principal.Windows": "5.0.0",
  1360. "System.Text.Encoding.CodePages": "6.0.0",
  1361. "System.Text.Encodings.Web": "6.0.0"
  1362. },
  1363. "compile": {
  1364. "ref/net6.0/Microsoft.Data.SqlClient.dll": {
  1365. "related": ".pdb;.xml"
  1366. }
  1367. },
  1368. "runtime": {
  1369. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  1370. "related": ".pdb;.xml"
  1371. }
  1372. },
  1373. "runtimeTargets": {
  1374. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  1375. "assetType": "runtime",
  1376. "rid": "unix"
  1377. },
  1378. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  1379. "assetType": "runtime",
  1380. "rid": "win"
  1381. }
  1382. }
  1383. },
  1384. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  1385. "type": "package",
  1386. "runtimeTargets": {
  1387. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  1388. "assetType": "native",
  1389. "rid": "win-arm"
  1390. },
  1391. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  1392. "assetType": "native",
  1393. "rid": "win-arm64"
  1394. },
  1395. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  1396. "assetType": "native",
  1397. "rid": "win-x64"
  1398. },
  1399. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  1400. "assetType": "native",
  1401. "rid": "win-x86"
  1402. }
  1403. }
  1404. },
  1405. "Microsoft.DiaSymReader/2.0.0": {
  1406. "type": "package",
  1407. "compile": {
  1408. "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
  1409. "related": ".pdb;.xml"
  1410. }
  1411. },
  1412. "runtime": {
  1413. "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
  1414. "related": ".pdb;.xml"
  1415. }
  1416. }
  1417. },
  1418. "Microsoft.DotNet.Scaffolding.Shared/8.0.7": {
  1419. "type": "package",
  1420. "dependencies": {
  1421. "Humanizer": "2.14.1",
  1422. "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
  1423. "Microsoft.Extensions.DependencyModel": "8.0.2",
  1424. "Mono.TextTemplating": "2.3.1",
  1425. "Newtonsoft.Json": "13.0.3",
  1426. "NuGet.ProjectModel": "6.11.0",
  1427. "System.Formats.Asn1": "8.0.1"
  1428. },
  1429. "compile": {
  1430. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
  1431. "related": ".xml"
  1432. }
  1433. },
  1434. "runtime": {
  1435. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
  1436. "related": ".xml"
  1437. }
  1438. }
  1439. },
  1440. "Microsoft.EntityFrameworkCore/8.0.13": {
  1441. "type": "package",
  1442. "dependencies": {
  1443. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.13",
  1444. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.13",
  1445. "Microsoft.Extensions.Caching.Memory": "8.0.1",
  1446. "Microsoft.Extensions.Logging": "8.0.1"
  1447. },
  1448. "compile": {
  1449. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  1450. "related": ".xml"
  1451. }
  1452. },
  1453. "runtime": {
  1454. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  1455. "related": ".xml"
  1456. }
  1457. },
  1458. "build": {
  1459. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
  1460. }
  1461. },
  1462. "Microsoft.EntityFrameworkCore.Abstractions/8.0.13": {
  1463. "type": "package",
  1464. "compile": {
  1465. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1466. "related": ".xml"
  1467. }
  1468. },
  1469. "runtime": {
  1470. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1471. "related": ".xml"
  1472. }
  1473. }
  1474. },
  1475. "Microsoft.EntityFrameworkCore.Analyzers/8.0.13": {
  1476. "type": "package",
  1477. "compile": {
  1478. "lib/netstandard2.0/_._": {}
  1479. },
  1480. "runtime": {
  1481. "lib/netstandard2.0/_._": {}
  1482. }
  1483. },
  1484. "Microsoft.EntityFrameworkCore.Design/8.0.13": {
  1485. "type": "package",
  1486. "dependencies": {
  1487. "Humanizer.Core": "2.14.1",
  1488. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
  1489. "Microsoft.EntityFrameworkCore.Relational": "8.0.13",
  1490. "Microsoft.Extensions.DependencyModel": "8.0.2",
  1491. "Mono.TextTemplating": "2.2.1"
  1492. },
  1493. "compile": {
  1494. "lib/net8.0/_._": {
  1495. "related": ".xml"
  1496. }
  1497. },
  1498. "runtime": {
  1499. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
  1500. "related": ".xml"
  1501. }
  1502. },
  1503. "build": {
  1504. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
  1505. }
  1506. },
  1507. "Microsoft.EntityFrameworkCore.Relational/8.0.13": {
  1508. "type": "package",
  1509. "dependencies": {
  1510. "Microsoft.EntityFrameworkCore": "8.0.13",
  1511. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  1512. },
  1513. "compile": {
  1514. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  1515. "related": ".xml"
  1516. }
  1517. },
  1518. "runtime": {
  1519. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  1520. "related": ".xml"
  1521. }
  1522. }
  1523. },
  1524. "Microsoft.EntityFrameworkCore.SqlServer/8.0.13": {
  1525. "type": "package",
  1526. "dependencies": {
  1527. "Microsoft.Data.SqlClient": "5.1.6",
  1528. "Microsoft.EntityFrameworkCore.Relational": "8.0.13",
  1529. "System.Formats.Asn1": "8.0.2"
  1530. },
  1531. "compile": {
  1532. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1533. "related": ".xml"
  1534. }
  1535. },
  1536. "runtime": {
  1537. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1538. "related": ".xml"
  1539. }
  1540. }
  1541. },
  1542. "Microsoft.EntityFrameworkCore.Tools/8.0.13": {
  1543. "type": "package",
  1544. "dependencies": {
  1545. "Microsoft.EntityFrameworkCore.Design": "8.0.13"
  1546. },
  1547. "compile": {
  1548. "lib/net8.0/_._": {}
  1549. },
  1550. "runtime": {
  1551. "lib/net8.0/_._": {}
  1552. }
  1553. },
  1554. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  1555. "type": "package",
  1556. "dependencies": {
  1557. "Microsoft.Extensions.Primitives": "8.0.0"
  1558. },
  1559. "compile": {
  1560. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1561. "related": ".xml"
  1562. }
  1563. },
  1564. "runtime": {
  1565. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1566. "related": ".xml"
  1567. }
  1568. },
  1569. "build": {
  1570. "buildTransitive/net6.0/_._": {}
  1571. }
  1572. },
  1573. "Microsoft.Extensions.Caching.Memory/8.0.1": {
  1574. "type": "package",
  1575. "dependencies": {
  1576. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  1577. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
  1578. "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
  1579. "Microsoft.Extensions.Options": "8.0.2",
  1580. "Microsoft.Extensions.Primitives": "8.0.0"
  1581. },
  1582. "compile": {
  1583. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  1584. "related": ".xml"
  1585. }
  1586. },
  1587. "runtime": {
  1588. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  1589. "related": ".xml"
  1590. }
  1591. },
  1592. "build": {
  1593. "buildTransitive/net6.0/_._": {}
  1594. }
  1595. },
  1596. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  1597. "type": "package",
  1598. "dependencies": {
  1599. "Microsoft.Extensions.Primitives": "8.0.0"
  1600. },
  1601. "compile": {
  1602. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1603. "related": ".xml"
  1604. }
  1605. },
  1606. "runtime": {
  1607. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1608. "related": ".xml"
  1609. }
  1610. },
  1611. "build": {
  1612. "buildTransitive/net6.0/_._": {}
  1613. }
  1614. },
  1615. "Microsoft.Extensions.DependencyInjection/8.0.1": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
  1619. },
  1620. "compile": {
  1621. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  1622. "related": ".xml"
  1623. }
  1624. },
  1625. "runtime": {
  1626. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  1627. "related": ".xml"
  1628. }
  1629. },
  1630. "build": {
  1631. "buildTransitive/net6.0/_._": {}
  1632. }
  1633. },
  1634. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
  1635. "type": "package",
  1636. "compile": {
  1637. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1638. "related": ".xml"
  1639. }
  1640. },
  1641. "runtime": {
  1642. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1643. "related": ".xml"
  1644. }
  1645. },
  1646. "build": {
  1647. "buildTransitive/net6.0/_._": {}
  1648. }
  1649. },
  1650. "Microsoft.Extensions.DependencyModel/8.0.2": {
  1651. "type": "package",
  1652. "compile": {
  1653. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  1654. "related": ".xml"
  1655. }
  1656. },
  1657. "runtime": {
  1658. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  1659. "related": ".xml"
  1660. }
  1661. },
  1662. "build": {
  1663. "buildTransitive/net6.0/_._": {}
  1664. }
  1665. },
  1666. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  1667. "type": "package",
  1668. "dependencies": {
  1669. "Microsoft.Extensions.Primitives": "8.0.0"
  1670. },
  1671. "compile": {
  1672. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1673. "related": ".xml"
  1674. }
  1675. },
  1676. "runtime": {
  1677. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1678. "related": ".xml"
  1679. }
  1680. },
  1681. "build": {
  1682. "buildTransitive/net6.0/_._": {}
  1683. }
  1684. },
  1685. "Microsoft.Extensions.FileProviders.Embedded/8.0.13": {
  1686. "type": "package",
  1687. "dependencies": {
  1688. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0"
  1689. },
  1690. "compile": {
  1691. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1692. "related": ".xml"
  1693. }
  1694. },
  1695. "runtime": {
  1696. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1697. "related": ".xml"
  1698. }
  1699. },
  1700. "build": {
  1701. "build/netstandard2.0/_._": {}
  1702. },
  1703. "buildMultiTargeting": {
  1704. "buildMultiTargeting/_._": {}
  1705. }
  1706. },
  1707. "Microsoft.Extensions.Identity.Core/8.0.13": {
  1708. "type": "package",
  1709. "dependencies": {
  1710. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.13",
  1711. "Microsoft.Extensions.Logging": "8.0.1",
  1712. "Microsoft.Extensions.Options": "8.0.2"
  1713. },
  1714. "compile": {
  1715. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  1716. "related": ".xml"
  1717. }
  1718. },
  1719. "runtime": {
  1720. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  1721. "related": ".xml"
  1722. }
  1723. }
  1724. },
  1725. "Microsoft.Extensions.Identity.Stores/8.0.13": {
  1726. "type": "package",
  1727. "dependencies": {
  1728. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  1729. "Microsoft.Extensions.Identity.Core": "8.0.13",
  1730. "Microsoft.Extensions.Logging": "8.0.1"
  1731. },
  1732. "compile": {
  1733. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  1734. "related": ".xml"
  1735. }
  1736. },
  1737. "runtime": {
  1738. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "Microsoft.Extensions.Logging/8.0.1": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.Extensions.DependencyInjection": "8.0.1",
  1747. "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
  1748. "Microsoft.Extensions.Options": "8.0.2"
  1749. },
  1750. "compile": {
  1751. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  1752. "related": ".xml"
  1753. }
  1754. },
  1755. "runtime": {
  1756. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  1757. "related": ".xml"
  1758. }
  1759. },
  1760. "build": {
  1761. "buildTransitive/net6.0/_._": {}
  1762. }
  1763. },
  1764. "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
  1765. "type": "package",
  1766. "dependencies": {
  1767. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
  1768. },
  1769. "compile": {
  1770. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1771. "related": ".xml"
  1772. }
  1773. },
  1774. "runtime": {
  1775. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1776. "related": ".xml"
  1777. }
  1778. },
  1779. "build": {
  1780. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  1781. }
  1782. },
  1783. "Microsoft.Extensions.Options/8.0.2": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  1787. "Microsoft.Extensions.Primitives": "8.0.0"
  1788. },
  1789. "compile": {
  1790. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  1791. "related": ".xml"
  1792. }
  1793. },
  1794. "runtime": {
  1795. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  1796. "related": ".xml"
  1797. }
  1798. },
  1799. "build": {
  1800. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
  1801. }
  1802. },
  1803. "Microsoft.Extensions.Primitives/8.0.0": {
  1804. "type": "package",
  1805. "compile": {
  1806. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  1807. "related": ".xml"
  1808. }
  1809. },
  1810. "runtime": {
  1811. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  1812. "related": ".xml"
  1813. }
  1814. },
  1815. "build": {
  1816. "buildTransitive/net6.0/_._": {}
  1817. }
  1818. },
  1819. "Microsoft.Identity.Client/4.61.3": {
  1820. "type": "package",
  1821. "dependencies": {
  1822. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  1823. "System.Diagnostics.DiagnosticSource": "6.0.1"
  1824. },
  1825. "compile": {
  1826. "lib/net6.0/Microsoft.Identity.Client.dll": {
  1827. "related": ".xml"
  1828. }
  1829. },
  1830. "runtime": {
  1831. "lib/net6.0/Microsoft.Identity.Client.dll": {
  1832. "related": ".xml"
  1833. }
  1834. }
  1835. },
  1836. "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "Microsoft.Identity.Client": "4.61.3",
  1840. "System.Security.Cryptography.ProtectedData": "4.5.0"
  1841. },
  1842. "compile": {
  1843. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  1844. "related": ".xml"
  1845. }
  1846. },
  1847. "runtime": {
  1848. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  1849. "related": ".xml"
  1850. }
  1851. }
  1852. },
  1853. "Microsoft.IdentityModel.Abstractions/7.1.2": {
  1854. "type": "package",
  1855. "compile": {
  1856. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
  1857. "related": ".xml"
  1858. }
  1859. },
  1860. "runtime": {
  1861. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
  1862. "related": ".xml"
  1863. }
  1864. }
  1865. },
  1866. "Microsoft.IdentityModel.JsonWebTokens/7.1.2": {
  1867. "type": "package",
  1868. "dependencies": {
  1869. "Microsoft.IdentityModel.Tokens": "7.1.2"
  1870. },
  1871. "compile": {
  1872. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1873. "related": ".xml"
  1874. }
  1875. },
  1876. "runtime": {
  1877. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1878. "related": ".xml"
  1879. }
  1880. }
  1881. },
  1882. "Microsoft.IdentityModel.Logging/7.1.2": {
  1883. "type": "package",
  1884. "dependencies": {
  1885. "Microsoft.IdentityModel.Abstractions": "7.1.2"
  1886. },
  1887. "compile": {
  1888. "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
  1889. "related": ".xml"
  1890. }
  1891. },
  1892. "runtime": {
  1893. "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
  1894. "related": ".xml"
  1895. }
  1896. }
  1897. },
  1898. "Microsoft.IdentityModel.Protocols/7.1.2": {
  1899. "type": "package",
  1900. "dependencies": {
  1901. "Microsoft.IdentityModel.Logging": "7.1.2",
  1902. "Microsoft.IdentityModel.Tokens": "7.1.2"
  1903. },
  1904. "compile": {
  1905. "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
  1906. "related": ".xml"
  1907. }
  1908. },
  1909. "runtime": {
  1910. "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
  1911. "related": ".xml"
  1912. }
  1913. }
  1914. },
  1915. "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
  1916. "type": "package",
  1917. "dependencies": {
  1918. "Microsoft.IdentityModel.Protocols": "7.1.2",
  1919. "System.IdentityModel.Tokens.Jwt": "7.1.2"
  1920. },
  1921. "compile": {
  1922. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1923. "related": ".xml"
  1924. }
  1925. },
  1926. "runtime": {
  1927. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1928. "related": ".xml"
  1929. }
  1930. }
  1931. },
  1932. "Microsoft.IdentityModel.Tokens/7.1.2": {
  1933. "type": "package",
  1934. "dependencies": {
  1935. "Microsoft.IdentityModel.Logging": "7.1.2"
  1936. },
  1937. "compile": {
  1938. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
  1939. "related": ".xml"
  1940. }
  1941. },
  1942. "runtime": {
  1943. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
  1944. "related": ".xml"
  1945. }
  1946. }
  1947. },
  1948. "Microsoft.NET.StringTools/17.8.3": {
  1949. "type": "package",
  1950. "compile": {
  1951. "ref/net8.0/Microsoft.NET.StringTools.dll": {
  1952. "related": ".xml"
  1953. }
  1954. },
  1955. "runtime": {
  1956. "lib/net8.0/Microsoft.NET.StringTools.dll": {
  1957. "related": ".pdb;.xml"
  1958. }
  1959. }
  1960. },
  1961. "Microsoft.SqlServer.Server/1.0.0": {
  1962. "type": "package",
  1963. "compile": {
  1964. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  1965. "related": ".pdb;.xml"
  1966. }
  1967. },
  1968. "runtime": {
  1969. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  1970. "related": ".pdb;.xml"
  1971. }
  1972. }
  1973. },
  1974. "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "Microsoft.Extensions.DependencyInjection": "8.0.1",
  1978. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "8.0.7"
  1979. },
  1980. "compile": {
  1981. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1982. "related": ".xml"
  1983. }
  1984. },
  1985. "runtime": {
  1986. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1987. "related": ".xml"
  1988. }
  1989. }
  1990. },
  1991. "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": {
  1992. "type": "package",
  1993. "dependencies": {
  1994. "Microsoft.Extensions.DependencyInjection": "8.0.1",
  1995. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "8.0.7",
  1996. "Newtonsoft.Json": "13.0.3"
  1997. },
  1998. "compile": {
  1999. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  2000. "related": ".xml"
  2001. }
  2002. },
  2003. "runtime": {
  2004. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  2005. "related": ".xml"
  2006. }
  2007. }
  2008. },
  2009. "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": {
  2010. "type": "package",
  2011. "dependencies": {
  2012. "Microsoft.DotNet.Scaffolding.Shared": "8.0.7",
  2013. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "8.0.7"
  2014. },
  2015. "compile": {
  2016. "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
  2017. "related": ".xml"
  2018. }
  2019. },
  2020. "runtime": {
  2021. "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
  2022. "related": ".xml"
  2023. }
  2024. }
  2025. },
  2026. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": {
  2027. "type": "package",
  2028. "dependencies": {
  2029. "Microsoft.DotNet.Scaffolding.Shared": "8.0.7",
  2030. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "8.0.7"
  2031. },
  2032. "compile": {
  2033. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  2034. "related": ".runtimeconfig.json;.xml"
  2035. }
  2036. },
  2037. "runtime": {
  2038. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  2039. "related": ".runtimeconfig.json;.xml"
  2040. }
  2041. }
  2042. },
  2043. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": {
  2044. "type": "package",
  2045. "dependencies": {
  2046. "Microsoft.AspNetCore.Razor.Language": "6.0.24",
  2047. "Microsoft.CodeAnalysis.CSharp": "4.8.0",
  2048. "Microsoft.CodeAnalysis.Razor": "6.0.24",
  2049. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "8.0.7"
  2050. },
  2051. "compile": {
  2052. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  2053. "related": ".xml"
  2054. }
  2055. },
  2056. "runtime": {
  2057. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  2058. "related": ".xml"
  2059. }
  2060. }
  2061. },
  2062. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": {
  2063. "type": "package",
  2064. "dependencies": {
  2065. "Microsoft.Build": "17.8.3",
  2066. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
  2067. "Microsoft.DotNet.Scaffolding.Shared": "8.0.7",
  2068. "Newtonsoft.Json": "13.0.3"
  2069. },
  2070. "compile": {
  2071. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  2072. "related": ".xml"
  2073. }
  2074. },
  2075. "runtime": {
  2076. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  2077. "related": ".xml"
  2078. }
  2079. }
  2080. },
  2081. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": {
  2082. "type": "package",
  2083. "dependencies": {
  2084. "Microsoft.DotNet.Scaffolding.Shared": "8.0.7",
  2085. "Microsoft.VisualStudio.Web.CodeGeneration": "8.0.7"
  2086. },
  2087. "compile": {
  2088. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  2089. "related": ".xml"
  2090. }
  2091. },
  2092. "runtime": {
  2093. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  2094. "related": ".xml"
  2095. }
  2096. }
  2097. },
  2098. "Microsoft.Win32.SystemEvents/7.0.0": {
  2099. "type": "package",
  2100. "compile": {
  2101. "lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  2102. "related": ".xml"
  2103. }
  2104. },
  2105. "runtime": {
  2106. "lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  2107. "related": ".xml"
  2108. }
  2109. },
  2110. "build": {
  2111. "buildTransitive/net6.0/_._": {}
  2112. },
  2113. "runtimeTargets": {
  2114. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  2115. "assetType": "runtime",
  2116. "rid": "win"
  2117. }
  2118. }
  2119. },
  2120. "Mono.TextTemplating/2.3.1": {
  2121. "type": "package",
  2122. "dependencies": {
  2123. "System.CodeDom": "5.0.0"
  2124. },
  2125. "compile": {
  2126. "lib/netcoreapp3.1/Mono.TextTemplating.dll": {}
  2127. },
  2128. "runtime": {
  2129. "lib/netcoreapp3.1/Mono.TextTemplating.dll": {}
  2130. }
  2131. },
  2132. "Newtonsoft.Json/13.0.3": {
  2133. "type": "package",
  2134. "compile": {
  2135. "lib/net6.0/Newtonsoft.Json.dll": {
  2136. "related": ".xml"
  2137. }
  2138. },
  2139. "runtime": {
  2140. "lib/net6.0/Newtonsoft.Json.dll": {
  2141. "related": ".xml"
  2142. }
  2143. }
  2144. },
  2145. "Newtonsoft.Json.Bson/1.0.2": {
  2146. "type": "package",
  2147. "dependencies": {
  2148. "Newtonsoft.Json": "12.0.1"
  2149. },
  2150. "compile": {
  2151. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  2152. "related": ".pdb;.xml"
  2153. }
  2154. },
  2155. "runtime": {
  2156. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  2157. "related": ".pdb;.xml"
  2158. }
  2159. }
  2160. },
  2161. "NuGet.Common/6.11.0": {
  2162. "type": "package",
  2163. "dependencies": {
  2164. "NuGet.Frameworks": "6.11.0"
  2165. },
  2166. "compile": {
  2167. "lib/netstandard2.0/NuGet.Common.dll": {}
  2168. },
  2169. "runtime": {
  2170. "lib/netstandard2.0/NuGet.Common.dll": {}
  2171. }
  2172. },
  2173. "NuGet.Configuration/6.11.0": {
  2174. "type": "package",
  2175. "dependencies": {
  2176. "NuGet.Common": "6.11.0",
  2177. "System.Security.Cryptography.ProtectedData": "4.4.0"
  2178. },
  2179. "compile": {
  2180. "lib/netstandard2.0/NuGet.Configuration.dll": {}
  2181. },
  2182. "runtime": {
  2183. "lib/netstandard2.0/NuGet.Configuration.dll": {}
  2184. }
  2185. },
  2186. "NuGet.DependencyResolver.Core/6.11.0": {
  2187. "type": "package",
  2188. "dependencies": {
  2189. "NuGet.Configuration": "6.11.0",
  2190. "NuGet.LibraryModel": "6.11.0",
  2191. "NuGet.Protocol": "6.11.0"
  2192. },
  2193. "compile": {
  2194. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {}
  2195. },
  2196. "runtime": {
  2197. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {}
  2198. }
  2199. },
  2200. "NuGet.Frameworks/6.11.0": {
  2201. "type": "package",
  2202. "compile": {
  2203. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  2204. },
  2205. "runtime": {
  2206. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  2207. }
  2208. },
  2209. "NuGet.LibraryModel/6.11.0": {
  2210. "type": "package",
  2211. "dependencies": {
  2212. "NuGet.Common": "6.11.0",
  2213. "NuGet.Versioning": "6.11.0"
  2214. },
  2215. "compile": {
  2216. "lib/netstandard2.0/NuGet.LibraryModel.dll": {}
  2217. },
  2218. "runtime": {
  2219. "lib/netstandard2.0/NuGet.LibraryModel.dll": {}
  2220. }
  2221. },
  2222. "NuGet.Packaging/6.11.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "Newtonsoft.Json": "13.0.3",
  2226. "NuGet.Configuration": "6.11.0",
  2227. "NuGet.Versioning": "6.11.0",
  2228. "System.Security.Cryptography.Pkcs": "6.0.4"
  2229. },
  2230. "compile": {
  2231. "lib/net5.0/NuGet.Packaging.dll": {}
  2232. },
  2233. "runtime": {
  2234. "lib/net5.0/NuGet.Packaging.dll": {}
  2235. }
  2236. },
  2237. "NuGet.ProjectModel/6.11.0": {
  2238. "type": "package",
  2239. "dependencies": {
  2240. "NuGet.DependencyResolver.Core": "6.11.0"
  2241. },
  2242. "compile": {
  2243. "lib/net5.0/NuGet.ProjectModel.dll": {}
  2244. },
  2245. "runtime": {
  2246. "lib/net5.0/NuGet.ProjectModel.dll": {}
  2247. }
  2248. },
  2249. "NuGet.Protocol/6.11.0": {
  2250. "type": "package",
  2251. "dependencies": {
  2252. "NuGet.Packaging": "6.11.0"
  2253. },
  2254. "compile": {
  2255. "lib/net5.0/NuGet.Protocol.dll": {}
  2256. },
  2257. "runtime": {
  2258. "lib/net5.0/NuGet.Protocol.dll": {}
  2259. }
  2260. },
  2261. "NuGet.Versioning/6.11.0": {
  2262. "type": "package",
  2263. "compile": {
  2264. "lib/netstandard2.0/NuGet.Versioning.dll": {}
  2265. },
  2266. "runtime": {
  2267. "lib/netstandard2.0/NuGet.Versioning.dll": {}
  2268. }
  2269. },
  2270. "Pipelines.Sockets.Unofficial/2.2.8": {
  2271. "type": "package",
  2272. "dependencies": {
  2273. "System.IO.Pipelines": "5.0.1"
  2274. },
  2275. "compile": {
  2276. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  2277. "related": ".xml"
  2278. }
  2279. },
  2280. "runtime": {
  2281. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  2282. "related": ".xml"
  2283. }
  2284. }
  2285. },
  2286. "StackExchange.Redis/2.8.24": {
  2287. "type": "package",
  2288. "dependencies": {
  2289. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  2290. "Pipelines.Sockets.Unofficial": "2.2.8"
  2291. },
  2292. "compile": {
  2293. "lib/net8.0/StackExchange.Redis.dll": {
  2294. "related": ".xml"
  2295. }
  2296. },
  2297. "runtime": {
  2298. "lib/net8.0/StackExchange.Redis.dll": {
  2299. "related": ".xml"
  2300. }
  2301. }
  2302. },
  2303. "System.Buffers/4.5.1": {
  2304. "type": "package",
  2305. "compile": {
  2306. "ref/netcoreapp2.0/_._": {}
  2307. },
  2308. "runtime": {
  2309. "lib/netcoreapp2.0/_._": {}
  2310. }
  2311. },
  2312. "System.ClientModel/1.0.0": {
  2313. "type": "package",
  2314. "dependencies": {
  2315. "System.Memory.Data": "1.0.2",
  2316. "System.Text.Json": "4.7.2"
  2317. },
  2318. "compile": {
  2319. "lib/net6.0/System.ClientModel.dll": {
  2320. "related": ".xml"
  2321. }
  2322. },
  2323. "runtime": {
  2324. "lib/net6.0/System.ClientModel.dll": {
  2325. "related": ".xml"
  2326. }
  2327. }
  2328. },
  2329. "System.CodeDom/8.0.0": {
  2330. "type": "package",
  2331. "compile": {
  2332. "lib/net8.0/System.CodeDom.dll": {
  2333. "related": ".xml"
  2334. }
  2335. },
  2336. "runtime": {
  2337. "lib/net8.0/System.CodeDom.dll": {
  2338. "related": ".xml"
  2339. }
  2340. },
  2341. "build": {
  2342. "buildTransitive/net6.0/_._": {}
  2343. }
  2344. },
  2345. "System.Collections.Immutable/7.0.0": {
  2346. "type": "package",
  2347. "compile": {
  2348. "lib/net7.0/System.Collections.Immutable.dll": {
  2349. "related": ".xml"
  2350. }
  2351. },
  2352. "runtime": {
  2353. "lib/net7.0/System.Collections.Immutable.dll": {
  2354. "related": ".xml"
  2355. }
  2356. },
  2357. "build": {
  2358. "buildTransitive/net6.0/_._": {}
  2359. }
  2360. },
  2361. "System.Composition/7.0.0": {
  2362. "type": "package",
  2363. "dependencies": {
  2364. "System.Composition.AttributedModel": "7.0.0",
  2365. "System.Composition.Convention": "7.0.0",
  2366. "System.Composition.Hosting": "7.0.0",
  2367. "System.Composition.Runtime": "7.0.0",
  2368. "System.Composition.TypedParts": "7.0.0"
  2369. },
  2370. "compile": {
  2371. "lib/netcoreapp2.0/_._": {}
  2372. },
  2373. "runtime": {
  2374. "lib/netcoreapp2.0/_._": {}
  2375. },
  2376. "build": {
  2377. "buildTransitive/net6.0/_._": {}
  2378. }
  2379. },
  2380. "System.Composition.AttributedModel/7.0.0": {
  2381. "type": "package",
  2382. "compile": {
  2383. "lib/net7.0/System.Composition.AttributedModel.dll": {
  2384. "related": ".xml"
  2385. }
  2386. },
  2387. "runtime": {
  2388. "lib/net7.0/System.Composition.AttributedModel.dll": {
  2389. "related": ".xml"
  2390. }
  2391. },
  2392. "build": {
  2393. "buildTransitive/net6.0/_._": {}
  2394. }
  2395. },
  2396. "System.Composition.Convention/7.0.0": {
  2397. "type": "package",
  2398. "dependencies": {
  2399. "System.Composition.AttributedModel": "7.0.0"
  2400. },
  2401. "compile": {
  2402. "lib/net7.0/System.Composition.Convention.dll": {
  2403. "related": ".xml"
  2404. }
  2405. },
  2406. "runtime": {
  2407. "lib/net7.0/System.Composition.Convention.dll": {
  2408. "related": ".xml"
  2409. }
  2410. },
  2411. "build": {
  2412. "buildTransitive/net6.0/_._": {}
  2413. }
  2414. },
  2415. "System.Composition.Hosting/7.0.0": {
  2416. "type": "package",
  2417. "dependencies": {
  2418. "System.Composition.Runtime": "7.0.0"
  2419. },
  2420. "compile": {
  2421. "lib/net7.0/System.Composition.Hosting.dll": {
  2422. "related": ".xml"
  2423. }
  2424. },
  2425. "runtime": {
  2426. "lib/net7.0/System.Composition.Hosting.dll": {
  2427. "related": ".xml"
  2428. }
  2429. },
  2430. "build": {
  2431. "buildTransitive/net6.0/_._": {}
  2432. }
  2433. },
  2434. "System.Composition.Runtime/7.0.0": {
  2435. "type": "package",
  2436. "compile": {
  2437. "lib/net7.0/System.Composition.Runtime.dll": {
  2438. "related": ".xml"
  2439. }
  2440. },
  2441. "runtime": {
  2442. "lib/net7.0/System.Composition.Runtime.dll": {
  2443. "related": ".xml"
  2444. }
  2445. },
  2446. "build": {
  2447. "buildTransitive/net6.0/_._": {}
  2448. }
  2449. },
  2450. "System.Composition.TypedParts/7.0.0": {
  2451. "type": "package",
  2452. "dependencies": {
  2453. "System.Composition.AttributedModel": "7.0.0",
  2454. "System.Composition.Hosting": "7.0.0",
  2455. "System.Composition.Runtime": "7.0.0"
  2456. },
  2457. "compile": {
  2458. "lib/net7.0/System.Composition.TypedParts.dll": {
  2459. "related": ".xml"
  2460. }
  2461. },
  2462. "runtime": {
  2463. "lib/net7.0/System.Composition.TypedParts.dll": {
  2464. "related": ".xml"
  2465. }
  2466. },
  2467. "build": {
  2468. "buildTransitive/net6.0/_._": {}
  2469. }
  2470. },
  2471. "System.Configuration.ConfigurationManager/7.0.0": {
  2472. "type": "package",
  2473. "dependencies": {
  2474. "System.Diagnostics.EventLog": "7.0.0",
  2475. "System.Security.Cryptography.ProtectedData": "7.0.0",
  2476. "System.Security.Permissions": "7.0.0"
  2477. },
  2478. "compile": {
  2479. "lib/net7.0/System.Configuration.ConfigurationManager.dll": {
  2480. "related": ".xml"
  2481. }
  2482. },
  2483. "runtime": {
  2484. "lib/net7.0/System.Configuration.ConfigurationManager.dll": {
  2485. "related": ".xml"
  2486. }
  2487. },
  2488. "build": {
  2489. "buildTransitive/net6.0/_._": {}
  2490. }
  2491. },
  2492. "System.Data.DataSetExtensions/4.5.0": {
  2493. "type": "package",
  2494. "compile": {
  2495. "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {}
  2496. },
  2497. "runtime": {
  2498. "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {}
  2499. }
  2500. },
  2501. "System.Diagnostics.DiagnosticSource/6.0.1": {
  2502. "type": "package",
  2503. "dependencies": {
  2504. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2505. },
  2506. "compile": {
  2507. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2508. "related": ".xml"
  2509. }
  2510. },
  2511. "runtime": {
  2512. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2513. "related": ".xml"
  2514. }
  2515. },
  2516. "build": {
  2517. "buildTransitive/netcoreapp3.1/_._": {}
  2518. }
  2519. },
  2520. "System.Diagnostics.EventLog/7.0.0": {
  2521. "type": "package",
  2522. "compile": {
  2523. "lib/net7.0/System.Diagnostics.EventLog.dll": {
  2524. "related": ".xml"
  2525. }
  2526. },
  2527. "runtime": {
  2528. "lib/net7.0/System.Diagnostics.EventLog.dll": {
  2529. "related": ".xml"
  2530. }
  2531. },
  2532. "build": {
  2533. "buildTransitive/net6.0/_._": {}
  2534. },
  2535. "runtimeTargets": {
  2536. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": {
  2537. "assetType": "runtime",
  2538. "rid": "win"
  2539. },
  2540. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": {
  2541. "assetType": "runtime",
  2542. "rid": "win"
  2543. }
  2544. }
  2545. },
  2546. "System.Drawing.Common/7.0.0": {
  2547. "type": "package",
  2548. "dependencies": {
  2549. "Microsoft.Win32.SystemEvents": "7.0.0"
  2550. },
  2551. "compile": {
  2552. "lib/net7.0/System.Drawing.Common.dll": {
  2553. "related": ".xml"
  2554. }
  2555. },
  2556. "runtime": {
  2557. "lib/net7.0/System.Drawing.Common.dll": {
  2558. "related": ".xml"
  2559. }
  2560. },
  2561. "build": {
  2562. "buildTransitive/net6.0/_._": {}
  2563. },
  2564. "runtimeTargets": {
  2565. "runtimes/win/lib/net7.0/System.Drawing.Common.dll": {
  2566. "assetType": "runtime",
  2567. "rid": "win"
  2568. }
  2569. }
  2570. },
  2571. "System.Formats.Asn1/8.0.2": {
  2572. "type": "package",
  2573. "compile": {
  2574. "lib/net8.0/System.Formats.Asn1.dll": {
  2575. "related": ".xml"
  2576. }
  2577. },
  2578. "runtime": {
  2579. "lib/net8.0/System.Formats.Asn1.dll": {
  2580. "related": ".xml"
  2581. }
  2582. },
  2583. "build": {
  2584. "buildTransitive/net6.0/_._": {}
  2585. }
  2586. },
  2587. "System.IdentityModel.Tokens.Jwt/7.1.2": {
  2588. "type": "package",
  2589. "dependencies": {
  2590. "Microsoft.IdentityModel.JsonWebTokens": "7.1.2",
  2591. "Microsoft.IdentityModel.Tokens": "7.1.2"
  2592. },
  2593. "compile": {
  2594. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
  2595. "related": ".xml"
  2596. }
  2597. },
  2598. "runtime": {
  2599. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
  2600. "related": ".xml"
  2601. }
  2602. }
  2603. },
  2604. "System.IO.Pipelines/7.0.0": {
  2605. "type": "package",
  2606. "compile": {
  2607. "lib/net7.0/System.IO.Pipelines.dll": {
  2608. "related": ".xml"
  2609. }
  2610. },
  2611. "runtime": {
  2612. "lib/net7.0/System.IO.Pipelines.dll": {
  2613. "related": ".xml"
  2614. }
  2615. },
  2616. "build": {
  2617. "buildTransitive/net6.0/_._": {}
  2618. }
  2619. },
  2620. "System.Management/8.0.0": {
  2621. "type": "package",
  2622. "dependencies": {
  2623. "System.CodeDom": "8.0.0"
  2624. },
  2625. "compile": {
  2626. "lib/net8.0/System.Management.dll": {
  2627. "related": ".xml"
  2628. }
  2629. },
  2630. "runtime": {
  2631. "lib/net8.0/System.Management.dll": {
  2632. "related": ".xml"
  2633. }
  2634. },
  2635. "build": {
  2636. "buildTransitive/net6.0/_._": {}
  2637. },
  2638. "runtimeTargets": {
  2639. "runtimes/win/lib/net8.0/System.Management.dll": {
  2640. "assetType": "runtime",
  2641. "rid": "win"
  2642. }
  2643. }
  2644. },
  2645. "System.Memory/4.5.5": {
  2646. "type": "package",
  2647. "compile": {
  2648. "ref/netcoreapp2.1/_._": {}
  2649. },
  2650. "runtime": {
  2651. "lib/netcoreapp2.1/_._": {}
  2652. }
  2653. },
  2654. "System.Memory.Data/1.0.2": {
  2655. "type": "package",
  2656. "dependencies": {
  2657. "System.Text.Encodings.Web": "4.7.2",
  2658. "System.Text.Json": "4.6.0"
  2659. },
  2660. "compile": {
  2661. "lib/netstandard2.0/System.Memory.Data.dll": {
  2662. "related": ".xml"
  2663. }
  2664. },
  2665. "runtime": {
  2666. "lib/netstandard2.0/System.Memory.Data.dll": {
  2667. "related": ".xml"
  2668. }
  2669. }
  2670. },
  2671. "System.Numerics.Vectors/4.5.0": {
  2672. "type": "package",
  2673. "compile": {
  2674. "ref/netcoreapp2.0/_._": {}
  2675. },
  2676. "runtime": {
  2677. "lib/netcoreapp2.0/_._": {}
  2678. }
  2679. },
  2680. "System.Reflection.Metadata/7.0.0": {
  2681. "type": "package",
  2682. "dependencies": {
  2683. "System.Collections.Immutable": "7.0.0"
  2684. },
  2685. "compile": {
  2686. "lib/net7.0/System.Reflection.Metadata.dll": {
  2687. "related": ".xml"
  2688. }
  2689. },
  2690. "runtime": {
  2691. "lib/net7.0/System.Reflection.Metadata.dll": {
  2692. "related": ".xml"
  2693. }
  2694. },
  2695. "build": {
  2696. "buildTransitive/net6.0/_._": {}
  2697. }
  2698. },
  2699. "System.Reflection.MetadataLoadContext/7.0.0": {
  2700. "type": "package",
  2701. "dependencies": {
  2702. "System.Collections.Immutable": "7.0.0",
  2703. "System.Reflection.Metadata": "7.0.0"
  2704. },
  2705. "compile": {
  2706. "lib/net7.0/System.Reflection.MetadataLoadContext.dll": {
  2707. "related": ".xml"
  2708. }
  2709. },
  2710. "runtime": {
  2711. "lib/net7.0/System.Reflection.MetadataLoadContext.dll": {
  2712. "related": ".xml"
  2713. }
  2714. },
  2715. "build": {
  2716. "buildTransitive/net6.0/_._": {}
  2717. }
  2718. },
  2719. "System.Runtime.Caching/6.0.0": {
  2720. "type": "package",
  2721. "dependencies": {
  2722. "System.Configuration.ConfigurationManager": "6.0.0"
  2723. },
  2724. "compile": {
  2725. "lib/net6.0/_._": {
  2726. "related": ".xml"
  2727. }
  2728. },
  2729. "runtime": {
  2730. "lib/net6.0/System.Runtime.Caching.dll": {
  2731. "related": ".xml"
  2732. }
  2733. },
  2734. "build": {
  2735. "buildTransitive/netcoreapp3.1/_._": {}
  2736. },
  2737. "runtimeTargets": {
  2738. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  2739. "assetType": "runtime",
  2740. "rid": "win"
  2741. }
  2742. }
  2743. },
  2744. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2745. "type": "package",
  2746. "compile": {
  2747. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2748. "related": ".xml"
  2749. }
  2750. },
  2751. "runtime": {
  2752. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2753. "related": ".xml"
  2754. }
  2755. },
  2756. "build": {
  2757. "buildTransitive/netcoreapp3.1/_._": {}
  2758. }
  2759. },
  2760. "System.Security.Cryptography.Cng/5.0.0": {
  2761. "type": "package",
  2762. "dependencies": {
  2763. "System.Formats.Asn1": "5.0.0"
  2764. },
  2765. "compile": {
  2766. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2767. "related": ".xml"
  2768. }
  2769. },
  2770. "runtime": {
  2771. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2772. "related": ".xml"
  2773. }
  2774. },
  2775. "runtimeTargets": {
  2776. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2777. "assetType": "runtime",
  2778. "rid": "win"
  2779. }
  2780. }
  2781. },
  2782. "System.Security.Cryptography.Pkcs/6.0.4": {
  2783. "type": "package",
  2784. "dependencies": {
  2785. "System.Formats.Asn1": "6.0.0"
  2786. },
  2787. "compile": {
  2788. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2789. "related": ".xml"
  2790. }
  2791. },
  2792. "runtime": {
  2793. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2794. "related": ".xml"
  2795. }
  2796. },
  2797. "build": {
  2798. "buildTransitive/netcoreapp3.1/_._": {}
  2799. },
  2800. "runtimeTargets": {
  2801. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2802. "assetType": "runtime",
  2803. "rid": "win"
  2804. }
  2805. }
  2806. },
  2807. "System.Security.Cryptography.ProtectedData/7.0.0": {
  2808. "type": "package",
  2809. "compile": {
  2810. "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
  2811. "related": ".xml"
  2812. }
  2813. },
  2814. "runtime": {
  2815. "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
  2816. "related": ".xml"
  2817. }
  2818. },
  2819. "build": {
  2820. "buildTransitive/net6.0/_._": {}
  2821. },
  2822. "runtimeTargets": {
  2823. "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
  2824. "assetType": "runtime",
  2825. "rid": "win"
  2826. }
  2827. }
  2828. },
  2829. "System.Security.Permissions/7.0.0": {
  2830. "type": "package",
  2831. "dependencies": {
  2832. "System.Windows.Extensions": "7.0.0"
  2833. },
  2834. "compile": {
  2835. "lib/net7.0/System.Security.Permissions.dll": {
  2836. "related": ".xml"
  2837. }
  2838. },
  2839. "runtime": {
  2840. "lib/net7.0/System.Security.Permissions.dll": {
  2841. "related": ".xml"
  2842. }
  2843. },
  2844. "build": {
  2845. "buildTransitive/net6.0/_._": {}
  2846. }
  2847. },
  2848. "System.Security.Principal.Windows/5.0.0": {
  2849. "type": "package",
  2850. "compile": {
  2851. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2852. "related": ".xml"
  2853. }
  2854. },
  2855. "runtime": {
  2856. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2857. "related": ".xml"
  2858. }
  2859. },
  2860. "runtimeTargets": {
  2861. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2862. "assetType": "runtime",
  2863. "rid": "unix"
  2864. },
  2865. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2866. "assetType": "runtime",
  2867. "rid": "win"
  2868. }
  2869. }
  2870. },
  2871. "System.Text.Encoding.CodePages/6.0.0": {
  2872. "type": "package",
  2873. "dependencies": {
  2874. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2875. },
  2876. "compile": {
  2877. "lib/net6.0/_._": {
  2878. "related": ".xml"
  2879. }
  2880. },
  2881. "runtime": {
  2882. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  2883. "related": ".xml"
  2884. }
  2885. },
  2886. "build": {
  2887. "buildTransitive/netcoreapp3.1/_._": {}
  2888. },
  2889. "runtimeTargets": {
  2890. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
  2891. "assetType": "runtime",
  2892. "rid": "win"
  2893. }
  2894. }
  2895. },
  2896. "System.Text.Encodings.Web/7.0.0": {
  2897. "type": "package",
  2898. "compile": {
  2899. "lib/net7.0/System.Text.Encodings.Web.dll": {
  2900. "related": ".xml"
  2901. }
  2902. },
  2903. "runtime": {
  2904. "lib/net7.0/System.Text.Encodings.Web.dll": {
  2905. "related": ".xml"
  2906. }
  2907. },
  2908. "build": {
  2909. "buildTransitive/net6.0/_._": {}
  2910. },
  2911. "runtimeTargets": {
  2912. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
  2913. "assetType": "runtime",
  2914. "rid": "browser"
  2915. }
  2916. }
  2917. },
  2918. "System.Text.Json/7.0.3": {
  2919. "type": "package",
  2920. "dependencies": {
  2921. "System.Text.Encodings.Web": "7.0.0"
  2922. },
  2923. "compile": {
  2924. "lib/net7.0/System.Text.Json.dll": {
  2925. "related": ".xml"
  2926. }
  2927. },
  2928. "runtime": {
  2929. "lib/net7.0/System.Text.Json.dll": {
  2930. "related": ".xml"
  2931. }
  2932. },
  2933. "build": {
  2934. "buildTransitive/net6.0/System.Text.Json.targets": {}
  2935. }
  2936. },
  2937. "System.Threading.Channels/7.0.0": {
  2938. "type": "package",
  2939. "compile": {
  2940. "lib/net7.0/System.Threading.Channels.dll": {
  2941. "related": ".xml"
  2942. }
  2943. },
  2944. "runtime": {
  2945. "lib/net7.0/System.Threading.Channels.dll": {
  2946. "related": ".xml"
  2947. }
  2948. },
  2949. "build": {
  2950. "buildTransitive/net6.0/_._": {}
  2951. }
  2952. },
  2953. "System.Threading.Tasks.Dataflow/7.0.0": {
  2954. "type": "package",
  2955. "compile": {
  2956. "lib/net7.0/System.Threading.Tasks.Dataflow.dll": {
  2957. "related": ".xml"
  2958. }
  2959. },
  2960. "runtime": {
  2961. "lib/net7.0/System.Threading.Tasks.Dataflow.dll": {
  2962. "related": ".xml"
  2963. }
  2964. },
  2965. "build": {
  2966. "buildTransitive/net6.0/_._": {}
  2967. }
  2968. },
  2969. "System.Threading.Tasks.Extensions/4.5.4": {
  2970. "type": "package",
  2971. "compile": {
  2972. "ref/netcoreapp2.1/_._": {}
  2973. },
  2974. "runtime": {
  2975. "lib/netcoreapp2.1/_._": {}
  2976. }
  2977. },
  2978. "System.Windows.Extensions/7.0.0": {
  2979. "type": "package",
  2980. "dependencies": {
  2981. "System.Drawing.Common": "7.0.0"
  2982. },
  2983. "compile": {
  2984. "lib/net7.0/System.Windows.Extensions.dll": {
  2985. "related": ".xml"
  2986. }
  2987. },
  2988. "runtime": {
  2989. "lib/net7.0/System.Windows.Extensions.dll": {
  2990. "related": ".xml"
  2991. }
  2992. },
  2993. "runtimeTargets": {
  2994. "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": {
  2995. "assetType": "runtime",
  2996. "rid": "win"
  2997. }
  2998. }
  2999. },
  3000. "YamlDotNet/16.2.1": {
  3001. "type": "package",
  3002. "compile": {
  3003. "lib/net8.0/YamlDotNet.dll": {
  3004. "related": ".xml"
  3005. }
  3006. },
  3007. "runtime": {
  3008. "lib/net8.0/YamlDotNet.dll": {
  3009. "related": ".xml"
  3010. }
  3011. }
  3012. }
  3013. }
  3014. },
  3015. "libraries": {
  3016. "Azure.Core/1.38.0": {
  3017. "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==",
  3018. "type": "package",
  3019. "path": "azure.core/1.38.0",
  3020. "files": [
  3021. ".nupkg.metadata",
  3022. ".signature.p7s",
  3023. "CHANGELOG.md",
  3024. "README.md",
  3025. "azure.core.1.38.0.nupkg.sha512",
  3026. "azure.core.nuspec",
  3027. "azureicon.png",
  3028. "lib/net461/Azure.Core.dll",
  3029. "lib/net461/Azure.Core.xml",
  3030. "lib/net472/Azure.Core.dll",
  3031. "lib/net472/Azure.Core.xml",
  3032. "lib/net6.0/Azure.Core.dll",
  3033. "lib/net6.0/Azure.Core.xml",
  3034. "lib/netstandard2.0/Azure.Core.dll",
  3035. "lib/netstandard2.0/Azure.Core.xml"
  3036. ]
  3037. },
  3038. "Azure.Identity/1.11.4": {
  3039. "sha512": "Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==",
  3040. "type": "package",
  3041. "path": "azure.identity/1.11.4",
  3042. "files": [
  3043. ".nupkg.metadata",
  3044. ".signature.p7s",
  3045. "CHANGELOG.md",
  3046. "README.md",
  3047. "azure.identity.1.11.4.nupkg.sha512",
  3048. "azure.identity.nuspec",
  3049. "azureicon.png",
  3050. "lib/netstandard2.0/Azure.Identity.dll",
  3051. "lib/netstandard2.0/Azure.Identity.xml"
  3052. ]
  3053. },
  3054. "BCrypt.Net-Next/4.0.3": {
  3055. "sha512": "W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==",
  3056. "type": "package",
  3057. "path": "bcrypt.net-next/4.0.3",
  3058. "files": [
  3059. ".nupkg.metadata",
  3060. ".signature.p7s",
  3061. "bcrypt.net-next.4.0.3.nupkg.sha512",
  3062. "bcrypt.net-next.nuspec",
  3063. "ico.png",
  3064. "lib/net20/BCrypt.Net-Next.dll",
  3065. "lib/net20/BCrypt.Net-Next.xml",
  3066. "lib/net35/BCrypt.Net-Next.dll",
  3067. "lib/net35/BCrypt.Net-Next.xml",
  3068. "lib/net462/BCrypt.Net-Next.dll",
  3069. "lib/net462/BCrypt.Net-Next.xml",
  3070. "lib/net472/BCrypt.Net-Next.dll",
  3071. "lib/net472/BCrypt.Net-Next.xml",
  3072. "lib/net48/BCrypt.Net-Next.dll",
  3073. "lib/net48/BCrypt.Net-Next.xml",
  3074. "lib/net5.0/BCrypt.Net-Next.dll",
  3075. "lib/net5.0/BCrypt.Net-Next.xml",
  3076. "lib/net6.0/BCrypt.Net-Next.dll",
  3077. "lib/net6.0/BCrypt.Net-Next.xml",
  3078. "lib/netstandard2.0/BCrypt.Net-Next.dll",
  3079. "lib/netstandard2.0/BCrypt.Net-Next.xml",
  3080. "lib/netstandard2.1/BCrypt.Net-Next.dll",
  3081. "lib/netstandard2.1/BCrypt.Net-Next.xml",
  3082. "readme.md"
  3083. ]
  3084. },
  3085. "BuildWebCompiler/1.12.405": {
  3086. "sha512": "1l1RK0jV+5QjJM22J5IGHm/EFaB3JN0WorKnLLP6HRnnf5H4sU4IBdBnMwN1OrVmww/3ir8fhbV0ZNGX6Uqn5w==",
  3087. "type": "package",
  3088. "path": "buildwebcompiler/1.12.405",
  3089. "hasTools": true,
  3090. "files": [
  3091. ".nupkg.metadata",
  3092. ".signature.p7s",
  3093. "build/BuildWebCompiler.targets",
  3094. "buildwebcompiler.1.12.405.nupkg.sha512",
  3095. "buildwebcompiler.nuspec",
  3096. "tools/net46/NUglify.dll",
  3097. "tools/net46/Newtonsoft.Json.dll",
  3098. "tools/net46/WebCompiler.exe",
  3099. "tools/netcoreapp2.0/NUglify.dll",
  3100. "tools/netcoreapp2.0/Newtonsoft.Json.dll",
  3101. "tools/netcoreapp2.0/WebCompiler.dll",
  3102. "tools/netcoreapp2.0/WebCompiler.runtimeconfig.json",
  3103. "tools/netstandard2.0/NUglify.dll",
  3104. "tools/netstandard2.0/Newtonsoft.Json.dll",
  3105. "tools/netstandard2.0/WebCompiler.dll"
  3106. ]
  3107. },
  3108. "DeviceDetector.NET/6.4.2": {
  3109. "sha512": "/Vv2eIuA6cm640znvH8c/n9a3AwQTkgEtwMXQ5+Qp/DWtI6vT2tVZbpamB/BpIhedHgrTeQV8MTQGwTNPcE6Uw==",
  3110. "type": "package",
  3111. "path": "devicedetector.net/6.4.2",
  3112. "files": [
  3113. ".nupkg.metadata",
  3114. ".signature.p7s",
  3115. "LICENSE",
  3116. "README.md",
  3117. "devicedetector.net.6.4.2.nupkg.sha512",
  3118. "devicedetector.net.nuspec",
  3119. "lib/net462/DeviceDetector.NET.dll",
  3120. "lib/net8.0/DeviceDetector.NET.dll",
  3121. "lib/net9.0/DeviceDetector.NET.dll",
  3122. "lib/netstandard2.0/DeviceDetector.NET.dll",
  3123. "logo.jpg"
  3124. ]
  3125. },
  3126. "Humanizer/2.14.1": {
  3127. "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
  3128. "type": "package",
  3129. "path": "humanizer/2.14.1",
  3130. "files": [
  3131. ".nupkg.metadata",
  3132. ".signature.p7s",
  3133. "humanizer.2.14.1.nupkg.sha512",
  3134. "humanizer.nuspec",
  3135. "logo.png"
  3136. ]
  3137. },
  3138. "Humanizer.Core/2.14.1": {
  3139. "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
  3140. "type": "package",
  3141. "path": "humanizer.core/2.14.1",
  3142. "files": [
  3143. ".nupkg.metadata",
  3144. ".signature.p7s",
  3145. "humanizer.core.2.14.1.nupkg.sha512",
  3146. "humanizer.core.nuspec",
  3147. "lib/net6.0/Humanizer.dll",
  3148. "lib/net6.0/Humanizer.xml",
  3149. "lib/netstandard1.0/Humanizer.dll",
  3150. "lib/netstandard1.0/Humanizer.xml",
  3151. "lib/netstandard2.0/Humanizer.dll",
  3152. "lib/netstandard2.0/Humanizer.xml",
  3153. "logo.png"
  3154. ]
  3155. },
  3156. "Humanizer.Core.af/2.14.1": {
  3157. "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
  3158. "type": "package",
  3159. "path": "humanizer.core.af/2.14.1",
  3160. "files": [
  3161. ".nupkg.metadata",
  3162. ".signature.p7s",
  3163. "humanizer.core.af.2.14.1.nupkg.sha512",
  3164. "humanizer.core.af.nuspec",
  3165. "lib/net6.0/af/Humanizer.resources.dll",
  3166. "lib/netstandard1.0/af/Humanizer.resources.dll",
  3167. "lib/netstandard2.0/af/Humanizer.resources.dll",
  3168. "logo.png"
  3169. ]
  3170. },
  3171. "Humanizer.Core.ar/2.14.1": {
  3172. "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
  3173. "type": "package",
  3174. "path": "humanizer.core.ar/2.14.1",
  3175. "files": [
  3176. ".nupkg.metadata",
  3177. ".signature.p7s",
  3178. "humanizer.core.ar.2.14.1.nupkg.sha512",
  3179. "humanizer.core.ar.nuspec",
  3180. "lib/net6.0/ar/Humanizer.resources.dll",
  3181. "lib/netstandard1.0/ar/Humanizer.resources.dll",
  3182. "lib/netstandard2.0/ar/Humanizer.resources.dll",
  3183. "logo.png"
  3184. ]
  3185. },
  3186. "Humanizer.Core.az/2.14.1": {
  3187. "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
  3188. "type": "package",
  3189. "path": "humanizer.core.az/2.14.1",
  3190. "files": [
  3191. ".nupkg.metadata",
  3192. ".signature.p7s",
  3193. "humanizer.core.az.2.14.1.nupkg.sha512",
  3194. "humanizer.core.az.nuspec",
  3195. "lib/net6.0/az/Humanizer.resources.dll",
  3196. "lib/netstandard1.0/az/Humanizer.resources.dll",
  3197. "lib/netstandard2.0/az/Humanizer.resources.dll",
  3198. "logo.png"
  3199. ]
  3200. },
  3201. "Humanizer.Core.bg/2.14.1": {
  3202. "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
  3203. "type": "package",
  3204. "path": "humanizer.core.bg/2.14.1",
  3205. "files": [
  3206. ".nupkg.metadata",
  3207. ".signature.p7s",
  3208. "humanizer.core.bg.2.14.1.nupkg.sha512",
  3209. "humanizer.core.bg.nuspec",
  3210. "lib/net6.0/bg/Humanizer.resources.dll",
  3211. "lib/netstandard1.0/bg/Humanizer.resources.dll",
  3212. "lib/netstandard2.0/bg/Humanizer.resources.dll",
  3213. "logo.png"
  3214. ]
  3215. },
  3216. "Humanizer.Core.bn-BD/2.14.1": {
  3217. "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
  3218. "type": "package",
  3219. "path": "humanizer.core.bn-bd/2.14.1",
  3220. "files": [
  3221. ".nupkg.metadata",
  3222. ".signature.p7s",
  3223. "humanizer.core.bn-bd.2.14.1.nupkg.sha512",
  3224. "humanizer.core.bn-bd.nuspec",
  3225. "lib/net6.0/bn-BD/Humanizer.resources.dll",
  3226. "lib/netstandard1.0/bn-BD/Humanizer.resources.dll",
  3227. "lib/netstandard2.0/bn-BD/Humanizer.resources.dll",
  3228. "logo.png"
  3229. ]
  3230. },
  3231. "Humanizer.Core.cs/2.14.1": {
  3232. "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
  3233. "type": "package",
  3234. "path": "humanizer.core.cs/2.14.1",
  3235. "files": [
  3236. ".nupkg.metadata",
  3237. ".signature.p7s",
  3238. "humanizer.core.cs.2.14.1.nupkg.sha512",
  3239. "humanizer.core.cs.nuspec",
  3240. "lib/net6.0/cs/Humanizer.resources.dll",
  3241. "lib/netstandard1.0/cs/Humanizer.resources.dll",
  3242. "lib/netstandard2.0/cs/Humanizer.resources.dll",
  3243. "logo.png"
  3244. ]
  3245. },
  3246. "Humanizer.Core.da/2.14.1": {
  3247. "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
  3248. "type": "package",
  3249. "path": "humanizer.core.da/2.14.1",
  3250. "files": [
  3251. ".nupkg.metadata",
  3252. ".signature.p7s",
  3253. "humanizer.core.da.2.14.1.nupkg.sha512",
  3254. "humanizer.core.da.nuspec",
  3255. "lib/net6.0/da/Humanizer.resources.dll",
  3256. "lib/netstandard1.0/da/Humanizer.resources.dll",
  3257. "lib/netstandard2.0/da/Humanizer.resources.dll",
  3258. "logo.png"
  3259. ]
  3260. },
  3261. "Humanizer.Core.de/2.14.1": {
  3262. "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
  3263. "type": "package",
  3264. "path": "humanizer.core.de/2.14.1",
  3265. "files": [
  3266. ".nupkg.metadata",
  3267. ".signature.p7s",
  3268. "humanizer.core.de.2.14.1.nupkg.sha512",
  3269. "humanizer.core.de.nuspec",
  3270. "lib/net6.0/de/Humanizer.resources.dll",
  3271. "lib/netstandard1.0/de/Humanizer.resources.dll",
  3272. "lib/netstandard2.0/de/Humanizer.resources.dll",
  3273. "logo.png"
  3274. ]
  3275. },
  3276. "Humanizer.Core.el/2.14.1": {
  3277. "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
  3278. "type": "package",
  3279. "path": "humanizer.core.el/2.14.1",
  3280. "files": [
  3281. ".nupkg.metadata",
  3282. ".signature.p7s",
  3283. "humanizer.core.el.2.14.1.nupkg.sha512",
  3284. "humanizer.core.el.nuspec",
  3285. "lib/net6.0/el/Humanizer.resources.dll",
  3286. "lib/netstandard1.0/el/Humanizer.resources.dll",
  3287. "lib/netstandard2.0/el/Humanizer.resources.dll",
  3288. "logo.png"
  3289. ]
  3290. },
  3291. "Humanizer.Core.es/2.14.1": {
  3292. "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
  3293. "type": "package",
  3294. "path": "humanizer.core.es/2.14.1",
  3295. "files": [
  3296. ".nupkg.metadata",
  3297. ".signature.p7s",
  3298. "humanizer.core.es.2.14.1.nupkg.sha512",
  3299. "humanizer.core.es.nuspec",
  3300. "lib/net6.0/es/Humanizer.resources.dll",
  3301. "lib/netstandard1.0/es/Humanizer.resources.dll",
  3302. "lib/netstandard2.0/es/Humanizer.resources.dll",
  3303. "logo.png"
  3304. ]
  3305. },
  3306. "Humanizer.Core.fa/2.14.1": {
  3307. "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
  3308. "type": "package",
  3309. "path": "humanizer.core.fa/2.14.1",
  3310. "files": [
  3311. ".nupkg.metadata",
  3312. ".signature.p7s",
  3313. "humanizer.core.fa.2.14.1.nupkg.sha512",
  3314. "humanizer.core.fa.nuspec",
  3315. "lib/net6.0/fa/Humanizer.resources.dll",
  3316. "lib/netstandard1.0/fa/Humanizer.resources.dll",
  3317. "lib/netstandard2.0/fa/Humanizer.resources.dll",
  3318. "logo.png"
  3319. ]
  3320. },
  3321. "Humanizer.Core.fi-FI/2.14.1": {
  3322. "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
  3323. "type": "package",
  3324. "path": "humanizer.core.fi-fi/2.14.1",
  3325. "files": [
  3326. ".nupkg.metadata",
  3327. ".signature.p7s",
  3328. "humanizer.core.fi-fi.2.14.1.nupkg.sha512",
  3329. "humanizer.core.fi-fi.nuspec",
  3330. "lib/net6.0/fi-FI/Humanizer.resources.dll",
  3331. "lib/netstandard1.0/fi-FI/Humanizer.resources.dll",
  3332. "lib/netstandard2.0/fi-FI/Humanizer.resources.dll",
  3333. "logo.png"
  3334. ]
  3335. },
  3336. "Humanizer.Core.fr/2.14.1": {
  3337. "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
  3338. "type": "package",
  3339. "path": "humanizer.core.fr/2.14.1",
  3340. "files": [
  3341. ".nupkg.metadata",
  3342. ".signature.p7s",
  3343. "humanizer.core.fr.2.14.1.nupkg.sha512",
  3344. "humanizer.core.fr.nuspec",
  3345. "lib/net6.0/fr/Humanizer.resources.dll",
  3346. "lib/netstandard1.0/fr/Humanizer.resources.dll",
  3347. "lib/netstandard2.0/fr/Humanizer.resources.dll",
  3348. "logo.png"
  3349. ]
  3350. },
  3351. "Humanizer.Core.fr-BE/2.14.1": {
  3352. "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
  3353. "type": "package",
  3354. "path": "humanizer.core.fr-be/2.14.1",
  3355. "files": [
  3356. ".nupkg.metadata",
  3357. ".signature.p7s",
  3358. "humanizer.core.fr-be.2.14.1.nupkg.sha512",
  3359. "humanizer.core.fr-be.nuspec",
  3360. "lib/net6.0/fr-BE/Humanizer.resources.dll",
  3361. "lib/netstandard1.0/fr-BE/Humanizer.resources.dll",
  3362. "lib/netstandard2.0/fr-BE/Humanizer.resources.dll",
  3363. "logo.png"
  3364. ]
  3365. },
  3366. "Humanizer.Core.he/2.14.1": {
  3367. "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
  3368. "type": "package",
  3369. "path": "humanizer.core.he/2.14.1",
  3370. "files": [
  3371. ".nupkg.metadata",
  3372. ".signature.p7s",
  3373. "humanizer.core.he.2.14.1.nupkg.sha512",
  3374. "humanizer.core.he.nuspec",
  3375. "lib/net6.0/he/Humanizer.resources.dll",
  3376. "lib/netstandard1.0/he/Humanizer.resources.dll",
  3377. "lib/netstandard2.0/he/Humanizer.resources.dll",
  3378. "logo.png"
  3379. ]
  3380. },
  3381. "Humanizer.Core.hr/2.14.1": {
  3382. "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
  3383. "type": "package",
  3384. "path": "humanizer.core.hr/2.14.1",
  3385. "files": [
  3386. ".nupkg.metadata",
  3387. ".signature.p7s",
  3388. "humanizer.core.hr.2.14.1.nupkg.sha512",
  3389. "humanizer.core.hr.nuspec",
  3390. "lib/net6.0/hr/Humanizer.resources.dll",
  3391. "lib/netstandard1.0/hr/Humanizer.resources.dll",
  3392. "lib/netstandard2.0/hr/Humanizer.resources.dll",
  3393. "logo.png"
  3394. ]
  3395. },
  3396. "Humanizer.Core.hu/2.14.1": {
  3397. "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
  3398. "type": "package",
  3399. "path": "humanizer.core.hu/2.14.1",
  3400. "files": [
  3401. ".nupkg.metadata",
  3402. ".signature.p7s",
  3403. "humanizer.core.hu.2.14.1.nupkg.sha512",
  3404. "humanizer.core.hu.nuspec",
  3405. "lib/net6.0/hu/Humanizer.resources.dll",
  3406. "lib/netstandard1.0/hu/Humanizer.resources.dll",
  3407. "lib/netstandard2.0/hu/Humanizer.resources.dll",
  3408. "logo.png"
  3409. ]
  3410. },
  3411. "Humanizer.Core.hy/2.14.1": {
  3412. "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
  3413. "type": "package",
  3414. "path": "humanizer.core.hy/2.14.1",
  3415. "files": [
  3416. ".nupkg.metadata",
  3417. ".signature.p7s",
  3418. "humanizer.core.hy.2.14.1.nupkg.sha512",
  3419. "humanizer.core.hy.nuspec",
  3420. "lib/net6.0/hy/Humanizer.resources.dll",
  3421. "lib/netstandard1.0/hy/Humanizer.resources.dll",
  3422. "lib/netstandard2.0/hy/Humanizer.resources.dll",
  3423. "logo.png"
  3424. ]
  3425. },
  3426. "Humanizer.Core.id/2.14.1": {
  3427. "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
  3428. "type": "package",
  3429. "path": "humanizer.core.id/2.14.1",
  3430. "files": [
  3431. ".nupkg.metadata",
  3432. ".signature.p7s",
  3433. "humanizer.core.id.2.14.1.nupkg.sha512",
  3434. "humanizer.core.id.nuspec",
  3435. "lib/net6.0/id/Humanizer.resources.dll",
  3436. "lib/netstandard1.0/id/Humanizer.resources.dll",
  3437. "lib/netstandard2.0/id/Humanizer.resources.dll",
  3438. "logo.png"
  3439. ]
  3440. },
  3441. "Humanizer.Core.is/2.14.1": {
  3442. "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
  3443. "type": "package",
  3444. "path": "humanizer.core.is/2.14.1",
  3445. "files": [
  3446. ".nupkg.metadata",
  3447. ".signature.p7s",
  3448. "humanizer.core.is.2.14.1.nupkg.sha512",
  3449. "humanizer.core.is.nuspec",
  3450. "lib/net6.0/is/Humanizer.resources.dll",
  3451. "lib/netstandard1.0/is/Humanizer.resources.dll",
  3452. "lib/netstandard2.0/is/Humanizer.resources.dll",
  3453. "logo.png"
  3454. ]
  3455. },
  3456. "Humanizer.Core.it/2.14.1": {
  3457. "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
  3458. "type": "package",
  3459. "path": "humanizer.core.it/2.14.1",
  3460. "files": [
  3461. ".nupkg.metadata",
  3462. ".signature.p7s",
  3463. "humanizer.core.it.2.14.1.nupkg.sha512",
  3464. "humanizer.core.it.nuspec",
  3465. "lib/net6.0/it/Humanizer.resources.dll",
  3466. "lib/netstandard1.0/it/Humanizer.resources.dll",
  3467. "lib/netstandard2.0/it/Humanizer.resources.dll",
  3468. "logo.png"
  3469. ]
  3470. },
  3471. "Humanizer.Core.ja/2.14.1": {
  3472. "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
  3473. "type": "package",
  3474. "path": "humanizer.core.ja/2.14.1",
  3475. "files": [
  3476. ".nupkg.metadata",
  3477. ".signature.p7s",
  3478. "humanizer.core.ja.2.14.1.nupkg.sha512",
  3479. "humanizer.core.ja.nuspec",
  3480. "lib/net6.0/ja/Humanizer.resources.dll",
  3481. "lib/netstandard1.0/ja/Humanizer.resources.dll",
  3482. "lib/netstandard2.0/ja/Humanizer.resources.dll",
  3483. "logo.png"
  3484. ]
  3485. },
  3486. "Humanizer.Core.ko-KR/2.14.1": {
  3487. "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
  3488. "type": "package",
  3489. "path": "humanizer.core.ko-kr/2.14.1",
  3490. "files": [
  3491. ".nupkg.metadata",
  3492. ".signature.p7s",
  3493. "humanizer.core.ko-kr.2.14.1.nupkg.sha512",
  3494. "humanizer.core.ko-kr.nuspec",
  3495. "lib/netstandard1.0/ko-KR/Humanizer.resources.dll",
  3496. "lib/netstandard2.0/ko-KR/Humanizer.resources.dll",
  3497. "logo.png"
  3498. ]
  3499. },
  3500. "Humanizer.Core.ku/2.14.1": {
  3501. "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
  3502. "type": "package",
  3503. "path": "humanizer.core.ku/2.14.1",
  3504. "files": [
  3505. ".nupkg.metadata",
  3506. ".signature.p7s",
  3507. "humanizer.core.ku.2.14.1.nupkg.sha512",
  3508. "humanizer.core.ku.nuspec",
  3509. "lib/net6.0/ku/Humanizer.resources.dll",
  3510. "lib/netstandard1.0/ku/Humanizer.resources.dll",
  3511. "lib/netstandard2.0/ku/Humanizer.resources.dll",
  3512. "logo.png"
  3513. ]
  3514. },
  3515. "Humanizer.Core.lv/2.14.1": {
  3516. "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
  3517. "type": "package",
  3518. "path": "humanizer.core.lv/2.14.1",
  3519. "files": [
  3520. ".nupkg.metadata",
  3521. ".signature.p7s",
  3522. "humanizer.core.lv.2.14.1.nupkg.sha512",
  3523. "humanizer.core.lv.nuspec",
  3524. "lib/net6.0/lv/Humanizer.resources.dll",
  3525. "lib/netstandard1.0/lv/Humanizer.resources.dll",
  3526. "lib/netstandard2.0/lv/Humanizer.resources.dll",
  3527. "logo.png"
  3528. ]
  3529. },
  3530. "Humanizer.Core.ms-MY/2.14.1": {
  3531. "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
  3532. "type": "package",
  3533. "path": "humanizer.core.ms-my/2.14.1",
  3534. "files": [
  3535. ".nupkg.metadata",
  3536. ".signature.p7s",
  3537. "humanizer.core.ms-my.2.14.1.nupkg.sha512",
  3538. "humanizer.core.ms-my.nuspec",
  3539. "lib/netstandard1.0/ms-MY/Humanizer.resources.dll",
  3540. "lib/netstandard2.0/ms-MY/Humanizer.resources.dll",
  3541. "logo.png"
  3542. ]
  3543. },
  3544. "Humanizer.Core.mt/2.14.1": {
  3545. "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
  3546. "type": "package",
  3547. "path": "humanizer.core.mt/2.14.1",
  3548. "files": [
  3549. ".nupkg.metadata",
  3550. ".signature.p7s",
  3551. "humanizer.core.mt.2.14.1.nupkg.sha512",
  3552. "humanizer.core.mt.nuspec",
  3553. "lib/netstandard1.0/mt/Humanizer.resources.dll",
  3554. "lib/netstandard2.0/mt/Humanizer.resources.dll",
  3555. "logo.png"
  3556. ]
  3557. },
  3558. "Humanizer.Core.nb/2.14.1": {
  3559. "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
  3560. "type": "package",
  3561. "path": "humanizer.core.nb/2.14.1",
  3562. "files": [
  3563. ".nupkg.metadata",
  3564. ".signature.p7s",
  3565. "humanizer.core.nb.2.14.1.nupkg.sha512",
  3566. "humanizer.core.nb.nuspec",
  3567. "lib/net6.0/nb/Humanizer.resources.dll",
  3568. "lib/netstandard1.0/nb/Humanizer.resources.dll",
  3569. "lib/netstandard2.0/nb/Humanizer.resources.dll",
  3570. "logo.png"
  3571. ]
  3572. },
  3573. "Humanizer.Core.nb-NO/2.14.1": {
  3574. "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
  3575. "type": "package",
  3576. "path": "humanizer.core.nb-no/2.14.1",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "humanizer.core.nb-no.2.14.1.nupkg.sha512",
  3581. "humanizer.core.nb-no.nuspec",
  3582. "lib/net6.0/nb-NO/Humanizer.resources.dll",
  3583. "lib/netstandard1.0/nb-NO/Humanizer.resources.dll",
  3584. "lib/netstandard2.0/nb-NO/Humanizer.resources.dll",
  3585. "logo.png"
  3586. ]
  3587. },
  3588. "Humanizer.Core.nl/2.14.1": {
  3589. "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
  3590. "type": "package",
  3591. "path": "humanizer.core.nl/2.14.1",
  3592. "files": [
  3593. ".nupkg.metadata",
  3594. ".signature.p7s",
  3595. "humanizer.core.nl.2.14.1.nupkg.sha512",
  3596. "humanizer.core.nl.nuspec",
  3597. "lib/net6.0/nl/Humanizer.resources.dll",
  3598. "lib/netstandard1.0/nl/Humanizer.resources.dll",
  3599. "lib/netstandard2.0/nl/Humanizer.resources.dll",
  3600. "logo.png"
  3601. ]
  3602. },
  3603. "Humanizer.Core.pl/2.14.1": {
  3604. "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
  3605. "type": "package",
  3606. "path": "humanizer.core.pl/2.14.1",
  3607. "files": [
  3608. ".nupkg.metadata",
  3609. ".signature.p7s",
  3610. "humanizer.core.pl.2.14.1.nupkg.sha512",
  3611. "humanizer.core.pl.nuspec",
  3612. "lib/net6.0/pl/Humanizer.resources.dll",
  3613. "lib/netstandard1.0/pl/Humanizer.resources.dll",
  3614. "lib/netstandard2.0/pl/Humanizer.resources.dll",
  3615. "logo.png"
  3616. ]
  3617. },
  3618. "Humanizer.Core.pt/2.14.1": {
  3619. "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
  3620. "type": "package",
  3621. "path": "humanizer.core.pt/2.14.1",
  3622. "files": [
  3623. ".nupkg.metadata",
  3624. ".signature.p7s",
  3625. "humanizer.core.pt.2.14.1.nupkg.sha512",
  3626. "humanizer.core.pt.nuspec",
  3627. "lib/net6.0/pt/Humanizer.resources.dll",
  3628. "lib/netstandard1.0/pt/Humanizer.resources.dll",
  3629. "lib/netstandard2.0/pt/Humanizer.resources.dll",
  3630. "logo.png"
  3631. ]
  3632. },
  3633. "Humanizer.Core.ro/2.14.1": {
  3634. "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
  3635. "type": "package",
  3636. "path": "humanizer.core.ro/2.14.1",
  3637. "files": [
  3638. ".nupkg.metadata",
  3639. ".signature.p7s",
  3640. "humanizer.core.ro.2.14.1.nupkg.sha512",
  3641. "humanizer.core.ro.nuspec",
  3642. "lib/net6.0/ro/Humanizer.resources.dll",
  3643. "lib/netstandard1.0/ro/Humanizer.resources.dll",
  3644. "lib/netstandard2.0/ro/Humanizer.resources.dll",
  3645. "logo.png"
  3646. ]
  3647. },
  3648. "Humanizer.Core.ru/2.14.1": {
  3649. "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
  3650. "type": "package",
  3651. "path": "humanizer.core.ru/2.14.1",
  3652. "files": [
  3653. ".nupkg.metadata",
  3654. ".signature.p7s",
  3655. "humanizer.core.ru.2.14.1.nupkg.sha512",
  3656. "humanizer.core.ru.nuspec",
  3657. "lib/net6.0/ru/Humanizer.resources.dll",
  3658. "lib/netstandard1.0/ru/Humanizer.resources.dll",
  3659. "lib/netstandard2.0/ru/Humanizer.resources.dll",
  3660. "logo.png"
  3661. ]
  3662. },
  3663. "Humanizer.Core.sk/2.14.1": {
  3664. "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
  3665. "type": "package",
  3666. "path": "humanizer.core.sk/2.14.1",
  3667. "files": [
  3668. ".nupkg.metadata",
  3669. ".signature.p7s",
  3670. "humanizer.core.sk.2.14.1.nupkg.sha512",
  3671. "humanizer.core.sk.nuspec",
  3672. "lib/net6.0/sk/Humanizer.resources.dll",
  3673. "lib/netstandard1.0/sk/Humanizer.resources.dll",
  3674. "lib/netstandard2.0/sk/Humanizer.resources.dll",
  3675. "logo.png"
  3676. ]
  3677. },
  3678. "Humanizer.Core.sl/2.14.1": {
  3679. "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
  3680. "type": "package",
  3681. "path": "humanizer.core.sl/2.14.1",
  3682. "files": [
  3683. ".nupkg.metadata",
  3684. ".signature.p7s",
  3685. "humanizer.core.sl.2.14.1.nupkg.sha512",
  3686. "humanizer.core.sl.nuspec",
  3687. "lib/net6.0/sl/Humanizer.resources.dll",
  3688. "lib/netstandard1.0/sl/Humanizer.resources.dll",
  3689. "lib/netstandard2.0/sl/Humanizer.resources.dll",
  3690. "logo.png"
  3691. ]
  3692. },
  3693. "Humanizer.Core.sr/2.14.1": {
  3694. "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
  3695. "type": "package",
  3696. "path": "humanizer.core.sr/2.14.1",
  3697. "files": [
  3698. ".nupkg.metadata",
  3699. ".signature.p7s",
  3700. "humanizer.core.sr.2.14.1.nupkg.sha512",
  3701. "humanizer.core.sr.nuspec",
  3702. "lib/net6.0/sr/Humanizer.resources.dll",
  3703. "lib/netstandard1.0/sr/Humanizer.resources.dll",
  3704. "lib/netstandard2.0/sr/Humanizer.resources.dll",
  3705. "logo.png"
  3706. ]
  3707. },
  3708. "Humanizer.Core.sr-Latn/2.14.1": {
  3709. "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
  3710. "type": "package",
  3711. "path": "humanizer.core.sr-latn/2.14.1",
  3712. "files": [
  3713. ".nupkg.metadata",
  3714. ".signature.p7s",
  3715. "humanizer.core.sr-latn.2.14.1.nupkg.sha512",
  3716. "humanizer.core.sr-latn.nuspec",
  3717. "lib/net6.0/sr-Latn/Humanizer.resources.dll",
  3718. "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll",
  3719. "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll",
  3720. "logo.png"
  3721. ]
  3722. },
  3723. "Humanizer.Core.sv/2.14.1": {
  3724. "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
  3725. "type": "package",
  3726. "path": "humanizer.core.sv/2.14.1",
  3727. "files": [
  3728. ".nupkg.metadata",
  3729. ".signature.p7s",
  3730. "humanizer.core.sv.2.14.1.nupkg.sha512",
  3731. "humanizer.core.sv.nuspec",
  3732. "lib/net6.0/sv/Humanizer.resources.dll",
  3733. "lib/netstandard1.0/sv/Humanizer.resources.dll",
  3734. "lib/netstandard2.0/sv/Humanizer.resources.dll",
  3735. "logo.png"
  3736. ]
  3737. },
  3738. "Humanizer.Core.th-TH/2.14.1": {
  3739. "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
  3740. "type": "package",
  3741. "path": "humanizer.core.th-th/2.14.1",
  3742. "files": [
  3743. ".nupkg.metadata",
  3744. ".signature.p7s",
  3745. "humanizer.core.th-th.2.14.1.nupkg.sha512",
  3746. "humanizer.core.th-th.nuspec",
  3747. "lib/netstandard1.0/th-TH/Humanizer.resources.dll",
  3748. "lib/netstandard2.0/th-TH/Humanizer.resources.dll",
  3749. "logo.png"
  3750. ]
  3751. },
  3752. "Humanizer.Core.tr/2.14.1": {
  3753. "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
  3754. "type": "package",
  3755. "path": "humanizer.core.tr/2.14.1",
  3756. "files": [
  3757. ".nupkg.metadata",
  3758. ".signature.p7s",
  3759. "humanizer.core.tr.2.14.1.nupkg.sha512",
  3760. "humanizer.core.tr.nuspec",
  3761. "lib/net6.0/tr/Humanizer.resources.dll",
  3762. "lib/netstandard1.0/tr/Humanizer.resources.dll",
  3763. "lib/netstandard2.0/tr/Humanizer.resources.dll",
  3764. "logo.png"
  3765. ]
  3766. },
  3767. "Humanizer.Core.uk/2.14.1": {
  3768. "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
  3769. "type": "package",
  3770. "path": "humanizer.core.uk/2.14.1",
  3771. "files": [
  3772. ".nupkg.metadata",
  3773. ".signature.p7s",
  3774. "humanizer.core.uk.2.14.1.nupkg.sha512",
  3775. "humanizer.core.uk.nuspec",
  3776. "lib/net6.0/uk/Humanizer.resources.dll",
  3777. "lib/netstandard1.0/uk/Humanizer.resources.dll",
  3778. "lib/netstandard2.0/uk/Humanizer.resources.dll",
  3779. "logo.png"
  3780. ]
  3781. },
  3782. "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
  3783. "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
  3784. "type": "package",
  3785. "path": "humanizer.core.uz-cyrl-uz/2.14.1",
  3786. "files": [
  3787. ".nupkg.metadata",
  3788. ".signature.p7s",
  3789. "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512",
  3790. "humanizer.core.uz-cyrl-uz.nuspec",
  3791. "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll",
  3792. "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll",
  3793. "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll",
  3794. "logo.png"
  3795. ]
  3796. },
  3797. "Humanizer.Core.uz-Latn-UZ/2.14.1": {
  3798. "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
  3799. "type": "package",
  3800. "path": "humanizer.core.uz-latn-uz/2.14.1",
  3801. "files": [
  3802. ".nupkg.metadata",
  3803. ".signature.p7s",
  3804. "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512",
  3805. "humanizer.core.uz-latn-uz.nuspec",
  3806. "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll",
  3807. "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll",
  3808. "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll",
  3809. "logo.png"
  3810. ]
  3811. },
  3812. "Humanizer.Core.vi/2.14.1": {
  3813. "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
  3814. "type": "package",
  3815. "path": "humanizer.core.vi/2.14.1",
  3816. "files": [
  3817. ".nupkg.metadata",
  3818. ".signature.p7s",
  3819. "humanizer.core.vi.2.14.1.nupkg.sha512",
  3820. "humanizer.core.vi.nuspec",
  3821. "lib/net6.0/vi/Humanizer.resources.dll",
  3822. "lib/netstandard1.0/vi/Humanizer.resources.dll",
  3823. "lib/netstandard2.0/vi/Humanizer.resources.dll",
  3824. "logo.png"
  3825. ]
  3826. },
  3827. "Humanizer.Core.zh-CN/2.14.1": {
  3828. "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
  3829. "type": "package",
  3830. "path": "humanizer.core.zh-cn/2.14.1",
  3831. "files": [
  3832. ".nupkg.metadata",
  3833. ".signature.p7s",
  3834. "humanizer.core.zh-cn.2.14.1.nupkg.sha512",
  3835. "humanizer.core.zh-cn.nuspec",
  3836. "lib/net6.0/zh-CN/Humanizer.resources.dll",
  3837. "lib/netstandard1.0/zh-CN/Humanizer.resources.dll",
  3838. "lib/netstandard2.0/zh-CN/Humanizer.resources.dll",
  3839. "logo.png"
  3840. ]
  3841. },
  3842. "Humanizer.Core.zh-Hans/2.14.1": {
  3843. "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
  3844. "type": "package",
  3845. "path": "humanizer.core.zh-hans/2.14.1",
  3846. "files": [
  3847. ".nupkg.metadata",
  3848. ".signature.p7s",
  3849. "humanizer.core.zh-hans.2.14.1.nupkg.sha512",
  3850. "humanizer.core.zh-hans.nuspec",
  3851. "lib/net6.0/zh-Hans/Humanizer.resources.dll",
  3852. "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll",
  3853. "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll",
  3854. "logo.png"
  3855. ]
  3856. },
  3857. "Humanizer.Core.zh-Hant/2.14.1": {
  3858. "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
  3859. "type": "package",
  3860. "path": "humanizer.core.zh-hant/2.14.1",
  3861. "files": [
  3862. ".nupkg.metadata",
  3863. ".signature.p7s",
  3864. "humanizer.core.zh-hant.2.14.1.nupkg.sha512",
  3865. "humanizer.core.zh-hant.nuspec",
  3866. "lib/net6.0/zh-Hant/Humanizer.resources.dll",
  3867. "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll",
  3868. "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll",
  3869. "logo.png"
  3870. ]
  3871. },
  3872. "LiteDB/5.0.21": {
  3873. "sha512": "ykJ7ffFl7P9YQKR/PLci6zupiLrsSCNkOTiw6OtzntH7d2kCYp5L1+3a/pksKgTEHcJBoPXFtg7VZSGVBseN9w==",
  3874. "type": "package",
  3875. "path": "litedb/5.0.21",
  3876. "files": [
  3877. ".nupkg.metadata",
  3878. ".signature.p7s",
  3879. "AppVeyorSettings.json",
  3880. "LICENSE",
  3881. "icon_64x64.png",
  3882. "lib/net45/LiteDB.dll",
  3883. "lib/net45/LiteDB.xml",
  3884. "lib/netstandard1.3/LiteDB.dll",
  3885. "lib/netstandard1.3/LiteDB.xml",
  3886. "lib/netstandard2.0/LiteDB.dll",
  3887. "lib/netstandard2.0/LiteDB.xml",
  3888. "litedb.5.0.21.nupkg.sha512",
  3889. "litedb.nuspec"
  3890. ]
  3891. },
  3892. "Microsoft.AspNet.WebApi.Client/6.0.0": {
  3893. "sha512": "zXeWP03dTo67AoDHUzR+/urck0KFssdCKOC+dq7Nv1V2YbFh/nIg09L0/3wSvyRONEdwxGB/ssEGmPNIIhAcAw==",
  3894. "type": "package",
  3895. "path": "microsoft.aspnet.webapi.client/6.0.0",
  3896. "files": [
  3897. ".nupkg.metadata",
  3898. ".signature.p7s",
  3899. "NET.icon.png",
  3900. "NET_Library_EULA_ENU.txt",
  3901. "lib/net45/System.Net.Http.Formatting.dll",
  3902. "lib/net45/System.Net.Http.Formatting.xml",
  3903. "lib/netstandard1.3/System.Net.Http.Formatting.dll",
  3904. "lib/netstandard1.3/System.Net.Http.Formatting.xml",
  3905. "lib/netstandard2.0/System.Net.Http.Formatting.dll",
  3906. "lib/netstandard2.0/System.Net.Http.Formatting.xml",
  3907. "microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512",
  3908. "microsoft.aspnet.webapi.client.nuspec"
  3909. ]
  3910. },
  3911. "Microsoft.AspNet.WebApi.Core/5.3.0": {
  3912. "sha512": "h0oLsUFPgoB1R+6ichy1bniAs4oC6w6XrPsEgn+LuQBxBGskN0djSOSX7hzL8LTFEZUTdsh/3ShjRu1Mb2QRfw==",
  3913. "type": "package",
  3914. "path": "microsoft.aspnet.webapi.core/5.3.0",
  3915. "files": [
  3916. ".nupkg.metadata",
  3917. ".signature.p7s",
  3918. "Content/web.config.transform",
  3919. "NET.icon.png",
  3920. "NET_Library_EULA_ENU.txt",
  3921. "lib/net45/System.Web.Http.dll",
  3922. "lib/net45/System.Web.Http.xml",
  3923. "microsoft.aspnet.webapi.core.5.3.0.nupkg.sha512",
  3924. "microsoft.aspnet.webapi.core.nuspec"
  3925. ]
  3926. },
  3927. "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.13": {
  3928. "sha512": "EUNaX3F4fALAfvp7wsCqjqziu1lTNwYRFbIcVJEt6vInWxEpscAM/pcG6GBOx3WcmSRdB7sqtKAKSkyY6XhTig==",
  3929. "type": "package",
  3930. "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.13",
  3931. "files": [
  3932. ".nupkg.metadata",
  3933. ".signature.p7s",
  3934. "Icon.png",
  3935. "THIRD-PARTY-NOTICES.TXT",
  3936. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  3937. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  3938. "microsoft.aspnetcore.authentication.jwtbearer.8.0.13.nupkg.sha512",
  3939. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  3940. ]
  3941. },
  3942. "Microsoft.AspNetCore.Cryptography.Internal/8.0.13": {
  3943. "sha512": "ajbViewn2/4ZwE5jeP5t+JqF3KvagBsPxFADZd0zR6fw5HDvPmeFtaGP57p2ofg9yeLSKw9sug4n351UiRKwpA==",
  3944. "type": "package",
  3945. "path": "microsoft.aspnetcore.cryptography.internal/8.0.13",
  3946. "files": [
  3947. ".nupkg.metadata",
  3948. ".signature.p7s",
  3949. "Icon.png",
  3950. "THIRD-PARTY-NOTICES.TXT",
  3951. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3952. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3953. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3954. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3955. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3956. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3957. "microsoft.aspnetcore.cryptography.internal.8.0.13.nupkg.sha512",
  3958. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3959. ]
  3960. },
  3961. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.13": {
  3962. "sha512": "hxqUOifq+9aDxhla0KzOtFKuJ92RazTLig21WwXzeIOqmvLndPWVebqZBez3UR6KnLtS6OT/IUUsJ9h70WO4wA==",
  3963. "type": "package",
  3964. "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.13",
  3965. "files": [
  3966. ".nupkg.metadata",
  3967. ".signature.p7s",
  3968. "Icon.png",
  3969. "THIRD-PARTY-NOTICES.TXT",
  3970. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3971. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3972. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3973. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3974. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3975. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3976. "microsoft.aspnetcore.cryptography.keyderivation.8.0.13.nupkg.sha512",
  3977. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  3978. ]
  3979. },
  3980. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.13": {
  3981. "sha512": "phnM62PIcJcPF3c4tnUjmsIGAJGEEDhAarALxKFpKy9V4nwOVv/vPbgjRSt5ix3Zk03Z93TlQrBHWFDHLV4AHw==",
  3982. "type": "package",
  3983. "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.13",
  3984. "files": [
  3985. ".nupkg.metadata",
  3986. ".signature.p7s",
  3987. "Icon.png",
  3988. "THIRD-PARTY-NOTICES.TXT",
  3989. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3990. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3991. "microsoft.aspnetcore.identity.entityframeworkcore.8.0.13.nupkg.sha512",
  3992. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3993. ]
  3994. },
  3995. "Microsoft.AspNetCore.Identity.UI/8.0.13": {
  3996. "sha512": "3vN6k8MHgWQ2FguHTNYJqC2RWvwlqMxaVgrPJuUscMacSRJ/CjJvx0Z+FNIqjuaY+0rM5sGnnN6eE0ypUEKxhA==",
  3997. "type": "package",
  3998. "path": "microsoft.aspnetcore.identity.ui/8.0.13",
  3999. "files": [
  4000. ".nupkg.metadata",
  4001. ".signature.p7s",
  4002. "Icon.png",
  4003. "THIRD-PARTY-NOTICES.TXT",
  4004. "build/Microsoft.AspNetCore.Identity.UI.props",
  4005. "build/Microsoft.AspNetCore.Identity.UI.targets",
  4006. "build/Microsoft.AspNetCore.StaticWebAssets.V4.targets",
  4007. "build/Microsoft.AspNetCore.StaticWebAssets.V5.targets",
  4008. "build/Microsoft.AspNetCore.StaticWebAssets.targets",
  4009. "buildMultiTargeting/Microsoft.AspNetCore.Identity.UI.targets",
  4010. "buildTransitive/Microsoft.AspNetCore.Identity.UI.targets",
  4011. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.dll",
  4012. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.xml",
  4013. "microsoft.aspnetcore.identity.ui.8.0.13.nupkg.sha512",
  4014. "microsoft.aspnetcore.identity.ui.nuspec",
  4015. "staticwebassets/V4/css/site.css",
  4016. "staticwebassets/V4/favicon.ico",
  4017. "staticwebassets/V4/js/site.js",
  4018. "staticwebassets/V4/lib/bootstrap/LICENSE",
  4019. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.css",
  4020. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  4021. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  4022. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  4023. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.css",
  4024. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  4025. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  4026. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  4027. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.css",
  4028. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.css.map",
  4029. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.min.css",
  4030. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.min.css.map",
  4031. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.js",
  4032. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  4033. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  4034. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  4035. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.js",
  4036. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.js.map",
  4037. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.min.js",
  4038. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.min.js.map",
  4039. "staticwebassets/V4/lib/jquery-validation-unobtrusive/LICENSE.txt",
  4040. "staticwebassets/V4/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  4041. "staticwebassets/V4/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  4042. "staticwebassets/V4/lib/jquery-validation/LICENSE.md",
  4043. "staticwebassets/V4/lib/jquery-validation/dist/additional-methods.js",
  4044. "staticwebassets/V4/lib/jquery-validation/dist/additional-methods.min.js",
  4045. "staticwebassets/V4/lib/jquery-validation/dist/jquery.validate.js",
  4046. "staticwebassets/V4/lib/jquery-validation/dist/jquery.validate.min.js",
  4047. "staticwebassets/V4/lib/jquery/LICENSE.txt",
  4048. "staticwebassets/V4/lib/jquery/dist/jquery.js",
  4049. "staticwebassets/V4/lib/jquery/dist/jquery.min.js",
  4050. "staticwebassets/V4/lib/jquery/dist/jquery.min.map",
  4051. "staticwebassets/V5/css/site.css",
  4052. "staticwebassets/V5/favicon.ico",
  4053. "staticwebassets/V5/js/site.js",
  4054. "staticwebassets/V5/lib/bootstrap/LICENSE",
  4055. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css",
  4056. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  4057. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  4058. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  4059. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
  4060. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
  4061. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
  4062. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
  4063. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css",
  4064. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  4065. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  4066. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  4067. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
  4068. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
  4069. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
  4070. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
  4071. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css",
  4072. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
  4073. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
  4074. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
  4075. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
  4076. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
  4077. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
  4078. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
  4079. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css",
  4080. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map",
  4081. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css",
  4082. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map",
  4083. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css",
  4084. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
  4085. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
  4086. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
  4087. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js",
  4088. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  4089. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  4090. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  4091. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js",
  4092. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map",
  4093. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js",
  4094. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
  4095. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js",
  4096. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map",
  4097. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js",
  4098. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map",
  4099. "staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt",
  4100. "staticwebassets/V5/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  4101. "staticwebassets/V5/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  4102. "staticwebassets/V5/lib/jquery-validation/LICENSE.md",
  4103. "staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js",
  4104. "staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js",
  4105. "staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js",
  4106. "staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js",
  4107. "staticwebassets/V5/lib/jquery/LICENSE.txt",
  4108. "staticwebassets/V5/lib/jquery/dist/jquery.js",
  4109. "staticwebassets/V5/lib/jquery/dist/jquery.min.js",
  4110. "staticwebassets/V5/lib/jquery/dist/jquery.min.map"
  4111. ]
  4112. },
  4113. "Microsoft.AspNetCore.Razor.Language/6.0.24": {
  4114. "sha512": "kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==",
  4115. "type": "package",
  4116. "path": "microsoft.aspnetcore.razor.language/6.0.24",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "Icon.png",
  4121. "THIRD-PARTY-NOTICES.TXT",
  4122. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  4123. "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512",
  4124. "microsoft.aspnetcore.razor.language.nuspec"
  4125. ]
  4126. },
  4127. "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
  4128. "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
  4129. "type": "package",
  4130. "path": "microsoft.bcl.asyncinterfaces/7.0.0",
  4131. "files": [
  4132. ".nupkg.metadata",
  4133. ".signature.p7s",
  4134. "Icon.png",
  4135. "LICENSE.TXT",
  4136. "THIRD-PARTY-NOTICES.TXT",
  4137. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  4138. "buildTransitive/net462/_._",
  4139. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  4140. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  4141. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4142. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4143. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4144. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4145. "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512",
  4146. "microsoft.bcl.asyncinterfaces.nuspec",
  4147. "useSharedDesignerContext.txt"
  4148. ]
  4149. },
  4150. "Microsoft.Build/17.8.3": {
  4151. "sha512": "jOxP2DrBZb2zuDO5M8LfI50SCdXlahgUHJ6mH0jz4OBID0F9o+DVggk0CPAONmcbUPo2SsQCFkMaxmHkKLj99Q==",
  4152. "type": "package",
  4153. "path": "microsoft.build/17.8.3",
  4154. "files": [
  4155. ".nupkg.metadata",
  4156. ".signature.p7s",
  4157. "MSBuild-NuGet-Icon.png",
  4158. "README.md",
  4159. "lib/net472/Microsoft.Build.dll",
  4160. "lib/net472/Microsoft.Build.pdb",
  4161. "lib/net472/Microsoft.Build.xml",
  4162. "lib/net8.0/Microsoft.Build.dll",
  4163. "lib/net8.0/Microsoft.Build.pdb",
  4164. "lib/net8.0/Microsoft.Build.xml",
  4165. "microsoft.build.17.8.3.nupkg.sha512",
  4166. "microsoft.build.nuspec",
  4167. "notices/THIRDPARTYNOTICES.txt",
  4168. "ref/net472/Microsoft.Build.dll",
  4169. "ref/net472/Microsoft.Build.xml",
  4170. "ref/net8.0/Microsoft.Build.dll",
  4171. "ref/net8.0/Microsoft.Build.xml"
  4172. ]
  4173. },
  4174. "Microsoft.Build.Framework/17.8.3": {
  4175. "sha512": "NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==",
  4176. "type": "package",
  4177. "path": "microsoft.build.framework/17.8.3",
  4178. "files": [
  4179. ".nupkg.metadata",
  4180. ".signature.p7s",
  4181. "MSBuild-NuGet-Icon.png",
  4182. "README.md",
  4183. "lib/net472/Microsoft.Build.Framework.dll",
  4184. "lib/net472/Microsoft.Build.Framework.pdb",
  4185. "lib/net472/Microsoft.Build.Framework.xml",
  4186. "lib/net8.0/Microsoft.Build.Framework.dll",
  4187. "lib/net8.0/Microsoft.Build.Framework.pdb",
  4188. "lib/net8.0/Microsoft.Build.Framework.xml",
  4189. "microsoft.build.framework.17.8.3.nupkg.sha512",
  4190. "microsoft.build.framework.nuspec",
  4191. "notices/THIRDPARTYNOTICES.txt",
  4192. "ref/net472/Microsoft.Build.Framework.dll",
  4193. "ref/net472/Microsoft.Build.Framework.xml",
  4194. "ref/net8.0/Microsoft.Build.Framework.dll",
  4195. "ref/net8.0/Microsoft.Build.Framework.xml",
  4196. "ref/netstandard2.0/Microsoft.Build.Framework.dll",
  4197. "ref/netstandard2.0/Microsoft.Build.Framework.xml"
  4198. ]
  4199. },
  4200. "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
  4201. "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
  4202. "type": "package",
  4203. "path": "microsoft.codeanalysis.analyzers/3.3.4",
  4204. "hasTools": true,
  4205. "files": [
  4206. ".nupkg.metadata",
  4207. ".signature.p7s",
  4208. "Icon.png",
  4209. "ThirdPartyNotices.txt",
  4210. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4211. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4212. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4213. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4214. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4215. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4216. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4217. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4218. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4219. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4220. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4221. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4222. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4223. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4224. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4225. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4226. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4227. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4228. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4229. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4230. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4231. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4232. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4233. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4234. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4235. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4236. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4237. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4238. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4239. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4240. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props",
  4241. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets",
  4242. "buildTransitive/config/analysislevel_2_9_8_all.globalconfig",
  4243. "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig",
  4244. "buildTransitive/config/analysislevel_2_9_8_default.globalconfig",
  4245. "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig",
  4246. "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig",
  4247. "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig",
  4248. "buildTransitive/config/analysislevel_2_9_8_none.globalconfig",
  4249. "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig",
  4250. "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig",
  4251. "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig",
  4252. "buildTransitive/config/analysislevel_3_3_3_all.globalconfig",
  4253. "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig",
  4254. "buildTransitive/config/analysislevel_3_3_3_default.globalconfig",
  4255. "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig",
  4256. "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig",
  4257. "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig",
  4258. "buildTransitive/config/analysislevel_3_3_3_none.globalconfig",
  4259. "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig",
  4260. "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig",
  4261. "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig",
  4262. "buildTransitive/config/analysislevel_3_3_all.globalconfig",
  4263. "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig",
  4264. "buildTransitive/config/analysislevel_3_3_default.globalconfig",
  4265. "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig",
  4266. "buildTransitive/config/analysislevel_3_3_minimum.globalconfig",
  4267. "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig",
  4268. "buildTransitive/config/analysislevel_3_3_none.globalconfig",
  4269. "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig",
  4270. "buildTransitive/config/analysislevel_3_3_recommended.globalconfig",
  4271. "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig",
  4272. "buildTransitive/config/analysislevel_3_all.globalconfig",
  4273. "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig",
  4274. "buildTransitive/config/analysislevel_3_default.globalconfig",
  4275. "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig",
  4276. "buildTransitive/config/analysislevel_3_minimum.globalconfig",
  4277. "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig",
  4278. "buildTransitive/config/analysislevel_3_none.globalconfig",
  4279. "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig",
  4280. "buildTransitive/config/analysislevel_3_recommended.globalconfig",
  4281. "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig",
  4282. "buildTransitive/config/analysislevel_4_3_all.globalconfig",
  4283. "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig",
  4284. "buildTransitive/config/analysislevel_4_3_default.globalconfig",
  4285. "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig",
  4286. "buildTransitive/config/analysislevel_4_3_minimum.globalconfig",
  4287. "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig",
  4288. "buildTransitive/config/analysislevel_4_3_none.globalconfig",
  4289. "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig",
  4290. "buildTransitive/config/analysislevel_4_3_recommended.globalconfig",
  4291. "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig",
  4292. "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig",
  4293. "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig",
  4294. "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig",
  4295. "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig",
  4296. "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig",
  4297. "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig",
  4298. "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig",
  4299. "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig",
  4300. "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig",
  4301. "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig",
  4302. "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig",
  4303. "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig",
  4304. "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig",
  4305. "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig",
  4306. "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig",
  4307. "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig",
  4308. "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig",
  4309. "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig",
  4310. "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig",
  4311. "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig",
  4312. "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig",
  4313. "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig",
  4314. "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig",
  4315. "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig",
  4316. "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig",
  4317. "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig",
  4318. "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig",
  4319. "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig",
  4320. "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig",
  4321. "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig",
  4322. "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig",
  4323. "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig",
  4324. "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig",
  4325. "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig",
  4326. "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig",
  4327. "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig",
  4328. "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig",
  4329. "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig",
  4330. "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig",
  4331. "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig",
  4332. "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig",
  4333. "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig",
  4334. "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig",
  4335. "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig",
  4336. "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig",
  4337. "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig",
  4338. "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig",
  4339. "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig",
  4340. "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig",
  4341. "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig",
  4342. "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig",
  4343. "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig",
  4344. "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig",
  4345. "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig",
  4346. "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig",
  4347. "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig",
  4348. "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig",
  4349. "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig",
  4350. "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig",
  4351. "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig",
  4352. "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig",
  4353. "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig",
  4354. "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig",
  4355. "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig",
  4356. "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig",
  4357. "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig",
  4358. "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig",
  4359. "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig",
  4360. "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig",
  4361. "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig",
  4362. "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig",
  4363. "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig",
  4364. "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig",
  4365. "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig",
  4366. "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig",
  4367. "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig",
  4368. "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig",
  4369. "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig",
  4370. "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig",
  4371. "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig",
  4372. "buildTransitive/config/analysislevellibrary_3_all.globalconfig",
  4373. "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig",
  4374. "buildTransitive/config/analysislevellibrary_3_default.globalconfig",
  4375. "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig",
  4376. "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig",
  4377. "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig",
  4378. "buildTransitive/config/analysislevellibrary_3_none.globalconfig",
  4379. "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig",
  4380. "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig",
  4381. "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig",
  4382. "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig",
  4383. "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig",
  4384. "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig",
  4385. "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig",
  4386. "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig",
  4387. "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig",
  4388. "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig",
  4389. "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig",
  4390. "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig",
  4391. "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig",
  4392. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig",
  4393. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig",
  4394. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig",
  4395. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig",
  4396. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig",
  4397. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig",
  4398. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig",
  4399. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig",
  4400. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig",
  4401. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig",
  4402. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig",
  4403. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig",
  4404. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig",
  4405. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig",
  4406. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig",
  4407. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig",
  4408. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig",
  4409. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig",
  4410. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig",
  4411. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig",
  4412. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig",
  4413. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig",
  4414. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig",
  4415. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig",
  4416. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig",
  4417. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig",
  4418. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig",
  4419. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig",
  4420. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig",
  4421. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig",
  4422. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig",
  4423. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig",
  4424. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig",
  4425. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig",
  4426. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig",
  4427. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig",
  4428. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig",
  4429. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig",
  4430. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig",
  4431. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig",
  4432. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig",
  4433. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig",
  4434. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig",
  4435. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig",
  4436. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig",
  4437. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig",
  4438. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig",
  4439. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig",
  4440. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig",
  4441. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig",
  4442. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig",
  4443. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig",
  4444. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig",
  4445. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig",
  4446. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig",
  4447. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig",
  4448. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig",
  4449. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig",
  4450. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig",
  4451. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig",
  4452. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig",
  4453. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig",
  4454. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig",
  4455. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig",
  4456. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig",
  4457. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig",
  4458. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig",
  4459. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig",
  4460. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig",
  4461. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig",
  4462. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig",
  4463. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig",
  4464. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig",
  4465. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig",
  4466. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig",
  4467. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig",
  4468. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig",
  4469. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig",
  4470. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig",
  4471. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig",
  4472. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig",
  4473. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig",
  4474. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig",
  4475. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig",
  4476. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig",
  4477. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig",
  4478. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig",
  4479. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig",
  4480. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig",
  4481. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig",
  4482. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig",
  4483. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig",
  4484. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig",
  4485. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig",
  4486. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig",
  4487. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig",
  4488. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig",
  4489. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig",
  4490. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig",
  4491. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig",
  4492. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig",
  4493. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig",
  4494. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig",
  4495. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig",
  4496. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig",
  4497. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig",
  4498. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig",
  4499. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig",
  4500. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig",
  4501. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig",
  4502. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig",
  4503. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig",
  4504. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig",
  4505. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig",
  4506. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig",
  4507. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig",
  4508. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig",
  4509. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig",
  4510. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig",
  4511. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig",
  4512. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig",
  4513. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig",
  4514. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig",
  4515. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig",
  4516. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig",
  4517. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig",
  4518. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig",
  4519. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig",
  4520. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig",
  4521. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig",
  4522. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig",
  4523. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig",
  4524. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig",
  4525. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig",
  4526. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig",
  4527. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig",
  4528. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig",
  4529. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig",
  4530. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig",
  4531. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig",
  4532. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig",
  4533. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig",
  4534. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig",
  4535. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig",
  4536. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig",
  4537. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig",
  4538. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig",
  4539. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig",
  4540. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig",
  4541. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig",
  4542. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig",
  4543. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig",
  4544. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig",
  4545. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig",
  4546. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig",
  4547. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig",
  4548. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig",
  4549. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig",
  4550. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig",
  4551. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig",
  4552. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig",
  4553. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig",
  4554. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig",
  4555. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig",
  4556. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig",
  4557. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig",
  4558. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig",
  4559. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig",
  4560. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig",
  4561. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig",
  4562. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig",
  4563. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig",
  4564. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig",
  4565. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig",
  4566. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig",
  4567. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig",
  4568. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig",
  4569. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig",
  4570. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig",
  4571. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig",
  4572. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig",
  4573. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig",
  4574. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig",
  4575. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig",
  4576. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig",
  4577. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig",
  4578. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig",
  4579. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig",
  4580. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig",
  4581. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig",
  4582. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig",
  4583. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig",
  4584. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig",
  4585. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig",
  4586. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig",
  4587. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig",
  4588. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig",
  4589. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig",
  4590. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig",
  4591. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig",
  4592. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig",
  4593. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig",
  4594. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig",
  4595. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig",
  4596. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig",
  4597. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig",
  4598. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig",
  4599. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig",
  4600. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig",
  4601. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig",
  4602. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig",
  4603. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig",
  4604. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig",
  4605. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig",
  4606. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig",
  4607. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig",
  4608. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig",
  4609. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig",
  4610. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig",
  4611. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig",
  4612. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig",
  4613. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig",
  4614. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig",
  4615. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig",
  4616. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig",
  4617. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig",
  4618. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig",
  4619. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig",
  4620. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig",
  4621. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig",
  4622. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig",
  4623. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig",
  4624. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig",
  4625. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig",
  4626. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig",
  4627. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig",
  4628. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig",
  4629. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig",
  4630. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig",
  4631. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig",
  4632. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig",
  4633. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig",
  4634. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig",
  4635. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig",
  4636. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig",
  4637. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig",
  4638. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig",
  4639. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig",
  4640. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig",
  4641. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig",
  4642. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig",
  4643. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig",
  4644. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig",
  4645. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig",
  4646. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig",
  4647. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig",
  4648. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig",
  4649. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig",
  4650. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig",
  4651. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig",
  4652. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig",
  4653. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig",
  4654. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig",
  4655. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig",
  4656. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig",
  4657. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig",
  4658. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig",
  4659. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig",
  4660. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig",
  4661. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig",
  4662. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig",
  4663. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig",
  4664. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig",
  4665. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig",
  4666. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig",
  4667. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig",
  4668. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig",
  4669. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig",
  4670. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig",
  4671. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig",
  4672. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig",
  4673. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig",
  4674. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig",
  4675. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig",
  4676. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig",
  4677. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig",
  4678. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig",
  4679. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig",
  4680. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig",
  4681. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig",
  4682. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig",
  4683. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig",
  4684. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig",
  4685. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig",
  4686. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig",
  4687. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig",
  4688. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig",
  4689. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig",
  4690. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig",
  4691. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig",
  4692. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig",
  4693. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig",
  4694. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig",
  4695. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig",
  4696. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig",
  4697. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig",
  4698. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig",
  4699. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig",
  4700. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig",
  4701. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig",
  4702. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig",
  4703. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig",
  4704. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig",
  4705. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig",
  4706. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig",
  4707. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig",
  4708. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig",
  4709. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig",
  4710. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig",
  4711. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig",
  4712. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig",
  4713. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig",
  4714. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig",
  4715. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig",
  4716. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig",
  4717. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig",
  4718. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig",
  4719. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig",
  4720. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig",
  4721. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig",
  4722. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig",
  4723. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig",
  4724. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig",
  4725. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig",
  4726. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig",
  4727. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig",
  4728. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig",
  4729. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig",
  4730. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig",
  4731. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig",
  4732. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig",
  4733. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig",
  4734. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig",
  4735. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig",
  4736. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig",
  4737. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig",
  4738. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig",
  4739. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig",
  4740. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig",
  4741. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig",
  4742. "documentation/Analyzer Configuration.md",
  4743. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  4744. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  4745. "editorconfig/AllRulesDefault/.editorconfig",
  4746. "editorconfig/AllRulesDisabled/.editorconfig",
  4747. "editorconfig/AllRulesEnabled/.editorconfig",
  4748. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  4749. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  4750. "editorconfig/DataflowRulesDefault/.editorconfig",
  4751. "editorconfig/DataflowRulesEnabled/.editorconfig",
  4752. "editorconfig/LibraryRulesDefault/.editorconfig",
  4753. "editorconfig/LibraryRulesEnabled/.editorconfig",
  4754. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  4755. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  4756. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  4757. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  4758. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  4759. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  4760. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  4761. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  4762. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  4763. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  4764. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  4765. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  4766. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  4767. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  4768. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  4769. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  4770. "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512",
  4771. "microsoft.codeanalysis.analyzers.nuspec",
  4772. "rulesets/AllRulesDefault.ruleset",
  4773. "rulesets/AllRulesDisabled.ruleset",
  4774. "rulesets/AllRulesEnabled.ruleset",
  4775. "rulesets/CorrectnessRulesDefault.ruleset",
  4776. "rulesets/CorrectnessRulesEnabled.ruleset",
  4777. "rulesets/DataflowRulesDefault.ruleset",
  4778. "rulesets/DataflowRulesEnabled.ruleset",
  4779. "rulesets/LibraryRulesDefault.ruleset",
  4780. "rulesets/LibraryRulesEnabled.ruleset",
  4781. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  4782. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  4783. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  4784. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  4785. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  4786. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  4787. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  4788. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  4789. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  4790. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  4791. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  4792. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  4793. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  4794. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  4795. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  4796. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  4797. "tools/install.ps1",
  4798. "tools/uninstall.ps1"
  4799. ]
  4800. },
  4801. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  4802. "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
  4803. "type": "package",
  4804. "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
  4805. "hasTools": true,
  4806. "files": [
  4807. ".nupkg.metadata",
  4808. ".signature.p7s",
  4809. "EULA.rtf",
  4810. "ThirdPartyNotices.rtf",
  4811. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll",
  4812. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml",
  4813. "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
  4814. "microsoft.codeanalysis.analyzerutilities.nuspec",
  4815. "tools/install.ps1",
  4816. "tools/uninstall.ps1"
  4817. ]
  4818. },
  4819. "Microsoft.CodeAnalysis.Common/4.8.0": {
  4820. "sha512": "/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==",
  4821. "type": "package",
  4822. "path": "microsoft.codeanalysis.common/4.8.0",
  4823. "files": [
  4824. ".nupkg.metadata",
  4825. ".signature.p7s",
  4826. "Icon.png",
  4827. "ThirdPartyNotices.rtf",
  4828. "lib/net6.0/Microsoft.CodeAnalysis.dll",
  4829. "lib/net6.0/Microsoft.CodeAnalysis.pdb",
  4830. "lib/net6.0/Microsoft.CodeAnalysis.xml",
  4831. "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4832. "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll",
  4833. "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll",
  4834. "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4835. "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll",
  4836. "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4837. "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4838. "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4839. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4840. "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4841. "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4842. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4843. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4844. "lib/net7.0/Microsoft.CodeAnalysis.dll",
  4845. "lib/net7.0/Microsoft.CodeAnalysis.pdb",
  4846. "lib/net7.0/Microsoft.CodeAnalysis.xml",
  4847. "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4848. "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll",
  4849. "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll",
  4850. "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4851. "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll",
  4852. "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4853. "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4854. "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4855. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4856. "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4857. "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4858. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4859. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4860. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  4861. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  4862. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  4863. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4864. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  4865. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  4866. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4867. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  4868. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4869. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4870. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4871. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4872. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4873. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4874. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4875. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4876. "microsoft.codeanalysis.common.4.8.0.nupkg.sha512",
  4877. "microsoft.codeanalysis.common.nuspec"
  4878. ]
  4879. },
  4880. "Microsoft.CodeAnalysis.CSharp/4.8.0": {
  4881. "sha512": "+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==",
  4882. "type": "package",
  4883. "path": "microsoft.codeanalysis.csharp/4.8.0",
  4884. "files": [
  4885. ".nupkg.metadata",
  4886. ".signature.p7s",
  4887. "Icon.png",
  4888. "ThirdPartyNotices.rtf",
  4889. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll",
  4890. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4891. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.xml",
  4892. "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4893. "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4894. "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4895. "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4896. "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4897. "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4898. "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4899. "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4900. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4901. "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4902. "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4903. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4904. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4905. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll",
  4906. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4907. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml",
  4908. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4909. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4910. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4911. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4912. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4913. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4914. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4915. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4916. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4917. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4918. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4919. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4920. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4921. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  4922. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4923. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  4924. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4925. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4926. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4927. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4928. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4929. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4930. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4931. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4932. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4933. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4934. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4935. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4936. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4937. "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512",
  4938. "microsoft.codeanalysis.csharp.nuspec"
  4939. ]
  4940. },
  4941. "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
  4942. "sha512": "Gpas3l8PE1xz1VDIJNMkYuoFPXtuALxybP04caXh9avC2a0elsoBdukndkJXVZgdKPwraf0a98s7tjqnEk5QIQ==",
  4943. "type": "package",
  4944. "path": "microsoft.codeanalysis.csharp.features/4.8.0",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. ".signature.p7s",
  4948. "Icon.png",
  4949. "ThirdPartyNotices.rtf",
  4950. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4951. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4952. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4953. "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4954. "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4955. "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4956. "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4957. "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4958. "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4959. "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4960. "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4961. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4962. "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4963. "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4964. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4965. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4966. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4967. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4968. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4969. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4970. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4971. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4972. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4973. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4974. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4975. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4976. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4977. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4978. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4979. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4980. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4981. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4982. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4983. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4984. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4985. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4986. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4987. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4988. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4989. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4990. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4991. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4992. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4993. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4994. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4995. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4996. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4997. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4998. "microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512",
  4999. "microsoft.codeanalysis.csharp.features.nuspec"
  5000. ]
  5001. },
  5002. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
  5003. "sha512": "3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==",
  5004. "type": "package",
  5005. "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0",
  5006. "files": [
  5007. ".nupkg.metadata",
  5008. ".signature.p7s",
  5009. "Icon.png",
  5010. "ThirdPartyNotices.rtf",
  5011. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  5012. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  5013. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  5014. "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5015. "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5016. "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5017. "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5018. "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5019. "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5020. "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5021. "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5022. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5023. "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5024. "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5025. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5026. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5027. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  5028. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  5029. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  5030. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5031. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5032. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5033. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5034. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5035. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5036. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5037. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5038. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5039. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5040. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5041. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5042. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5043. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  5044. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  5045. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  5046. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5047. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5048. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5049. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5050. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5051. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5052. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5053. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5054. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5055. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5056. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5057. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5058. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  5059. "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512",
  5060. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  5061. ]
  5062. },
  5063. "Microsoft.CodeAnalysis.Elfie/1.0.0": {
  5064. "sha512": "r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==",
  5065. "type": "package",
  5066. "path": "microsoft.codeanalysis.elfie/1.0.0",
  5067. "files": [
  5068. ".nupkg.metadata",
  5069. ".signature.p7s",
  5070. "lib/net45/Microsoft.CodeAnalysis.Elfie.dll",
  5071. "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll",
  5072. "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512",
  5073. "microsoft.codeanalysis.elfie.nuspec"
  5074. ]
  5075. },
  5076. "Microsoft.CodeAnalysis.Features/4.8.0": {
  5077. "sha512": "sCVzMtSETGE16KeScwwlVfxaKRbUMSf/cgRPRPMJuou37SLT7XkIBzJu4e7mlFTzpJbfalV5tOcKpUtLO3eJAg==",
  5078. "type": "package",
  5079. "path": "microsoft.codeanalysis.features/4.8.0",
  5080. "files": [
  5081. ".nupkg.metadata",
  5082. ".signature.p7s",
  5083. "Icon.png",
  5084. "ThirdPartyNotices.rtf",
  5085. "lib/net6.0/Microsoft.CodeAnalysis.Features.dll",
  5086. "lib/net6.0/Microsoft.CodeAnalysis.Features.pdb",
  5087. "lib/net6.0/Microsoft.CodeAnalysis.Features.xml",
  5088. "lib/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  5089. "lib/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  5090. "lib/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  5091. "lib/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  5092. "lib/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  5093. "lib/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  5094. "lib/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  5095. "lib/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  5096. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  5097. "lib/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  5098. "lib/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  5099. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  5100. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  5101. "lib/net7.0/Microsoft.CodeAnalysis.Features.dll",
  5102. "lib/net7.0/Microsoft.CodeAnalysis.Features.pdb",
  5103. "lib/net7.0/Microsoft.CodeAnalysis.Features.xml",
  5104. "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  5105. "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  5106. "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  5107. "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  5108. "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  5109. "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  5110. "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  5111. "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  5112. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  5113. "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  5114. "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  5115. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  5116. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  5117. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll",
  5118. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb",
  5119. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml",
  5120. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  5121. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  5122. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  5123. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  5124. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  5125. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  5126. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  5127. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  5128. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  5129. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  5130. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  5131. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  5132. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  5133. "microsoft.codeanalysis.features.4.8.0.nupkg.sha512",
  5134. "microsoft.codeanalysis.features.nuspec"
  5135. ]
  5136. },
  5137. "Microsoft.CodeAnalysis.Razor/6.0.24": {
  5138. "sha512": "xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==",
  5139. "type": "package",
  5140. "path": "microsoft.codeanalysis.razor/6.0.24",
  5141. "files": [
  5142. ".nupkg.metadata",
  5143. ".signature.p7s",
  5144. "Icon.png",
  5145. "THIRD-PARTY-NOTICES.TXT",
  5146. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  5147. "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512",
  5148. "microsoft.codeanalysis.razor.nuspec"
  5149. ]
  5150. },
  5151. "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
  5152. "sha512": "ysiNNbAASVhV9wEd5oY2x99EwaVYtB13XZRjHsgWT/R1mQkxZF8jWsf7JWaZxD1+jNoz1QCQ6nbe+vr+6QvlFA==",
  5153. "type": "package",
  5154. "path": "microsoft.codeanalysis.scripting.common/4.8.0",
  5155. "files": [
  5156. ".nupkg.metadata",
  5157. ".signature.p7s",
  5158. "Icon.png",
  5159. "ThirdPartyNotices.rtf",
  5160. "lib/net6.0/Microsoft.CodeAnalysis.Scripting.dll",
  5161. "lib/net6.0/Microsoft.CodeAnalysis.Scripting.pdb",
  5162. "lib/net6.0/Microsoft.CodeAnalysis.Scripting.xml",
  5163. "lib/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5164. "lib/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5165. "lib/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5166. "lib/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5167. "lib/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5168. "lib/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5169. "lib/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5170. "lib/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5171. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5172. "lib/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5173. "lib/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5174. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5175. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5176. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll",
  5177. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.pdb",
  5178. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.xml",
  5179. "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5180. "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5181. "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5182. "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5183. "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5184. "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5185. "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5186. "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5187. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5188. "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5189. "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5190. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5191. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5192. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
  5193. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
  5194. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
  5195. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5196. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5197. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5198. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5199. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5200. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5201. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5202. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5203. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5204. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5205. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5206. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5207. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5208. "microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512",
  5209. "microsoft.codeanalysis.scripting.common.nuspec"
  5210. ]
  5211. },
  5212. "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
  5213. "sha512": "LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==",
  5214. "type": "package",
  5215. "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
  5216. "files": [
  5217. ".nupkg.metadata",
  5218. ".signature.p7s",
  5219. "Icon.png",
  5220. "ThirdPartyNotices.rtf",
  5221. "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll",
  5222. "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  5223. "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.xml",
  5224. "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5225. "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5226. "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5227. "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5228. "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5229. "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5230. "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5231. "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5232. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5233. "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5234. "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5235. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5236. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5237. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll",
  5238. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  5239. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.xml",
  5240. "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5241. "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5242. "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5243. "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5244. "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5245. "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5246. "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5247. "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5248. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5249. "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5250. "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5251. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5252. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5253. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  5254. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  5255. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  5256. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5257. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5258. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5259. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5260. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5261. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5262. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5263. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5264. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5265. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5266. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5267. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5268. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5269. "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512",
  5270. "microsoft.codeanalysis.workspaces.common.nuspec"
  5271. ]
  5272. },
  5273. "Microsoft.Data.SqlClient/5.1.6": {
  5274. "sha512": "+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==",
  5275. "type": "package",
  5276. "path": "microsoft.data.sqlclient/5.1.6",
  5277. "files": [
  5278. ".nupkg.metadata",
  5279. ".signature.p7s",
  5280. "dotnet.png",
  5281. "lib/net462/Microsoft.Data.SqlClient.dll",
  5282. "lib/net462/Microsoft.Data.SqlClient.pdb",
  5283. "lib/net462/Microsoft.Data.SqlClient.xml",
  5284. "lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
  5285. "lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
  5286. "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
  5287. "lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
  5288. "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
  5289. "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
  5290. "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  5291. "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
  5292. "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  5293. "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  5294. "lib/net6.0/Microsoft.Data.SqlClient.dll",
  5295. "lib/net6.0/Microsoft.Data.SqlClient.pdb",
  5296. "lib/net6.0/Microsoft.Data.SqlClient.xml",
  5297. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5298. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5299. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5300. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5301. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5302. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5303. "microsoft.data.sqlclient.5.1.6.nupkg.sha512",
  5304. "microsoft.data.sqlclient.nuspec",
  5305. "ref/net462/Microsoft.Data.SqlClient.dll",
  5306. "ref/net462/Microsoft.Data.SqlClient.pdb",
  5307. "ref/net462/Microsoft.Data.SqlClient.xml",
  5308. "ref/net6.0/Microsoft.Data.SqlClient.dll",
  5309. "ref/net6.0/Microsoft.Data.SqlClient.pdb",
  5310. "ref/net6.0/Microsoft.Data.SqlClient.xml",
  5311. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5312. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5313. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5314. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5315. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5316. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5317. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
  5318. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  5319. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5320. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5321. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5322. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5323. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
  5324. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
  5325. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
  5326. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  5327. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5328. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5329. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5330. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  5331. ]
  5332. },
  5333. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  5334. "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
  5335. "type": "package",
  5336. "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
  5337. "files": [
  5338. ".nupkg.metadata",
  5339. ".signature.p7s",
  5340. "LICENSE.txt",
  5341. "dotnet.png",
  5342. "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
  5343. "microsoft.data.sqlclient.sni.runtime.nuspec",
  5344. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  5345. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  5346. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  5347. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  5348. ]
  5349. },
  5350. "Microsoft.DiaSymReader/2.0.0": {
  5351. "sha512": "QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==",
  5352. "type": "package",
  5353. "path": "microsoft.diasymreader/2.0.0",
  5354. "files": [
  5355. ".nupkg.metadata",
  5356. ".signature.p7s",
  5357. "Icon.png",
  5358. "lib/netstandard2.0/Microsoft.DiaSymReader.dll",
  5359. "lib/netstandard2.0/Microsoft.DiaSymReader.pdb",
  5360. "lib/netstandard2.0/Microsoft.DiaSymReader.xml",
  5361. "microsoft.diasymreader.2.0.0.nupkg.sha512",
  5362. "microsoft.diasymreader.nuspec"
  5363. ]
  5364. },
  5365. "Microsoft.DotNet.Scaffolding.Shared/8.0.7": {
  5366. "sha512": "q11ADAFXiDHsiH6YpHDCtu/5JB/k6nBWM1pwoI3yOzq//2ZdnWgNkgs1coZyv/XZluxZbVmeo6f+ZoYGebIj/Q==",
  5367. "type": "package",
  5368. "path": "microsoft.dotnet.scaffolding.shared/8.0.7",
  5369. "files": [
  5370. ".nupkg.metadata",
  5371. ".signature.p7s",
  5372. "Icon.png",
  5373. "NOTICE.txt",
  5374. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll",
  5375. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.xml",
  5376. "microsoft.dotnet.scaffolding.shared.8.0.7.nupkg.sha512",
  5377. "microsoft.dotnet.scaffolding.shared.nuspec"
  5378. ]
  5379. },
  5380. "Microsoft.EntityFrameworkCore/8.0.13": {
  5381. "sha512": "4wyLeg64sZgJcER83fkitlKuySY3OzwcOZSZcGV1TNskmThupfhcVlsQht7bNCfNpXTCZVNIOwAZChk6/OFdXQ==",
  5382. "type": "package",
  5383. "path": "microsoft.entityframeworkcore/8.0.13",
  5384. "files": [
  5385. ".nupkg.metadata",
  5386. ".signature.p7s",
  5387. "Icon.png",
  5388. "PACKAGE.md",
  5389. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
  5390. "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
  5391. "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
  5392. "microsoft.entityframeworkcore.8.0.13.nupkg.sha512",
  5393. "microsoft.entityframeworkcore.nuspec"
  5394. ]
  5395. },
  5396. "Microsoft.EntityFrameworkCore.Abstractions/8.0.13": {
  5397. "sha512": "a6O+v8CMStumpVoQyN0aUpx5P3/qYZP+5791sGrzJhIM+QsniQdSaJVdUSneL40M+FpBgtiC8ggqzNo2x/gVlw==",
  5398. "type": "package",
  5399. "path": "microsoft.entityframeworkcore.abstractions/8.0.13",
  5400. "files": [
  5401. ".nupkg.metadata",
  5402. ".signature.p7s",
  5403. "Icon.png",
  5404. "PACKAGE.md",
  5405. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  5406. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  5407. "microsoft.entityframeworkcore.abstractions.8.0.13.nupkg.sha512",
  5408. "microsoft.entityframeworkcore.abstractions.nuspec"
  5409. ]
  5410. },
  5411. "Microsoft.EntityFrameworkCore.Analyzers/8.0.13": {
  5412. "sha512": "ENny33QADFiRxge5ikJBs2p7JB4MQx/ZSPKPNwt2eJPO0lVUGSjTiJeunGGggkVHiaUy0yY4f625LQtNlErIsw==",
  5413. "type": "package",
  5414. "path": "microsoft.entityframeworkcore.analyzers/8.0.13",
  5415. "files": [
  5416. ".nupkg.metadata",
  5417. ".signature.p7s",
  5418. "Icon.png",
  5419. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  5420. "docs/PACKAGE.md",
  5421. "lib/netstandard2.0/_._",
  5422. "microsoft.entityframeworkcore.analyzers.8.0.13.nupkg.sha512",
  5423. "microsoft.entityframeworkcore.analyzers.nuspec"
  5424. ]
  5425. },
  5426. "Microsoft.EntityFrameworkCore.Design/8.0.13": {
  5427. "sha512": "lQ+ck65jBgUc4VdQFzmeE7rofw3VCW4vkLZKp3ntz1GONw8Upsvhg+bpRiMjz4HvArxoGaUZz2XQ6vg5Im0uUQ==",
  5428. "type": "package",
  5429. "path": "microsoft.entityframeworkcore.design/8.0.13",
  5430. "files": [
  5431. ".nupkg.metadata",
  5432. ".signature.p7s",
  5433. "Icon.png",
  5434. "PACKAGE.md",
  5435. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
  5436. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
  5437. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
  5438. "microsoft.entityframeworkcore.design.8.0.13.nupkg.sha512",
  5439. "microsoft.entityframeworkcore.design.nuspec"
  5440. ]
  5441. },
  5442. "Microsoft.EntityFrameworkCore.Relational/8.0.13": {
  5443. "sha512": "uQR2iTar+6ZEjEHTwgH0/7ySSRme4R9sDiupfG3w/eBub3365fPw/MjhsuOMQkdq9YzLM7veH4Qt/K9OqL26Qg==",
  5444. "type": "package",
  5445. "path": "microsoft.entityframeworkcore.relational/8.0.13",
  5446. "files": [
  5447. ".nupkg.metadata",
  5448. ".signature.p7s",
  5449. "Icon.png",
  5450. "PACKAGE.md",
  5451. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
  5452. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
  5453. "microsoft.entityframeworkcore.relational.8.0.13.nupkg.sha512",
  5454. "microsoft.entityframeworkcore.relational.nuspec"
  5455. ]
  5456. },
  5457. "Microsoft.EntityFrameworkCore.SqlServer/8.0.13": {
  5458. "sha512": "u63lys+66IdCJKMg0eUe/SQkmbyiFXEDS81Xgw+19RiUGpzsfB3PpkCBggmYWBbC5YDnKtgthpr8R7Nljv/QXA==",
  5459. "type": "package",
  5460. "path": "microsoft.entityframeworkcore.sqlserver/8.0.13",
  5461. "files": [
  5462. ".nupkg.metadata",
  5463. ".signature.p7s",
  5464. "Icon.png",
  5465. "PACKAGE.md",
  5466. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  5467. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  5468. "microsoft.entityframeworkcore.sqlserver.8.0.13.nupkg.sha512",
  5469. "microsoft.entityframeworkcore.sqlserver.nuspec"
  5470. ]
  5471. },
  5472. "Microsoft.EntityFrameworkCore.Tools/8.0.13": {
  5473. "sha512": "mbCcyX6ImsCcK2OU2qEQKLWaHn91Z7P/KlQSKCZt+rxRMM+d94jV3SR3KKSchA4TzAehZaDKeQlLxuToEX15gQ==",
  5474. "type": "package",
  5475. "path": "microsoft.entityframeworkcore.tools/8.0.13",
  5476. "hasTools": true,
  5477. "files": [
  5478. ".nupkg.metadata",
  5479. ".signature.p7s",
  5480. "Icon.png",
  5481. "docs/PACKAGE.md",
  5482. "lib/net8.0/_._",
  5483. "microsoft.entityframeworkcore.tools.8.0.13.nupkg.sha512",
  5484. "microsoft.entityframeworkcore.tools.nuspec",
  5485. "tools/EntityFrameworkCore.PS2.psd1",
  5486. "tools/EntityFrameworkCore.PS2.psm1",
  5487. "tools/EntityFrameworkCore.psd1",
  5488. "tools/EntityFrameworkCore.psm1",
  5489. "tools/about_EntityFrameworkCore.help.txt",
  5490. "tools/init.ps1",
  5491. "tools/net461/any/ef.exe",
  5492. "tools/net461/win-arm64/ef.exe",
  5493. "tools/net461/win-x86/ef.exe",
  5494. "tools/netcoreapp2.0/any/ef.dll",
  5495. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  5496. ]
  5497. },
  5498. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  5499. "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  5500. "type": "package",
  5501. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  5502. "files": [
  5503. ".nupkg.metadata",
  5504. ".signature.p7s",
  5505. "Icon.png",
  5506. "LICENSE.TXT",
  5507. "PACKAGE.md",
  5508. "THIRD-PARTY-NOTICES.TXT",
  5509. "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
  5510. "buildTransitive/net462/_._",
  5511. "buildTransitive/net6.0/_._",
  5512. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
  5513. "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
  5514. "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
  5515. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5516. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5517. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5518. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5519. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5520. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5521. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5522. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5523. "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
  5524. "microsoft.extensions.caching.abstractions.nuspec",
  5525. "useSharedDesignerContext.txt"
  5526. ]
  5527. },
  5528. "Microsoft.Extensions.Caching.Memory/8.0.1": {
  5529. "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
  5530. "type": "package",
  5531. "path": "microsoft.extensions.caching.memory/8.0.1",
  5532. "files": [
  5533. ".nupkg.metadata",
  5534. ".signature.p7s",
  5535. "Icon.png",
  5536. "LICENSE.TXT",
  5537. "PACKAGE.md",
  5538. "THIRD-PARTY-NOTICES.TXT",
  5539. "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
  5540. "buildTransitive/net462/_._",
  5541. "buildTransitive/net6.0/_._",
  5542. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
  5543. "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
  5544. "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
  5545. "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
  5546. "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
  5547. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
  5548. "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
  5549. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
  5550. "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
  5551. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  5552. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  5553. "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
  5554. "microsoft.extensions.caching.memory.nuspec",
  5555. "useSharedDesignerContext.txt"
  5556. ]
  5557. },
  5558. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  5559. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  5560. "type": "package",
  5561. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  5562. "files": [
  5563. ".nupkg.metadata",
  5564. ".signature.p7s",
  5565. "Icon.png",
  5566. "LICENSE.TXT",
  5567. "PACKAGE.md",
  5568. "THIRD-PARTY-NOTICES.TXT",
  5569. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  5570. "buildTransitive/net462/_._",
  5571. "buildTransitive/net6.0/_._",
  5572. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  5573. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  5574. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  5575. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5576. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5577. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5578. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5579. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5580. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5581. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5582. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5583. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  5584. "microsoft.extensions.configuration.abstractions.nuspec",
  5585. "useSharedDesignerContext.txt"
  5586. ]
  5587. },
  5588. "Microsoft.Extensions.DependencyInjection/8.0.1": {
  5589. "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
  5590. "type": "package",
  5591. "path": "microsoft.extensions.dependencyinjection/8.0.1",
  5592. "files": [
  5593. ".nupkg.metadata",
  5594. ".signature.p7s",
  5595. "Icon.png",
  5596. "LICENSE.TXT",
  5597. "PACKAGE.md",
  5598. "THIRD-PARTY-NOTICES.TXT",
  5599. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  5600. "buildTransitive/net462/_._",
  5601. "buildTransitive/net6.0/_._",
  5602. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  5603. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  5604. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  5605. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  5606. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  5607. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  5608. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  5609. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  5610. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  5611. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  5612. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  5613. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  5614. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  5615. "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
  5616. "microsoft.extensions.dependencyinjection.nuspec",
  5617. "useSharedDesignerContext.txt"
  5618. ]
  5619. },
  5620. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
  5621. "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
  5622. "type": "package",
  5623. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
  5624. "files": [
  5625. ".nupkg.metadata",
  5626. ".signature.p7s",
  5627. "Icon.png",
  5628. "LICENSE.TXT",
  5629. "PACKAGE.md",
  5630. "THIRD-PARTY-NOTICES.TXT",
  5631. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  5632. "buildTransitive/net462/_._",
  5633. "buildTransitive/net6.0/_._",
  5634. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  5635. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5636. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5637. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5638. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5639. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5640. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5641. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5642. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5643. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5644. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5645. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5646. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5647. "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
  5648. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  5649. "useSharedDesignerContext.txt"
  5650. ]
  5651. },
  5652. "Microsoft.Extensions.DependencyModel/8.0.2": {
  5653. "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
  5654. "type": "package",
  5655. "path": "microsoft.extensions.dependencymodel/8.0.2",
  5656. "files": [
  5657. ".nupkg.metadata",
  5658. ".signature.p7s",
  5659. "Icon.png",
  5660. "LICENSE.TXT",
  5661. "PACKAGE.md",
  5662. "THIRD-PARTY-NOTICES.TXT",
  5663. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  5664. "buildTransitive/net462/_._",
  5665. "buildTransitive/net6.0/_._",
  5666. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  5667. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  5668. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  5669. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  5670. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  5671. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  5672. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  5673. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
  5674. "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
  5675. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  5676. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  5677. "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
  5678. "microsoft.extensions.dependencymodel.nuspec",
  5679. "useSharedDesignerContext.txt"
  5680. ]
  5681. },
  5682. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  5683. "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
  5684. "type": "package",
  5685. "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
  5686. "files": [
  5687. ".nupkg.metadata",
  5688. ".signature.p7s",
  5689. "Icon.png",
  5690. "LICENSE.TXT",
  5691. "PACKAGE.md",
  5692. "THIRD-PARTY-NOTICES.TXT",
  5693. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
  5694. "buildTransitive/net462/_._",
  5695. "buildTransitive/net6.0/_._",
  5696. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  5697. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5698. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5699. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5700. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5701. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5702. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5703. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5704. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5705. "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
  5706. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5707. "useSharedDesignerContext.txt"
  5708. ]
  5709. },
  5710. "Microsoft.Extensions.FileProviders.Embedded/8.0.13": {
  5711. "sha512": "1j9VuXFqbz5Ewd9whx+dFE19r7C4/XuB5H8i/rSWL5Htuuxxv+NGt6HTRUQgfw6vznw3Xi7rLiY6VZJT/qkeFQ==",
  5712. "type": "package",
  5713. "path": "microsoft.extensions.fileproviders.embedded/8.0.13",
  5714. "files": [
  5715. ".nupkg.metadata",
  5716. ".signature.p7s",
  5717. "Icon.png",
  5718. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  5719. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  5720. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  5721. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  5722. "lib/net462/Microsoft.Extensions.FileProviders.Embedded.dll",
  5723. "lib/net462/Microsoft.Extensions.FileProviders.Embedded.xml",
  5724. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5725. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5726. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5727. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5728. "microsoft.extensions.fileproviders.embedded.8.0.13.nupkg.sha512",
  5729. "microsoft.extensions.fileproviders.embedded.nuspec",
  5730. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  5731. ]
  5732. },
  5733. "Microsoft.Extensions.Identity.Core/8.0.13": {
  5734. "sha512": "/RWLas2PEtUCNxwCb6Iwy1jM7sUWoeB6cc1g/1M//ar+XYrjYCbshLA+Adq9k0DkKCf2GjDhWl6obVStx++tSQ==",
  5735. "type": "package",
  5736. "path": "microsoft.extensions.identity.core/8.0.13",
  5737. "files": [
  5738. ".nupkg.metadata",
  5739. ".signature.p7s",
  5740. "Icon.png",
  5741. "THIRD-PARTY-NOTICES.TXT",
  5742. "lib/net462/Microsoft.Extensions.Identity.Core.dll",
  5743. "lib/net462/Microsoft.Extensions.Identity.Core.xml",
  5744. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll",
  5745. "lib/net8.0/Microsoft.Extensions.Identity.Core.xml",
  5746. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  5747. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  5748. "microsoft.extensions.identity.core.8.0.13.nupkg.sha512",
  5749. "microsoft.extensions.identity.core.nuspec"
  5750. ]
  5751. },
  5752. "Microsoft.Extensions.Identity.Stores/8.0.13": {
  5753. "sha512": "IqYIYxUnwF12GMpr7AP6VqzcYRuGxD97sSjbIOXZtxUWuMi4+oVtI4ca0cSuLjpw7VqqCn2Q6nr2BjwSJ380Rw==",
  5754. "type": "package",
  5755. "path": "microsoft.extensions.identity.stores/8.0.13",
  5756. "files": [
  5757. ".nupkg.metadata",
  5758. ".signature.p7s",
  5759. "Icon.png",
  5760. "THIRD-PARTY-NOTICES.TXT",
  5761. "lib/net462/Microsoft.Extensions.Identity.Stores.dll",
  5762. "lib/net462/Microsoft.Extensions.Identity.Stores.xml",
  5763. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll",
  5764. "lib/net8.0/Microsoft.Extensions.Identity.Stores.xml",
  5765. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  5766. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  5767. "microsoft.extensions.identity.stores.8.0.13.nupkg.sha512",
  5768. "microsoft.extensions.identity.stores.nuspec"
  5769. ]
  5770. },
  5771. "Microsoft.Extensions.Logging/8.0.1": {
  5772. "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
  5773. "type": "package",
  5774. "path": "microsoft.extensions.logging/8.0.1",
  5775. "files": [
  5776. ".nupkg.metadata",
  5777. ".signature.p7s",
  5778. "Icon.png",
  5779. "LICENSE.TXT",
  5780. "PACKAGE.md",
  5781. "THIRD-PARTY-NOTICES.TXT",
  5782. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  5783. "buildTransitive/net462/_._",
  5784. "buildTransitive/net6.0/_._",
  5785. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  5786. "lib/net462/Microsoft.Extensions.Logging.dll",
  5787. "lib/net462/Microsoft.Extensions.Logging.xml",
  5788. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  5789. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  5790. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  5791. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  5792. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  5793. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  5794. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5795. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5796. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5797. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5798. "microsoft.extensions.logging.8.0.1.nupkg.sha512",
  5799. "microsoft.extensions.logging.nuspec",
  5800. "useSharedDesignerContext.txt"
  5801. ]
  5802. },
  5803. "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
  5804. "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
  5805. "type": "package",
  5806. "path": "microsoft.extensions.logging.abstractions/8.0.2",
  5807. "files": [
  5808. ".nupkg.metadata",
  5809. ".signature.p7s",
  5810. "Icon.png",
  5811. "LICENSE.TXT",
  5812. "PACKAGE.md",
  5813. "THIRD-PARTY-NOTICES.TXT",
  5814. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  5815. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5816. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5817. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5818. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5819. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5820. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5821. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5822. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5823. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5824. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5825. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5826. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5827. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5828. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  5829. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5830. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5831. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5832. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5833. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5834. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5835. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5836. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5837. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5838. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5839. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5840. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5841. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5842. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  5843. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5844. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5845. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5846. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5847. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5848. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5849. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5850. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5851. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5852. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5853. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5854. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5855. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5856. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  5857. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  5858. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5859. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5860. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5861. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  5862. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  5863. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5864. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5865. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5866. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5867. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5868. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5869. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5870. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5871. "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
  5872. "microsoft.extensions.logging.abstractions.nuspec",
  5873. "useSharedDesignerContext.txt"
  5874. ]
  5875. },
  5876. "Microsoft.Extensions.Options/8.0.2": {
  5877. "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
  5878. "type": "package",
  5879. "path": "microsoft.extensions.options/8.0.2",
  5880. "files": [
  5881. ".nupkg.metadata",
  5882. ".signature.p7s",
  5883. "Icon.png",
  5884. "LICENSE.TXT",
  5885. "PACKAGE.md",
  5886. "THIRD-PARTY-NOTICES.TXT",
  5887. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  5888. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5889. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5890. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5891. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5892. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5893. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5894. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5895. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5896. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5897. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5898. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5899. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5900. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5901. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  5902. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  5903. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  5904. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  5905. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  5906. "lib/net462/Microsoft.Extensions.Options.dll",
  5907. "lib/net462/Microsoft.Extensions.Options.xml",
  5908. "lib/net6.0/Microsoft.Extensions.Options.dll",
  5909. "lib/net6.0/Microsoft.Extensions.Options.xml",
  5910. "lib/net7.0/Microsoft.Extensions.Options.dll",
  5911. "lib/net7.0/Microsoft.Extensions.Options.xml",
  5912. "lib/net8.0/Microsoft.Extensions.Options.dll",
  5913. "lib/net8.0/Microsoft.Extensions.Options.xml",
  5914. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5915. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5916. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  5917. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  5918. "microsoft.extensions.options.8.0.2.nupkg.sha512",
  5919. "microsoft.extensions.options.nuspec",
  5920. "useSharedDesignerContext.txt"
  5921. ]
  5922. },
  5923. "Microsoft.Extensions.Primitives/8.0.0": {
  5924. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  5925. "type": "package",
  5926. "path": "microsoft.extensions.primitives/8.0.0",
  5927. "files": [
  5928. ".nupkg.metadata",
  5929. ".signature.p7s",
  5930. "Icon.png",
  5931. "LICENSE.TXT",
  5932. "PACKAGE.md",
  5933. "THIRD-PARTY-NOTICES.TXT",
  5934. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  5935. "buildTransitive/net462/_._",
  5936. "buildTransitive/net6.0/_._",
  5937. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  5938. "lib/net462/Microsoft.Extensions.Primitives.dll",
  5939. "lib/net462/Microsoft.Extensions.Primitives.xml",
  5940. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  5941. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  5942. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  5943. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  5944. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  5945. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  5946. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5947. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5948. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  5949. "microsoft.extensions.primitives.nuspec",
  5950. "useSharedDesignerContext.txt"
  5951. ]
  5952. },
  5953. "Microsoft.Identity.Client/4.61.3": {
  5954. "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==",
  5955. "type": "package",
  5956. "path": "microsoft.identity.client/4.61.3",
  5957. "files": [
  5958. ".nupkg.metadata",
  5959. ".signature.p7s",
  5960. "README.md",
  5961. "lib/net462/Microsoft.Identity.Client.dll",
  5962. "lib/net462/Microsoft.Identity.Client.xml",
  5963. "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
  5964. "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
  5965. "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
  5966. "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
  5967. "lib/net6.0/Microsoft.Identity.Client.dll",
  5968. "lib/net6.0/Microsoft.Identity.Client.xml",
  5969. "lib/netstandard2.0/Microsoft.Identity.Client.dll",
  5970. "lib/netstandard2.0/Microsoft.Identity.Client.xml",
  5971. "microsoft.identity.client.4.61.3.nupkg.sha512",
  5972. "microsoft.identity.client.nuspec"
  5973. ]
  5974. },
  5975. "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
  5976. "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==",
  5977. "type": "package",
  5978. "path": "microsoft.identity.client.extensions.msal/4.61.3",
  5979. "files": [
  5980. ".nupkg.metadata",
  5981. ".signature.p7s",
  5982. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  5983. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  5984. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  5985. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  5986. "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
  5987. "microsoft.identity.client.extensions.msal.nuspec"
  5988. ]
  5989. },
  5990. "Microsoft.IdentityModel.Abstractions/7.1.2": {
  5991. "sha512": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==",
  5992. "type": "package",
  5993. "path": "microsoft.identitymodel.abstractions/7.1.2",
  5994. "files": [
  5995. ".nupkg.metadata",
  5996. ".signature.p7s",
  5997. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  5998. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  5999. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  6000. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  6001. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  6002. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  6003. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  6004. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  6005. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  6006. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  6007. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  6008. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  6009. "microsoft.identitymodel.abstractions.7.1.2.nupkg.sha512",
  6010. "microsoft.identitymodel.abstractions.nuspec"
  6011. ]
  6012. },
  6013. "Microsoft.IdentityModel.JsonWebTokens/7.1.2": {
  6014. "sha512": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==",
  6015. "type": "package",
  6016. "path": "microsoft.identitymodel.jsonwebtokens/7.1.2",
  6017. "files": [
  6018. ".nupkg.metadata",
  6019. ".signature.p7s",
  6020. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  6021. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  6022. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  6023. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  6024. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  6025. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  6026. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  6027. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  6028. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  6029. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  6030. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  6031. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  6032. "microsoft.identitymodel.jsonwebtokens.7.1.2.nupkg.sha512",
  6033. "microsoft.identitymodel.jsonwebtokens.nuspec"
  6034. ]
  6035. },
  6036. "Microsoft.IdentityModel.Logging/7.1.2": {
  6037. "sha512": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==",
  6038. "type": "package",
  6039. "path": "microsoft.identitymodel.logging/7.1.2",
  6040. "files": [
  6041. ".nupkg.metadata",
  6042. ".signature.p7s",
  6043. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  6044. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  6045. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  6046. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  6047. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  6048. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  6049. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  6050. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  6051. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  6052. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  6053. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  6054. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  6055. "microsoft.identitymodel.logging.7.1.2.nupkg.sha512",
  6056. "microsoft.identitymodel.logging.nuspec"
  6057. ]
  6058. },
  6059. "Microsoft.IdentityModel.Protocols/7.1.2": {
  6060. "sha512": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==",
  6061. "type": "package",
  6062. "path": "microsoft.identitymodel.protocols/7.1.2",
  6063. "files": [
  6064. ".nupkg.metadata",
  6065. ".signature.p7s",
  6066. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  6067. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  6068. "lib/net462/Microsoft.IdentityModel.Protocols.dll",
  6069. "lib/net462/Microsoft.IdentityModel.Protocols.xml",
  6070. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  6071. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  6072. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
  6073. "lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
  6074. "lib/net8.0/Microsoft.IdentityModel.Protocols.dll",
  6075. "lib/net8.0/Microsoft.IdentityModel.Protocols.xml",
  6076. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  6077. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  6078. "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512",
  6079. "microsoft.identitymodel.protocols.nuspec"
  6080. ]
  6081. },
  6082. "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
  6083. "sha512": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==",
  6084. "type": "package",
  6085. "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2",
  6086. "files": [
  6087. ".nupkg.metadata",
  6088. ".signature.p7s",
  6089. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6090. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6091. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6092. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6093. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6094. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6095. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6096. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6097. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6098. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6099. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6100. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6101. "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512",
  6102. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  6103. ]
  6104. },
  6105. "Microsoft.IdentityModel.Tokens/7.1.2": {
  6106. "sha512": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==",
  6107. "type": "package",
  6108. "path": "microsoft.identitymodel.tokens/7.1.2",
  6109. "files": [
  6110. ".nupkg.metadata",
  6111. ".signature.p7s",
  6112. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  6113. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  6114. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  6115. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  6116. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  6117. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  6118. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  6119. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  6120. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  6121. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  6122. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  6123. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  6124. "microsoft.identitymodel.tokens.7.1.2.nupkg.sha512",
  6125. "microsoft.identitymodel.tokens.nuspec"
  6126. ]
  6127. },
  6128. "Microsoft.NET.StringTools/17.8.3": {
  6129. "sha512": "y6DiuacjlIfXH3XVQG5htf+4oheinZAo7sHbITB3z7yCXQec48f9ZhGSXkr+xn1bfl73Yc3ZQEW2peJ5X68AvQ==",
  6130. "type": "package",
  6131. "path": "microsoft.net.stringtools/17.8.3",
  6132. "files": [
  6133. ".nupkg.metadata",
  6134. ".signature.p7s",
  6135. "MSBuild-NuGet-Icon.png",
  6136. "README.md",
  6137. "lib/net472/Microsoft.NET.StringTools.dll",
  6138. "lib/net472/Microsoft.NET.StringTools.pdb",
  6139. "lib/net472/Microsoft.NET.StringTools.xml",
  6140. "lib/net8.0/Microsoft.NET.StringTools.dll",
  6141. "lib/net8.0/Microsoft.NET.StringTools.pdb",
  6142. "lib/net8.0/Microsoft.NET.StringTools.xml",
  6143. "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
  6144. "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
  6145. "lib/netstandard2.0/Microsoft.NET.StringTools.xml",
  6146. "microsoft.net.stringtools.17.8.3.nupkg.sha512",
  6147. "microsoft.net.stringtools.nuspec",
  6148. "notices/THIRDPARTYNOTICES.txt",
  6149. "ref/net472/Microsoft.NET.StringTools.dll",
  6150. "ref/net472/Microsoft.NET.StringTools.xml",
  6151. "ref/net8.0/Microsoft.NET.StringTools.dll",
  6152. "ref/net8.0/Microsoft.NET.StringTools.xml",
  6153. "ref/netstandard2.0/Microsoft.NET.StringTools.dll",
  6154. "ref/netstandard2.0/Microsoft.NET.StringTools.xml"
  6155. ]
  6156. },
  6157. "Microsoft.SqlServer.Server/1.0.0": {
  6158. "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  6159. "type": "package",
  6160. "path": "microsoft.sqlserver.server/1.0.0",
  6161. "files": [
  6162. ".nupkg.metadata",
  6163. ".signature.p7s",
  6164. "dotnet.png",
  6165. "lib/net46/Microsoft.SqlServer.Server.dll",
  6166. "lib/net46/Microsoft.SqlServer.Server.pdb",
  6167. "lib/net46/Microsoft.SqlServer.Server.xml",
  6168. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll",
  6169. "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb",
  6170. "lib/netstandard2.0/Microsoft.SqlServer.Server.xml",
  6171. "microsoft.sqlserver.server.1.0.0.nupkg.sha512",
  6172. "microsoft.sqlserver.server.nuspec"
  6173. ]
  6174. },
  6175. "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": {
  6176. "sha512": "8WqtBA1DxiiEq1c2PjgkeFYHPC0WwC5Yl7FuDg41RQ6rvi661mSHCApzz3/rp/cfb8I7DiG1+3d01q5ck+BT1w==",
  6177. "type": "package",
  6178. "path": "microsoft.visualstudio.web.codegeneration/8.0.7",
  6179. "files": [
  6180. ".nupkg.metadata",
  6181. ".signature.p7s",
  6182. "Icon.png",
  6183. "NOTICE.txt",
  6184. "README.md",
  6185. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  6186. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  6187. "microsoft.visualstudio.web.codegeneration.8.0.7.nupkg.sha512",
  6188. "microsoft.visualstudio.web.codegeneration.nuspec"
  6189. ]
  6190. },
  6191. "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": {
  6192. "sha512": "kahoV4hImS/uUfn3K9ecU+o1U4pn5sdnabG+DGsK9bf6gL0tw8MnrArz3M9kWYMKDsVd3/j/3ZriTH+hVrPW2w==",
  6193. "type": "package",
  6194. "path": "microsoft.visualstudio.web.codegeneration.core/8.0.7",
  6195. "files": [
  6196. ".nupkg.metadata",
  6197. ".signature.p7s",
  6198. "Icon.png",
  6199. "NOTICE.txt",
  6200. "README.md",
  6201. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  6202. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  6203. "microsoft.visualstudio.web.codegeneration.core.8.0.7.nupkg.sha512",
  6204. "microsoft.visualstudio.web.codegeneration.core.nuspec"
  6205. ]
  6206. },
  6207. "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": {
  6208. "sha512": "qURp+VCwreGNQBofL6z3uUnLmrG3PCap/jN/B8jGqsiMLjhR+FOO7r9R1vcNeXYd5cFORpQvsuZi6GWXxr2dCA==",
  6209. "type": "package",
  6210. "path": "microsoft.visualstudio.web.codegeneration.design/8.0.7",
  6211. "files": [
  6212. ".nupkg.metadata",
  6213. ".signature.p7s",
  6214. "Icon.png",
  6215. "NOTICE.txt",
  6216. "README.md",
  6217. "lib/net8.0/dotnet-aspnet-codegenerator-design.dll",
  6218. "lib/net8.0/dotnet-aspnet-codegenerator-design.xml",
  6219. "microsoft.visualstudio.web.codegeneration.design.8.0.7.nupkg.sha512",
  6220. "microsoft.visualstudio.web.codegeneration.design.nuspec"
  6221. ]
  6222. },
  6223. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": {
  6224. "sha512": "Cd37PMogJ7sbzbUkbZsqPOLpKg0xbBLypsGuJ8HLX7caTDSg2NIsNT/MJKu0VybfoQ2L4fli8XpJXxVytbx1wA==",
  6225. "type": "package",
  6226. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/8.0.7",
  6227. "files": [
  6228. ".nupkg.metadata",
  6229. ".signature.p7s",
  6230. "Icon.png",
  6231. "NOTICE.txt",
  6232. "README.md",
  6233. "Templates/DbContext/NewLocalDbContext.cshtml",
  6234. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  6235. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
  6236. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  6237. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.8.0.7.nupkg.sha512",
  6238. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
  6239. ]
  6240. },
  6241. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": {
  6242. "sha512": "uXtCSh13HD7589QSez9cVwQ2xacIgDuf33/ifW8a6DqxC+dF5ium2p+5odUNbzRU8cnCuISjti7F+D4F9kLLVw==",
  6243. "type": "package",
  6244. "path": "microsoft.visualstudio.web.codegeneration.templating/8.0.7",
  6245. "files": [
  6246. ".nupkg.metadata",
  6247. ".signature.p7s",
  6248. "Icon.png",
  6249. "NOTICE.txt",
  6250. "README.md",
  6251. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  6252. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  6253. "microsoft.visualstudio.web.codegeneration.templating.8.0.7.nupkg.sha512",
  6254. "microsoft.visualstudio.web.codegeneration.templating.nuspec"
  6255. ]
  6256. },
  6257. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": {
  6258. "sha512": "2oA20npXOXxH2pmnTtXNrPgow+W3dGREI+SWrCci5IbTgQE6NOhL+5PmbxqAqjhmoyy9CSEbaav9eWTM7jEdQQ==",
  6259. "type": "package",
  6260. "path": "microsoft.visualstudio.web.codegeneration.utils/8.0.7",
  6261. "files": [
  6262. ".nupkg.metadata",
  6263. ".signature.p7s",
  6264. "Icon.png",
  6265. "NOTICE.txt",
  6266. "README.md",
  6267. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  6268. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  6269. "microsoft.visualstudio.web.codegeneration.utils.8.0.7.nupkg.sha512",
  6270. "microsoft.visualstudio.web.codegeneration.utils.nuspec"
  6271. ]
  6272. },
  6273. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": {
  6274. "sha512": "IN7xeBHZ/WtYN62Ez0rEWqpsiTlpEUbGcjvXLRF2gNO8SdhFn9IhzdixKXTLzHTf89oS9Y5mFIPkWcU4Y99USA==",
  6275. "type": "package",
  6276. "path": "microsoft.visualstudio.web.codegenerators.mvc/8.0.7",
  6277. "files": [
  6278. ".nupkg.metadata",
  6279. ".signature.p7s",
  6280. "Generators/ParameterDefinitions/area.json",
  6281. "Generators/ParameterDefinitions/blazor-identity.json",
  6282. "Generators/ParameterDefinitions/blazor.json",
  6283. "Generators/ParameterDefinitions/controller.json",
  6284. "Generators/ParameterDefinitions/identity.json",
  6285. "Generators/ParameterDefinitions/minimalapi.json",
  6286. "Generators/ParameterDefinitions/razorpage.json",
  6287. "Generators/ParameterDefinitions/view.json",
  6288. "Icon.png",
  6289. "NOTICE.txt",
  6290. "README.md",
  6291. "Templates/Blazor/Create.tt",
  6292. "Templates/Blazor/Delete.tt",
  6293. "Templates/Blazor/Details.tt",
  6294. "Templates/Blazor/Edit.tt",
  6295. "Templates/Blazor/Index.tt",
  6296. "Templates/BlazorIdentity/IdentityComponentsEndpointRouteBuilderExtensions.tt",
  6297. "Templates/BlazorIdentity/IdentityNoOpEmailSender.tt",
  6298. "Templates/BlazorIdentity/IdentityRedirectManager.tt",
  6299. "Templates/BlazorIdentity/IdentityRevalidatingAuthenticationStateProvider.tt",
  6300. "Templates/BlazorIdentity/IdentityUserAccessor.tt",
  6301. "Templates/BlazorIdentity/Pages/ConfirmEmail.tt",
  6302. "Templates/BlazorIdentity/Pages/ConfirmEmailChange.tt",
  6303. "Templates/BlazorIdentity/Pages/ExternalLogin.tt",
  6304. "Templates/BlazorIdentity/Pages/ForgotPassword.tt",
  6305. "Templates/BlazorIdentity/Pages/ForgotPasswordConfirmation.tt",
  6306. "Templates/BlazorIdentity/Pages/InvalidPasswordReset.tt",
  6307. "Templates/BlazorIdentity/Pages/InvalidUser.tt",
  6308. "Templates/BlazorIdentity/Pages/Lockout.tt",
  6309. "Templates/BlazorIdentity/Pages/Login.tt",
  6310. "Templates/BlazorIdentity/Pages/LoginWith2fa.tt",
  6311. "Templates/BlazorIdentity/Pages/LoginWithRecoveryCode.tt",
  6312. "Templates/BlazorIdentity/Pages/Manage/ChangePassword.tt",
  6313. "Templates/BlazorIdentity/Pages/Manage/DeletePersonalData.tt",
  6314. "Templates/BlazorIdentity/Pages/Manage/Disable2fa.tt",
  6315. "Templates/BlazorIdentity/Pages/Manage/Email.tt",
  6316. "Templates/BlazorIdentity/Pages/Manage/EnableAuthenticator.tt",
  6317. "Templates/BlazorIdentity/Pages/Manage/ExternalLogins.tt",
  6318. "Templates/BlazorIdentity/Pages/Manage/GenerateRecoveryCodes.tt",
  6319. "Templates/BlazorIdentity/Pages/Manage/Index.tt",
  6320. "Templates/BlazorIdentity/Pages/Manage/PersonalData.tt",
  6321. "Templates/BlazorIdentity/Pages/Manage/ResetAuthenticator.tt",
  6322. "Templates/BlazorIdentity/Pages/Manage/SetPassword.tt",
  6323. "Templates/BlazorIdentity/Pages/Manage/TwoFactorAuthentication.tt",
  6324. "Templates/BlazorIdentity/Pages/Manage/_Imports.tt",
  6325. "Templates/BlazorIdentity/Pages/Register.tt",
  6326. "Templates/BlazorIdentity/Pages/RegisterConfirmation.tt",
  6327. "Templates/BlazorIdentity/Pages/ResendEmailConfirmation.tt",
  6328. "Templates/BlazorIdentity/Pages/ResetPassword.tt",
  6329. "Templates/BlazorIdentity/Pages/ResetPasswordConfirmation.tt",
  6330. "Templates/BlazorIdentity/Pages/_Imports.tt",
  6331. "Templates/BlazorIdentity/Shared/AccountLayout.tt",
  6332. "Templates/BlazorIdentity/Shared/ExternalLoginPicker.tt",
  6333. "Templates/BlazorIdentity/Shared/ManageLayout.tt",
  6334. "Templates/BlazorIdentity/Shared/ManageNavMenu.tt",
  6335. "Templates/BlazorIdentity/Shared/RedirectToLogin.tt",
  6336. "Templates/BlazorIdentity/Shared/ShowRecoveryCodes.tt",
  6337. "Templates/BlazorIdentity/Shared/StatusMessage.tt",
  6338. "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  6339. "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  6340. "Templates/General/IdentityApplicationUser.Interfaces.cs",
  6341. "Templates/General/IdentityApplicationUser.cs",
  6342. "Templates/General/IdentityApplicationUser.tt",
  6343. "Templates/General/IdentityApplicationUserModel.cs",
  6344. "Templates/General/IdentityDbContext.Interfaces.cs",
  6345. "Templates/General/IdentityDbContext.cs",
  6346. "Templates/General/IdentityDbContext.tt",
  6347. "Templates/General/IdentityDbContextModel.cs",
  6348. "Templates/Identity/Data/ApplicationDbContext.cshtml",
  6349. "Templates/Identity/Data/ApplicationUser.cshtml",
  6350. "Templates/Identity/IdentityHostingStartup.cshtml",
  6351. "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
  6352. "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
  6353. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6354. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
  6355. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6356. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6357. "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6358. "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
  6359. "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6360. "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
  6361. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6362. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6363. "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
  6364. "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
  6365. "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
  6366. "Templates/Identity/Pages/Account/Account.Login.cshtml",
  6367. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6368. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
  6369. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6370. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6371. "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
  6372. "Templates/Identity/Pages/Account/Account.Logout.cshtml",
  6373. "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
  6374. "Templates/Identity/Pages/Account/Account.Register.cshtml",
  6375. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6376. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
  6377. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6378. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6379. "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
  6380. "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
  6381. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6382. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6383. "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
  6384. "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
  6385. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6386. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6387. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6388. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6389. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6390. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6391. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6392. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6393. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6394. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6395. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6396. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6397. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6398. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6399. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6400. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6401. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6402. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6403. "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6404. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6405. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6406. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6407. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6408. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6409. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6410. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6411. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6412. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6413. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6414. "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6415. "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6416. "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6417. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6418. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml",
  6419. "Templates/Identity/Pages/Error.cs.cshtml",
  6420. "Templates/Identity/Pages/Error.cshtml",
  6421. "Templates/Identity/Pages/_Layout.cshtml",
  6422. "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
  6423. "Templates/Identity/Pages/_ViewImports.cshtml",
  6424. "Templates/Identity/Pages/_ViewStart.cshtml",
  6425. "Templates/Identity/ScaffoldingReadme.cshtml",
  6426. "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
  6427. "Templates/Identity/SupportPages._ViewImports.cshtml",
  6428. "Templates/Identity/SupportPages._ViewStart.cshtml",
  6429. "Templates/Identity/_LoginPartial.cshtml",
  6430. "Templates/Identity/wwwroot/css/site.css",
  6431. "Templates/Identity/wwwroot/favicon.ico",
  6432. "Templates/Identity/wwwroot/js/site.js",
  6433. "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
  6434. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  6435. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  6436. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  6437. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  6438. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
  6439. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
  6440. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
  6441. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
  6442. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  6443. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  6444. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  6445. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  6446. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
  6447. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
  6448. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
  6449. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
  6450. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
  6451. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
  6452. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
  6453. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
  6454. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
  6455. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
  6456. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
  6457. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
  6458. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6459. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6460. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6461. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6462. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
  6463. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
  6464. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
  6465. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
  6466. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  6467. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  6468. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  6469. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  6470. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
  6471. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
  6472. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
  6473. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
  6474. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6475. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  6476. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6477. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  6478. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6479. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6480. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6481. "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
  6482. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6483. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6484. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6485. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6486. "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
  6487. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
  6488. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
  6489. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
  6490. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml",
  6491. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml",
  6492. "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml",
  6493. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml",
  6494. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml",
  6495. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6496. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml",
  6497. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6498. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6499. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6500. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml",
  6501. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6502. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml",
  6503. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6504. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6505. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml",
  6506. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml",
  6507. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml",
  6508. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml",
  6509. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6510. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml",
  6511. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6512. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6513. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml",
  6514. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml",
  6515. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml",
  6516. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml",
  6517. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6518. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml",
  6519. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6520. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6521. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml",
  6522. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml",
  6523. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6524. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6525. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml",
  6526. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml",
  6527. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6528. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6529. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6530. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6531. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6532. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6533. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6534. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6535. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6536. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6537. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6538. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6539. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6540. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6541. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6542. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6543. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6544. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6545. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6546. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6547. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6548. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6549. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6550. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6551. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6552. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6553. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6554. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6555. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6556. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6557. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6558. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6559. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6560. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml",
  6561. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml",
  6562. "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml",
  6563. "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml",
  6564. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml",
  6565. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml",
  6566. "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml",
  6567. "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml",
  6568. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml",
  6569. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml",
  6570. "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml",
  6571. "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css",
  6572. "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico",
  6573. "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js",
  6574. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE",
  6575. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  6576. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  6577. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  6578. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  6579. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  6580. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  6581. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  6582. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  6583. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6584. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6585. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6586. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6587. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  6588. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  6589. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  6590. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  6591. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6592. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  6593. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6594. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  6595. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6596. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6597. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6598. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md",
  6599. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6600. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6601. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6602. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6603. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt",
  6604. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js",
  6605. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js",
  6606. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map",
  6607. "Templates/MinimalApi/MinimalApi.cshtml",
  6608. "Templates/MinimalApi/MinimalApiEf.cshtml",
  6609. "Templates/MinimalApi/MinimalApiEfNoClass.cshtml",
  6610. "Templates/MinimalApi/MinimalApiNoClass.cshtml",
  6611. "Templates/MvcLayout/Error.cshtml",
  6612. "Templates/MvcLayout/_Layout.cshtml",
  6613. "Templates/RazorPageGenerator/Create.cshtml",
  6614. "Templates/RazorPageGenerator/CreatePageModel.cshtml",
  6615. "Templates/RazorPageGenerator/Delete.cshtml",
  6616. "Templates/RazorPageGenerator/DeletePageModel.cshtml",
  6617. "Templates/RazorPageGenerator/Details.cshtml",
  6618. "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
  6619. "Templates/RazorPageGenerator/Edit.cshtml",
  6620. "Templates/RazorPageGenerator/EditPageModel.cshtml",
  6621. "Templates/RazorPageGenerator/List.cshtml",
  6622. "Templates/RazorPageGenerator/ListPageModel.cshtml",
  6623. "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
  6624. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml",
  6625. "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml",
  6626. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml",
  6627. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml",
  6628. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml",
  6629. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml",
  6630. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml",
  6631. "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml",
  6632. "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml",
  6633. "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml",
  6634. "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  6635. "Templates/Startup/ReadMe.cshtml",
  6636. "Templates/Startup/Startup.cshtml",
  6637. "Templates/ViewGenerator/Create.cshtml",
  6638. "Templates/ViewGenerator/Delete.cshtml",
  6639. "Templates/ViewGenerator/Details.cshtml",
  6640. "Templates/ViewGenerator/Edit.cshtml",
  6641. "Templates/ViewGenerator/Empty.cshtml",
  6642. "Templates/ViewGenerator/List.cshtml",
  6643. "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
  6644. "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml",
  6645. "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml",
  6646. "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml",
  6647. "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml",
  6648. "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml",
  6649. "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml",
  6650. "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  6651. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  6652. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  6653. "lib/net8.0/blazorIdentityChanges.json",
  6654. "lib/net8.0/blazorWebCrudChanges.json",
  6655. "lib/net8.0/bootstrap4_identitygeneratorfilesconfig.json",
  6656. "lib/net8.0/bootstrap5_identitygeneratorfilesconfig.json",
  6657. "lib/net8.0/identityMinimalHostingChanges.json",
  6658. "lib/net8.0/minimalApiChanges.json",
  6659. "microsoft.visualstudio.web.codegenerators.mvc.8.0.7.nupkg.sha512",
  6660. "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
  6661. ]
  6662. },
  6663. "Microsoft.Win32.SystemEvents/7.0.0": {
  6664. "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
  6665. "type": "package",
  6666. "path": "microsoft.win32.systemevents/7.0.0",
  6667. "files": [
  6668. ".nupkg.metadata",
  6669. ".signature.p7s",
  6670. "Icon.png",
  6671. "LICENSE.TXT",
  6672. "THIRD-PARTY-NOTICES.TXT",
  6673. "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
  6674. "buildTransitive/net462/_._",
  6675. "buildTransitive/net6.0/_._",
  6676. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  6677. "lib/net462/Microsoft.Win32.SystemEvents.dll",
  6678. "lib/net462/Microsoft.Win32.SystemEvents.xml",
  6679. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6680. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6681. "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  6682. "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  6683. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  6684. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  6685. "microsoft.win32.systemevents.7.0.0.nupkg.sha512",
  6686. "microsoft.win32.systemevents.nuspec",
  6687. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6688. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6689. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  6690. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  6691. "useSharedDesignerContext.txt"
  6692. ]
  6693. },
  6694. "Mono.TextTemplating/2.3.1": {
  6695. "sha512": "pqYwzNqDL0QK1JFpAjpI/NPqyqLGpHLvVmA5Ec0LaSnbIDtEXxu0td16uunegb7c8xAnlcm4qkbIYUP5FfrFpA==",
  6696. "type": "package",
  6697. "path": "mono.texttemplating/2.3.1",
  6698. "files": [
  6699. ".nupkg.metadata",
  6700. ".signature.p7s",
  6701. "lib/net472/Mono.TextTemplating.dll",
  6702. "lib/netcoreapp2.1/Mono.TextTemplating.dll",
  6703. "lib/netcoreapp3.1/Mono.TextTemplating.dll",
  6704. "lib/netstandard2.0/Mono.TextTemplating.dll",
  6705. "mono.texttemplating.2.3.1.nupkg.sha512",
  6706. "mono.texttemplating.nuspec",
  6707. "readme.md"
  6708. ]
  6709. },
  6710. "Newtonsoft.Json/13.0.3": {
  6711. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  6712. "type": "package",
  6713. "path": "newtonsoft.json/13.0.3",
  6714. "files": [
  6715. ".nupkg.metadata",
  6716. ".signature.p7s",
  6717. "LICENSE.md",
  6718. "README.md",
  6719. "lib/net20/Newtonsoft.Json.dll",
  6720. "lib/net20/Newtonsoft.Json.xml",
  6721. "lib/net35/Newtonsoft.Json.dll",
  6722. "lib/net35/Newtonsoft.Json.xml",
  6723. "lib/net40/Newtonsoft.Json.dll",
  6724. "lib/net40/Newtonsoft.Json.xml",
  6725. "lib/net45/Newtonsoft.Json.dll",
  6726. "lib/net45/Newtonsoft.Json.xml",
  6727. "lib/net6.0/Newtonsoft.Json.dll",
  6728. "lib/net6.0/Newtonsoft.Json.xml",
  6729. "lib/netstandard1.0/Newtonsoft.Json.dll",
  6730. "lib/netstandard1.0/Newtonsoft.Json.xml",
  6731. "lib/netstandard1.3/Newtonsoft.Json.dll",
  6732. "lib/netstandard1.3/Newtonsoft.Json.xml",
  6733. "lib/netstandard2.0/Newtonsoft.Json.dll",
  6734. "lib/netstandard2.0/Newtonsoft.Json.xml",
  6735. "newtonsoft.json.13.0.3.nupkg.sha512",
  6736. "newtonsoft.json.nuspec",
  6737. "packageIcon.png"
  6738. ]
  6739. },
  6740. "Newtonsoft.Json.Bson/1.0.2": {
  6741. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  6742. "type": "package",
  6743. "path": "newtonsoft.json.bson/1.0.2",
  6744. "files": [
  6745. ".nupkg.metadata",
  6746. ".signature.p7s",
  6747. "LICENSE.md",
  6748. "lib/net45/Newtonsoft.Json.Bson.dll",
  6749. "lib/net45/Newtonsoft.Json.Bson.pdb",
  6750. "lib/net45/Newtonsoft.Json.Bson.xml",
  6751. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  6752. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  6753. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  6754. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  6755. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  6756. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  6757. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  6758. "newtonsoft.json.bson.nuspec"
  6759. ]
  6760. },
  6761. "NuGet.Common/6.11.0": {
  6762. "sha512": "T3bCiKUSx8wdYpcqr6Dbx93zAqFp689ee/oa1tH22XI/xl7EUzQ7No/WlE1FUqvEX1+Mqar3wRNAn2O/yxo94g==",
  6763. "type": "package",
  6764. "path": "nuget.common/6.11.0",
  6765. "files": [
  6766. ".nupkg.metadata",
  6767. ".signature.p7s",
  6768. "README.md",
  6769. "icon.png",
  6770. "lib/net472/NuGet.Common.dll",
  6771. "lib/netstandard2.0/NuGet.Common.dll",
  6772. "nuget.common.6.11.0.nupkg.sha512",
  6773. "nuget.common.nuspec"
  6774. ]
  6775. },
  6776. "NuGet.Configuration/6.11.0": {
  6777. "sha512": "73QprQqmumFrv3Ooi4YWpRYeBj8jZy9gNdOaOCp4pPInpt41SJJAz/aP4je+StwIJvi5HsgPPecLKekDIQEwKg==",
  6778. "type": "package",
  6779. "path": "nuget.configuration/6.11.0",
  6780. "files": [
  6781. ".nupkg.metadata",
  6782. ".signature.p7s",
  6783. "README.md",
  6784. "icon.png",
  6785. "lib/net472/NuGet.Configuration.dll",
  6786. "lib/netstandard2.0/NuGet.Configuration.dll",
  6787. "nuget.configuration.6.11.0.nupkg.sha512",
  6788. "nuget.configuration.nuspec"
  6789. ]
  6790. },
  6791. "NuGet.DependencyResolver.Core/6.11.0": {
  6792. "sha512": "SoiPKPooA+IF+iCsX1ykwi3M0e+yBL34QnwIP3ujhQEn1dhlP/N1XsYAnKkJPxV15EZCahuuS4HtnBsZx+CHKA==",
  6793. "type": "package",
  6794. "path": "nuget.dependencyresolver.core/6.11.0",
  6795. "files": [
  6796. ".nupkg.metadata",
  6797. ".signature.p7s",
  6798. "README.md",
  6799. "icon.png",
  6800. "lib/net472/NuGet.DependencyResolver.Core.dll",
  6801. "lib/net5.0/NuGet.DependencyResolver.Core.dll",
  6802. "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll",
  6803. "nuget.dependencyresolver.core.6.11.0.nupkg.sha512",
  6804. "nuget.dependencyresolver.core.nuspec"
  6805. ]
  6806. },
  6807. "NuGet.Frameworks/6.11.0": {
  6808. "sha512": "Ew/mrfmLF5phsprysHbph2+tdZ10HMHAURavsr/Kx1WhybDG4vmGuoNLbbZMZOqnPRdpyCTc42OKWLoedxpYtA==",
  6809. "type": "package",
  6810. "path": "nuget.frameworks/6.11.0",
  6811. "files": [
  6812. ".nupkg.metadata",
  6813. ".signature.p7s",
  6814. "README.md",
  6815. "icon.png",
  6816. "lib/net472/NuGet.Frameworks.dll",
  6817. "lib/netstandard2.0/NuGet.Frameworks.dll",
  6818. "nuget.frameworks.6.11.0.nupkg.sha512",
  6819. "nuget.frameworks.nuspec"
  6820. ]
  6821. },
  6822. "NuGet.LibraryModel/6.11.0": {
  6823. "sha512": "KUV2eeMICMb24OPcICn/wgncNzt6+W+lmFVO5eorTdo1qV4WXxYGyG1NTPiCY+Nrv5H/Ilnv9UaUM2ozqSmnjw==",
  6824. "type": "package",
  6825. "path": "nuget.librarymodel/6.11.0",
  6826. "files": [
  6827. ".nupkg.metadata",
  6828. ".signature.p7s",
  6829. "README.md",
  6830. "icon.png",
  6831. "lib/net472/NuGet.LibraryModel.dll",
  6832. "lib/netstandard2.0/NuGet.LibraryModel.dll",
  6833. "nuget.librarymodel.6.11.0.nupkg.sha512",
  6834. "nuget.librarymodel.nuspec"
  6835. ]
  6836. },
  6837. "NuGet.Packaging/6.11.0": {
  6838. "sha512": "VmUv2LedVuPY1tfNybORO2I9IuqOzeV7I5JBD+PwNvJq2bAqovi4FCw2cYI0g+kjOJXBN2lAJfrfnqtUOlVJdQ==",
  6839. "type": "package",
  6840. "path": "nuget.packaging/6.11.0",
  6841. "files": [
  6842. ".nupkg.metadata",
  6843. ".signature.p7s",
  6844. "README.md",
  6845. "icon.png",
  6846. "lib/net472/NuGet.Packaging.dll",
  6847. "lib/net5.0/NuGet.Packaging.dll",
  6848. "lib/netstandard2.0/NuGet.Packaging.dll",
  6849. "nuget.packaging.6.11.0.nupkg.sha512",
  6850. "nuget.packaging.nuspec"
  6851. ]
  6852. },
  6853. "NuGet.ProjectModel/6.11.0": {
  6854. "sha512": "g0KtmDH6fas97WsN73yV2h1F5JT9o6+Y0wlPK+ij9YLKaAXaF6+1HkSaQMMJ+xh9/jCJG9G6nau6InOlb1g48g==",
  6855. "type": "package",
  6856. "path": "nuget.projectmodel/6.11.0",
  6857. "files": [
  6858. ".nupkg.metadata",
  6859. ".signature.p7s",
  6860. "README.md",
  6861. "icon.png",
  6862. "lib/net472/NuGet.ProjectModel.dll",
  6863. "lib/net5.0/NuGet.ProjectModel.dll",
  6864. "lib/netstandard2.0/NuGet.ProjectModel.dll",
  6865. "nuget.projectmodel.6.11.0.nupkg.sha512",
  6866. "nuget.projectmodel.nuspec"
  6867. ]
  6868. },
  6869. "NuGet.Protocol/6.11.0": {
  6870. "sha512": "p5B8oNLLnGhUfMbcS16aRiegj11pD6k+LELyRBqvNFR/pE3yR1XT+g1XS33ME9wvoU+xbCGnl4Grztt1jHPinw==",
  6871. "type": "package",
  6872. "path": "nuget.protocol/6.11.0",
  6873. "files": [
  6874. ".nupkg.metadata",
  6875. ".signature.p7s",
  6876. "README.md",
  6877. "icon.png",
  6878. "lib/net472/NuGet.Protocol.dll",
  6879. "lib/net5.0/NuGet.Protocol.dll",
  6880. "lib/netstandard2.0/NuGet.Protocol.dll",
  6881. "nuget.protocol.6.11.0.nupkg.sha512",
  6882. "nuget.protocol.nuspec"
  6883. ]
  6884. },
  6885. "NuGet.Versioning/6.11.0": {
  6886. "sha512": "v/GGlIj2dd7svplFmASWEueu62veKW0MrMtBaZ7QG8aJTSGv2yE+pgUGhXRcQ4nxNOEq/wLBrz1vkth/1SND7A==",
  6887. "type": "package",
  6888. "path": "nuget.versioning/6.11.0",
  6889. "files": [
  6890. ".nupkg.metadata",
  6891. ".signature.p7s",
  6892. "README.md",
  6893. "icon.png",
  6894. "lib/net472/NuGet.Versioning.dll",
  6895. "lib/netstandard2.0/NuGet.Versioning.dll",
  6896. "nuget.versioning.6.11.0.nupkg.sha512",
  6897. "nuget.versioning.nuspec"
  6898. ]
  6899. },
  6900. "Pipelines.Sockets.Unofficial/2.2.8": {
  6901. "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==",
  6902. "type": "package",
  6903. "path": "pipelines.sockets.unofficial/2.2.8",
  6904. "files": [
  6905. ".nupkg.metadata",
  6906. ".signature.p7s",
  6907. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  6908. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  6909. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  6910. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  6911. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  6912. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  6913. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  6914. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  6915. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  6916. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  6917. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  6918. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  6919. "pipelines.sockets.unofficial.2.2.8.nupkg.sha512",
  6920. "pipelines.sockets.unofficial.nuspec"
  6921. ]
  6922. },
  6923. "StackExchange.Redis/2.8.24": {
  6924. "sha512": "GWllmsFAtLyhm4C47cOCipGxyEi1NQWTFUHXnJ8hiHOsK/bH3T5eLkWPVW+LRL6jDiB3g3izW3YEHgLuPoJSyA==",
  6925. "type": "package",
  6926. "path": "stackexchange.redis/2.8.24",
  6927. "files": [
  6928. ".nupkg.metadata",
  6929. ".signature.p7s",
  6930. "lib/net461/StackExchange.Redis.dll",
  6931. "lib/net461/StackExchange.Redis.xml",
  6932. "lib/net472/StackExchange.Redis.dll",
  6933. "lib/net472/StackExchange.Redis.xml",
  6934. "lib/net6.0/StackExchange.Redis.dll",
  6935. "lib/net6.0/StackExchange.Redis.xml",
  6936. "lib/net8.0/StackExchange.Redis.dll",
  6937. "lib/net8.0/StackExchange.Redis.xml",
  6938. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  6939. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  6940. "lib/netstandard2.0/StackExchange.Redis.dll",
  6941. "lib/netstandard2.0/StackExchange.Redis.xml",
  6942. "stackexchange.redis.2.8.24.nupkg.sha512",
  6943. "stackexchange.redis.nuspec"
  6944. ]
  6945. },
  6946. "System.Buffers/4.5.1": {
  6947. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  6948. "type": "package",
  6949. "path": "system.buffers/4.5.1",
  6950. "files": [
  6951. ".nupkg.metadata",
  6952. ".signature.p7s",
  6953. "LICENSE.TXT",
  6954. "THIRD-PARTY-NOTICES.TXT",
  6955. "lib/net461/System.Buffers.dll",
  6956. "lib/net461/System.Buffers.xml",
  6957. "lib/netcoreapp2.0/_._",
  6958. "lib/netstandard1.1/System.Buffers.dll",
  6959. "lib/netstandard1.1/System.Buffers.xml",
  6960. "lib/netstandard2.0/System.Buffers.dll",
  6961. "lib/netstandard2.0/System.Buffers.xml",
  6962. "lib/uap10.0.16299/_._",
  6963. "ref/net45/System.Buffers.dll",
  6964. "ref/net45/System.Buffers.xml",
  6965. "ref/netcoreapp2.0/_._",
  6966. "ref/netstandard1.1/System.Buffers.dll",
  6967. "ref/netstandard1.1/System.Buffers.xml",
  6968. "ref/netstandard2.0/System.Buffers.dll",
  6969. "ref/netstandard2.0/System.Buffers.xml",
  6970. "ref/uap10.0.16299/_._",
  6971. "system.buffers.4.5.1.nupkg.sha512",
  6972. "system.buffers.nuspec",
  6973. "useSharedDesignerContext.txt",
  6974. "version.txt"
  6975. ]
  6976. },
  6977. "System.ClientModel/1.0.0": {
  6978. "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==",
  6979. "type": "package",
  6980. "path": "system.clientmodel/1.0.0",
  6981. "files": [
  6982. ".nupkg.metadata",
  6983. ".signature.p7s",
  6984. "CHANGELOG.md",
  6985. "DotNetPackageIcon.png",
  6986. "README.md",
  6987. "lib/net6.0/System.ClientModel.dll",
  6988. "lib/net6.0/System.ClientModel.xml",
  6989. "lib/netstandard2.0/System.ClientModel.dll",
  6990. "lib/netstandard2.0/System.ClientModel.xml",
  6991. "system.clientmodel.1.0.0.nupkg.sha512",
  6992. "system.clientmodel.nuspec"
  6993. ]
  6994. },
  6995. "System.CodeDom/8.0.0": {
  6996. "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==",
  6997. "type": "package",
  6998. "path": "system.codedom/8.0.0",
  6999. "files": [
  7000. ".nupkg.metadata",
  7001. ".signature.p7s",
  7002. "Icon.png",
  7003. "LICENSE.TXT",
  7004. "THIRD-PARTY-NOTICES.TXT",
  7005. "buildTransitive/net461/System.CodeDom.targets",
  7006. "buildTransitive/net462/_._",
  7007. "buildTransitive/net6.0/_._",
  7008. "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
  7009. "lib/net462/System.CodeDom.dll",
  7010. "lib/net462/System.CodeDom.xml",
  7011. "lib/net6.0/System.CodeDom.dll",
  7012. "lib/net6.0/System.CodeDom.xml",
  7013. "lib/net7.0/System.CodeDom.dll",
  7014. "lib/net7.0/System.CodeDom.xml",
  7015. "lib/net8.0/System.CodeDom.dll",
  7016. "lib/net8.0/System.CodeDom.xml",
  7017. "lib/netstandard2.0/System.CodeDom.dll",
  7018. "lib/netstandard2.0/System.CodeDom.xml",
  7019. "system.codedom.8.0.0.nupkg.sha512",
  7020. "system.codedom.nuspec",
  7021. "useSharedDesignerContext.txt"
  7022. ]
  7023. },
  7024. "System.Collections.Immutable/7.0.0": {
  7025. "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
  7026. "type": "package",
  7027. "path": "system.collections.immutable/7.0.0",
  7028. "files": [
  7029. ".nupkg.metadata",
  7030. ".signature.p7s",
  7031. "Icon.png",
  7032. "LICENSE.TXT",
  7033. "README.md",
  7034. "THIRD-PARTY-NOTICES.TXT",
  7035. "buildTransitive/net461/System.Collections.Immutable.targets",
  7036. "buildTransitive/net462/_._",
  7037. "buildTransitive/net6.0/_._",
  7038. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  7039. "lib/net462/System.Collections.Immutable.dll",
  7040. "lib/net462/System.Collections.Immutable.xml",
  7041. "lib/net6.0/System.Collections.Immutable.dll",
  7042. "lib/net6.0/System.Collections.Immutable.xml",
  7043. "lib/net7.0/System.Collections.Immutable.dll",
  7044. "lib/net7.0/System.Collections.Immutable.xml",
  7045. "lib/netstandard2.0/System.Collections.Immutable.dll",
  7046. "lib/netstandard2.0/System.Collections.Immutable.xml",
  7047. "system.collections.immutable.7.0.0.nupkg.sha512",
  7048. "system.collections.immutable.nuspec",
  7049. "useSharedDesignerContext.txt"
  7050. ]
  7051. },
  7052. "System.Composition/7.0.0": {
  7053. "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
  7054. "type": "package",
  7055. "path": "system.composition/7.0.0",
  7056. "files": [
  7057. ".nupkg.metadata",
  7058. ".signature.p7s",
  7059. "Icon.png",
  7060. "LICENSE.TXT",
  7061. "THIRD-PARTY-NOTICES.TXT",
  7062. "buildTransitive/net461/System.Composition.targets",
  7063. "buildTransitive/net462/_._",
  7064. "buildTransitive/net6.0/_._",
  7065. "buildTransitive/netcoreapp2.0/System.Composition.targets",
  7066. "lib/net461/_._",
  7067. "lib/netcoreapp2.0/_._",
  7068. "lib/netstandard2.0/_._",
  7069. "system.composition.7.0.0.nupkg.sha512",
  7070. "system.composition.nuspec",
  7071. "useSharedDesignerContext.txt"
  7072. ]
  7073. },
  7074. "System.Composition.AttributedModel/7.0.0": {
  7075. "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
  7076. "type": "package",
  7077. "path": "system.composition.attributedmodel/7.0.0",
  7078. "files": [
  7079. ".nupkg.metadata",
  7080. ".signature.p7s",
  7081. "Icon.png",
  7082. "LICENSE.TXT",
  7083. "THIRD-PARTY-NOTICES.TXT",
  7084. "buildTransitive/net461/System.Composition.AttributedModel.targets",
  7085. "buildTransitive/net462/_._",
  7086. "buildTransitive/net6.0/_._",
  7087. "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
  7088. "lib/net462/System.Composition.AttributedModel.dll",
  7089. "lib/net462/System.Composition.AttributedModel.xml",
  7090. "lib/net6.0/System.Composition.AttributedModel.dll",
  7091. "lib/net6.0/System.Composition.AttributedModel.xml",
  7092. "lib/net7.0/System.Composition.AttributedModel.dll",
  7093. "lib/net7.0/System.Composition.AttributedModel.xml",
  7094. "lib/netstandard2.0/System.Composition.AttributedModel.dll",
  7095. "lib/netstandard2.0/System.Composition.AttributedModel.xml",
  7096. "system.composition.attributedmodel.7.0.0.nupkg.sha512",
  7097. "system.composition.attributedmodel.nuspec",
  7098. "useSharedDesignerContext.txt"
  7099. ]
  7100. },
  7101. "System.Composition.Convention/7.0.0": {
  7102. "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
  7103. "type": "package",
  7104. "path": "system.composition.convention/7.0.0",
  7105. "files": [
  7106. ".nupkg.metadata",
  7107. ".signature.p7s",
  7108. "Icon.png",
  7109. "LICENSE.TXT",
  7110. "THIRD-PARTY-NOTICES.TXT",
  7111. "buildTransitive/net461/System.Composition.Convention.targets",
  7112. "buildTransitive/net462/_._",
  7113. "buildTransitive/net6.0/_._",
  7114. "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
  7115. "lib/net462/System.Composition.Convention.dll",
  7116. "lib/net462/System.Composition.Convention.xml",
  7117. "lib/net6.0/System.Composition.Convention.dll",
  7118. "lib/net6.0/System.Composition.Convention.xml",
  7119. "lib/net7.0/System.Composition.Convention.dll",
  7120. "lib/net7.0/System.Composition.Convention.xml",
  7121. "lib/netstandard2.0/System.Composition.Convention.dll",
  7122. "lib/netstandard2.0/System.Composition.Convention.xml",
  7123. "system.composition.convention.7.0.0.nupkg.sha512",
  7124. "system.composition.convention.nuspec",
  7125. "useSharedDesignerContext.txt"
  7126. ]
  7127. },
  7128. "System.Composition.Hosting/7.0.0": {
  7129. "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
  7130. "type": "package",
  7131. "path": "system.composition.hosting/7.0.0",
  7132. "files": [
  7133. ".nupkg.metadata",
  7134. ".signature.p7s",
  7135. "Icon.png",
  7136. "LICENSE.TXT",
  7137. "THIRD-PARTY-NOTICES.TXT",
  7138. "buildTransitive/net461/System.Composition.Hosting.targets",
  7139. "buildTransitive/net462/_._",
  7140. "buildTransitive/net6.0/_._",
  7141. "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
  7142. "lib/net462/System.Composition.Hosting.dll",
  7143. "lib/net462/System.Composition.Hosting.xml",
  7144. "lib/net6.0/System.Composition.Hosting.dll",
  7145. "lib/net6.0/System.Composition.Hosting.xml",
  7146. "lib/net7.0/System.Composition.Hosting.dll",
  7147. "lib/net7.0/System.Composition.Hosting.xml",
  7148. "lib/netstandard2.0/System.Composition.Hosting.dll",
  7149. "lib/netstandard2.0/System.Composition.Hosting.xml",
  7150. "system.composition.hosting.7.0.0.nupkg.sha512",
  7151. "system.composition.hosting.nuspec",
  7152. "useSharedDesignerContext.txt"
  7153. ]
  7154. },
  7155. "System.Composition.Runtime/7.0.0": {
  7156. "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
  7157. "type": "package",
  7158. "path": "system.composition.runtime/7.0.0",
  7159. "files": [
  7160. ".nupkg.metadata",
  7161. ".signature.p7s",
  7162. "Icon.png",
  7163. "LICENSE.TXT",
  7164. "THIRD-PARTY-NOTICES.TXT",
  7165. "buildTransitive/net461/System.Composition.Runtime.targets",
  7166. "buildTransitive/net462/_._",
  7167. "buildTransitive/net6.0/_._",
  7168. "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
  7169. "lib/net462/System.Composition.Runtime.dll",
  7170. "lib/net462/System.Composition.Runtime.xml",
  7171. "lib/net6.0/System.Composition.Runtime.dll",
  7172. "lib/net6.0/System.Composition.Runtime.xml",
  7173. "lib/net7.0/System.Composition.Runtime.dll",
  7174. "lib/net7.0/System.Composition.Runtime.xml",
  7175. "lib/netstandard2.0/System.Composition.Runtime.dll",
  7176. "lib/netstandard2.0/System.Composition.Runtime.xml",
  7177. "system.composition.runtime.7.0.0.nupkg.sha512",
  7178. "system.composition.runtime.nuspec",
  7179. "useSharedDesignerContext.txt"
  7180. ]
  7181. },
  7182. "System.Composition.TypedParts/7.0.0": {
  7183. "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
  7184. "type": "package",
  7185. "path": "system.composition.typedparts/7.0.0",
  7186. "files": [
  7187. ".nupkg.metadata",
  7188. ".signature.p7s",
  7189. "Icon.png",
  7190. "LICENSE.TXT",
  7191. "THIRD-PARTY-NOTICES.TXT",
  7192. "buildTransitive/net461/System.Composition.TypedParts.targets",
  7193. "buildTransitive/net462/_._",
  7194. "buildTransitive/net6.0/_._",
  7195. "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
  7196. "lib/net462/System.Composition.TypedParts.dll",
  7197. "lib/net462/System.Composition.TypedParts.xml",
  7198. "lib/net6.0/System.Composition.TypedParts.dll",
  7199. "lib/net6.0/System.Composition.TypedParts.xml",
  7200. "lib/net7.0/System.Composition.TypedParts.dll",
  7201. "lib/net7.0/System.Composition.TypedParts.xml",
  7202. "lib/netstandard2.0/System.Composition.TypedParts.dll",
  7203. "lib/netstandard2.0/System.Composition.TypedParts.xml",
  7204. "system.composition.typedparts.7.0.0.nupkg.sha512",
  7205. "system.composition.typedparts.nuspec",
  7206. "useSharedDesignerContext.txt"
  7207. ]
  7208. },
  7209. "System.Configuration.ConfigurationManager/7.0.0": {
  7210. "sha512": "WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==",
  7211. "type": "package",
  7212. "path": "system.configuration.configurationmanager/7.0.0",
  7213. "files": [
  7214. ".nupkg.metadata",
  7215. ".signature.p7s",
  7216. "Icon.png",
  7217. "LICENSE.TXT",
  7218. "THIRD-PARTY-NOTICES.TXT",
  7219. "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
  7220. "buildTransitive/net462/_._",
  7221. "buildTransitive/net6.0/_._",
  7222. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  7223. "lib/net462/System.Configuration.ConfigurationManager.dll",
  7224. "lib/net462/System.Configuration.ConfigurationManager.xml",
  7225. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  7226. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  7227. "lib/net7.0/System.Configuration.ConfigurationManager.dll",
  7228. "lib/net7.0/System.Configuration.ConfigurationManager.xml",
  7229. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7230. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  7231. "system.configuration.configurationmanager.7.0.0.nupkg.sha512",
  7232. "system.configuration.configurationmanager.nuspec",
  7233. "useSharedDesignerContext.txt"
  7234. ]
  7235. },
  7236. "System.Data.DataSetExtensions/4.5.0": {
  7237. "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
  7238. "type": "package",
  7239. "path": "system.data.datasetextensions/4.5.0",
  7240. "files": [
  7241. ".nupkg.metadata",
  7242. ".signature.p7s",
  7243. "LICENSE.TXT",
  7244. "THIRD-PARTY-NOTICES.TXT",
  7245. "lib/net45/_._",
  7246. "lib/netstandard2.0/System.Data.DataSetExtensions.dll",
  7247. "ref/net45/_._",
  7248. "ref/netstandard2.0/System.Data.DataSetExtensions.dll",
  7249. "system.data.datasetextensions.4.5.0.nupkg.sha512",
  7250. "system.data.datasetextensions.nuspec",
  7251. "useSharedDesignerContext.txt",
  7252. "version.txt"
  7253. ]
  7254. },
  7255. "System.Diagnostics.DiagnosticSource/6.0.1": {
  7256. "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
  7257. "type": "package",
  7258. "path": "system.diagnostics.diagnosticsource/6.0.1",
  7259. "files": [
  7260. ".nupkg.metadata",
  7261. ".signature.p7s",
  7262. "Icon.png",
  7263. "LICENSE.TXT",
  7264. "THIRD-PARTY-NOTICES.TXT",
  7265. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  7266. "buildTransitive/netcoreapp3.1/_._",
  7267. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  7268. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  7269. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  7270. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  7271. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  7272. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  7273. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  7274. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  7275. "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
  7276. "system.diagnostics.diagnosticsource.nuspec",
  7277. "useSharedDesignerContext.txt"
  7278. ]
  7279. },
  7280. "System.Diagnostics.EventLog/7.0.0": {
  7281. "sha512": "eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==",
  7282. "type": "package",
  7283. "path": "system.diagnostics.eventlog/7.0.0",
  7284. "files": [
  7285. ".nupkg.metadata",
  7286. ".signature.p7s",
  7287. "Icon.png",
  7288. "LICENSE.TXT",
  7289. "THIRD-PARTY-NOTICES.TXT",
  7290. "buildTransitive/net461/System.Diagnostics.EventLog.targets",
  7291. "buildTransitive/net462/_._",
  7292. "buildTransitive/net6.0/_._",
  7293. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  7294. "lib/net462/System.Diagnostics.EventLog.dll",
  7295. "lib/net462/System.Diagnostics.EventLog.xml",
  7296. "lib/net6.0/System.Diagnostics.EventLog.dll",
  7297. "lib/net6.0/System.Diagnostics.EventLog.xml",
  7298. "lib/net7.0/System.Diagnostics.EventLog.dll",
  7299. "lib/net7.0/System.Diagnostics.EventLog.xml",
  7300. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  7301. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  7302. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  7303. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  7304. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  7305. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
  7306. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
  7307. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
  7308. "system.diagnostics.eventlog.7.0.0.nupkg.sha512",
  7309. "system.diagnostics.eventlog.nuspec",
  7310. "useSharedDesignerContext.txt"
  7311. ]
  7312. },
  7313. "System.Drawing.Common/7.0.0": {
  7314. "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
  7315. "type": "package",
  7316. "path": "system.drawing.common/7.0.0",
  7317. "files": [
  7318. ".nupkg.metadata",
  7319. ".signature.p7s",
  7320. "Icon.png",
  7321. "LICENSE.TXT",
  7322. "THIRD-PARTY-NOTICES.TXT",
  7323. "buildTransitive/net461/System.Drawing.Common.targets",
  7324. "buildTransitive/net462/_._",
  7325. "buildTransitive/net6.0/_._",
  7326. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  7327. "lib/MonoAndroid10/_._",
  7328. "lib/MonoTouch10/_._",
  7329. "lib/net462/System.Drawing.Common.dll",
  7330. "lib/net462/System.Drawing.Common.xml",
  7331. "lib/net6.0/System.Drawing.Common.dll",
  7332. "lib/net6.0/System.Drawing.Common.xml",
  7333. "lib/net7.0/System.Drawing.Common.dll",
  7334. "lib/net7.0/System.Drawing.Common.xml",
  7335. "lib/netstandard2.0/System.Drawing.Common.dll",
  7336. "lib/netstandard2.0/System.Drawing.Common.xml",
  7337. "lib/xamarinios10/_._",
  7338. "lib/xamarinmac20/_._",
  7339. "lib/xamarintvos10/_._",
  7340. "lib/xamarinwatchos10/_._",
  7341. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  7342. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  7343. "runtimes/win/lib/net7.0/System.Drawing.Common.dll",
  7344. "runtimes/win/lib/net7.0/System.Drawing.Common.xml",
  7345. "system.drawing.common.7.0.0.nupkg.sha512",
  7346. "system.drawing.common.nuspec",
  7347. "useSharedDesignerContext.txt"
  7348. ]
  7349. },
  7350. "System.Formats.Asn1/8.0.2": {
  7351. "sha512": "yUsFqNGa7tbwm5QOOnOR3VSoh8a0Yki39mTbhOnErdbg8hVSFtrK0EXerj286PXcegiF1LkE7lL++qqMZW5jIQ==",
  7352. "type": "package",
  7353. "path": "system.formats.asn1/8.0.2",
  7354. "files": [
  7355. ".nupkg.metadata",
  7356. ".signature.p7s",
  7357. "Icon.png",
  7358. "LICENSE.TXT",
  7359. "THIRD-PARTY-NOTICES.TXT",
  7360. "buildTransitive/net461/System.Formats.Asn1.targets",
  7361. "buildTransitive/net462/_._",
  7362. "buildTransitive/net6.0/_._",
  7363. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  7364. "lib/net462/System.Formats.Asn1.dll",
  7365. "lib/net462/System.Formats.Asn1.xml",
  7366. "lib/net6.0/System.Formats.Asn1.dll",
  7367. "lib/net6.0/System.Formats.Asn1.xml",
  7368. "lib/net7.0/System.Formats.Asn1.dll",
  7369. "lib/net7.0/System.Formats.Asn1.xml",
  7370. "lib/net8.0/System.Formats.Asn1.dll",
  7371. "lib/net8.0/System.Formats.Asn1.xml",
  7372. "lib/netstandard2.0/System.Formats.Asn1.dll",
  7373. "lib/netstandard2.0/System.Formats.Asn1.xml",
  7374. "system.formats.asn1.8.0.2.nupkg.sha512",
  7375. "system.formats.asn1.nuspec",
  7376. "useSharedDesignerContext.txt"
  7377. ]
  7378. },
  7379. "System.IdentityModel.Tokens.Jwt/7.1.2": {
  7380. "sha512": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==",
  7381. "type": "package",
  7382. "path": "system.identitymodel.tokens.jwt/7.1.2",
  7383. "files": [
  7384. ".nupkg.metadata",
  7385. ".signature.p7s",
  7386. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  7387. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  7388. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  7389. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  7390. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  7391. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  7392. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  7393. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  7394. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  7395. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  7396. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7397. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7398. "system.identitymodel.tokens.jwt.7.1.2.nupkg.sha512",
  7399. "system.identitymodel.tokens.jwt.nuspec"
  7400. ]
  7401. },
  7402. "System.IO.Pipelines/7.0.0": {
  7403. "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
  7404. "type": "package",
  7405. "path": "system.io.pipelines/7.0.0",
  7406. "files": [
  7407. ".nupkg.metadata",
  7408. ".signature.p7s",
  7409. "Icon.png",
  7410. "LICENSE.TXT",
  7411. "THIRD-PARTY-NOTICES.TXT",
  7412. "buildTransitive/net461/System.IO.Pipelines.targets",
  7413. "buildTransitive/net462/_._",
  7414. "buildTransitive/net6.0/_._",
  7415. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  7416. "lib/net462/System.IO.Pipelines.dll",
  7417. "lib/net462/System.IO.Pipelines.xml",
  7418. "lib/net6.0/System.IO.Pipelines.dll",
  7419. "lib/net6.0/System.IO.Pipelines.xml",
  7420. "lib/net7.0/System.IO.Pipelines.dll",
  7421. "lib/net7.0/System.IO.Pipelines.xml",
  7422. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7423. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7424. "system.io.pipelines.7.0.0.nupkg.sha512",
  7425. "system.io.pipelines.nuspec",
  7426. "useSharedDesignerContext.txt"
  7427. ]
  7428. },
  7429. "System.Management/8.0.0": {
  7430. "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==",
  7431. "type": "package",
  7432. "path": "system.management/8.0.0",
  7433. "files": [
  7434. ".nupkg.metadata",
  7435. ".signature.p7s",
  7436. "Icon.png",
  7437. "LICENSE.TXT",
  7438. "PACKAGE.md",
  7439. "THIRD-PARTY-NOTICES.TXT",
  7440. "buildTransitive/net6.0/_._",
  7441. "buildTransitive/netcoreapp2.0/System.Management.targets",
  7442. "lib/net462/_._",
  7443. "lib/net6.0/System.Management.dll",
  7444. "lib/net6.0/System.Management.xml",
  7445. "lib/net7.0/System.Management.dll",
  7446. "lib/net7.0/System.Management.xml",
  7447. "lib/net8.0/System.Management.dll",
  7448. "lib/net8.0/System.Management.xml",
  7449. "lib/netstandard2.0/System.Management.dll",
  7450. "lib/netstandard2.0/System.Management.xml",
  7451. "runtimes/win/lib/net6.0/System.Management.dll",
  7452. "runtimes/win/lib/net6.0/System.Management.xml",
  7453. "runtimes/win/lib/net7.0/System.Management.dll",
  7454. "runtimes/win/lib/net7.0/System.Management.xml",
  7455. "runtimes/win/lib/net8.0/System.Management.dll",
  7456. "runtimes/win/lib/net8.0/System.Management.xml",
  7457. "system.management.8.0.0.nupkg.sha512",
  7458. "system.management.nuspec",
  7459. "useSharedDesignerContext.txt"
  7460. ]
  7461. },
  7462. "System.Memory/4.5.5": {
  7463. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7464. "type": "package",
  7465. "path": "system.memory/4.5.5",
  7466. "files": [
  7467. ".nupkg.metadata",
  7468. ".signature.p7s",
  7469. "LICENSE.TXT",
  7470. "THIRD-PARTY-NOTICES.TXT",
  7471. "lib/net461/System.Memory.dll",
  7472. "lib/net461/System.Memory.xml",
  7473. "lib/netcoreapp2.1/_._",
  7474. "lib/netstandard1.1/System.Memory.dll",
  7475. "lib/netstandard1.1/System.Memory.xml",
  7476. "lib/netstandard2.0/System.Memory.dll",
  7477. "lib/netstandard2.0/System.Memory.xml",
  7478. "ref/netcoreapp2.1/_._",
  7479. "system.memory.4.5.5.nupkg.sha512",
  7480. "system.memory.nuspec",
  7481. "useSharedDesignerContext.txt",
  7482. "version.txt"
  7483. ]
  7484. },
  7485. "System.Memory.Data/1.0.2": {
  7486. "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  7487. "type": "package",
  7488. "path": "system.memory.data/1.0.2",
  7489. "files": [
  7490. ".nupkg.metadata",
  7491. ".signature.p7s",
  7492. "CHANGELOG.md",
  7493. "DotNetPackageIcon.png",
  7494. "README.md",
  7495. "lib/net461/System.Memory.Data.dll",
  7496. "lib/net461/System.Memory.Data.xml",
  7497. "lib/netstandard2.0/System.Memory.Data.dll",
  7498. "lib/netstandard2.0/System.Memory.Data.xml",
  7499. "system.memory.data.1.0.2.nupkg.sha512",
  7500. "system.memory.data.nuspec"
  7501. ]
  7502. },
  7503. "System.Numerics.Vectors/4.5.0": {
  7504. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  7505. "type": "package",
  7506. "path": "system.numerics.vectors/4.5.0",
  7507. "files": [
  7508. ".nupkg.metadata",
  7509. ".signature.p7s",
  7510. "LICENSE.TXT",
  7511. "THIRD-PARTY-NOTICES.TXT",
  7512. "lib/MonoAndroid10/_._",
  7513. "lib/MonoTouch10/_._",
  7514. "lib/net46/System.Numerics.Vectors.dll",
  7515. "lib/net46/System.Numerics.Vectors.xml",
  7516. "lib/netcoreapp2.0/_._",
  7517. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7518. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7519. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  7520. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  7521. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7522. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7523. "lib/uap10.0.16299/_._",
  7524. "lib/xamarinios10/_._",
  7525. "lib/xamarinmac20/_._",
  7526. "lib/xamarintvos10/_._",
  7527. "lib/xamarinwatchos10/_._",
  7528. "ref/MonoAndroid10/_._",
  7529. "ref/MonoTouch10/_._",
  7530. "ref/net45/System.Numerics.Vectors.dll",
  7531. "ref/net45/System.Numerics.Vectors.xml",
  7532. "ref/net46/System.Numerics.Vectors.dll",
  7533. "ref/net46/System.Numerics.Vectors.xml",
  7534. "ref/netcoreapp2.0/_._",
  7535. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7536. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7537. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  7538. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  7539. "ref/uap10.0.16299/_._",
  7540. "ref/xamarinios10/_._",
  7541. "ref/xamarinmac20/_._",
  7542. "ref/xamarintvos10/_._",
  7543. "ref/xamarinwatchos10/_._",
  7544. "system.numerics.vectors.4.5.0.nupkg.sha512",
  7545. "system.numerics.vectors.nuspec",
  7546. "useSharedDesignerContext.txt",
  7547. "version.txt"
  7548. ]
  7549. },
  7550. "System.Reflection.Metadata/7.0.0": {
  7551. "sha512": "MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
  7552. "type": "package",
  7553. "path": "system.reflection.metadata/7.0.0",
  7554. "files": [
  7555. ".nupkg.metadata",
  7556. ".signature.p7s",
  7557. "Icon.png",
  7558. "LICENSE.TXT",
  7559. "README.md",
  7560. "THIRD-PARTY-NOTICES.TXT",
  7561. "buildTransitive/net461/System.Reflection.Metadata.targets",
  7562. "buildTransitive/net462/_._",
  7563. "buildTransitive/net6.0/_._",
  7564. "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
  7565. "lib/net462/System.Reflection.Metadata.dll",
  7566. "lib/net462/System.Reflection.Metadata.xml",
  7567. "lib/net6.0/System.Reflection.Metadata.dll",
  7568. "lib/net6.0/System.Reflection.Metadata.xml",
  7569. "lib/net7.0/System.Reflection.Metadata.dll",
  7570. "lib/net7.0/System.Reflection.Metadata.xml",
  7571. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7572. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7573. "system.reflection.metadata.7.0.0.nupkg.sha512",
  7574. "system.reflection.metadata.nuspec",
  7575. "useSharedDesignerContext.txt"
  7576. ]
  7577. },
  7578. "System.Reflection.MetadataLoadContext/7.0.0": {
  7579. "sha512": "z9PvtMJra5hK8n+g0wmPtaG7HQRZpTmIPRw5Z0LEemlcdQMHuTD5D7OAY/fZuuz1L9db++QOcDF0gJTLpbMtZQ==",
  7580. "type": "package",
  7581. "path": "system.reflection.metadataloadcontext/7.0.0",
  7582. "files": [
  7583. ".nupkg.metadata",
  7584. ".signature.p7s",
  7585. "Icon.png",
  7586. "LICENSE.TXT",
  7587. "README.md",
  7588. "THIRD-PARTY-NOTICES.TXT",
  7589. "buildTransitive/net461/System.Reflection.MetadataLoadContext.targets",
  7590. "buildTransitive/net462/_._",
  7591. "buildTransitive/net6.0/_._",
  7592. "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets",
  7593. "lib/net462/System.Reflection.MetadataLoadContext.dll",
  7594. "lib/net462/System.Reflection.MetadataLoadContext.xml",
  7595. "lib/net6.0/System.Reflection.MetadataLoadContext.dll",
  7596. "lib/net6.0/System.Reflection.MetadataLoadContext.xml",
  7597. "lib/net7.0/System.Reflection.MetadataLoadContext.dll",
  7598. "lib/net7.0/System.Reflection.MetadataLoadContext.xml",
  7599. "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll",
  7600. "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml",
  7601. "system.reflection.metadataloadcontext.7.0.0.nupkg.sha512",
  7602. "system.reflection.metadataloadcontext.nuspec",
  7603. "useSharedDesignerContext.txt"
  7604. ]
  7605. },
  7606. "System.Runtime.Caching/6.0.0": {
  7607. "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  7608. "type": "package",
  7609. "path": "system.runtime.caching/6.0.0",
  7610. "files": [
  7611. ".nupkg.metadata",
  7612. ".signature.p7s",
  7613. "Icon.png",
  7614. "LICENSE.TXT",
  7615. "THIRD-PARTY-NOTICES.TXT",
  7616. "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
  7617. "buildTransitive/netcoreapp3.1/_._",
  7618. "lib/MonoAndroid10/_._",
  7619. "lib/MonoTouch10/_._",
  7620. "lib/net461/_._",
  7621. "lib/net6.0/System.Runtime.Caching.dll",
  7622. "lib/net6.0/System.Runtime.Caching.xml",
  7623. "lib/netcoreapp3.1/System.Runtime.Caching.dll",
  7624. "lib/netcoreapp3.1/System.Runtime.Caching.xml",
  7625. "lib/netstandard2.0/System.Runtime.Caching.dll",
  7626. "lib/netstandard2.0/System.Runtime.Caching.xml",
  7627. "lib/xamarinios10/_._",
  7628. "lib/xamarinmac20/_._",
  7629. "lib/xamarintvos10/_._",
  7630. "lib/xamarinwatchos10/_._",
  7631. "runtimes/win/lib/net461/_._",
  7632. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
  7633. "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
  7634. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
  7635. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
  7636. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  7637. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  7638. "system.runtime.caching.6.0.0.nupkg.sha512",
  7639. "system.runtime.caching.nuspec",
  7640. "useSharedDesignerContext.txt"
  7641. ]
  7642. },
  7643. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7644. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7645. "type": "package",
  7646. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7647. "files": [
  7648. ".nupkg.metadata",
  7649. ".signature.p7s",
  7650. "Icon.png",
  7651. "LICENSE.TXT",
  7652. "THIRD-PARTY-NOTICES.TXT",
  7653. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  7654. "buildTransitive/netcoreapp3.1/_._",
  7655. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7656. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7657. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  7658. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  7659. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  7660. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  7661. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7662. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7663. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  7664. "system.runtime.compilerservices.unsafe.nuspec",
  7665. "useSharedDesignerContext.txt"
  7666. ]
  7667. },
  7668. "System.Security.Cryptography.Cng/5.0.0": {
  7669. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  7670. "type": "package",
  7671. "path": "system.security.cryptography.cng/5.0.0",
  7672. "files": [
  7673. ".nupkg.metadata",
  7674. ".signature.p7s",
  7675. "Icon.png",
  7676. "LICENSE.TXT",
  7677. "THIRD-PARTY-NOTICES.TXT",
  7678. "lib/MonoAndroid10/_._",
  7679. "lib/MonoTouch10/_._",
  7680. "lib/net46/System.Security.Cryptography.Cng.dll",
  7681. "lib/net461/System.Security.Cryptography.Cng.dll",
  7682. "lib/net461/System.Security.Cryptography.Cng.xml",
  7683. "lib/net462/System.Security.Cryptography.Cng.dll",
  7684. "lib/net462/System.Security.Cryptography.Cng.xml",
  7685. "lib/net47/System.Security.Cryptography.Cng.dll",
  7686. "lib/net47/System.Security.Cryptography.Cng.xml",
  7687. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7688. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7689. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7690. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7691. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7692. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7693. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7694. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7695. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7696. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7697. "lib/uap10.0.16299/_._",
  7698. "lib/xamarinios10/_._",
  7699. "lib/xamarinmac20/_._",
  7700. "lib/xamarintvos10/_._",
  7701. "lib/xamarinwatchos10/_._",
  7702. "ref/MonoAndroid10/_._",
  7703. "ref/MonoTouch10/_._",
  7704. "ref/net46/System.Security.Cryptography.Cng.dll",
  7705. "ref/net461/System.Security.Cryptography.Cng.dll",
  7706. "ref/net461/System.Security.Cryptography.Cng.xml",
  7707. "ref/net462/System.Security.Cryptography.Cng.dll",
  7708. "ref/net462/System.Security.Cryptography.Cng.xml",
  7709. "ref/net47/System.Security.Cryptography.Cng.dll",
  7710. "ref/net47/System.Security.Cryptography.Cng.xml",
  7711. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7712. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7713. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7714. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7715. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7716. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7717. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7718. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7719. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7720. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7721. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7722. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7723. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7724. "ref/uap10.0.16299/_._",
  7725. "ref/xamarinios10/_._",
  7726. "ref/xamarinmac20/_._",
  7727. "ref/xamarintvos10/_._",
  7728. "ref/xamarinwatchos10/_._",
  7729. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7730. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7731. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  7732. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7733. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  7734. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7735. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  7736. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7737. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7738. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7739. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7740. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7741. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7742. "runtimes/win/lib/uap10.0.16299/_._",
  7743. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  7744. "system.security.cryptography.cng.nuspec",
  7745. "useSharedDesignerContext.txt",
  7746. "version.txt"
  7747. ]
  7748. },
  7749. "System.Security.Cryptography.Pkcs/6.0.4": {
  7750. "sha512": "LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==",
  7751. "type": "package",
  7752. "path": "system.security.cryptography.pkcs/6.0.4",
  7753. "files": [
  7754. ".nupkg.metadata",
  7755. ".signature.p7s",
  7756. "Icon.png",
  7757. "LICENSE.TXT",
  7758. "THIRD-PARTY-NOTICES.TXT",
  7759. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  7760. "buildTransitive/netcoreapp3.1/_._",
  7761. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  7762. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  7763. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  7764. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  7765. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  7766. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  7767. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7768. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7769. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7770. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7771. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  7772. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  7773. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  7774. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  7775. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  7776. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  7777. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7778. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7779. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7780. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7781. "system.security.cryptography.pkcs.6.0.4.nupkg.sha512",
  7782. "system.security.cryptography.pkcs.nuspec",
  7783. "useSharedDesignerContext.txt"
  7784. ]
  7785. },
  7786. "System.Security.Cryptography.ProtectedData/7.0.0": {
  7787. "sha512": "xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==",
  7788. "type": "package",
  7789. "path": "system.security.cryptography.protecteddata/7.0.0",
  7790. "files": [
  7791. ".nupkg.metadata",
  7792. ".signature.p7s",
  7793. "Icon.png",
  7794. "LICENSE.TXT",
  7795. "THIRD-PARTY-NOTICES.TXT",
  7796. "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
  7797. "buildTransitive/net462/_._",
  7798. "buildTransitive/net6.0/_._",
  7799. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  7800. "lib/MonoAndroid10/_._",
  7801. "lib/MonoTouch10/_._",
  7802. "lib/net462/System.Security.Cryptography.ProtectedData.dll",
  7803. "lib/net462/System.Security.Cryptography.ProtectedData.xml",
  7804. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7805. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7806. "lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
  7807. "lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
  7808. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7809. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7810. "lib/xamarinios10/_._",
  7811. "lib/xamarinmac20/_._",
  7812. "lib/xamarintvos10/_._",
  7813. "lib/xamarinwatchos10/_._",
  7814. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7815. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7816. "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
  7817. "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
  7818. "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512",
  7819. "system.security.cryptography.protecteddata.nuspec",
  7820. "useSharedDesignerContext.txt"
  7821. ]
  7822. },
  7823. "System.Security.Permissions/7.0.0": {
  7824. "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==",
  7825. "type": "package",
  7826. "path": "system.security.permissions/7.0.0",
  7827. "files": [
  7828. ".nupkg.metadata",
  7829. ".signature.p7s",
  7830. "Icon.png",
  7831. "LICENSE.TXT",
  7832. "THIRD-PARTY-NOTICES.TXT",
  7833. "buildTransitive/net461/System.Security.Permissions.targets",
  7834. "buildTransitive/net462/_._",
  7835. "buildTransitive/net6.0/_._",
  7836. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  7837. "lib/net462/System.Security.Permissions.dll",
  7838. "lib/net462/System.Security.Permissions.xml",
  7839. "lib/net6.0/System.Security.Permissions.dll",
  7840. "lib/net6.0/System.Security.Permissions.xml",
  7841. "lib/net7.0/System.Security.Permissions.dll",
  7842. "lib/net7.0/System.Security.Permissions.xml",
  7843. "lib/netstandard2.0/System.Security.Permissions.dll",
  7844. "lib/netstandard2.0/System.Security.Permissions.xml",
  7845. "system.security.permissions.7.0.0.nupkg.sha512",
  7846. "system.security.permissions.nuspec",
  7847. "useSharedDesignerContext.txt"
  7848. ]
  7849. },
  7850. "System.Security.Principal.Windows/5.0.0": {
  7851. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7852. "type": "package",
  7853. "path": "system.security.principal.windows/5.0.0",
  7854. "files": [
  7855. ".nupkg.metadata",
  7856. ".signature.p7s",
  7857. "Icon.png",
  7858. "LICENSE.TXT",
  7859. "THIRD-PARTY-NOTICES.TXT",
  7860. "lib/net46/System.Security.Principal.Windows.dll",
  7861. "lib/net461/System.Security.Principal.Windows.dll",
  7862. "lib/net461/System.Security.Principal.Windows.xml",
  7863. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7864. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7865. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7866. "lib/uap10.0.16299/_._",
  7867. "ref/net46/System.Security.Principal.Windows.dll",
  7868. "ref/net461/System.Security.Principal.Windows.dll",
  7869. "ref/net461/System.Security.Principal.Windows.xml",
  7870. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7871. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7872. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7873. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7874. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7875. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7876. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7877. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7878. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7879. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7880. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7881. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7882. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7883. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7884. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7885. "ref/uap10.0.16299/_._",
  7886. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7887. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7888. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7889. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7890. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7891. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7892. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7893. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7894. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7895. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7896. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7897. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7898. "runtimes/win/lib/uap10.0.16299/_._",
  7899. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7900. "system.security.principal.windows.nuspec",
  7901. "useSharedDesignerContext.txt",
  7902. "version.txt"
  7903. ]
  7904. },
  7905. "System.Text.Encoding.CodePages/6.0.0": {
  7906. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  7907. "type": "package",
  7908. "path": "system.text.encoding.codepages/6.0.0",
  7909. "files": [
  7910. ".nupkg.metadata",
  7911. ".signature.p7s",
  7912. "Icon.png",
  7913. "LICENSE.TXT",
  7914. "THIRD-PARTY-NOTICES.TXT",
  7915. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  7916. "buildTransitive/netcoreapp3.1/_._",
  7917. "lib/MonoAndroid10/_._",
  7918. "lib/MonoTouch10/_._",
  7919. "lib/net461/System.Text.Encoding.CodePages.dll",
  7920. "lib/net461/System.Text.Encoding.CodePages.xml",
  7921. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  7922. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  7923. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  7924. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  7925. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7926. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7927. "lib/xamarinios10/_._",
  7928. "lib/xamarinmac20/_._",
  7929. "lib/xamarintvos10/_._",
  7930. "lib/xamarinwatchos10/_._",
  7931. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7932. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7933. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  7934. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  7935. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  7936. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  7937. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7938. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7939. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  7940. "system.text.encoding.codepages.nuspec",
  7941. "useSharedDesignerContext.txt"
  7942. ]
  7943. },
  7944. "System.Text.Encodings.Web/7.0.0": {
  7945. "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  7946. "type": "package",
  7947. "path": "system.text.encodings.web/7.0.0",
  7948. "files": [
  7949. ".nupkg.metadata",
  7950. ".signature.p7s",
  7951. "Icon.png",
  7952. "LICENSE.TXT",
  7953. "THIRD-PARTY-NOTICES.TXT",
  7954. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  7955. "buildTransitive/net462/_._",
  7956. "buildTransitive/net6.0/_._",
  7957. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  7958. "lib/net462/System.Text.Encodings.Web.dll",
  7959. "lib/net462/System.Text.Encodings.Web.xml",
  7960. "lib/net6.0/System.Text.Encodings.Web.dll",
  7961. "lib/net6.0/System.Text.Encodings.Web.xml",
  7962. "lib/net7.0/System.Text.Encodings.Web.dll",
  7963. "lib/net7.0/System.Text.Encodings.Web.xml",
  7964. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7965. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7966. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  7967. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  7968. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  7969. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  7970. "system.text.encodings.web.7.0.0.nupkg.sha512",
  7971. "system.text.encodings.web.nuspec",
  7972. "useSharedDesignerContext.txt"
  7973. ]
  7974. },
  7975. "System.Text.Json/7.0.3": {
  7976. "sha512": "AyjhwXN1zTFeIibHimfJn6eAsZ7rTBib79JQpzg8WAuR/HKDu9JGNHTuu3nbbXQ/bgI+U4z6HtZmCHNXB1QXrQ==",
  7977. "type": "package",
  7978. "path": "system.text.json/7.0.3",
  7979. "files": [
  7980. ".nupkg.metadata",
  7981. ".signature.p7s",
  7982. "Icon.png",
  7983. "LICENSE.TXT",
  7984. "README.md",
  7985. "THIRD-PARTY-NOTICES.TXT",
  7986. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  7987. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7988. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7989. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7990. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7991. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  7992. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  7993. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  7994. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  7995. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  7996. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  7997. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  7998. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  7999. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8000. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  8001. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8002. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8003. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8004. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8005. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8006. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8007. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8008. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8009. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8010. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8011. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8012. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8013. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8014. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  8015. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8016. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8017. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8018. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8019. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8020. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8021. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8022. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8023. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8024. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8025. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8026. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8027. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8028. "buildTransitive/net461/System.Text.Json.targets",
  8029. "buildTransitive/net462/System.Text.Json.targets",
  8030. "buildTransitive/net6.0/System.Text.Json.targets",
  8031. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  8032. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  8033. "lib/net462/System.Text.Json.dll",
  8034. "lib/net462/System.Text.Json.xml",
  8035. "lib/net6.0/System.Text.Json.dll",
  8036. "lib/net6.0/System.Text.Json.xml",
  8037. "lib/net7.0/System.Text.Json.dll",
  8038. "lib/net7.0/System.Text.Json.xml",
  8039. "lib/netstandard2.0/System.Text.Json.dll",
  8040. "lib/netstandard2.0/System.Text.Json.xml",
  8041. "system.text.json.7.0.3.nupkg.sha512",
  8042. "system.text.json.nuspec",
  8043. "useSharedDesignerContext.txt"
  8044. ]
  8045. },
  8046. "System.Threading.Channels/7.0.0": {
  8047. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8048. "type": "package",
  8049. "path": "system.threading.channels/7.0.0",
  8050. "files": [
  8051. ".nupkg.metadata",
  8052. ".signature.p7s",
  8053. "Icon.png",
  8054. "LICENSE.TXT",
  8055. "THIRD-PARTY-NOTICES.TXT",
  8056. "buildTransitive/net461/System.Threading.Channels.targets",
  8057. "buildTransitive/net462/_._",
  8058. "buildTransitive/net6.0/_._",
  8059. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8060. "lib/net462/System.Threading.Channels.dll",
  8061. "lib/net462/System.Threading.Channels.xml",
  8062. "lib/net6.0/System.Threading.Channels.dll",
  8063. "lib/net6.0/System.Threading.Channels.xml",
  8064. "lib/net7.0/System.Threading.Channels.dll",
  8065. "lib/net7.0/System.Threading.Channels.xml",
  8066. "lib/netstandard2.0/System.Threading.Channels.dll",
  8067. "lib/netstandard2.0/System.Threading.Channels.xml",
  8068. "lib/netstandard2.1/System.Threading.Channels.dll",
  8069. "lib/netstandard2.1/System.Threading.Channels.xml",
  8070. "system.threading.channels.7.0.0.nupkg.sha512",
  8071. "system.threading.channels.nuspec",
  8072. "useSharedDesignerContext.txt"
  8073. ]
  8074. },
  8075. "System.Threading.Tasks.Dataflow/7.0.0": {
  8076. "sha512": "BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==",
  8077. "type": "package",
  8078. "path": "system.threading.tasks.dataflow/7.0.0",
  8079. "files": [
  8080. ".nupkg.metadata",
  8081. ".signature.p7s",
  8082. "Icon.png",
  8083. "LICENSE.TXT",
  8084. "THIRD-PARTY-NOTICES.TXT",
  8085. "buildTransitive/net461/System.Threading.Tasks.Dataflow.targets",
  8086. "buildTransitive/net462/_._",
  8087. "buildTransitive/net6.0/_._",
  8088. "buildTransitive/netcoreapp2.0/System.Threading.Tasks.Dataflow.targets",
  8089. "lib/net462/System.Threading.Tasks.Dataflow.dll",
  8090. "lib/net462/System.Threading.Tasks.Dataflow.xml",
  8091. "lib/net6.0/System.Threading.Tasks.Dataflow.dll",
  8092. "lib/net6.0/System.Threading.Tasks.Dataflow.xml",
  8093. "lib/net7.0/System.Threading.Tasks.Dataflow.dll",
  8094. "lib/net7.0/System.Threading.Tasks.Dataflow.xml",
  8095. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
  8096. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
  8097. "lib/netstandard2.1/System.Threading.Tasks.Dataflow.dll",
  8098. "lib/netstandard2.1/System.Threading.Tasks.Dataflow.xml",
  8099. "system.threading.tasks.dataflow.7.0.0.nupkg.sha512",
  8100. "system.threading.tasks.dataflow.nuspec",
  8101. "useSharedDesignerContext.txt"
  8102. ]
  8103. },
  8104. "System.Threading.Tasks.Extensions/4.5.4": {
  8105. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  8106. "type": "package",
  8107. "path": "system.threading.tasks.extensions/4.5.4",
  8108. "files": [
  8109. ".nupkg.metadata",
  8110. ".signature.p7s",
  8111. "LICENSE.TXT",
  8112. "THIRD-PARTY-NOTICES.TXT",
  8113. "lib/MonoAndroid10/_._",
  8114. "lib/MonoTouch10/_._",
  8115. "lib/net461/System.Threading.Tasks.Extensions.dll",
  8116. "lib/net461/System.Threading.Tasks.Extensions.xml",
  8117. "lib/netcoreapp2.1/_._",
  8118. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8119. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8120. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8121. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8122. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8123. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8124. "lib/xamarinios10/_._",
  8125. "lib/xamarinmac20/_._",
  8126. "lib/xamarintvos10/_._",
  8127. "lib/xamarinwatchos10/_._",
  8128. "ref/MonoAndroid10/_._",
  8129. "ref/MonoTouch10/_._",
  8130. "ref/netcoreapp2.1/_._",
  8131. "ref/xamarinios10/_._",
  8132. "ref/xamarinmac20/_._",
  8133. "ref/xamarintvos10/_._",
  8134. "ref/xamarinwatchos10/_._",
  8135. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  8136. "system.threading.tasks.extensions.nuspec",
  8137. "useSharedDesignerContext.txt",
  8138. "version.txt"
  8139. ]
  8140. },
  8141. "System.Windows.Extensions/7.0.0": {
  8142. "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==",
  8143. "type": "package",
  8144. "path": "system.windows.extensions/7.0.0",
  8145. "files": [
  8146. ".nupkg.metadata",
  8147. ".signature.p7s",
  8148. "Icon.png",
  8149. "LICENSE.TXT",
  8150. "THIRD-PARTY-NOTICES.TXT",
  8151. "lib/net6.0/System.Windows.Extensions.dll",
  8152. "lib/net6.0/System.Windows.Extensions.xml",
  8153. "lib/net7.0/System.Windows.Extensions.dll",
  8154. "lib/net7.0/System.Windows.Extensions.xml",
  8155. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  8156. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  8157. "runtimes/win/lib/net7.0/System.Windows.Extensions.dll",
  8158. "runtimes/win/lib/net7.0/System.Windows.Extensions.xml",
  8159. "system.windows.extensions.7.0.0.nupkg.sha512",
  8160. "system.windows.extensions.nuspec",
  8161. "useSharedDesignerContext.txt"
  8162. ]
  8163. },
  8164. "YamlDotNet/16.2.1": {
  8165. "sha512": "im6zTVgesjcfTRfuMpnx51Rg2svWenp/3q5XBfcIzgj8PNIkkSD2xEl9HWcVi2SaJPP9XcXUdzed9gSDEuf1TA==",
  8166. "type": "package",
  8167. "path": "yamldotnet/16.2.1",
  8168. "files": [
  8169. ".nupkg.metadata",
  8170. ".signature.p7s",
  8171. "README.md",
  8172. "images/yamldotnet.png",
  8173. "lib/net47/YamlDotNet.dll",
  8174. "lib/net47/YamlDotNet.xml",
  8175. "lib/net6.0/YamlDotNet.dll",
  8176. "lib/net6.0/YamlDotNet.xml",
  8177. "lib/net8.0/YamlDotNet.dll",
  8178. "lib/net8.0/YamlDotNet.xml",
  8179. "lib/netstandard2.0/YamlDotNet.dll",
  8180. "lib/netstandard2.0/YamlDotNet.xml",
  8181. "lib/netstandard2.1/YamlDotNet.dll",
  8182. "lib/netstandard2.1/YamlDotNet.xml",
  8183. "yamldotnet.16.2.1.nupkg.sha512",
  8184. "yamldotnet.nuspec"
  8185. ]
  8186. }
  8187. },
  8188. "projectFileDependencyGroups": {
  8189. "net8.0": [
  8190. "BCrypt.Net-Next >= 4.0.3",
  8191. "BuildWebCompiler >= 1.12.405",
  8192. "DeviceDetector.NET >= 6.4.2",
  8193. "Microsoft.AspNet.WebApi.Core >= 5.*",
  8194. "Microsoft.AspNetCore.Authentication.JwtBearer >= 8.*",
  8195. "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 8.*",
  8196. "Microsoft.AspNetCore.Identity.UI >= 8.*",
  8197. "Microsoft.EntityFrameworkCore.Design >= 8.*",
  8198. "Microsoft.EntityFrameworkCore.SqlServer >= 8.*",
  8199. "Microsoft.EntityFrameworkCore.Tools >= 8.*",
  8200. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 8.*",
  8201. "StackExchange.Redis >= 2.8.24",
  8202. "System.Management >= 8.*"
  8203. ]
  8204. },
  8205. "packageFolders": {
  8206. "C:\\Users\\choro\\.nuget\\packages\\": {},
  8207. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  8208. },
  8209. "project": {
  8210. "version": "1.0.0",
  8211. "restore": {
  8212. "projectUniqueName": "E:\\workspace\\bitforum\\backend\\bitforum.csproj",
  8213. "projectName": "bitforum",
  8214. "projectPath": "E:\\workspace\\bitforum\\backend\\bitforum.csproj",
  8215. "packagesPath": "C:\\Users\\choro\\.nuget\\packages\\",
  8216. "outputPath": "E:\\workspace\\bitforum\\backend\\obj\\",
  8217. "projectStyle": "PackageReference",
  8218. "fallbackFolders": [
  8219. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  8220. ],
  8221. "configFilePaths": [
  8222. "C:\\Users\\choro\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8223. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8224. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8225. ],
  8226. "originalTargetFrameworks": [
  8227. "net8.0"
  8228. ],
  8229. "sources": {
  8230. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8231. "https://api.nuget.org/v3/index.json": {}
  8232. },
  8233. "frameworks": {
  8234. "net8.0": {
  8235. "targetAlias": "net8.0",
  8236. "projectReferences": {}
  8237. }
  8238. },
  8239. "warningProperties": {
  8240. "warnAsError": [
  8241. "NU1605"
  8242. ]
  8243. },
  8244. "restoreAuditProperties": {
  8245. "enableAudit": "true",
  8246. "auditLevel": "low",
  8247. "auditMode": "direct"
  8248. },
  8249. "SdkAnalysisLevel": "9.0.100"
  8250. },
  8251. "frameworks": {
  8252. "net8.0": {
  8253. "targetAlias": "net8.0",
  8254. "dependencies": {
  8255. "BCrypt.Net-Next": {
  8256. "target": "Package",
  8257. "version": "[4.0.3, )"
  8258. },
  8259. "BuildWebCompiler": {
  8260. "target": "Package",
  8261. "version": "[1.12.405, )"
  8262. },
  8263. "DeviceDetector.NET": {
  8264. "target": "Package",
  8265. "version": "[6.4.2, )"
  8266. },
  8267. "Microsoft.AspNet.WebApi.Core": {
  8268. "target": "Package",
  8269. "version": "[5.*, )"
  8270. },
  8271. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  8272. "target": "Package",
  8273. "version": "[8.*, )"
  8274. },
  8275. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
  8276. "target": "Package",
  8277. "version": "[8.*, )"
  8278. },
  8279. "Microsoft.AspNetCore.Identity.UI": {
  8280. "target": "Package",
  8281. "version": "[8.*, )"
  8282. },
  8283. "Microsoft.EntityFrameworkCore.Design": {
  8284. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8285. "suppressParent": "All",
  8286. "target": "Package",
  8287. "version": "[8.*, )"
  8288. },
  8289. "Microsoft.EntityFrameworkCore.SqlServer": {
  8290. "target": "Package",
  8291. "version": "[8.*, )"
  8292. },
  8293. "Microsoft.EntityFrameworkCore.Tools": {
  8294. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8295. "suppressParent": "All",
  8296. "target": "Package",
  8297. "version": "[8.*, )"
  8298. },
  8299. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  8300. "target": "Package",
  8301. "version": "[8.*, )"
  8302. },
  8303. "StackExchange.Redis": {
  8304. "target": "Package",
  8305. "version": "[2.8.24, )"
  8306. },
  8307. "System.Management": {
  8308. "target": "Package",
  8309. "version": "[8.*, )"
  8310. }
  8311. },
  8312. "imports": [
  8313. "net461",
  8314. "net462",
  8315. "net47",
  8316. "net471",
  8317. "net472",
  8318. "net48",
  8319. "net481"
  8320. ],
  8321. "assetTargetFallback": true,
  8322. "warn": true,
  8323. "frameworkReferences": {
  8324. "Microsoft.AspNetCore.App": {
  8325. "privateAssets": "none"
  8326. },
  8327. "Microsoft.NETCore.App": {
  8328. "privateAssets": "all"
  8329. }
  8330. },
  8331. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
  8332. }
  8333. }
  8334. },
  8335. "logs": [
  8336. {
  8337. "code": "NU1701",
  8338. "level": "Warning",
  8339. "warningLevel": 1,
  8340. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1'을(를) 사용하여 패키지 'Microsoft.AspNet.WebApi.Core 5.3.0'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  8341. "libraryId": "Microsoft.AspNet.WebApi.Core",
  8342. "targetGraphs": [
  8343. "net8.0"
  8344. ]
  8345. }
  8346. ]
  8347. }