project.assets.json 384 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net8.0": {
  5. "Azure.Core/1.25.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  9. "System.Diagnostics.DiagnosticSource": "4.6.0",
  10. "System.Memory.Data": "1.0.2",
  11. "System.Numerics.Vectors": "4.5.0",
  12. "System.Text.Encodings.Web": "4.7.2",
  13. "System.Text.Json": "4.7.2",
  14. "System.Threading.Tasks.Extensions": "4.5.4"
  15. },
  16. "compile": {
  17. "lib/net5.0/Azure.Core.dll": {
  18. "related": ".xml"
  19. }
  20. },
  21. "runtime": {
  22. "lib/net5.0/Azure.Core.dll": {
  23. "related": ".xml"
  24. }
  25. }
  26. },
  27. "Azure.Identity/1.7.0": {
  28. "type": "package",
  29. "dependencies": {
  30. "Azure.Core": "1.25.0",
  31. "Microsoft.Identity.Client": "4.39.0",
  32. "Microsoft.Identity.Client.Extensions.Msal": "2.19.3",
  33. "System.Memory": "4.5.4",
  34. "System.Security.Cryptography.ProtectedData": "4.7.0",
  35. "System.Text.Json": "4.7.2",
  36. "System.Threading.Tasks.Extensions": "4.5.4"
  37. },
  38. "compile": {
  39. "lib/netstandard2.0/Azure.Identity.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/netstandard2.0/Azure.Identity.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "BuildWebCompiler/1.12.405": {
  50. "type": "package",
  51. "build": {
  52. "build/BuildWebCompiler.targets": {}
  53. }
  54. },
  55. "Humanizer/2.14.1": {
  56. "type": "package",
  57. "dependencies": {
  58. "Humanizer.Core.af": "2.14.1",
  59. "Humanizer.Core.ar": "2.14.1",
  60. "Humanizer.Core.az": "2.14.1",
  61. "Humanizer.Core.bg": "2.14.1",
  62. "Humanizer.Core.bn-BD": "2.14.1",
  63. "Humanizer.Core.cs": "2.14.1",
  64. "Humanizer.Core.da": "2.14.1",
  65. "Humanizer.Core.de": "2.14.1",
  66. "Humanizer.Core.el": "2.14.1",
  67. "Humanizer.Core.es": "2.14.1",
  68. "Humanizer.Core.fa": "2.14.1",
  69. "Humanizer.Core.fi-FI": "2.14.1",
  70. "Humanizer.Core.fr": "2.14.1",
  71. "Humanizer.Core.fr-BE": "2.14.1",
  72. "Humanizer.Core.he": "2.14.1",
  73. "Humanizer.Core.hr": "2.14.1",
  74. "Humanizer.Core.hu": "2.14.1",
  75. "Humanizer.Core.hy": "2.14.1",
  76. "Humanizer.Core.id": "2.14.1",
  77. "Humanizer.Core.is": "2.14.1",
  78. "Humanizer.Core.it": "2.14.1",
  79. "Humanizer.Core.ja": "2.14.1",
  80. "Humanizer.Core.ko-KR": "2.14.1",
  81. "Humanizer.Core.ku": "2.14.1",
  82. "Humanizer.Core.lv": "2.14.1",
  83. "Humanizer.Core.ms-MY": "2.14.1",
  84. "Humanizer.Core.mt": "2.14.1",
  85. "Humanizer.Core.nb": "2.14.1",
  86. "Humanizer.Core.nb-NO": "2.14.1",
  87. "Humanizer.Core.nl": "2.14.1",
  88. "Humanizer.Core.pl": "2.14.1",
  89. "Humanizer.Core.pt": "2.14.1",
  90. "Humanizer.Core.ro": "2.14.1",
  91. "Humanizer.Core.ru": "2.14.1",
  92. "Humanizer.Core.sk": "2.14.1",
  93. "Humanizer.Core.sl": "2.14.1",
  94. "Humanizer.Core.sr": "2.14.1",
  95. "Humanizer.Core.sr-Latn": "2.14.1",
  96. "Humanizer.Core.sv": "2.14.1",
  97. "Humanizer.Core.th-TH": "2.14.1",
  98. "Humanizer.Core.tr": "2.14.1",
  99. "Humanizer.Core.uk": "2.14.1",
  100. "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
  101. "Humanizer.Core.uz-Latn-UZ": "2.14.1",
  102. "Humanizer.Core.vi": "2.14.1",
  103. "Humanizer.Core.zh-CN": "2.14.1",
  104. "Humanizer.Core.zh-Hans": "2.14.1",
  105. "Humanizer.Core.zh-Hant": "2.14.1"
  106. }
  107. },
  108. "Humanizer.Core/2.14.1": {
  109. "type": "package",
  110. "compile": {
  111. "lib/net6.0/Humanizer.dll": {
  112. "related": ".xml"
  113. }
  114. },
  115. "runtime": {
  116. "lib/net6.0/Humanizer.dll": {
  117. "related": ".xml"
  118. }
  119. }
  120. },
  121. "Humanizer.Core.af/2.14.1": {
  122. "type": "package",
  123. "dependencies": {
  124. "Humanizer.Core": "[2.14.1]"
  125. },
  126. "resource": {
  127. "lib/net6.0/af/Humanizer.resources.dll": {
  128. "locale": "af"
  129. }
  130. }
  131. },
  132. "Humanizer.Core.ar/2.14.1": {
  133. "type": "package",
  134. "dependencies": {
  135. "Humanizer.Core": "[2.14.1]"
  136. },
  137. "resource": {
  138. "lib/net6.0/ar/Humanizer.resources.dll": {
  139. "locale": "ar"
  140. }
  141. }
  142. },
  143. "Humanizer.Core.az/2.14.1": {
  144. "type": "package",
  145. "dependencies": {
  146. "Humanizer.Core": "[2.14.1]"
  147. },
  148. "resource": {
  149. "lib/net6.0/az/Humanizer.resources.dll": {
  150. "locale": "az"
  151. }
  152. }
  153. },
  154. "Humanizer.Core.bg/2.14.1": {
  155. "type": "package",
  156. "dependencies": {
  157. "Humanizer.Core": "[2.14.1]"
  158. },
  159. "resource": {
  160. "lib/net6.0/bg/Humanizer.resources.dll": {
  161. "locale": "bg"
  162. }
  163. }
  164. },
  165. "Humanizer.Core.bn-BD/2.14.1": {
  166. "type": "package",
  167. "dependencies": {
  168. "Humanizer.Core": "[2.14.1]"
  169. },
  170. "resource": {
  171. "lib/net6.0/bn-BD/Humanizer.resources.dll": {
  172. "locale": "bn-BD"
  173. }
  174. }
  175. },
  176. "Humanizer.Core.cs/2.14.1": {
  177. "type": "package",
  178. "dependencies": {
  179. "Humanizer.Core": "[2.14.1]"
  180. },
  181. "resource": {
  182. "lib/net6.0/cs/Humanizer.resources.dll": {
  183. "locale": "cs"
  184. }
  185. }
  186. },
  187. "Humanizer.Core.da/2.14.1": {
  188. "type": "package",
  189. "dependencies": {
  190. "Humanizer.Core": "[2.14.1]"
  191. },
  192. "resource": {
  193. "lib/net6.0/da/Humanizer.resources.dll": {
  194. "locale": "da"
  195. }
  196. }
  197. },
  198. "Humanizer.Core.de/2.14.1": {
  199. "type": "package",
  200. "dependencies": {
  201. "Humanizer.Core": "[2.14.1]"
  202. },
  203. "resource": {
  204. "lib/net6.0/de/Humanizer.resources.dll": {
  205. "locale": "de"
  206. }
  207. }
  208. },
  209. "Humanizer.Core.el/2.14.1": {
  210. "type": "package",
  211. "dependencies": {
  212. "Humanizer.Core": "[2.14.1]"
  213. },
  214. "resource": {
  215. "lib/net6.0/el/Humanizer.resources.dll": {
  216. "locale": "el"
  217. }
  218. }
  219. },
  220. "Humanizer.Core.es/2.14.1": {
  221. "type": "package",
  222. "dependencies": {
  223. "Humanizer.Core": "[2.14.1]"
  224. },
  225. "resource": {
  226. "lib/net6.0/es/Humanizer.resources.dll": {
  227. "locale": "es"
  228. }
  229. }
  230. },
  231. "Humanizer.Core.fa/2.14.1": {
  232. "type": "package",
  233. "dependencies": {
  234. "Humanizer.Core": "[2.14.1]"
  235. },
  236. "resource": {
  237. "lib/net6.0/fa/Humanizer.resources.dll": {
  238. "locale": "fa"
  239. }
  240. }
  241. },
  242. "Humanizer.Core.fi-FI/2.14.1": {
  243. "type": "package",
  244. "dependencies": {
  245. "Humanizer.Core": "[2.14.1]"
  246. },
  247. "resource": {
  248. "lib/net6.0/fi-FI/Humanizer.resources.dll": {
  249. "locale": "fi-FI"
  250. }
  251. }
  252. },
  253. "Humanizer.Core.fr/2.14.1": {
  254. "type": "package",
  255. "dependencies": {
  256. "Humanizer.Core": "[2.14.1]"
  257. },
  258. "resource": {
  259. "lib/net6.0/fr/Humanizer.resources.dll": {
  260. "locale": "fr"
  261. }
  262. }
  263. },
  264. "Humanizer.Core.fr-BE/2.14.1": {
  265. "type": "package",
  266. "dependencies": {
  267. "Humanizer.Core": "[2.14.1]"
  268. },
  269. "resource": {
  270. "lib/net6.0/fr-BE/Humanizer.resources.dll": {
  271. "locale": "fr-BE"
  272. }
  273. }
  274. },
  275. "Humanizer.Core.he/2.14.1": {
  276. "type": "package",
  277. "dependencies": {
  278. "Humanizer.Core": "[2.14.1]"
  279. },
  280. "resource": {
  281. "lib/net6.0/he/Humanizer.resources.dll": {
  282. "locale": "he"
  283. }
  284. }
  285. },
  286. "Humanizer.Core.hr/2.14.1": {
  287. "type": "package",
  288. "dependencies": {
  289. "Humanizer.Core": "[2.14.1]"
  290. },
  291. "resource": {
  292. "lib/net6.0/hr/Humanizer.resources.dll": {
  293. "locale": "hr"
  294. }
  295. }
  296. },
  297. "Humanizer.Core.hu/2.14.1": {
  298. "type": "package",
  299. "dependencies": {
  300. "Humanizer.Core": "[2.14.1]"
  301. },
  302. "resource": {
  303. "lib/net6.0/hu/Humanizer.resources.dll": {
  304. "locale": "hu"
  305. }
  306. }
  307. },
  308. "Humanizer.Core.hy/2.14.1": {
  309. "type": "package",
  310. "dependencies": {
  311. "Humanizer.Core": "[2.14.1]"
  312. },
  313. "resource": {
  314. "lib/net6.0/hy/Humanizer.resources.dll": {
  315. "locale": "hy"
  316. }
  317. }
  318. },
  319. "Humanizer.Core.id/2.14.1": {
  320. "type": "package",
  321. "dependencies": {
  322. "Humanizer.Core": "[2.14.1]"
  323. },
  324. "resource": {
  325. "lib/net6.0/id/Humanizer.resources.dll": {
  326. "locale": "id"
  327. }
  328. }
  329. },
  330. "Humanizer.Core.is/2.14.1": {
  331. "type": "package",
  332. "dependencies": {
  333. "Humanizer.Core": "[2.14.1]"
  334. },
  335. "resource": {
  336. "lib/net6.0/is/Humanizer.resources.dll": {
  337. "locale": "is"
  338. }
  339. }
  340. },
  341. "Humanizer.Core.it/2.14.1": {
  342. "type": "package",
  343. "dependencies": {
  344. "Humanizer.Core": "[2.14.1]"
  345. },
  346. "resource": {
  347. "lib/net6.0/it/Humanizer.resources.dll": {
  348. "locale": "it"
  349. }
  350. }
  351. },
  352. "Humanizer.Core.ja/2.14.1": {
  353. "type": "package",
  354. "dependencies": {
  355. "Humanizer.Core": "[2.14.1]"
  356. },
  357. "resource": {
  358. "lib/net6.0/ja/Humanizer.resources.dll": {
  359. "locale": "ja"
  360. }
  361. }
  362. },
  363. "Humanizer.Core.ko-KR/2.14.1": {
  364. "type": "package",
  365. "dependencies": {
  366. "Humanizer.Core": "[2.14.1]"
  367. },
  368. "resource": {
  369. "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": {
  370. "locale": "ko-KR"
  371. }
  372. }
  373. },
  374. "Humanizer.Core.ku/2.14.1": {
  375. "type": "package",
  376. "dependencies": {
  377. "Humanizer.Core": "[2.14.1]"
  378. },
  379. "resource": {
  380. "lib/net6.0/ku/Humanizer.resources.dll": {
  381. "locale": "ku"
  382. }
  383. }
  384. },
  385. "Humanizer.Core.lv/2.14.1": {
  386. "type": "package",
  387. "dependencies": {
  388. "Humanizer.Core": "[2.14.1]"
  389. },
  390. "resource": {
  391. "lib/net6.0/lv/Humanizer.resources.dll": {
  392. "locale": "lv"
  393. }
  394. }
  395. },
  396. "Humanizer.Core.ms-MY/2.14.1": {
  397. "type": "package",
  398. "dependencies": {
  399. "Humanizer.Core": "[2.14.1]"
  400. },
  401. "resource": {
  402. "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": {
  403. "locale": "ms-MY"
  404. }
  405. }
  406. },
  407. "Humanizer.Core.mt/2.14.1": {
  408. "type": "package",
  409. "dependencies": {
  410. "Humanizer.Core": "[2.14.1]"
  411. },
  412. "resource": {
  413. "lib/netstandard2.0/mt/Humanizer.resources.dll": {
  414. "locale": "mt"
  415. }
  416. }
  417. },
  418. "Humanizer.Core.nb/2.14.1": {
  419. "type": "package",
  420. "dependencies": {
  421. "Humanizer.Core": "[2.14.1]"
  422. },
  423. "resource": {
  424. "lib/net6.0/nb/Humanizer.resources.dll": {
  425. "locale": "nb"
  426. }
  427. }
  428. },
  429. "Humanizer.Core.nb-NO/2.14.1": {
  430. "type": "package",
  431. "dependencies": {
  432. "Humanizer.Core": "[2.14.1]"
  433. },
  434. "resource": {
  435. "lib/net6.0/nb-NO/Humanizer.resources.dll": {
  436. "locale": "nb-NO"
  437. }
  438. }
  439. },
  440. "Humanizer.Core.nl/2.14.1": {
  441. "type": "package",
  442. "dependencies": {
  443. "Humanizer.Core": "[2.14.1]"
  444. },
  445. "resource": {
  446. "lib/net6.0/nl/Humanizer.resources.dll": {
  447. "locale": "nl"
  448. }
  449. }
  450. },
  451. "Humanizer.Core.pl/2.14.1": {
  452. "type": "package",
  453. "dependencies": {
  454. "Humanizer.Core": "[2.14.1]"
  455. },
  456. "resource": {
  457. "lib/net6.0/pl/Humanizer.resources.dll": {
  458. "locale": "pl"
  459. }
  460. }
  461. },
  462. "Humanizer.Core.pt/2.14.1": {
  463. "type": "package",
  464. "dependencies": {
  465. "Humanizer.Core": "[2.14.1]"
  466. },
  467. "resource": {
  468. "lib/net6.0/pt/Humanizer.resources.dll": {
  469. "locale": "pt"
  470. }
  471. }
  472. },
  473. "Humanizer.Core.ro/2.14.1": {
  474. "type": "package",
  475. "dependencies": {
  476. "Humanizer.Core": "[2.14.1]"
  477. },
  478. "resource": {
  479. "lib/net6.0/ro/Humanizer.resources.dll": {
  480. "locale": "ro"
  481. }
  482. }
  483. },
  484. "Humanizer.Core.ru/2.14.1": {
  485. "type": "package",
  486. "dependencies": {
  487. "Humanizer.Core": "[2.14.1]"
  488. },
  489. "resource": {
  490. "lib/net6.0/ru/Humanizer.resources.dll": {
  491. "locale": "ru"
  492. }
  493. }
  494. },
  495. "Humanizer.Core.sk/2.14.1": {
  496. "type": "package",
  497. "dependencies": {
  498. "Humanizer.Core": "[2.14.1]"
  499. },
  500. "resource": {
  501. "lib/net6.0/sk/Humanizer.resources.dll": {
  502. "locale": "sk"
  503. }
  504. }
  505. },
  506. "Humanizer.Core.sl/2.14.1": {
  507. "type": "package",
  508. "dependencies": {
  509. "Humanizer.Core": "[2.14.1]"
  510. },
  511. "resource": {
  512. "lib/net6.0/sl/Humanizer.resources.dll": {
  513. "locale": "sl"
  514. }
  515. }
  516. },
  517. "Humanizer.Core.sr/2.14.1": {
  518. "type": "package",
  519. "dependencies": {
  520. "Humanizer.Core": "[2.14.1]"
  521. },
  522. "resource": {
  523. "lib/net6.0/sr/Humanizer.resources.dll": {
  524. "locale": "sr"
  525. }
  526. }
  527. },
  528. "Humanizer.Core.sr-Latn/2.14.1": {
  529. "type": "package",
  530. "dependencies": {
  531. "Humanizer.Core": "[2.14.1]"
  532. },
  533. "resource": {
  534. "lib/net6.0/sr-Latn/Humanizer.resources.dll": {
  535. "locale": "sr-Latn"
  536. }
  537. }
  538. },
  539. "Humanizer.Core.sv/2.14.1": {
  540. "type": "package",
  541. "dependencies": {
  542. "Humanizer.Core": "[2.14.1]"
  543. },
  544. "resource": {
  545. "lib/net6.0/sv/Humanizer.resources.dll": {
  546. "locale": "sv"
  547. }
  548. }
  549. },
  550. "Humanizer.Core.th-TH/2.14.1": {
  551. "type": "package",
  552. "dependencies": {
  553. "Humanizer.Core": "[2.14.1]"
  554. },
  555. "resource": {
  556. "lib/netstandard2.0/th-TH/Humanizer.resources.dll": {
  557. "locale": "th-TH"
  558. }
  559. }
  560. },
  561. "Humanizer.Core.tr/2.14.1": {
  562. "type": "package",
  563. "dependencies": {
  564. "Humanizer.Core": "[2.14.1]"
  565. },
  566. "resource": {
  567. "lib/net6.0/tr/Humanizer.resources.dll": {
  568. "locale": "tr"
  569. }
  570. }
  571. },
  572. "Humanizer.Core.uk/2.14.1": {
  573. "type": "package",
  574. "dependencies": {
  575. "Humanizer.Core": "[2.14.1]"
  576. },
  577. "resource": {
  578. "lib/net6.0/uk/Humanizer.resources.dll": {
  579. "locale": "uk"
  580. }
  581. }
  582. },
  583. "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
  584. "type": "package",
  585. "dependencies": {
  586. "Humanizer.Core": "[2.14.1]"
  587. },
  588. "resource": {
  589. "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": {
  590. "locale": "uz-Cyrl-UZ"
  591. }
  592. }
  593. },
  594. "Humanizer.Core.uz-Latn-UZ/2.14.1": {
  595. "type": "package",
  596. "dependencies": {
  597. "Humanizer.Core": "[2.14.1]"
  598. },
  599. "resource": {
  600. "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": {
  601. "locale": "uz-Latn-UZ"
  602. }
  603. }
  604. },
  605. "Humanizer.Core.vi/2.14.1": {
  606. "type": "package",
  607. "dependencies": {
  608. "Humanizer.Core": "[2.14.1]"
  609. },
  610. "resource": {
  611. "lib/net6.0/vi/Humanizer.resources.dll": {
  612. "locale": "vi"
  613. }
  614. }
  615. },
  616. "Humanizer.Core.zh-CN/2.14.1": {
  617. "type": "package",
  618. "dependencies": {
  619. "Humanizer.Core": "[2.14.1]"
  620. },
  621. "resource": {
  622. "lib/net6.0/zh-CN/Humanizer.resources.dll": {
  623. "locale": "zh-CN"
  624. }
  625. }
  626. },
  627. "Humanizer.Core.zh-Hans/2.14.1": {
  628. "type": "package",
  629. "dependencies": {
  630. "Humanizer.Core": "[2.14.1]"
  631. },
  632. "resource": {
  633. "lib/net6.0/zh-Hans/Humanizer.resources.dll": {
  634. "locale": "zh-Hans"
  635. }
  636. }
  637. },
  638. "Humanizer.Core.zh-Hant/2.14.1": {
  639. "type": "package",
  640. "dependencies": {
  641. "Humanizer.Core": "[2.14.1]"
  642. },
  643. "resource": {
  644. "lib/net6.0/zh-Hant/Humanizer.resources.dll": {
  645. "locale": "zh-Hant"
  646. }
  647. }
  648. },
  649. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  650. "type": "package",
  651. "compile": {
  652. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  653. "related": ".xml"
  654. }
  655. },
  656. "runtime": {
  657. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  658. "related": ".xml"
  659. }
  660. }
  661. },
  662. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  663. "type": "package",
  664. "dependencies": {
  665. "Microsoft.AspNetCore.Cryptography.Internal": "8.0.0"
  666. },
  667. "compile": {
  668. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  669. "related": ".xml"
  670. }
  671. },
  672. "runtime": {
  673. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  674. "related": ".xml"
  675. }
  676. }
  677. },
  678. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  679. "type": "package",
  680. "dependencies": {
  681. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  682. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  683. },
  684. "compile": {
  685. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  686. "related": ".xml"
  687. }
  688. },
  689. "runtime": {
  690. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  691. "related": ".xml"
  692. }
  693. }
  694. },
  695. "Microsoft.AspNetCore.Identity.UI/8.0.0": {
  696. "type": "package",
  697. "dependencies": {
  698. "Microsoft.Extensions.FileProviders.Embedded": "8.0.0",
  699. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  700. },
  701. "compile": {
  702. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.dll": {
  703. "related": ".xml"
  704. }
  705. },
  706. "runtime": {
  707. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.dll": {
  708. "related": ".xml"
  709. }
  710. },
  711. "frameworkReferences": [
  712. "Microsoft.AspNetCore.App"
  713. ],
  714. "build": {
  715. "build/Microsoft.AspNetCore.Identity.UI.props": {},
  716. "buildTransitive/Microsoft.AspNetCore.Identity.UI.targets": {}
  717. },
  718. "buildMultiTargeting": {
  719. "buildMultiTargeting/Microsoft.AspNetCore.Identity.UI.targets": {}
  720. }
  721. },
  722. "Microsoft.AspNetCore.Razor.Language/6.0.24": {
  723. "type": "package",
  724. "compile": {
  725. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  726. },
  727. "runtime": {
  728. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  729. }
  730. },
  731. "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
  732. "type": "package",
  733. "compile": {
  734. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  735. "related": ".xml"
  736. }
  737. },
  738. "runtime": {
  739. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  740. "related": ".xml"
  741. }
  742. }
  743. },
  744. "Microsoft.Build/17.7.2": {
  745. "type": "package",
  746. "dependencies": {
  747. "Microsoft.Build.Framework": "17.7.2",
  748. "Microsoft.NET.StringTools": "17.7.2",
  749. "System.Collections.Immutable": "7.0.0",
  750. "System.Configuration.ConfigurationManager": "7.0.0",
  751. "System.Reflection.Metadata": "7.0.0",
  752. "System.Reflection.MetadataLoadContext": "7.0.0",
  753. "System.Security.Permissions": "7.0.0",
  754. "System.Text.Json": "7.0.0",
  755. "System.Threading.Tasks.Dataflow": "7.0.0"
  756. },
  757. "compile": {
  758. "ref/net7.0/Microsoft.Build.dll": {
  759. "related": ".xml"
  760. }
  761. },
  762. "runtime": {
  763. "lib/net7.0/Microsoft.Build.dll": {
  764. "related": ".pdb;.xml"
  765. }
  766. }
  767. },
  768. "Microsoft.Build.Framework/17.7.2": {
  769. "type": "package",
  770. "dependencies": {
  771. "System.Security.Permissions": "7.0.0"
  772. },
  773. "compile": {
  774. "ref/net7.0/Microsoft.Build.Framework.dll": {
  775. "related": ".xml"
  776. }
  777. },
  778. "runtime": {
  779. "lib/net7.0/Microsoft.Build.Framework.dll": {
  780. "related": ".pdb;.xml"
  781. }
  782. }
  783. },
  784. "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
  785. "type": "package",
  786. "build": {
  787. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {},
  788. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {}
  789. }
  790. },
  791. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  792. "type": "package",
  793. "compile": {
  794. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
  795. "related": ".xml"
  796. }
  797. },
  798. "runtime": {
  799. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
  800. "related": ".xml"
  801. }
  802. }
  803. },
  804. "Microsoft.CodeAnalysis.Common/4.8.0-3.final": {
  805. "type": "package",
  806. "dependencies": {
  807. "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
  808. "System.Collections.Immutable": "7.0.0",
  809. "System.Reflection.Metadata": "7.0.0",
  810. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  811. },
  812. "compile": {
  813. "lib/net7.0/Microsoft.CodeAnalysis.dll": {
  814. "related": ".pdb;.xml"
  815. }
  816. },
  817. "runtime": {
  818. "lib/net7.0/Microsoft.CodeAnalysis.dll": {
  819. "related": ".pdb;.xml"
  820. }
  821. },
  822. "resource": {
  823. "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
  824. "locale": "cs"
  825. },
  826. "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
  827. "locale": "de"
  828. },
  829. "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
  830. "locale": "es"
  831. },
  832. "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
  833. "locale": "fr"
  834. },
  835. "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
  836. "locale": "it"
  837. },
  838. "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
  839. "locale": "ja"
  840. },
  841. "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
  842. "locale": "ko"
  843. },
  844. "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
  845. "locale": "pl"
  846. },
  847. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  848. "locale": "pt-BR"
  849. },
  850. "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
  851. "locale": "ru"
  852. },
  853. "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
  854. "locale": "tr"
  855. },
  856. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  857. "locale": "zh-Hans"
  858. },
  859. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  860. "locale": "zh-Hant"
  861. }
  862. }
  863. },
  864. "Microsoft.CodeAnalysis.CSharp/4.8.0-3.final": {
  865. "type": "package",
  866. "dependencies": {
  867. "Microsoft.CodeAnalysis.Common": "[4.8.0-3.final]"
  868. },
  869. "compile": {
  870. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
  871. "related": ".pdb;.xml"
  872. }
  873. },
  874. "runtime": {
  875. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
  876. "related": ".pdb;.xml"
  877. }
  878. },
  879. "resource": {
  880. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  881. "locale": "cs"
  882. },
  883. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  884. "locale": "de"
  885. },
  886. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  887. "locale": "es"
  888. },
  889. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  890. "locale": "fr"
  891. },
  892. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  893. "locale": "it"
  894. },
  895. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  896. "locale": "ja"
  897. },
  898. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  899. "locale": "ko"
  900. },
  901. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  902. "locale": "pl"
  903. },
  904. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  905. "locale": "pt-BR"
  906. },
  907. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  908. "locale": "ru"
  909. },
  910. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  911. "locale": "tr"
  912. },
  913. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  914. "locale": "zh-Hans"
  915. },
  916. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  917. "locale": "zh-Hant"
  918. }
  919. }
  920. },
  921. "Microsoft.CodeAnalysis.CSharp.Features/4.8.0-3.final": {
  922. "type": "package",
  923. "dependencies": {
  924. "Humanizer.Core": "2.14.1",
  925. "Microsoft.CodeAnalysis.CSharp": "[4.8.0-3.final]",
  926. "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.8.0-3.final]",
  927. "Microsoft.CodeAnalysis.Common": "[4.8.0-3.final]",
  928. "Microsoft.CodeAnalysis.Features": "[4.8.0-3.final]",
  929. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0-3.final]"
  930. },
  931. "compile": {
  932. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
  933. "related": ".pdb;.xml"
  934. }
  935. },
  936. "runtime": {
  937. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
  938. "related": ".pdb;.xml"
  939. }
  940. },
  941. "resource": {
  942. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  943. "locale": "cs"
  944. },
  945. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  946. "locale": "de"
  947. },
  948. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  949. "locale": "es"
  950. },
  951. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  952. "locale": "fr"
  953. },
  954. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  955. "locale": "it"
  956. },
  957. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  958. "locale": "ja"
  959. },
  960. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  961. "locale": "ko"
  962. },
  963. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  964. "locale": "pl"
  965. },
  966. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  967. "locale": "pt-BR"
  968. },
  969. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  970. "locale": "ru"
  971. },
  972. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  973. "locale": "tr"
  974. },
  975. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  976. "locale": "zh-Hans"
  977. },
  978. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  979. "locale": "zh-Hant"
  980. }
  981. }
  982. },
  983. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0-3.final": {
  984. "type": "package",
  985. "dependencies": {
  986. "Humanizer.Core": "2.14.1",
  987. "Microsoft.CodeAnalysis.CSharp": "[4.8.0-3.final]",
  988. "Microsoft.CodeAnalysis.Common": "[4.8.0-3.final]",
  989. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0-3.final]"
  990. },
  991. "compile": {
  992. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  993. "related": ".pdb;.xml"
  994. }
  995. },
  996. "runtime": {
  997. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  998. "related": ".pdb;.xml"
  999. }
  1000. },
  1001. "resource": {
  1002. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1003. "locale": "cs"
  1004. },
  1005. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1006. "locale": "de"
  1007. },
  1008. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1009. "locale": "es"
  1010. },
  1011. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1012. "locale": "fr"
  1013. },
  1014. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1015. "locale": "it"
  1016. },
  1017. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1018. "locale": "ja"
  1019. },
  1020. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1021. "locale": "ko"
  1022. },
  1023. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1024. "locale": "pl"
  1025. },
  1026. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1027. "locale": "pt-BR"
  1028. },
  1029. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1030. "locale": "ru"
  1031. },
  1032. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1033. "locale": "tr"
  1034. },
  1035. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1036. "locale": "zh-Hans"
  1037. },
  1038. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  1039. "locale": "zh-Hant"
  1040. }
  1041. }
  1042. },
  1043. "Microsoft.CodeAnalysis.Elfie/1.0.0": {
  1044. "type": "package",
  1045. "dependencies": {
  1046. "System.Configuration.ConfigurationManager": "4.5.0",
  1047. "System.Data.DataSetExtensions": "4.5.0"
  1048. },
  1049. "compile": {
  1050. "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
  1051. },
  1052. "runtime": {
  1053. "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
  1054. }
  1055. },
  1056. "Microsoft.CodeAnalysis.Features/4.8.0-3.final": {
  1057. "type": "package",
  1058. "dependencies": {
  1059. "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
  1060. "Microsoft.CodeAnalysis.Common": "[4.8.0-3.final]",
  1061. "Microsoft.CodeAnalysis.Elfie": "1.0.0",
  1062. "Microsoft.CodeAnalysis.Scripting.Common": "[4.8.0-3.final]",
  1063. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0-3.final]",
  1064. "Microsoft.DiaSymReader": "2.0.0",
  1065. "System.Text.Json": "7.0.3"
  1066. },
  1067. "compile": {
  1068. "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
  1069. "related": ".pdb;.xml"
  1070. }
  1071. },
  1072. "runtime": {
  1073. "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
  1074. "related": ".pdb;.xml"
  1075. }
  1076. },
  1077. "resource": {
  1078. "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
  1079. "locale": "cs"
  1080. },
  1081. "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": {
  1082. "locale": "de"
  1083. },
  1084. "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": {
  1085. "locale": "es"
  1086. },
  1087. "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
  1088. "locale": "fr"
  1089. },
  1090. "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": {
  1091. "locale": "it"
  1092. },
  1093. "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
  1094. "locale": "ja"
  1095. },
  1096. "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
  1097. "locale": "ko"
  1098. },
  1099. "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
  1100. "locale": "pl"
  1101. },
  1102. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
  1103. "locale": "pt-BR"
  1104. },
  1105. "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
  1106. "locale": "ru"
  1107. },
  1108. "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
  1109. "locale": "tr"
  1110. },
  1111. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
  1112. "locale": "zh-Hans"
  1113. },
  1114. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
  1115. "locale": "zh-Hant"
  1116. }
  1117. }
  1118. },
  1119. "Microsoft.CodeAnalysis.Razor/6.0.24": {
  1120. "type": "package",
  1121. "dependencies": {
  1122. "Microsoft.AspNetCore.Razor.Language": "6.0.24",
  1123. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  1124. "Microsoft.CodeAnalysis.Common": "4.0.0"
  1125. },
  1126. "compile": {
  1127. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  1128. },
  1129. "runtime": {
  1130. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  1131. }
  1132. },
  1133. "Microsoft.CodeAnalysis.Scripting.Common/4.8.0-3.final": {
  1134. "type": "package",
  1135. "dependencies": {
  1136. "Microsoft.CodeAnalysis.Common": "[4.8.0-3.final]"
  1137. },
  1138. "compile": {
  1139. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
  1140. "related": ".pdb;.xml"
  1141. }
  1142. },
  1143. "runtime": {
  1144. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
  1145. "related": ".pdb;.xml"
  1146. }
  1147. },
  1148. "resource": {
  1149. "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1150. "locale": "cs"
  1151. },
  1152. "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1153. "locale": "de"
  1154. },
  1155. "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1156. "locale": "es"
  1157. },
  1158. "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1159. "locale": "fr"
  1160. },
  1161. "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1162. "locale": "it"
  1163. },
  1164. "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1165. "locale": "ja"
  1166. },
  1167. "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1168. "locale": "ko"
  1169. },
  1170. "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1171. "locale": "pl"
  1172. },
  1173. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1174. "locale": "pt-BR"
  1175. },
  1176. "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1177. "locale": "ru"
  1178. },
  1179. "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1180. "locale": "tr"
  1181. },
  1182. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1183. "locale": "zh-Hans"
  1184. },
  1185. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  1186. "locale": "zh-Hant"
  1187. }
  1188. }
  1189. },
  1190. "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0-3.final": {
  1191. "type": "package",
  1192. "dependencies": {
  1193. "Humanizer.Core": "2.14.1",
  1194. "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
  1195. "Microsoft.CodeAnalysis.Common": "[4.8.0-3.final]",
  1196. "System.Composition": "7.0.0",
  1197. "System.IO.Pipelines": "7.0.0",
  1198. "System.Threading.Channels": "7.0.0"
  1199. },
  1200. "compile": {
  1201. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
  1202. "related": ".pdb;.xml"
  1203. }
  1204. },
  1205. "runtime": {
  1206. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
  1207. "related": ".pdb;.xml"
  1208. }
  1209. },
  1210. "resource": {
  1211. "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1212. "locale": "cs"
  1213. },
  1214. "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1215. "locale": "de"
  1216. },
  1217. "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1218. "locale": "es"
  1219. },
  1220. "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1221. "locale": "fr"
  1222. },
  1223. "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1224. "locale": "it"
  1225. },
  1226. "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1227. "locale": "ja"
  1228. },
  1229. "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1230. "locale": "ko"
  1231. },
  1232. "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1233. "locale": "pl"
  1234. },
  1235. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1236. "locale": "pt-BR"
  1237. },
  1238. "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1239. "locale": "ru"
  1240. },
  1241. "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1242. "locale": "tr"
  1243. },
  1244. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1245. "locale": "zh-Hans"
  1246. },
  1247. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  1248. "locale": "zh-Hant"
  1249. }
  1250. }
  1251. },
  1252. "Microsoft.CSharp/4.5.0": {
  1253. "type": "package",
  1254. "compile": {
  1255. "ref/netcoreapp2.0/_._": {}
  1256. },
  1257. "runtime": {
  1258. "lib/netcoreapp2.0/_._": {}
  1259. }
  1260. },
  1261. "Microsoft.Data.SqlClient/5.1.1": {
  1262. "type": "package",
  1263. "dependencies": {
  1264. "Azure.Identity": "1.7.0",
  1265. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.0",
  1266. "Microsoft.Identity.Client": "4.47.2",
  1267. "Microsoft.IdentityModel.JsonWebTokens": "6.24.0",
  1268. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.24.0",
  1269. "Microsoft.SqlServer.Server": "1.0.0",
  1270. "System.Configuration.ConfigurationManager": "6.0.1",
  1271. "System.Diagnostics.DiagnosticSource": "6.0.0",
  1272. "System.Runtime.Caching": "6.0.0",
  1273. "System.Security.Cryptography.Cng": "5.0.0",
  1274. "System.Security.Principal.Windows": "5.0.0",
  1275. "System.Text.Encoding.CodePages": "6.0.0",
  1276. "System.Text.Encodings.Web": "6.0.0"
  1277. },
  1278. "compile": {
  1279. "ref/net6.0/Microsoft.Data.SqlClient.dll": {
  1280. "related": ".pdb;.xml"
  1281. }
  1282. },
  1283. "runtime": {
  1284. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  1285. "related": ".pdb;.xml"
  1286. }
  1287. },
  1288. "runtimeTargets": {
  1289. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  1290. "assetType": "runtime",
  1291. "rid": "unix"
  1292. },
  1293. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  1294. "assetType": "runtime",
  1295. "rid": "win"
  1296. }
  1297. }
  1298. },
  1299. "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": {
  1300. "type": "package",
  1301. "runtimeTargets": {
  1302. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  1303. "assetType": "native",
  1304. "rid": "win-arm"
  1305. },
  1306. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  1307. "assetType": "native",
  1308. "rid": "win-arm64"
  1309. },
  1310. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  1311. "assetType": "native",
  1312. "rid": "win-x64"
  1313. },
  1314. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  1315. "assetType": "native",
  1316. "rid": "win-x86"
  1317. }
  1318. }
  1319. },
  1320. "Microsoft.DiaSymReader/2.0.0": {
  1321. "type": "package",
  1322. "compile": {
  1323. "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
  1324. "related": ".pdb;.xml"
  1325. }
  1326. },
  1327. "runtime": {
  1328. "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
  1329. "related": ".pdb;.xml"
  1330. }
  1331. }
  1332. },
  1333. "Microsoft.DotNet.Scaffolding.Shared/8.0.0": {
  1334. "type": "package",
  1335. "dependencies": {
  1336. "Humanizer": "2.14.1",
  1337. "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0-3.final",
  1338. "Microsoft.Extensions.DependencyModel": "8.0.0",
  1339. "Mono.TextTemplating": "2.3.1",
  1340. "Newtonsoft.Json": "13.0.3",
  1341. "NuGet.ProjectModel": "6.3.1"
  1342. },
  1343. "compile": {
  1344. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
  1345. "related": ".xml"
  1346. }
  1347. },
  1348. "runtime": {
  1349. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
  1350. "related": ".xml"
  1351. }
  1352. }
  1353. },
  1354. "Microsoft.EntityFrameworkCore/8.0.0": {
  1355. "type": "package",
  1356. "dependencies": {
  1357. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.0",
  1358. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.0",
  1359. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  1360. "Microsoft.Extensions.Logging": "8.0.0"
  1361. },
  1362. "compile": {
  1363. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  1364. "related": ".xml"
  1365. }
  1366. },
  1367. "runtime": {
  1368. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  1369. "related": ".xml"
  1370. }
  1371. },
  1372. "build": {
  1373. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
  1374. }
  1375. },
  1376. "Microsoft.EntityFrameworkCore.Abstractions/8.0.0": {
  1377. "type": "package",
  1378. "compile": {
  1379. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1380. "related": ".xml"
  1381. }
  1382. },
  1383. "runtime": {
  1384. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1385. "related": ".xml"
  1386. }
  1387. }
  1388. },
  1389. "Microsoft.EntityFrameworkCore.Analyzers/8.0.0": {
  1390. "type": "package",
  1391. "compile": {
  1392. "lib/netstandard2.0/_._": {}
  1393. },
  1394. "runtime": {
  1395. "lib/netstandard2.0/_._": {}
  1396. }
  1397. },
  1398. "Microsoft.EntityFrameworkCore.Design/8.0.0": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "Humanizer.Core": "2.14.1",
  1402. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
  1403. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  1404. "Microsoft.Extensions.DependencyModel": "8.0.0",
  1405. "Mono.TextTemplating": "2.2.1"
  1406. },
  1407. "compile": {
  1408. "lib/net8.0/_._": {
  1409. "related": ".xml"
  1410. }
  1411. },
  1412. "runtime": {
  1413. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
  1414. "related": ".xml"
  1415. }
  1416. },
  1417. "build": {
  1418. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
  1419. }
  1420. },
  1421. "Microsoft.EntityFrameworkCore.Relational/8.0.0": {
  1422. "type": "package",
  1423. "dependencies": {
  1424. "Microsoft.EntityFrameworkCore": "8.0.0",
  1425. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  1426. },
  1427. "compile": {
  1428. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  1429. "related": ".xml"
  1430. }
  1431. },
  1432. "runtime": {
  1433. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  1434. "related": ".xml"
  1435. }
  1436. }
  1437. },
  1438. "Microsoft.EntityFrameworkCore.SqlServer/8.0.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "Microsoft.Data.SqlClient": "5.1.1",
  1442. "Microsoft.EntityFrameworkCore.Relational": "8.0.0"
  1443. },
  1444. "compile": {
  1445. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1446. "related": ".xml"
  1447. }
  1448. },
  1449. "runtime": {
  1450. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1451. "related": ".xml"
  1452. }
  1453. }
  1454. },
  1455. "Microsoft.EntityFrameworkCore.Tools/8.0.0": {
  1456. "type": "package",
  1457. "dependencies": {
  1458. "Microsoft.EntityFrameworkCore.Design": "8.0.0"
  1459. },
  1460. "compile": {
  1461. "lib/net8.0/_._": {}
  1462. },
  1463. "runtime": {
  1464. "lib/net8.0/_._": {}
  1465. }
  1466. },
  1467. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  1468. "type": "package",
  1469. "dependencies": {
  1470. "Microsoft.Extensions.Primitives": "8.0.0"
  1471. },
  1472. "compile": {
  1473. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1474. "related": ".xml"
  1475. }
  1476. },
  1477. "runtime": {
  1478. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1479. "related": ".xml"
  1480. }
  1481. },
  1482. "build": {
  1483. "buildTransitive/net6.0/_._": {}
  1484. }
  1485. },
  1486. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  1487. "type": "package",
  1488. "dependencies": {
  1489. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  1490. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  1491. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  1492. "Microsoft.Extensions.Options": "8.0.0",
  1493. "Microsoft.Extensions.Primitives": "8.0.0"
  1494. },
  1495. "compile": {
  1496. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  1497. "related": ".xml"
  1498. }
  1499. },
  1500. "runtime": {
  1501. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  1502. "related": ".xml"
  1503. }
  1504. },
  1505. "build": {
  1506. "buildTransitive/net6.0/_._": {}
  1507. }
  1508. },
  1509. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  1510. "type": "package",
  1511. "dependencies": {
  1512. "Microsoft.Extensions.Primitives": "8.0.0"
  1513. },
  1514. "compile": {
  1515. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1516. "related": ".xml"
  1517. }
  1518. },
  1519. "runtime": {
  1520. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1521. "related": ".xml"
  1522. }
  1523. },
  1524. "build": {
  1525. "buildTransitive/net6.0/_._": {}
  1526. }
  1527. },
  1528. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  1529. "type": "package",
  1530. "dependencies": {
  1531. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  1532. },
  1533. "compile": {
  1534. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  1535. "related": ".xml"
  1536. }
  1537. },
  1538. "runtime": {
  1539. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  1540. "related": ".xml"
  1541. }
  1542. },
  1543. "build": {
  1544. "buildTransitive/net6.0/_._": {}
  1545. }
  1546. },
  1547. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  1548. "type": "package",
  1549. "compile": {
  1550. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1551. "related": ".xml"
  1552. }
  1553. },
  1554. "runtime": {
  1555. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1556. "related": ".xml"
  1557. }
  1558. },
  1559. "build": {
  1560. "buildTransitive/net6.0/_._": {}
  1561. }
  1562. },
  1563. "Microsoft.Extensions.DependencyModel/8.0.0": {
  1564. "type": "package",
  1565. "dependencies": {
  1566. "System.Text.Encodings.Web": "8.0.0",
  1567. "System.Text.Json": "8.0.0"
  1568. },
  1569. "compile": {
  1570. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  1571. "related": ".xml"
  1572. }
  1573. },
  1574. "runtime": {
  1575. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  1576. "related": ".xml"
  1577. }
  1578. },
  1579. "build": {
  1580. "buildTransitive/net6.0/_._": {}
  1581. }
  1582. },
  1583. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  1584. "type": "package",
  1585. "dependencies": {
  1586. "Microsoft.Extensions.Primitives": "8.0.0"
  1587. },
  1588. "compile": {
  1589. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1590. "related": ".xml"
  1591. }
  1592. },
  1593. "runtime": {
  1594. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1595. "related": ".xml"
  1596. }
  1597. },
  1598. "build": {
  1599. "buildTransitive/net6.0/_._": {}
  1600. }
  1601. },
  1602. "Microsoft.Extensions.FileProviders.Embedded/8.0.0": {
  1603. "type": "package",
  1604. "dependencies": {
  1605. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0"
  1606. },
  1607. "compile": {
  1608. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1609. "related": ".xml"
  1610. }
  1611. },
  1612. "runtime": {
  1613. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1614. "related": ".xml"
  1615. }
  1616. },
  1617. "build": {
  1618. "build/netstandard2.0/_._": {}
  1619. },
  1620. "buildMultiTargeting": {
  1621. "buildMultiTargeting/_._": {}
  1622. }
  1623. },
  1624. "Microsoft.Extensions.Identity.Core/8.0.0": {
  1625. "type": "package",
  1626. "dependencies": {
  1627. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.0",
  1628. "Microsoft.Extensions.Logging": "8.0.0",
  1629. "Microsoft.Extensions.Options": "8.0.0"
  1630. },
  1631. "compile": {
  1632. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  1638. "related": ".xml"
  1639. }
  1640. }
  1641. },
  1642. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  1643. "type": "package",
  1644. "dependencies": {
  1645. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  1646. "Microsoft.Extensions.Identity.Core": "8.0.0",
  1647. "Microsoft.Extensions.Logging": "8.0.0"
  1648. },
  1649. "compile": {
  1650. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  1651. "related": ".xml"
  1652. }
  1653. },
  1654. "runtime": {
  1655. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  1656. "related": ".xml"
  1657. }
  1658. }
  1659. },
  1660. "Microsoft.Extensions.Logging/8.0.0": {
  1661. "type": "package",
  1662. "dependencies": {
  1663. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  1664. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  1665. "Microsoft.Extensions.Options": "8.0.0"
  1666. },
  1667. "compile": {
  1668. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  1669. "related": ".xml"
  1670. }
  1671. },
  1672. "runtime": {
  1673. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  1674. "related": ".xml"
  1675. }
  1676. },
  1677. "build": {
  1678. "buildTransitive/net6.0/_._": {}
  1679. }
  1680. },
  1681. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  1682. "type": "package",
  1683. "dependencies": {
  1684. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  1685. },
  1686. "compile": {
  1687. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1688. "related": ".xml"
  1689. }
  1690. },
  1691. "runtime": {
  1692. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1693. "related": ".xml"
  1694. }
  1695. },
  1696. "build": {
  1697. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  1698. }
  1699. },
  1700. "Microsoft.Extensions.Options/8.0.0": {
  1701. "type": "package",
  1702. "dependencies": {
  1703. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  1704. "Microsoft.Extensions.Primitives": "8.0.0"
  1705. },
  1706. "compile": {
  1707. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  1708. "related": ".xml"
  1709. }
  1710. },
  1711. "runtime": {
  1712. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  1713. "related": ".xml"
  1714. }
  1715. },
  1716. "build": {
  1717. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
  1718. }
  1719. },
  1720. "Microsoft.Extensions.Primitives/8.0.0": {
  1721. "type": "package",
  1722. "compile": {
  1723. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  1724. "related": ".xml"
  1725. }
  1726. },
  1727. "runtime": {
  1728. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  1729. "related": ".xml"
  1730. }
  1731. },
  1732. "build": {
  1733. "buildTransitive/net6.0/_._": {}
  1734. }
  1735. },
  1736. "Microsoft.Identity.Client/4.47.2": {
  1737. "type": "package",
  1738. "dependencies": {
  1739. "Microsoft.IdentityModel.Abstractions": "6.22.0"
  1740. },
  1741. "compile": {
  1742. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  1743. "related": ".xml"
  1744. }
  1745. },
  1746. "runtime": {
  1747. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  1748. "related": ".xml"
  1749. }
  1750. }
  1751. },
  1752. "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
  1753. "type": "package",
  1754. "dependencies": {
  1755. "Microsoft.Identity.Client": "4.38.0",
  1756. "System.Security.Cryptography.ProtectedData": "4.5.0"
  1757. },
  1758. "compile": {
  1759. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {
  1760. "related": ".xml"
  1761. }
  1762. },
  1763. "runtime": {
  1764. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {
  1765. "related": ".xml"
  1766. }
  1767. }
  1768. },
  1769. "Microsoft.IdentityModel.Abstractions/6.24.0": {
  1770. "type": "package",
  1771. "compile": {
  1772. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  1773. "related": ".xml"
  1774. }
  1775. },
  1776. "runtime": {
  1777. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  1778. "related": ".xml"
  1779. }
  1780. }
  1781. },
  1782. "Microsoft.IdentityModel.JsonWebTokens/6.24.0": {
  1783. "type": "package",
  1784. "dependencies": {
  1785. "Microsoft.IdentityModel.Tokens": "6.24.0",
  1786. "System.Text.Encoding": "4.3.0",
  1787. "System.Text.Json": "4.7.2"
  1788. },
  1789. "compile": {
  1790. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1791. "related": ".xml"
  1792. }
  1793. },
  1794. "runtime": {
  1795. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1796. "related": ".xml"
  1797. }
  1798. }
  1799. },
  1800. "Microsoft.IdentityModel.Logging/6.24.0": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "Microsoft.IdentityModel.Abstractions": "6.24.0"
  1804. },
  1805. "compile": {
  1806. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  1807. "related": ".xml"
  1808. }
  1809. },
  1810. "runtime": {
  1811. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  1812. "related": ".xml"
  1813. }
  1814. }
  1815. },
  1816. "Microsoft.IdentityModel.Protocols/6.24.0": {
  1817. "type": "package",
  1818. "dependencies": {
  1819. "Microsoft.IdentityModel.Logging": "6.24.0",
  1820. "Microsoft.IdentityModel.Tokens": "6.24.0"
  1821. },
  1822. "compile": {
  1823. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  1824. "related": ".xml"
  1825. }
  1826. },
  1827. "runtime": {
  1828. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  1829. "related": ".xml"
  1830. }
  1831. }
  1832. },
  1833. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.24.0": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "Microsoft.IdentityModel.Protocols": "6.24.0",
  1837. "System.IdentityModel.Tokens.Jwt": "6.24.0"
  1838. },
  1839. "compile": {
  1840. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1841. "related": ".xml"
  1842. }
  1843. },
  1844. "runtime": {
  1845. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1846. "related": ".xml"
  1847. }
  1848. }
  1849. },
  1850. "Microsoft.IdentityModel.Tokens/6.24.0": {
  1851. "type": "package",
  1852. "dependencies": {
  1853. "Microsoft.CSharp": "4.5.0",
  1854. "Microsoft.IdentityModel.Logging": "6.24.0",
  1855. "System.Security.Cryptography.Cng": "4.5.0"
  1856. },
  1857. "compile": {
  1858. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  1859. "related": ".xml"
  1860. }
  1861. },
  1862. "runtime": {
  1863. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  1864. "related": ".xml"
  1865. }
  1866. }
  1867. },
  1868. "Microsoft.NET.StringTools/17.7.2": {
  1869. "type": "package",
  1870. "compile": {
  1871. "ref/net7.0/Microsoft.NET.StringTools.dll": {
  1872. "related": ".xml"
  1873. }
  1874. },
  1875. "runtime": {
  1876. "lib/net7.0/Microsoft.NET.StringTools.dll": {
  1877. "related": ".pdb;.xml"
  1878. }
  1879. }
  1880. },
  1881. "Microsoft.NETCore.Platforms/1.1.0": {
  1882. "type": "package",
  1883. "compile": {
  1884. "lib/netstandard1.0/_._": {}
  1885. },
  1886. "runtime": {
  1887. "lib/netstandard1.0/_._": {}
  1888. }
  1889. },
  1890. "Microsoft.NETCore.Targets/1.1.0": {
  1891. "type": "package",
  1892. "compile": {
  1893. "lib/netstandard1.0/_._": {}
  1894. },
  1895. "runtime": {
  1896. "lib/netstandard1.0/_._": {}
  1897. }
  1898. },
  1899. "Microsoft.SqlServer.Server/1.0.0": {
  1900. "type": "package",
  1901. "compile": {
  1902. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  1903. "related": ".pdb;.xml"
  1904. }
  1905. },
  1906. "runtime": {
  1907. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  1908. "related": ".pdb;.xml"
  1909. }
  1910. }
  1911. },
  1912. "Microsoft.VisualStudio.Web.CodeGeneration/8.0.0": {
  1913. "type": "package",
  1914. "dependencies": {
  1915. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  1916. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "8.0.0"
  1917. },
  1918. "compile": {
  1919. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1920. "related": ".xml"
  1921. }
  1922. },
  1923. "runtime": {
  1924. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1925. "related": ".xml"
  1926. }
  1927. }
  1928. },
  1929. "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.0": {
  1930. "type": "package",
  1931. "dependencies": {
  1932. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  1933. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "8.0.0",
  1934. "Newtonsoft.Json": "13.0.3"
  1935. },
  1936. "compile": {
  1937. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  1938. "related": ".xml"
  1939. }
  1940. },
  1941. "runtime": {
  1942. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  1943. "related": ".xml"
  1944. }
  1945. }
  1946. },
  1947. "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.0": {
  1948. "type": "package",
  1949. "dependencies": {
  1950. "Microsoft.DotNet.Scaffolding.Shared": "8.0.0",
  1951. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "8.0.0"
  1952. },
  1953. "compile": {
  1954. "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
  1955. "related": ".xml"
  1956. }
  1957. },
  1958. "runtime": {
  1959. "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
  1960. "related": ".xml"
  1961. }
  1962. }
  1963. },
  1964. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.0": {
  1965. "type": "package",
  1966. "dependencies": {
  1967. "Microsoft.DotNet.Scaffolding.Shared": "8.0.0",
  1968. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "8.0.0"
  1969. },
  1970. "compile": {
  1971. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  1972. "related": ".runtimeconfig.json;.xml"
  1973. }
  1974. },
  1975. "runtime": {
  1976. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  1977. "related": ".runtimeconfig.json;.xml"
  1978. }
  1979. }
  1980. },
  1981. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.0": {
  1982. "type": "package",
  1983. "dependencies": {
  1984. "Microsoft.AspNetCore.Razor.Language": "6.0.24",
  1985. "Microsoft.CodeAnalysis.CSharp": "4.8.0-3.final",
  1986. "Microsoft.CodeAnalysis.Razor": "6.0.24",
  1987. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "8.0.0"
  1988. },
  1989. "compile": {
  1990. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  1991. "related": ".xml"
  1992. }
  1993. },
  1994. "runtime": {
  1995. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  1996. "related": ".xml"
  1997. }
  1998. }
  1999. },
  2000. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.0": {
  2001. "type": "package",
  2002. "dependencies": {
  2003. "Microsoft.Build": "17.7.2",
  2004. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0-3.final",
  2005. "Microsoft.DotNet.Scaffolding.Shared": "8.0.0",
  2006. "Newtonsoft.Json": "13.0.3"
  2007. },
  2008. "compile": {
  2009. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  2010. "related": ".xml"
  2011. }
  2012. },
  2013. "runtime": {
  2014. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  2015. "related": ".xml"
  2016. }
  2017. }
  2018. },
  2019. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.0": {
  2020. "type": "package",
  2021. "dependencies": {
  2022. "Microsoft.DotNet.Scaffolding.Shared": "8.0.0",
  2023. "Microsoft.VisualStudio.Web.CodeGeneration": "8.0.0"
  2024. },
  2025. "compile": {
  2026. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  2027. "related": ".xml"
  2028. }
  2029. },
  2030. "runtime": {
  2031. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  2032. "related": ".xml"
  2033. }
  2034. }
  2035. },
  2036. "Microsoft.Win32.SystemEvents/7.0.0": {
  2037. "type": "package",
  2038. "compile": {
  2039. "lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  2040. "related": ".xml"
  2041. }
  2042. },
  2043. "runtime": {
  2044. "lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  2045. "related": ".xml"
  2046. }
  2047. },
  2048. "build": {
  2049. "buildTransitive/net6.0/_._": {}
  2050. },
  2051. "runtimeTargets": {
  2052. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  2053. "assetType": "runtime",
  2054. "rid": "win"
  2055. }
  2056. }
  2057. },
  2058. "Mono.TextTemplating/2.3.1": {
  2059. "type": "package",
  2060. "dependencies": {
  2061. "System.CodeDom": "5.0.0"
  2062. },
  2063. "compile": {
  2064. "lib/netcoreapp3.1/Mono.TextTemplating.dll": {}
  2065. },
  2066. "runtime": {
  2067. "lib/netcoreapp3.1/Mono.TextTemplating.dll": {}
  2068. }
  2069. },
  2070. "Newtonsoft.Json/13.0.3": {
  2071. "type": "package",
  2072. "compile": {
  2073. "lib/net6.0/Newtonsoft.Json.dll": {
  2074. "related": ".xml"
  2075. }
  2076. },
  2077. "runtime": {
  2078. "lib/net6.0/Newtonsoft.Json.dll": {
  2079. "related": ".xml"
  2080. }
  2081. }
  2082. },
  2083. "NuGet.Common/6.3.1": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "NuGet.Frameworks": "6.3.1"
  2087. },
  2088. "compile": {
  2089. "lib/netstandard2.0/NuGet.Common.dll": {
  2090. "related": ".xml"
  2091. }
  2092. },
  2093. "runtime": {
  2094. "lib/netstandard2.0/NuGet.Common.dll": {
  2095. "related": ".xml"
  2096. }
  2097. }
  2098. },
  2099. "NuGet.Configuration/6.3.1": {
  2100. "type": "package",
  2101. "dependencies": {
  2102. "NuGet.Common": "6.3.1",
  2103. "System.Security.Cryptography.ProtectedData": "4.4.0"
  2104. },
  2105. "compile": {
  2106. "lib/netstandard2.0/NuGet.Configuration.dll": {
  2107. "related": ".xml"
  2108. }
  2109. },
  2110. "runtime": {
  2111. "lib/netstandard2.0/NuGet.Configuration.dll": {
  2112. "related": ".xml"
  2113. }
  2114. }
  2115. },
  2116. "NuGet.DependencyResolver.Core/6.3.1": {
  2117. "type": "package",
  2118. "dependencies": {
  2119. "NuGet.Configuration": "6.3.1",
  2120. "NuGet.LibraryModel": "6.3.1",
  2121. "NuGet.Protocol": "6.3.1"
  2122. },
  2123. "compile": {
  2124. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
  2125. "related": ".xml"
  2126. }
  2127. },
  2128. "runtime": {
  2129. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
  2130. "related": ".xml"
  2131. }
  2132. }
  2133. },
  2134. "NuGet.Frameworks/6.3.1": {
  2135. "type": "package",
  2136. "compile": {
  2137. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  2138. "related": ".xml"
  2139. }
  2140. },
  2141. "runtime": {
  2142. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  2143. "related": ".xml"
  2144. }
  2145. }
  2146. },
  2147. "NuGet.LibraryModel/6.3.1": {
  2148. "type": "package",
  2149. "dependencies": {
  2150. "NuGet.Common": "6.3.1",
  2151. "NuGet.Versioning": "6.3.1"
  2152. },
  2153. "compile": {
  2154. "lib/netstandard2.0/NuGet.LibraryModel.dll": {
  2155. "related": ".xml"
  2156. }
  2157. },
  2158. "runtime": {
  2159. "lib/netstandard2.0/NuGet.LibraryModel.dll": {
  2160. "related": ".xml"
  2161. }
  2162. }
  2163. },
  2164. "NuGet.Packaging/6.3.1": {
  2165. "type": "package",
  2166. "dependencies": {
  2167. "Newtonsoft.Json": "13.0.1",
  2168. "NuGet.Configuration": "6.3.1",
  2169. "NuGet.Versioning": "6.3.1",
  2170. "System.Security.Cryptography.Cng": "5.0.0",
  2171. "System.Security.Cryptography.Pkcs": "5.0.0"
  2172. },
  2173. "compile": {
  2174. "lib/net5.0/NuGet.Packaging.dll": {
  2175. "related": ".xml"
  2176. }
  2177. },
  2178. "runtime": {
  2179. "lib/net5.0/NuGet.Packaging.dll": {
  2180. "related": ".xml"
  2181. }
  2182. }
  2183. },
  2184. "NuGet.ProjectModel/6.3.1": {
  2185. "type": "package",
  2186. "dependencies": {
  2187. "NuGet.DependencyResolver.Core": "6.3.1"
  2188. },
  2189. "compile": {
  2190. "lib/net5.0/NuGet.ProjectModel.dll": {
  2191. "related": ".xml"
  2192. }
  2193. },
  2194. "runtime": {
  2195. "lib/net5.0/NuGet.ProjectModel.dll": {
  2196. "related": ".xml"
  2197. }
  2198. }
  2199. },
  2200. "NuGet.Protocol/6.3.1": {
  2201. "type": "package",
  2202. "dependencies": {
  2203. "NuGet.Packaging": "6.3.1"
  2204. },
  2205. "compile": {
  2206. "lib/net5.0/NuGet.Protocol.dll": {
  2207. "related": ".xml"
  2208. }
  2209. },
  2210. "runtime": {
  2211. "lib/net5.0/NuGet.Protocol.dll": {
  2212. "related": ".xml"
  2213. }
  2214. }
  2215. },
  2216. "NuGet.Versioning/6.3.1": {
  2217. "type": "package",
  2218. "compile": {
  2219. "lib/netstandard2.0/NuGet.Versioning.dll": {
  2220. "related": ".xml"
  2221. }
  2222. },
  2223. "runtime": {
  2224. "lib/netstandard2.0/NuGet.Versioning.dll": {
  2225. "related": ".xml"
  2226. }
  2227. }
  2228. },
  2229. "System.CodeDom/8.0.0": {
  2230. "type": "package",
  2231. "compile": {
  2232. "lib/net8.0/System.CodeDom.dll": {
  2233. "related": ".xml"
  2234. }
  2235. },
  2236. "runtime": {
  2237. "lib/net8.0/System.CodeDom.dll": {
  2238. "related": ".xml"
  2239. }
  2240. },
  2241. "build": {
  2242. "buildTransitive/net6.0/_._": {}
  2243. }
  2244. },
  2245. "System.Collections.Immutable/7.0.0": {
  2246. "type": "package",
  2247. "compile": {
  2248. "lib/net7.0/System.Collections.Immutable.dll": {
  2249. "related": ".xml"
  2250. }
  2251. },
  2252. "runtime": {
  2253. "lib/net7.0/System.Collections.Immutable.dll": {
  2254. "related": ".xml"
  2255. }
  2256. },
  2257. "build": {
  2258. "buildTransitive/net6.0/_._": {}
  2259. }
  2260. },
  2261. "System.Composition/7.0.0": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "System.Composition.AttributedModel": "7.0.0",
  2265. "System.Composition.Convention": "7.0.0",
  2266. "System.Composition.Hosting": "7.0.0",
  2267. "System.Composition.Runtime": "7.0.0",
  2268. "System.Composition.TypedParts": "7.0.0"
  2269. },
  2270. "compile": {
  2271. "lib/netcoreapp2.0/_._": {}
  2272. },
  2273. "runtime": {
  2274. "lib/netcoreapp2.0/_._": {}
  2275. },
  2276. "build": {
  2277. "buildTransitive/net6.0/_._": {}
  2278. }
  2279. },
  2280. "System.Composition.AttributedModel/7.0.0": {
  2281. "type": "package",
  2282. "compile": {
  2283. "lib/net7.0/System.Composition.AttributedModel.dll": {
  2284. "related": ".xml"
  2285. }
  2286. },
  2287. "runtime": {
  2288. "lib/net7.0/System.Composition.AttributedModel.dll": {
  2289. "related": ".xml"
  2290. }
  2291. },
  2292. "build": {
  2293. "buildTransitive/net6.0/_._": {}
  2294. }
  2295. },
  2296. "System.Composition.Convention/7.0.0": {
  2297. "type": "package",
  2298. "dependencies": {
  2299. "System.Composition.AttributedModel": "7.0.0"
  2300. },
  2301. "compile": {
  2302. "lib/net7.0/System.Composition.Convention.dll": {
  2303. "related": ".xml"
  2304. }
  2305. },
  2306. "runtime": {
  2307. "lib/net7.0/System.Composition.Convention.dll": {
  2308. "related": ".xml"
  2309. }
  2310. },
  2311. "build": {
  2312. "buildTransitive/net6.0/_._": {}
  2313. }
  2314. },
  2315. "System.Composition.Hosting/7.0.0": {
  2316. "type": "package",
  2317. "dependencies": {
  2318. "System.Composition.Runtime": "7.0.0"
  2319. },
  2320. "compile": {
  2321. "lib/net7.0/System.Composition.Hosting.dll": {
  2322. "related": ".xml"
  2323. }
  2324. },
  2325. "runtime": {
  2326. "lib/net7.0/System.Composition.Hosting.dll": {
  2327. "related": ".xml"
  2328. }
  2329. },
  2330. "build": {
  2331. "buildTransitive/net6.0/_._": {}
  2332. }
  2333. },
  2334. "System.Composition.Runtime/7.0.0": {
  2335. "type": "package",
  2336. "compile": {
  2337. "lib/net7.0/System.Composition.Runtime.dll": {
  2338. "related": ".xml"
  2339. }
  2340. },
  2341. "runtime": {
  2342. "lib/net7.0/System.Composition.Runtime.dll": {
  2343. "related": ".xml"
  2344. }
  2345. },
  2346. "build": {
  2347. "buildTransitive/net6.0/_._": {}
  2348. }
  2349. },
  2350. "System.Composition.TypedParts/7.0.0": {
  2351. "type": "package",
  2352. "dependencies": {
  2353. "System.Composition.AttributedModel": "7.0.0",
  2354. "System.Composition.Hosting": "7.0.0",
  2355. "System.Composition.Runtime": "7.0.0"
  2356. },
  2357. "compile": {
  2358. "lib/net7.0/System.Composition.TypedParts.dll": {
  2359. "related": ".xml"
  2360. }
  2361. },
  2362. "runtime": {
  2363. "lib/net7.0/System.Composition.TypedParts.dll": {
  2364. "related": ".xml"
  2365. }
  2366. },
  2367. "build": {
  2368. "buildTransitive/net6.0/_._": {}
  2369. }
  2370. },
  2371. "System.Configuration.ConfigurationManager/7.0.0": {
  2372. "type": "package",
  2373. "dependencies": {
  2374. "System.Diagnostics.EventLog": "7.0.0",
  2375. "System.Security.Cryptography.ProtectedData": "7.0.0",
  2376. "System.Security.Permissions": "7.0.0"
  2377. },
  2378. "compile": {
  2379. "lib/net7.0/System.Configuration.ConfigurationManager.dll": {
  2380. "related": ".xml"
  2381. }
  2382. },
  2383. "runtime": {
  2384. "lib/net7.0/System.Configuration.ConfigurationManager.dll": {
  2385. "related": ".xml"
  2386. }
  2387. },
  2388. "build": {
  2389. "buildTransitive/net6.0/_._": {}
  2390. }
  2391. },
  2392. "System.Data.DataSetExtensions/4.5.0": {
  2393. "type": "package",
  2394. "compile": {
  2395. "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {}
  2396. },
  2397. "runtime": {
  2398. "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {}
  2399. }
  2400. },
  2401. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2402. "type": "package",
  2403. "dependencies": {
  2404. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2405. },
  2406. "compile": {
  2407. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2408. "related": ".xml"
  2409. }
  2410. },
  2411. "runtime": {
  2412. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2413. "related": ".xml"
  2414. }
  2415. },
  2416. "build": {
  2417. "buildTransitive/netcoreapp3.1/_._": {}
  2418. }
  2419. },
  2420. "System.Diagnostics.EventLog/7.0.0": {
  2421. "type": "package",
  2422. "compile": {
  2423. "lib/net7.0/System.Diagnostics.EventLog.dll": {
  2424. "related": ".xml"
  2425. }
  2426. },
  2427. "runtime": {
  2428. "lib/net7.0/System.Diagnostics.EventLog.dll": {
  2429. "related": ".xml"
  2430. }
  2431. },
  2432. "build": {
  2433. "buildTransitive/net6.0/_._": {}
  2434. },
  2435. "runtimeTargets": {
  2436. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": {
  2437. "assetType": "runtime",
  2438. "rid": "win"
  2439. },
  2440. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": {
  2441. "assetType": "runtime",
  2442. "rid": "win"
  2443. }
  2444. }
  2445. },
  2446. "System.Drawing.Common/7.0.0": {
  2447. "type": "package",
  2448. "dependencies": {
  2449. "Microsoft.Win32.SystemEvents": "7.0.0"
  2450. },
  2451. "compile": {
  2452. "lib/net7.0/System.Drawing.Common.dll": {
  2453. "related": ".xml"
  2454. }
  2455. },
  2456. "runtime": {
  2457. "lib/net7.0/System.Drawing.Common.dll": {
  2458. "related": ".xml"
  2459. }
  2460. },
  2461. "build": {
  2462. "buildTransitive/net6.0/_._": {}
  2463. },
  2464. "runtimeTargets": {
  2465. "runtimes/win/lib/net7.0/System.Drawing.Common.dll": {
  2466. "assetType": "runtime",
  2467. "rid": "win"
  2468. }
  2469. }
  2470. },
  2471. "System.Formats.Asn1/5.0.0": {
  2472. "type": "package",
  2473. "compile": {
  2474. "lib/netstandard2.0/_._": {
  2475. "related": ".xml"
  2476. }
  2477. },
  2478. "runtime": {
  2479. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2480. "related": ".xml"
  2481. }
  2482. }
  2483. },
  2484. "System.IdentityModel.Tokens.Jwt/6.24.0": {
  2485. "type": "package",
  2486. "dependencies": {
  2487. "Microsoft.IdentityModel.JsonWebTokens": "6.24.0",
  2488. "Microsoft.IdentityModel.Tokens": "6.24.0"
  2489. },
  2490. "compile": {
  2491. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  2492. "related": ".xml"
  2493. }
  2494. },
  2495. "runtime": {
  2496. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  2497. "related": ".xml"
  2498. }
  2499. }
  2500. },
  2501. "System.IO.Pipelines/7.0.0": {
  2502. "type": "package",
  2503. "compile": {
  2504. "lib/net7.0/System.IO.Pipelines.dll": {
  2505. "related": ".xml"
  2506. }
  2507. },
  2508. "runtime": {
  2509. "lib/net7.0/System.IO.Pipelines.dll": {
  2510. "related": ".xml"
  2511. }
  2512. },
  2513. "build": {
  2514. "buildTransitive/net6.0/_._": {}
  2515. }
  2516. },
  2517. "System.Management/8.0.0": {
  2518. "type": "package",
  2519. "dependencies": {
  2520. "System.CodeDom": "8.0.0"
  2521. },
  2522. "compile": {
  2523. "lib/net8.0/System.Management.dll": {
  2524. "related": ".xml"
  2525. }
  2526. },
  2527. "runtime": {
  2528. "lib/net8.0/System.Management.dll": {
  2529. "related": ".xml"
  2530. }
  2531. },
  2532. "build": {
  2533. "buildTransitive/net6.0/_._": {}
  2534. },
  2535. "runtimeTargets": {
  2536. "runtimes/win/lib/net8.0/System.Management.dll": {
  2537. "assetType": "runtime",
  2538. "rid": "win"
  2539. }
  2540. }
  2541. },
  2542. "System.Memory/4.5.4": {
  2543. "type": "package",
  2544. "compile": {
  2545. "ref/netcoreapp2.1/_._": {}
  2546. },
  2547. "runtime": {
  2548. "lib/netcoreapp2.1/_._": {}
  2549. }
  2550. },
  2551. "System.Memory.Data/1.0.2": {
  2552. "type": "package",
  2553. "dependencies": {
  2554. "System.Text.Encodings.Web": "4.7.2",
  2555. "System.Text.Json": "4.6.0"
  2556. },
  2557. "compile": {
  2558. "lib/netstandard2.0/System.Memory.Data.dll": {
  2559. "related": ".xml"
  2560. }
  2561. },
  2562. "runtime": {
  2563. "lib/netstandard2.0/System.Memory.Data.dll": {
  2564. "related": ".xml"
  2565. }
  2566. }
  2567. },
  2568. "System.Numerics.Vectors/4.5.0": {
  2569. "type": "package",
  2570. "compile": {
  2571. "ref/netcoreapp2.0/_._": {}
  2572. },
  2573. "runtime": {
  2574. "lib/netcoreapp2.0/_._": {}
  2575. }
  2576. },
  2577. "System.Reflection.Metadata/7.0.0": {
  2578. "type": "package",
  2579. "dependencies": {
  2580. "System.Collections.Immutable": "7.0.0"
  2581. },
  2582. "compile": {
  2583. "lib/net7.0/System.Reflection.Metadata.dll": {
  2584. "related": ".xml"
  2585. }
  2586. },
  2587. "runtime": {
  2588. "lib/net7.0/System.Reflection.Metadata.dll": {
  2589. "related": ".xml"
  2590. }
  2591. },
  2592. "build": {
  2593. "buildTransitive/net6.0/_._": {}
  2594. }
  2595. },
  2596. "System.Reflection.MetadataLoadContext/7.0.0": {
  2597. "type": "package",
  2598. "dependencies": {
  2599. "System.Collections.Immutable": "7.0.0",
  2600. "System.Reflection.Metadata": "7.0.0"
  2601. },
  2602. "compile": {
  2603. "lib/net7.0/System.Reflection.MetadataLoadContext.dll": {
  2604. "related": ".xml"
  2605. }
  2606. },
  2607. "runtime": {
  2608. "lib/net7.0/System.Reflection.MetadataLoadContext.dll": {
  2609. "related": ".xml"
  2610. }
  2611. },
  2612. "build": {
  2613. "buildTransitive/net6.0/_._": {}
  2614. }
  2615. },
  2616. "System.Runtime/4.3.0": {
  2617. "type": "package",
  2618. "dependencies": {
  2619. "Microsoft.NETCore.Platforms": "1.1.0",
  2620. "Microsoft.NETCore.Targets": "1.1.0"
  2621. },
  2622. "compile": {
  2623. "ref/netstandard1.5/System.Runtime.dll": {
  2624. "related": ".xml"
  2625. }
  2626. }
  2627. },
  2628. "System.Runtime.Caching/6.0.0": {
  2629. "type": "package",
  2630. "dependencies": {
  2631. "System.Configuration.ConfigurationManager": "6.0.0"
  2632. },
  2633. "compile": {
  2634. "lib/net6.0/_._": {
  2635. "related": ".xml"
  2636. }
  2637. },
  2638. "runtime": {
  2639. "lib/net6.0/System.Runtime.Caching.dll": {
  2640. "related": ".xml"
  2641. }
  2642. },
  2643. "build": {
  2644. "buildTransitive/netcoreapp3.1/_._": {}
  2645. },
  2646. "runtimeTargets": {
  2647. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  2648. "assetType": "runtime",
  2649. "rid": "win"
  2650. }
  2651. }
  2652. },
  2653. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2654. "type": "package",
  2655. "compile": {
  2656. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2657. "related": ".xml"
  2658. }
  2659. },
  2660. "runtime": {
  2661. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2662. "related": ".xml"
  2663. }
  2664. },
  2665. "build": {
  2666. "buildTransitive/netcoreapp3.1/_._": {}
  2667. }
  2668. },
  2669. "System.Security.Cryptography.Cng/5.0.0": {
  2670. "type": "package",
  2671. "dependencies": {
  2672. "System.Formats.Asn1": "5.0.0"
  2673. },
  2674. "compile": {
  2675. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2676. "related": ".xml"
  2677. }
  2678. },
  2679. "runtime": {
  2680. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2681. "related": ".xml"
  2682. }
  2683. },
  2684. "runtimeTargets": {
  2685. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2686. "assetType": "runtime",
  2687. "rid": "win"
  2688. }
  2689. }
  2690. },
  2691. "System.Security.Cryptography.Pkcs/5.0.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "System.Formats.Asn1": "5.0.0",
  2695. "System.Security.Cryptography.Cng": "5.0.0"
  2696. },
  2697. "compile": {
  2698. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2699. "related": ".xml"
  2700. }
  2701. },
  2702. "runtime": {
  2703. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2704. "related": ".xml"
  2705. }
  2706. },
  2707. "runtimeTargets": {
  2708. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2709. "assetType": "runtime",
  2710. "rid": "win"
  2711. }
  2712. }
  2713. },
  2714. "System.Security.Cryptography.ProtectedData/7.0.0": {
  2715. "type": "package",
  2716. "compile": {
  2717. "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
  2718. "related": ".xml"
  2719. }
  2720. },
  2721. "runtime": {
  2722. "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
  2723. "related": ".xml"
  2724. }
  2725. },
  2726. "build": {
  2727. "buildTransitive/net6.0/_._": {}
  2728. },
  2729. "runtimeTargets": {
  2730. "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
  2731. "assetType": "runtime",
  2732. "rid": "win"
  2733. }
  2734. }
  2735. },
  2736. "System.Security.Permissions/7.0.0": {
  2737. "type": "package",
  2738. "dependencies": {
  2739. "System.Windows.Extensions": "7.0.0"
  2740. },
  2741. "compile": {
  2742. "lib/net7.0/System.Security.Permissions.dll": {
  2743. "related": ".xml"
  2744. }
  2745. },
  2746. "runtime": {
  2747. "lib/net7.0/System.Security.Permissions.dll": {
  2748. "related": ".xml"
  2749. }
  2750. },
  2751. "build": {
  2752. "buildTransitive/net6.0/_._": {}
  2753. }
  2754. },
  2755. "System.Security.Principal.Windows/5.0.0": {
  2756. "type": "package",
  2757. "compile": {
  2758. "ref/netcoreapp3.0/_._": {
  2759. "related": ".xml"
  2760. }
  2761. },
  2762. "runtime": {
  2763. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2764. "related": ".xml"
  2765. }
  2766. },
  2767. "runtimeTargets": {
  2768. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2769. "assetType": "runtime",
  2770. "rid": "unix"
  2771. },
  2772. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2773. "assetType": "runtime",
  2774. "rid": "win"
  2775. }
  2776. }
  2777. },
  2778. "System.Text.Encoding/4.3.0": {
  2779. "type": "package",
  2780. "dependencies": {
  2781. "Microsoft.NETCore.Platforms": "1.1.0",
  2782. "Microsoft.NETCore.Targets": "1.1.0",
  2783. "System.Runtime": "4.3.0"
  2784. },
  2785. "compile": {
  2786. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2787. "related": ".xml"
  2788. }
  2789. }
  2790. },
  2791. "System.Text.Encoding.CodePages/6.0.0": {
  2792. "type": "package",
  2793. "dependencies": {
  2794. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2795. },
  2796. "compile": {
  2797. "lib/net6.0/_._": {
  2798. "related": ".xml"
  2799. }
  2800. },
  2801. "runtime": {
  2802. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  2803. "related": ".xml"
  2804. }
  2805. },
  2806. "build": {
  2807. "buildTransitive/netcoreapp3.1/_._": {}
  2808. },
  2809. "runtimeTargets": {
  2810. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
  2811. "assetType": "runtime",
  2812. "rid": "win"
  2813. }
  2814. }
  2815. },
  2816. "System.Text.Encodings.Web/8.0.0": {
  2817. "type": "package",
  2818. "compile": {
  2819. "lib/net8.0/System.Text.Encodings.Web.dll": {
  2820. "related": ".xml"
  2821. }
  2822. },
  2823. "runtime": {
  2824. "lib/net8.0/System.Text.Encodings.Web.dll": {
  2825. "related": ".xml"
  2826. }
  2827. },
  2828. "build": {
  2829. "buildTransitive/net6.0/_._": {}
  2830. },
  2831. "runtimeTargets": {
  2832. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
  2833. "assetType": "runtime",
  2834. "rid": "browser"
  2835. }
  2836. }
  2837. },
  2838. "System.Text.Json/8.0.0": {
  2839. "type": "package",
  2840. "dependencies": {
  2841. "System.Text.Encodings.Web": "8.0.0"
  2842. },
  2843. "compile": {
  2844. "lib/net8.0/System.Text.Json.dll": {
  2845. "related": ".xml"
  2846. }
  2847. },
  2848. "runtime": {
  2849. "lib/net8.0/System.Text.Json.dll": {
  2850. "related": ".xml"
  2851. }
  2852. },
  2853. "build": {
  2854. "buildTransitive/net6.0/System.Text.Json.targets": {}
  2855. }
  2856. },
  2857. "System.Threading.Channels/7.0.0": {
  2858. "type": "package",
  2859. "compile": {
  2860. "lib/net7.0/System.Threading.Channels.dll": {
  2861. "related": ".xml"
  2862. }
  2863. },
  2864. "runtime": {
  2865. "lib/net7.0/System.Threading.Channels.dll": {
  2866. "related": ".xml"
  2867. }
  2868. },
  2869. "build": {
  2870. "buildTransitive/net6.0/_._": {}
  2871. }
  2872. },
  2873. "System.Threading.Tasks.Dataflow/7.0.0": {
  2874. "type": "package",
  2875. "compile": {
  2876. "lib/net7.0/System.Threading.Tasks.Dataflow.dll": {
  2877. "related": ".xml"
  2878. }
  2879. },
  2880. "runtime": {
  2881. "lib/net7.0/System.Threading.Tasks.Dataflow.dll": {
  2882. "related": ".xml"
  2883. }
  2884. },
  2885. "build": {
  2886. "buildTransitive/net6.0/_._": {}
  2887. }
  2888. },
  2889. "System.Threading.Tasks.Extensions/4.5.4": {
  2890. "type": "package",
  2891. "compile": {
  2892. "ref/netcoreapp2.1/_._": {}
  2893. },
  2894. "runtime": {
  2895. "lib/netcoreapp2.1/_._": {}
  2896. }
  2897. },
  2898. "System.Windows.Extensions/7.0.0": {
  2899. "type": "package",
  2900. "dependencies": {
  2901. "System.Drawing.Common": "7.0.0"
  2902. },
  2903. "compile": {
  2904. "lib/net7.0/System.Windows.Extensions.dll": {
  2905. "related": ".xml"
  2906. }
  2907. },
  2908. "runtime": {
  2909. "lib/net7.0/System.Windows.Extensions.dll": {
  2910. "related": ".xml"
  2911. }
  2912. },
  2913. "runtimeTargets": {
  2914. "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": {
  2915. "assetType": "runtime",
  2916. "rid": "win"
  2917. }
  2918. }
  2919. }
  2920. }
  2921. },
  2922. "libraries": {
  2923. "Azure.Core/1.25.0": {
  2924. "sha512": "X8Dd4sAggS84KScWIjEbFAdt2U1KDolQopTPoHVubG2y3CM54f9l6asVrP5Uy384NWXjsspPYaJgz5xHc+KvTA==",
  2925. "type": "package",
  2926. "path": "azure.core/1.25.0",
  2927. "files": [
  2928. ".nupkg.metadata",
  2929. ".signature.p7s",
  2930. "CHANGELOG.md",
  2931. "README.md",
  2932. "azure.core.1.25.0.nupkg.sha512",
  2933. "azure.core.nuspec",
  2934. "azureicon.png",
  2935. "lib/net461/Azure.Core.dll",
  2936. "lib/net461/Azure.Core.xml",
  2937. "lib/net5.0/Azure.Core.dll",
  2938. "lib/net5.0/Azure.Core.xml",
  2939. "lib/netcoreapp2.1/Azure.Core.dll",
  2940. "lib/netcoreapp2.1/Azure.Core.xml",
  2941. "lib/netstandard2.0/Azure.Core.dll",
  2942. "lib/netstandard2.0/Azure.Core.xml"
  2943. ]
  2944. },
  2945. "Azure.Identity/1.7.0": {
  2946. "sha512": "eHEiCO/8+MfNc9nH5dVew/+FvxdaGrkRL4OMNwIz0W79+wtJyEoeRlXJ3SrXhoy9XR58geBYKmzMR83VO7bcAw==",
  2947. "type": "package",
  2948. "path": "azure.identity/1.7.0",
  2949. "files": [
  2950. ".nupkg.metadata",
  2951. ".signature.p7s",
  2952. "CHANGELOG.md",
  2953. "README.md",
  2954. "azure.identity.1.7.0.nupkg.sha512",
  2955. "azure.identity.nuspec",
  2956. "azureicon.png",
  2957. "lib/netstandard2.0/Azure.Identity.dll",
  2958. "lib/netstandard2.0/Azure.Identity.xml"
  2959. ]
  2960. },
  2961. "BuildWebCompiler/1.12.405": {
  2962. "sha512": "1l1RK0jV+5QjJM22J5IGHm/EFaB3JN0WorKnLLP6HRnnf5H4sU4IBdBnMwN1OrVmww/3ir8fhbV0ZNGX6Uqn5w==",
  2963. "type": "package",
  2964. "path": "buildwebcompiler/1.12.405",
  2965. "hasTools": true,
  2966. "files": [
  2967. ".nupkg.metadata",
  2968. ".signature.p7s",
  2969. "build/BuildWebCompiler.targets",
  2970. "buildwebcompiler.1.12.405.nupkg.sha512",
  2971. "buildwebcompiler.nuspec",
  2972. "tools/net46/NUglify.dll",
  2973. "tools/net46/Newtonsoft.Json.dll",
  2974. "tools/net46/WebCompiler.exe",
  2975. "tools/netcoreapp2.0/NUglify.dll",
  2976. "tools/netcoreapp2.0/Newtonsoft.Json.dll",
  2977. "tools/netcoreapp2.0/WebCompiler.dll",
  2978. "tools/netcoreapp2.0/WebCompiler.runtimeconfig.json",
  2979. "tools/netstandard2.0/NUglify.dll",
  2980. "tools/netstandard2.0/Newtonsoft.Json.dll",
  2981. "tools/netstandard2.0/WebCompiler.dll"
  2982. ]
  2983. },
  2984. "Humanizer/2.14.1": {
  2985. "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
  2986. "type": "package",
  2987. "path": "humanizer/2.14.1",
  2988. "files": [
  2989. ".nupkg.metadata",
  2990. ".signature.p7s",
  2991. "humanizer.2.14.1.nupkg.sha512",
  2992. "humanizer.nuspec",
  2993. "logo.png"
  2994. ]
  2995. },
  2996. "Humanizer.Core/2.14.1": {
  2997. "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
  2998. "type": "package",
  2999. "path": "humanizer.core/2.14.1",
  3000. "files": [
  3001. ".nupkg.metadata",
  3002. ".signature.p7s",
  3003. "humanizer.core.2.14.1.nupkg.sha512",
  3004. "humanizer.core.nuspec",
  3005. "lib/net6.0/Humanizer.dll",
  3006. "lib/net6.0/Humanizer.xml",
  3007. "lib/netstandard1.0/Humanizer.dll",
  3008. "lib/netstandard1.0/Humanizer.xml",
  3009. "lib/netstandard2.0/Humanizer.dll",
  3010. "lib/netstandard2.0/Humanizer.xml",
  3011. "logo.png"
  3012. ]
  3013. },
  3014. "Humanizer.Core.af/2.14.1": {
  3015. "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
  3016. "type": "package",
  3017. "path": "humanizer.core.af/2.14.1",
  3018. "files": [
  3019. ".nupkg.metadata",
  3020. ".signature.p7s",
  3021. "humanizer.core.af.2.14.1.nupkg.sha512",
  3022. "humanizer.core.af.nuspec",
  3023. "lib/net6.0/af/Humanizer.resources.dll",
  3024. "lib/netstandard1.0/af/Humanizer.resources.dll",
  3025. "lib/netstandard2.0/af/Humanizer.resources.dll",
  3026. "logo.png"
  3027. ]
  3028. },
  3029. "Humanizer.Core.ar/2.14.1": {
  3030. "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
  3031. "type": "package",
  3032. "path": "humanizer.core.ar/2.14.1",
  3033. "files": [
  3034. ".nupkg.metadata",
  3035. ".signature.p7s",
  3036. "humanizer.core.ar.2.14.1.nupkg.sha512",
  3037. "humanizer.core.ar.nuspec",
  3038. "lib/net6.0/ar/Humanizer.resources.dll",
  3039. "lib/netstandard1.0/ar/Humanizer.resources.dll",
  3040. "lib/netstandard2.0/ar/Humanizer.resources.dll",
  3041. "logo.png"
  3042. ]
  3043. },
  3044. "Humanizer.Core.az/2.14.1": {
  3045. "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
  3046. "type": "package",
  3047. "path": "humanizer.core.az/2.14.1",
  3048. "files": [
  3049. ".nupkg.metadata",
  3050. ".signature.p7s",
  3051. "humanizer.core.az.2.14.1.nupkg.sha512",
  3052. "humanizer.core.az.nuspec",
  3053. "lib/net6.0/az/Humanizer.resources.dll",
  3054. "lib/netstandard1.0/az/Humanizer.resources.dll",
  3055. "lib/netstandard2.0/az/Humanizer.resources.dll",
  3056. "logo.png"
  3057. ]
  3058. },
  3059. "Humanizer.Core.bg/2.14.1": {
  3060. "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
  3061. "type": "package",
  3062. "path": "humanizer.core.bg/2.14.1",
  3063. "files": [
  3064. ".nupkg.metadata",
  3065. ".signature.p7s",
  3066. "humanizer.core.bg.2.14.1.nupkg.sha512",
  3067. "humanizer.core.bg.nuspec",
  3068. "lib/net6.0/bg/Humanizer.resources.dll",
  3069. "lib/netstandard1.0/bg/Humanizer.resources.dll",
  3070. "lib/netstandard2.0/bg/Humanizer.resources.dll",
  3071. "logo.png"
  3072. ]
  3073. },
  3074. "Humanizer.Core.bn-BD/2.14.1": {
  3075. "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
  3076. "type": "package",
  3077. "path": "humanizer.core.bn-bd/2.14.1",
  3078. "files": [
  3079. ".nupkg.metadata",
  3080. ".signature.p7s",
  3081. "humanizer.core.bn-bd.2.14.1.nupkg.sha512",
  3082. "humanizer.core.bn-bd.nuspec",
  3083. "lib/net6.0/bn-BD/Humanizer.resources.dll",
  3084. "lib/netstandard1.0/bn-BD/Humanizer.resources.dll",
  3085. "lib/netstandard2.0/bn-BD/Humanizer.resources.dll",
  3086. "logo.png"
  3087. ]
  3088. },
  3089. "Humanizer.Core.cs/2.14.1": {
  3090. "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
  3091. "type": "package",
  3092. "path": "humanizer.core.cs/2.14.1",
  3093. "files": [
  3094. ".nupkg.metadata",
  3095. ".signature.p7s",
  3096. "humanizer.core.cs.2.14.1.nupkg.sha512",
  3097. "humanizer.core.cs.nuspec",
  3098. "lib/net6.0/cs/Humanizer.resources.dll",
  3099. "lib/netstandard1.0/cs/Humanizer.resources.dll",
  3100. "lib/netstandard2.0/cs/Humanizer.resources.dll",
  3101. "logo.png"
  3102. ]
  3103. },
  3104. "Humanizer.Core.da/2.14.1": {
  3105. "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
  3106. "type": "package",
  3107. "path": "humanizer.core.da/2.14.1",
  3108. "files": [
  3109. ".nupkg.metadata",
  3110. ".signature.p7s",
  3111. "humanizer.core.da.2.14.1.nupkg.sha512",
  3112. "humanizer.core.da.nuspec",
  3113. "lib/net6.0/da/Humanizer.resources.dll",
  3114. "lib/netstandard1.0/da/Humanizer.resources.dll",
  3115. "lib/netstandard2.0/da/Humanizer.resources.dll",
  3116. "logo.png"
  3117. ]
  3118. },
  3119. "Humanizer.Core.de/2.14.1": {
  3120. "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
  3121. "type": "package",
  3122. "path": "humanizer.core.de/2.14.1",
  3123. "files": [
  3124. ".nupkg.metadata",
  3125. ".signature.p7s",
  3126. "humanizer.core.de.2.14.1.nupkg.sha512",
  3127. "humanizer.core.de.nuspec",
  3128. "lib/net6.0/de/Humanizer.resources.dll",
  3129. "lib/netstandard1.0/de/Humanizer.resources.dll",
  3130. "lib/netstandard2.0/de/Humanizer.resources.dll",
  3131. "logo.png"
  3132. ]
  3133. },
  3134. "Humanizer.Core.el/2.14.1": {
  3135. "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
  3136. "type": "package",
  3137. "path": "humanizer.core.el/2.14.1",
  3138. "files": [
  3139. ".nupkg.metadata",
  3140. ".signature.p7s",
  3141. "humanizer.core.el.2.14.1.nupkg.sha512",
  3142. "humanizer.core.el.nuspec",
  3143. "lib/net6.0/el/Humanizer.resources.dll",
  3144. "lib/netstandard1.0/el/Humanizer.resources.dll",
  3145. "lib/netstandard2.0/el/Humanizer.resources.dll",
  3146. "logo.png"
  3147. ]
  3148. },
  3149. "Humanizer.Core.es/2.14.1": {
  3150. "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
  3151. "type": "package",
  3152. "path": "humanizer.core.es/2.14.1",
  3153. "files": [
  3154. ".nupkg.metadata",
  3155. ".signature.p7s",
  3156. "humanizer.core.es.2.14.1.nupkg.sha512",
  3157. "humanizer.core.es.nuspec",
  3158. "lib/net6.0/es/Humanizer.resources.dll",
  3159. "lib/netstandard1.0/es/Humanizer.resources.dll",
  3160. "lib/netstandard2.0/es/Humanizer.resources.dll",
  3161. "logo.png"
  3162. ]
  3163. },
  3164. "Humanizer.Core.fa/2.14.1": {
  3165. "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
  3166. "type": "package",
  3167. "path": "humanizer.core.fa/2.14.1",
  3168. "files": [
  3169. ".nupkg.metadata",
  3170. ".signature.p7s",
  3171. "humanizer.core.fa.2.14.1.nupkg.sha512",
  3172. "humanizer.core.fa.nuspec",
  3173. "lib/net6.0/fa/Humanizer.resources.dll",
  3174. "lib/netstandard1.0/fa/Humanizer.resources.dll",
  3175. "lib/netstandard2.0/fa/Humanizer.resources.dll",
  3176. "logo.png"
  3177. ]
  3178. },
  3179. "Humanizer.Core.fi-FI/2.14.1": {
  3180. "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
  3181. "type": "package",
  3182. "path": "humanizer.core.fi-fi/2.14.1",
  3183. "files": [
  3184. ".nupkg.metadata",
  3185. ".signature.p7s",
  3186. "humanizer.core.fi-fi.2.14.1.nupkg.sha512",
  3187. "humanizer.core.fi-fi.nuspec",
  3188. "lib/net6.0/fi-FI/Humanizer.resources.dll",
  3189. "lib/netstandard1.0/fi-FI/Humanizer.resources.dll",
  3190. "lib/netstandard2.0/fi-FI/Humanizer.resources.dll",
  3191. "logo.png"
  3192. ]
  3193. },
  3194. "Humanizer.Core.fr/2.14.1": {
  3195. "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
  3196. "type": "package",
  3197. "path": "humanizer.core.fr/2.14.1",
  3198. "files": [
  3199. ".nupkg.metadata",
  3200. ".signature.p7s",
  3201. "humanizer.core.fr.2.14.1.nupkg.sha512",
  3202. "humanizer.core.fr.nuspec",
  3203. "lib/net6.0/fr/Humanizer.resources.dll",
  3204. "lib/netstandard1.0/fr/Humanizer.resources.dll",
  3205. "lib/netstandard2.0/fr/Humanizer.resources.dll",
  3206. "logo.png"
  3207. ]
  3208. },
  3209. "Humanizer.Core.fr-BE/2.14.1": {
  3210. "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
  3211. "type": "package",
  3212. "path": "humanizer.core.fr-be/2.14.1",
  3213. "files": [
  3214. ".nupkg.metadata",
  3215. ".signature.p7s",
  3216. "humanizer.core.fr-be.2.14.1.nupkg.sha512",
  3217. "humanizer.core.fr-be.nuspec",
  3218. "lib/net6.0/fr-BE/Humanizer.resources.dll",
  3219. "lib/netstandard1.0/fr-BE/Humanizer.resources.dll",
  3220. "lib/netstandard2.0/fr-BE/Humanizer.resources.dll",
  3221. "logo.png"
  3222. ]
  3223. },
  3224. "Humanizer.Core.he/2.14.1": {
  3225. "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
  3226. "type": "package",
  3227. "path": "humanizer.core.he/2.14.1",
  3228. "files": [
  3229. ".nupkg.metadata",
  3230. ".signature.p7s",
  3231. "humanizer.core.he.2.14.1.nupkg.sha512",
  3232. "humanizer.core.he.nuspec",
  3233. "lib/net6.0/he/Humanizer.resources.dll",
  3234. "lib/netstandard1.0/he/Humanizer.resources.dll",
  3235. "lib/netstandard2.0/he/Humanizer.resources.dll",
  3236. "logo.png"
  3237. ]
  3238. },
  3239. "Humanizer.Core.hr/2.14.1": {
  3240. "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
  3241. "type": "package",
  3242. "path": "humanizer.core.hr/2.14.1",
  3243. "files": [
  3244. ".nupkg.metadata",
  3245. ".signature.p7s",
  3246. "humanizer.core.hr.2.14.1.nupkg.sha512",
  3247. "humanizer.core.hr.nuspec",
  3248. "lib/net6.0/hr/Humanizer.resources.dll",
  3249. "lib/netstandard1.0/hr/Humanizer.resources.dll",
  3250. "lib/netstandard2.0/hr/Humanizer.resources.dll",
  3251. "logo.png"
  3252. ]
  3253. },
  3254. "Humanizer.Core.hu/2.14.1": {
  3255. "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
  3256. "type": "package",
  3257. "path": "humanizer.core.hu/2.14.1",
  3258. "files": [
  3259. ".nupkg.metadata",
  3260. ".signature.p7s",
  3261. "humanizer.core.hu.2.14.1.nupkg.sha512",
  3262. "humanizer.core.hu.nuspec",
  3263. "lib/net6.0/hu/Humanizer.resources.dll",
  3264. "lib/netstandard1.0/hu/Humanizer.resources.dll",
  3265. "lib/netstandard2.0/hu/Humanizer.resources.dll",
  3266. "logo.png"
  3267. ]
  3268. },
  3269. "Humanizer.Core.hy/2.14.1": {
  3270. "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
  3271. "type": "package",
  3272. "path": "humanizer.core.hy/2.14.1",
  3273. "files": [
  3274. ".nupkg.metadata",
  3275. ".signature.p7s",
  3276. "humanizer.core.hy.2.14.1.nupkg.sha512",
  3277. "humanizer.core.hy.nuspec",
  3278. "lib/net6.0/hy/Humanizer.resources.dll",
  3279. "lib/netstandard1.0/hy/Humanizer.resources.dll",
  3280. "lib/netstandard2.0/hy/Humanizer.resources.dll",
  3281. "logo.png"
  3282. ]
  3283. },
  3284. "Humanizer.Core.id/2.14.1": {
  3285. "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
  3286. "type": "package",
  3287. "path": "humanizer.core.id/2.14.1",
  3288. "files": [
  3289. ".nupkg.metadata",
  3290. ".signature.p7s",
  3291. "humanizer.core.id.2.14.1.nupkg.sha512",
  3292. "humanizer.core.id.nuspec",
  3293. "lib/net6.0/id/Humanizer.resources.dll",
  3294. "lib/netstandard1.0/id/Humanizer.resources.dll",
  3295. "lib/netstandard2.0/id/Humanizer.resources.dll",
  3296. "logo.png"
  3297. ]
  3298. },
  3299. "Humanizer.Core.is/2.14.1": {
  3300. "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
  3301. "type": "package",
  3302. "path": "humanizer.core.is/2.14.1",
  3303. "files": [
  3304. ".nupkg.metadata",
  3305. ".signature.p7s",
  3306. "humanizer.core.is.2.14.1.nupkg.sha512",
  3307. "humanizer.core.is.nuspec",
  3308. "lib/net6.0/is/Humanizer.resources.dll",
  3309. "lib/netstandard1.0/is/Humanizer.resources.dll",
  3310. "lib/netstandard2.0/is/Humanizer.resources.dll",
  3311. "logo.png"
  3312. ]
  3313. },
  3314. "Humanizer.Core.it/2.14.1": {
  3315. "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
  3316. "type": "package",
  3317. "path": "humanizer.core.it/2.14.1",
  3318. "files": [
  3319. ".nupkg.metadata",
  3320. ".signature.p7s",
  3321. "humanizer.core.it.2.14.1.nupkg.sha512",
  3322. "humanizer.core.it.nuspec",
  3323. "lib/net6.0/it/Humanizer.resources.dll",
  3324. "lib/netstandard1.0/it/Humanizer.resources.dll",
  3325. "lib/netstandard2.0/it/Humanizer.resources.dll",
  3326. "logo.png"
  3327. ]
  3328. },
  3329. "Humanizer.Core.ja/2.14.1": {
  3330. "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
  3331. "type": "package",
  3332. "path": "humanizer.core.ja/2.14.1",
  3333. "files": [
  3334. ".nupkg.metadata",
  3335. ".signature.p7s",
  3336. "humanizer.core.ja.2.14.1.nupkg.sha512",
  3337. "humanizer.core.ja.nuspec",
  3338. "lib/net6.0/ja/Humanizer.resources.dll",
  3339. "lib/netstandard1.0/ja/Humanizer.resources.dll",
  3340. "lib/netstandard2.0/ja/Humanizer.resources.dll",
  3341. "logo.png"
  3342. ]
  3343. },
  3344. "Humanizer.Core.ko-KR/2.14.1": {
  3345. "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
  3346. "type": "package",
  3347. "path": "humanizer.core.ko-kr/2.14.1",
  3348. "files": [
  3349. ".nupkg.metadata",
  3350. ".signature.p7s",
  3351. "humanizer.core.ko-kr.2.14.1.nupkg.sha512",
  3352. "humanizer.core.ko-kr.nuspec",
  3353. "lib/netstandard1.0/ko-KR/Humanizer.resources.dll",
  3354. "lib/netstandard2.0/ko-KR/Humanizer.resources.dll",
  3355. "logo.png"
  3356. ]
  3357. },
  3358. "Humanizer.Core.ku/2.14.1": {
  3359. "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
  3360. "type": "package",
  3361. "path": "humanizer.core.ku/2.14.1",
  3362. "files": [
  3363. ".nupkg.metadata",
  3364. ".signature.p7s",
  3365. "humanizer.core.ku.2.14.1.nupkg.sha512",
  3366. "humanizer.core.ku.nuspec",
  3367. "lib/net6.0/ku/Humanizer.resources.dll",
  3368. "lib/netstandard1.0/ku/Humanizer.resources.dll",
  3369. "lib/netstandard2.0/ku/Humanizer.resources.dll",
  3370. "logo.png"
  3371. ]
  3372. },
  3373. "Humanizer.Core.lv/2.14.1": {
  3374. "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
  3375. "type": "package",
  3376. "path": "humanizer.core.lv/2.14.1",
  3377. "files": [
  3378. ".nupkg.metadata",
  3379. ".signature.p7s",
  3380. "humanizer.core.lv.2.14.1.nupkg.sha512",
  3381. "humanizer.core.lv.nuspec",
  3382. "lib/net6.0/lv/Humanizer.resources.dll",
  3383. "lib/netstandard1.0/lv/Humanizer.resources.dll",
  3384. "lib/netstandard2.0/lv/Humanizer.resources.dll",
  3385. "logo.png"
  3386. ]
  3387. },
  3388. "Humanizer.Core.ms-MY/2.14.1": {
  3389. "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
  3390. "type": "package",
  3391. "path": "humanizer.core.ms-my/2.14.1",
  3392. "files": [
  3393. ".nupkg.metadata",
  3394. ".signature.p7s",
  3395. "humanizer.core.ms-my.2.14.1.nupkg.sha512",
  3396. "humanizer.core.ms-my.nuspec",
  3397. "lib/netstandard1.0/ms-MY/Humanizer.resources.dll",
  3398. "lib/netstandard2.0/ms-MY/Humanizer.resources.dll",
  3399. "logo.png"
  3400. ]
  3401. },
  3402. "Humanizer.Core.mt/2.14.1": {
  3403. "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
  3404. "type": "package",
  3405. "path": "humanizer.core.mt/2.14.1",
  3406. "files": [
  3407. ".nupkg.metadata",
  3408. ".signature.p7s",
  3409. "humanizer.core.mt.2.14.1.nupkg.sha512",
  3410. "humanizer.core.mt.nuspec",
  3411. "lib/netstandard1.0/mt/Humanizer.resources.dll",
  3412. "lib/netstandard2.0/mt/Humanizer.resources.dll",
  3413. "logo.png"
  3414. ]
  3415. },
  3416. "Humanizer.Core.nb/2.14.1": {
  3417. "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
  3418. "type": "package",
  3419. "path": "humanizer.core.nb/2.14.1",
  3420. "files": [
  3421. ".nupkg.metadata",
  3422. ".signature.p7s",
  3423. "humanizer.core.nb.2.14.1.nupkg.sha512",
  3424. "humanizer.core.nb.nuspec",
  3425. "lib/net6.0/nb/Humanizer.resources.dll",
  3426. "lib/netstandard1.0/nb/Humanizer.resources.dll",
  3427. "lib/netstandard2.0/nb/Humanizer.resources.dll",
  3428. "logo.png"
  3429. ]
  3430. },
  3431. "Humanizer.Core.nb-NO/2.14.1": {
  3432. "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
  3433. "type": "package",
  3434. "path": "humanizer.core.nb-no/2.14.1",
  3435. "files": [
  3436. ".nupkg.metadata",
  3437. ".signature.p7s",
  3438. "humanizer.core.nb-no.2.14.1.nupkg.sha512",
  3439. "humanizer.core.nb-no.nuspec",
  3440. "lib/net6.0/nb-NO/Humanizer.resources.dll",
  3441. "lib/netstandard1.0/nb-NO/Humanizer.resources.dll",
  3442. "lib/netstandard2.0/nb-NO/Humanizer.resources.dll",
  3443. "logo.png"
  3444. ]
  3445. },
  3446. "Humanizer.Core.nl/2.14.1": {
  3447. "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
  3448. "type": "package",
  3449. "path": "humanizer.core.nl/2.14.1",
  3450. "files": [
  3451. ".nupkg.metadata",
  3452. ".signature.p7s",
  3453. "humanizer.core.nl.2.14.1.nupkg.sha512",
  3454. "humanizer.core.nl.nuspec",
  3455. "lib/net6.0/nl/Humanizer.resources.dll",
  3456. "lib/netstandard1.0/nl/Humanizer.resources.dll",
  3457. "lib/netstandard2.0/nl/Humanizer.resources.dll",
  3458. "logo.png"
  3459. ]
  3460. },
  3461. "Humanizer.Core.pl/2.14.1": {
  3462. "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
  3463. "type": "package",
  3464. "path": "humanizer.core.pl/2.14.1",
  3465. "files": [
  3466. ".nupkg.metadata",
  3467. ".signature.p7s",
  3468. "humanizer.core.pl.2.14.1.nupkg.sha512",
  3469. "humanizer.core.pl.nuspec",
  3470. "lib/net6.0/pl/Humanizer.resources.dll",
  3471. "lib/netstandard1.0/pl/Humanizer.resources.dll",
  3472. "lib/netstandard2.0/pl/Humanizer.resources.dll",
  3473. "logo.png"
  3474. ]
  3475. },
  3476. "Humanizer.Core.pt/2.14.1": {
  3477. "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
  3478. "type": "package",
  3479. "path": "humanizer.core.pt/2.14.1",
  3480. "files": [
  3481. ".nupkg.metadata",
  3482. ".signature.p7s",
  3483. "humanizer.core.pt.2.14.1.nupkg.sha512",
  3484. "humanizer.core.pt.nuspec",
  3485. "lib/net6.0/pt/Humanizer.resources.dll",
  3486. "lib/netstandard1.0/pt/Humanizer.resources.dll",
  3487. "lib/netstandard2.0/pt/Humanizer.resources.dll",
  3488. "logo.png"
  3489. ]
  3490. },
  3491. "Humanizer.Core.ro/2.14.1": {
  3492. "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
  3493. "type": "package",
  3494. "path": "humanizer.core.ro/2.14.1",
  3495. "files": [
  3496. ".nupkg.metadata",
  3497. ".signature.p7s",
  3498. "humanizer.core.ro.2.14.1.nupkg.sha512",
  3499. "humanizer.core.ro.nuspec",
  3500. "lib/net6.0/ro/Humanizer.resources.dll",
  3501. "lib/netstandard1.0/ro/Humanizer.resources.dll",
  3502. "lib/netstandard2.0/ro/Humanizer.resources.dll",
  3503. "logo.png"
  3504. ]
  3505. },
  3506. "Humanizer.Core.ru/2.14.1": {
  3507. "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
  3508. "type": "package",
  3509. "path": "humanizer.core.ru/2.14.1",
  3510. "files": [
  3511. ".nupkg.metadata",
  3512. ".signature.p7s",
  3513. "humanizer.core.ru.2.14.1.nupkg.sha512",
  3514. "humanizer.core.ru.nuspec",
  3515. "lib/net6.0/ru/Humanizer.resources.dll",
  3516. "lib/netstandard1.0/ru/Humanizer.resources.dll",
  3517. "lib/netstandard2.0/ru/Humanizer.resources.dll",
  3518. "logo.png"
  3519. ]
  3520. },
  3521. "Humanizer.Core.sk/2.14.1": {
  3522. "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
  3523. "type": "package",
  3524. "path": "humanizer.core.sk/2.14.1",
  3525. "files": [
  3526. ".nupkg.metadata",
  3527. ".signature.p7s",
  3528. "humanizer.core.sk.2.14.1.nupkg.sha512",
  3529. "humanizer.core.sk.nuspec",
  3530. "lib/net6.0/sk/Humanizer.resources.dll",
  3531. "lib/netstandard1.0/sk/Humanizer.resources.dll",
  3532. "lib/netstandard2.0/sk/Humanizer.resources.dll",
  3533. "logo.png"
  3534. ]
  3535. },
  3536. "Humanizer.Core.sl/2.14.1": {
  3537. "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
  3538. "type": "package",
  3539. "path": "humanizer.core.sl/2.14.1",
  3540. "files": [
  3541. ".nupkg.metadata",
  3542. ".signature.p7s",
  3543. "humanizer.core.sl.2.14.1.nupkg.sha512",
  3544. "humanizer.core.sl.nuspec",
  3545. "lib/net6.0/sl/Humanizer.resources.dll",
  3546. "lib/netstandard1.0/sl/Humanizer.resources.dll",
  3547. "lib/netstandard2.0/sl/Humanizer.resources.dll",
  3548. "logo.png"
  3549. ]
  3550. },
  3551. "Humanizer.Core.sr/2.14.1": {
  3552. "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
  3553. "type": "package",
  3554. "path": "humanizer.core.sr/2.14.1",
  3555. "files": [
  3556. ".nupkg.metadata",
  3557. ".signature.p7s",
  3558. "humanizer.core.sr.2.14.1.nupkg.sha512",
  3559. "humanizer.core.sr.nuspec",
  3560. "lib/net6.0/sr/Humanizer.resources.dll",
  3561. "lib/netstandard1.0/sr/Humanizer.resources.dll",
  3562. "lib/netstandard2.0/sr/Humanizer.resources.dll",
  3563. "logo.png"
  3564. ]
  3565. },
  3566. "Humanizer.Core.sr-Latn/2.14.1": {
  3567. "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
  3568. "type": "package",
  3569. "path": "humanizer.core.sr-latn/2.14.1",
  3570. "files": [
  3571. ".nupkg.metadata",
  3572. ".signature.p7s",
  3573. "humanizer.core.sr-latn.2.14.1.nupkg.sha512",
  3574. "humanizer.core.sr-latn.nuspec",
  3575. "lib/net6.0/sr-Latn/Humanizer.resources.dll",
  3576. "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll",
  3577. "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll",
  3578. "logo.png"
  3579. ]
  3580. },
  3581. "Humanizer.Core.sv/2.14.1": {
  3582. "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
  3583. "type": "package",
  3584. "path": "humanizer.core.sv/2.14.1",
  3585. "files": [
  3586. ".nupkg.metadata",
  3587. ".signature.p7s",
  3588. "humanizer.core.sv.2.14.1.nupkg.sha512",
  3589. "humanizer.core.sv.nuspec",
  3590. "lib/net6.0/sv/Humanizer.resources.dll",
  3591. "lib/netstandard1.0/sv/Humanizer.resources.dll",
  3592. "lib/netstandard2.0/sv/Humanizer.resources.dll",
  3593. "logo.png"
  3594. ]
  3595. },
  3596. "Humanizer.Core.th-TH/2.14.1": {
  3597. "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
  3598. "type": "package",
  3599. "path": "humanizer.core.th-th/2.14.1",
  3600. "files": [
  3601. ".nupkg.metadata",
  3602. ".signature.p7s",
  3603. "humanizer.core.th-th.2.14.1.nupkg.sha512",
  3604. "humanizer.core.th-th.nuspec",
  3605. "lib/netstandard1.0/th-TH/Humanizer.resources.dll",
  3606. "lib/netstandard2.0/th-TH/Humanizer.resources.dll",
  3607. "logo.png"
  3608. ]
  3609. },
  3610. "Humanizer.Core.tr/2.14.1": {
  3611. "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
  3612. "type": "package",
  3613. "path": "humanizer.core.tr/2.14.1",
  3614. "files": [
  3615. ".nupkg.metadata",
  3616. ".signature.p7s",
  3617. "humanizer.core.tr.2.14.1.nupkg.sha512",
  3618. "humanizer.core.tr.nuspec",
  3619. "lib/net6.0/tr/Humanizer.resources.dll",
  3620. "lib/netstandard1.0/tr/Humanizer.resources.dll",
  3621. "lib/netstandard2.0/tr/Humanizer.resources.dll",
  3622. "logo.png"
  3623. ]
  3624. },
  3625. "Humanizer.Core.uk/2.14.1": {
  3626. "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
  3627. "type": "package",
  3628. "path": "humanizer.core.uk/2.14.1",
  3629. "files": [
  3630. ".nupkg.metadata",
  3631. ".signature.p7s",
  3632. "humanizer.core.uk.2.14.1.nupkg.sha512",
  3633. "humanizer.core.uk.nuspec",
  3634. "lib/net6.0/uk/Humanizer.resources.dll",
  3635. "lib/netstandard1.0/uk/Humanizer.resources.dll",
  3636. "lib/netstandard2.0/uk/Humanizer.resources.dll",
  3637. "logo.png"
  3638. ]
  3639. },
  3640. "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
  3641. "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
  3642. "type": "package",
  3643. "path": "humanizer.core.uz-cyrl-uz/2.14.1",
  3644. "files": [
  3645. ".nupkg.metadata",
  3646. ".signature.p7s",
  3647. "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512",
  3648. "humanizer.core.uz-cyrl-uz.nuspec",
  3649. "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll",
  3650. "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll",
  3651. "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll",
  3652. "logo.png"
  3653. ]
  3654. },
  3655. "Humanizer.Core.uz-Latn-UZ/2.14.1": {
  3656. "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
  3657. "type": "package",
  3658. "path": "humanizer.core.uz-latn-uz/2.14.1",
  3659. "files": [
  3660. ".nupkg.metadata",
  3661. ".signature.p7s",
  3662. "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512",
  3663. "humanizer.core.uz-latn-uz.nuspec",
  3664. "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll",
  3665. "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll",
  3666. "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll",
  3667. "logo.png"
  3668. ]
  3669. },
  3670. "Humanizer.Core.vi/2.14.1": {
  3671. "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
  3672. "type": "package",
  3673. "path": "humanizer.core.vi/2.14.1",
  3674. "files": [
  3675. ".nupkg.metadata",
  3676. ".signature.p7s",
  3677. "humanizer.core.vi.2.14.1.nupkg.sha512",
  3678. "humanizer.core.vi.nuspec",
  3679. "lib/net6.0/vi/Humanizer.resources.dll",
  3680. "lib/netstandard1.0/vi/Humanizer.resources.dll",
  3681. "lib/netstandard2.0/vi/Humanizer.resources.dll",
  3682. "logo.png"
  3683. ]
  3684. },
  3685. "Humanizer.Core.zh-CN/2.14.1": {
  3686. "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
  3687. "type": "package",
  3688. "path": "humanizer.core.zh-cn/2.14.1",
  3689. "files": [
  3690. ".nupkg.metadata",
  3691. ".signature.p7s",
  3692. "humanizer.core.zh-cn.2.14.1.nupkg.sha512",
  3693. "humanizer.core.zh-cn.nuspec",
  3694. "lib/net6.0/zh-CN/Humanizer.resources.dll",
  3695. "lib/netstandard1.0/zh-CN/Humanizer.resources.dll",
  3696. "lib/netstandard2.0/zh-CN/Humanizer.resources.dll",
  3697. "logo.png"
  3698. ]
  3699. },
  3700. "Humanizer.Core.zh-Hans/2.14.1": {
  3701. "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
  3702. "type": "package",
  3703. "path": "humanizer.core.zh-hans/2.14.1",
  3704. "files": [
  3705. ".nupkg.metadata",
  3706. ".signature.p7s",
  3707. "humanizer.core.zh-hans.2.14.1.nupkg.sha512",
  3708. "humanizer.core.zh-hans.nuspec",
  3709. "lib/net6.0/zh-Hans/Humanizer.resources.dll",
  3710. "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll",
  3711. "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll",
  3712. "logo.png"
  3713. ]
  3714. },
  3715. "Humanizer.Core.zh-Hant/2.14.1": {
  3716. "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
  3717. "type": "package",
  3718. "path": "humanizer.core.zh-hant/2.14.1",
  3719. "files": [
  3720. ".nupkg.metadata",
  3721. ".signature.p7s",
  3722. "humanizer.core.zh-hant.2.14.1.nupkg.sha512",
  3723. "humanizer.core.zh-hant.nuspec",
  3724. "lib/net6.0/zh-Hant/Humanizer.resources.dll",
  3725. "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll",
  3726. "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll",
  3727. "logo.png"
  3728. ]
  3729. },
  3730. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  3731. "sha512": "buuMMCTxFcVkOkEftb2OafYxrveNGre9KJF4Oi1DkR4rxIj6oLam7Wq3g0Fp9hNVpJteKEPiupsxYnPrD/oUGA==",
  3732. "type": "package",
  3733. "path": "microsoft.aspnetcore.cryptography.internal/8.0.0",
  3734. "files": [
  3735. ".nupkg.metadata",
  3736. ".signature.p7s",
  3737. "Icon.png",
  3738. "THIRD-PARTY-NOTICES.TXT",
  3739. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3740. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3741. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3742. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3743. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3744. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3745. "microsoft.aspnetcore.cryptography.internal.8.0.0.nupkg.sha512",
  3746. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3747. ]
  3748. },
  3749. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  3750. "sha512": "65w93R5wqUUs35R9wjHHDf75GqAbxJsNByKZo5TbQOWSXcUbLWrDUWBQHv78iXIT0PL1pXNqKQz7OHiHMvo0/A==",
  3751. "type": "package",
  3752. "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.0",
  3753. "files": [
  3754. ".nupkg.metadata",
  3755. ".signature.p7s",
  3756. "Icon.png",
  3757. "THIRD-PARTY-NOTICES.TXT",
  3758. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3759. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3760. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3761. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3762. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3763. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3764. "microsoft.aspnetcore.cryptography.keyderivation.8.0.0.nupkg.sha512",
  3765. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  3766. ]
  3767. },
  3768. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  3769. "sha512": "ua2LSZY/f0BkNUUVPPm83eq4Xnt+FZYutiMimRrzSmv2K2t2Ia/PuP4CfibYNSwnKl6fbZ49Bwn2mQGWnmmvOA==",
  3770. "type": "package",
  3771. "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.0",
  3772. "files": [
  3773. ".nupkg.metadata",
  3774. ".signature.p7s",
  3775. "Icon.png",
  3776. "THIRD-PARTY-NOTICES.TXT",
  3777. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3778. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3779. "microsoft.aspnetcore.identity.entityframeworkcore.8.0.0.nupkg.sha512",
  3780. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3781. ]
  3782. },
  3783. "Microsoft.AspNetCore.Identity.UI/8.0.0": {
  3784. "sha512": "pDr/LtMS23DdDtRdXrQOFZoEUV96SvM2xrW1eWRqbtv+N+tzU1TUoXorEgjDuAA+aijjaFCEOLldd+l38wdmVg==",
  3785. "type": "package",
  3786. "path": "microsoft.aspnetcore.identity.ui/8.0.0",
  3787. "files": [
  3788. ".nupkg.metadata",
  3789. ".signature.p7s",
  3790. "Icon.png",
  3791. "THIRD-PARTY-NOTICES.TXT",
  3792. "build/Microsoft.AspNetCore.Identity.UI.props",
  3793. "build/Microsoft.AspNetCore.Identity.UI.targets",
  3794. "build/Microsoft.AspNetCore.StaticWebAssets.V4.targets",
  3795. "build/Microsoft.AspNetCore.StaticWebAssets.V5.targets",
  3796. "build/Microsoft.AspNetCore.StaticWebAssets.targets",
  3797. "buildMultiTargeting/Microsoft.AspNetCore.Identity.UI.targets",
  3798. "buildTransitive/Microsoft.AspNetCore.Identity.UI.targets",
  3799. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.dll",
  3800. "lib/net8.0/Microsoft.AspNetCore.Identity.UI.xml",
  3801. "microsoft.aspnetcore.identity.ui.8.0.0.nupkg.sha512",
  3802. "microsoft.aspnetcore.identity.ui.nuspec",
  3803. "staticwebassets/V4/css/site.css",
  3804. "staticwebassets/V4/favicon.ico",
  3805. "staticwebassets/V4/js/site.js",
  3806. "staticwebassets/V4/lib/bootstrap/LICENSE",
  3807. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.css",
  3808. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  3809. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  3810. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  3811. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.css",
  3812. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  3813. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  3814. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  3815. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.css",
  3816. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.css.map",
  3817. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.min.css",
  3818. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.min.css.map",
  3819. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.js",
  3820. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  3821. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  3822. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  3823. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.js",
  3824. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.js.map",
  3825. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.min.js",
  3826. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.min.js.map",
  3827. "staticwebassets/V4/lib/jquery-validation-unobtrusive/LICENSE.txt",
  3828. "staticwebassets/V4/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  3829. "staticwebassets/V4/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  3830. "staticwebassets/V4/lib/jquery-validation/LICENSE.md",
  3831. "staticwebassets/V4/lib/jquery-validation/dist/additional-methods.js",
  3832. "staticwebassets/V4/lib/jquery-validation/dist/additional-methods.min.js",
  3833. "staticwebassets/V4/lib/jquery-validation/dist/jquery.validate.js",
  3834. "staticwebassets/V4/lib/jquery-validation/dist/jquery.validate.min.js",
  3835. "staticwebassets/V4/lib/jquery/LICENSE.txt",
  3836. "staticwebassets/V4/lib/jquery/dist/jquery.js",
  3837. "staticwebassets/V4/lib/jquery/dist/jquery.min.js",
  3838. "staticwebassets/V4/lib/jquery/dist/jquery.min.map",
  3839. "staticwebassets/V5/css/site.css",
  3840. "staticwebassets/V5/favicon.ico",
  3841. "staticwebassets/V5/js/site.js",
  3842. "staticwebassets/V5/lib/bootstrap/LICENSE",
  3843. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css",
  3844. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  3845. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  3846. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  3847. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
  3848. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
  3849. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
  3850. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
  3851. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css",
  3852. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  3853. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  3854. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  3855. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
  3856. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
  3857. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
  3858. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
  3859. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css",
  3860. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
  3861. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
  3862. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
  3863. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
  3864. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
  3865. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
  3866. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
  3867. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css",
  3868. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map",
  3869. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css",
  3870. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map",
  3871. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css",
  3872. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
  3873. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
  3874. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
  3875. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js",
  3876. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  3877. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  3878. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  3879. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js",
  3880. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map",
  3881. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js",
  3882. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
  3883. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js",
  3884. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map",
  3885. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js",
  3886. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map",
  3887. "staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt",
  3888. "staticwebassets/V5/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  3889. "staticwebassets/V5/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  3890. "staticwebassets/V5/lib/jquery-validation/LICENSE.md",
  3891. "staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js",
  3892. "staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js",
  3893. "staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js",
  3894. "staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js",
  3895. "staticwebassets/V5/lib/jquery/LICENSE.txt",
  3896. "staticwebassets/V5/lib/jquery/dist/jquery.js",
  3897. "staticwebassets/V5/lib/jquery/dist/jquery.min.js",
  3898. "staticwebassets/V5/lib/jquery/dist/jquery.min.map"
  3899. ]
  3900. },
  3901. "Microsoft.AspNetCore.Razor.Language/6.0.24": {
  3902. "sha512": "kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==",
  3903. "type": "package",
  3904. "path": "microsoft.aspnetcore.razor.language/6.0.24",
  3905. "files": [
  3906. ".nupkg.metadata",
  3907. ".signature.p7s",
  3908. "Icon.png",
  3909. "THIRD-PARTY-NOTICES.TXT",
  3910. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  3911. "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512",
  3912. "microsoft.aspnetcore.razor.language.nuspec"
  3913. ]
  3914. },
  3915. "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
  3916. "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
  3917. "type": "package",
  3918. "path": "microsoft.bcl.asyncinterfaces/7.0.0",
  3919. "files": [
  3920. ".nupkg.metadata",
  3921. ".signature.p7s",
  3922. "Icon.png",
  3923. "LICENSE.TXT",
  3924. "THIRD-PARTY-NOTICES.TXT",
  3925. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  3926. "buildTransitive/net462/_._",
  3927. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  3928. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  3929. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3930. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3931. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3932. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3933. "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512",
  3934. "microsoft.bcl.asyncinterfaces.nuspec",
  3935. "useSharedDesignerContext.txt"
  3936. ]
  3937. },
  3938. "Microsoft.Build/17.7.2": {
  3939. "sha512": "AmWnumxsMiRycFfE3kq/XnFFTAoPpCWl3UuiKQWCa5Z0+hBKVoiydzS2iXJGd3x+jry+qaTR9GzoezjV9NFT5A==",
  3940. "type": "package",
  3941. "path": "microsoft.build/17.7.2",
  3942. "files": [
  3943. ".nupkg.metadata",
  3944. ".signature.p7s",
  3945. "MSBuild-NuGet-Icon.png",
  3946. "README.md",
  3947. "lib/net472/Microsoft.Build.dll",
  3948. "lib/net472/Microsoft.Build.pdb",
  3949. "lib/net472/Microsoft.Build.xml",
  3950. "lib/net7.0/Microsoft.Build.dll",
  3951. "lib/net7.0/Microsoft.Build.pdb",
  3952. "lib/net7.0/Microsoft.Build.xml",
  3953. "microsoft.build.17.7.2.nupkg.sha512",
  3954. "microsoft.build.nuspec",
  3955. "notices/THIRDPARTYNOTICES.txt",
  3956. "ref/net472/Microsoft.Build.dll",
  3957. "ref/net472/Microsoft.Build.xml",
  3958. "ref/net7.0/Microsoft.Build.dll",
  3959. "ref/net7.0/Microsoft.Build.xml"
  3960. ]
  3961. },
  3962. "Microsoft.Build.Framework/17.7.2": {
  3963. "sha512": "F+SglYQv6ij5RK4Bmd1X4q01E2ry4M8/huTIZ/1Vk7ZoxdT2J3vmV23cnJZsA/ZLunOTv3B905TU5J1eFmWNPw==",
  3964. "type": "package",
  3965. "path": "microsoft.build.framework/17.7.2",
  3966. "files": [
  3967. ".nupkg.metadata",
  3968. ".signature.p7s",
  3969. "MSBuild-NuGet-Icon.png",
  3970. "README.md",
  3971. "lib/net472/Microsoft.Build.Framework.dll",
  3972. "lib/net472/Microsoft.Build.Framework.pdb",
  3973. "lib/net472/Microsoft.Build.Framework.xml",
  3974. "lib/net7.0/Microsoft.Build.Framework.dll",
  3975. "lib/net7.0/Microsoft.Build.Framework.pdb",
  3976. "lib/net7.0/Microsoft.Build.Framework.xml",
  3977. "microsoft.build.framework.17.7.2.nupkg.sha512",
  3978. "microsoft.build.framework.nuspec",
  3979. "notices/THIRDPARTYNOTICES.txt",
  3980. "ref/net472/Microsoft.Build.Framework.dll",
  3981. "ref/net472/Microsoft.Build.Framework.xml",
  3982. "ref/net7.0/Microsoft.Build.Framework.dll",
  3983. "ref/net7.0/Microsoft.Build.Framework.xml",
  3984. "ref/netstandard2.0/Microsoft.Build.Framework.dll",
  3985. "ref/netstandard2.0/Microsoft.Build.Framework.xml"
  3986. ]
  3987. },
  3988. "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
  3989. "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
  3990. "type": "package",
  3991. "path": "microsoft.codeanalysis.analyzers/3.3.4",
  3992. "hasTools": true,
  3993. "files": [
  3994. ".nupkg.metadata",
  3995. ".signature.p7s",
  3996. "Icon.png",
  3997. "ThirdPartyNotices.txt",
  3998. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  3999. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4000. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4001. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4002. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4003. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4004. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4005. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4006. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4007. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4008. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4009. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4010. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4011. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4012. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4013. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4014. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4015. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4016. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4017. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4018. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4019. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4020. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4021. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4022. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4023. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4024. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4025. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4026. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4027. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4028. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props",
  4029. "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets",
  4030. "buildTransitive/config/analysislevel_2_9_8_all.globalconfig",
  4031. "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig",
  4032. "buildTransitive/config/analysislevel_2_9_8_default.globalconfig",
  4033. "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig",
  4034. "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig",
  4035. "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig",
  4036. "buildTransitive/config/analysislevel_2_9_8_none.globalconfig",
  4037. "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig",
  4038. "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig",
  4039. "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig",
  4040. "buildTransitive/config/analysislevel_3_3_3_all.globalconfig",
  4041. "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig",
  4042. "buildTransitive/config/analysislevel_3_3_3_default.globalconfig",
  4043. "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig",
  4044. "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig",
  4045. "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig",
  4046. "buildTransitive/config/analysislevel_3_3_3_none.globalconfig",
  4047. "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig",
  4048. "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig",
  4049. "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig",
  4050. "buildTransitive/config/analysislevel_3_3_all.globalconfig",
  4051. "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig",
  4052. "buildTransitive/config/analysislevel_3_3_default.globalconfig",
  4053. "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig",
  4054. "buildTransitive/config/analysislevel_3_3_minimum.globalconfig",
  4055. "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig",
  4056. "buildTransitive/config/analysislevel_3_3_none.globalconfig",
  4057. "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig",
  4058. "buildTransitive/config/analysislevel_3_3_recommended.globalconfig",
  4059. "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig",
  4060. "buildTransitive/config/analysislevel_3_all.globalconfig",
  4061. "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig",
  4062. "buildTransitive/config/analysislevel_3_default.globalconfig",
  4063. "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig",
  4064. "buildTransitive/config/analysislevel_3_minimum.globalconfig",
  4065. "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig",
  4066. "buildTransitive/config/analysislevel_3_none.globalconfig",
  4067. "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig",
  4068. "buildTransitive/config/analysislevel_3_recommended.globalconfig",
  4069. "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig",
  4070. "buildTransitive/config/analysislevel_4_3_all.globalconfig",
  4071. "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig",
  4072. "buildTransitive/config/analysislevel_4_3_default.globalconfig",
  4073. "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig",
  4074. "buildTransitive/config/analysislevel_4_3_minimum.globalconfig",
  4075. "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig",
  4076. "buildTransitive/config/analysislevel_4_3_none.globalconfig",
  4077. "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig",
  4078. "buildTransitive/config/analysislevel_4_3_recommended.globalconfig",
  4079. "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig",
  4080. "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig",
  4081. "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig",
  4082. "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig",
  4083. "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig",
  4084. "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig",
  4085. "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig",
  4086. "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig",
  4087. "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig",
  4088. "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig",
  4089. "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig",
  4090. "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig",
  4091. "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig",
  4092. "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig",
  4093. "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig",
  4094. "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig",
  4095. "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig",
  4096. "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig",
  4097. "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig",
  4098. "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig",
  4099. "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig",
  4100. "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig",
  4101. "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig",
  4102. "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig",
  4103. "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig",
  4104. "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig",
  4105. "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig",
  4106. "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig",
  4107. "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig",
  4108. "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig",
  4109. "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig",
  4110. "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig",
  4111. "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig",
  4112. "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig",
  4113. "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig",
  4114. "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig",
  4115. "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig",
  4116. "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig",
  4117. "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig",
  4118. "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig",
  4119. "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig",
  4120. "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig",
  4121. "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig",
  4122. "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig",
  4123. "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig",
  4124. "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig",
  4125. "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig",
  4126. "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig",
  4127. "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig",
  4128. "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig",
  4129. "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig",
  4130. "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig",
  4131. "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig",
  4132. "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig",
  4133. "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig",
  4134. "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig",
  4135. "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig",
  4136. "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig",
  4137. "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig",
  4138. "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig",
  4139. "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig",
  4140. "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig",
  4141. "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig",
  4142. "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig",
  4143. "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig",
  4144. "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig",
  4145. "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig",
  4146. "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig",
  4147. "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig",
  4148. "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig",
  4149. "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig",
  4150. "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig",
  4151. "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig",
  4152. "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig",
  4153. "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig",
  4154. "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig",
  4155. "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig",
  4156. "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig",
  4157. "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig",
  4158. "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig",
  4159. "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig",
  4160. "buildTransitive/config/analysislevellibrary_3_all.globalconfig",
  4161. "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig",
  4162. "buildTransitive/config/analysislevellibrary_3_default.globalconfig",
  4163. "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig",
  4164. "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig",
  4165. "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig",
  4166. "buildTransitive/config/analysislevellibrary_3_none.globalconfig",
  4167. "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig",
  4168. "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig",
  4169. "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig",
  4170. "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig",
  4171. "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig",
  4172. "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig",
  4173. "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig",
  4174. "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig",
  4175. "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig",
  4176. "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig",
  4177. "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig",
  4178. "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig",
  4179. "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig",
  4180. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig",
  4181. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig",
  4182. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig",
  4183. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig",
  4184. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig",
  4185. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig",
  4186. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig",
  4187. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig",
  4188. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig",
  4189. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig",
  4190. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig",
  4191. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig",
  4192. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig",
  4193. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig",
  4194. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig",
  4195. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig",
  4196. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig",
  4197. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig",
  4198. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig",
  4199. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig",
  4200. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig",
  4201. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig",
  4202. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig",
  4203. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig",
  4204. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig",
  4205. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig",
  4206. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig",
  4207. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig",
  4208. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig",
  4209. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig",
  4210. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig",
  4211. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig",
  4212. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig",
  4213. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig",
  4214. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig",
  4215. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig",
  4216. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig",
  4217. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig",
  4218. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig",
  4219. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig",
  4220. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig",
  4221. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig",
  4222. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig",
  4223. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig",
  4224. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig",
  4225. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig",
  4226. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig",
  4227. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig",
  4228. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig",
  4229. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig",
  4230. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig",
  4231. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig",
  4232. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig",
  4233. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig",
  4234. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig",
  4235. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig",
  4236. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig",
  4237. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig",
  4238. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig",
  4239. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig",
  4240. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig",
  4241. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig",
  4242. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig",
  4243. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig",
  4244. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig",
  4245. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig",
  4246. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig",
  4247. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig",
  4248. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig",
  4249. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig",
  4250. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig",
  4251. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig",
  4252. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig",
  4253. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig",
  4254. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig",
  4255. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig",
  4256. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig",
  4257. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig",
  4258. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig",
  4259. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig",
  4260. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig",
  4261. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig",
  4262. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig",
  4263. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig",
  4264. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig",
  4265. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig",
  4266. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig",
  4267. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig",
  4268. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig",
  4269. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig",
  4270. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig",
  4271. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig",
  4272. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig",
  4273. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig",
  4274. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig",
  4275. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig",
  4276. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig",
  4277. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig",
  4278. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig",
  4279. "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig",
  4280. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig",
  4281. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig",
  4282. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig",
  4283. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig",
  4284. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig",
  4285. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig",
  4286. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig",
  4287. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig",
  4288. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig",
  4289. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig",
  4290. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig",
  4291. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig",
  4292. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig",
  4293. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig",
  4294. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig",
  4295. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig",
  4296. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig",
  4297. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig",
  4298. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig",
  4299. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig",
  4300. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig",
  4301. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig",
  4302. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig",
  4303. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig",
  4304. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig",
  4305. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig",
  4306. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig",
  4307. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig",
  4308. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig",
  4309. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig",
  4310. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig",
  4311. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig",
  4312. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig",
  4313. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig",
  4314. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig",
  4315. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig",
  4316. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig",
  4317. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig",
  4318. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig",
  4319. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig",
  4320. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig",
  4321. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig",
  4322. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig",
  4323. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig",
  4324. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig",
  4325. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig",
  4326. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig",
  4327. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig",
  4328. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig",
  4329. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig",
  4330. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig",
  4331. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig",
  4332. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig",
  4333. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig",
  4334. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig",
  4335. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig",
  4336. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig",
  4337. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig",
  4338. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig",
  4339. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig",
  4340. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig",
  4341. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig",
  4342. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig",
  4343. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig",
  4344. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig",
  4345. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig",
  4346. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig",
  4347. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig",
  4348. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig",
  4349. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig",
  4350. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig",
  4351. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig",
  4352. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig",
  4353. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig",
  4354. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig",
  4355. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig",
  4356. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig",
  4357. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig",
  4358. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig",
  4359. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig",
  4360. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig",
  4361. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig",
  4362. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig",
  4363. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig",
  4364. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig",
  4365. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig",
  4366. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig",
  4367. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig",
  4368. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig",
  4369. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig",
  4370. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig",
  4371. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig",
  4372. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig",
  4373. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig",
  4374. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig",
  4375. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig",
  4376. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig",
  4377. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig",
  4378. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig",
  4379. "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig",
  4380. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig",
  4381. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig",
  4382. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig",
  4383. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig",
  4384. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig",
  4385. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig",
  4386. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig",
  4387. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig",
  4388. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig",
  4389. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig",
  4390. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig",
  4391. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig",
  4392. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig",
  4393. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig",
  4394. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig",
  4395. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig",
  4396. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig",
  4397. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig",
  4398. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig",
  4399. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig",
  4400. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig",
  4401. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig",
  4402. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig",
  4403. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig",
  4404. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig",
  4405. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig",
  4406. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig",
  4407. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig",
  4408. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig",
  4409. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig",
  4410. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig",
  4411. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig",
  4412. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig",
  4413. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig",
  4414. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig",
  4415. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig",
  4416. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig",
  4417. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig",
  4418. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig",
  4419. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig",
  4420. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig",
  4421. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig",
  4422. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig",
  4423. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig",
  4424. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig",
  4425. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig",
  4426. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig",
  4427. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig",
  4428. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig",
  4429. "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig",
  4430. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig",
  4431. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig",
  4432. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig",
  4433. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig",
  4434. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig",
  4435. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig",
  4436. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig",
  4437. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig",
  4438. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig",
  4439. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig",
  4440. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig",
  4441. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig",
  4442. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig",
  4443. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig",
  4444. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig",
  4445. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig",
  4446. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig",
  4447. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig",
  4448. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig",
  4449. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig",
  4450. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig",
  4451. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig",
  4452. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig",
  4453. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig",
  4454. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig",
  4455. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig",
  4456. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig",
  4457. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig",
  4458. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig",
  4459. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig",
  4460. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig",
  4461. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig",
  4462. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig",
  4463. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig",
  4464. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig",
  4465. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig",
  4466. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig",
  4467. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig",
  4468. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig",
  4469. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig",
  4470. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig",
  4471. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig",
  4472. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig",
  4473. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig",
  4474. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig",
  4475. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig",
  4476. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig",
  4477. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig",
  4478. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig",
  4479. "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig",
  4480. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig",
  4481. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig",
  4482. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig",
  4483. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig",
  4484. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig",
  4485. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig",
  4486. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig",
  4487. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig",
  4488. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig",
  4489. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig",
  4490. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig",
  4491. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig",
  4492. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig",
  4493. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig",
  4494. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig",
  4495. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig",
  4496. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig",
  4497. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig",
  4498. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig",
  4499. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig",
  4500. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig",
  4501. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig",
  4502. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig",
  4503. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig",
  4504. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig",
  4505. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig",
  4506. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig",
  4507. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig",
  4508. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig",
  4509. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig",
  4510. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig",
  4511. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig",
  4512. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig",
  4513. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig",
  4514. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig",
  4515. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig",
  4516. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig",
  4517. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig",
  4518. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig",
  4519. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig",
  4520. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig",
  4521. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig",
  4522. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig",
  4523. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig",
  4524. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig",
  4525. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig",
  4526. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig",
  4527. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig",
  4528. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig",
  4529. "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig",
  4530. "documentation/Analyzer Configuration.md",
  4531. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  4532. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  4533. "editorconfig/AllRulesDefault/.editorconfig",
  4534. "editorconfig/AllRulesDisabled/.editorconfig",
  4535. "editorconfig/AllRulesEnabled/.editorconfig",
  4536. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  4537. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  4538. "editorconfig/DataflowRulesDefault/.editorconfig",
  4539. "editorconfig/DataflowRulesEnabled/.editorconfig",
  4540. "editorconfig/LibraryRulesDefault/.editorconfig",
  4541. "editorconfig/LibraryRulesEnabled/.editorconfig",
  4542. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  4543. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  4544. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  4545. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  4546. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  4547. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  4548. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  4549. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  4550. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  4551. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  4552. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  4553. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  4554. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  4555. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  4556. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  4557. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  4558. "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512",
  4559. "microsoft.codeanalysis.analyzers.nuspec",
  4560. "rulesets/AllRulesDefault.ruleset",
  4561. "rulesets/AllRulesDisabled.ruleset",
  4562. "rulesets/AllRulesEnabled.ruleset",
  4563. "rulesets/CorrectnessRulesDefault.ruleset",
  4564. "rulesets/CorrectnessRulesEnabled.ruleset",
  4565. "rulesets/DataflowRulesDefault.ruleset",
  4566. "rulesets/DataflowRulesEnabled.ruleset",
  4567. "rulesets/LibraryRulesDefault.ruleset",
  4568. "rulesets/LibraryRulesEnabled.ruleset",
  4569. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  4570. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  4571. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  4572. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  4573. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  4574. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  4575. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  4576. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  4577. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  4578. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  4579. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  4580. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  4581. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  4582. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  4583. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  4584. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  4585. "tools/install.ps1",
  4586. "tools/uninstall.ps1"
  4587. ]
  4588. },
  4589. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  4590. "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
  4591. "type": "package",
  4592. "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
  4593. "hasTools": true,
  4594. "files": [
  4595. ".nupkg.metadata",
  4596. ".signature.p7s",
  4597. "EULA.rtf",
  4598. "ThirdPartyNotices.rtf",
  4599. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll",
  4600. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml",
  4601. "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
  4602. "microsoft.codeanalysis.analyzerutilities.nuspec",
  4603. "tools/install.ps1",
  4604. "tools/uninstall.ps1"
  4605. ]
  4606. },
  4607. "Microsoft.CodeAnalysis.Common/4.8.0-3.final": {
  4608. "sha512": "qojulunbDAItriFYrqVmsrAW8XRxxEUCQirDUcUIGUDPyzbuW84SIp7/ts6CUaYrdKP4S4yiXvkUEqJ5gco4fw==",
  4609. "type": "package",
  4610. "path": "microsoft.codeanalysis.common/4.8.0-3.final",
  4611. "files": [
  4612. ".nupkg.metadata",
  4613. ".signature.p7s",
  4614. "Icon.png",
  4615. "ThirdPartyNotices.rtf",
  4616. "lib/net6.0/Microsoft.CodeAnalysis.dll",
  4617. "lib/net6.0/Microsoft.CodeAnalysis.pdb",
  4618. "lib/net6.0/Microsoft.CodeAnalysis.xml",
  4619. "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4620. "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll",
  4621. "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll",
  4622. "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4623. "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll",
  4624. "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4625. "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4626. "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4627. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4628. "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4629. "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4630. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4631. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4632. "lib/net7.0/Microsoft.CodeAnalysis.dll",
  4633. "lib/net7.0/Microsoft.CodeAnalysis.pdb",
  4634. "lib/net7.0/Microsoft.CodeAnalysis.xml",
  4635. "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4636. "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll",
  4637. "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll",
  4638. "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4639. "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll",
  4640. "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4641. "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4642. "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4643. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4644. "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4645. "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4646. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4647. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4648. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  4649. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  4650. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  4651. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4652. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  4653. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  4654. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4655. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  4656. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4657. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4658. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4659. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4660. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4661. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4662. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4663. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4664. "microsoft.codeanalysis.common.4.8.0-3.final.nupkg.sha512",
  4665. "microsoft.codeanalysis.common.nuspec"
  4666. ]
  4667. },
  4668. "Microsoft.CodeAnalysis.CSharp/4.8.0-3.final": {
  4669. "sha512": "kE6aU9GV34p8yV7VSqXppVKyNsFtG2OBI/3V/lduZngtcSEN7Vy65OS0zLw/pu7JTmuVXyzQA8H0R/tqPNDRPw==",
  4670. "type": "package",
  4671. "path": "microsoft.codeanalysis.csharp/4.8.0-3.final",
  4672. "files": [
  4673. ".nupkg.metadata",
  4674. ".signature.p7s",
  4675. "Icon.png",
  4676. "ThirdPartyNotices.rtf",
  4677. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll",
  4678. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4679. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.xml",
  4680. "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4681. "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4682. "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4683. "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4684. "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4685. "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4686. "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4687. "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4688. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4689. "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4690. "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4691. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4692. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4693. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll",
  4694. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4695. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml",
  4696. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4697. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4698. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4699. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4700. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4701. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4702. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4703. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4704. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4705. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4706. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4707. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4708. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4709. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  4710. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4711. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  4712. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4713. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4714. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4715. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4716. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4717. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4718. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4719. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4720. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4721. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4722. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4723. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4724. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4725. "microsoft.codeanalysis.csharp.4.8.0-3.final.nupkg.sha512",
  4726. "microsoft.codeanalysis.csharp.nuspec"
  4727. ]
  4728. },
  4729. "Microsoft.CodeAnalysis.CSharp.Features/4.8.0-3.final": {
  4730. "sha512": "QevxcYlwJoCKZWFqzmR8G34h4l5BdVdzK/jGvH2uI6Khd70aEf6H+P4f1Q8GEGZuuw8IICmKEWheStefgKnA1A==",
  4731. "type": "package",
  4732. "path": "microsoft.codeanalysis.csharp.features/4.8.0-3.final",
  4733. "files": [
  4734. ".nupkg.metadata",
  4735. ".signature.p7s",
  4736. "Icon.png",
  4737. "ThirdPartyNotices.rtf",
  4738. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4739. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4740. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4741. "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4742. "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4743. "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4744. "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4745. "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4746. "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4747. "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4748. "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4749. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4750. "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4751. "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4752. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4753. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4754. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4755. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4756. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4757. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4758. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4759. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4760. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4761. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4762. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4763. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4764. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4765. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4766. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4767. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4768. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4769. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4770. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4771. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4772. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4773. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4774. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4775. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4776. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4777. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4778. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4779. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4780. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4781. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4782. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4783. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4784. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4785. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4786. "microsoft.codeanalysis.csharp.features.4.8.0-3.final.nupkg.sha512",
  4787. "microsoft.codeanalysis.csharp.features.nuspec"
  4788. ]
  4789. },
  4790. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0-3.final": {
  4791. "sha512": "dixgJ4X/S7OtAYhEDRiFSb9kQ384h2Q/A1WkaXnZGh8gW/Lne+IA1Xb/+efdcsQouJ723VlYIB8ox1V7KIPi8Q==",
  4792. "type": "package",
  4793. "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0-3.final",
  4794. "files": [
  4795. ".nupkg.metadata",
  4796. ".signature.p7s",
  4797. "Icon.png",
  4798. "ThirdPartyNotices.rtf",
  4799. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  4800. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  4801. "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  4802. "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4803. "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4804. "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4805. "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4806. "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4807. "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4808. "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4809. "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4810. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4811. "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4812. "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4813. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4814. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4815. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  4816. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  4817. "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  4818. "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4819. "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4820. "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4821. "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4822. "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4823. "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4824. "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4825. "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4826. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4827. "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4828. "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4829. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4830. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4831. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  4832. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  4833. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  4834. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4835. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4836. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4837. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4838. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4839. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4840. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4841. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4842. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4843. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4844. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4845. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4846. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4847. "microsoft.codeanalysis.csharp.workspaces.4.8.0-3.final.nupkg.sha512",
  4848. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  4849. ]
  4850. },
  4851. "Microsoft.CodeAnalysis.Elfie/1.0.0": {
  4852. "sha512": "r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==",
  4853. "type": "package",
  4854. "path": "microsoft.codeanalysis.elfie/1.0.0",
  4855. "files": [
  4856. ".nupkg.metadata",
  4857. ".signature.p7s",
  4858. "lib/net45/Microsoft.CodeAnalysis.Elfie.dll",
  4859. "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll",
  4860. "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512",
  4861. "microsoft.codeanalysis.elfie.nuspec"
  4862. ]
  4863. },
  4864. "Microsoft.CodeAnalysis.Features/4.8.0-3.final": {
  4865. "sha512": "K9osJYe+g1WwJL58022TsotiVFkto9HF3WbNhH0+olxPjeJ7dw9hLs/AeXoA6P8ErnNf+QNA735KIZWXiGAcLQ==",
  4866. "type": "package",
  4867. "path": "microsoft.codeanalysis.features/4.8.0-3.final",
  4868. "files": [
  4869. ".nupkg.metadata",
  4870. ".signature.p7s",
  4871. "Icon.png",
  4872. "ThirdPartyNotices.rtf",
  4873. "lib/net6.0/Microsoft.CodeAnalysis.Features.dll",
  4874. "lib/net6.0/Microsoft.CodeAnalysis.Features.pdb",
  4875. "lib/net6.0/Microsoft.CodeAnalysis.Features.xml",
  4876. "lib/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  4877. "lib/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  4878. "lib/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  4879. "lib/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  4880. "lib/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  4881. "lib/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  4882. "lib/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  4883. "lib/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  4884. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  4885. "lib/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  4886. "lib/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  4887. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  4888. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  4889. "lib/net7.0/Microsoft.CodeAnalysis.Features.dll",
  4890. "lib/net7.0/Microsoft.CodeAnalysis.Features.pdb",
  4891. "lib/net7.0/Microsoft.CodeAnalysis.Features.xml",
  4892. "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  4893. "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  4894. "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  4895. "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  4896. "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  4897. "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  4898. "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  4899. "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  4900. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  4901. "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  4902. "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  4903. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  4904. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  4905. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll",
  4906. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb",
  4907. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml",
  4908. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  4909. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  4910. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  4911. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  4912. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  4913. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  4914. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  4915. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  4916. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  4917. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  4918. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  4919. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  4920. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  4921. "microsoft.codeanalysis.features.4.8.0-3.final.nupkg.sha512",
  4922. "microsoft.codeanalysis.features.nuspec"
  4923. ]
  4924. },
  4925. "Microsoft.CodeAnalysis.Razor/6.0.24": {
  4926. "sha512": "xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==",
  4927. "type": "package",
  4928. "path": "microsoft.codeanalysis.razor/6.0.24",
  4929. "files": [
  4930. ".nupkg.metadata",
  4931. ".signature.p7s",
  4932. "Icon.png",
  4933. "THIRD-PARTY-NOTICES.TXT",
  4934. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  4935. "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512",
  4936. "microsoft.codeanalysis.razor.nuspec"
  4937. ]
  4938. },
  4939. "Microsoft.CodeAnalysis.Scripting.Common/4.8.0-3.final": {
  4940. "sha512": "5XQeqsJW1R2ouyLbVauZS7O98kdP256bVPYcJsPjAIRaCAyof2+UsT1lVFQDUiKsv8bsVODQ5KXoSmAT+fUdgg==",
  4941. "type": "package",
  4942. "path": "microsoft.codeanalysis.scripting.common/4.8.0-3.final",
  4943. "files": [
  4944. ".nupkg.metadata",
  4945. ".signature.p7s",
  4946. "Icon.png",
  4947. "ThirdPartyNotices.rtf",
  4948. "lib/net6.0/Microsoft.CodeAnalysis.Scripting.dll",
  4949. "lib/net6.0/Microsoft.CodeAnalysis.Scripting.pdb",
  4950. "lib/net6.0/Microsoft.CodeAnalysis.Scripting.xml",
  4951. "lib/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4952. "lib/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4953. "lib/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4954. "lib/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4955. "lib/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4956. "lib/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4957. "lib/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4958. "lib/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4959. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4960. "lib/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4961. "lib/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4962. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4963. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4964. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll",
  4965. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.pdb",
  4966. "lib/net7.0/Microsoft.CodeAnalysis.Scripting.xml",
  4967. "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4968. "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4969. "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4970. "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4971. "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4972. "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4973. "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4974. "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4975. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4976. "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4977. "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4978. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4979. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4980. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
  4981. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
  4982. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
  4983. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4984. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4985. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4986. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4987. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4988. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4989. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4990. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4991. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4992. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4993. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4994. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4995. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4996. "microsoft.codeanalysis.scripting.common.4.8.0-3.final.nupkg.sha512",
  4997. "microsoft.codeanalysis.scripting.common.nuspec"
  4998. ]
  4999. },
  5000. "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0-3.final": {
  5001. "sha512": "vQ8iv/7Ar/SiFxMduQzgeuidZ1tCWoAi0sFUgf0HBHViziZR66allHKfpknLyDrwc/OiYJoxRNItbsAXX+EKVA==",
  5002. "type": "package",
  5003. "path": "microsoft.codeanalysis.workspaces.common/4.8.0-3.final",
  5004. "files": [
  5005. ".nupkg.metadata",
  5006. ".signature.p7s",
  5007. "Icon.png",
  5008. "ThirdPartyNotices.rtf",
  5009. "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll",
  5010. "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  5011. "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.xml",
  5012. "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5013. "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5014. "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5015. "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5016. "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5017. "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5018. "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5019. "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5020. "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5021. "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5022. "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5023. "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5024. "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5025. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll",
  5026. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  5027. "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.xml",
  5028. "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5029. "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5030. "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5031. "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5032. "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5033. "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5034. "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5035. "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5036. "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5037. "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5038. "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5039. "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5040. "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5041. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  5042. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  5043. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  5044. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5045. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5046. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5047. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5048. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5049. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5050. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5051. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5052. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5053. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5054. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5055. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5056. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5057. "microsoft.codeanalysis.workspaces.common.4.8.0-3.final.nupkg.sha512",
  5058. "microsoft.codeanalysis.workspaces.common.nuspec"
  5059. ]
  5060. },
  5061. "Microsoft.CSharp/4.5.0": {
  5062. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  5063. "type": "package",
  5064. "path": "microsoft.csharp/4.5.0",
  5065. "files": [
  5066. ".nupkg.metadata",
  5067. ".signature.p7s",
  5068. "LICENSE.TXT",
  5069. "THIRD-PARTY-NOTICES.TXT",
  5070. "lib/MonoAndroid10/_._",
  5071. "lib/MonoTouch10/_._",
  5072. "lib/net45/_._",
  5073. "lib/netcore50/Microsoft.CSharp.dll",
  5074. "lib/netcoreapp2.0/_._",
  5075. "lib/netstandard1.3/Microsoft.CSharp.dll",
  5076. "lib/netstandard2.0/Microsoft.CSharp.dll",
  5077. "lib/portable-net45+win8+wp8+wpa81/_._",
  5078. "lib/uap10.0.16299/_._",
  5079. "lib/win8/_._",
  5080. "lib/wp80/_._",
  5081. "lib/wpa81/_._",
  5082. "lib/xamarinios10/_._",
  5083. "lib/xamarinmac20/_._",
  5084. "lib/xamarintvos10/_._",
  5085. "lib/xamarinwatchos10/_._",
  5086. "microsoft.csharp.4.5.0.nupkg.sha512",
  5087. "microsoft.csharp.nuspec",
  5088. "ref/MonoAndroid10/_._",
  5089. "ref/MonoTouch10/_._",
  5090. "ref/net45/_._",
  5091. "ref/netcore50/Microsoft.CSharp.dll",
  5092. "ref/netcore50/Microsoft.CSharp.xml",
  5093. "ref/netcore50/de/Microsoft.CSharp.xml",
  5094. "ref/netcore50/es/Microsoft.CSharp.xml",
  5095. "ref/netcore50/fr/Microsoft.CSharp.xml",
  5096. "ref/netcore50/it/Microsoft.CSharp.xml",
  5097. "ref/netcore50/ja/Microsoft.CSharp.xml",
  5098. "ref/netcore50/ko/Microsoft.CSharp.xml",
  5099. "ref/netcore50/ru/Microsoft.CSharp.xml",
  5100. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  5101. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  5102. "ref/netcoreapp2.0/_._",
  5103. "ref/netstandard1.0/Microsoft.CSharp.dll",
  5104. "ref/netstandard1.0/Microsoft.CSharp.xml",
  5105. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  5106. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  5107. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  5108. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  5109. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  5110. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  5111. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  5112. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  5113. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  5114. "ref/netstandard2.0/Microsoft.CSharp.dll",
  5115. "ref/netstandard2.0/Microsoft.CSharp.xml",
  5116. "ref/portable-net45+win8+wp8+wpa81/_._",
  5117. "ref/uap10.0.16299/_._",
  5118. "ref/win8/_._",
  5119. "ref/wp80/_._",
  5120. "ref/wpa81/_._",
  5121. "ref/xamarinios10/_._",
  5122. "ref/xamarinmac20/_._",
  5123. "ref/xamarintvos10/_._",
  5124. "ref/xamarinwatchos10/_._",
  5125. "useSharedDesignerContext.txt",
  5126. "version.txt"
  5127. ]
  5128. },
  5129. "Microsoft.Data.SqlClient/5.1.1": {
  5130. "sha512": "MW5E9HFvCaV069o8b6YpuRDPBux8s96qDnOJ+4N9QNUCs7c5W3KxwQ+ftpAjbMUlImL+c9WR+l+f5hzjkqhu2g==",
  5131. "type": "package",
  5132. "path": "microsoft.data.sqlclient/5.1.1",
  5133. "files": [
  5134. ".nupkg.metadata",
  5135. ".signature.p7s",
  5136. "dotnet.png",
  5137. "lib/net462/Microsoft.Data.SqlClient.dll",
  5138. "lib/net462/Microsoft.Data.SqlClient.pdb",
  5139. "lib/net462/Microsoft.Data.SqlClient.xml",
  5140. "lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
  5141. "lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
  5142. "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
  5143. "lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
  5144. "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
  5145. "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
  5146. "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  5147. "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
  5148. "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  5149. "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  5150. "lib/net6.0/Microsoft.Data.SqlClient.dll",
  5151. "lib/net6.0/Microsoft.Data.SqlClient.pdb",
  5152. "lib/net6.0/Microsoft.Data.SqlClient.xml",
  5153. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5154. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5155. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5156. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5157. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5158. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5159. "microsoft.data.sqlclient.5.1.1.nupkg.sha512",
  5160. "microsoft.data.sqlclient.nuspec",
  5161. "ref/net462/Microsoft.Data.SqlClient.dll",
  5162. "ref/net462/Microsoft.Data.SqlClient.pdb",
  5163. "ref/net462/Microsoft.Data.SqlClient.xml",
  5164. "ref/net6.0/Microsoft.Data.SqlClient.dll",
  5165. "ref/net6.0/Microsoft.Data.SqlClient.pdb",
  5166. "ref/net6.0/Microsoft.Data.SqlClient.xml",
  5167. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5168. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5169. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5170. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5171. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5172. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5173. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
  5174. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  5175. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5176. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5177. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5178. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5179. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
  5180. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
  5181. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
  5182. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  5183. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5184. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5185. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5186. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  5187. ]
  5188. },
  5189. "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": {
  5190. "sha512": "jVsElisM5sfBzaaV9kdq2NXZLwIbytetnsOIlJ0cQGgQP4zFNBmkfHBnpwtmKrtBJBEV9+9PVQPVrcCVhDgcIg==",
  5191. "type": "package",
  5192. "path": "microsoft.data.sqlclient.sni.runtime/5.1.0",
  5193. "files": [
  5194. ".nupkg.metadata",
  5195. ".signature.p7s",
  5196. "LICENSE.txt",
  5197. "dotnet.png",
  5198. "microsoft.data.sqlclient.sni.runtime.5.1.0.nupkg.sha512",
  5199. "microsoft.data.sqlclient.sni.runtime.nuspec",
  5200. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  5201. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  5202. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  5203. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  5204. ]
  5205. },
  5206. "Microsoft.DiaSymReader/2.0.0": {
  5207. "sha512": "QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==",
  5208. "type": "package",
  5209. "path": "microsoft.diasymreader/2.0.0",
  5210. "files": [
  5211. ".nupkg.metadata",
  5212. ".signature.p7s",
  5213. "Icon.png",
  5214. "lib/netstandard2.0/Microsoft.DiaSymReader.dll",
  5215. "lib/netstandard2.0/Microsoft.DiaSymReader.pdb",
  5216. "lib/netstandard2.0/Microsoft.DiaSymReader.xml",
  5217. "microsoft.diasymreader.2.0.0.nupkg.sha512",
  5218. "microsoft.diasymreader.nuspec"
  5219. ]
  5220. },
  5221. "Microsoft.DotNet.Scaffolding.Shared/8.0.0": {
  5222. "sha512": "iJGJitXhFMws4ac1UOn+Q4kxhDwCAjV5IDsMbRiQxUlxhyE7NZJpb2NmbrpalQOMHCdfyJXsvqRYtgc10TdN9w==",
  5223. "type": "package",
  5224. "path": "microsoft.dotnet.scaffolding.shared/8.0.0",
  5225. "files": [
  5226. ".nupkg.metadata",
  5227. ".signature.p7s",
  5228. "Icon.png",
  5229. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll",
  5230. "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.xml",
  5231. "microsoft.dotnet.scaffolding.shared.8.0.0.nupkg.sha512",
  5232. "microsoft.dotnet.scaffolding.shared.nuspec"
  5233. ]
  5234. },
  5235. "Microsoft.EntityFrameworkCore/8.0.0": {
  5236. "sha512": "SoODat83pGQUpWB9xULdMX6tuKpq/RTXDuJ2WeC1ldUKcKzLkaFJD1n+I0nOLY58odez/e7z8b6zdp235G/kyg==",
  5237. "type": "package",
  5238. "path": "microsoft.entityframeworkcore/8.0.0",
  5239. "files": [
  5240. ".nupkg.metadata",
  5241. ".signature.p7s",
  5242. "Icon.png",
  5243. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
  5244. "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
  5245. "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
  5246. "microsoft.entityframeworkcore.8.0.0.nupkg.sha512",
  5247. "microsoft.entityframeworkcore.nuspec"
  5248. ]
  5249. },
  5250. "Microsoft.EntityFrameworkCore.Abstractions/8.0.0": {
  5251. "sha512": "VR22s3+zoqlVI7xauFKn1znSIFHO8xuILT+noSwS8bZCKcHz0ydkTDQMuaxSa5WBaQrZmwtTz9rmRvJ7X8mSPQ==",
  5252. "type": "package",
  5253. "path": "microsoft.entityframeworkcore.abstractions/8.0.0",
  5254. "files": [
  5255. ".nupkg.metadata",
  5256. ".signature.p7s",
  5257. "Icon.png",
  5258. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  5259. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  5260. "microsoft.entityframeworkcore.abstractions.8.0.0.nupkg.sha512",
  5261. "microsoft.entityframeworkcore.abstractions.nuspec"
  5262. ]
  5263. },
  5264. "Microsoft.EntityFrameworkCore.Analyzers/8.0.0": {
  5265. "sha512": "ZXxEeLs2zoZ1TA+QoMMcw4f3Tirf8PzgdDax8RoWo0dxI2KmqiEGWYjhm2B/XyWfglc6+mNRyB8rZiQSmxCpeg==",
  5266. "type": "package",
  5267. "path": "microsoft.entityframeworkcore.analyzers/8.0.0",
  5268. "files": [
  5269. ".nupkg.metadata",
  5270. ".signature.p7s",
  5271. "Icon.png",
  5272. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  5273. "lib/netstandard2.0/_._",
  5274. "microsoft.entityframeworkcore.analyzers.8.0.0.nupkg.sha512",
  5275. "microsoft.entityframeworkcore.analyzers.nuspec"
  5276. ]
  5277. },
  5278. "Microsoft.EntityFrameworkCore.Design/8.0.0": {
  5279. "sha512": "94reKYu63jg4O75UI3LMJHwOSi8tQ6IfubiZhdnSsWcgtmAuF8OyLfjK/MIxuvaQRJZAF6E747FIuxjOtb8/og==",
  5280. "type": "package",
  5281. "path": "microsoft.entityframeworkcore.design/8.0.0",
  5282. "files": [
  5283. ".nupkg.metadata",
  5284. ".signature.p7s",
  5285. "Icon.png",
  5286. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
  5287. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
  5288. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
  5289. "microsoft.entityframeworkcore.design.8.0.0.nupkg.sha512",
  5290. "microsoft.entityframeworkcore.design.nuspec"
  5291. ]
  5292. },
  5293. "Microsoft.EntityFrameworkCore.Relational/8.0.0": {
  5294. "sha512": "fFKkr24cYc7Zw5T6DC4tEyOEPgPbq23BBmym1r9kn4ET9F3HKaetpOeQtV2RryYyUxEeNkJuxgfiZHTisqZc+A==",
  5295. "type": "package",
  5296. "path": "microsoft.entityframeworkcore.relational/8.0.0",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "Icon.png",
  5301. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
  5302. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
  5303. "microsoft.entityframeworkcore.relational.8.0.0.nupkg.sha512",
  5304. "microsoft.entityframeworkcore.relational.nuspec"
  5305. ]
  5306. },
  5307. "Microsoft.EntityFrameworkCore.SqlServer/8.0.0": {
  5308. "sha512": "GeOmafQn64HyQtYcI/Omv/D/YVHd1zEkWbP3zNQu4oC+usE9K0qOp0R8KgWWFEf8BU4tXuYbok40W0SjfbaK/A==",
  5309. "type": "package",
  5310. "path": "microsoft.entityframeworkcore.sqlserver/8.0.0",
  5311. "files": [
  5312. ".nupkg.metadata",
  5313. ".signature.p7s",
  5314. "Icon.png",
  5315. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  5316. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  5317. "microsoft.entityframeworkcore.sqlserver.8.0.0.nupkg.sha512",
  5318. "microsoft.entityframeworkcore.sqlserver.nuspec"
  5319. ]
  5320. },
  5321. "Microsoft.EntityFrameworkCore.Tools/8.0.0": {
  5322. "sha512": "zRdaXiiB1gEA0b+AJTd2+drh78gkEA4HyZ1vqNZrKq4xwW8WwavSiQsoeb1UsIMZkocLMBbhQYWClkZzuTKEgQ==",
  5323. "type": "package",
  5324. "path": "microsoft.entityframeworkcore.tools/8.0.0",
  5325. "hasTools": true,
  5326. "files": [
  5327. ".nupkg.metadata",
  5328. ".signature.p7s",
  5329. "Icon.png",
  5330. "lib/net8.0/_._",
  5331. "microsoft.entityframeworkcore.tools.8.0.0.nupkg.sha512",
  5332. "microsoft.entityframeworkcore.tools.nuspec",
  5333. "tools/EntityFrameworkCore.PS2.psd1",
  5334. "tools/EntityFrameworkCore.PS2.psm1",
  5335. "tools/EntityFrameworkCore.psd1",
  5336. "tools/EntityFrameworkCore.psm1",
  5337. "tools/about_EntityFrameworkCore.help.txt",
  5338. "tools/init.ps1",
  5339. "tools/net461/any/ef.exe",
  5340. "tools/net461/win-arm64/ef.exe",
  5341. "tools/net461/win-x86/ef.exe",
  5342. "tools/netcoreapp2.0/any/ef.dll",
  5343. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  5344. ]
  5345. },
  5346. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  5347. "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  5348. "type": "package",
  5349. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  5350. "files": [
  5351. ".nupkg.metadata",
  5352. ".signature.p7s",
  5353. "Icon.png",
  5354. "LICENSE.TXT",
  5355. "PACKAGE.md",
  5356. "THIRD-PARTY-NOTICES.TXT",
  5357. "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
  5358. "buildTransitive/net462/_._",
  5359. "buildTransitive/net6.0/_._",
  5360. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
  5361. "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
  5362. "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
  5363. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5364. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5365. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5366. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5367. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5368. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5369. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5370. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5371. "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
  5372. "microsoft.extensions.caching.abstractions.nuspec",
  5373. "useSharedDesignerContext.txt"
  5374. ]
  5375. },
  5376. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  5377. "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  5378. "type": "package",
  5379. "path": "microsoft.extensions.caching.memory/8.0.0",
  5380. "files": [
  5381. ".nupkg.metadata",
  5382. ".signature.p7s",
  5383. "Icon.png",
  5384. "LICENSE.TXT",
  5385. "PACKAGE.md",
  5386. "THIRD-PARTY-NOTICES.TXT",
  5387. "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
  5388. "buildTransitive/net462/_._",
  5389. "buildTransitive/net6.0/_._",
  5390. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
  5391. "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
  5392. "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
  5393. "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
  5394. "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
  5395. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
  5396. "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
  5397. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
  5398. "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
  5399. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  5400. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  5401. "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
  5402. "microsoft.extensions.caching.memory.nuspec",
  5403. "useSharedDesignerContext.txt"
  5404. ]
  5405. },
  5406. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  5407. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  5408. "type": "package",
  5409. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  5410. "files": [
  5411. ".nupkg.metadata",
  5412. ".signature.p7s",
  5413. "Icon.png",
  5414. "LICENSE.TXT",
  5415. "PACKAGE.md",
  5416. "THIRD-PARTY-NOTICES.TXT",
  5417. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  5418. "buildTransitive/net462/_._",
  5419. "buildTransitive/net6.0/_._",
  5420. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  5421. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  5422. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  5423. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5424. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5425. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5426. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5427. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5428. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5429. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5430. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5431. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  5432. "microsoft.extensions.configuration.abstractions.nuspec",
  5433. "useSharedDesignerContext.txt"
  5434. ]
  5435. },
  5436. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  5437. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  5438. "type": "package",
  5439. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  5440. "files": [
  5441. ".nupkg.metadata",
  5442. ".signature.p7s",
  5443. "Icon.png",
  5444. "LICENSE.TXT",
  5445. "PACKAGE.md",
  5446. "THIRD-PARTY-NOTICES.TXT",
  5447. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  5448. "buildTransitive/net462/_._",
  5449. "buildTransitive/net6.0/_._",
  5450. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  5451. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  5452. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  5453. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  5454. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  5455. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  5456. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  5457. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  5458. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  5459. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  5460. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  5461. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  5462. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  5463. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  5464. "microsoft.extensions.dependencyinjection.nuspec",
  5465. "useSharedDesignerContext.txt"
  5466. ]
  5467. },
  5468. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  5469. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  5470. "type": "package",
  5471. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  5472. "files": [
  5473. ".nupkg.metadata",
  5474. ".signature.p7s",
  5475. "Icon.png",
  5476. "LICENSE.TXT",
  5477. "PACKAGE.md",
  5478. "THIRD-PARTY-NOTICES.TXT",
  5479. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  5480. "buildTransitive/net462/_._",
  5481. "buildTransitive/net6.0/_._",
  5482. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  5483. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5484. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5485. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5486. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5487. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5488. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5489. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5490. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5491. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5492. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5493. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5494. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5495. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  5496. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  5497. "useSharedDesignerContext.txt"
  5498. ]
  5499. },
  5500. "Microsoft.Extensions.DependencyModel/8.0.0": {
  5501. "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==",
  5502. "type": "package",
  5503. "path": "microsoft.extensions.dependencymodel/8.0.0",
  5504. "files": [
  5505. ".nupkg.metadata",
  5506. ".signature.p7s",
  5507. "Icon.png",
  5508. "LICENSE.TXT",
  5509. "PACKAGE.md",
  5510. "THIRD-PARTY-NOTICES.TXT",
  5511. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  5512. "buildTransitive/net462/_._",
  5513. "buildTransitive/net6.0/_._",
  5514. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  5515. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  5516. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  5517. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  5518. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  5519. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  5520. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  5521. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
  5522. "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
  5523. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  5524. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  5525. "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
  5526. "microsoft.extensions.dependencymodel.nuspec",
  5527. "useSharedDesignerContext.txt"
  5528. ]
  5529. },
  5530. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  5531. "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
  5532. "type": "package",
  5533. "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
  5534. "files": [
  5535. ".nupkg.metadata",
  5536. ".signature.p7s",
  5537. "Icon.png",
  5538. "LICENSE.TXT",
  5539. "PACKAGE.md",
  5540. "THIRD-PARTY-NOTICES.TXT",
  5541. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
  5542. "buildTransitive/net462/_._",
  5543. "buildTransitive/net6.0/_._",
  5544. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  5545. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5546. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5547. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5548. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5549. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5550. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5551. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5552. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5553. "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
  5554. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5555. "useSharedDesignerContext.txt"
  5556. ]
  5557. },
  5558. "Microsoft.Extensions.FileProviders.Embedded/8.0.0": {
  5559. "sha512": "TuRh62KcoOvaSDCbtHT8K0WYptZysYQHPRRNfOgqF7ZUtUL4O0WMV8RdxbtDFJDsg3jv9bgHwXbrgwTeI9+5uQ==",
  5560. "type": "package",
  5561. "path": "microsoft.extensions.fileproviders.embedded/8.0.0",
  5562. "files": [
  5563. ".nupkg.metadata",
  5564. ".signature.p7s",
  5565. "Icon.png",
  5566. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  5567. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  5568. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  5569. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  5570. "lib/net462/Microsoft.Extensions.FileProviders.Embedded.dll",
  5571. "lib/net462/Microsoft.Extensions.FileProviders.Embedded.xml",
  5572. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5573. "lib/net8.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5574. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5575. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5576. "microsoft.extensions.fileproviders.embedded.8.0.0.nupkg.sha512",
  5577. "microsoft.extensions.fileproviders.embedded.nuspec",
  5578. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  5579. ]
  5580. },
  5581. "Microsoft.Extensions.Identity.Core/8.0.0": {
  5582. "sha512": "hnXHyIQc+uc2uNMcIbr43+oNBAPEhMpW6lE8ux3MOegRz50WBna4AItlZDY7Y+Id1LLBbf73osUqeTw7CQ371w==",
  5583. "type": "package",
  5584. "path": "microsoft.extensions.identity.core/8.0.0",
  5585. "files": [
  5586. ".nupkg.metadata",
  5587. ".signature.p7s",
  5588. "Icon.png",
  5589. "THIRD-PARTY-NOTICES.TXT",
  5590. "lib/net462/Microsoft.Extensions.Identity.Core.dll",
  5591. "lib/net462/Microsoft.Extensions.Identity.Core.xml",
  5592. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll",
  5593. "lib/net8.0/Microsoft.Extensions.Identity.Core.xml",
  5594. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  5595. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  5596. "microsoft.extensions.identity.core.8.0.0.nupkg.sha512",
  5597. "microsoft.extensions.identity.core.nuspec"
  5598. ]
  5599. },
  5600. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  5601. "sha512": "DmDCpSpngZDBm44wVmxCeYs4HGJr/m32jMItp6pfb7KKtqWYw2vybHRg880j18k/eSFyM4v9uONsnEPgDdi9lg==",
  5602. "type": "package",
  5603. "path": "microsoft.extensions.identity.stores/8.0.0",
  5604. "files": [
  5605. ".nupkg.metadata",
  5606. ".signature.p7s",
  5607. "Icon.png",
  5608. "THIRD-PARTY-NOTICES.TXT",
  5609. "lib/net462/Microsoft.Extensions.Identity.Stores.dll",
  5610. "lib/net462/Microsoft.Extensions.Identity.Stores.xml",
  5611. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll",
  5612. "lib/net8.0/Microsoft.Extensions.Identity.Stores.xml",
  5613. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  5614. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  5615. "microsoft.extensions.identity.stores.8.0.0.nupkg.sha512",
  5616. "microsoft.extensions.identity.stores.nuspec"
  5617. ]
  5618. },
  5619. "Microsoft.Extensions.Logging/8.0.0": {
  5620. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  5621. "type": "package",
  5622. "path": "microsoft.extensions.logging/8.0.0",
  5623. "files": [
  5624. ".nupkg.metadata",
  5625. ".signature.p7s",
  5626. "Icon.png",
  5627. "LICENSE.TXT",
  5628. "PACKAGE.md",
  5629. "THIRD-PARTY-NOTICES.TXT",
  5630. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  5631. "buildTransitive/net462/_._",
  5632. "buildTransitive/net6.0/_._",
  5633. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  5634. "lib/net462/Microsoft.Extensions.Logging.dll",
  5635. "lib/net462/Microsoft.Extensions.Logging.xml",
  5636. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  5637. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  5638. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  5639. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  5640. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  5641. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  5642. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5643. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5644. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5645. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5646. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  5647. "microsoft.extensions.logging.nuspec",
  5648. "useSharedDesignerContext.txt"
  5649. ]
  5650. },
  5651. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  5652. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  5653. "type": "package",
  5654. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  5655. "files": [
  5656. ".nupkg.metadata",
  5657. ".signature.p7s",
  5658. "Icon.png",
  5659. "LICENSE.TXT",
  5660. "PACKAGE.md",
  5661. "THIRD-PARTY-NOTICES.TXT",
  5662. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  5663. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5664. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5665. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5666. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5667. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5668. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5669. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5670. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5671. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5672. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5673. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5674. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5675. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5676. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  5677. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5678. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5679. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5680. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5681. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5682. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5683. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5684. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5685. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5686. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5687. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5688. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5689. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5690. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  5691. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5692. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5693. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5694. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5695. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5696. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5697. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5698. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5699. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5700. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5701. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5702. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5703. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5704. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  5705. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  5706. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5707. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5708. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5709. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  5710. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  5711. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5712. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5713. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5714. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5715. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5716. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5717. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5718. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5719. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  5720. "microsoft.extensions.logging.abstractions.nuspec",
  5721. "useSharedDesignerContext.txt"
  5722. ]
  5723. },
  5724. "Microsoft.Extensions.Options/8.0.0": {
  5725. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  5726. "type": "package",
  5727. "path": "microsoft.extensions.options/8.0.0",
  5728. "files": [
  5729. ".nupkg.metadata",
  5730. ".signature.p7s",
  5731. "Icon.png",
  5732. "LICENSE.TXT",
  5733. "PACKAGE.md",
  5734. "THIRD-PARTY-NOTICES.TXT",
  5735. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  5736. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5737. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5738. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5739. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5740. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5741. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5742. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5743. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5744. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5745. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5746. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5747. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5748. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5749. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  5750. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  5751. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  5752. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  5753. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  5754. "lib/net462/Microsoft.Extensions.Options.dll",
  5755. "lib/net462/Microsoft.Extensions.Options.xml",
  5756. "lib/net6.0/Microsoft.Extensions.Options.dll",
  5757. "lib/net6.0/Microsoft.Extensions.Options.xml",
  5758. "lib/net7.0/Microsoft.Extensions.Options.dll",
  5759. "lib/net7.0/Microsoft.Extensions.Options.xml",
  5760. "lib/net8.0/Microsoft.Extensions.Options.dll",
  5761. "lib/net8.0/Microsoft.Extensions.Options.xml",
  5762. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5763. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5764. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  5765. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  5766. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  5767. "microsoft.extensions.options.nuspec",
  5768. "useSharedDesignerContext.txt"
  5769. ]
  5770. },
  5771. "Microsoft.Extensions.Primitives/8.0.0": {
  5772. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  5773. "type": "package",
  5774. "path": "microsoft.extensions.primitives/8.0.0",
  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.Primitives.targets",
  5783. "buildTransitive/net462/_._",
  5784. "buildTransitive/net6.0/_._",
  5785. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  5786. "lib/net462/Microsoft.Extensions.Primitives.dll",
  5787. "lib/net462/Microsoft.Extensions.Primitives.xml",
  5788. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  5789. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  5790. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  5791. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  5792. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  5793. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  5794. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5795. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5796. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  5797. "microsoft.extensions.primitives.nuspec",
  5798. "useSharedDesignerContext.txt"
  5799. ]
  5800. },
  5801. "Microsoft.Identity.Client/4.47.2": {
  5802. "sha512": "SPgesZRbXoDxg8Vv7k5Ou0ee7uupVw0E8ZCc4GKw25HANRLz1d5OSr0fvTVQRnEswo5Obk8qD4LOapYB+n5kzQ==",
  5803. "type": "package",
  5804. "path": "microsoft.identity.client/4.47.2",
  5805. "files": [
  5806. ".nupkg.metadata",
  5807. ".signature.p7s",
  5808. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  5809. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  5810. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  5811. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  5812. "lib/net45/Microsoft.Identity.Client.dll",
  5813. "lib/net45/Microsoft.Identity.Client.xml",
  5814. "lib/net461/Microsoft.Identity.Client.dll",
  5815. "lib/net461/Microsoft.Identity.Client.xml",
  5816. "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.dll",
  5817. "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.xml",
  5818. "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
  5819. "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
  5820. "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
  5821. "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
  5822. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  5823. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  5824. "lib/netstandard2.0/Microsoft.Identity.Client.dll",
  5825. "lib/netstandard2.0/Microsoft.Identity.Client.xml",
  5826. "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
  5827. "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
  5828. "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
  5829. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  5830. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  5831. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  5832. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  5833. "microsoft.identity.client.4.47.2.nupkg.sha512",
  5834. "microsoft.identity.client.nuspec"
  5835. ]
  5836. },
  5837. "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
  5838. "sha512": "zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==",
  5839. "type": "package",
  5840. "path": "microsoft.identity.client.extensions.msal/2.19.3",
  5841. "files": [
  5842. ".nupkg.metadata",
  5843. ".signature.p7s",
  5844. "lib/net45/Microsoft.Identity.Client.Extensions.Msal.dll",
  5845. "lib/net45/Microsoft.Identity.Client.Extensions.Msal.xml",
  5846. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll",
  5847. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.xml",
  5848. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  5849. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  5850. "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512",
  5851. "microsoft.identity.client.extensions.msal.nuspec"
  5852. ]
  5853. },
  5854. "Microsoft.IdentityModel.Abstractions/6.24.0": {
  5855. "sha512": "X6aBK56Ot15qKyG7X37KsPnrwah+Ka55NJWPppWVTDi8xWq7CJgeNw2XyaeHgE1o/mW4THwoabZkBbeG2TPBiw==",
  5856. "type": "package",
  5857. "path": "microsoft.identitymodel.abstractions/6.24.0",
  5858. "files": [
  5859. ".nupkg.metadata",
  5860. ".signature.p7s",
  5861. "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
  5862. "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
  5863. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  5864. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  5865. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  5866. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  5867. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  5868. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  5869. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  5870. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  5871. "microsoft.identitymodel.abstractions.6.24.0.nupkg.sha512",
  5872. "microsoft.identitymodel.abstractions.nuspec"
  5873. ]
  5874. },
  5875. "Microsoft.IdentityModel.JsonWebTokens/6.24.0": {
  5876. "sha512": "XDWrkThcxfuWp79AvAtg5f+uRS1BxkIbJnsG/e8VPzOWkYYuDg33emLjp5EWcwXYYIDsHnVZD/00kM/PYFQc/g==",
  5877. "type": "package",
  5878. "path": "microsoft.identitymodel.jsonwebtokens/6.24.0",
  5879. "files": [
  5880. ".nupkg.metadata",
  5881. ".signature.p7s",
  5882. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  5883. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  5884. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  5885. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  5886. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  5887. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  5888. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5889. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5890. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5891. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5892. "microsoft.identitymodel.jsonwebtokens.6.24.0.nupkg.sha512",
  5893. "microsoft.identitymodel.jsonwebtokens.nuspec"
  5894. ]
  5895. },
  5896. "Microsoft.IdentityModel.Logging/6.24.0": {
  5897. "sha512": "qLYWDOowM/zghmYKXw1yfYKlHOdS41i8t4hVXr9bSI90zHqhyhQh9GwVy8pENzs5wHeytU23DymluC9NtgYv7w==",
  5898. "type": "package",
  5899. "path": "microsoft.identitymodel.logging/6.24.0",
  5900. "files": [
  5901. ".nupkg.metadata",
  5902. ".signature.p7s",
  5903. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  5904. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  5905. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  5906. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  5907. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  5908. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  5909. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  5910. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  5911. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  5912. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  5913. "microsoft.identitymodel.logging.6.24.0.nupkg.sha512",
  5914. "microsoft.identitymodel.logging.nuspec"
  5915. ]
  5916. },
  5917. "Microsoft.IdentityModel.Protocols/6.24.0": {
  5918. "sha512": "+NzKCkvsQ8X1r/Ff74V7CFr9OsdMRaB6DsV+qpH7NNLdYJ8O4qHbmTnNEsjFcDmk/gVNDwhoL2gN5pkPVq0lwQ==",
  5919. "type": "package",
  5920. "path": "microsoft.identitymodel.protocols/6.24.0",
  5921. "files": [
  5922. ".nupkg.metadata",
  5923. ".signature.p7s",
  5924. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  5925. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  5926. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  5927. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  5928. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  5929. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  5930. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
  5931. "lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
  5932. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  5933. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  5934. "microsoft.identitymodel.protocols.6.24.0.nupkg.sha512",
  5935. "microsoft.identitymodel.protocols.nuspec"
  5936. ]
  5937. },
  5938. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.24.0": {
  5939. "sha512": "a/2RRrc8C9qaw8qdD9hv1ES9YKFgxaqr/SnwMSLbwQZJSUQDd4qx1K4EYgWaQWs73R+VXLyKSxN0f/uE9CsBiQ==",
  5940. "type": "package",
  5941. "path": "microsoft.identitymodel.protocols.openidconnect/6.24.0",
  5942. "files": [
  5943. ".nupkg.metadata",
  5944. ".signature.p7s",
  5945. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5946. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5947. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5948. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5949. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5950. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5951. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5952. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5953. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5954. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5955. "microsoft.identitymodel.protocols.openidconnect.6.24.0.nupkg.sha512",
  5956. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  5957. ]
  5958. },
  5959. "Microsoft.IdentityModel.Tokens/6.24.0": {
  5960. "sha512": "ZPqHi86UYuqJXJ7bLnlEctHKkPKT4lGUFbotoCNiXNCSL02emYlcxzGYsRGWWmbFEcYDMi2dcTLLYNzHqWOTsw==",
  5961. "type": "package",
  5962. "path": "microsoft.identitymodel.tokens/6.24.0",
  5963. "files": [
  5964. ".nupkg.metadata",
  5965. ".signature.p7s",
  5966. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5967. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5968. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5969. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5970. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  5971. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  5972. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  5973. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  5974. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5975. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5976. "microsoft.identitymodel.tokens.6.24.0.nupkg.sha512",
  5977. "microsoft.identitymodel.tokens.nuspec"
  5978. ]
  5979. },
  5980. "Microsoft.NET.StringTools/17.7.2": {
  5981. "sha512": "GDm2qPXJeWR4FSwY90zYZ+Wd0CN4FE+Nu2F57Vu8avatMzNQxV9WaVEBZFKbT4JLhNcXKc0CKBO50oVoRJR5BQ==",
  5982. "type": "package",
  5983. "path": "microsoft.net.stringtools/17.7.2",
  5984. "files": [
  5985. ".nupkg.metadata",
  5986. ".signature.p7s",
  5987. "MSBuild-NuGet-Icon.png",
  5988. "README.md",
  5989. "lib/net472/Microsoft.NET.StringTools.dll",
  5990. "lib/net472/Microsoft.NET.StringTools.pdb",
  5991. "lib/net472/Microsoft.NET.StringTools.xml",
  5992. "lib/net7.0/Microsoft.NET.StringTools.dll",
  5993. "lib/net7.0/Microsoft.NET.StringTools.pdb",
  5994. "lib/net7.0/Microsoft.NET.StringTools.xml",
  5995. "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
  5996. "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
  5997. "lib/netstandard2.0/Microsoft.NET.StringTools.xml",
  5998. "microsoft.net.stringtools.17.7.2.nupkg.sha512",
  5999. "microsoft.net.stringtools.nuspec",
  6000. "notices/THIRDPARTYNOTICES.txt",
  6001. "ref/net472/Microsoft.NET.StringTools.dll",
  6002. "ref/net472/Microsoft.NET.StringTools.xml",
  6003. "ref/net7.0/Microsoft.NET.StringTools.dll",
  6004. "ref/net7.0/Microsoft.NET.StringTools.xml",
  6005. "ref/netstandard2.0/Microsoft.NET.StringTools.dll",
  6006. "ref/netstandard2.0/Microsoft.NET.StringTools.xml"
  6007. ]
  6008. },
  6009. "Microsoft.NETCore.Platforms/1.1.0": {
  6010. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  6011. "type": "package",
  6012. "path": "microsoft.netcore.platforms/1.1.0",
  6013. "files": [
  6014. ".nupkg.metadata",
  6015. ".signature.p7s",
  6016. "ThirdPartyNotices.txt",
  6017. "dotnet_library_license.txt",
  6018. "lib/netstandard1.0/_._",
  6019. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  6020. "microsoft.netcore.platforms.nuspec",
  6021. "runtime.json"
  6022. ]
  6023. },
  6024. "Microsoft.NETCore.Targets/1.1.0": {
  6025. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  6026. "type": "package",
  6027. "path": "microsoft.netcore.targets/1.1.0",
  6028. "files": [
  6029. ".nupkg.metadata",
  6030. ".signature.p7s",
  6031. "ThirdPartyNotices.txt",
  6032. "dotnet_library_license.txt",
  6033. "lib/netstandard1.0/_._",
  6034. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  6035. "microsoft.netcore.targets.nuspec",
  6036. "runtime.json"
  6037. ]
  6038. },
  6039. "Microsoft.SqlServer.Server/1.0.0": {
  6040. "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  6041. "type": "package",
  6042. "path": "microsoft.sqlserver.server/1.0.0",
  6043. "files": [
  6044. ".nupkg.metadata",
  6045. ".signature.p7s",
  6046. "dotnet.png",
  6047. "lib/net46/Microsoft.SqlServer.Server.dll",
  6048. "lib/net46/Microsoft.SqlServer.Server.pdb",
  6049. "lib/net46/Microsoft.SqlServer.Server.xml",
  6050. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll",
  6051. "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb",
  6052. "lib/netstandard2.0/Microsoft.SqlServer.Server.xml",
  6053. "microsoft.sqlserver.server.1.0.0.nupkg.sha512",
  6054. "microsoft.sqlserver.server.nuspec"
  6055. ]
  6056. },
  6057. "Microsoft.VisualStudio.Web.CodeGeneration/8.0.0": {
  6058. "sha512": "D4drYk70SKMO+9NqIEIhOesO99SJ8VLRm/BSAI9ZBJvW9TIxp/n9I71fgMviI/WzMk3mWuyYHatxEZi5D4KIMQ==",
  6059. "type": "package",
  6060. "path": "microsoft.visualstudio.web.codegeneration/8.0.0",
  6061. "files": [
  6062. ".nupkg.metadata",
  6063. ".signature.p7s",
  6064. "Icon.png",
  6065. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  6066. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  6067. "microsoft.visualstudio.web.codegeneration.8.0.0.nupkg.sha512",
  6068. "microsoft.visualstudio.web.codegeneration.nuspec"
  6069. ]
  6070. },
  6071. "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.0": {
  6072. "sha512": "+w0vjOilZwtp7pZRH4hG0YC143zOD57mzCVvCJc07RKqOhFRJv8JclWfvV57AQ6wt8ZQEqQe+dut/rkjgq/kVQ==",
  6073. "type": "package",
  6074. "path": "microsoft.visualstudio.web.codegeneration.core/8.0.0",
  6075. "files": [
  6076. ".nupkg.metadata",
  6077. ".signature.p7s",
  6078. "Icon.png",
  6079. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  6080. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  6081. "microsoft.visualstudio.web.codegeneration.core.8.0.0.nupkg.sha512",
  6082. "microsoft.visualstudio.web.codegeneration.core.nuspec"
  6083. ]
  6084. },
  6085. "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.0": {
  6086. "sha512": "b+a6P95dw2zwxaYs5Nhh652Svrz5+8o/4PpuyOd7HYG5FK3Vb6RxMGBF6qi1DsWEkK0e6w6dNwS7Qs7GZH/7sw==",
  6087. "type": "package",
  6088. "path": "microsoft.visualstudio.web.codegeneration.design/8.0.0",
  6089. "files": [
  6090. ".nupkg.metadata",
  6091. ".signature.p7s",
  6092. "Icon.png",
  6093. "README.md",
  6094. "lib/net8.0/dotnet-aspnet-codegenerator-design.dll",
  6095. "lib/net8.0/dotnet-aspnet-codegenerator-design.xml",
  6096. "microsoft.visualstudio.web.codegeneration.design.8.0.0.nupkg.sha512",
  6097. "microsoft.visualstudio.web.codegeneration.design.nuspec"
  6098. ]
  6099. },
  6100. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.0": {
  6101. "sha512": "a3ek/NReRYLkukwidFmrjKosQnikjSODDKgTTtrNJaPMnnv/UcjoCf4h1vk0ntATZBf48eIqfJnSjIl5RBXSOg==",
  6102. "type": "package",
  6103. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/8.0.0",
  6104. "files": [
  6105. ".nupkg.metadata",
  6106. ".signature.p7s",
  6107. "Icon.png",
  6108. "Templates/DbContext/NewLocalDbContext.cshtml",
  6109. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  6110. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
  6111. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  6112. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.8.0.0.nupkg.sha512",
  6113. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
  6114. ]
  6115. },
  6116. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.0": {
  6117. "sha512": "h5q8c6xEpc1TCL4t8pHPJBgKxmxUY48Fny6NBTSBmanGZW+ygwUy89Z5w70oX99kVcWtxhg4reYBva9cYHrMgQ==",
  6118. "type": "package",
  6119. "path": "microsoft.visualstudio.web.codegeneration.templating/8.0.0",
  6120. "files": [
  6121. ".nupkg.metadata",
  6122. ".signature.p7s",
  6123. "Icon.png",
  6124. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  6125. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  6126. "microsoft.visualstudio.web.codegeneration.templating.8.0.0.nupkg.sha512",
  6127. "microsoft.visualstudio.web.codegeneration.templating.nuspec"
  6128. ]
  6129. },
  6130. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.0": {
  6131. "sha512": "wu8CBn8mj15YoygfjLAzpJkReFv9RdFoRupbr2BKgqEKNd/hKc2Q8k2at4gp2dmso1IMKfaSQwlrlM7I/RWgqA==",
  6132. "type": "package",
  6133. "path": "microsoft.visualstudio.web.codegeneration.utils/8.0.0",
  6134. "files": [
  6135. ".nupkg.metadata",
  6136. ".signature.p7s",
  6137. "Icon.png",
  6138. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  6139. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  6140. "microsoft.visualstudio.web.codegeneration.utils.8.0.0.nupkg.sha512",
  6141. "microsoft.visualstudio.web.codegeneration.utils.nuspec"
  6142. ]
  6143. },
  6144. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.0": {
  6145. "sha512": "6Ric/ghGqFUdG8ddsTPYXK7pyaFSwTl73ohTdBJQGS+awaW39kBzIllw/tbZ7LXCvVPwW3Z4xam+ovYt60i0CA==",
  6146. "type": "package",
  6147. "path": "microsoft.visualstudio.web.codegenerators.mvc/8.0.0",
  6148. "files": [
  6149. ".nupkg.metadata",
  6150. ".signature.p7s",
  6151. "Generators/ParameterDefinitions/area.json",
  6152. "Generators/ParameterDefinitions/blazor.json",
  6153. "Generators/ParameterDefinitions/controller.json",
  6154. "Generators/ParameterDefinitions/identity.json",
  6155. "Generators/ParameterDefinitions/minimalapi.json",
  6156. "Generators/ParameterDefinitions/razorpage.json",
  6157. "Generators/ParameterDefinitions/view.json",
  6158. "Icon.png",
  6159. "Templates/Blazor/Create.Interfaces.cs",
  6160. "Templates/Blazor/Create.cs",
  6161. "Templates/Blazor/Create.tt",
  6162. "Templates/Blazor/Delete.cs",
  6163. "Templates/Blazor/Delete.tt",
  6164. "Templates/Blazor/Details.cs",
  6165. "Templates/Blazor/Details.tt",
  6166. "Templates/Blazor/Edit.cs",
  6167. "Templates/Blazor/Edit.tt",
  6168. "Templates/Blazor/Index.cs",
  6169. "Templates/Blazor/Index.tt",
  6170. "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  6171. "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  6172. "Templates/Identity/Data/ApplicationDbContext.cshtml",
  6173. "Templates/Identity/Data/ApplicationUser.cshtml",
  6174. "Templates/Identity/IdentityHostingStartup.cshtml",
  6175. "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
  6176. "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
  6177. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6178. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
  6179. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6180. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6181. "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6182. "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
  6183. "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6184. "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
  6185. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6186. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6187. "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
  6188. "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
  6189. "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
  6190. "Templates/Identity/Pages/Account/Account.Login.cshtml",
  6191. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6192. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
  6193. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6194. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6195. "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
  6196. "Templates/Identity/Pages/Account/Account.Logout.cshtml",
  6197. "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
  6198. "Templates/Identity/Pages/Account/Account.Register.cshtml",
  6199. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6200. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
  6201. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6202. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6203. "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
  6204. "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
  6205. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6206. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6207. "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
  6208. "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
  6209. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6210. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6211. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6212. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6213. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6214. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6215. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6216. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6217. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6218. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6219. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6220. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6221. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6222. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6223. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6224. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6225. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6226. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6227. "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6228. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6229. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6230. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6231. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6232. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6233. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6234. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6235. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6236. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6237. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6238. "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6239. "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6240. "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6241. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6242. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml",
  6243. "Templates/Identity/Pages/Error.cs.cshtml",
  6244. "Templates/Identity/Pages/Error.cshtml",
  6245. "Templates/Identity/Pages/_Layout.cshtml",
  6246. "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
  6247. "Templates/Identity/Pages/_ViewImports.cshtml",
  6248. "Templates/Identity/Pages/_ViewStart.cshtml",
  6249. "Templates/Identity/ScaffoldingReadme.cshtml",
  6250. "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
  6251. "Templates/Identity/SupportPages._ViewImports.cshtml",
  6252. "Templates/Identity/SupportPages._ViewStart.cshtml",
  6253. "Templates/Identity/_LoginPartial.cshtml",
  6254. "Templates/Identity/wwwroot/css/site.css",
  6255. "Templates/Identity/wwwroot/favicon.ico",
  6256. "Templates/Identity/wwwroot/js/site.js",
  6257. "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
  6258. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  6259. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  6260. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  6261. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  6262. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
  6263. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
  6264. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
  6265. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
  6266. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  6267. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  6268. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  6269. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  6270. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
  6271. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
  6272. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
  6273. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
  6274. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
  6275. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
  6276. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
  6277. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
  6278. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
  6279. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
  6280. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
  6281. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
  6282. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6283. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6284. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6285. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6286. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
  6287. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
  6288. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
  6289. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
  6290. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  6291. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  6292. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  6293. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  6294. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
  6295. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
  6296. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
  6297. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
  6298. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6299. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  6300. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6301. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  6302. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6303. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6304. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6305. "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
  6306. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6307. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6308. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6309. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6310. "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
  6311. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
  6312. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
  6313. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
  6314. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
  6315. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
  6316. "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
  6317. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
  6318. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
  6319. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6320. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
  6321. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6322. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6323. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6324. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
  6325. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6326. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
  6327. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6328. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6329. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
  6330. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
  6331. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
  6332. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
  6333. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6334. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
  6335. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6336. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6337. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
  6338. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
  6339. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
  6340. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
  6341. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6342. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
  6343. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6344. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6345. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
  6346. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
  6347. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6348. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6349. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
  6350. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
  6351. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6352. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6353. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6354. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6355. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6356. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6357. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6358. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6359. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6360. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6361. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6362. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6363. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6364. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6365. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6366. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6367. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6368. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6369. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6370. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6371. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6372. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6373. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6374. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6375. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6376. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6377. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6378. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6379. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6380. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6381. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6382. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6383. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6384. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
  6385. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
  6386. "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
  6387. "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
  6388. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
  6389. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
  6390. "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
  6391. "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
  6392. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
  6393. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
  6394. "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
  6395. "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
  6396. "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
  6397. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
  6398. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
  6399. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
  6400. "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
  6401. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
  6402. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
  6403. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
  6404. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
  6405. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
  6406. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6407. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6408. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6409. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6410. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
  6411. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
  6412. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
  6413. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
  6414. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
  6415. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6416. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6417. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
  6418. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6419. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6420. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6421. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
  6422. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6423. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6424. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6425. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6426. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
  6427. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
  6428. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
  6429. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
  6430. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml",
  6431. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml",
  6432. "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml",
  6433. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml",
  6434. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml",
  6435. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6436. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml",
  6437. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6438. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6439. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6440. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml",
  6441. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6442. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml",
  6443. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6444. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6445. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml",
  6446. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml",
  6447. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml",
  6448. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml",
  6449. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6450. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml",
  6451. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6452. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6453. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml",
  6454. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml",
  6455. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml",
  6456. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml",
  6457. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6458. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml",
  6459. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6460. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6461. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml",
  6462. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml",
  6463. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6464. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6465. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml",
  6466. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml",
  6467. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6468. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6469. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6470. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6471. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6472. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6473. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6474. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6475. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6476. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6477. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6478. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6479. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6480. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6481. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6482. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6483. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6484. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6485. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6486. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6487. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6488. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6489. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6490. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6491. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6492. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6493. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6494. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6495. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6496. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6497. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6498. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6499. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6500. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml",
  6501. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml",
  6502. "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml",
  6503. "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml",
  6504. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml",
  6505. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml",
  6506. "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml",
  6507. "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml",
  6508. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml",
  6509. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml",
  6510. "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml",
  6511. "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css",
  6512. "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico",
  6513. "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js",
  6514. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE",
  6515. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  6516. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  6517. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  6518. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  6519. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  6520. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  6521. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  6522. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  6523. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6524. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6525. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6526. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6527. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  6528. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  6529. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  6530. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  6531. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6532. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  6533. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6534. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  6535. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6536. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6537. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6538. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md",
  6539. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6540. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6541. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6542. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6543. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt",
  6544. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js",
  6545. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js",
  6546. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map",
  6547. "Templates/MinimalApi/MinimalApi.cshtml",
  6548. "Templates/MinimalApi/MinimalApiEf.cshtml",
  6549. "Templates/MinimalApi/MinimalApiEfNoClass.cshtml",
  6550. "Templates/MinimalApi/MinimalApiNoClass.cshtml",
  6551. "Templates/MvcLayout/Error.cshtml",
  6552. "Templates/MvcLayout/_Layout.cshtml",
  6553. "Templates/RazorPageGenerator/Create.cshtml",
  6554. "Templates/RazorPageGenerator/CreatePageModel.cshtml",
  6555. "Templates/RazorPageGenerator/Delete.cshtml",
  6556. "Templates/RazorPageGenerator/DeletePageModel.cshtml",
  6557. "Templates/RazorPageGenerator/Details.cshtml",
  6558. "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
  6559. "Templates/RazorPageGenerator/Edit.cshtml",
  6560. "Templates/RazorPageGenerator/EditPageModel.cshtml",
  6561. "Templates/RazorPageGenerator/List.cshtml",
  6562. "Templates/RazorPageGenerator/ListPageModel.cshtml",
  6563. "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
  6564. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
  6565. "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
  6566. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
  6567. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
  6568. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
  6569. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
  6570. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
  6571. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
  6572. "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
  6573. "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
  6574. "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  6575. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml",
  6576. "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml",
  6577. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml",
  6578. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml",
  6579. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml",
  6580. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml",
  6581. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml",
  6582. "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml",
  6583. "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml",
  6584. "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml",
  6585. "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  6586. "Templates/Startup/ReadMe.cshtml",
  6587. "Templates/Startup/Startup.cshtml",
  6588. "Templates/ViewGenerator/Create.cshtml",
  6589. "Templates/ViewGenerator/Delete.cshtml",
  6590. "Templates/ViewGenerator/Details.cshtml",
  6591. "Templates/ViewGenerator/Edit.cshtml",
  6592. "Templates/ViewGenerator/Empty.cshtml",
  6593. "Templates/ViewGenerator/List.cshtml",
  6594. "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
  6595. "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
  6596. "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
  6597. "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
  6598. "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
  6599. "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
  6600. "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
  6601. "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  6602. "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml",
  6603. "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml",
  6604. "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml",
  6605. "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml",
  6606. "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml",
  6607. "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml",
  6608. "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  6609. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  6610. "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  6611. "lib/net8.0/blazorWebCrudChanges.json",
  6612. "lib/net8.0/bootstrap3_identitygeneratorfilesconfig.json",
  6613. "lib/net8.0/bootstrap4_identitygeneratorfilesconfig.json",
  6614. "lib/net8.0/bootstrap5_identitygeneratorfilesconfig.json",
  6615. "lib/net8.0/identityMinimalHostingChanges.json",
  6616. "lib/net8.0/minimalApiChanges.json",
  6617. "microsoft.visualstudio.web.codegenerators.mvc.8.0.0.nupkg.sha512",
  6618. "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
  6619. ]
  6620. },
  6621. "Microsoft.Win32.SystemEvents/7.0.0": {
  6622. "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
  6623. "type": "package",
  6624. "path": "microsoft.win32.systemevents/7.0.0",
  6625. "files": [
  6626. ".nupkg.metadata",
  6627. ".signature.p7s",
  6628. "Icon.png",
  6629. "LICENSE.TXT",
  6630. "THIRD-PARTY-NOTICES.TXT",
  6631. "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
  6632. "buildTransitive/net462/_._",
  6633. "buildTransitive/net6.0/_._",
  6634. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  6635. "lib/net462/Microsoft.Win32.SystemEvents.dll",
  6636. "lib/net462/Microsoft.Win32.SystemEvents.xml",
  6637. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6638. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6639. "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  6640. "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  6641. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  6642. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  6643. "microsoft.win32.systemevents.7.0.0.nupkg.sha512",
  6644. "microsoft.win32.systemevents.nuspec",
  6645. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6646. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6647. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  6648. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  6649. "useSharedDesignerContext.txt"
  6650. ]
  6651. },
  6652. "Mono.TextTemplating/2.3.1": {
  6653. "sha512": "pqYwzNqDL0QK1JFpAjpI/NPqyqLGpHLvVmA5Ec0LaSnbIDtEXxu0td16uunegb7c8xAnlcm4qkbIYUP5FfrFpA==",
  6654. "type": "package",
  6655. "path": "mono.texttemplating/2.3.1",
  6656. "files": [
  6657. ".nupkg.metadata",
  6658. ".signature.p7s",
  6659. "lib/net472/Mono.TextTemplating.dll",
  6660. "lib/netcoreapp2.1/Mono.TextTemplating.dll",
  6661. "lib/netcoreapp3.1/Mono.TextTemplating.dll",
  6662. "lib/netstandard2.0/Mono.TextTemplating.dll",
  6663. "mono.texttemplating.2.3.1.nupkg.sha512",
  6664. "mono.texttemplating.nuspec",
  6665. "readme.md"
  6666. ]
  6667. },
  6668. "Newtonsoft.Json/13.0.3": {
  6669. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  6670. "type": "package",
  6671. "path": "newtonsoft.json/13.0.3",
  6672. "files": [
  6673. ".nupkg.metadata",
  6674. ".signature.p7s",
  6675. "LICENSE.md",
  6676. "README.md",
  6677. "lib/net20/Newtonsoft.Json.dll",
  6678. "lib/net20/Newtonsoft.Json.xml",
  6679. "lib/net35/Newtonsoft.Json.dll",
  6680. "lib/net35/Newtonsoft.Json.xml",
  6681. "lib/net40/Newtonsoft.Json.dll",
  6682. "lib/net40/Newtonsoft.Json.xml",
  6683. "lib/net45/Newtonsoft.Json.dll",
  6684. "lib/net45/Newtonsoft.Json.xml",
  6685. "lib/net6.0/Newtonsoft.Json.dll",
  6686. "lib/net6.0/Newtonsoft.Json.xml",
  6687. "lib/netstandard1.0/Newtonsoft.Json.dll",
  6688. "lib/netstandard1.0/Newtonsoft.Json.xml",
  6689. "lib/netstandard1.3/Newtonsoft.Json.dll",
  6690. "lib/netstandard1.3/Newtonsoft.Json.xml",
  6691. "lib/netstandard2.0/Newtonsoft.Json.dll",
  6692. "lib/netstandard2.0/Newtonsoft.Json.xml",
  6693. "newtonsoft.json.13.0.3.nupkg.sha512",
  6694. "newtonsoft.json.nuspec",
  6695. "packageIcon.png"
  6696. ]
  6697. },
  6698. "NuGet.Common/6.3.1": {
  6699. "sha512": "/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==",
  6700. "type": "package",
  6701. "path": "nuget.common/6.3.1",
  6702. "files": [
  6703. ".nupkg.metadata",
  6704. ".signature.p7s",
  6705. "README.md",
  6706. "icon.png",
  6707. "lib/net472/NuGet.Common.dll",
  6708. "lib/net472/NuGet.Common.xml",
  6709. "lib/netstandard2.0/NuGet.Common.dll",
  6710. "lib/netstandard2.0/NuGet.Common.xml",
  6711. "nuget.common.6.3.1.nupkg.sha512",
  6712. "nuget.common.nuspec"
  6713. ]
  6714. },
  6715. "NuGet.Configuration/6.3.1": {
  6716. "sha512": "ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==",
  6717. "type": "package",
  6718. "path": "nuget.configuration/6.3.1",
  6719. "files": [
  6720. ".nupkg.metadata",
  6721. ".signature.p7s",
  6722. "README.md",
  6723. "icon.png",
  6724. "lib/net472/NuGet.Configuration.dll",
  6725. "lib/net472/NuGet.Configuration.xml",
  6726. "lib/netstandard2.0/NuGet.Configuration.dll",
  6727. "lib/netstandard2.0/NuGet.Configuration.xml",
  6728. "nuget.configuration.6.3.1.nupkg.sha512",
  6729. "nuget.configuration.nuspec"
  6730. ]
  6731. },
  6732. "NuGet.DependencyResolver.Core/6.3.1": {
  6733. "sha512": "wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==",
  6734. "type": "package",
  6735. "path": "nuget.dependencyresolver.core/6.3.1",
  6736. "files": [
  6737. ".nupkg.metadata",
  6738. ".signature.p7s",
  6739. "README.md",
  6740. "icon.png",
  6741. "lib/net472/NuGet.DependencyResolver.Core.dll",
  6742. "lib/net472/NuGet.DependencyResolver.Core.xml",
  6743. "lib/net5.0/NuGet.DependencyResolver.Core.dll",
  6744. "lib/net5.0/NuGet.DependencyResolver.Core.xml",
  6745. "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll",
  6746. "lib/netstandard2.0/NuGet.DependencyResolver.Core.xml",
  6747. "nuget.dependencyresolver.core.6.3.1.nupkg.sha512",
  6748. "nuget.dependencyresolver.core.nuspec"
  6749. ]
  6750. },
  6751. "NuGet.Frameworks/6.3.1": {
  6752. "sha512": "Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==",
  6753. "type": "package",
  6754. "path": "nuget.frameworks/6.3.1",
  6755. "files": [
  6756. ".nupkg.metadata",
  6757. ".signature.p7s",
  6758. "README.md",
  6759. "icon.png",
  6760. "lib/net472/NuGet.Frameworks.dll",
  6761. "lib/net472/NuGet.Frameworks.xml",
  6762. "lib/netstandard2.0/NuGet.Frameworks.dll",
  6763. "lib/netstandard2.0/NuGet.Frameworks.xml",
  6764. "nuget.frameworks.6.3.1.nupkg.sha512",
  6765. "nuget.frameworks.nuspec"
  6766. ]
  6767. },
  6768. "NuGet.LibraryModel/6.3.1": {
  6769. "sha512": "aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==",
  6770. "type": "package",
  6771. "path": "nuget.librarymodel/6.3.1",
  6772. "files": [
  6773. ".nupkg.metadata",
  6774. ".signature.p7s",
  6775. "README.md",
  6776. "icon.png",
  6777. "lib/net472/NuGet.LibraryModel.dll",
  6778. "lib/net472/NuGet.LibraryModel.xml",
  6779. "lib/netstandard2.0/NuGet.LibraryModel.dll",
  6780. "lib/netstandard2.0/NuGet.LibraryModel.xml",
  6781. "nuget.librarymodel.6.3.1.nupkg.sha512",
  6782. "nuget.librarymodel.nuspec"
  6783. ]
  6784. },
  6785. "NuGet.Packaging/6.3.1": {
  6786. "sha512": "/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==",
  6787. "type": "package",
  6788. "path": "nuget.packaging/6.3.1",
  6789. "files": [
  6790. ".nupkg.metadata",
  6791. ".signature.p7s",
  6792. "README.md",
  6793. "icon.png",
  6794. "lib/net472/NuGet.Packaging.dll",
  6795. "lib/net472/NuGet.Packaging.xml",
  6796. "lib/net5.0/NuGet.Packaging.dll",
  6797. "lib/net5.0/NuGet.Packaging.xml",
  6798. "lib/netstandard2.0/NuGet.Packaging.dll",
  6799. "lib/netstandard2.0/NuGet.Packaging.xml",
  6800. "nuget.packaging.6.3.1.nupkg.sha512",
  6801. "nuget.packaging.nuspec"
  6802. ]
  6803. },
  6804. "NuGet.ProjectModel/6.3.1": {
  6805. "sha512": "TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==",
  6806. "type": "package",
  6807. "path": "nuget.projectmodel/6.3.1",
  6808. "files": [
  6809. ".nupkg.metadata",
  6810. ".signature.p7s",
  6811. "README.md",
  6812. "icon.png",
  6813. "lib/net472/NuGet.ProjectModel.dll",
  6814. "lib/net472/NuGet.ProjectModel.xml",
  6815. "lib/net5.0/NuGet.ProjectModel.dll",
  6816. "lib/net5.0/NuGet.ProjectModel.xml",
  6817. "lib/netstandard2.0/NuGet.ProjectModel.dll",
  6818. "lib/netstandard2.0/NuGet.ProjectModel.xml",
  6819. "nuget.projectmodel.6.3.1.nupkg.sha512",
  6820. "nuget.projectmodel.nuspec"
  6821. ]
  6822. },
  6823. "NuGet.Protocol/6.3.1": {
  6824. "sha512": "1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==",
  6825. "type": "package",
  6826. "path": "nuget.protocol/6.3.1",
  6827. "files": [
  6828. ".nupkg.metadata",
  6829. ".signature.p7s",
  6830. "README.md",
  6831. "icon.png",
  6832. "lib/net472/NuGet.Protocol.dll",
  6833. "lib/net472/NuGet.Protocol.xml",
  6834. "lib/net5.0/NuGet.Protocol.dll",
  6835. "lib/net5.0/NuGet.Protocol.xml",
  6836. "lib/netstandard2.0/NuGet.Protocol.dll",
  6837. "lib/netstandard2.0/NuGet.Protocol.xml",
  6838. "nuget.protocol.6.3.1.nupkg.sha512",
  6839. "nuget.protocol.nuspec"
  6840. ]
  6841. },
  6842. "NuGet.Versioning/6.3.1": {
  6843. "sha512": "T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==",
  6844. "type": "package",
  6845. "path": "nuget.versioning/6.3.1",
  6846. "files": [
  6847. ".nupkg.metadata",
  6848. ".signature.p7s",
  6849. "README.md",
  6850. "icon.png",
  6851. "lib/net472/NuGet.Versioning.dll",
  6852. "lib/net472/NuGet.Versioning.xml",
  6853. "lib/netstandard2.0/NuGet.Versioning.dll",
  6854. "lib/netstandard2.0/NuGet.Versioning.xml",
  6855. "nuget.versioning.6.3.1.nupkg.sha512",
  6856. "nuget.versioning.nuspec"
  6857. ]
  6858. },
  6859. "System.CodeDom/8.0.0": {
  6860. "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==",
  6861. "type": "package",
  6862. "path": "system.codedom/8.0.0",
  6863. "files": [
  6864. ".nupkg.metadata",
  6865. ".signature.p7s",
  6866. "Icon.png",
  6867. "LICENSE.TXT",
  6868. "THIRD-PARTY-NOTICES.TXT",
  6869. "buildTransitive/net461/System.CodeDom.targets",
  6870. "buildTransitive/net462/_._",
  6871. "buildTransitive/net6.0/_._",
  6872. "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
  6873. "lib/net462/System.CodeDom.dll",
  6874. "lib/net462/System.CodeDom.xml",
  6875. "lib/net6.0/System.CodeDom.dll",
  6876. "lib/net6.0/System.CodeDom.xml",
  6877. "lib/net7.0/System.CodeDom.dll",
  6878. "lib/net7.0/System.CodeDom.xml",
  6879. "lib/net8.0/System.CodeDom.dll",
  6880. "lib/net8.0/System.CodeDom.xml",
  6881. "lib/netstandard2.0/System.CodeDom.dll",
  6882. "lib/netstandard2.0/System.CodeDom.xml",
  6883. "system.codedom.8.0.0.nupkg.sha512",
  6884. "system.codedom.nuspec",
  6885. "useSharedDesignerContext.txt"
  6886. ]
  6887. },
  6888. "System.Collections.Immutable/7.0.0": {
  6889. "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
  6890. "type": "package",
  6891. "path": "system.collections.immutable/7.0.0",
  6892. "files": [
  6893. ".nupkg.metadata",
  6894. ".signature.p7s",
  6895. "Icon.png",
  6896. "LICENSE.TXT",
  6897. "README.md",
  6898. "THIRD-PARTY-NOTICES.TXT",
  6899. "buildTransitive/net461/System.Collections.Immutable.targets",
  6900. "buildTransitive/net462/_._",
  6901. "buildTransitive/net6.0/_._",
  6902. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  6903. "lib/net462/System.Collections.Immutable.dll",
  6904. "lib/net462/System.Collections.Immutable.xml",
  6905. "lib/net6.0/System.Collections.Immutable.dll",
  6906. "lib/net6.0/System.Collections.Immutable.xml",
  6907. "lib/net7.0/System.Collections.Immutable.dll",
  6908. "lib/net7.0/System.Collections.Immutable.xml",
  6909. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6910. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6911. "system.collections.immutable.7.0.0.nupkg.sha512",
  6912. "system.collections.immutable.nuspec",
  6913. "useSharedDesignerContext.txt"
  6914. ]
  6915. },
  6916. "System.Composition/7.0.0": {
  6917. "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
  6918. "type": "package",
  6919. "path": "system.composition/7.0.0",
  6920. "files": [
  6921. ".nupkg.metadata",
  6922. ".signature.p7s",
  6923. "Icon.png",
  6924. "LICENSE.TXT",
  6925. "THIRD-PARTY-NOTICES.TXT",
  6926. "buildTransitive/net461/System.Composition.targets",
  6927. "buildTransitive/net462/_._",
  6928. "buildTransitive/net6.0/_._",
  6929. "buildTransitive/netcoreapp2.0/System.Composition.targets",
  6930. "lib/net461/_._",
  6931. "lib/netcoreapp2.0/_._",
  6932. "lib/netstandard2.0/_._",
  6933. "system.composition.7.0.0.nupkg.sha512",
  6934. "system.composition.nuspec",
  6935. "useSharedDesignerContext.txt"
  6936. ]
  6937. },
  6938. "System.Composition.AttributedModel/7.0.0": {
  6939. "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
  6940. "type": "package",
  6941. "path": "system.composition.attributedmodel/7.0.0",
  6942. "files": [
  6943. ".nupkg.metadata",
  6944. ".signature.p7s",
  6945. "Icon.png",
  6946. "LICENSE.TXT",
  6947. "THIRD-PARTY-NOTICES.TXT",
  6948. "buildTransitive/net461/System.Composition.AttributedModel.targets",
  6949. "buildTransitive/net462/_._",
  6950. "buildTransitive/net6.0/_._",
  6951. "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
  6952. "lib/net462/System.Composition.AttributedModel.dll",
  6953. "lib/net462/System.Composition.AttributedModel.xml",
  6954. "lib/net6.0/System.Composition.AttributedModel.dll",
  6955. "lib/net6.0/System.Composition.AttributedModel.xml",
  6956. "lib/net7.0/System.Composition.AttributedModel.dll",
  6957. "lib/net7.0/System.Composition.AttributedModel.xml",
  6958. "lib/netstandard2.0/System.Composition.AttributedModel.dll",
  6959. "lib/netstandard2.0/System.Composition.AttributedModel.xml",
  6960. "system.composition.attributedmodel.7.0.0.nupkg.sha512",
  6961. "system.composition.attributedmodel.nuspec",
  6962. "useSharedDesignerContext.txt"
  6963. ]
  6964. },
  6965. "System.Composition.Convention/7.0.0": {
  6966. "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
  6967. "type": "package",
  6968. "path": "system.composition.convention/7.0.0",
  6969. "files": [
  6970. ".nupkg.metadata",
  6971. ".signature.p7s",
  6972. "Icon.png",
  6973. "LICENSE.TXT",
  6974. "THIRD-PARTY-NOTICES.TXT",
  6975. "buildTransitive/net461/System.Composition.Convention.targets",
  6976. "buildTransitive/net462/_._",
  6977. "buildTransitive/net6.0/_._",
  6978. "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
  6979. "lib/net462/System.Composition.Convention.dll",
  6980. "lib/net462/System.Composition.Convention.xml",
  6981. "lib/net6.0/System.Composition.Convention.dll",
  6982. "lib/net6.0/System.Composition.Convention.xml",
  6983. "lib/net7.0/System.Composition.Convention.dll",
  6984. "lib/net7.0/System.Composition.Convention.xml",
  6985. "lib/netstandard2.0/System.Composition.Convention.dll",
  6986. "lib/netstandard2.0/System.Composition.Convention.xml",
  6987. "system.composition.convention.7.0.0.nupkg.sha512",
  6988. "system.composition.convention.nuspec",
  6989. "useSharedDesignerContext.txt"
  6990. ]
  6991. },
  6992. "System.Composition.Hosting/7.0.0": {
  6993. "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
  6994. "type": "package",
  6995. "path": "system.composition.hosting/7.0.0",
  6996. "files": [
  6997. ".nupkg.metadata",
  6998. ".signature.p7s",
  6999. "Icon.png",
  7000. "LICENSE.TXT",
  7001. "THIRD-PARTY-NOTICES.TXT",
  7002. "buildTransitive/net461/System.Composition.Hosting.targets",
  7003. "buildTransitive/net462/_._",
  7004. "buildTransitive/net6.0/_._",
  7005. "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
  7006. "lib/net462/System.Composition.Hosting.dll",
  7007. "lib/net462/System.Composition.Hosting.xml",
  7008. "lib/net6.0/System.Composition.Hosting.dll",
  7009. "lib/net6.0/System.Composition.Hosting.xml",
  7010. "lib/net7.0/System.Composition.Hosting.dll",
  7011. "lib/net7.0/System.Composition.Hosting.xml",
  7012. "lib/netstandard2.0/System.Composition.Hosting.dll",
  7013. "lib/netstandard2.0/System.Composition.Hosting.xml",
  7014. "system.composition.hosting.7.0.0.nupkg.sha512",
  7015. "system.composition.hosting.nuspec",
  7016. "useSharedDesignerContext.txt"
  7017. ]
  7018. },
  7019. "System.Composition.Runtime/7.0.0": {
  7020. "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
  7021. "type": "package",
  7022. "path": "system.composition.runtime/7.0.0",
  7023. "files": [
  7024. ".nupkg.metadata",
  7025. ".signature.p7s",
  7026. "Icon.png",
  7027. "LICENSE.TXT",
  7028. "THIRD-PARTY-NOTICES.TXT",
  7029. "buildTransitive/net461/System.Composition.Runtime.targets",
  7030. "buildTransitive/net462/_._",
  7031. "buildTransitive/net6.0/_._",
  7032. "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
  7033. "lib/net462/System.Composition.Runtime.dll",
  7034. "lib/net462/System.Composition.Runtime.xml",
  7035. "lib/net6.0/System.Composition.Runtime.dll",
  7036. "lib/net6.0/System.Composition.Runtime.xml",
  7037. "lib/net7.0/System.Composition.Runtime.dll",
  7038. "lib/net7.0/System.Composition.Runtime.xml",
  7039. "lib/netstandard2.0/System.Composition.Runtime.dll",
  7040. "lib/netstandard2.0/System.Composition.Runtime.xml",
  7041. "system.composition.runtime.7.0.0.nupkg.sha512",
  7042. "system.composition.runtime.nuspec",
  7043. "useSharedDesignerContext.txt"
  7044. ]
  7045. },
  7046. "System.Composition.TypedParts/7.0.0": {
  7047. "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
  7048. "type": "package",
  7049. "path": "system.composition.typedparts/7.0.0",
  7050. "files": [
  7051. ".nupkg.metadata",
  7052. ".signature.p7s",
  7053. "Icon.png",
  7054. "LICENSE.TXT",
  7055. "THIRD-PARTY-NOTICES.TXT",
  7056. "buildTransitive/net461/System.Composition.TypedParts.targets",
  7057. "buildTransitive/net462/_._",
  7058. "buildTransitive/net6.0/_._",
  7059. "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
  7060. "lib/net462/System.Composition.TypedParts.dll",
  7061. "lib/net462/System.Composition.TypedParts.xml",
  7062. "lib/net6.0/System.Composition.TypedParts.dll",
  7063. "lib/net6.0/System.Composition.TypedParts.xml",
  7064. "lib/net7.0/System.Composition.TypedParts.dll",
  7065. "lib/net7.0/System.Composition.TypedParts.xml",
  7066. "lib/netstandard2.0/System.Composition.TypedParts.dll",
  7067. "lib/netstandard2.0/System.Composition.TypedParts.xml",
  7068. "system.composition.typedparts.7.0.0.nupkg.sha512",
  7069. "system.composition.typedparts.nuspec",
  7070. "useSharedDesignerContext.txt"
  7071. ]
  7072. },
  7073. "System.Configuration.ConfigurationManager/7.0.0": {
  7074. "sha512": "WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==",
  7075. "type": "package",
  7076. "path": "system.configuration.configurationmanager/7.0.0",
  7077. "files": [
  7078. ".nupkg.metadata",
  7079. ".signature.p7s",
  7080. "Icon.png",
  7081. "LICENSE.TXT",
  7082. "THIRD-PARTY-NOTICES.TXT",
  7083. "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
  7084. "buildTransitive/net462/_._",
  7085. "buildTransitive/net6.0/_._",
  7086. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  7087. "lib/net462/System.Configuration.ConfigurationManager.dll",
  7088. "lib/net462/System.Configuration.ConfigurationManager.xml",
  7089. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  7090. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  7091. "lib/net7.0/System.Configuration.ConfigurationManager.dll",
  7092. "lib/net7.0/System.Configuration.ConfigurationManager.xml",
  7093. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7094. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  7095. "system.configuration.configurationmanager.7.0.0.nupkg.sha512",
  7096. "system.configuration.configurationmanager.nuspec",
  7097. "useSharedDesignerContext.txt"
  7098. ]
  7099. },
  7100. "System.Data.DataSetExtensions/4.5.0": {
  7101. "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
  7102. "type": "package",
  7103. "path": "system.data.datasetextensions/4.5.0",
  7104. "files": [
  7105. ".nupkg.metadata",
  7106. ".signature.p7s",
  7107. "LICENSE.TXT",
  7108. "THIRD-PARTY-NOTICES.TXT",
  7109. "lib/net45/_._",
  7110. "lib/netstandard2.0/System.Data.DataSetExtensions.dll",
  7111. "ref/net45/_._",
  7112. "ref/netstandard2.0/System.Data.DataSetExtensions.dll",
  7113. "system.data.datasetextensions.4.5.0.nupkg.sha512",
  7114. "system.data.datasetextensions.nuspec",
  7115. "useSharedDesignerContext.txt",
  7116. "version.txt"
  7117. ]
  7118. },
  7119. "System.Diagnostics.DiagnosticSource/6.0.0": {
  7120. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  7121. "type": "package",
  7122. "path": "system.diagnostics.diagnosticsource/6.0.0",
  7123. "files": [
  7124. ".nupkg.metadata",
  7125. ".signature.p7s",
  7126. "Icon.png",
  7127. "LICENSE.TXT",
  7128. "THIRD-PARTY-NOTICES.TXT",
  7129. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  7130. "buildTransitive/netcoreapp3.1/_._",
  7131. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  7132. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  7133. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  7134. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  7135. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  7136. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  7137. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  7138. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  7139. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  7140. "system.diagnostics.diagnosticsource.nuspec",
  7141. "useSharedDesignerContext.txt"
  7142. ]
  7143. },
  7144. "System.Diagnostics.EventLog/7.0.0": {
  7145. "sha512": "eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==",
  7146. "type": "package",
  7147. "path": "system.diagnostics.eventlog/7.0.0",
  7148. "files": [
  7149. ".nupkg.metadata",
  7150. ".signature.p7s",
  7151. "Icon.png",
  7152. "LICENSE.TXT",
  7153. "THIRD-PARTY-NOTICES.TXT",
  7154. "buildTransitive/net461/System.Diagnostics.EventLog.targets",
  7155. "buildTransitive/net462/_._",
  7156. "buildTransitive/net6.0/_._",
  7157. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  7158. "lib/net462/System.Diagnostics.EventLog.dll",
  7159. "lib/net462/System.Diagnostics.EventLog.xml",
  7160. "lib/net6.0/System.Diagnostics.EventLog.dll",
  7161. "lib/net6.0/System.Diagnostics.EventLog.xml",
  7162. "lib/net7.0/System.Diagnostics.EventLog.dll",
  7163. "lib/net7.0/System.Diagnostics.EventLog.xml",
  7164. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  7165. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  7166. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  7167. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  7168. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  7169. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
  7170. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
  7171. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
  7172. "system.diagnostics.eventlog.7.0.0.nupkg.sha512",
  7173. "system.diagnostics.eventlog.nuspec",
  7174. "useSharedDesignerContext.txt"
  7175. ]
  7176. },
  7177. "System.Drawing.Common/7.0.0": {
  7178. "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
  7179. "type": "package",
  7180. "path": "system.drawing.common/7.0.0",
  7181. "files": [
  7182. ".nupkg.metadata",
  7183. ".signature.p7s",
  7184. "Icon.png",
  7185. "LICENSE.TXT",
  7186. "THIRD-PARTY-NOTICES.TXT",
  7187. "buildTransitive/net461/System.Drawing.Common.targets",
  7188. "buildTransitive/net462/_._",
  7189. "buildTransitive/net6.0/_._",
  7190. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  7191. "lib/MonoAndroid10/_._",
  7192. "lib/MonoTouch10/_._",
  7193. "lib/net462/System.Drawing.Common.dll",
  7194. "lib/net462/System.Drawing.Common.xml",
  7195. "lib/net6.0/System.Drawing.Common.dll",
  7196. "lib/net6.0/System.Drawing.Common.xml",
  7197. "lib/net7.0/System.Drawing.Common.dll",
  7198. "lib/net7.0/System.Drawing.Common.xml",
  7199. "lib/netstandard2.0/System.Drawing.Common.dll",
  7200. "lib/netstandard2.0/System.Drawing.Common.xml",
  7201. "lib/xamarinios10/_._",
  7202. "lib/xamarinmac20/_._",
  7203. "lib/xamarintvos10/_._",
  7204. "lib/xamarinwatchos10/_._",
  7205. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  7206. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  7207. "runtimes/win/lib/net7.0/System.Drawing.Common.dll",
  7208. "runtimes/win/lib/net7.0/System.Drawing.Common.xml",
  7209. "system.drawing.common.7.0.0.nupkg.sha512",
  7210. "system.drawing.common.nuspec",
  7211. "useSharedDesignerContext.txt"
  7212. ]
  7213. },
  7214. "System.Formats.Asn1/5.0.0": {
  7215. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  7216. "type": "package",
  7217. "path": "system.formats.asn1/5.0.0",
  7218. "files": [
  7219. ".nupkg.metadata",
  7220. ".signature.p7s",
  7221. "Icon.png",
  7222. "LICENSE.TXT",
  7223. "THIRD-PARTY-NOTICES.TXT",
  7224. "lib/net461/System.Formats.Asn1.dll",
  7225. "lib/net461/System.Formats.Asn1.xml",
  7226. "lib/netstandard2.0/System.Formats.Asn1.dll",
  7227. "lib/netstandard2.0/System.Formats.Asn1.xml",
  7228. "system.formats.asn1.5.0.0.nupkg.sha512",
  7229. "system.formats.asn1.nuspec",
  7230. "useSharedDesignerContext.txt",
  7231. "version.txt"
  7232. ]
  7233. },
  7234. "System.IdentityModel.Tokens.Jwt/6.24.0": {
  7235. "sha512": "Qibsj9MPWq8S/C0FgvmsLfIlHLE7ay0MJIaAmK94ivN3VyDdglqReed5qMvdQhSL0BzK6v0Z1wB/sD88zVu6Jw==",
  7236. "type": "package",
  7237. "path": "system.identitymodel.tokens.jwt/6.24.0",
  7238. "files": [
  7239. ".nupkg.metadata",
  7240. ".signature.p7s",
  7241. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  7242. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  7243. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  7244. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  7245. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  7246. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  7247. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  7248. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  7249. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7250. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7251. "system.identitymodel.tokens.jwt.6.24.0.nupkg.sha512",
  7252. "system.identitymodel.tokens.jwt.nuspec"
  7253. ]
  7254. },
  7255. "System.IO.Pipelines/7.0.0": {
  7256. "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
  7257. "type": "package",
  7258. "path": "system.io.pipelines/7.0.0",
  7259. "files": [
  7260. ".nupkg.metadata",
  7261. ".signature.p7s",
  7262. "Icon.png",
  7263. "LICENSE.TXT",
  7264. "THIRD-PARTY-NOTICES.TXT",
  7265. "buildTransitive/net461/System.IO.Pipelines.targets",
  7266. "buildTransitive/net462/_._",
  7267. "buildTransitive/net6.0/_._",
  7268. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  7269. "lib/net462/System.IO.Pipelines.dll",
  7270. "lib/net462/System.IO.Pipelines.xml",
  7271. "lib/net6.0/System.IO.Pipelines.dll",
  7272. "lib/net6.0/System.IO.Pipelines.xml",
  7273. "lib/net7.0/System.IO.Pipelines.dll",
  7274. "lib/net7.0/System.IO.Pipelines.xml",
  7275. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7276. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7277. "system.io.pipelines.7.0.0.nupkg.sha512",
  7278. "system.io.pipelines.nuspec",
  7279. "useSharedDesignerContext.txt"
  7280. ]
  7281. },
  7282. "System.Management/8.0.0": {
  7283. "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==",
  7284. "type": "package",
  7285. "path": "system.management/8.0.0",
  7286. "files": [
  7287. ".nupkg.metadata",
  7288. ".signature.p7s",
  7289. "Icon.png",
  7290. "LICENSE.TXT",
  7291. "PACKAGE.md",
  7292. "THIRD-PARTY-NOTICES.TXT",
  7293. "buildTransitive/net6.0/_._",
  7294. "buildTransitive/netcoreapp2.0/System.Management.targets",
  7295. "lib/net462/_._",
  7296. "lib/net6.0/System.Management.dll",
  7297. "lib/net6.0/System.Management.xml",
  7298. "lib/net7.0/System.Management.dll",
  7299. "lib/net7.0/System.Management.xml",
  7300. "lib/net8.0/System.Management.dll",
  7301. "lib/net8.0/System.Management.xml",
  7302. "lib/netstandard2.0/System.Management.dll",
  7303. "lib/netstandard2.0/System.Management.xml",
  7304. "runtimes/win/lib/net6.0/System.Management.dll",
  7305. "runtimes/win/lib/net6.0/System.Management.xml",
  7306. "runtimes/win/lib/net7.0/System.Management.dll",
  7307. "runtimes/win/lib/net7.0/System.Management.xml",
  7308. "runtimes/win/lib/net8.0/System.Management.dll",
  7309. "runtimes/win/lib/net8.0/System.Management.xml",
  7310. "system.management.8.0.0.nupkg.sha512",
  7311. "system.management.nuspec",
  7312. "useSharedDesignerContext.txt"
  7313. ]
  7314. },
  7315. "System.Memory/4.5.4": {
  7316. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  7317. "type": "package",
  7318. "path": "system.memory/4.5.4",
  7319. "files": [
  7320. ".nupkg.metadata",
  7321. ".signature.p7s",
  7322. "LICENSE.TXT",
  7323. "THIRD-PARTY-NOTICES.TXT",
  7324. "lib/net461/System.Memory.dll",
  7325. "lib/net461/System.Memory.xml",
  7326. "lib/netcoreapp2.1/_._",
  7327. "lib/netstandard1.1/System.Memory.dll",
  7328. "lib/netstandard1.1/System.Memory.xml",
  7329. "lib/netstandard2.0/System.Memory.dll",
  7330. "lib/netstandard2.0/System.Memory.xml",
  7331. "ref/netcoreapp2.1/_._",
  7332. "system.memory.4.5.4.nupkg.sha512",
  7333. "system.memory.nuspec",
  7334. "useSharedDesignerContext.txt",
  7335. "version.txt"
  7336. ]
  7337. },
  7338. "System.Memory.Data/1.0.2": {
  7339. "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  7340. "type": "package",
  7341. "path": "system.memory.data/1.0.2",
  7342. "files": [
  7343. ".nupkg.metadata",
  7344. ".signature.p7s",
  7345. "CHANGELOG.md",
  7346. "DotNetPackageIcon.png",
  7347. "README.md",
  7348. "lib/net461/System.Memory.Data.dll",
  7349. "lib/net461/System.Memory.Data.xml",
  7350. "lib/netstandard2.0/System.Memory.Data.dll",
  7351. "lib/netstandard2.0/System.Memory.Data.xml",
  7352. "system.memory.data.1.0.2.nupkg.sha512",
  7353. "system.memory.data.nuspec"
  7354. ]
  7355. },
  7356. "System.Numerics.Vectors/4.5.0": {
  7357. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  7358. "type": "package",
  7359. "path": "system.numerics.vectors/4.5.0",
  7360. "files": [
  7361. ".nupkg.metadata",
  7362. ".signature.p7s",
  7363. "LICENSE.TXT",
  7364. "THIRD-PARTY-NOTICES.TXT",
  7365. "lib/MonoAndroid10/_._",
  7366. "lib/MonoTouch10/_._",
  7367. "lib/net46/System.Numerics.Vectors.dll",
  7368. "lib/net46/System.Numerics.Vectors.xml",
  7369. "lib/netcoreapp2.0/_._",
  7370. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7371. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7372. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  7373. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  7374. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7375. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7376. "lib/uap10.0.16299/_._",
  7377. "lib/xamarinios10/_._",
  7378. "lib/xamarinmac20/_._",
  7379. "lib/xamarintvos10/_._",
  7380. "lib/xamarinwatchos10/_._",
  7381. "ref/MonoAndroid10/_._",
  7382. "ref/MonoTouch10/_._",
  7383. "ref/net45/System.Numerics.Vectors.dll",
  7384. "ref/net45/System.Numerics.Vectors.xml",
  7385. "ref/net46/System.Numerics.Vectors.dll",
  7386. "ref/net46/System.Numerics.Vectors.xml",
  7387. "ref/netcoreapp2.0/_._",
  7388. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7389. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7390. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  7391. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  7392. "ref/uap10.0.16299/_._",
  7393. "ref/xamarinios10/_._",
  7394. "ref/xamarinmac20/_._",
  7395. "ref/xamarintvos10/_._",
  7396. "ref/xamarinwatchos10/_._",
  7397. "system.numerics.vectors.4.5.0.nupkg.sha512",
  7398. "system.numerics.vectors.nuspec",
  7399. "useSharedDesignerContext.txt",
  7400. "version.txt"
  7401. ]
  7402. },
  7403. "System.Reflection.Metadata/7.0.0": {
  7404. "sha512": "MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
  7405. "type": "package",
  7406. "path": "system.reflection.metadata/7.0.0",
  7407. "files": [
  7408. ".nupkg.metadata",
  7409. ".signature.p7s",
  7410. "Icon.png",
  7411. "LICENSE.TXT",
  7412. "README.md",
  7413. "THIRD-PARTY-NOTICES.TXT",
  7414. "buildTransitive/net461/System.Reflection.Metadata.targets",
  7415. "buildTransitive/net462/_._",
  7416. "buildTransitive/net6.0/_._",
  7417. "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
  7418. "lib/net462/System.Reflection.Metadata.dll",
  7419. "lib/net462/System.Reflection.Metadata.xml",
  7420. "lib/net6.0/System.Reflection.Metadata.dll",
  7421. "lib/net6.0/System.Reflection.Metadata.xml",
  7422. "lib/net7.0/System.Reflection.Metadata.dll",
  7423. "lib/net7.0/System.Reflection.Metadata.xml",
  7424. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7425. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7426. "system.reflection.metadata.7.0.0.nupkg.sha512",
  7427. "system.reflection.metadata.nuspec",
  7428. "useSharedDesignerContext.txt"
  7429. ]
  7430. },
  7431. "System.Reflection.MetadataLoadContext/7.0.0": {
  7432. "sha512": "z9PvtMJra5hK8n+g0wmPtaG7HQRZpTmIPRw5Z0LEemlcdQMHuTD5D7OAY/fZuuz1L9db++QOcDF0gJTLpbMtZQ==",
  7433. "type": "package",
  7434. "path": "system.reflection.metadataloadcontext/7.0.0",
  7435. "files": [
  7436. ".nupkg.metadata",
  7437. ".signature.p7s",
  7438. "Icon.png",
  7439. "LICENSE.TXT",
  7440. "README.md",
  7441. "THIRD-PARTY-NOTICES.TXT",
  7442. "buildTransitive/net461/System.Reflection.MetadataLoadContext.targets",
  7443. "buildTransitive/net462/_._",
  7444. "buildTransitive/net6.0/_._",
  7445. "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets",
  7446. "lib/net462/System.Reflection.MetadataLoadContext.dll",
  7447. "lib/net462/System.Reflection.MetadataLoadContext.xml",
  7448. "lib/net6.0/System.Reflection.MetadataLoadContext.dll",
  7449. "lib/net6.0/System.Reflection.MetadataLoadContext.xml",
  7450. "lib/net7.0/System.Reflection.MetadataLoadContext.dll",
  7451. "lib/net7.0/System.Reflection.MetadataLoadContext.xml",
  7452. "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll",
  7453. "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml",
  7454. "system.reflection.metadataloadcontext.7.0.0.nupkg.sha512",
  7455. "system.reflection.metadataloadcontext.nuspec",
  7456. "useSharedDesignerContext.txt"
  7457. ]
  7458. },
  7459. "System.Runtime/4.3.0": {
  7460. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7461. "type": "package",
  7462. "path": "system.runtime/4.3.0",
  7463. "files": [
  7464. ".nupkg.metadata",
  7465. ".signature.p7s",
  7466. "ThirdPartyNotices.txt",
  7467. "dotnet_library_license.txt",
  7468. "lib/MonoAndroid10/_._",
  7469. "lib/MonoTouch10/_._",
  7470. "lib/net45/_._",
  7471. "lib/net462/System.Runtime.dll",
  7472. "lib/portable-net45+win8+wp80+wpa81/_._",
  7473. "lib/win8/_._",
  7474. "lib/wp80/_._",
  7475. "lib/wpa81/_._",
  7476. "lib/xamarinios10/_._",
  7477. "lib/xamarinmac20/_._",
  7478. "lib/xamarintvos10/_._",
  7479. "lib/xamarinwatchos10/_._",
  7480. "ref/MonoAndroid10/_._",
  7481. "ref/MonoTouch10/_._",
  7482. "ref/net45/_._",
  7483. "ref/net462/System.Runtime.dll",
  7484. "ref/netcore50/System.Runtime.dll",
  7485. "ref/netcore50/System.Runtime.xml",
  7486. "ref/netcore50/de/System.Runtime.xml",
  7487. "ref/netcore50/es/System.Runtime.xml",
  7488. "ref/netcore50/fr/System.Runtime.xml",
  7489. "ref/netcore50/it/System.Runtime.xml",
  7490. "ref/netcore50/ja/System.Runtime.xml",
  7491. "ref/netcore50/ko/System.Runtime.xml",
  7492. "ref/netcore50/ru/System.Runtime.xml",
  7493. "ref/netcore50/zh-hans/System.Runtime.xml",
  7494. "ref/netcore50/zh-hant/System.Runtime.xml",
  7495. "ref/netstandard1.0/System.Runtime.dll",
  7496. "ref/netstandard1.0/System.Runtime.xml",
  7497. "ref/netstandard1.0/de/System.Runtime.xml",
  7498. "ref/netstandard1.0/es/System.Runtime.xml",
  7499. "ref/netstandard1.0/fr/System.Runtime.xml",
  7500. "ref/netstandard1.0/it/System.Runtime.xml",
  7501. "ref/netstandard1.0/ja/System.Runtime.xml",
  7502. "ref/netstandard1.0/ko/System.Runtime.xml",
  7503. "ref/netstandard1.0/ru/System.Runtime.xml",
  7504. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7505. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7506. "ref/netstandard1.2/System.Runtime.dll",
  7507. "ref/netstandard1.2/System.Runtime.xml",
  7508. "ref/netstandard1.2/de/System.Runtime.xml",
  7509. "ref/netstandard1.2/es/System.Runtime.xml",
  7510. "ref/netstandard1.2/fr/System.Runtime.xml",
  7511. "ref/netstandard1.2/it/System.Runtime.xml",
  7512. "ref/netstandard1.2/ja/System.Runtime.xml",
  7513. "ref/netstandard1.2/ko/System.Runtime.xml",
  7514. "ref/netstandard1.2/ru/System.Runtime.xml",
  7515. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7516. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7517. "ref/netstandard1.3/System.Runtime.dll",
  7518. "ref/netstandard1.3/System.Runtime.xml",
  7519. "ref/netstandard1.3/de/System.Runtime.xml",
  7520. "ref/netstandard1.3/es/System.Runtime.xml",
  7521. "ref/netstandard1.3/fr/System.Runtime.xml",
  7522. "ref/netstandard1.3/it/System.Runtime.xml",
  7523. "ref/netstandard1.3/ja/System.Runtime.xml",
  7524. "ref/netstandard1.3/ko/System.Runtime.xml",
  7525. "ref/netstandard1.3/ru/System.Runtime.xml",
  7526. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7527. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7528. "ref/netstandard1.5/System.Runtime.dll",
  7529. "ref/netstandard1.5/System.Runtime.xml",
  7530. "ref/netstandard1.5/de/System.Runtime.xml",
  7531. "ref/netstandard1.5/es/System.Runtime.xml",
  7532. "ref/netstandard1.5/fr/System.Runtime.xml",
  7533. "ref/netstandard1.5/it/System.Runtime.xml",
  7534. "ref/netstandard1.5/ja/System.Runtime.xml",
  7535. "ref/netstandard1.5/ko/System.Runtime.xml",
  7536. "ref/netstandard1.5/ru/System.Runtime.xml",
  7537. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7538. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7539. "ref/portable-net45+win8+wp80+wpa81/_._",
  7540. "ref/win8/_._",
  7541. "ref/wp80/_._",
  7542. "ref/wpa81/_._",
  7543. "ref/xamarinios10/_._",
  7544. "ref/xamarinmac20/_._",
  7545. "ref/xamarintvos10/_._",
  7546. "ref/xamarinwatchos10/_._",
  7547. "system.runtime.4.3.0.nupkg.sha512",
  7548. "system.runtime.nuspec"
  7549. ]
  7550. },
  7551. "System.Runtime.Caching/6.0.0": {
  7552. "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  7553. "type": "package",
  7554. "path": "system.runtime.caching/6.0.0",
  7555. "files": [
  7556. ".nupkg.metadata",
  7557. ".signature.p7s",
  7558. "Icon.png",
  7559. "LICENSE.TXT",
  7560. "THIRD-PARTY-NOTICES.TXT",
  7561. "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
  7562. "buildTransitive/netcoreapp3.1/_._",
  7563. "lib/MonoAndroid10/_._",
  7564. "lib/MonoTouch10/_._",
  7565. "lib/net461/_._",
  7566. "lib/net6.0/System.Runtime.Caching.dll",
  7567. "lib/net6.0/System.Runtime.Caching.xml",
  7568. "lib/netcoreapp3.1/System.Runtime.Caching.dll",
  7569. "lib/netcoreapp3.1/System.Runtime.Caching.xml",
  7570. "lib/netstandard2.0/System.Runtime.Caching.dll",
  7571. "lib/netstandard2.0/System.Runtime.Caching.xml",
  7572. "lib/xamarinios10/_._",
  7573. "lib/xamarinmac20/_._",
  7574. "lib/xamarintvos10/_._",
  7575. "lib/xamarinwatchos10/_._",
  7576. "runtimes/win/lib/net461/_._",
  7577. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
  7578. "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
  7579. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
  7580. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
  7581. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  7582. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  7583. "system.runtime.caching.6.0.0.nupkg.sha512",
  7584. "system.runtime.caching.nuspec",
  7585. "useSharedDesignerContext.txt"
  7586. ]
  7587. },
  7588. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7589. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7590. "type": "package",
  7591. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7592. "files": [
  7593. ".nupkg.metadata",
  7594. ".signature.p7s",
  7595. "Icon.png",
  7596. "LICENSE.TXT",
  7597. "THIRD-PARTY-NOTICES.TXT",
  7598. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  7599. "buildTransitive/netcoreapp3.1/_._",
  7600. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7601. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7602. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  7603. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  7604. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  7605. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  7606. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7607. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7608. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  7609. "system.runtime.compilerservices.unsafe.nuspec",
  7610. "useSharedDesignerContext.txt"
  7611. ]
  7612. },
  7613. "System.Security.Cryptography.Cng/5.0.0": {
  7614. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  7615. "type": "package",
  7616. "path": "system.security.cryptography.cng/5.0.0",
  7617. "files": [
  7618. ".nupkg.metadata",
  7619. ".signature.p7s",
  7620. "Icon.png",
  7621. "LICENSE.TXT",
  7622. "THIRD-PARTY-NOTICES.TXT",
  7623. "lib/MonoAndroid10/_._",
  7624. "lib/MonoTouch10/_._",
  7625. "lib/net46/System.Security.Cryptography.Cng.dll",
  7626. "lib/net461/System.Security.Cryptography.Cng.dll",
  7627. "lib/net461/System.Security.Cryptography.Cng.xml",
  7628. "lib/net462/System.Security.Cryptography.Cng.dll",
  7629. "lib/net462/System.Security.Cryptography.Cng.xml",
  7630. "lib/net47/System.Security.Cryptography.Cng.dll",
  7631. "lib/net47/System.Security.Cryptography.Cng.xml",
  7632. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7633. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7634. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7635. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7636. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7637. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7638. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7639. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7640. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7641. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7642. "lib/uap10.0.16299/_._",
  7643. "lib/xamarinios10/_._",
  7644. "lib/xamarinmac20/_._",
  7645. "lib/xamarintvos10/_._",
  7646. "lib/xamarinwatchos10/_._",
  7647. "ref/MonoAndroid10/_._",
  7648. "ref/MonoTouch10/_._",
  7649. "ref/net46/System.Security.Cryptography.Cng.dll",
  7650. "ref/net461/System.Security.Cryptography.Cng.dll",
  7651. "ref/net461/System.Security.Cryptography.Cng.xml",
  7652. "ref/net462/System.Security.Cryptography.Cng.dll",
  7653. "ref/net462/System.Security.Cryptography.Cng.xml",
  7654. "ref/net47/System.Security.Cryptography.Cng.dll",
  7655. "ref/net47/System.Security.Cryptography.Cng.xml",
  7656. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7657. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7658. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7659. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7660. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7661. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7662. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7663. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7664. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7665. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7666. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7667. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7668. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7669. "ref/uap10.0.16299/_._",
  7670. "ref/xamarinios10/_._",
  7671. "ref/xamarinmac20/_._",
  7672. "ref/xamarintvos10/_._",
  7673. "ref/xamarinwatchos10/_._",
  7674. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7675. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7676. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  7677. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7678. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  7679. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7680. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  7681. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7682. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7683. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7684. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7685. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7686. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7687. "runtimes/win/lib/uap10.0.16299/_._",
  7688. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  7689. "system.security.cryptography.cng.nuspec",
  7690. "useSharedDesignerContext.txt",
  7691. "version.txt"
  7692. ]
  7693. },
  7694. "System.Security.Cryptography.Pkcs/5.0.0": {
  7695. "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
  7696. "type": "package",
  7697. "path": "system.security.cryptography.pkcs/5.0.0",
  7698. "files": [
  7699. ".nupkg.metadata",
  7700. ".signature.p7s",
  7701. "Icon.png",
  7702. "LICENSE.TXT",
  7703. "THIRD-PARTY-NOTICES.TXT",
  7704. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  7705. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  7706. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  7707. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7708. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7709. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7710. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7711. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7712. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7713. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7714. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7715. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  7716. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  7717. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  7718. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7719. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  7720. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7721. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7722. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7723. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7724. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7725. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7726. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7727. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  7728. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  7729. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  7730. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7731. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7732. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7733. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7734. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7735. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7736. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7737. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7738. "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
  7739. "system.security.cryptography.pkcs.nuspec",
  7740. "useSharedDesignerContext.txt",
  7741. "version.txt"
  7742. ]
  7743. },
  7744. "System.Security.Cryptography.ProtectedData/7.0.0": {
  7745. "sha512": "xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==",
  7746. "type": "package",
  7747. "path": "system.security.cryptography.protecteddata/7.0.0",
  7748. "files": [
  7749. ".nupkg.metadata",
  7750. ".signature.p7s",
  7751. "Icon.png",
  7752. "LICENSE.TXT",
  7753. "THIRD-PARTY-NOTICES.TXT",
  7754. "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
  7755. "buildTransitive/net462/_._",
  7756. "buildTransitive/net6.0/_._",
  7757. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  7758. "lib/MonoAndroid10/_._",
  7759. "lib/MonoTouch10/_._",
  7760. "lib/net462/System.Security.Cryptography.ProtectedData.dll",
  7761. "lib/net462/System.Security.Cryptography.ProtectedData.xml",
  7762. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7763. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7764. "lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
  7765. "lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
  7766. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7767. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7768. "lib/xamarinios10/_._",
  7769. "lib/xamarinmac20/_._",
  7770. "lib/xamarintvos10/_._",
  7771. "lib/xamarinwatchos10/_._",
  7772. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  7773. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  7774. "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
  7775. "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
  7776. "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512",
  7777. "system.security.cryptography.protecteddata.nuspec",
  7778. "useSharedDesignerContext.txt"
  7779. ]
  7780. },
  7781. "System.Security.Permissions/7.0.0": {
  7782. "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==",
  7783. "type": "package",
  7784. "path": "system.security.permissions/7.0.0",
  7785. "files": [
  7786. ".nupkg.metadata",
  7787. ".signature.p7s",
  7788. "Icon.png",
  7789. "LICENSE.TXT",
  7790. "THIRD-PARTY-NOTICES.TXT",
  7791. "buildTransitive/net461/System.Security.Permissions.targets",
  7792. "buildTransitive/net462/_._",
  7793. "buildTransitive/net6.0/_._",
  7794. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  7795. "lib/net462/System.Security.Permissions.dll",
  7796. "lib/net462/System.Security.Permissions.xml",
  7797. "lib/net6.0/System.Security.Permissions.dll",
  7798. "lib/net6.0/System.Security.Permissions.xml",
  7799. "lib/net7.0/System.Security.Permissions.dll",
  7800. "lib/net7.0/System.Security.Permissions.xml",
  7801. "lib/netstandard2.0/System.Security.Permissions.dll",
  7802. "lib/netstandard2.0/System.Security.Permissions.xml",
  7803. "system.security.permissions.7.0.0.nupkg.sha512",
  7804. "system.security.permissions.nuspec",
  7805. "useSharedDesignerContext.txt"
  7806. ]
  7807. },
  7808. "System.Security.Principal.Windows/5.0.0": {
  7809. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7810. "type": "package",
  7811. "path": "system.security.principal.windows/5.0.0",
  7812. "files": [
  7813. ".nupkg.metadata",
  7814. ".signature.p7s",
  7815. "Icon.png",
  7816. "LICENSE.TXT",
  7817. "THIRD-PARTY-NOTICES.TXT",
  7818. "lib/net46/System.Security.Principal.Windows.dll",
  7819. "lib/net461/System.Security.Principal.Windows.dll",
  7820. "lib/net461/System.Security.Principal.Windows.xml",
  7821. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7822. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7823. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7824. "lib/uap10.0.16299/_._",
  7825. "ref/net46/System.Security.Principal.Windows.dll",
  7826. "ref/net461/System.Security.Principal.Windows.dll",
  7827. "ref/net461/System.Security.Principal.Windows.xml",
  7828. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7829. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7830. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7831. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7832. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7833. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7834. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7835. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7836. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7837. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7838. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7839. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7840. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7841. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7842. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7843. "ref/uap10.0.16299/_._",
  7844. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7845. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7846. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7847. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7848. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7849. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7850. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7851. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7852. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7853. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7854. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7855. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7856. "runtimes/win/lib/uap10.0.16299/_._",
  7857. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7858. "system.security.principal.windows.nuspec",
  7859. "useSharedDesignerContext.txt",
  7860. "version.txt"
  7861. ]
  7862. },
  7863. "System.Text.Encoding/4.3.0": {
  7864. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7865. "type": "package",
  7866. "path": "system.text.encoding/4.3.0",
  7867. "files": [
  7868. ".nupkg.metadata",
  7869. ".signature.p7s",
  7870. "ThirdPartyNotices.txt",
  7871. "dotnet_library_license.txt",
  7872. "lib/MonoAndroid10/_._",
  7873. "lib/MonoTouch10/_._",
  7874. "lib/net45/_._",
  7875. "lib/portable-net45+win8+wp8+wpa81/_._",
  7876. "lib/win8/_._",
  7877. "lib/wp80/_._",
  7878. "lib/wpa81/_._",
  7879. "lib/xamarinios10/_._",
  7880. "lib/xamarinmac20/_._",
  7881. "lib/xamarintvos10/_._",
  7882. "lib/xamarinwatchos10/_._",
  7883. "ref/MonoAndroid10/_._",
  7884. "ref/MonoTouch10/_._",
  7885. "ref/net45/_._",
  7886. "ref/netcore50/System.Text.Encoding.dll",
  7887. "ref/netcore50/System.Text.Encoding.xml",
  7888. "ref/netcore50/de/System.Text.Encoding.xml",
  7889. "ref/netcore50/es/System.Text.Encoding.xml",
  7890. "ref/netcore50/fr/System.Text.Encoding.xml",
  7891. "ref/netcore50/it/System.Text.Encoding.xml",
  7892. "ref/netcore50/ja/System.Text.Encoding.xml",
  7893. "ref/netcore50/ko/System.Text.Encoding.xml",
  7894. "ref/netcore50/ru/System.Text.Encoding.xml",
  7895. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7896. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7897. "ref/netstandard1.0/System.Text.Encoding.dll",
  7898. "ref/netstandard1.0/System.Text.Encoding.xml",
  7899. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7900. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7901. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7902. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7903. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7904. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7905. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7906. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7907. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7908. "ref/netstandard1.3/System.Text.Encoding.dll",
  7909. "ref/netstandard1.3/System.Text.Encoding.xml",
  7910. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7911. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7912. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7913. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7914. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7915. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7916. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7917. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7918. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7919. "ref/portable-net45+win8+wp8+wpa81/_._",
  7920. "ref/win8/_._",
  7921. "ref/wp80/_._",
  7922. "ref/wpa81/_._",
  7923. "ref/xamarinios10/_._",
  7924. "ref/xamarinmac20/_._",
  7925. "ref/xamarintvos10/_._",
  7926. "ref/xamarinwatchos10/_._",
  7927. "system.text.encoding.4.3.0.nupkg.sha512",
  7928. "system.text.encoding.nuspec"
  7929. ]
  7930. },
  7931. "System.Text.Encoding.CodePages/6.0.0": {
  7932. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  7933. "type": "package",
  7934. "path": "system.text.encoding.codepages/6.0.0",
  7935. "files": [
  7936. ".nupkg.metadata",
  7937. ".signature.p7s",
  7938. "Icon.png",
  7939. "LICENSE.TXT",
  7940. "THIRD-PARTY-NOTICES.TXT",
  7941. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  7942. "buildTransitive/netcoreapp3.1/_._",
  7943. "lib/MonoAndroid10/_._",
  7944. "lib/MonoTouch10/_._",
  7945. "lib/net461/System.Text.Encoding.CodePages.dll",
  7946. "lib/net461/System.Text.Encoding.CodePages.xml",
  7947. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  7948. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  7949. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  7950. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  7951. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7952. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7953. "lib/xamarinios10/_._",
  7954. "lib/xamarinmac20/_._",
  7955. "lib/xamarintvos10/_._",
  7956. "lib/xamarinwatchos10/_._",
  7957. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7958. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7959. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  7960. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  7961. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  7962. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  7963. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7964. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7965. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  7966. "system.text.encoding.codepages.nuspec",
  7967. "useSharedDesignerContext.txt"
  7968. ]
  7969. },
  7970. "System.Text.Encodings.Web/8.0.0": {
  7971. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  7972. "type": "package",
  7973. "path": "system.text.encodings.web/8.0.0",
  7974. "files": [
  7975. ".nupkg.metadata",
  7976. ".signature.p7s",
  7977. "Icon.png",
  7978. "LICENSE.TXT",
  7979. "THIRD-PARTY-NOTICES.TXT",
  7980. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  7981. "buildTransitive/net462/_._",
  7982. "buildTransitive/net6.0/_._",
  7983. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  7984. "lib/net462/System.Text.Encodings.Web.dll",
  7985. "lib/net462/System.Text.Encodings.Web.xml",
  7986. "lib/net6.0/System.Text.Encodings.Web.dll",
  7987. "lib/net6.0/System.Text.Encodings.Web.xml",
  7988. "lib/net7.0/System.Text.Encodings.Web.dll",
  7989. "lib/net7.0/System.Text.Encodings.Web.xml",
  7990. "lib/net8.0/System.Text.Encodings.Web.dll",
  7991. "lib/net8.0/System.Text.Encodings.Web.xml",
  7992. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7993. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7994. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  7995. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  7996. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  7997. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  7998. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  7999. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  8000. "system.text.encodings.web.8.0.0.nupkg.sha512",
  8001. "system.text.encodings.web.nuspec",
  8002. "useSharedDesignerContext.txt"
  8003. ]
  8004. },
  8005. "System.Text.Json/8.0.0": {
  8006. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  8007. "type": "package",
  8008. "path": "system.text.json/8.0.0",
  8009. "files": [
  8010. ".nupkg.metadata",
  8011. ".signature.p7s",
  8012. "Icon.png",
  8013. "LICENSE.TXT",
  8014. "PACKAGE.md",
  8015. "THIRD-PARTY-NOTICES.TXT",
  8016. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  8017. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8018. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8019. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8020. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8021. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8022. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8023. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8024. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8025. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8026. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8027. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8028. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8029. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8030. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  8031. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8032. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8033. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8034. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8035. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8036. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8037. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8038. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8039. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8040. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8041. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8042. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8043. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8044. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  8045. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8046. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8047. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8048. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8049. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8050. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8051. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8052. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8053. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8054. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8055. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8056. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8057. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8058. "buildTransitive/net461/System.Text.Json.targets",
  8059. "buildTransitive/net462/System.Text.Json.targets",
  8060. "buildTransitive/net6.0/System.Text.Json.targets",
  8061. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  8062. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  8063. "lib/net462/System.Text.Json.dll",
  8064. "lib/net462/System.Text.Json.xml",
  8065. "lib/net6.0/System.Text.Json.dll",
  8066. "lib/net6.0/System.Text.Json.xml",
  8067. "lib/net7.0/System.Text.Json.dll",
  8068. "lib/net7.0/System.Text.Json.xml",
  8069. "lib/net8.0/System.Text.Json.dll",
  8070. "lib/net8.0/System.Text.Json.xml",
  8071. "lib/netstandard2.0/System.Text.Json.dll",
  8072. "lib/netstandard2.0/System.Text.Json.xml",
  8073. "system.text.json.8.0.0.nupkg.sha512",
  8074. "system.text.json.nuspec",
  8075. "useSharedDesignerContext.txt"
  8076. ]
  8077. },
  8078. "System.Threading.Channels/7.0.0": {
  8079. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8080. "type": "package",
  8081. "path": "system.threading.channels/7.0.0",
  8082. "files": [
  8083. ".nupkg.metadata",
  8084. ".signature.p7s",
  8085. "Icon.png",
  8086. "LICENSE.TXT",
  8087. "THIRD-PARTY-NOTICES.TXT",
  8088. "buildTransitive/net461/System.Threading.Channels.targets",
  8089. "buildTransitive/net462/_._",
  8090. "buildTransitive/net6.0/_._",
  8091. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8092. "lib/net462/System.Threading.Channels.dll",
  8093. "lib/net462/System.Threading.Channels.xml",
  8094. "lib/net6.0/System.Threading.Channels.dll",
  8095. "lib/net6.0/System.Threading.Channels.xml",
  8096. "lib/net7.0/System.Threading.Channels.dll",
  8097. "lib/net7.0/System.Threading.Channels.xml",
  8098. "lib/netstandard2.0/System.Threading.Channels.dll",
  8099. "lib/netstandard2.0/System.Threading.Channels.xml",
  8100. "lib/netstandard2.1/System.Threading.Channels.dll",
  8101. "lib/netstandard2.1/System.Threading.Channels.xml",
  8102. "system.threading.channels.7.0.0.nupkg.sha512",
  8103. "system.threading.channels.nuspec",
  8104. "useSharedDesignerContext.txt"
  8105. ]
  8106. },
  8107. "System.Threading.Tasks.Dataflow/7.0.0": {
  8108. "sha512": "BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==",
  8109. "type": "package",
  8110. "path": "system.threading.tasks.dataflow/7.0.0",
  8111. "files": [
  8112. ".nupkg.metadata",
  8113. ".signature.p7s",
  8114. "Icon.png",
  8115. "LICENSE.TXT",
  8116. "THIRD-PARTY-NOTICES.TXT",
  8117. "buildTransitive/net461/System.Threading.Tasks.Dataflow.targets",
  8118. "buildTransitive/net462/_._",
  8119. "buildTransitive/net6.0/_._",
  8120. "buildTransitive/netcoreapp2.0/System.Threading.Tasks.Dataflow.targets",
  8121. "lib/net462/System.Threading.Tasks.Dataflow.dll",
  8122. "lib/net462/System.Threading.Tasks.Dataflow.xml",
  8123. "lib/net6.0/System.Threading.Tasks.Dataflow.dll",
  8124. "lib/net6.0/System.Threading.Tasks.Dataflow.xml",
  8125. "lib/net7.0/System.Threading.Tasks.Dataflow.dll",
  8126. "lib/net7.0/System.Threading.Tasks.Dataflow.xml",
  8127. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
  8128. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
  8129. "lib/netstandard2.1/System.Threading.Tasks.Dataflow.dll",
  8130. "lib/netstandard2.1/System.Threading.Tasks.Dataflow.xml",
  8131. "system.threading.tasks.dataflow.7.0.0.nupkg.sha512",
  8132. "system.threading.tasks.dataflow.nuspec",
  8133. "useSharedDesignerContext.txt"
  8134. ]
  8135. },
  8136. "System.Threading.Tasks.Extensions/4.5.4": {
  8137. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  8138. "type": "package",
  8139. "path": "system.threading.tasks.extensions/4.5.4",
  8140. "files": [
  8141. ".nupkg.metadata",
  8142. ".signature.p7s",
  8143. "LICENSE.TXT",
  8144. "THIRD-PARTY-NOTICES.TXT",
  8145. "lib/MonoAndroid10/_._",
  8146. "lib/MonoTouch10/_._",
  8147. "lib/net461/System.Threading.Tasks.Extensions.dll",
  8148. "lib/net461/System.Threading.Tasks.Extensions.xml",
  8149. "lib/netcoreapp2.1/_._",
  8150. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8151. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8152. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8153. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8154. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8155. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8156. "lib/xamarinios10/_._",
  8157. "lib/xamarinmac20/_._",
  8158. "lib/xamarintvos10/_._",
  8159. "lib/xamarinwatchos10/_._",
  8160. "ref/MonoAndroid10/_._",
  8161. "ref/MonoTouch10/_._",
  8162. "ref/netcoreapp2.1/_._",
  8163. "ref/xamarinios10/_._",
  8164. "ref/xamarinmac20/_._",
  8165. "ref/xamarintvos10/_._",
  8166. "ref/xamarinwatchos10/_._",
  8167. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  8168. "system.threading.tasks.extensions.nuspec",
  8169. "useSharedDesignerContext.txt",
  8170. "version.txt"
  8171. ]
  8172. },
  8173. "System.Windows.Extensions/7.0.0": {
  8174. "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==",
  8175. "type": "package",
  8176. "path": "system.windows.extensions/7.0.0",
  8177. "files": [
  8178. ".nupkg.metadata",
  8179. ".signature.p7s",
  8180. "Icon.png",
  8181. "LICENSE.TXT",
  8182. "THIRD-PARTY-NOTICES.TXT",
  8183. "lib/net6.0/System.Windows.Extensions.dll",
  8184. "lib/net6.0/System.Windows.Extensions.xml",
  8185. "lib/net7.0/System.Windows.Extensions.dll",
  8186. "lib/net7.0/System.Windows.Extensions.xml",
  8187. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  8188. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  8189. "runtimes/win/lib/net7.0/System.Windows.Extensions.dll",
  8190. "runtimes/win/lib/net7.0/System.Windows.Extensions.xml",
  8191. "system.windows.extensions.7.0.0.nupkg.sha512",
  8192. "system.windows.extensions.nuspec",
  8193. "useSharedDesignerContext.txt"
  8194. ]
  8195. }
  8196. },
  8197. "projectFileDependencyGroups": {
  8198. "net8.0": [
  8199. "BuildWebCompiler >= 1.12.405",
  8200. "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 8.0.0",
  8201. "Microsoft.AspNetCore.Identity.UI >= 8.0.0",
  8202. "Microsoft.EntityFrameworkCore.Design >= 8.0.0",
  8203. "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.0",
  8204. "Microsoft.EntityFrameworkCore.Tools >= 8.0.0",
  8205. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 8.0.0",
  8206. "System.Management >= 8.0.0"
  8207. ]
  8208. },
  8209. "packageFolders": {
  8210. "C:\\Users\\choro\\.nuget\\packages\\": {},
  8211. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  8212. },
  8213. "project": {
  8214. "version": "1.0.0",
  8215. "restore": {
  8216. "projectUniqueName": "E:\\workspace\\bitforum\\backend\\bitforum.csproj",
  8217. "projectName": "bitforum",
  8218. "projectPath": "E:\\workspace\\bitforum\\backend\\bitforum.csproj",
  8219. "packagesPath": "C:\\Users\\choro\\.nuget\\packages\\",
  8220. "outputPath": "E:\\workspace\\bitforum\\backend\\obj\\",
  8221. "projectStyle": "PackageReference",
  8222. "fallbackFolders": [
  8223. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  8224. ],
  8225. "configFilePaths": [
  8226. "C:\\Users\\choro\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8227. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8228. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8229. ],
  8230. "originalTargetFrameworks": [
  8231. "net8.0"
  8232. ],
  8233. "sources": {
  8234. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8235. "https://api.nuget.org/v3/index.json": {}
  8236. },
  8237. "frameworks": {
  8238. "net8.0": {
  8239. "targetAlias": "net8.0",
  8240. "projectReferences": {}
  8241. }
  8242. },
  8243. "warningProperties": {
  8244. "warnAsError": [
  8245. "NU1605"
  8246. ]
  8247. },
  8248. "restoreAuditProperties": {
  8249. "enableAudit": "true",
  8250. "auditLevel": "low",
  8251. "auditMode": "direct"
  8252. },
  8253. "SdkAnalysisLevel": "9.0.100"
  8254. },
  8255. "frameworks": {
  8256. "net8.0": {
  8257. "targetAlias": "net8.0",
  8258. "dependencies": {
  8259. "BuildWebCompiler": {
  8260. "target": "Package",
  8261. "version": "[1.12.405, )"
  8262. },
  8263. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
  8264. "target": "Package",
  8265. "version": "[8.0.0, )"
  8266. },
  8267. "Microsoft.AspNetCore.Identity.UI": {
  8268. "target": "Package",
  8269. "version": "[8.0.0, )"
  8270. },
  8271. "Microsoft.EntityFrameworkCore.Design": {
  8272. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8273. "suppressParent": "All",
  8274. "target": "Package",
  8275. "version": "[8.0.0, )"
  8276. },
  8277. "Microsoft.EntityFrameworkCore.SqlServer": {
  8278. "target": "Package",
  8279. "version": "[8.0.0, )"
  8280. },
  8281. "Microsoft.EntityFrameworkCore.Tools": {
  8282. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8283. "suppressParent": "All",
  8284. "target": "Package",
  8285. "version": "[8.0.0, )"
  8286. },
  8287. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  8288. "target": "Package",
  8289. "version": "[8.0.0, )"
  8290. },
  8291. "System.Management": {
  8292. "target": "Package",
  8293. "version": "[8.0.0, )"
  8294. }
  8295. },
  8296. "imports": [
  8297. "net461",
  8298. "net462",
  8299. "net47",
  8300. "net471",
  8301. "net472",
  8302. "net48",
  8303. "net481"
  8304. ],
  8305. "assetTargetFallback": true,
  8306. "warn": true,
  8307. "frameworkReferences": {
  8308. "Microsoft.AspNetCore.App": {
  8309. "privateAssets": "none"
  8310. },
  8311. "Microsoft.NETCore.App": {
  8312. "privateAssets": "all"
  8313. }
  8314. },
  8315. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
  8316. }
  8317. }
  8318. }
  8319. }