project.assets.json 282 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net7.0": {
  5. "Ben.Demystifier/0.4.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Reflection.Metadata": "5.0.0"
  9. },
  10. "compile": {
  11. "lib/netstandard2.1/Ben.Demystifier.dll": {}
  12. },
  13. "runtime": {
  14. "lib/netstandard2.1/Ben.Demystifier.dll": {}
  15. }
  16. },
  17. "Furion.Extras.Authentication.JwtBearer/4.8.7.36": {
  18. "type": "package",
  19. "dependencies": {
  20. "Microsoft.AspNetCore.Authentication.JwtBearer": "7.0.4"
  21. },
  22. "compile": {
  23. "lib/net7.0/Furion.Extras.Authentication.JwtBearer.dll": {
  24. "related": ".xml"
  25. }
  26. },
  27. "runtime": {
  28. "lib/net7.0/Furion.Extras.Authentication.JwtBearer.dll": {
  29. "related": ".xml"
  30. }
  31. }
  32. },
  33. "Furion.Extras.ObjectMapper.Mapster/4.8.7.36": {
  34. "type": "package",
  35. "dependencies": {
  36. "Mapster": "7.3.0",
  37. "Mapster.DependencyInjection": "1.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
  39. },
  40. "compile": {
  41. "lib/net7.0/Furion.Extras.ObjectMapper.Mapster.dll": {
  42. "related": ".xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/net7.0/Furion.Extras.ObjectMapper.Mapster.dll": {
  47. "related": ".xml"
  48. }
  49. }
  50. },
  51. "Furion.Pure/4.8.7.36": {
  52. "type": "package",
  53. "dependencies": {
  54. "Furion.Pure.Extras.DependencyModel.CodeAnalysis": "4.8.7.36",
  55. "MiniProfiler.AspNetCore.Mvc": "4.2.22",
  56. "Swashbuckle.AspNetCore": "6.5.0"
  57. },
  58. "compile": {
  59. "lib/net7.0/Furion.Pure.dll": {
  60. "related": ".xml"
  61. }
  62. },
  63. "runtime": {
  64. "lib/net7.0/Furion.Pure.dll": {
  65. "related": ".xml"
  66. }
  67. },
  68. "frameworkReferences": [
  69. "Microsoft.AspNetCore.App"
  70. ]
  71. },
  72. "Furion.Pure.Extras.DependencyModel.CodeAnalysis/4.8.7.36": {
  73. "type": "package",
  74. "dependencies": {
  75. "Ben.Demystifier": "0.4.1",
  76. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.4",
  77. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "7.0.4",
  78. "Microsoft.AspNetCore.Razor.Language": "6.0.15",
  79. "Microsoft.CodeAnalysis.CSharp": "4.5.0",
  80. "Microsoft.Extensions.DependencyModel": "7.0.0",
  81. "System.Text.Json": "7.0.2"
  82. },
  83. "compile": {
  84. "lib/net7.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll": {
  85. "related": ".xml"
  86. }
  87. },
  88. "runtime": {
  89. "lib/net7.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll": {
  90. "related": ".xml"
  91. }
  92. }
  93. },
  94. "Mapster/7.3.0": {
  95. "type": "package",
  96. "dependencies": {
  97. "Mapster.Core": "1.2.0",
  98. "Microsoft.CSharp": "4.3.0",
  99. "System.Reflection.Emit": "4.3.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/Mapster.dll": {}
  103. },
  104. "runtime": {
  105. "lib/netstandard2.0/Mapster.dll": {}
  106. }
  107. },
  108. "Mapster.Core/1.2.0": {
  109. "type": "package",
  110. "compile": {
  111. "lib/netstandard2.0/Mapster.Core.dll": {}
  112. },
  113. "runtime": {
  114. "lib/netstandard2.0/Mapster.Core.dll": {}
  115. }
  116. },
  117. "Mapster.DependencyInjection/1.0.0": {
  118. "type": "package",
  119. "dependencies": {
  120. "Mapster": "5.0.0"
  121. },
  122. "compile": {
  123. "lib/netstandard2.0/Mapster.DependencyInjection.dll": {}
  124. },
  125. "runtime": {
  126. "lib/netstandard2.0/Mapster.DependencyInjection.dll": {}
  127. }
  128. },
  129. "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.4": {
  130. "type": "package",
  131. "dependencies": {
  132. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.15.1"
  133. },
  134. "compile": {
  135. "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  136. "related": ".xml"
  137. }
  138. },
  139. "runtime": {
  140. "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  141. "related": ".xml"
  142. }
  143. },
  144. "frameworkReferences": [
  145. "Microsoft.AspNetCore.App"
  146. ]
  147. },
  148. "Microsoft.AspNetCore.JsonPatch/7.0.4": {
  149. "type": "package",
  150. "dependencies": {
  151. "Microsoft.CSharp": "4.7.0",
  152. "Newtonsoft.Json": "13.0.1"
  153. },
  154. "compile": {
  155. "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": {
  156. "related": ".xml"
  157. }
  158. },
  159. "runtime": {
  160. "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": {
  161. "related": ".xml"
  162. }
  163. }
  164. },
  165. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.4": {
  166. "type": "package",
  167. "dependencies": {
  168. "Microsoft.AspNetCore.JsonPatch": "7.0.4",
  169. "Newtonsoft.Json": "13.0.1",
  170. "Newtonsoft.Json.Bson": "1.0.2"
  171. },
  172. "compile": {
  173. "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  174. "related": ".xml"
  175. }
  176. },
  177. "runtime": {
  178. "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  179. "related": ".xml"
  180. }
  181. },
  182. "frameworkReferences": [
  183. "Microsoft.AspNetCore.App"
  184. ]
  185. },
  186. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": {
  187. "type": "package",
  188. "dependencies": {
  189. "Microsoft.AspNetCore.Razor.Language": "6.0.0",
  190. "Microsoft.CodeAnalysis.Razor": "6.0.0"
  191. },
  192. "compile": {
  193. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  194. },
  195. "runtime": {
  196. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  197. }
  198. },
  199. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/7.0.4": {
  200. "type": "package",
  201. "dependencies": {
  202. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0",
  203. "Microsoft.CodeAnalysis.Razor": "6.0.0",
  204. "Microsoft.Extensions.DependencyModel": "7.0.0"
  205. },
  206. "compile": {
  207. "lib/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  208. "related": ".xml"
  209. }
  210. },
  211. "runtime": {
  212. "lib/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  213. "related": ".xml"
  214. }
  215. },
  216. "frameworkReferences": [
  217. "Microsoft.AspNetCore.App"
  218. ],
  219. "build": {
  220. "buildTransitive/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {}
  221. }
  222. },
  223. "Microsoft.AspNetCore.Razor.Language/6.0.15": {
  224. "type": "package",
  225. "compile": {
  226. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  227. },
  228. "runtime": {
  229. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  230. }
  231. },
  232. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  233. "type": "package",
  234. "build": {
  235. "build/_._": {}
  236. }
  237. },
  238. "Microsoft.CodeAnalysis.Common/4.5.0": {
  239. "type": "package",
  240. "dependencies": {
  241. "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
  242. "System.Collections.Immutable": "6.0.0",
  243. "System.Reflection.Metadata": "6.0.1",
  244. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  245. "System.Text.Encoding.CodePages": "6.0.0"
  246. },
  247. "compile": {
  248. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  249. "related": ".pdb;.xml"
  250. }
  251. },
  252. "runtime": {
  253. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  254. "related": ".pdb;.xml"
  255. }
  256. },
  257. "resource": {
  258. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  259. "locale": "cs"
  260. },
  261. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  262. "locale": "de"
  263. },
  264. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  265. "locale": "es"
  266. },
  267. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  268. "locale": "fr"
  269. },
  270. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  271. "locale": "it"
  272. },
  273. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  274. "locale": "ja"
  275. },
  276. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  277. "locale": "ko"
  278. },
  279. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  280. "locale": "pl"
  281. },
  282. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  283. "locale": "pt-BR"
  284. },
  285. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  286. "locale": "ru"
  287. },
  288. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  289. "locale": "tr"
  290. },
  291. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  292. "locale": "zh-Hans"
  293. },
  294. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  295. "locale": "zh-Hant"
  296. }
  297. }
  298. },
  299. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  300. "type": "package",
  301. "dependencies": {
  302. "Microsoft.CodeAnalysis.Common": "[4.5.0]"
  303. },
  304. "compile": {
  305. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  306. "related": ".pdb;.xml"
  307. }
  308. },
  309. "runtime": {
  310. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  311. "related": ".pdb;.xml"
  312. }
  313. },
  314. "resource": {
  315. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  316. "locale": "cs"
  317. },
  318. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  319. "locale": "de"
  320. },
  321. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  322. "locale": "es"
  323. },
  324. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  325. "locale": "fr"
  326. },
  327. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  328. "locale": "it"
  329. },
  330. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  331. "locale": "ja"
  332. },
  333. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  334. "locale": "ko"
  335. },
  336. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  337. "locale": "pl"
  338. },
  339. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  340. "locale": "pt-BR"
  341. },
  342. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  343. "locale": "ru"
  344. },
  345. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  346. "locale": "tr"
  347. },
  348. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  349. "locale": "zh-Hans"
  350. },
  351. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  352. "locale": "zh-Hant"
  353. }
  354. }
  355. },
  356. "Microsoft.CodeAnalysis.Razor/6.0.0": {
  357. "type": "package",
  358. "dependencies": {
  359. "Microsoft.AspNetCore.Razor.Language": "6.0.0",
  360. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  361. "Microsoft.CodeAnalysis.Common": "4.0.0"
  362. },
  363. "compile": {
  364. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  365. },
  366. "runtime": {
  367. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  368. }
  369. },
  370. "Microsoft.CSharp/4.7.0": {
  371. "type": "package",
  372. "compile": {
  373. "ref/netcoreapp2.0/_._": {}
  374. },
  375. "runtime": {
  376. "lib/netcoreapp2.0/_._": {}
  377. }
  378. },
  379. "Microsoft.Data.SqlClient/2.1.4": {
  380. "type": "package",
  381. "dependencies": {
  382. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  383. "Microsoft.Identity.Client": "4.21.1",
  384. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  385. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  386. "Microsoft.Win32.Registry": "4.7.0",
  387. "System.Configuration.ConfigurationManager": "4.7.0",
  388. "System.Diagnostics.DiagnosticSource": "4.7.0",
  389. "System.Runtime.Caching": "4.7.0",
  390. "System.Security.Principal.Windows": "4.7.0",
  391. "System.Text.Encoding.CodePages": "4.7.0"
  392. },
  393. "compile": {
  394. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  395. "related": ".pdb;.xml"
  396. }
  397. },
  398. "runtime": {
  399. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  400. "related": ".pdb;.xml"
  401. }
  402. },
  403. "runtimeTargets": {
  404. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  405. "assetType": "runtime",
  406. "rid": "unix"
  407. },
  408. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  409. "assetType": "runtime",
  410. "rid": "win"
  411. }
  412. }
  413. },
  414. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  415. "type": "package",
  416. "runtimeTargets": {
  417. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  418. "assetType": "native",
  419. "rid": "win-arm"
  420. },
  421. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  422. "assetType": "native",
  423. "rid": "win-arm64"
  424. },
  425. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  426. "assetType": "native",
  427. "rid": "win-x64"
  428. },
  429. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  430. "assetType": "native",
  431. "rid": "win-x86"
  432. }
  433. }
  434. },
  435. "Microsoft.Data.Sqlite/5.0.5": {
  436. "type": "package",
  437. "dependencies": {
  438. "Microsoft.Data.Sqlite.Core": "5.0.5",
  439. "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4"
  440. },
  441. "compile": {
  442. "lib/netstandard2.0/_._": {}
  443. },
  444. "runtime": {
  445. "lib/netstandard2.0/_._": {}
  446. }
  447. },
  448. "Microsoft.Data.Sqlite.Core/5.0.5": {
  449. "type": "package",
  450. "dependencies": {
  451. "SQLitePCLRaw.core": "2.0.4"
  452. },
  453. "compile": {
  454. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  455. "related": ".xml"
  456. }
  457. },
  458. "runtime": {
  459. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  460. "related": ".xml"
  461. }
  462. }
  463. },
  464. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  465. "type": "package",
  466. "build": {
  467. "build/_._": {}
  468. },
  469. "buildMultiTargeting": {
  470. "buildMultiTargeting/_._": {}
  471. }
  472. },
  473. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  474. "type": "package",
  475. "compile": {
  476. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  477. "related": ".xml"
  478. }
  479. },
  480. "runtime": {
  481. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  482. "related": ".xml"
  483. }
  484. },
  485. "build": {
  486. "buildTransitive/net6.0/_._": {}
  487. }
  488. },
  489. "Microsoft.Extensions.DependencyModel/7.0.0": {
  490. "type": "package",
  491. "dependencies": {
  492. "System.Text.Encodings.Web": "7.0.0",
  493. "System.Text.Json": "7.0.0"
  494. },
  495. "compile": {
  496. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": {
  497. "related": ".xml"
  498. }
  499. },
  500. "runtime": {
  501. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": {
  502. "related": ".xml"
  503. }
  504. },
  505. "build": {
  506. "buildTransitive/net6.0/_._": {}
  507. }
  508. },
  509. "Microsoft.Identity.Client/4.21.1": {
  510. "type": "package",
  511. "compile": {
  512. "ref/netcoreapp2.1/_._": {
  513. "related": ".xml"
  514. }
  515. },
  516. "runtime": {
  517. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  518. "related": ".xml"
  519. }
  520. }
  521. },
  522. "Microsoft.IdentityModel.JsonWebTokens/6.15.1": {
  523. "type": "package",
  524. "dependencies": {
  525. "Microsoft.IdentityModel.Tokens": "6.15.1"
  526. },
  527. "compile": {
  528. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  529. "related": ".xml"
  530. }
  531. },
  532. "runtime": {
  533. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  534. "related": ".xml"
  535. }
  536. }
  537. },
  538. "Microsoft.IdentityModel.Logging/6.15.1": {
  539. "type": "package",
  540. "compile": {
  541. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  542. "related": ".xml"
  543. }
  544. },
  545. "runtime": {
  546. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  547. "related": ".xml"
  548. }
  549. }
  550. },
  551. "Microsoft.IdentityModel.Protocols/6.15.1": {
  552. "type": "package",
  553. "dependencies": {
  554. "Microsoft.IdentityModel.Logging": "6.15.1",
  555. "Microsoft.IdentityModel.Tokens": "6.15.1"
  556. },
  557. "compile": {
  558. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  559. "related": ".xml"
  560. }
  561. },
  562. "runtime": {
  563. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  564. "related": ".xml"
  565. }
  566. }
  567. },
  568. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": {
  569. "type": "package",
  570. "dependencies": {
  571. "Microsoft.IdentityModel.Protocols": "6.15.1",
  572. "System.IdentityModel.Tokens.Jwt": "6.15.1"
  573. },
  574. "compile": {
  575. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  576. "related": ".xml"
  577. }
  578. },
  579. "runtime": {
  580. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  581. "related": ".xml"
  582. }
  583. }
  584. },
  585. "Microsoft.IdentityModel.Tokens/6.15.1": {
  586. "type": "package",
  587. "dependencies": {
  588. "Microsoft.CSharp": "4.5.0",
  589. "Microsoft.IdentityModel.Logging": "6.15.1",
  590. "System.Security.Cryptography.Cng": "4.5.0"
  591. },
  592. "compile": {
  593. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  594. "related": ".xml"
  595. }
  596. },
  597. "runtime": {
  598. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  599. "related": ".xml"
  600. }
  601. }
  602. },
  603. "Microsoft.NETCore.Platforms/3.1.0": {
  604. "type": "package",
  605. "compile": {
  606. "lib/netstandard1.0/_._": {}
  607. },
  608. "runtime": {
  609. "lib/netstandard1.0/_._": {}
  610. }
  611. },
  612. "Microsoft.NETCore.Targets/1.1.0": {
  613. "type": "package",
  614. "compile": {
  615. "lib/netstandard1.0/_._": {}
  616. },
  617. "runtime": {
  618. "lib/netstandard1.0/_._": {}
  619. }
  620. },
  621. "Microsoft.OpenApi/1.2.3": {
  622. "type": "package",
  623. "compile": {
  624. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  625. "related": ".pdb;.xml"
  626. }
  627. },
  628. "runtime": {
  629. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  630. "related": ".pdb;.xml"
  631. }
  632. }
  633. },
  634. "Microsoft.Win32.Registry/4.7.0": {
  635. "type": "package",
  636. "dependencies": {
  637. "System.Security.AccessControl": "4.7.0",
  638. "System.Security.Principal.Windows": "4.7.0"
  639. },
  640. "compile": {
  641. "ref/netstandard2.0/_._": {
  642. "related": ".xml"
  643. }
  644. },
  645. "runtime": {
  646. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  647. "related": ".xml"
  648. }
  649. },
  650. "runtimeTargets": {
  651. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  652. "assetType": "runtime",
  653. "rid": "unix"
  654. },
  655. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  656. "assetType": "runtime",
  657. "rid": "win"
  658. }
  659. }
  660. },
  661. "Microsoft.Win32.SystemEvents/4.7.0": {
  662. "type": "package",
  663. "dependencies": {
  664. "Microsoft.NETCore.Platforms": "3.1.0"
  665. },
  666. "compile": {
  667. "ref/netstandard2.0/_._": {
  668. "related": ".xml"
  669. }
  670. },
  671. "runtime": {
  672. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtimeTargets": {
  677. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  678. "assetType": "runtime",
  679. "rid": "win"
  680. }
  681. }
  682. },
  683. "MiniProfiler.AspNetCore/4.2.22": {
  684. "type": "package",
  685. "dependencies": {
  686. "MiniProfiler.Shared": "4.2.22",
  687. "System.Text.Json": "4.6.0"
  688. },
  689. "compile": {
  690. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {
  691. "related": ".xml"
  692. }
  693. },
  694. "runtime": {
  695. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {
  696. "related": ".xml"
  697. }
  698. },
  699. "frameworkReferences": [
  700. "Microsoft.AspNetCore.App"
  701. ]
  702. },
  703. "MiniProfiler.AspNetCore.Mvc/4.2.22": {
  704. "type": "package",
  705. "dependencies": {
  706. "MiniProfiler.AspNetCore": "4.2.22"
  707. },
  708. "compile": {
  709. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {
  710. "related": ".xml"
  711. }
  712. },
  713. "runtime": {
  714. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {
  715. "related": ".xml"
  716. }
  717. },
  718. "frameworkReferences": [
  719. "Microsoft.AspNetCore.App"
  720. ]
  721. },
  722. "MiniProfiler.Shared/4.2.22": {
  723. "type": "package",
  724. "dependencies": {
  725. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
  726. "Newtonsoft.Json": "10.0.3",
  727. "System.ComponentModel.Primitives": "4.3.0",
  728. "System.Data.Common": "4.3.0",
  729. "System.Diagnostics.DiagnosticSource": "4.4.1",
  730. "System.Diagnostics.StackTrace": "4.3.0",
  731. "System.Dynamic.Runtime": "4.3.0",
  732. "System.Reflection.Emit.Lightweight": "4.3.0",
  733. "System.Runtime.Extensions": "4.3.0",
  734. "System.Runtime.Serialization.Primitives": "4.3.0",
  735. "System.Threading.Tasks.Parallel": "4.3.0"
  736. },
  737. "compile": {
  738. "lib/netstandard2.0/MiniProfiler.Shared.dll": {
  739. "related": ".xml"
  740. }
  741. },
  742. "runtime": {
  743. "lib/netstandard2.0/MiniProfiler.Shared.dll": {
  744. "related": ".xml"
  745. }
  746. }
  747. },
  748. "MySqlConnector/2.2.5": {
  749. "type": "package",
  750. "compile": {
  751. "lib/net7.0/MySqlConnector.dll": {
  752. "related": ".xml"
  753. }
  754. },
  755. "runtime": {
  756. "lib/net7.0/MySqlConnector.dll": {
  757. "related": ".xml"
  758. }
  759. }
  760. },
  761. "Namotion.Reflection/2.1.1": {
  762. "type": "package",
  763. "dependencies": {
  764. "Microsoft.CSharp": "4.3.0"
  765. },
  766. "compile": {
  767. "lib/netstandard2.0/Namotion.Reflection.dll": {
  768. "related": ".xml"
  769. }
  770. },
  771. "runtime": {
  772. "lib/netstandard2.0/Namotion.Reflection.dll": {
  773. "related": ".xml"
  774. }
  775. }
  776. },
  777. "Newtonsoft.Json/13.0.2": {
  778. "type": "package",
  779. "compile": {
  780. "lib/net6.0/Newtonsoft.Json.dll": {
  781. "related": ".xml"
  782. }
  783. },
  784. "runtime": {
  785. "lib/net6.0/Newtonsoft.Json.dll": {
  786. "related": ".xml"
  787. }
  788. }
  789. },
  790. "Newtonsoft.Json.Bson/1.0.2": {
  791. "type": "package",
  792. "dependencies": {
  793. "Newtonsoft.Json": "12.0.1"
  794. },
  795. "compile": {
  796. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  797. "related": ".pdb;.xml"
  798. }
  799. },
  800. "runtime": {
  801. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  802. "related": ".pdb;.xml"
  803. }
  804. }
  805. },
  806. "Npgsql/5.0.7": {
  807. "type": "package",
  808. "dependencies": {
  809. "System.Runtime.CompilerServices.Unsafe": "4.6.0"
  810. },
  811. "compile": {
  812. "lib/net5.0/Npgsql.dll": {
  813. "related": ".xml"
  814. }
  815. },
  816. "runtime": {
  817. "lib/net5.0/Npgsql.dll": {
  818. "related": ".xml"
  819. }
  820. }
  821. },
  822. "Oracle.ManagedDataAccess.Core/3.21.1": {
  823. "type": "package",
  824. "dependencies": {
  825. "System.Diagnostics.PerformanceCounter": "4.7.0",
  826. "System.DirectoryServices": "4.7.0",
  827. "System.DirectoryServices.Protocols": "4.7.0",
  828. "System.Text.Json": "4.7.1"
  829. },
  830. "compile": {
  831. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  832. },
  833. "runtime": {
  834. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  835. }
  836. },
  837. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  838. "type": "package",
  839. "dependencies": {
  840. "SQLitePCLRaw.core": "2.0.4",
  841. "SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
  842. "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4"
  843. },
  844. "compile": {
  845. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  846. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  847. },
  848. "runtime": {
  849. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  850. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  851. }
  852. },
  853. "SQLitePCLRaw.core/2.0.4": {
  854. "type": "package",
  855. "dependencies": {
  856. "System.Memory": "4.5.3"
  857. },
  858. "compile": {
  859. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  860. },
  861. "runtime": {
  862. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  863. }
  864. },
  865. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  866. "type": "package",
  867. "compile": {
  868. "lib/netstandard2.0/_._": {}
  869. },
  870. "runtime": {
  871. "lib/netstandard2.0/_._": {}
  872. },
  873. "runtimeTargets": {
  874. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  875. "assetType": "native",
  876. "rid": "alpine-x64"
  877. },
  878. "runtimes/linux-arm/native/libe_sqlite3.so": {
  879. "assetType": "native",
  880. "rid": "linux-arm"
  881. },
  882. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  883. "assetType": "native",
  884. "rid": "linux-arm64"
  885. },
  886. "runtimes/linux-armel/native/libe_sqlite3.so": {
  887. "assetType": "native",
  888. "rid": "linux-armel"
  889. },
  890. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  891. "assetType": "native",
  892. "rid": "linux-mips64"
  893. },
  894. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  895. "assetType": "native",
  896. "rid": "linux-musl-x64"
  897. },
  898. "runtimes/linux-x64/native/libe_sqlite3.so": {
  899. "assetType": "native",
  900. "rid": "linux-x64"
  901. },
  902. "runtimes/linux-x86/native/libe_sqlite3.so": {
  903. "assetType": "native",
  904. "rid": "linux-x86"
  905. },
  906. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  907. "assetType": "native",
  908. "rid": "osx-x64"
  909. },
  910. "runtimes/win-arm/native/e_sqlite3.dll": {
  911. "assetType": "native",
  912. "rid": "win-arm"
  913. },
  914. "runtimes/win-arm64/native/e_sqlite3.dll": {
  915. "assetType": "native",
  916. "rid": "win-arm64"
  917. },
  918. "runtimes/win-x64/native/e_sqlite3.dll": {
  919. "assetType": "native",
  920. "rid": "win-x64"
  921. },
  922. "runtimes/win-x86/native/e_sqlite3.dll": {
  923. "assetType": "native",
  924. "rid": "win-x86"
  925. }
  926. }
  927. },
  928. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  929. "type": "package",
  930. "dependencies": {
  931. "SQLitePCLRaw.core": "2.0.4"
  932. },
  933. "compile": {
  934. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  935. },
  936. "runtime": {
  937. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  938. }
  939. },
  940. "SqlSugarCore/5.1.4.65": {
  941. "type": "package",
  942. "dependencies": {
  943. "Microsoft.Data.SqlClient": "2.1.4",
  944. "Microsoft.Data.Sqlite": "5.0.5",
  945. "MySqlConnector": "2.2.5",
  946. "Newtonsoft.Json": "13.0.2",
  947. "Npgsql": "5.0.7",
  948. "Oracle.ManagedDataAccess.Core": "3.21.1",
  949. "SqlSugarCore.Dm": "1.0.0",
  950. "SqlSugarCore.Kdbndp": "7.3.0",
  951. "System.Data.Common": "4.3.0",
  952. "System.Reflection.Emit.Lightweight": "4.3.0"
  953. },
  954. "compile": {
  955. "lib/netstandard2.1/SqlSugar.dll": {}
  956. },
  957. "runtime": {
  958. "lib/netstandard2.1/SqlSugar.dll": {}
  959. }
  960. },
  961. "SqlSugarCore.Dm/1.0.0": {
  962. "type": "package",
  963. "compile": {
  964. "lib/netstandard2.0/DmProvider.dll": {}
  965. },
  966. "runtime": {
  967. "lib/netstandard2.0/DmProvider.dll": {}
  968. }
  969. },
  970. "SqlSugarCore.Kdbndp/7.3.0": {
  971. "type": "package",
  972. "compile": {
  973. "lib/netstandard2.1/Kdbndp.dll": {}
  974. },
  975. "runtime": {
  976. "lib/netstandard2.1/Kdbndp.dll": {}
  977. }
  978. },
  979. "Swashbuckle.AspNetCore/6.5.0": {
  980. "type": "package",
  981. "dependencies": {
  982. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  983. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  984. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  985. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  986. },
  987. "build": {
  988. "build/_._": {}
  989. }
  990. },
  991. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  992. "type": "package",
  993. "dependencies": {
  994. "Microsoft.OpenApi": "1.2.3"
  995. },
  996. "compile": {
  997. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
  998. "related": ".pdb;.xml"
  999. }
  1000. },
  1001. "runtime": {
  1002. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1003. "related": ".pdb;.xml"
  1004. }
  1005. },
  1006. "frameworkReferences": [
  1007. "Microsoft.AspNetCore.App"
  1008. ]
  1009. },
  1010. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  1011. "type": "package",
  1012. "dependencies": {
  1013. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  1014. },
  1015. "compile": {
  1016. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1017. "related": ".pdb;.xml"
  1018. }
  1019. },
  1020. "runtime": {
  1021. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1022. "related": ".pdb;.xml"
  1023. }
  1024. }
  1025. },
  1026. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  1027. "type": "package",
  1028. "compile": {
  1029. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1030. "related": ".pdb;.xml"
  1031. }
  1032. },
  1033. "runtime": {
  1034. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1035. "related": ".pdb;.xml"
  1036. }
  1037. },
  1038. "frameworkReferences": [
  1039. "Microsoft.AspNetCore.App"
  1040. ]
  1041. },
  1042. "System.Collections/4.3.0": {
  1043. "type": "package",
  1044. "dependencies": {
  1045. "Microsoft.NETCore.Platforms": "1.1.0",
  1046. "Microsoft.NETCore.Targets": "1.1.0",
  1047. "System.Runtime": "4.3.0"
  1048. },
  1049. "compile": {
  1050. "ref/netstandard1.3/_._": {
  1051. "related": ".xml"
  1052. }
  1053. }
  1054. },
  1055. "System.Collections.Concurrent/4.3.0": {
  1056. "type": "package",
  1057. "dependencies": {
  1058. "System.Collections": "4.3.0",
  1059. "System.Diagnostics.Debug": "4.3.0",
  1060. "System.Diagnostics.Tracing": "4.3.0",
  1061. "System.Globalization": "4.3.0",
  1062. "System.Reflection": "4.3.0",
  1063. "System.Resources.ResourceManager": "4.3.0",
  1064. "System.Runtime": "4.3.0",
  1065. "System.Runtime.Extensions": "4.3.0",
  1066. "System.Threading": "4.3.0",
  1067. "System.Threading.Tasks": "4.3.0"
  1068. },
  1069. "compile": {
  1070. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1071. "related": ".xml"
  1072. }
  1073. },
  1074. "runtime": {
  1075. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1076. }
  1077. },
  1078. "System.Collections.Immutable/6.0.0": {
  1079. "type": "package",
  1080. "dependencies": {
  1081. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1082. },
  1083. "compile": {
  1084. "lib/net6.0/System.Collections.Immutable.dll": {
  1085. "related": ".xml"
  1086. }
  1087. },
  1088. "runtime": {
  1089. "lib/net6.0/System.Collections.Immutable.dll": {
  1090. "related": ".xml"
  1091. }
  1092. },
  1093. "build": {
  1094. "buildTransitive/netcoreapp3.1/_._": {}
  1095. }
  1096. },
  1097. "System.ComponentModel/4.3.0": {
  1098. "type": "package",
  1099. "dependencies": {
  1100. "System.Runtime": "4.3.0"
  1101. },
  1102. "compile": {
  1103. "ref/netstandard1.0/System.ComponentModel.dll": {
  1104. "related": ".xml"
  1105. }
  1106. },
  1107. "runtime": {
  1108. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1109. }
  1110. },
  1111. "System.ComponentModel.Primitives/4.3.0": {
  1112. "type": "package",
  1113. "dependencies": {
  1114. "System.ComponentModel": "4.3.0",
  1115. "System.Resources.ResourceManager": "4.3.0",
  1116. "System.Runtime": "4.3.0"
  1117. },
  1118. "compile": {
  1119. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1120. "related": ".xml"
  1121. }
  1122. },
  1123. "runtime": {
  1124. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1125. }
  1126. },
  1127. "System.Configuration.ConfigurationManager/4.7.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1131. "System.Security.Permissions": "4.7.0"
  1132. },
  1133. "compile": {
  1134. "ref/netstandard2.0/_._": {
  1135. "related": ".xml"
  1136. }
  1137. },
  1138. "runtime": {
  1139. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1140. "related": ".xml"
  1141. }
  1142. }
  1143. },
  1144. "System.Data.Common/4.3.0": {
  1145. "type": "package",
  1146. "dependencies": {
  1147. "System.Collections": "4.3.0",
  1148. "System.Globalization": "4.3.0",
  1149. "System.IO": "4.3.0",
  1150. "System.Resources.ResourceManager": "4.3.0",
  1151. "System.Runtime": "4.3.0",
  1152. "System.Runtime.Extensions": "4.3.0",
  1153. "System.Text.RegularExpressions": "4.3.0",
  1154. "System.Threading.Tasks": "4.3.0"
  1155. },
  1156. "compile": {
  1157. "ref/netstandard1.2/System.Data.Common.dll": {
  1158. "related": ".xml"
  1159. }
  1160. },
  1161. "runtime": {
  1162. "lib/netstandard1.2/System.Data.Common.dll": {}
  1163. }
  1164. },
  1165. "System.Diagnostics.Debug/4.3.0": {
  1166. "type": "package",
  1167. "dependencies": {
  1168. "Microsoft.NETCore.Platforms": "1.1.0",
  1169. "Microsoft.NETCore.Targets": "1.1.0",
  1170. "System.Runtime": "4.3.0"
  1171. },
  1172. "compile": {
  1173. "ref/netstandard1.3/_._": {
  1174. "related": ".xml"
  1175. }
  1176. }
  1177. },
  1178. "System.Diagnostics.DiagnosticSource/4.7.0": {
  1179. "type": "package",
  1180. "compile": {
  1181. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1182. "related": ".xml"
  1183. }
  1184. },
  1185. "runtime": {
  1186. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1187. "related": ".xml"
  1188. }
  1189. }
  1190. },
  1191. "System.Diagnostics.PerformanceCounter/4.7.0": {
  1192. "type": "package",
  1193. "dependencies": {
  1194. "Microsoft.NETCore.Platforms": "3.1.0",
  1195. "Microsoft.Win32.Registry": "4.7.0",
  1196. "System.Configuration.ConfigurationManager": "4.7.0",
  1197. "System.Security.Principal.Windows": "4.7.0"
  1198. },
  1199. "compile": {
  1200. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1201. "related": ".xml"
  1202. }
  1203. },
  1204. "runtime": {
  1205. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1206. "related": ".xml"
  1207. }
  1208. },
  1209. "runtimeTargets": {
  1210. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1211. "assetType": "runtime",
  1212. "rid": "win"
  1213. }
  1214. }
  1215. },
  1216. "System.Diagnostics.StackTrace/4.3.0": {
  1217. "type": "package",
  1218. "dependencies": {
  1219. "System.IO.FileSystem": "4.3.0",
  1220. "System.Reflection": "4.3.0",
  1221. "System.Reflection.Metadata": "1.4.1",
  1222. "System.Runtime": "4.3.0"
  1223. },
  1224. "compile": {
  1225. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {
  1226. "related": ".xml"
  1227. }
  1228. },
  1229. "runtime": {
  1230. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  1231. }
  1232. },
  1233. "System.Diagnostics.Tracing/4.3.0": {
  1234. "type": "package",
  1235. "dependencies": {
  1236. "Microsoft.NETCore.Platforms": "1.1.0",
  1237. "Microsoft.NETCore.Targets": "1.1.0",
  1238. "System.Runtime": "4.3.0"
  1239. },
  1240. "compile": {
  1241. "ref/netstandard1.5/_._": {
  1242. "related": ".xml"
  1243. }
  1244. }
  1245. },
  1246. "System.DirectoryServices/4.7.0": {
  1247. "type": "package",
  1248. "dependencies": {
  1249. "Microsoft.NETCore.Platforms": "3.1.0",
  1250. "System.IO.FileSystem.AccessControl": "4.7.0",
  1251. "System.Security.AccessControl": "4.7.0",
  1252. "System.Security.Permissions": "4.7.0",
  1253. "System.Security.Principal.Windows": "4.7.0"
  1254. },
  1255. "compile": {
  1256. "ref/netstandard2.0/System.DirectoryServices.dll": {
  1257. "related": ".xml"
  1258. }
  1259. },
  1260. "runtime": {
  1261. "lib/netstandard2.0/System.DirectoryServices.dll": {
  1262. "related": ".xml"
  1263. }
  1264. },
  1265. "runtimeTargets": {
  1266. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
  1267. "assetType": "runtime",
  1268. "rid": "win"
  1269. }
  1270. }
  1271. },
  1272. "System.DirectoryServices.Protocols/4.7.0": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.NETCore.Platforms": "3.1.0",
  1276. "System.Security.Principal.Windows": "4.7.0"
  1277. },
  1278. "compile": {
  1279. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1280. "related": ".xml"
  1281. }
  1282. },
  1283. "runtime": {
  1284. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1285. "related": ".xml"
  1286. }
  1287. },
  1288. "runtimeTargets": {
  1289. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
  1290. "assetType": "runtime",
  1291. "rid": "win"
  1292. }
  1293. }
  1294. },
  1295. "System.Drawing.Common/4.7.0": {
  1296. "type": "package",
  1297. "dependencies": {
  1298. "Microsoft.NETCore.Platforms": "3.1.0",
  1299. "Microsoft.Win32.SystemEvents": "4.7.0"
  1300. },
  1301. "compile": {
  1302. "ref/netcoreapp3.0/_._": {
  1303. "related": ".xml"
  1304. }
  1305. },
  1306. "runtime": {
  1307. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1308. },
  1309. "runtimeTargets": {
  1310. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1311. "assetType": "runtime",
  1312. "rid": "unix"
  1313. },
  1314. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1315. "assetType": "runtime",
  1316. "rid": "win"
  1317. }
  1318. }
  1319. },
  1320. "System.Dynamic.Runtime/4.3.0": {
  1321. "type": "package",
  1322. "dependencies": {
  1323. "System.Collections": "4.3.0",
  1324. "System.Diagnostics.Debug": "4.3.0",
  1325. "System.Linq": "4.3.0",
  1326. "System.Linq.Expressions": "4.3.0",
  1327. "System.ObjectModel": "4.3.0",
  1328. "System.Reflection": "4.3.0",
  1329. "System.Reflection.Emit": "4.3.0",
  1330. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1331. "System.Reflection.Primitives": "4.3.0",
  1332. "System.Reflection.TypeExtensions": "4.3.0",
  1333. "System.Resources.ResourceManager": "4.3.0",
  1334. "System.Runtime": "4.3.0",
  1335. "System.Runtime.Extensions": "4.3.0",
  1336. "System.Threading": "4.3.0"
  1337. },
  1338. "compile": {
  1339. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1340. "related": ".xml"
  1341. }
  1342. },
  1343. "runtime": {
  1344. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1345. }
  1346. },
  1347. "System.Globalization/4.3.0": {
  1348. "type": "package",
  1349. "dependencies": {
  1350. "Microsoft.NETCore.Platforms": "1.1.0",
  1351. "Microsoft.NETCore.Targets": "1.1.0",
  1352. "System.Runtime": "4.3.0"
  1353. },
  1354. "compile": {
  1355. "ref/netstandard1.3/_._": {
  1356. "related": ".xml"
  1357. }
  1358. }
  1359. },
  1360. "System.IdentityModel.Tokens.Jwt/6.15.1": {
  1361. "type": "package",
  1362. "dependencies": {
  1363. "Microsoft.IdentityModel.JsonWebTokens": "6.15.1",
  1364. "Microsoft.IdentityModel.Tokens": "6.15.1"
  1365. },
  1366. "compile": {
  1367. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1368. "related": ".xml"
  1369. }
  1370. },
  1371. "runtime": {
  1372. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1373. "related": ".xml"
  1374. }
  1375. }
  1376. },
  1377. "System.IO/4.3.0": {
  1378. "type": "package",
  1379. "dependencies": {
  1380. "Microsoft.NETCore.Platforms": "1.1.0",
  1381. "Microsoft.NETCore.Targets": "1.1.0",
  1382. "System.Runtime": "4.3.0",
  1383. "System.Text.Encoding": "4.3.0",
  1384. "System.Threading.Tasks": "4.3.0"
  1385. },
  1386. "compile": {
  1387. "ref/netstandard1.5/System.IO.dll": {
  1388. "related": ".xml"
  1389. }
  1390. }
  1391. },
  1392. "System.IO.FileSystem/4.3.0": {
  1393. "type": "package",
  1394. "dependencies": {
  1395. "Microsoft.NETCore.Platforms": "1.1.0",
  1396. "Microsoft.NETCore.Targets": "1.1.0",
  1397. "System.IO": "4.3.0",
  1398. "System.IO.FileSystem.Primitives": "4.3.0",
  1399. "System.Runtime": "4.3.0",
  1400. "System.Runtime.Handles": "4.3.0",
  1401. "System.Text.Encoding": "4.3.0",
  1402. "System.Threading.Tasks": "4.3.0"
  1403. },
  1404. "compile": {
  1405. "ref/netstandard1.3/_._": {
  1406. "related": ".xml"
  1407. }
  1408. }
  1409. },
  1410. "System.IO.FileSystem.AccessControl/4.7.0": {
  1411. "type": "package",
  1412. "dependencies": {
  1413. "System.Security.AccessControl": "4.7.0",
  1414. "System.Security.Principal.Windows": "4.7.0"
  1415. },
  1416. "compile": {
  1417. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1418. "related": ".xml"
  1419. }
  1420. },
  1421. "runtime": {
  1422. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1423. "related": ".xml"
  1424. }
  1425. },
  1426. "runtimeTargets": {
  1427. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1428. "assetType": "runtime",
  1429. "rid": "win"
  1430. }
  1431. }
  1432. },
  1433. "System.IO.FileSystem.Primitives/4.3.0": {
  1434. "type": "package",
  1435. "dependencies": {
  1436. "System.Runtime": "4.3.0"
  1437. },
  1438. "compile": {
  1439. "ref/netstandard1.3/_._": {
  1440. "related": ".xml"
  1441. }
  1442. },
  1443. "runtime": {
  1444. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1445. }
  1446. },
  1447. "System.Linq/4.3.0": {
  1448. "type": "package",
  1449. "dependencies": {
  1450. "System.Collections": "4.3.0",
  1451. "System.Diagnostics.Debug": "4.3.0",
  1452. "System.Resources.ResourceManager": "4.3.0",
  1453. "System.Runtime": "4.3.0",
  1454. "System.Runtime.Extensions": "4.3.0"
  1455. },
  1456. "compile": {
  1457. "ref/netstandard1.6/_._": {
  1458. "related": ".xml"
  1459. }
  1460. },
  1461. "runtime": {
  1462. "lib/netstandard1.6/System.Linq.dll": {}
  1463. }
  1464. },
  1465. "System.Linq.Expressions/4.3.0": {
  1466. "type": "package",
  1467. "dependencies": {
  1468. "System.Collections": "4.3.0",
  1469. "System.Diagnostics.Debug": "4.3.0",
  1470. "System.Globalization": "4.3.0",
  1471. "System.IO": "4.3.0",
  1472. "System.Linq": "4.3.0",
  1473. "System.ObjectModel": "4.3.0",
  1474. "System.Reflection": "4.3.0",
  1475. "System.Reflection.Emit": "4.3.0",
  1476. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1477. "System.Reflection.Emit.Lightweight": "4.3.0",
  1478. "System.Reflection.Extensions": "4.3.0",
  1479. "System.Reflection.Primitives": "4.3.0",
  1480. "System.Reflection.TypeExtensions": "4.3.0",
  1481. "System.Resources.ResourceManager": "4.3.0",
  1482. "System.Runtime": "4.3.0",
  1483. "System.Runtime.Extensions": "4.3.0",
  1484. "System.Threading": "4.3.0"
  1485. },
  1486. "compile": {
  1487. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1488. "related": ".xml"
  1489. }
  1490. },
  1491. "runtime": {
  1492. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1493. }
  1494. },
  1495. "System.Memory/4.5.3": {
  1496. "type": "package",
  1497. "compile": {
  1498. "ref/netcoreapp2.1/_._": {}
  1499. },
  1500. "runtime": {
  1501. "lib/netcoreapp2.1/_._": {}
  1502. }
  1503. },
  1504. "System.ObjectModel/4.3.0": {
  1505. "type": "package",
  1506. "dependencies": {
  1507. "System.Collections": "4.3.0",
  1508. "System.Diagnostics.Debug": "4.3.0",
  1509. "System.Resources.ResourceManager": "4.3.0",
  1510. "System.Runtime": "4.3.0",
  1511. "System.Threading": "4.3.0"
  1512. },
  1513. "compile": {
  1514. "ref/netstandard1.3/System.ObjectModel.dll": {
  1515. "related": ".xml"
  1516. }
  1517. },
  1518. "runtime": {
  1519. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1520. }
  1521. },
  1522. "System.Reflection/4.3.0": {
  1523. "type": "package",
  1524. "dependencies": {
  1525. "Microsoft.NETCore.Platforms": "1.1.0",
  1526. "Microsoft.NETCore.Targets": "1.1.0",
  1527. "System.IO": "4.3.0",
  1528. "System.Reflection.Primitives": "4.3.0",
  1529. "System.Runtime": "4.3.0"
  1530. },
  1531. "compile": {
  1532. "ref/netstandard1.5/System.Reflection.dll": {
  1533. "related": ".xml"
  1534. }
  1535. }
  1536. },
  1537. "System.Reflection.Emit/4.3.0": {
  1538. "type": "package",
  1539. "dependencies": {
  1540. "System.IO": "4.3.0",
  1541. "System.Reflection": "4.3.0",
  1542. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1543. "System.Reflection.Primitives": "4.3.0",
  1544. "System.Runtime": "4.3.0"
  1545. },
  1546. "compile": {
  1547. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  1548. "related": ".xml"
  1549. }
  1550. },
  1551. "runtime": {
  1552. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1553. }
  1554. },
  1555. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "System.Reflection": "4.3.0",
  1559. "System.Reflection.Primitives": "4.3.0",
  1560. "System.Runtime": "4.3.0"
  1561. },
  1562. "compile": {
  1563. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  1564. "related": ".xml"
  1565. }
  1566. },
  1567. "runtime": {
  1568. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1569. }
  1570. },
  1571. "System.Reflection.Emit.Lightweight/4.3.0": {
  1572. "type": "package",
  1573. "dependencies": {
  1574. "System.Reflection": "4.3.0",
  1575. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1576. "System.Reflection.Primitives": "4.3.0",
  1577. "System.Runtime": "4.3.0"
  1578. },
  1579. "compile": {
  1580. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  1581. "related": ".xml"
  1582. }
  1583. },
  1584. "runtime": {
  1585. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1586. }
  1587. },
  1588. "System.Reflection.Extensions/4.3.0": {
  1589. "type": "package",
  1590. "dependencies": {
  1591. "Microsoft.NETCore.Platforms": "1.1.0",
  1592. "Microsoft.NETCore.Targets": "1.1.0",
  1593. "System.Reflection": "4.3.0",
  1594. "System.Runtime": "4.3.0"
  1595. },
  1596. "compile": {
  1597. "ref/netstandard1.0/_._": {
  1598. "related": ".xml"
  1599. }
  1600. }
  1601. },
  1602. "System.Reflection.Metadata/6.0.1": {
  1603. "type": "package",
  1604. "dependencies": {
  1605. "System.Collections.Immutable": "6.0.0"
  1606. },
  1607. "compile": {
  1608. "lib/net6.0/System.Reflection.Metadata.dll": {
  1609. "related": ".xml"
  1610. }
  1611. },
  1612. "runtime": {
  1613. "lib/net6.0/System.Reflection.Metadata.dll": {
  1614. "related": ".xml"
  1615. }
  1616. },
  1617. "build": {
  1618. "buildTransitive/netcoreapp3.1/_._": {}
  1619. }
  1620. },
  1621. "System.Reflection.Primitives/4.3.0": {
  1622. "type": "package",
  1623. "dependencies": {
  1624. "Microsoft.NETCore.Platforms": "1.1.0",
  1625. "Microsoft.NETCore.Targets": "1.1.0",
  1626. "System.Runtime": "4.3.0"
  1627. },
  1628. "compile": {
  1629. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1630. "related": ".xml"
  1631. }
  1632. }
  1633. },
  1634. "System.Reflection.TypeExtensions/4.3.0": {
  1635. "type": "package",
  1636. "dependencies": {
  1637. "System.Reflection": "4.3.0",
  1638. "System.Runtime": "4.3.0"
  1639. },
  1640. "compile": {
  1641. "ref/netstandard1.5/_._": {
  1642. "related": ".xml"
  1643. }
  1644. },
  1645. "runtime": {
  1646. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1647. }
  1648. },
  1649. "System.Resources.ResourceManager/4.3.0": {
  1650. "type": "package",
  1651. "dependencies": {
  1652. "Microsoft.NETCore.Platforms": "1.1.0",
  1653. "Microsoft.NETCore.Targets": "1.1.0",
  1654. "System.Globalization": "4.3.0",
  1655. "System.Reflection": "4.3.0",
  1656. "System.Runtime": "4.3.0"
  1657. },
  1658. "compile": {
  1659. "ref/netstandard1.0/_._": {
  1660. "related": ".xml"
  1661. }
  1662. }
  1663. },
  1664. "System.Runtime/4.3.0": {
  1665. "type": "package",
  1666. "dependencies": {
  1667. "Microsoft.NETCore.Platforms": "1.1.0",
  1668. "Microsoft.NETCore.Targets": "1.1.0"
  1669. },
  1670. "compile": {
  1671. "ref/netstandard1.5/System.Runtime.dll": {
  1672. "related": ".xml"
  1673. }
  1674. }
  1675. },
  1676. "System.Runtime.Caching/4.7.0": {
  1677. "type": "package",
  1678. "dependencies": {
  1679. "System.Configuration.ConfigurationManager": "4.7.0"
  1680. },
  1681. "compile": {
  1682. "ref/netstandard2.0/_._": {
  1683. "related": ".xml"
  1684. }
  1685. },
  1686. "runtime": {
  1687. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1688. "related": ".xml"
  1689. }
  1690. },
  1691. "runtimeTargets": {
  1692. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1693. "assetType": "runtime",
  1694. "rid": "win"
  1695. }
  1696. }
  1697. },
  1698. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1699. "type": "package",
  1700. "compile": {
  1701. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1702. "related": ".xml"
  1703. }
  1704. },
  1705. "runtime": {
  1706. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1707. "related": ".xml"
  1708. }
  1709. },
  1710. "build": {
  1711. "buildTransitive/netcoreapp3.1/_._": {}
  1712. }
  1713. },
  1714. "System.Runtime.Extensions/4.3.0": {
  1715. "type": "package",
  1716. "dependencies": {
  1717. "Microsoft.NETCore.Platforms": "1.1.0",
  1718. "Microsoft.NETCore.Targets": "1.1.0",
  1719. "System.Runtime": "4.3.0"
  1720. },
  1721. "compile": {
  1722. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  1723. "related": ".xml"
  1724. }
  1725. }
  1726. },
  1727. "System.Runtime.Handles/4.3.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "Microsoft.NETCore.Platforms": "1.1.0",
  1731. "Microsoft.NETCore.Targets": "1.1.0",
  1732. "System.Runtime": "4.3.0"
  1733. },
  1734. "compile": {
  1735. "ref/netstandard1.3/_._": {
  1736. "related": ".xml"
  1737. }
  1738. }
  1739. },
  1740. "System.Runtime.Serialization.Primitives/4.3.0": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "System.Resources.ResourceManager": "4.3.0",
  1744. "System.Runtime": "4.3.0"
  1745. },
  1746. "compile": {
  1747. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  1748. "related": ".xml"
  1749. }
  1750. },
  1751. "runtime": {
  1752. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1753. }
  1754. },
  1755. "System.Security.AccessControl/4.7.0": {
  1756. "type": "package",
  1757. "dependencies": {
  1758. "Microsoft.NETCore.Platforms": "3.1.0",
  1759. "System.Security.Principal.Windows": "4.7.0"
  1760. },
  1761. "compile": {
  1762. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  1763. "related": ".xml"
  1764. }
  1765. },
  1766. "runtime": {
  1767. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  1768. "related": ".xml"
  1769. }
  1770. },
  1771. "runtimeTargets": {
  1772. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1773. "assetType": "runtime",
  1774. "rid": "win"
  1775. }
  1776. }
  1777. },
  1778. "System.Security.Cryptography.Cng/4.5.0": {
  1779. "type": "package",
  1780. "compile": {
  1781. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1787. },
  1788. "runtimeTargets": {
  1789. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1790. "assetType": "runtime",
  1791. "rid": "win"
  1792. }
  1793. }
  1794. },
  1795. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1796. "type": "package",
  1797. "compile": {
  1798. "ref/netstandard2.0/_._": {
  1799. "related": ".xml"
  1800. }
  1801. },
  1802. "runtime": {
  1803. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1804. "related": ".xml"
  1805. }
  1806. },
  1807. "runtimeTargets": {
  1808. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1809. "assetType": "runtime",
  1810. "rid": "win"
  1811. }
  1812. }
  1813. },
  1814. "System.Security.Permissions/4.7.0": {
  1815. "type": "package",
  1816. "dependencies": {
  1817. "System.Security.AccessControl": "4.7.0",
  1818. "System.Windows.Extensions": "4.7.0"
  1819. },
  1820. "compile": {
  1821. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  1822. "related": ".xml"
  1823. }
  1824. },
  1825. "runtime": {
  1826. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  1827. "related": ".xml"
  1828. }
  1829. }
  1830. },
  1831. "System.Security.Principal.Windows/4.7.0": {
  1832. "type": "package",
  1833. "compile": {
  1834. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  1835. "related": ".xml"
  1836. }
  1837. },
  1838. "runtime": {
  1839. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1840. "related": ".xml"
  1841. }
  1842. },
  1843. "runtimeTargets": {
  1844. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1845. "assetType": "runtime",
  1846. "rid": "unix"
  1847. },
  1848. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1849. "assetType": "runtime",
  1850. "rid": "win"
  1851. }
  1852. }
  1853. },
  1854. "System.Text.Encoding/4.3.0": {
  1855. "type": "package",
  1856. "dependencies": {
  1857. "Microsoft.NETCore.Platforms": "1.1.0",
  1858. "Microsoft.NETCore.Targets": "1.1.0",
  1859. "System.Runtime": "4.3.0"
  1860. },
  1861. "compile": {
  1862. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1863. "related": ".xml"
  1864. }
  1865. }
  1866. },
  1867. "System.Text.Encoding.CodePages/6.0.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1871. },
  1872. "compile": {
  1873. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1874. "related": ".xml"
  1875. }
  1876. },
  1877. "runtime": {
  1878. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1879. "related": ".xml"
  1880. }
  1881. },
  1882. "build": {
  1883. "buildTransitive/netcoreapp3.1/_._": {}
  1884. },
  1885. "runtimeTargets": {
  1886. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1887. "assetType": "runtime",
  1888. "rid": "win"
  1889. }
  1890. }
  1891. },
  1892. "System.Text.Encodings.Web/7.0.0": {
  1893. "type": "package",
  1894. "compile": {
  1895. "lib/net7.0/System.Text.Encodings.Web.dll": {
  1896. "related": ".xml"
  1897. }
  1898. },
  1899. "runtime": {
  1900. "lib/net7.0/System.Text.Encodings.Web.dll": {
  1901. "related": ".xml"
  1902. }
  1903. },
  1904. "build": {
  1905. "buildTransitive/net6.0/_._": {}
  1906. },
  1907. "runtimeTargets": {
  1908. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
  1909. "assetType": "runtime",
  1910. "rid": "browser"
  1911. }
  1912. }
  1913. },
  1914. "System.Text.Json/7.0.2": {
  1915. "type": "package",
  1916. "dependencies": {
  1917. "System.Text.Encodings.Web": "7.0.0"
  1918. },
  1919. "compile": {
  1920. "lib/net7.0/System.Text.Json.dll": {
  1921. "related": ".xml"
  1922. }
  1923. },
  1924. "runtime": {
  1925. "lib/net7.0/System.Text.Json.dll": {
  1926. "related": ".xml"
  1927. }
  1928. },
  1929. "build": {
  1930. "buildTransitive/net6.0/System.Text.Json.targets": {}
  1931. }
  1932. },
  1933. "System.Text.RegularExpressions/4.3.0": {
  1934. "type": "package",
  1935. "dependencies": {
  1936. "System.Runtime": "4.3.0"
  1937. },
  1938. "compile": {
  1939. "ref/netcoreapp1.1/_._": {}
  1940. },
  1941. "runtime": {
  1942. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1943. }
  1944. },
  1945. "System.Threading/4.3.0": {
  1946. "type": "package",
  1947. "dependencies": {
  1948. "System.Runtime": "4.3.0",
  1949. "System.Threading.Tasks": "4.3.0"
  1950. },
  1951. "compile": {
  1952. "ref/netstandard1.3/_._": {
  1953. "related": ".xml"
  1954. }
  1955. },
  1956. "runtime": {
  1957. "lib/netstandard1.3/System.Threading.dll": {}
  1958. }
  1959. },
  1960. "System.Threading.Tasks/4.3.0": {
  1961. "type": "package",
  1962. "dependencies": {
  1963. "Microsoft.NETCore.Platforms": "1.1.0",
  1964. "Microsoft.NETCore.Targets": "1.1.0",
  1965. "System.Runtime": "4.3.0"
  1966. },
  1967. "compile": {
  1968. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  1969. "related": ".xml"
  1970. }
  1971. }
  1972. },
  1973. "System.Threading.Tasks.Parallel/4.3.0": {
  1974. "type": "package",
  1975. "dependencies": {
  1976. "System.Collections.Concurrent": "4.3.0",
  1977. "System.Diagnostics.Debug": "4.3.0",
  1978. "System.Diagnostics.Tracing": "4.3.0",
  1979. "System.Resources.ResourceManager": "4.3.0",
  1980. "System.Runtime": "4.3.0",
  1981. "System.Runtime.Extensions": "4.3.0",
  1982. "System.Threading": "4.3.0",
  1983. "System.Threading.Tasks": "4.3.0"
  1984. },
  1985. "compile": {
  1986. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {
  1987. "related": ".xml"
  1988. }
  1989. },
  1990. "runtime": {
  1991. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
  1992. }
  1993. },
  1994. "System.Windows.Extensions/4.7.0": {
  1995. "type": "package",
  1996. "dependencies": {
  1997. "System.Drawing.Common": "4.7.0"
  1998. },
  1999. "compile": {
  2000. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2001. "related": ".xml"
  2002. }
  2003. },
  2004. "runtime": {
  2005. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2006. "related": ".xml"
  2007. }
  2008. },
  2009. "runtimeTargets": {
  2010. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2011. "assetType": "runtime",
  2012. "rid": "win"
  2013. }
  2014. }
  2015. }
  2016. }
  2017. },
  2018. "libraries": {
  2019. "Ben.Demystifier/0.4.1": {
  2020. "sha512": "axFeEMfmEORy3ipAzOXG/lE+KcNptRbei3F0C4kQCdeiQtW+qJW90K5iIovITGrdLt8AjhNCwk5qLSX9/rFpoA==",
  2021. "type": "package",
  2022. "path": "ben.demystifier/0.4.1",
  2023. "files": [
  2024. ".nupkg.metadata",
  2025. ".signature.p7s",
  2026. "ben.demystifier.0.4.1.nupkg.sha512",
  2027. "ben.demystifier.nuspec",
  2028. "icon.png",
  2029. "lib/net45/Ben.Demystifier.dll",
  2030. "lib/netstandard2.0/Ben.Demystifier.dll",
  2031. "lib/netstandard2.1/Ben.Demystifier.dll",
  2032. "readme.md"
  2033. ]
  2034. },
  2035. "Furion.Extras.Authentication.JwtBearer/4.8.7.36": {
  2036. "sha512": "Z1aC8hICg/RUFgXg+S2XQeCBeW7c3uaIrnm+ojddD9YqXVjPoRE+WAVtKZiR9mHX33RI6u/W2w2SNFC9hZAW5g==",
  2037. "type": "package",
  2038. "path": "furion.extras.authentication.jwtbearer/4.8.7.36",
  2039. "files": [
  2040. ".nupkg.metadata",
  2041. ".signature.p7s",
  2042. "README.md",
  2043. "furion.extras.authentication.jwtbearer.4.8.7.36.nupkg.sha512",
  2044. "furion.extras.authentication.jwtbearer.nuspec",
  2045. "icon.png",
  2046. "lib/net5.0/Furion.Extras.Authentication.JwtBearer.dll",
  2047. "lib/net5.0/Furion.Extras.Authentication.JwtBearer.xml",
  2048. "lib/net6.0/Furion.Extras.Authentication.JwtBearer.dll",
  2049. "lib/net6.0/Furion.Extras.Authentication.JwtBearer.xml",
  2050. "lib/net7.0/Furion.Extras.Authentication.JwtBearer.dll",
  2051. "lib/net7.0/Furion.Extras.Authentication.JwtBearer.xml",
  2052. "lib/net8.0/Furion.Extras.Authentication.JwtBearer.dll",
  2053. "lib/net8.0/Furion.Extras.Authentication.JwtBearer.xml"
  2054. ]
  2055. },
  2056. "Furion.Extras.ObjectMapper.Mapster/4.8.7.36": {
  2057. "sha512": "oaQmJ/oPz7jbdI3xIWb7cql1WEkblSOrYSER3znEbnazB9UJRX2OzwnZD6xbCVNXfzAXEir8krlyJmSm/LCgEg==",
  2058. "type": "package",
  2059. "path": "furion.extras.objectmapper.mapster/4.8.7.36",
  2060. "files": [
  2061. ".nupkg.metadata",
  2062. ".signature.p7s",
  2063. "README.md",
  2064. "furion.extras.objectmapper.mapster.4.8.7.36.nupkg.sha512",
  2065. "furion.extras.objectmapper.mapster.nuspec",
  2066. "icon.png",
  2067. "lib/net5.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2068. "lib/net5.0/Furion.Extras.ObjectMapper.Mapster.xml",
  2069. "lib/net6.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2070. "lib/net6.0/Furion.Extras.ObjectMapper.Mapster.xml",
  2071. "lib/net7.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2072. "lib/net7.0/Furion.Extras.ObjectMapper.Mapster.xml",
  2073. "lib/net8.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2074. "lib/net8.0/Furion.Extras.ObjectMapper.Mapster.xml"
  2075. ]
  2076. },
  2077. "Furion.Pure/4.8.7.36": {
  2078. "sha512": "JsWEdVtsxfB+z9UJA0k1R1Yx3Sn7aYvBgLGwy6Dxb7iQrPqHzioLsrqKjDntL3KRVwhiyfOxS1LzN4BvFKKCvw==",
  2079. "type": "package",
  2080. "path": "furion.pure/4.8.7.36",
  2081. "files": [
  2082. ".nupkg.metadata",
  2083. ".signature.p7s",
  2084. "README.md",
  2085. "furion.pure.4.8.7.36.nupkg.sha512",
  2086. "furion.pure.nuspec",
  2087. "icon.png",
  2088. "lib/net5.0/Furion.Pure.dll",
  2089. "lib/net5.0/Furion.Pure.xml",
  2090. "lib/net6.0/Furion.Pure.dll",
  2091. "lib/net6.0/Furion.Pure.xml",
  2092. "lib/net7.0/Furion.Pure.dll",
  2093. "lib/net7.0/Furion.Pure.xml",
  2094. "lib/net8.0/Furion.Pure.dll",
  2095. "lib/net8.0/Furion.Pure.xml"
  2096. ]
  2097. },
  2098. "Furion.Pure.Extras.DependencyModel.CodeAnalysis/4.8.7.36": {
  2099. "sha512": "W9ROD2uWaUy9wPsW4ip5wgcjKEmVlzhNNkm4/EnJ7vdov9nAzSzA59BZcGvmEEj0i5QFIJzxDWAVKsD4R+rGYw==",
  2100. "type": "package",
  2101. "path": "furion.pure.extras.dependencymodel.codeanalysis/4.8.7.36",
  2102. "files": [
  2103. ".nupkg.metadata",
  2104. ".signature.p7s",
  2105. "README.md",
  2106. "furion.pure.extras.dependencymodel.codeanalysis.4.8.7.36.nupkg.sha512",
  2107. "furion.pure.extras.dependencymodel.codeanalysis.nuspec",
  2108. "icon.png",
  2109. "lib/net5.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2110. "lib/net5.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml",
  2111. "lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2112. "lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml",
  2113. "lib/net7.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2114. "lib/net7.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml",
  2115. "lib/net8.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2116. "lib/net8.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml"
  2117. ]
  2118. },
  2119. "Mapster/7.3.0": {
  2120. "sha512": "NrCUX/rJa5PTyo6iW4AL5dZLU9PDNlYnrJOVjgdpo5OQM9EtWH2CMHnC5sSuJWC0d0b0SnmeRrIviEem6WxtuQ==",
  2121. "type": "package",
  2122. "path": "mapster/7.3.0",
  2123. "files": [
  2124. ".nupkg.metadata",
  2125. ".signature.p7s",
  2126. "icon.png",
  2127. "lib/netstandard1.3/Mapster.dll",
  2128. "lib/netstandard2.0/Mapster.dll",
  2129. "mapster.7.3.0.nupkg.sha512",
  2130. "mapster.nuspec"
  2131. ]
  2132. },
  2133. "Mapster.Core/1.2.0": {
  2134. "sha512": "TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==",
  2135. "type": "package",
  2136. "path": "mapster.core/1.2.0",
  2137. "files": [
  2138. ".nupkg.metadata",
  2139. ".signature.p7s",
  2140. "icon.png",
  2141. "lib/net40/Mapster.Core.dll",
  2142. "lib/net45/Mapster.Core.dll",
  2143. "lib/netstandard1.3/Mapster.Core.dll",
  2144. "lib/netstandard2.0/Mapster.Core.dll",
  2145. "mapster.core.1.2.0.nupkg.sha512",
  2146. "mapster.core.nuspec"
  2147. ]
  2148. },
  2149. "Mapster.DependencyInjection/1.0.0": {
  2150. "sha512": "nNSGrgu5GirZ8nmuFXHGct+GwXjmbAAb+UqBl3Bwx/vbkCOypuvOziC+wTaNEjz/OE6LMg8yMCZzOtl59Lxw9Q==",
  2151. "type": "package",
  2152. "path": "mapster.dependencyinjection/1.0.0",
  2153. "files": [
  2154. ".nupkg.metadata",
  2155. ".signature.p7s",
  2156. "icon.png",
  2157. "lib/net40/Mapster.DependencyInjection.dll",
  2158. "lib/net45/Mapster.DependencyInjection.dll",
  2159. "lib/netstandard1.3/Mapster.DependencyInjection.dll",
  2160. "lib/netstandard2.0/Mapster.DependencyInjection.dll",
  2161. "mapster.dependencyinjection.1.0.0.nupkg.sha512",
  2162. "mapster.dependencyinjection.nuspec"
  2163. ]
  2164. },
  2165. "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.4": {
  2166. "sha512": "yMCO9yU1kNQ5MomCnGDNsjPyIvnxHu4U7AfRkLmzZuzCeOGGA5XiehmpfzzqlyIs8wbSR/c6jbuLexedfKgjgA==",
  2167. "type": "package",
  2168. "path": "microsoft.aspnetcore.authentication.jwtbearer/7.0.4",
  2169. "files": [
  2170. ".nupkg.metadata",
  2171. ".signature.p7s",
  2172. "Icon.png",
  2173. "THIRD-PARTY-NOTICES.TXT",
  2174. "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  2175. "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  2176. "microsoft.aspnetcore.authentication.jwtbearer.7.0.4.nupkg.sha512",
  2177. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  2178. ]
  2179. },
  2180. "Microsoft.AspNetCore.JsonPatch/7.0.4": {
  2181. "sha512": "Ign6gpOinYLePR66lVRHhh3qY9sBiVwvp2P3kjYIi5yRd/60BC5kQb+NZWqaIz1/8BXnVqdRE2baEKDm5fU3gg==",
  2182. "type": "package",
  2183. "path": "microsoft.aspnetcore.jsonpatch/7.0.4",
  2184. "files": [
  2185. ".nupkg.metadata",
  2186. ".signature.p7s",
  2187. "Icon.png",
  2188. "THIRD-PARTY-NOTICES.TXT",
  2189. "lib/net462/Microsoft.AspNetCore.JsonPatch.dll",
  2190. "lib/net462/Microsoft.AspNetCore.JsonPatch.xml",
  2191. "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll",
  2192. "lib/net7.0/Microsoft.AspNetCore.JsonPatch.xml",
  2193. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  2194. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  2195. "microsoft.aspnetcore.jsonpatch.7.0.4.nupkg.sha512",
  2196. "microsoft.aspnetcore.jsonpatch.nuspec"
  2197. ]
  2198. },
  2199. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.4": {
  2200. "sha512": "o7gsUVT5HjBWBOeh8OaZSIoKBr5gCZdBfThivMr8Xh3IPGcQDO1cGHzBTaQQ/DoxhPnducXacCl9On5GFxcOxw==",
  2201. "type": "package",
  2202. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.4",
  2203. "files": [
  2204. ".nupkg.metadata",
  2205. ".signature.p7s",
  2206. "Icon.png",
  2207. "THIRD-PARTY-NOTICES.TXT",
  2208. "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  2209. "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  2210. "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.4.nupkg.sha512",
  2211. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  2212. ]
  2213. },
  2214. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": {
  2215. "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==",
  2216. "type": "package",
  2217. "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0",
  2218. "files": [
  2219. ".nupkg.metadata",
  2220. ".signature.p7s",
  2221. "Icon.png",
  2222. "THIRD-PARTY-NOTICES.TXT",
  2223. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  2224. "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512",
  2225. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  2226. ]
  2227. },
  2228. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/7.0.4": {
  2229. "sha512": "jMCy3GrhNCgXy2vzISIjye1o1N2WHpMTLMcRtBg3sXeZhK6N8rHA8bZUorQaGl/GX3GOkW/PsgISzCQjVA3WkQ==",
  2230. "type": "package",
  2231. "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/7.0.4",
  2232. "files": [
  2233. ".nupkg.metadata",
  2234. ".signature.p7s",
  2235. "Icon.png",
  2236. "THIRD-PARTY-NOTICES.TXT",
  2237. "build/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  2238. "buildTransitive/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  2239. "lib/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll",
  2240. "lib/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml",
  2241. "microsoft.aspnetcore.mvc.razor.runtimecompilation.7.0.4.nupkg.sha512",
  2242. "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec"
  2243. ]
  2244. },
  2245. "Microsoft.AspNetCore.Razor.Language/6.0.15": {
  2246. "sha512": "AzJIbL5XPxfgFas691Yjm3r+NUyM633xAlA4uAzmcbtVmGReAzUjLJAZiAi/onBrX3s8aeKNrw7OuHvtmYGmHw==",
  2247. "type": "package",
  2248. "path": "microsoft.aspnetcore.razor.language/6.0.15",
  2249. "files": [
  2250. ".nupkg.metadata",
  2251. ".signature.p7s",
  2252. "Icon.png",
  2253. "THIRD-PARTY-NOTICES.TXT",
  2254. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  2255. "microsoft.aspnetcore.razor.language.6.0.15.nupkg.sha512",
  2256. "microsoft.aspnetcore.razor.language.nuspec"
  2257. ]
  2258. },
  2259. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  2260. "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
  2261. "type": "package",
  2262. "path": "microsoft.codeanalysis.analyzers/3.3.3",
  2263. "hasTools": true,
  2264. "files": [
  2265. ".nupkg.metadata",
  2266. ".signature.p7s",
  2267. "Icon.png",
  2268. "ThirdPartyNotices.rtf",
  2269. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  2270. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  2271. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2272. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2273. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2274. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2275. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2276. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2277. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2278. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2279. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2280. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2281. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2282. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2283. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2284. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  2285. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  2286. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2287. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2288. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2289. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2290. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2291. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2292. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2293. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2294. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2295. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2296. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2297. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2298. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2299. "build/Microsoft.CodeAnalysis.Analyzers.props",
  2300. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  2301. "build/config/analysislevel_2_9_8_all.editorconfig",
  2302. "build/config/analysislevel_2_9_8_default.editorconfig",
  2303. "build/config/analysislevel_2_9_8_minimum.editorconfig",
  2304. "build/config/analysislevel_2_9_8_none.editorconfig",
  2305. "build/config/analysislevel_2_9_8_recommended.editorconfig",
  2306. "build/config/analysislevel_3_3_all.editorconfig",
  2307. "build/config/analysislevel_3_3_default.editorconfig",
  2308. "build/config/analysislevel_3_3_minimum.editorconfig",
  2309. "build/config/analysislevel_3_3_none.editorconfig",
  2310. "build/config/analysislevel_3_3_recommended.editorconfig",
  2311. "build/config/analysislevel_3_all.editorconfig",
  2312. "build/config/analysislevel_3_default.editorconfig",
  2313. "build/config/analysislevel_3_minimum.editorconfig",
  2314. "build/config/analysislevel_3_none.editorconfig",
  2315. "build/config/analysislevel_3_recommended.editorconfig",
  2316. "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
  2317. "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
  2318. "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
  2319. "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
  2320. "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
  2321. "build/config/analysislevelcorrectness_3_3_all.editorconfig",
  2322. "build/config/analysislevelcorrectness_3_3_default.editorconfig",
  2323. "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
  2324. "build/config/analysislevelcorrectness_3_3_none.editorconfig",
  2325. "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
  2326. "build/config/analysislevelcorrectness_3_all.editorconfig",
  2327. "build/config/analysislevelcorrectness_3_default.editorconfig",
  2328. "build/config/analysislevelcorrectness_3_minimum.editorconfig",
  2329. "build/config/analysislevelcorrectness_3_none.editorconfig",
  2330. "build/config/analysislevelcorrectness_3_recommended.editorconfig",
  2331. "build/config/analysislevellibrary_2_9_8_all.editorconfig",
  2332. "build/config/analysislevellibrary_2_9_8_default.editorconfig",
  2333. "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
  2334. "build/config/analysislevellibrary_2_9_8_none.editorconfig",
  2335. "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
  2336. "build/config/analysislevellibrary_3_3_all.editorconfig",
  2337. "build/config/analysislevellibrary_3_3_default.editorconfig",
  2338. "build/config/analysislevellibrary_3_3_minimum.editorconfig",
  2339. "build/config/analysislevellibrary_3_3_none.editorconfig",
  2340. "build/config/analysislevellibrary_3_3_recommended.editorconfig",
  2341. "build/config/analysislevellibrary_3_all.editorconfig",
  2342. "build/config/analysislevellibrary_3_default.editorconfig",
  2343. "build/config/analysislevellibrary_3_minimum.editorconfig",
  2344. "build/config/analysislevellibrary_3_none.editorconfig",
  2345. "build/config/analysislevellibrary_3_recommended.editorconfig",
  2346. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
  2347. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
  2348. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
  2349. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
  2350. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
  2351. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
  2352. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
  2353. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
  2354. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
  2355. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
  2356. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
  2357. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
  2358. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
  2359. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
  2360. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
  2361. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
  2362. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
  2363. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
  2364. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
  2365. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
  2366. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
  2367. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
  2368. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
  2369. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
  2370. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
  2371. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
  2372. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
  2373. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
  2374. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
  2375. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
  2376. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
  2377. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
  2378. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
  2379. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
  2380. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
  2381. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
  2382. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
  2383. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
  2384. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
  2385. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
  2386. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
  2387. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
  2388. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
  2389. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
  2390. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
  2391. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
  2392. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
  2393. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
  2394. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
  2395. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
  2396. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
  2397. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
  2398. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
  2399. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
  2400. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
  2401. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
  2402. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
  2403. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
  2404. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
  2405. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
  2406. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
  2407. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
  2408. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
  2409. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
  2410. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
  2411. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
  2412. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
  2413. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
  2414. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
  2415. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
  2416. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
  2417. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
  2418. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
  2419. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
  2420. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
  2421. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
  2422. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
  2423. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
  2424. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
  2425. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
  2426. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
  2427. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
  2428. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
  2429. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
  2430. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
  2431. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
  2432. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
  2433. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
  2434. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
  2435. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
  2436. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
  2437. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
  2438. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
  2439. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
  2440. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
  2441. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
  2442. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
  2443. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
  2444. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
  2445. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
  2446. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
  2447. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
  2448. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
  2449. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
  2450. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
  2451. "documentation/Analyzer Configuration.md",
  2452. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  2453. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  2454. "editorconfig/AllRulesDefault/.editorconfig",
  2455. "editorconfig/AllRulesDisabled/.editorconfig",
  2456. "editorconfig/AllRulesEnabled/.editorconfig",
  2457. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  2458. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  2459. "editorconfig/DataflowRulesDefault/.editorconfig",
  2460. "editorconfig/DataflowRulesEnabled/.editorconfig",
  2461. "editorconfig/LibraryRulesDefault/.editorconfig",
  2462. "editorconfig/LibraryRulesEnabled/.editorconfig",
  2463. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  2464. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  2465. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  2466. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  2467. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  2468. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  2469. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  2470. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  2471. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  2472. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  2473. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  2474. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  2475. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  2476. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  2477. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  2478. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  2479. "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
  2480. "microsoft.codeanalysis.analyzers.nuspec",
  2481. "rulesets/AllRulesDefault.ruleset",
  2482. "rulesets/AllRulesDisabled.ruleset",
  2483. "rulesets/AllRulesEnabled.ruleset",
  2484. "rulesets/CorrectnessRulesDefault.ruleset",
  2485. "rulesets/CorrectnessRulesEnabled.ruleset",
  2486. "rulesets/DataflowRulesDefault.ruleset",
  2487. "rulesets/DataflowRulesEnabled.ruleset",
  2488. "rulesets/LibraryRulesDefault.ruleset",
  2489. "rulesets/LibraryRulesEnabled.ruleset",
  2490. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  2491. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  2492. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  2493. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  2494. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  2495. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  2496. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  2497. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  2498. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  2499. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  2500. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  2501. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  2502. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  2503. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  2504. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  2505. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  2506. "tools/install.ps1",
  2507. "tools/uninstall.ps1"
  2508. ]
  2509. },
  2510. "Microsoft.CodeAnalysis.Common/4.5.0": {
  2511. "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
  2512. "type": "package",
  2513. "path": "microsoft.codeanalysis.common/4.5.0",
  2514. "files": [
  2515. ".nupkg.metadata",
  2516. ".signature.p7s",
  2517. "Icon.png",
  2518. "ThirdPartyNotices.rtf",
  2519. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  2520. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  2521. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  2522. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  2523. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  2524. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  2525. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  2526. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  2527. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  2528. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  2529. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  2530. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2531. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  2532. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  2533. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2534. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2535. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  2536. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  2537. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  2538. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  2539. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  2540. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  2541. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  2542. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  2543. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  2544. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  2545. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  2546. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2547. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  2548. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  2549. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2550. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2551. "microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
  2552. "microsoft.codeanalysis.common.nuspec"
  2553. ]
  2554. },
  2555. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  2556. "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
  2557. "type": "package",
  2558. "path": "microsoft.codeanalysis.csharp/4.5.0",
  2559. "files": [
  2560. ".nupkg.metadata",
  2561. ".signature.p7s",
  2562. "Icon.png",
  2563. "ThirdPartyNotices.rtf",
  2564. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  2565. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  2566. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  2567. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2568. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2569. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2570. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2571. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2572. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2573. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2574. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2575. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2576. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2577. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2578. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2579. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2580. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2581. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2582. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2583. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2584. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2585. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2586. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2587. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2588. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2589. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2590. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2591. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2592. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2593. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2594. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2595. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2596. "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
  2597. "microsoft.codeanalysis.csharp.nuspec"
  2598. ]
  2599. },
  2600. "Microsoft.CodeAnalysis.Razor/6.0.0": {
  2601. "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==",
  2602. "type": "package",
  2603. "path": "microsoft.codeanalysis.razor/6.0.0",
  2604. "files": [
  2605. ".nupkg.metadata",
  2606. ".signature.p7s",
  2607. "Icon.png",
  2608. "THIRD-PARTY-NOTICES.TXT",
  2609. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  2610. "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512",
  2611. "microsoft.codeanalysis.razor.nuspec"
  2612. ]
  2613. },
  2614. "Microsoft.CSharp/4.7.0": {
  2615. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2616. "type": "package",
  2617. "path": "microsoft.csharp/4.7.0",
  2618. "files": [
  2619. ".nupkg.metadata",
  2620. ".signature.p7s",
  2621. "LICENSE.TXT",
  2622. "THIRD-PARTY-NOTICES.TXT",
  2623. "lib/MonoAndroid10/_._",
  2624. "lib/MonoTouch10/_._",
  2625. "lib/net45/_._",
  2626. "lib/netcore50/Microsoft.CSharp.dll",
  2627. "lib/netcoreapp2.0/_._",
  2628. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2629. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2630. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2631. "lib/portable-net45+win8+wp8+wpa81/_._",
  2632. "lib/uap10.0.16299/_._",
  2633. "lib/win8/_._",
  2634. "lib/wp80/_._",
  2635. "lib/wpa81/_._",
  2636. "lib/xamarinios10/_._",
  2637. "lib/xamarinmac20/_._",
  2638. "lib/xamarintvos10/_._",
  2639. "lib/xamarinwatchos10/_._",
  2640. "microsoft.csharp.4.7.0.nupkg.sha512",
  2641. "microsoft.csharp.nuspec",
  2642. "ref/MonoAndroid10/_._",
  2643. "ref/MonoTouch10/_._",
  2644. "ref/net45/_._",
  2645. "ref/netcore50/Microsoft.CSharp.dll",
  2646. "ref/netcore50/Microsoft.CSharp.xml",
  2647. "ref/netcore50/de/Microsoft.CSharp.xml",
  2648. "ref/netcore50/es/Microsoft.CSharp.xml",
  2649. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2650. "ref/netcore50/it/Microsoft.CSharp.xml",
  2651. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2652. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2653. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2654. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2655. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2656. "ref/netcoreapp2.0/_._",
  2657. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2658. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2659. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2660. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2661. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2662. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2663. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2664. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2665. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2666. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2667. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2668. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2669. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2670. "ref/portable-net45+win8+wp8+wpa81/_._",
  2671. "ref/uap10.0.16299/_._",
  2672. "ref/win8/_._",
  2673. "ref/wp80/_._",
  2674. "ref/wpa81/_._",
  2675. "ref/xamarinios10/_._",
  2676. "ref/xamarinmac20/_._",
  2677. "ref/xamarintvos10/_._",
  2678. "ref/xamarinwatchos10/_._",
  2679. "useSharedDesignerContext.txt",
  2680. "version.txt"
  2681. ]
  2682. },
  2683. "Microsoft.Data.SqlClient/2.1.4": {
  2684. "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  2685. "type": "package",
  2686. "path": "microsoft.data.sqlclient/2.1.4",
  2687. "files": [
  2688. ".nupkg.metadata",
  2689. ".signature.p7s",
  2690. "dotnet.png",
  2691. "lib/net46/Microsoft.Data.SqlClient.dll",
  2692. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2693. "lib/net46/Microsoft.Data.SqlClient.xml",
  2694. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2695. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2696. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2697. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2698. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2699. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2700. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2701. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2702. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2703. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2704. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2705. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2706. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2707. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2708. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2709. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2710. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2711. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2712. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2713. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2714. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2715. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2716. "microsoft.data.sqlclient.2.1.4.nupkg.sha512",
  2717. "microsoft.data.sqlclient.nuspec",
  2718. "ref/net46/Microsoft.Data.SqlClient.dll",
  2719. "ref/net46/Microsoft.Data.SqlClient.pdb",
  2720. "ref/net46/Microsoft.Data.SqlClient.xml",
  2721. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2722. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2723. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2724. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2725. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2726. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2727. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2728. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2729. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2730. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2731. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2732. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2733. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2734. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2735. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2736. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2737. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2738. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2739. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2740. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2741. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  2742. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  2743. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2744. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2745. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2746. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2747. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2748. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2749. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2750. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2751. ]
  2752. },
  2753. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2754. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2755. "type": "package",
  2756. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2757. "files": [
  2758. ".nupkg.metadata",
  2759. ".signature.p7s",
  2760. "LICENSE.txt",
  2761. "dotnet.png",
  2762. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  2763. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2764. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2765. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2766. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2767. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2768. ]
  2769. },
  2770. "Microsoft.Data.Sqlite/5.0.5": {
  2771. "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  2772. "type": "package",
  2773. "path": "microsoft.data.sqlite/5.0.5",
  2774. "files": [
  2775. ".nupkg.metadata",
  2776. ".signature.p7s",
  2777. "Icon.png",
  2778. "lib/netstandard2.0/_._",
  2779. "microsoft.data.sqlite.5.0.5.nupkg.sha512",
  2780. "microsoft.data.sqlite.nuspec"
  2781. ]
  2782. },
  2783. "Microsoft.Data.Sqlite.Core/5.0.5": {
  2784. "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  2785. "type": "package",
  2786. "path": "microsoft.data.sqlite.core/5.0.5",
  2787. "files": [
  2788. ".nupkg.metadata",
  2789. ".signature.p7s",
  2790. "Icon.png",
  2791. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  2792. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  2793. "microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
  2794. "microsoft.data.sqlite.core.nuspec"
  2795. ]
  2796. },
  2797. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  2798. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  2799. "type": "package",
  2800. "path": "microsoft.extensions.apidescription.server/6.0.5",
  2801. "hasTools": true,
  2802. "files": [
  2803. ".nupkg.metadata",
  2804. ".signature.p7s",
  2805. "Icon.png",
  2806. "build/Microsoft.Extensions.ApiDescription.Server.props",
  2807. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  2808. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  2809. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  2810. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  2811. "microsoft.extensions.apidescription.server.nuspec",
  2812. "tools/Newtonsoft.Json.dll",
  2813. "tools/dotnet-getdocument.deps.json",
  2814. "tools/dotnet-getdocument.dll",
  2815. "tools/dotnet-getdocument.runtimeconfig.json",
  2816. "tools/net461-x86/GetDocument.Insider.exe",
  2817. "tools/net461-x86/GetDocument.Insider.exe.config",
  2818. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  2819. "tools/net461-x86/System.AppContext.dll",
  2820. "tools/net461-x86/System.Buffers.dll",
  2821. "tools/net461-x86/System.Collections.Concurrent.dll",
  2822. "tools/net461-x86/System.Collections.NonGeneric.dll",
  2823. "tools/net461-x86/System.Collections.Specialized.dll",
  2824. "tools/net461-x86/System.Collections.dll",
  2825. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  2826. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  2827. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  2828. "tools/net461-x86/System.ComponentModel.dll",
  2829. "tools/net461-x86/System.Console.dll",
  2830. "tools/net461-x86/System.Data.Common.dll",
  2831. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  2832. "tools/net461-x86/System.Diagnostics.Debug.dll",
  2833. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  2834. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  2835. "tools/net461-x86/System.Diagnostics.Process.dll",
  2836. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  2837. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  2838. "tools/net461-x86/System.Diagnostics.Tools.dll",
  2839. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  2840. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  2841. "tools/net461-x86/System.Drawing.Primitives.dll",
  2842. "tools/net461-x86/System.Dynamic.Runtime.dll",
  2843. "tools/net461-x86/System.Globalization.Calendars.dll",
  2844. "tools/net461-x86/System.Globalization.Extensions.dll",
  2845. "tools/net461-x86/System.Globalization.dll",
  2846. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  2847. "tools/net461-x86/System.IO.Compression.dll",
  2848. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  2849. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  2850. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  2851. "tools/net461-x86/System.IO.FileSystem.dll",
  2852. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  2853. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  2854. "tools/net461-x86/System.IO.Pipes.dll",
  2855. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  2856. "tools/net461-x86/System.IO.dll",
  2857. "tools/net461-x86/System.Linq.Expressions.dll",
  2858. "tools/net461-x86/System.Linq.Parallel.dll",
  2859. "tools/net461-x86/System.Linq.Queryable.dll",
  2860. "tools/net461-x86/System.Linq.dll",
  2861. "tools/net461-x86/System.Memory.dll",
  2862. "tools/net461-x86/System.Net.Http.dll",
  2863. "tools/net461-x86/System.Net.NameResolution.dll",
  2864. "tools/net461-x86/System.Net.NetworkInformation.dll",
  2865. "tools/net461-x86/System.Net.Ping.dll",
  2866. "tools/net461-x86/System.Net.Primitives.dll",
  2867. "tools/net461-x86/System.Net.Requests.dll",
  2868. "tools/net461-x86/System.Net.Security.dll",
  2869. "tools/net461-x86/System.Net.Sockets.dll",
  2870. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  2871. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  2872. "tools/net461-x86/System.Net.WebSockets.dll",
  2873. "tools/net461-x86/System.Numerics.Vectors.dll",
  2874. "tools/net461-x86/System.ObjectModel.dll",
  2875. "tools/net461-x86/System.Reflection.Extensions.dll",
  2876. "tools/net461-x86/System.Reflection.Primitives.dll",
  2877. "tools/net461-x86/System.Reflection.dll",
  2878. "tools/net461-x86/System.Resources.Reader.dll",
  2879. "tools/net461-x86/System.Resources.ResourceManager.dll",
  2880. "tools/net461-x86/System.Resources.Writer.dll",
  2881. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  2882. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  2883. "tools/net461-x86/System.Runtime.Extensions.dll",
  2884. "tools/net461-x86/System.Runtime.Handles.dll",
  2885. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  2886. "tools/net461-x86/System.Runtime.InteropServices.dll",
  2887. "tools/net461-x86/System.Runtime.Numerics.dll",
  2888. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  2889. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  2890. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  2891. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  2892. "tools/net461-x86/System.Runtime.dll",
  2893. "tools/net461-x86/System.Security.Claims.dll",
  2894. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  2895. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  2896. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  2897. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  2898. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  2899. "tools/net461-x86/System.Security.Principal.dll",
  2900. "tools/net461-x86/System.Security.SecureString.dll",
  2901. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  2902. "tools/net461-x86/System.Text.Encoding.dll",
  2903. "tools/net461-x86/System.Text.RegularExpressions.dll",
  2904. "tools/net461-x86/System.Threading.Overlapped.dll",
  2905. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  2906. "tools/net461-x86/System.Threading.Tasks.dll",
  2907. "tools/net461-x86/System.Threading.Thread.dll",
  2908. "tools/net461-x86/System.Threading.ThreadPool.dll",
  2909. "tools/net461-x86/System.Threading.Timer.dll",
  2910. "tools/net461-x86/System.Threading.dll",
  2911. "tools/net461-x86/System.ValueTuple.dll",
  2912. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  2913. "tools/net461-x86/System.Xml.XDocument.dll",
  2914. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  2915. "tools/net461-x86/System.Xml.XPath.dll",
  2916. "tools/net461-x86/System.Xml.XmlDocument.dll",
  2917. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  2918. "tools/net461-x86/netstandard.dll",
  2919. "tools/net461/GetDocument.Insider.exe",
  2920. "tools/net461/GetDocument.Insider.exe.config",
  2921. "tools/net461/Microsoft.Win32.Primitives.dll",
  2922. "tools/net461/System.AppContext.dll",
  2923. "tools/net461/System.Buffers.dll",
  2924. "tools/net461/System.Collections.Concurrent.dll",
  2925. "tools/net461/System.Collections.NonGeneric.dll",
  2926. "tools/net461/System.Collections.Specialized.dll",
  2927. "tools/net461/System.Collections.dll",
  2928. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  2929. "tools/net461/System.ComponentModel.Primitives.dll",
  2930. "tools/net461/System.ComponentModel.TypeConverter.dll",
  2931. "tools/net461/System.ComponentModel.dll",
  2932. "tools/net461/System.Console.dll",
  2933. "tools/net461/System.Data.Common.dll",
  2934. "tools/net461/System.Diagnostics.Contracts.dll",
  2935. "tools/net461/System.Diagnostics.Debug.dll",
  2936. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  2937. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  2938. "tools/net461/System.Diagnostics.Process.dll",
  2939. "tools/net461/System.Diagnostics.StackTrace.dll",
  2940. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  2941. "tools/net461/System.Diagnostics.Tools.dll",
  2942. "tools/net461/System.Diagnostics.TraceSource.dll",
  2943. "tools/net461/System.Diagnostics.Tracing.dll",
  2944. "tools/net461/System.Drawing.Primitives.dll",
  2945. "tools/net461/System.Dynamic.Runtime.dll",
  2946. "tools/net461/System.Globalization.Calendars.dll",
  2947. "tools/net461/System.Globalization.Extensions.dll",
  2948. "tools/net461/System.Globalization.dll",
  2949. "tools/net461/System.IO.Compression.ZipFile.dll",
  2950. "tools/net461/System.IO.Compression.dll",
  2951. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  2952. "tools/net461/System.IO.FileSystem.Primitives.dll",
  2953. "tools/net461/System.IO.FileSystem.Watcher.dll",
  2954. "tools/net461/System.IO.FileSystem.dll",
  2955. "tools/net461/System.IO.IsolatedStorage.dll",
  2956. "tools/net461/System.IO.MemoryMappedFiles.dll",
  2957. "tools/net461/System.IO.Pipes.dll",
  2958. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  2959. "tools/net461/System.IO.dll",
  2960. "tools/net461/System.Linq.Expressions.dll",
  2961. "tools/net461/System.Linq.Parallel.dll",
  2962. "tools/net461/System.Linq.Queryable.dll",
  2963. "tools/net461/System.Linq.dll",
  2964. "tools/net461/System.Memory.dll",
  2965. "tools/net461/System.Net.Http.dll",
  2966. "tools/net461/System.Net.NameResolution.dll",
  2967. "tools/net461/System.Net.NetworkInformation.dll",
  2968. "tools/net461/System.Net.Ping.dll",
  2969. "tools/net461/System.Net.Primitives.dll",
  2970. "tools/net461/System.Net.Requests.dll",
  2971. "tools/net461/System.Net.Security.dll",
  2972. "tools/net461/System.Net.Sockets.dll",
  2973. "tools/net461/System.Net.WebHeaderCollection.dll",
  2974. "tools/net461/System.Net.WebSockets.Client.dll",
  2975. "tools/net461/System.Net.WebSockets.dll",
  2976. "tools/net461/System.Numerics.Vectors.dll",
  2977. "tools/net461/System.ObjectModel.dll",
  2978. "tools/net461/System.Reflection.Extensions.dll",
  2979. "tools/net461/System.Reflection.Primitives.dll",
  2980. "tools/net461/System.Reflection.dll",
  2981. "tools/net461/System.Resources.Reader.dll",
  2982. "tools/net461/System.Resources.ResourceManager.dll",
  2983. "tools/net461/System.Resources.Writer.dll",
  2984. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  2985. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  2986. "tools/net461/System.Runtime.Extensions.dll",
  2987. "tools/net461/System.Runtime.Handles.dll",
  2988. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  2989. "tools/net461/System.Runtime.InteropServices.dll",
  2990. "tools/net461/System.Runtime.Numerics.dll",
  2991. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  2992. "tools/net461/System.Runtime.Serialization.Json.dll",
  2993. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  2994. "tools/net461/System.Runtime.Serialization.Xml.dll",
  2995. "tools/net461/System.Runtime.dll",
  2996. "tools/net461/System.Security.Claims.dll",
  2997. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  2998. "tools/net461/System.Security.Cryptography.Csp.dll",
  2999. "tools/net461/System.Security.Cryptography.Encoding.dll",
  3000. "tools/net461/System.Security.Cryptography.Primitives.dll",
  3001. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  3002. "tools/net461/System.Security.Principal.dll",
  3003. "tools/net461/System.Security.SecureString.dll",
  3004. "tools/net461/System.Text.Encoding.Extensions.dll",
  3005. "tools/net461/System.Text.Encoding.dll",
  3006. "tools/net461/System.Text.RegularExpressions.dll",
  3007. "tools/net461/System.Threading.Overlapped.dll",
  3008. "tools/net461/System.Threading.Tasks.Parallel.dll",
  3009. "tools/net461/System.Threading.Tasks.dll",
  3010. "tools/net461/System.Threading.Thread.dll",
  3011. "tools/net461/System.Threading.ThreadPool.dll",
  3012. "tools/net461/System.Threading.Timer.dll",
  3013. "tools/net461/System.Threading.dll",
  3014. "tools/net461/System.ValueTuple.dll",
  3015. "tools/net461/System.Xml.ReaderWriter.dll",
  3016. "tools/net461/System.Xml.XDocument.dll",
  3017. "tools/net461/System.Xml.XPath.XDocument.dll",
  3018. "tools/net461/System.Xml.XPath.dll",
  3019. "tools/net461/System.Xml.XmlDocument.dll",
  3020. "tools/net461/System.Xml.XmlSerializer.dll",
  3021. "tools/net461/netstandard.dll",
  3022. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3023. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3024. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  3025. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  3026. ]
  3027. },
  3028. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  3029. "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  3030. "type": "package",
  3031. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  3032. "files": [
  3033. ".nupkg.metadata",
  3034. ".signature.p7s",
  3035. "Icon.png",
  3036. "LICENSE.TXT",
  3037. "THIRD-PARTY-NOTICES.TXT",
  3038. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3039. "buildTransitive/net462/_._",
  3040. "buildTransitive/net6.0/_._",
  3041. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3042. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3043. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3044. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3045. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3046. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3047. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3048. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3049. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3050. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3051. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3052. "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
  3053. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3054. "useSharedDesignerContext.txt"
  3055. ]
  3056. },
  3057. "Microsoft.Extensions.DependencyModel/7.0.0": {
  3058. "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==",
  3059. "type": "package",
  3060. "path": "microsoft.extensions.dependencymodel/7.0.0",
  3061. "files": [
  3062. ".nupkg.metadata",
  3063. ".signature.p7s",
  3064. "Icon.png",
  3065. "LICENSE.TXT",
  3066. "README.md",
  3067. "THIRD-PARTY-NOTICES.TXT",
  3068. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  3069. "buildTransitive/net462/_._",
  3070. "buildTransitive/net6.0/_._",
  3071. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  3072. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  3073. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  3074. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  3075. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  3076. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  3077. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  3078. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3079. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3080. "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
  3081. "microsoft.extensions.dependencymodel.nuspec",
  3082. "useSharedDesignerContext.txt"
  3083. ]
  3084. },
  3085. "Microsoft.Identity.Client/4.21.1": {
  3086. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  3087. "type": "package",
  3088. "path": "microsoft.identity.client/4.21.1",
  3089. "files": [
  3090. ".nupkg.metadata",
  3091. ".signature.p7s",
  3092. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3093. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3094. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3095. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3096. "lib/net45/Microsoft.Identity.Client.dll",
  3097. "lib/net45/Microsoft.Identity.Client.xml",
  3098. "lib/net461/Microsoft.Identity.Client.dll",
  3099. "lib/net461/Microsoft.Identity.Client.xml",
  3100. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3101. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3102. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3103. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3104. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3105. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3106. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3107. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3108. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3109. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3110. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3111. "microsoft.identity.client.4.21.1.nupkg.sha512",
  3112. "microsoft.identity.client.nuspec",
  3113. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  3114. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  3115. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3116. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3117. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3118. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3119. "ref/net45/Microsoft.Identity.Client.dll",
  3120. "ref/net45/Microsoft.Identity.Client.xml",
  3121. "ref/net461/Microsoft.Identity.Client.dll",
  3122. "ref/net461/Microsoft.Identity.Client.xml",
  3123. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3124. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3125. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3126. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3127. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3128. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3129. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3130. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3131. ]
  3132. },
  3133. "Microsoft.IdentityModel.JsonWebTokens/6.15.1": {
  3134. "sha512": "X5K/Pt02agb1V+khh5u7Q8hg02IVTshxV5owpR7UdQ9zfs0+A6qzca0F9jyv3o8SlOjEFHBabs+5cp7Noofzvg==",
  3135. "type": "package",
  3136. "path": "microsoft.identitymodel.jsonwebtokens/6.15.1",
  3137. "files": [
  3138. ".nupkg.metadata",
  3139. ".signature.p7s",
  3140. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3141. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3142. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3143. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3144. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3145. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3146. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3147. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3148. "microsoft.identitymodel.jsonwebtokens.6.15.1.nupkg.sha512",
  3149. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3150. ]
  3151. },
  3152. "Microsoft.IdentityModel.Logging/6.15.1": {
  3153. "sha512": "PpZHL/Bt/8vQ8g/6LxweuI1EusV0ogUBYnGM+bPeL/SG89gx2n05xKNE/U5JNEkLFLL+sk7O8T7c/PXhFtUtUg==",
  3154. "type": "package",
  3155. "path": "microsoft.identitymodel.logging/6.15.1",
  3156. "files": [
  3157. ".nupkg.metadata",
  3158. ".signature.p7s",
  3159. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3160. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3161. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3162. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3163. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3164. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3165. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3166. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3167. "microsoft.identitymodel.logging.6.15.1.nupkg.sha512",
  3168. "microsoft.identitymodel.logging.nuspec"
  3169. ]
  3170. },
  3171. "Microsoft.IdentityModel.Protocols/6.15.1": {
  3172. "sha512": "6nHr+4yE8vj620Vy4L0pl7kmkvWc06wBrJ+AOo/gjqzu/UD/MYgySUqRGlZYrvvNmKkUWMw4hdn78MPCb4bstA==",
  3173. "type": "package",
  3174. "path": "microsoft.identitymodel.protocols/6.15.1",
  3175. "files": [
  3176. ".nupkg.metadata",
  3177. ".signature.p7s",
  3178. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3179. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3180. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3181. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3182. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  3183. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  3184. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3185. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3186. "microsoft.identitymodel.protocols.6.15.1.nupkg.sha512",
  3187. "microsoft.identitymodel.protocols.nuspec"
  3188. ]
  3189. },
  3190. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": {
  3191. "sha512": "WwecgT/PNrytLNUWjkYtnnG2LXMAzkINSaZM+8dPPiEpOGz1bQDBWAenTSurYICxGoA1sOPriFXk+ocnQyprKw==",
  3192. "type": "package",
  3193. "path": "microsoft.identitymodel.protocols.openidconnect/6.15.1",
  3194. "files": [
  3195. ".nupkg.metadata",
  3196. ".signature.p7s",
  3197. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3198. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3199. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3200. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3201. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3202. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3203. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3204. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3205. "microsoft.identitymodel.protocols.openidconnect.6.15.1.nupkg.sha512",
  3206. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3207. ]
  3208. },
  3209. "Microsoft.IdentityModel.Tokens/6.15.1": {
  3210. "sha512": "0bd0ocKuNai0/GdhboIW37R6z8I0vFqlmiPeG055SJxPPJ7dfBo2tjJ3bPV9vjFCRDuusj24dldOsg4hWui6iw==",
  3211. "type": "package",
  3212. "path": "microsoft.identitymodel.tokens/6.15.1",
  3213. "files": [
  3214. ".nupkg.metadata",
  3215. ".signature.p7s",
  3216. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3217. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3218. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3219. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3220. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3221. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3222. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3223. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3224. "microsoft.identitymodel.tokens.6.15.1.nupkg.sha512",
  3225. "microsoft.identitymodel.tokens.nuspec"
  3226. ]
  3227. },
  3228. "Microsoft.NETCore.Platforms/3.1.0": {
  3229. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3230. "type": "package",
  3231. "path": "microsoft.netcore.platforms/3.1.0",
  3232. "files": [
  3233. ".nupkg.metadata",
  3234. ".signature.p7s",
  3235. "LICENSE.TXT",
  3236. "THIRD-PARTY-NOTICES.TXT",
  3237. "lib/netstandard1.0/_._",
  3238. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3239. "microsoft.netcore.platforms.nuspec",
  3240. "runtime.json",
  3241. "useSharedDesignerContext.txt",
  3242. "version.txt"
  3243. ]
  3244. },
  3245. "Microsoft.NETCore.Targets/1.1.0": {
  3246. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3247. "type": "package",
  3248. "path": "microsoft.netcore.targets/1.1.0",
  3249. "files": [
  3250. ".nupkg.metadata",
  3251. ".signature.p7s",
  3252. "ThirdPartyNotices.txt",
  3253. "dotnet_library_license.txt",
  3254. "lib/netstandard1.0/_._",
  3255. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3256. "microsoft.netcore.targets.nuspec",
  3257. "runtime.json"
  3258. ]
  3259. },
  3260. "Microsoft.OpenApi/1.2.3": {
  3261. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  3262. "type": "package",
  3263. "path": "microsoft.openapi/1.2.3",
  3264. "files": [
  3265. ".nupkg.metadata",
  3266. ".signature.p7s",
  3267. "lib/net46/Microsoft.OpenApi.dll",
  3268. "lib/net46/Microsoft.OpenApi.pdb",
  3269. "lib/net46/Microsoft.OpenApi.xml",
  3270. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3271. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3272. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3273. "microsoft.openapi.1.2.3.nupkg.sha512",
  3274. "microsoft.openapi.nuspec"
  3275. ]
  3276. },
  3277. "Microsoft.Win32.Registry/4.7.0": {
  3278. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3279. "type": "package",
  3280. "path": "microsoft.win32.registry/4.7.0",
  3281. "files": [
  3282. ".nupkg.metadata",
  3283. ".signature.p7s",
  3284. "LICENSE.TXT",
  3285. "THIRD-PARTY-NOTICES.TXT",
  3286. "lib/net46/Microsoft.Win32.Registry.dll",
  3287. "lib/net461/Microsoft.Win32.Registry.dll",
  3288. "lib/net461/Microsoft.Win32.Registry.xml",
  3289. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3290. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3291. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3292. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3293. "microsoft.win32.registry.nuspec",
  3294. "ref/net46/Microsoft.Win32.Registry.dll",
  3295. "ref/net461/Microsoft.Win32.Registry.dll",
  3296. "ref/net461/Microsoft.Win32.Registry.xml",
  3297. "ref/net472/Microsoft.Win32.Registry.dll",
  3298. "ref/net472/Microsoft.Win32.Registry.xml",
  3299. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3300. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3301. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3302. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3303. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3304. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3305. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3306. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3307. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3308. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3309. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3310. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3311. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3312. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3313. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3314. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3315. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3316. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3317. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3318. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3319. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3320. "useSharedDesignerContext.txt",
  3321. "version.txt"
  3322. ]
  3323. },
  3324. "Microsoft.Win32.SystemEvents/4.7.0": {
  3325. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3326. "type": "package",
  3327. "path": "microsoft.win32.systemevents/4.7.0",
  3328. "files": [
  3329. ".nupkg.metadata",
  3330. ".signature.p7s",
  3331. "LICENSE.TXT",
  3332. "THIRD-PARTY-NOTICES.TXT",
  3333. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3334. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3335. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3336. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3337. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3338. "microsoft.win32.systemevents.nuspec",
  3339. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3340. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3341. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3342. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3343. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3344. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3345. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3346. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3347. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3348. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3349. "useSharedDesignerContext.txt",
  3350. "version.txt"
  3351. ]
  3352. },
  3353. "MiniProfiler.AspNetCore/4.2.22": {
  3354. "sha512": "bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==",
  3355. "type": "package",
  3356. "path": "miniprofiler.aspnetcore/4.2.22",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "LICENSE.txt",
  3361. "lib/net461/MiniProfiler.AspNetCore.dll",
  3362. "lib/net461/MiniProfiler.AspNetCore.xml",
  3363. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll",
  3364. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.xml",
  3365. "lib/netstandard2.0/MiniProfiler.AspNetCore.dll",
  3366. "lib/netstandard2.0/MiniProfiler.AspNetCore.xml",
  3367. "miniprofiler.aspnetcore.4.2.22.nupkg.sha512",
  3368. "miniprofiler.aspnetcore.nuspec"
  3369. ]
  3370. },
  3371. "MiniProfiler.AspNetCore.Mvc/4.2.22": {
  3372. "sha512": "nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==",
  3373. "type": "package",
  3374. "path": "miniprofiler.aspnetcore.mvc/4.2.22",
  3375. "files": [
  3376. ".nupkg.metadata",
  3377. ".signature.p7s",
  3378. "LICENSE.txt",
  3379. "lib/net461/MiniProfiler.AspNetCore.Mvc.dll",
  3380. "lib/net461/MiniProfiler.AspNetCore.Mvc.xml",
  3381. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll",
  3382. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.xml",
  3383. "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.dll",
  3384. "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.xml",
  3385. "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512",
  3386. "miniprofiler.aspnetcore.mvc.nuspec"
  3387. ]
  3388. },
  3389. "MiniProfiler.Shared/4.2.22": {
  3390. "sha512": "OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==",
  3391. "type": "package",
  3392. "path": "miniprofiler.shared/4.2.22",
  3393. "files": [
  3394. ".nupkg.metadata",
  3395. ".signature.p7s",
  3396. "LICENSE.txt",
  3397. "lib/net461/MiniProfiler.Shared.dll",
  3398. "lib/net461/MiniProfiler.Shared.xml",
  3399. "lib/netstandard2.0/MiniProfiler.Shared.dll",
  3400. "lib/netstandard2.0/MiniProfiler.Shared.xml",
  3401. "miniprofiler.shared.4.2.22.nupkg.sha512",
  3402. "miniprofiler.shared.nuspec"
  3403. ]
  3404. },
  3405. "MySqlConnector/2.2.5": {
  3406. "sha512": "6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==",
  3407. "type": "package",
  3408. "path": "mysqlconnector/2.2.5",
  3409. "files": [
  3410. ".nupkg.metadata",
  3411. ".signature.p7s",
  3412. "README.md",
  3413. "lib/net461/MySqlConnector.dll",
  3414. "lib/net461/MySqlConnector.xml",
  3415. "lib/net471/MySqlConnector.dll",
  3416. "lib/net471/MySqlConnector.xml",
  3417. "lib/net6.0/MySqlConnector.dll",
  3418. "lib/net6.0/MySqlConnector.xml",
  3419. "lib/net7.0/MySqlConnector.dll",
  3420. "lib/net7.0/MySqlConnector.xml",
  3421. "lib/netcoreapp3.1/MySqlConnector.dll",
  3422. "lib/netcoreapp3.1/MySqlConnector.xml",
  3423. "lib/netstandard2.0/MySqlConnector.dll",
  3424. "lib/netstandard2.0/MySqlConnector.xml",
  3425. "lib/netstandard2.1/MySqlConnector.dll",
  3426. "lib/netstandard2.1/MySqlConnector.xml",
  3427. "logo.png",
  3428. "mysqlconnector.2.2.5.nupkg.sha512",
  3429. "mysqlconnector.nuspec"
  3430. ]
  3431. },
  3432. "Namotion.Reflection/2.1.1": {
  3433. "sha512": "trZzWMjzoZyfn34HtMs6cuoR0ssPZGpn9pyBWMGkaHdGA9VZzWLho+Rldtf+Ojej596PIal/vPdrDr1+MERXbA==",
  3434. "type": "package",
  3435. "path": "namotion.reflection/2.1.1",
  3436. "files": [
  3437. ".nupkg.metadata",
  3438. ".signature.p7s",
  3439. "lib/net40/Namotion.Reflection.dll",
  3440. "lib/net40/Namotion.Reflection.xml",
  3441. "lib/net45/Namotion.Reflection.dll",
  3442. "lib/net45/Namotion.Reflection.xml",
  3443. "lib/netstandard1.0/Namotion.Reflection.dll",
  3444. "lib/netstandard1.0/Namotion.Reflection.xml",
  3445. "lib/netstandard2.0/Namotion.Reflection.dll",
  3446. "lib/netstandard2.0/Namotion.Reflection.xml",
  3447. "namotion.reflection.2.1.1.nupkg.sha512",
  3448. "namotion.reflection.nuspec"
  3449. ]
  3450. },
  3451. "Newtonsoft.Json/13.0.2": {
  3452. "sha512": "R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
  3453. "type": "package",
  3454. "path": "newtonsoft.json/13.0.2",
  3455. "files": [
  3456. ".nupkg.metadata",
  3457. ".signature.p7s",
  3458. "LICENSE.md",
  3459. "README.md",
  3460. "lib/net20/Newtonsoft.Json.dll",
  3461. "lib/net20/Newtonsoft.Json.xml",
  3462. "lib/net35/Newtonsoft.Json.dll",
  3463. "lib/net35/Newtonsoft.Json.xml",
  3464. "lib/net40/Newtonsoft.Json.dll",
  3465. "lib/net40/Newtonsoft.Json.xml",
  3466. "lib/net45/Newtonsoft.Json.dll",
  3467. "lib/net45/Newtonsoft.Json.xml",
  3468. "lib/net6.0/Newtonsoft.Json.dll",
  3469. "lib/net6.0/Newtonsoft.Json.xml",
  3470. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3471. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3472. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3473. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3474. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3475. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3476. "newtonsoft.json.13.0.2.nupkg.sha512",
  3477. "newtonsoft.json.nuspec",
  3478. "packageIcon.png"
  3479. ]
  3480. },
  3481. "Newtonsoft.Json.Bson/1.0.2": {
  3482. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  3483. "type": "package",
  3484. "path": "newtonsoft.json.bson/1.0.2",
  3485. "files": [
  3486. ".nupkg.metadata",
  3487. ".signature.p7s",
  3488. "LICENSE.md",
  3489. "lib/net45/Newtonsoft.Json.Bson.dll",
  3490. "lib/net45/Newtonsoft.Json.Bson.pdb",
  3491. "lib/net45/Newtonsoft.Json.Bson.xml",
  3492. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  3493. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  3494. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  3495. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  3496. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  3497. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  3498. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  3499. "newtonsoft.json.bson.nuspec"
  3500. ]
  3501. },
  3502. "Npgsql/5.0.7": {
  3503. "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  3504. "type": "package",
  3505. "path": "npgsql/5.0.7",
  3506. "files": [
  3507. ".nupkg.metadata",
  3508. ".signature.p7s",
  3509. "lib/net5.0/Npgsql.dll",
  3510. "lib/net5.0/Npgsql.xml",
  3511. "lib/netcoreapp3.1/Npgsql.dll",
  3512. "lib/netcoreapp3.1/Npgsql.xml",
  3513. "lib/netstandard2.0/Npgsql.dll",
  3514. "lib/netstandard2.0/Npgsql.xml",
  3515. "lib/netstandard2.1/Npgsql.dll",
  3516. "lib/netstandard2.1/Npgsql.xml",
  3517. "npgsql.5.0.7.nupkg.sha512",
  3518. "npgsql.nuspec",
  3519. "postgresql.png"
  3520. ]
  3521. },
  3522. "Oracle.ManagedDataAccess.Core/3.21.1": {
  3523. "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  3524. "type": "package",
  3525. "path": "oracle.manageddataaccess.core/3.21.1",
  3526. "files": [
  3527. ".nupkg.metadata",
  3528. ".signature.p7s",
  3529. "PerfCounters/register_odpc_perfmon_counters.ps1",
  3530. "PerfCounters/unregister_odpc_perfmon_counters.ps1",
  3531. "info.txt",
  3532. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
  3533. "oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
  3534. "oracle.manageddataaccess.core.nuspec",
  3535. "readme.txt"
  3536. ]
  3537. },
  3538. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  3539. "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  3540. "type": "package",
  3541. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  3542. "files": [
  3543. ".nupkg.metadata",
  3544. ".signature.p7s",
  3545. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3546. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  3547. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  3548. "lib/net461/SQLitePCLRaw.nativelibrary.dll",
  3549. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
  3550. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
  3551. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  3552. "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
  3553. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  3554. ]
  3555. },
  3556. "SQLitePCLRaw.core/2.0.4": {
  3557. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  3558. "type": "package",
  3559. "path": "sqlitepclraw.core/2.0.4",
  3560. "files": [
  3561. ".nupkg.metadata",
  3562. ".signature.p7s",
  3563. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  3564. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  3565. "sqlitepclraw.core.nuspec"
  3566. ]
  3567. },
  3568. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  3569. "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  3570. "type": "package",
  3571. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  3572. "files": [
  3573. ".nupkg.metadata",
  3574. ".signature.p7s",
  3575. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  3576. "lib/net461/_._",
  3577. "lib/netstandard2.0/_._",
  3578. "runtimes/alpine-x64/native/libe_sqlite3.so",
  3579. "runtimes/linux-arm/native/libe_sqlite3.so",
  3580. "runtimes/linux-arm64/native/libe_sqlite3.so",
  3581. "runtimes/linux-armel/native/libe_sqlite3.so",
  3582. "runtimes/linux-mips64/native/libe_sqlite3.so",
  3583. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  3584. "runtimes/linux-x64/native/libe_sqlite3.so",
  3585. "runtimes/linux-x86/native/libe_sqlite3.so",
  3586. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  3587. "runtimes/win-arm/native/e_sqlite3.dll",
  3588. "runtimes/win-arm64/native/e_sqlite3.dll",
  3589. "runtimes/win-x64/native/e_sqlite3.dll",
  3590. "runtimes/win-x86/native/e_sqlite3.dll",
  3591. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  3592. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  3593. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  3594. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  3595. "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
  3596. "sqlitepclraw.lib.e_sqlite3.nuspec"
  3597. ]
  3598. },
  3599. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  3600. "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  3601. "type": "package",
  3602. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  3603. "files": [
  3604. ".nupkg.metadata",
  3605. ".signature.p7s",
  3606. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
  3607. "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
  3608. "sqlitepclraw.provider.dynamic_cdecl.nuspec"
  3609. ]
  3610. },
  3611. "SqlSugarCore/5.1.4.65": {
  3612. "sha512": "dtkmcOBn1yJWnPS+QI84WE/ux9KR6QURHKWQO0A8ZojXscWo3Xs93mmr8PwKTh+tBYOBilqY7GH5gGhx6lNrtA==",
  3613. "type": "package",
  3614. "path": "sqlsugarcore/5.1.4.65",
  3615. "files": [
  3616. ".nupkg.metadata",
  3617. ".signature.p7s",
  3618. "lib/netstandard2.1/SqlSugar.dll",
  3619. "sqlsugarcore.5.1.4.65.nupkg.sha512",
  3620. "sqlsugarcore.nuspec"
  3621. ]
  3622. },
  3623. "SqlSugarCore.Dm/1.0.0": {
  3624. "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  3625. "type": "package",
  3626. "path": "sqlsugarcore.dm/1.0.0",
  3627. "files": [
  3628. ".nupkg.metadata",
  3629. ".signature.p7s",
  3630. "lib/netstandard2.0/DmProvider.dll",
  3631. "sqlsugarcore.dm.1.0.0.nupkg.sha512",
  3632. "sqlsugarcore.dm.nuspec"
  3633. ]
  3634. },
  3635. "SqlSugarCore.Kdbndp/7.3.0": {
  3636. "sha512": "yi3C3dphrOsL+tqascH29eyMjakFK2xRdVguZphH9OiKj8HZVHHSzo02jCfniIE5vK0KF8LQTAgmkVXJm5JWnw==",
  3637. "type": "package",
  3638. "path": "sqlsugarcore.kdbndp/7.3.0",
  3639. "files": [
  3640. ".nupkg.metadata",
  3641. ".signature.p7s",
  3642. "lib/netstandard2.1/Kdbndp.dll",
  3643. "sqlsugarcore.kdbndp.7.3.0.nupkg.sha512",
  3644. "sqlsugarcore.kdbndp.nuspec"
  3645. ]
  3646. },
  3647. "Swashbuckle.AspNetCore/6.5.0": {
  3648. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  3649. "type": "package",
  3650. "path": "swashbuckle.aspnetcore/6.5.0",
  3651. "files": [
  3652. ".nupkg.metadata",
  3653. ".signature.p7s",
  3654. "build/Swashbuckle.AspNetCore.props",
  3655. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  3656. "swashbuckle.aspnetcore.nuspec"
  3657. ]
  3658. },
  3659. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  3660. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  3661. "type": "package",
  3662. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  3663. "files": [
  3664. ".nupkg.metadata",
  3665. ".signature.p7s",
  3666. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  3667. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3668. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  3669. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  3670. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3671. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  3672. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  3673. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3674. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  3675. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  3676. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3677. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  3678. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  3679. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3680. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  3681. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  3682. "swashbuckle.aspnetcore.swagger.nuspec"
  3683. ]
  3684. },
  3685. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  3686. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  3687. "type": "package",
  3688. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  3689. "files": [
  3690. ".nupkg.metadata",
  3691. ".signature.p7s",
  3692. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3693. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3694. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3695. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3696. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3697. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3698. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3699. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3700. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3701. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3702. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3703. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3704. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3705. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3706. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3707. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  3708. "swashbuckle.aspnetcore.swaggergen.nuspec"
  3709. ]
  3710. },
  3711. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  3712. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  3713. "type": "package",
  3714. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  3715. "files": [
  3716. ".nupkg.metadata",
  3717. ".signature.p7s",
  3718. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3719. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3720. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3721. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3722. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3723. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3724. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3725. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3726. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3727. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3728. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3729. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3730. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3731. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3732. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3733. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  3734. "swashbuckle.aspnetcore.swaggerui.nuspec"
  3735. ]
  3736. },
  3737. "System.Collections/4.3.0": {
  3738. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3739. "type": "package",
  3740. "path": "system.collections/4.3.0",
  3741. "files": [
  3742. ".nupkg.metadata",
  3743. ".signature.p7s",
  3744. "ThirdPartyNotices.txt",
  3745. "dotnet_library_license.txt",
  3746. "lib/MonoAndroid10/_._",
  3747. "lib/MonoTouch10/_._",
  3748. "lib/net45/_._",
  3749. "lib/portable-net45+win8+wp8+wpa81/_._",
  3750. "lib/win8/_._",
  3751. "lib/wp80/_._",
  3752. "lib/wpa81/_._",
  3753. "lib/xamarinios10/_._",
  3754. "lib/xamarinmac20/_._",
  3755. "lib/xamarintvos10/_._",
  3756. "lib/xamarinwatchos10/_._",
  3757. "ref/MonoAndroid10/_._",
  3758. "ref/MonoTouch10/_._",
  3759. "ref/net45/_._",
  3760. "ref/netcore50/System.Collections.dll",
  3761. "ref/netcore50/System.Collections.xml",
  3762. "ref/netcore50/de/System.Collections.xml",
  3763. "ref/netcore50/es/System.Collections.xml",
  3764. "ref/netcore50/fr/System.Collections.xml",
  3765. "ref/netcore50/it/System.Collections.xml",
  3766. "ref/netcore50/ja/System.Collections.xml",
  3767. "ref/netcore50/ko/System.Collections.xml",
  3768. "ref/netcore50/ru/System.Collections.xml",
  3769. "ref/netcore50/zh-hans/System.Collections.xml",
  3770. "ref/netcore50/zh-hant/System.Collections.xml",
  3771. "ref/netstandard1.0/System.Collections.dll",
  3772. "ref/netstandard1.0/System.Collections.xml",
  3773. "ref/netstandard1.0/de/System.Collections.xml",
  3774. "ref/netstandard1.0/es/System.Collections.xml",
  3775. "ref/netstandard1.0/fr/System.Collections.xml",
  3776. "ref/netstandard1.0/it/System.Collections.xml",
  3777. "ref/netstandard1.0/ja/System.Collections.xml",
  3778. "ref/netstandard1.0/ko/System.Collections.xml",
  3779. "ref/netstandard1.0/ru/System.Collections.xml",
  3780. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3781. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3782. "ref/netstandard1.3/System.Collections.dll",
  3783. "ref/netstandard1.3/System.Collections.xml",
  3784. "ref/netstandard1.3/de/System.Collections.xml",
  3785. "ref/netstandard1.3/es/System.Collections.xml",
  3786. "ref/netstandard1.3/fr/System.Collections.xml",
  3787. "ref/netstandard1.3/it/System.Collections.xml",
  3788. "ref/netstandard1.3/ja/System.Collections.xml",
  3789. "ref/netstandard1.3/ko/System.Collections.xml",
  3790. "ref/netstandard1.3/ru/System.Collections.xml",
  3791. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3792. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3793. "ref/portable-net45+win8+wp8+wpa81/_._",
  3794. "ref/win8/_._",
  3795. "ref/wp80/_._",
  3796. "ref/wpa81/_._",
  3797. "ref/xamarinios10/_._",
  3798. "ref/xamarinmac20/_._",
  3799. "ref/xamarintvos10/_._",
  3800. "ref/xamarinwatchos10/_._",
  3801. "system.collections.4.3.0.nupkg.sha512",
  3802. "system.collections.nuspec"
  3803. ]
  3804. },
  3805. "System.Collections.Concurrent/4.3.0": {
  3806. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3807. "type": "package",
  3808. "path": "system.collections.concurrent/4.3.0",
  3809. "files": [
  3810. ".nupkg.metadata",
  3811. ".signature.p7s",
  3812. "ThirdPartyNotices.txt",
  3813. "dotnet_library_license.txt",
  3814. "lib/MonoAndroid10/_._",
  3815. "lib/MonoTouch10/_._",
  3816. "lib/net45/_._",
  3817. "lib/netcore50/System.Collections.Concurrent.dll",
  3818. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3819. "lib/portable-net45+win8+wpa81/_._",
  3820. "lib/win8/_._",
  3821. "lib/wpa81/_._",
  3822. "lib/xamarinios10/_._",
  3823. "lib/xamarinmac20/_._",
  3824. "lib/xamarintvos10/_._",
  3825. "lib/xamarinwatchos10/_._",
  3826. "ref/MonoAndroid10/_._",
  3827. "ref/MonoTouch10/_._",
  3828. "ref/net45/_._",
  3829. "ref/netcore50/System.Collections.Concurrent.dll",
  3830. "ref/netcore50/System.Collections.Concurrent.xml",
  3831. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3832. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3833. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3834. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3835. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3836. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3837. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3838. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3839. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3840. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3841. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3842. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3843. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3844. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3845. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3846. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3847. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3848. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3849. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3850. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3851. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3852. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3853. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3854. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3855. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3856. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3857. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3858. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3859. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3860. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3861. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3862. "ref/portable-net45+win8+wpa81/_._",
  3863. "ref/win8/_._",
  3864. "ref/wpa81/_._",
  3865. "ref/xamarinios10/_._",
  3866. "ref/xamarinmac20/_._",
  3867. "ref/xamarintvos10/_._",
  3868. "ref/xamarinwatchos10/_._",
  3869. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3870. "system.collections.concurrent.nuspec"
  3871. ]
  3872. },
  3873. "System.Collections.Immutable/6.0.0": {
  3874. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  3875. "type": "package",
  3876. "path": "system.collections.immutable/6.0.0",
  3877. "files": [
  3878. ".nupkg.metadata",
  3879. ".signature.p7s",
  3880. "Icon.png",
  3881. "LICENSE.TXT",
  3882. "THIRD-PARTY-NOTICES.TXT",
  3883. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  3884. "buildTransitive/netcoreapp3.1/_._",
  3885. "lib/net461/System.Collections.Immutable.dll",
  3886. "lib/net461/System.Collections.Immutable.xml",
  3887. "lib/net6.0/System.Collections.Immutable.dll",
  3888. "lib/net6.0/System.Collections.Immutable.xml",
  3889. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3890. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3891. "system.collections.immutable.6.0.0.nupkg.sha512",
  3892. "system.collections.immutable.nuspec",
  3893. "useSharedDesignerContext.txt"
  3894. ]
  3895. },
  3896. "System.ComponentModel/4.3.0": {
  3897. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  3898. "type": "package",
  3899. "path": "system.componentmodel/4.3.0",
  3900. "files": [
  3901. ".nupkg.metadata",
  3902. ".signature.p7s",
  3903. "ThirdPartyNotices.txt",
  3904. "dotnet_library_license.txt",
  3905. "lib/MonoAndroid10/_._",
  3906. "lib/MonoTouch10/_._",
  3907. "lib/net45/_._",
  3908. "lib/netcore50/System.ComponentModel.dll",
  3909. "lib/netstandard1.3/System.ComponentModel.dll",
  3910. "lib/portable-net45+win8+wp8+wpa81/_._",
  3911. "lib/win8/_._",
  3912. "lib/wp80/_._",
  3913. "lib/wpa81/_._",
  3914. "lib/xamarinios10/_._",
  3915. "lib/xamarinmac20/_._",
  3916. "lib/xamarintvos10/_._",
  3917. "lib/xamarinwatchos10/_._",
  3918. "ref/MonoAndroid10/_._",
  3919. "ref/MonoTouch10/_._",
  3920. "ref/net45/_._",
  3921. "ref/netcore50/System.ComponentModel.dll",
  3922. "ref/netcore50/System.ComponentModel.xml",
  3923. "ref/netcore50/de/System.ComponentModel.xml",
  3924. "ref/netcore50/es/System.ComponentModel.xml",
  3925. "ref/netcore50/fr/System.ComponentModel.xml",
  3926. "ref/netcore50/it/System.ComponentModel.xml",
  3927. "ref/netcore50/ja/System.ComponentModel.xml",
  3928. "ref/netcore50/ko/System.ComponentModel.xml",
  3929. "ref/netcore50/ru/System.ComponentModel.xml",
  3930. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  3931. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  3932. "ref/netstandard1.0/System.ComponentModel.dll",
  3933. "ref/netstandard1.0/System.ComponentModel.xml",
  3934. "ref/netstandard1.0/de/System.ComponentModel.xml",
  3935. "ref/netstandard1.0/es/System.ComponentModel.xml",
  3936. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  3937. "ref/netstandard1.0/it/System.ComponentModel.xml",
  3938. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  3939. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  3940. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  3941. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  3942. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  3943. "ref/portable-net45+win8+wp8+wpa81/_._",
  3944. "ref/win8/_._",
  3945. "ref/wp80/_._",
  3946. "ref/wpa81/_._",
  3947. "ref/xamarinios10/_._",
  3948. "ref/xamarinmac20/_._",
  3949. "ref/xamarintvos10/_._",
  3950. "ref/xamarinwatchos10/_._",
  3951. "system.componentmodel.4.3.0.nupkg.sha512",
  3952. "system.componentmodel.nuspec"
  3953. ]
  3954. },
  3955. "System.ComponentModel.Primitives/4.3.0": {
  3956. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  3957. "type": "package",
  3958. "path": "system.componentmodel.primitives/4.3.0",
  3959. "files": [
  3960. ".nupkg.metadata",
  3961. ".signature.p7s",
  3962. "ThirdPartyNotices.txt",
  3963. "dotnet_library_license.txt",
  3964. "lib/MonoAndroid10/_._",
  3965. "lib/MonoTouch10/_._",
  3966. "lib/net45/System.ComponentModel.Primitives.dll",
  3967. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  3968. "lib/xamarinios10/_._",
  3969. "lib/xamarinmac20/_._",
  3970. "lib/xamarintvos10/_._",
  3971. "lib/xamarinwatchos10/_._",
  3972. "ref/MonoAndroid10/_._",
  3973. "ref/MonoTouch10/_._",
  3974. "ref/net45/System.ComponentModel.Primitives.dll",
  3975. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  3976. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  3977. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  3978. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  3979. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  3980. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  3981. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  3982. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  3983. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  3984. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  3985. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  3986. "ref/xamarinios10/_._",
  3987. "ref/xamarinmac20/_._",
  3988. "ref/xamarintvos10/_._",
  3989. "ref/xamarinwatchos10/_._",
  3990. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  3991. "system.componentmodel.primitives.nuspec"
  3992. ]
  3993. },
  3994. "System.Configuration.ConfigurationManager/4.7.0": {
  3995. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  3996. "type": "package",
  3997. "path": "system.configuration.configurationmanager/4.7.0",
  3998. "files": [
  3999. ".nupkg.metadata",
  4000. ".signature.p7s",
  4001. "LICENSE.TXT",
  4002. "THIRD-PARTY-NOTICES.TXT",
  4003. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4004. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4005. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4006. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4007. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4008. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4009. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4010. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4011. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4012. "system.configuration.configurationmanager.nuspec",
  4013. "useSharedDesignerContext.txt",
  4014. "version.txt"
  4015. ]
  4016. },
  4017. "System.Data.Common/4.3.0": {
  4018. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4019. "type": "package",
  4020. "path": "system.data.common/4.3.0",
  4021. "files": [
  4022. ".nupkg.metadata",
  4023. ".signature.p7s",
  4024. "ThirdPartyNotices.txt",
  4025. "dotnet_library_license.txt",
  4026. "lib/MonoAndroid10/_._",
  4027. "lib/MonoTouch10/_._",
  4028. "lib/net451/System.Data.Common.dll",
  4029. "lib/netstandard1.2/System.Data.Common.dll",
  4030. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4031. "lib/xamarinios10/_._",
  4032. "lib/xamarinmac20/_._",
  4033. "lib/xamarintvos10/_._",
  4034. "lib/xamarinwatchos10/_._",
  4035. "ref/MonoAndroid10/_._",
  4036. "ref/MonoTouch10/_._",
  4037. "ref/net451/System.Data.Common.dll",
  4038. "ref/netstandard1.2/System.Data.Common.dll",
  4039. "ref/netstandard1.2/System.Data.Common.xml",
  4040. "ref/netstandard1.2/de/System.Data.Common.xml",
  4041. "ref/netstandard1.2/es/System.Data.Common.xml",
  4042. "ref/netstandard1.2/fr/System.Data.Common.xml",
  4043. "ref/netstandard1.2/it/System.Data.Common.xml",
  4044. "ref/netstandard1.2/ja/System.Data.Common.xml",
  4045. "ref/netstandard1.2/ko/System.Data.Common.xml",
  4046. "ref/netstandard1.2/ru/System.Data.Common.xml",
  4047. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  4048. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  4049. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4050. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  4051. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  4052. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  4053. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  4054. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  4055. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  4056. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  4057. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  4058. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  4059. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  4060. "ref/xamarinios10/_._",
  4061. "ref/xamarinmac20/_._",
  4062. "ref/xamarintvos10/_._",
  4063. "ref/xamarinwatchos10/_._",
  4064. "system.data.common.4.3.0.nupkg.sha512",
  4065. "system.data.common.nuspec"
  4066. ]
  4067. },
  4068. "System.Diagnostics.Debug/4.3.0": {
  4069. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4070. "type": "package",
  4071. "path": "system.diagnostics.debug/4.3.0",
  4072. "files": [
  4073. ".nupkg.metadata",
  4074. ".signature.p7s",
  4075. "ThirdPartyNotices.txt",
  4076. "dotnet_library_license.txt",
  4077. "lib/MonoAndroid10/_._",
  4078. "lib/MonoTouch10/_._",
  4079. "lib/net45/_._",
  4080. "lib/portable-net45+win8+wp8+wpa81/_._",
  4081. "lib/win8/_._",
  4082. "lib/wp80/_._",
  4083. "lib/wpa81/_._",
  4084. "lib/xamarinios10/_._",
  4085. "lib/xamarinmac20/_._",
  4086. "lib/xamarintvos10/_._",
  4087. "lib/xamarinwatchos10/_._",
  4088. "ref/MonoAndroid10/_._",
  4089. "ref/MonoTouch10/_._",
  4090. "ref/net45/_._",
  4091. "ref/netcore50/System.Diagnostics.Debug.dll",
  4092. "ref/netcore50/System.Diagnostics.Debug.xml",
  4093. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4094. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4095. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4096. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4097. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4098. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4099. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4100. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4101. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4102. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4103. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4104. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4105. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4106. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4107. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4108. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4109. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4110. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4111. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4112. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4113. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4114. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4115. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4116. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4117. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4118. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4119. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4120. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4121. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4122. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4123. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4124. "ref/portable-net45+win8+wp8+wpa81/_._",
  4125. "ref/win8/_._",
  4126. "ref/wp80/_._",
  4127. "ref/wpa81/_._",
  4128. "ref/xamarinios10/_._",
  4129. "ref/xamarinmac20/_._",
  4130. "ref/xamarintvos10/_._",
  4131. "ref/xamarinwatchos10/_._",
  4132. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4133. "system.diagnostics.debug.nuspec"
  4134. ]
  4135. },
  4136. "System.Diagnostics.DiagnosticSource/4.7.0": {
  4137. "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
  4138. "type": "package",
  4139. "path": "system.diagnostics.diagnosticsource/4.7.0",
  4140. "files": [
  4141. ".nupkg.metadata",
  4142. ".signature.p7s",
  4143. "LICENSE.TXT",
  4144. "THIRD-PARTY-NOTICES.TXT",
  4145. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4146. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4147. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4148. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4149. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4150. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4151. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4152. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4153. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4154. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4155. "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
  4156. "system.diagnostics.diagnosticsource.nuspec",
  4157. "useSharedDesignerContext.txt",
  4158. "version.txt"
  4159. ]
  4160. },
  4161. "System.Diagnostics.PerformanceCounter/4.7.0": {
  4162. "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  4163. "type": "package",
  4164. "path": "system.diagnostics.performancecounter/4.7.0",
  4165. "files": [
  4166. ".nupkg.metadata",
  4167. ".signature.p7s",
  4168. "LICENSE.TXT",
  4169. "THIRD-PARTY-NOTICES.TXT",
  4170. "lib/MonoAndroid10/_._",
  4171. "lib/MonoTouch10/_._",
  4172. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  4173. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  4174. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4175. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4176. "lib/xamarinios10/_._",
  4177. "lib/xamarinmac20/_._",
  4178. "lib/xamarintvos10/_._",
  4179. "lib/xamarinwatchos10/_._",
  4180. "ref/MonoAndroid10/_._",
  4181. "ref/MonoTouch10/_._",
  4182. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  4183. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  4184. "ref/net472/System.Diagnostics.PerformanceCounter.dll",
  4185. "ref/net472/System.Diagnostics.PerformanceCounter.xml",
  4186. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4187. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4188. "ref/xamarinios10/_._",
  4189. "ref/xamarinmac20/_._",
  4190. "ref/xamarintvos10/_._",
  4191. "ref/xamarinwatchos10/_._",
  4192. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  4193. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  4194. "system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
  4195. "system.diagnostics.performancecounter.nuspec",
  4196. "useSharedDesignerContext.txt",
  4197. "version.txt"
  4198. ]
  4199. },
  4200. "System.Diagnostics.StackTrace/4.3.0": {
  4201. "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  4202. "type": "package",
  4203. "path": "system.diagnostics.stacktrace/4.3.0",
  4204. "files": [
  4205. ".nupkg.metadata",
  4206. ".signature.p7s",
  4207. "ThirdPartyNotices.txt",
  4208. "dotnet_library_license.txt",
  4209. "lib/MonoAndroid10/_._",
  4210. "lib/MonoTouch10/_._",
  4211. "lib/net46/System.Diagnostics.StackTrace.dll",
  4212. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  4213. "lib/xamarinios10/_._",
  4214. "lib/xamarinmac20/_._",
  4215. "lib/xamarintvos10/_._",
  4216. "lib/xamarinwatchos10/_._",
  4217. "ref/MonoAndroid10/_._",
  4218. "ref/MonoTouch10/_._",
  4219. "ref/net46/System.Diagnostics.StackTrace.dll",
  4220. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  4221. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  4222. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  4223. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  4224. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  4225. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  4226. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  4227. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  4228. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  4229. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  4230. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  4231. "ref/xamarinios10/_._",
  4232. "ref/xamarinmac20/_._",
  4233. "ref/xamarintvos10/_._",
  4234. "ref/xamarinwatchos10/_._",
  4235. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
  4236. "system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
  4237. "system.diagnostics.stacktrace.nuspec"
  4238. ]
  4239. },
  4240. "System.Diagnostics.Tracing/4.3.0": {
  4241. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4242. "type": "package",
  4243. "path": "system.diagnostics.tracing/4.3.0",
  4244. "files": [
  4245. ".nupkg.metadata",
  4246. ".signature.p7s",
  4247. "ThirdPartyNotices.txt",
  4248. "dotnet_library_license.txt",
  4249. "lib/MonoAndroid10/_._",
  4250. "lib/MonoTouch10/_._",
  4251. "lib/net45/_._",
  4252. "lib/net462/System.Diagnostics.Tracing.dll",
  4253. "lib/portable-net45+win8+wpa81/_._",
  4254. "lib/win8/_._",
  4255. "lib/wpa81/_._",
  4256. "lib/xamarinios10/_._",
  4257. "lib/xamarinmac20/_._",
  4258. "lib/xamarintvos10/_._",
  4259. "lib/xamarinwatchos10/_._",
  4260. "ref/MonoAndroid10/_._",
  4261. "ref/MonoTouch10/_._",
  4262. "ref/net45/_._",
  4263. "ref/net462/System.Diagnostics.Tracing.dll",
  4264. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4265. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4266. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4267. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4268. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4269. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4270. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4271. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4272. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4273. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4274. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4275. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4276. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4277. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4278. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4279. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4280. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4281. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4282. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4283. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4284. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4285. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4286. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4287. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4288. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4289. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4290. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4291. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4292. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4293. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4294. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4295. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4296. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4297. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4298. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4299. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4300. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4301. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4302. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4303. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4304. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4305. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4306. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4307. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4308. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4309. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4310. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4311. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4312. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4313. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4314. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4315. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4316. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4317. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4318. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4319. "ref/portable-net45+win8+wpa81/_._",
  4320. "ref/win8/_._",
  4321. "ref/wpa81/_._",
  4322. "ref/xamarinios10/_._",
  4323. "ref/xamarinmac20/_._",
  4324. "ref/xamarintvos10/_._",
  4325. "ref/xamarinwatchos10/_._",
  4326. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4327. "system.diagnostics.tracing.nuspec"
  4328. ]
  4329. },
  4330. "System.DirectoryServices/4.7.0": {
  4331. "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  4332. "type": "package",
  4333. "path": "system.directoryservices/4.7.0",
  4334. "files": [
  4335. ".nupkg.metadata",
  4336. ".signature.p7s",
  4337. "LICENSE.TXT",
  4338. "THIRD-PARTY-NOTICES.TXT",
  4339. "lib/net45/_._",
  4340. "lib/netstandard2.0/System.DirectoryServices.dll",
  4341. "lib/netstandard2.0/System.DirectoryServices.xml",
  4342. "ref/net45/_._",
  4343. "ref/netstandard2.0/System.DirectoryServices.dll",
  4344. "ref/netstandard2.0/System.DirectoryServices.xml",
  4345. "runtimes/win/lib/net45/_._",
  4346. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
  4347. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
  4348. "system.directoryservices.4.7.0.nupkg.sha512",
  4349. "system.directoryservices.nuspec",
  4350. "useSharedDesignerContext.txt",
  4351. "version.txt"
  4352. ]
  4353. },
  4354. "System.DirectoryServices.Protocols/4.7.0": {
  4355. "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  4356. "type": "package",
  4357. "path": "system.directoryservices.protocols/4.7.0",
  4358. "files": [
  4359. ".nupkg.metadata",
  4360. ".signature.p7s",
  4361. "LICENSE.TXT",
  4362. "THIRD-PARTY-NOTICES.TXT",
  4363. "lib/net45/_._",
  4364. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4365. "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4366. "ref/net45/_._",
  4367. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4368. "ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4369. "runtimes/win/lib/net45/_._",
  4370. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
  4371. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
  4372. "system.directoryservices.protocols.4.7.0.nupkg.sha512",
  4373. "system.directoryservices.protocols.nuspec",
  4374. "useSharedDesignerContext.txt",
  4375. "version.txt"
  4376. ]
  4377. },
  4378. "System.Drawing.Common/4.7.0": {
  4379. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4380. "type": "package",
  4381. "path": "system.drawing.common/4.7.0",
  4382. "files": [
  4383. ".nupkg.metadata",
  4384. ".signature.p7s",
  4385. "LICENSE.TXT",
  4386. "THIRD-PARTY-NOTICES.TXT",
  4387. "lib/MonoAndroid10/_._",
  4388. "lib/MonoTouch10/_._",
  4389. "lib/net461/System.Drawing.Common.dll",
  4390. "lib/netstandard2.0/System.Drawing.Common.dll",
  4391. "lib/xamarinios10/_._",
  4392. "lib/xamarinmac20/_._",
  4393. "lib/xamarintvos10/_._",
  4394. "lib/xamarinwatchos10/_._",
  4395. "ref/MonoAndroid10/_._",
  4396. "ref/MonoTouch10/_._",
  4397. "ref/net461/System.Drawing.Common.dll",
  4398. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4399. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4400. "ref/netstandard2.0/System.Drawing.Common.dll",
  4401. "ref/xamarinios10/_._",
  4402. "ref/xamarinmac20/_._",
  4403. "ref/xamarintvos10/_._",
  4404. "ref/xamarinwatchos10/_._",
  4405. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4406. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4407. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4408. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4409. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4410. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4411. "system.drawing.common.4.7.0.nupkg.sha512",
  4412. "system.drawing.common.nuspec",
  4413. "useSharedDesignerContext.txt",
  4414. "version.txt"
  4415. ]
  4416. },
  4417. "System.Dynamic.Runtime/4.3.0": {
  4418. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  4419. "type": "package",
  4420. "path": "system.dynamic.runtime/4.3.0",
  4421. "files": [
  4422. ".nupkg.metadata",
  4423. ".signature.p7s",
  4424. "ThirdPartyNotices.txt",
  4425. "dotnet_library_license.txt",
  4426. "lib/MonoAndroid10/_._",
  4427. "lib/MonoTouch10/_._",
  4428. "lib/net45/_._",
  4429. "lib/netcore50/System.Dynamic.Runtime.dll",
  4430. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  4431. "lib/portable-net45+win8+wp8+wpa81/_._",
  4432. "lib/win8/_._",
  4433. "lib/wp80/_._",
  4434. "lib/wpa81/_._",
  4435. "lib/xamarinios10/_._",
  4436. "lib/xamarinmac20/_._",
  4437. "lib/xamarintvos10/_._",
  4438. "lib/xamarinwatchos10/_._",
  4439. "ref/MonoAndroid10/_._",
  4440. "ref/MonoTouch10/_._",
  4441. "ref/net45/_._",
  4442. "ref/netcore50/System.Dynamic.Runtime.dll",
  4443. "ref/netcore50/System.Dynamic.Runtime.xml",
  4444. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  4445. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  4446. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  4447. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  4448. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  4449. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  4450. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  4451. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  4452. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  4453. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  4454. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  4455. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  4456. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  4457. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  4458. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  4459. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  4460. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  4461. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  4462. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  4463. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  4464. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  4465. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  4466. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  4467. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  4468. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  4469. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  4470. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  4471. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  4472. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  4473. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  4474. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  4475. "ref/portable-net45+win8+wp8+wpa81/_._",
  4476. "ref/win8/_._",
  4477. "ref/wp80/_._",
  4478. "ref/wpa81/_._",
  4479. "ref/xamarinios10/_._",
  4480. "ref/xamarinmac20/_._",
  4481. "ref/xamarintvos10/_._",
  4482. "ref/xamarinwatchos10/_._",
  4483. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  4484. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  4485. "system.dynamic.runtime.nuspec"
  4486. ]
  4487. },
  4488. "System.Globalization/4.3.0": {
  4489. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4490. "type": "package",
  4491. "path": "system.globalization/4.3.0",
  4492. "files": [
  4493. ".nupkg.metadata",
  4494. ".signature.p7s",
  4495. "ThirdPartyNotices.txt",
  4496. "dotnet_library_license.txt",
  4497. "lib/MonoAndroid10/_._",
  4498. "lib/MonoTouch10/_._",
  4499. "lib/net45/_._",
  4500. "lib/portable-net45+win8+wp8+wpa81/_._",
  4501. "lib/win8/_._",
  4502. "lib/wp80/_._",
  4503. "lib/wpa81/_._",
  4504. "lib/xamarinios10/_._",
  4505. "lib/xamarinmac20/_._",
  4506. "lib/xamarintvos10/_._",
  4507. "lib/xamarinwatchos10/_._",
  4508. "ref/MonoAndroid10/_._",
  4509. "ref/MonoTouch10/_._",
  4510. "ref/net45/_._",
  4511. "ref/netcore50/System.Globalization.dll",
  4512. "ref/netcore50/System.Globalization.xml",
  4513. "ref/netcore50/de/System.Globalization.xml",
  4514. "ref/netcore50/es/System.Globalization.xml",
  4515. "ref/netcore50/fr/System.Globalization.xml",
  4516. "ref/netcore50/it/System.Globalization.xml",
  4517. "ref/netcore50/ja/System.Globalization.xml",
  4518. "ref/netcore50/ko/System.Globalization.xml",
  4519. "ref/netcore50/ru/System.Globalization.xml",
  4520. "ref/netcore50/zh-hans/System.Globalization.xml",
  4521. "ref/netcore50/zh-hant/System.Globalization.xml",
  4522. "ref/netstandard1.0/System.Globalization.dll",
  4523. "ref/netstandard1.0/System.Globalization.xml",
  4524. "ref/netstandard1.0/de/System.Globalization.xml",
  4525. "ref/netstandard1.0/es/System.Globalization.xml",
  4526. "ref/netstandard1.0/fr/System.Globalization.xml",
  4527. "ref/netstandard1.0/it/System.Globalization.xml",
  4528. "ref/netstandard1.0/ja/System.Globalization.xml",
  4529. "ref/netstandard1.0/ko/System.Globalization.xml",
  4530. "ref/netstandard1.0/ru/System.Globalization.xml",
  4531. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4532. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4533. "ref/netstandard1.3/System.Globalization.dll",
  4534. "ref/netstandard1.3/System.Globalization.xml",
  4535. "ref/netstandard1.3/de/System.Globalization.xml",
  4536. "ref/netstandard1.3/es/System.Globalization.xml",
  4537. "ref/netstandard1.3/fr/System.Globalization.xml",
  4538. "ref/netstandard1.3/it/System.Globalization.xml",
  4539. "ref/netstandard1.3/ja/System.Globalization.xml",
  4540. "ref/netstandard1.3/ko/System.Globalization.xml",
  4541. "ref/netstandard1.3/ru/System.Globalization.xml",
  4542. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4543. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4544. "ref/portable-net45+win8+wp8+wpa81/_._",
  4545. "ref/win8/_._",
  4546. "ref/wp80/_._",
  4547. "ref/wpa81/_._",
  4548. "ref/xamarinios10/_._",
  4549. "ref/xamarinmac20/_._",
  4550. "ref/xamarintvos10/_._",
  4551. "ref/xamarinwatchos10/_._",
  4552. "system.globalization.4.3.0.nupkg.sha512",
  4553. "system.globalization.nuspec"
  4554. ]
  4555. },
  4556. "System.IdentityModel.Tokens.Jwt/6.15.1": {
  4557. "sha512": "q3ZLyWmpX4+jW4XITf7Axd+9sC6w2NrQaKcQQT9A8waoknHgaNwSeookpUmPMQDqS0afT9Lh0JYub196vzuzbA==",
  4558. "type": "package",
  4559. "path": "system.identitymodel.tokens.jwt/6.15.1",
  4560. "files": [
  4561. ".nupkg.metadata",
  4562. ".signature.p7s",
  4563. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4564. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4565. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4566. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4567. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  4568. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  4569. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4570. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4571. "system.identitymodel.tokens.jwt.6.15.1.nupkg.sha512",
  4572. "system.identitymodel.tokens.jwt.nuspec"
  4573. ]
  4574. },
  4575. "System.IO/4.3.0": {
  4576. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4577. "type": "package",
  4578. "path": "system.io/4.3.0",
  4579. "files": [
  4580. ".nupkg.metadata",
  4581. ".signature.p7s",
  4582. "ThirdPartyNotices.txt",
  4583. "dotnet_library_license.txt",
  4584. "lib/MonoAndroid10/_._",
  4585. "lib/MonoTouch10/_._",
  4586. "lib/net45/_._",
  4587. "lib/net462/System.IO.dll",
  4588. "lib/portable-net45+win8+wp8+wpa81/_._",
  4589. "lib/win8/_._",
  4590. "lib/wp80/_._",
  4591. "lib/wpa81/_._",
  4592. "lib/xamarinios10/_._",
  4593. "lib/xamarinmac20/_._",
  4594. "lib/xamarintvos10/_._",
  4595. "lib/xamarinwatchos10/_._",
  4596. "ref/MonoAndroid10/_._",
  4597. "ref/MonoTouch10/_._",
  4598. "ref/net45/_._",
  4599. "ref/net462/System.IO.dll",
  4600. "ref/netcore50/System.IO.dll",
  4601. "ref/netcore50/System.IO.xml",
  4602. "ref/netcore50/de/System.IO.xml",
  4603. "ref/netcore50/es/System.IO.xml",
  4604. "ref/netcore50/fr/System.IO.xml",
  4605. "ref/netcore50/it/System.IO.xml",
  4606. "ref/netcore50/ja/System.IO.xml",
  4607. "ref/netcore50/ko/System.IO.xml",
  4608. "ref/netcore50/ru/System.IO.xml",
  4609. "ref/netcore50/zh-hans/System.IO.xml",
  4610. "ref/netcore50/zh-hant/System.IO.xml",
  4611. "ref/netstandard1.0/System.IO.dll",
  4612. "ref/netstandard1.0/System.IO.xml",
  4613. "ref/netstandard1.0/de/System.IO.xml",
  4614. "ref/netstandard1.0/es/System.IO.xml",
  4615. "ref/netstandard1.0/fr/System.IO.xml",
  4616. "ref/netstandard1.0/it/System.IO.xml",
  4617. "ref/netstandard1.0/ja/System.IO.xml",
  4618. "ref/netstandard1.0/ko/System.IO.xml",
  4619. "ref/netstandard1.0/ru/System.IO.xml",
  4620. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4621. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4622. "ref/netstandard1.3/System.IO.dll",
  4623. "ref/netstandard1.3/System.IO.xml",
  4624. "ref/netstandard1.3/de/System.IO.xml",
  4625. "ref/netstandard1.3/es/System.IO.xml",
  4626. "ref/netstandard1.3/fr/System.IO.xml",
  4627. "ref/netstandard1.3/it/System.IO.xml",
  4628. "ref/netstandard1.3/ja/System.IO.xml",
  4629. "ref/netstandard1.3/ko/System.IO.xml",
  4630. "ref/netstandard1.3/ru/System.IO.xml",
  4631. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4632. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4633. "ref/netstandard1.5/System.IO.dll",
  4634. "ref/netstandard1.5/System.IO.xml",
  4635. "ref/netstandard1.5/de/System.IO.xml",
  4636. "ref/netstandard1.5/es/System.IO.xml",
  4637. "ref/netstandard1.5/fr/System.IO.xml",
  4638. "ref/netstandard1.5/it/System.IO.xml",
  4639. "ref/netstandard1.5/ja/System.IO.xml",
  4640. "ref/netstandard1.5/ko/System.IO.xml",
  4641. "ref/netstandard1.5/ru/System.IO.xml",
  4642. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4643. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4644. "ref/portable-net45+win8+wp8+wpa81/_._",
  4645. "ref/win8/_._",
  4646. "ref/wp80/_._",
  4647. "ref/wpa81/_._",
  4648. "ref/xamarinios10/_._",
  4649. "ref/xamarinmac20/_._",
  4650. "ref/xamarintvos10/_._",
  4651. "ref/xamarinwatchos10/_._",
  4652. "system.io.4.3.0.nupkg.sha512",
  4653. "system.io.nuspec"
  4654. ]
  4655. },
  4656. "System.IO.FileSystem/4.3.0": {
  4657. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4658. "type": "package",
  4659. "path": "system.io.filesystem/4.3.0",
  4660. "files": [
  4661. ".nupkg.metadata",
  4662. ".signature.p7s",
  4663. "ThirdPartyNotices.txt",
  4664. "dotnet_library_license.txt",
  4665. "lib/MonoAndroid10/_._",
  4666. "lib/MonoTouch10/_._",
  4667. "lib/net46/System.IO.FileSystem.dll",
  4668. "lib/xamarinios10/_._",
  4669. "lib/xamarinmac20/_._",
  4670. "lib/xamarintvos10/_._",
  4671. "lib/xamarinwatchos10/_._",
  4672. "ref/MonoAndroid10/_._",
  4673. "ref/MonoTouch10/_._",
  4674. "ref/net46/System.IO.FileSystem.dll",
  4675. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4676. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4677. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4678. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4679. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4680. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4681. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4682. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4683. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4684. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4685. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4686. "ref/xamarinios10/_._",
  4687. "ref/xamarinmac20/_._",
  4688. "ref/xamarintvos10/_._",
  4689. "ref/xamarinwatchos10/_._",
  4690. "system.io.filesystem.4.3.0.nupkg.sha512",
  4691. "system.io.filesystem.nuspec"
  4692. ]
  4693. },
  4694. "System.IO.FileSystem.AccessControl/4.7.0": {
  4695. "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  4696. "type": "package",
  4697. "path": "system.io.filesystem.accesscontrol/4.7.0",
  4698. "files": [
  4699. ".nupkg.metadata",
  4700. ".signature.p7s",
  4701. "LICENSE.TXT",
  4702. "THIRD-PARTY-NOTICES.TXT",
  4703. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  4704. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  4705. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  4706. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  4707. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  4708. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  4709. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  4710. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  4711. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  4712. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  4713. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  4714. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  4715. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  4716. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  4717. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  4718. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  4719. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  4720. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  4721. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  4722. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  4723. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  4724. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  4725. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  4726. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  4727. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  4728. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  4729. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  4730. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  4731. "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
  4732. "system.io.filesystem.accesscontrol.nuspec",
  4733. "useSharedDesignerContext.txt",
  4734. "version.txt"
  4735. ]
  4736. },
  4737. "System.IO.FileSystem.Primitives/4.3.0": {
  4738. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  4739. "type": "package",
  4740. "path": "system.io.filesystem.primitives/4.3.0",
  4741. "files": [
  4742. ".nupkg.metadata",
  4743. ".signature.p7s",
  4744. "ThirdPartyNotices.txt",
  4745. "dotnet_library_license.txt",
  4746. "lib/MonoAndroid10/_._",
  4747. "lib/MonoTouch10/_._",
  4748. "lib/net46/System.IO.FileSystem.Primitives.dll",
  4749. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4750. "lib/xamarinios10/_._",
  4751. "lib/xamarinmac20/_._",
  4752. "lib/xamarintvos10/_._",
  4753. "lib/xamarinwatchos10/_._",
  4754. "ref/MonoAndroid10/_._",
  4755. "ref/MonoTouch10/_._",
  4756. "ref/net46/System.IO.FileSystem.Primitives.dll",
  4757. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4758. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  4759. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  4760. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  4761. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  4762. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  4763. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  4764. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  4765. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  4766. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  4767. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  4768. "ref/xamarinios10/_._",
  4769. "ref/xamarinmac20/_._",
  4770. "ref/xamarintvos10/_._",
  4771. "ref/xamarinwatchos10/_._",
  4772. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  4773. "system.io.filesystem.primitives.nuspec"
  4774. ]
  4775. },
  4776. "System.Linq/4.3.0": {
  4777. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  4778. "type": "package",
  4779. "path": "system.linq/4.3.0",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "ThirdPartyNotices.txt",
  4784. "dotnet_library_license.txt",
  4785. "lib/MonoAndroid10/_._",
  4786. "lib/MonoTouch10/_._",
  4787. "lib/net45/_._",
  4788. "lib/net463/System.Linq.dll",
  4789. "lib/netcore50/System.Linq.dll",
  4790. "lib/netstandard1.6/System.Linq.dll",
  4791. "lib/portable-net45+win8+wp8+wpa81/_._",
  4792. "lib/win8/_._",
  4793. "lib/wp80/_._",
  4794. "lib/wpa81/_._",
  4795. "lib/xamarinios10/_._",
  4796. "lib/xamarinmac20/_._",
  4797. "lib/xamarintvos10/_._",
  4798. "lib/xamarinwatchos10/_._",
  4799. "ref/MonoAndroid10/_._",
  4800. "ref/MonoTouch10/_._",
  4801. "ref/net45/_._",
  4802. "ref/net463/System.Linq.dll",
  4803. "ref/netcore50/System.Linq.dll",
  4804. "ref/netcore50/System.Linq.xml",
  4805. "ref/netcore50/de/System.Linq.xml",
  4806. "ref/netcore50/es/System.Linq.xml",
  4807. "ref/netcore50/fr/System.Linq.xml",
  4808. "ref/netcore50/it/System.Linq.xml",
  4809. "ref/netcore50/ja/System.Linq.xml",
  4810. "ref/netcore50/ko/System.Linq.xml",
  4811. "ref/netcore50/ru/System.Linq.xml",
  4812. "ref/netcore50/zh-hans/System.Linq.xml",
  4813. "ref/netcore50/zh-hant/System.Linq.xml",
  4814. "ref/netstandard1.0/System.Linq.dll",
  4815. "ref/netstandard1.0/System.Linq.xml",
  4816. "ref/netstandard1.0/de/System.Linq.xml",
  4817. "ref/netstandard1.0/es/System.Linq.xml",
  4818. "ref/netstandard1.0/fr/System.Linq.xml",
  4819. "ref/netstandard1.0/it/System.Linq.xml",
  4820. "ref/netstandard1.0/ja/System.Linq.xml",
  4821. "ref/netstandard1.0/ko/System.Linq.xml",
  4822. "ref/netstandard1.0/ru/System.Linq.xml",
  4823. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  4824. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  4825. "ref/netstandard1.6/System.Linq.dll",
  4826. "ref/netstandard1.6/System.Linq.xml",
  4827. "ref/netstandard1.6/de/System.Linq.xml",
  4828. "ref/netstandard1.6/es/System.Linq.xml",
  4829. "ref/netstandard1.6/fr/System.Linq.xml",
  4830. "ref/netstandard1.6/it/System.Linq.xml",
  4831. "ref/netstandard1.6/ja/System.Linq.xml",
  4832. "ref/netstandard1.6/ko/System.Linq.xml",
  4833. "ref/netstandard1.6/ru/System.Linq.xml",
  4834. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  4835. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  4836. "ref/portable-net45+win8+wp8+wpa81/_._",
  4837. "ref/win8/_._",
  4838. "ref/wp80/_._",
  4839. "ref/wpa81/_._",
  4840. "ref/xamarinios10/_._",
  4841. "ref/xamarinmac20/_._",
  4842. "ref/xamarintvos10/_._",
  4843. "ref/xamarinwatchos10/_._",
  4844. "system.linq.4.3.0.nupkg.sha512",
  4845. "system.linq.nuspec"
  4846. ]
  4847. },
  4848. "System.Linq.Expressions/4.3.0": {
  4849. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  4850. "type": "package",
  4851. "path": "system.linq.expressions/4.3.0",
  4852. "files": [
  4853. ".nupkg.metadata",
  4854. ".signature.p7s",
  4855. "ThirdPartyNotices.txt",
  4856. "dotnet_library_license.txt",
  4857. "lib/MonoAndroid10/_._",
  4858. "lib/MonoTouch10/_._",
  4859. "lib/net45/_._",
  4860. "lib/net463/System.Linq.Expressions.dll",
  4861. "lib/netcore50/System.Linq.Expressions.dll",
  4862. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4863. "lib/portable-net45+win8+wp8+wpa81/_._",
  4864. "lib/win8/_._",
  4865. "lib/wp80/_._",
  4866. "lib/wpa81/_._",
  4867. "lib/xamarinios10/_._",
  4868. "lib/xamarinmac20/_._",
  4869. "lib/xamarintvos10/_._",
  4870. "lib/xamarinwatchos10/_._",
  4871. "ref/MonoAndroid10/_._",
  4872. "ref/MonoTouch10/_._",
  4873. "ref/net45/_._",
  4874. "ref/net463/System.Linq.Expressions.dll",
  4875. "ref/netcore50/System.Linq.Expressions.dll",
  4876. "ref/netcore50/System.Linq.Expressions.xml",
  4877. "ref/netcore50/de/System.Linq.Expressions.xml",
  4878. "ref/netcore50/es/System.Linq.Expressions.xml",
  4879. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4880. "ref/netcore50/it/System.Linq.Expressions.xml",
  4881. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4882. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4883. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4884. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4885. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4886. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4887. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4888. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4889. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4890. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4891. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4892. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4893. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4894. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4895. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4896. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4897. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4898. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4899. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4900. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4901. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4902. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4903. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4904. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4905. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4906. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4907. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4908. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4909. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4910. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4911. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4912. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4913. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4914. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4915. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4916. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4917. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4918. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4919. "ref/portable-net45+win8+wp8+wpa81/_._",
  4920. "ref/win8/_._",
  4921. "ref/wp80/_._",
  4922. "ref/wpa81/_._",
  4923. "ref/xamarinios10/_._",
  4924. "ref/xamarinmac20/_._",
  4925. "ref/xamarintvos10/_._",
  4926. "ref/xamarinwatchos10/_._",
  4927. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4928. "system.linq.expressions.4.3.0.nupkg.sha512",
  4929. "system.linq.expressions.nuspec"
  4930. ]
  4931. },
  4932. "System.Memory/4.5.3": {
  4933. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  4934. "type": "package",
  4935. "path": "system.memory/4.5.3",
  4936. "files": [
  4937. ".nupkg.metadata",
  4938. ".signature.p7s",
  4939. "LICENSE.TXT",
  4940. "THIRD-PARTY-NOTICES.TXT",
  4941. "lib/netcoreapp2.1/_._",
  4942. "lib/netstandard1.1/System.Memory.dll",
  4943. "lib/netstandard1.1/System.Memory.xml",
  4944. "lib/netstandard2.0/System.Memory.dll",
  4945. "lib/netstandard2.0/System.Memory.xml",
  4946. "ref/netcoreapp2.1/_._",
  4947. "system.memory.4.5.3.nupkg.sha512",
  4948. "system.memory.nuspec",
  4949. "useSharedDesignerContext.txt",
  4950. "version.txt"
  4951. ]
  4952. },
  4953. "System.ObjectModel/4.3.0": {
  4954. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4955. "type": "package",
  4956. "path": "system.objectmodel/4.3.0",
  4957. "files": [
  4958. ".nupkg.metadata",
  4959. ".signature.p7s",
  4960. "ThirdPartyNotices.txt",
  4961. "dotnet_library_license.txt",
  4962. "lib/MonoAndroid10/_._",
  4963. "lib/MonoTouch10/_._",
  4964. "lib/net45/_._",
  4965. "lib/netcore50/System.ObjectModel.dll",
  4966. "lib/netstandard1.3/System.ObjectModel.dll",
  4967. "lib/portable-net45+win8+wp8+wpa81/_._",
  4968. "lib/win8/_._",
  4969. "lib/wp80/_._",
  4970. "lib/wpa81/_._",
  4971. "lib/xamarinios10/_._",
  4972. "lib/xamarinmac20/_._",
  4973. "lib/xamarintvos10/_._",
  4974. "lib/xamarinwatchos10/_._",
  4975. "ref/MonoAndroid10/_._",
  4976. "ref/MonoTouch10/_._",
  4977. "ref/net45/_._",
  4978. "ref/netcore50/System.ObjectModel.dll",
  4979. "ref/netcore50/System.ObjectModel.xml",
  4980. "ref/netcore50/de/System.ObjectModel.xml",
  4981. "ref/netcore50/es/System.ObjectModel.xml",
  4982. "ref/netcore50/fr/System.ObjectModel.xml",
  4983. "ref/netcore50/it/System.ObjectModel.xml",
  4984. "ref/netcore50/ja/System.ObjectModel.xml",
  4985. "ref/netcore50/ko/System.ObjectModel.xml",
  4986. "ref/netcore50/ru/System.ObjectModel.xml",
  4987. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4988. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4989. "ref/netstandard1.0/System.ObjectModel.dll",
  4990. "ref/netstandard1.0/System.ObjectModel.xml",
  4991. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4992. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4993. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4994. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4995. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4996. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4997. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4998. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4999. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5000. "ref/netstandard1.3/System.ObjectModel.dll",
  5001. "ref/netstandard1.3/System.ObjectModel.xml",
  5002. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5003. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5004. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5005. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5006. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5007. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5008. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5009. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5010. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5011. "ref/portable-net45+win8+wp8+wpa81/_._",
  5012. "ref/win8/_._",
  5013. "ref/wp80/_._",
  5014. "ref/wpa81/_._",
  5015. "ref/xamarinios10/_._",
  5016. "ref/xamarinmac20/_._",
  5017. "ref/xamarintvos10/_._",
  5018. "ref/xamarinwatchos10/_._",
  5019. "system.objectmodel.4.3.0.nupkg.sha512",
  5020. "system.objectmodel.nuspec"
  5021. ]
  5022. },
  5023. "System.Reflection/4.3.0": {
  5024. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5025. "type": "package",
  5026. "path": "system.reflection/4.3.0",
  5027. "files": [
  5028. ".nupkg.metadata",
  5029. ".signature.p7s",
  5030. "ThirdPartyNotices.txt",
  5031. "dotnet_library_license.txt",
  5032. "lib/MonoAndroid10/_._",
  5033. "lib/MonoTouch10/_._",
  5034. "lib/net45/_._",
  5035. "lib/net462/System.Reflection.dll",
  5036. "lib/portable-net45+win8+wp8+wpa81/_._",
  5037. "lib/win8/_._",
  5038. "lib/wp80/_._",
  5039. "lib/wpa81/_._",
  5040. "lib/xamarinios10/_._",
  5041. "lib/xamarinmac20/_._",
  5042. "lib/xamarintvos10/_._",
  5043. "lib/xamarinwatchos10/_._",
  5044. "ref/MonoAndroid10/_._",
  5045. "ref/MonoTouch10/_._",
  5046. "ref/net45/_._",
  5047. "ref/net462/System.Reflection.dll",
  5048. "ref/netcore50/System.Reflection.dll",
  5049. "ref/netcore50/System.Reflection.xml",
  5050. "ref/netcore50/de/System.Reflection.xml",
  5051. "ref/netcore50/es/System.Reflection.xml",
  5052. "ref/netcore50/fr/System.Reflection.xml",
  5053. "ref/netcore50/it/System.Reflection.xml",
  5054. "ref/netcore50/ja/System.Reflection.xml",
  5055. "ref/netcore50/ko/System.Reflection.xml",
  5056. "ref/netcore50/ru/System.Reflection.xml",
  5057. "ref/netcore50/zh-hans/System.Reflection.xml",
  5058. "ref/netcore50/zh-hant/System.Reflection.xml",
  5059. "ref/netstandard1.0/System.Reflection.dll",
  5060. "ref/netstandard1.0/System.Reflection.xml",
  5061. "ref/netstandard1.0/de/System.Reflection.xml",
  5062. "ref/netstandard1.0/es/System.Reflection.xml",
  5063. "ref/netstandard1.0/fr/System.Reflection.xml",
  5064. "ref/netstandard1.0/it/System.Reflection.xml",
  5065. "ref/netstandard1.0/ja/System.Reflection.xml",
  5066. "ref/netstandard1.0/ko/System.Reflection.xml",
  5067. "ref/netstandard1.0/ru/System.Reflection.xml",
  5068. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5069. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5070. "ref/netstandard1.3/System.Reflection.dll",
  5071. "ref/netstandard1.3/System.Reflection.xml",
  5072. "ref/netstandard1.3/de/System.Reflection.xml",
  5073. "ref/netstandard1.3/es/System.Reflection.xml",
  5074. "ref/netstandard1.3/fr/System.Reflection.xml",
  5075. "ref/netstandard1.3/it/System.Reflection.xml",
  5076. "ref/netstandard1.3/ja/System.Reflection.xml",
  5077. "ref/netstandard1.3/ko/System.Reflection.xml",
  5078. "ref/netstandard1.3/ru/System.Reflection.xml",
  5079. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5080. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5081. "ref/netstandard1.5/System.Reflection.dll",
  5082. "ref/netstandard1.5/System.Reflection.xml",
  5083. "ref/netstandard1.5/de/System.Reflection.xml",
  5084. "ref/netstandard1.5/es/System.Reflection.xml",
  5085. "ref/netstandard1.5/fr/System.Reflection.xml",
  5086. "ref/netstandard1.5/it/System.Reflection.xml",
  5087. "ref/netstandard1.5/ja/System.Reflection.xml",
  5088. "ref/netstandard1.5/ko/System.Reflection.xml",
  5089. "ref/netstandard1.5/ru/System.Reflection.xml",
  5090. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5091. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5092. "ref/portable-net45+win8+wp8+wpa81/_._",
  5093. "ref/win8/_._",
  5094. "ref/wp80/_._",
  5095. "ref/wpa81/_._",
  5096. "ref/xamarinios10/_._",
  5097. "ref/xamarinmac20/_._",
  5098. "ref/xamarintvos10/_._",
  5099. "ref/xamarinwatchos10/_._",
  5100. "system.reflection.4.3.0.nupkg.sha512",
  5101. "system.reflection.nuspec"
  5102. ]
  5103. },
  5104. "System.Reflection.Emit/4.3.0": {
  5105. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5106. "type": "package",
  5107. "path": "system.reflection.emit/4.3.0",
  5108. "files": [
  5109. ".nupkg.metadata",
  5110. ".signature.p7s",
  5111. "ThirdPartyNotices.txt",
  5112. "dotnet_library_license.txt",
  5113. "lib/MonoAndroid10/_._",
  5114. "lib/monotouch10/_._",
  5115. "lib/net45/_._",
  5116. "lib/netcore50/System.Reflection.Emit.dll",
  5117. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5118. "lib/xamarinios10/_._",
  5119. "lib/xamarinmac20/_._",
  5120. "lib/xamarintvos10/_._",
  5121. "lib/xamarinwatchos10/_._",
  5122. "ref/MonoAndroid10/_._",
  5123. "ref/net45/_._",
  5124. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5125. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5126. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5127. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5128. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5129. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5130. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5131. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5132. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5133. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5134. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5135. "ref/xamarinmac20/_._",
  5136. "system.reflection.emit.4.3.0.nupkg.sha512",
  5137. "system.reflection.emit.nuspec"
  5138. ]
  5139. },
  5140. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5141. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5142. "type": "package",
  5143. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5144. "files": [
  5145. ".nupkg.metadata",
  5146. ".signature.p7s",
  5147. "ThirdPartyNotices.txt",
  5148. "dotnet_library_license.txt",
  5149. "lib/MonoAndroid10/_._",
  5150. "lib/MonoTouch10/_._",
  5151. "lib/net45/_._",
  5152. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5153. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5154. "lib/portable-net45+wp8/_._",
  5155. "lib/wp80/_._",
  5156. "lib/xamarinios10/_._",
  5157. "lib/xamarinmac20/_._",
  5158. "lib/xamarintvos10/_._",
  5159. "lib/xamarinwatchos10/_._",
  5160. "ref/MonoAndroid10/_._",
  5161. "ref/MonoTouch10/_._",
  5162. "ref/net45/_._",
  5163. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5164. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5165. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5166. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5167. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5168. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5169. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5170. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5171. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5172. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5173. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5174. "ref/portable-net45+wp8/_._",
  5175. "ref/wp80/_._",
  5176. "ref/xamarinios10/_._",
  5177. "ref/xamarinmac20/_._",
  5178. "ref/xamarintvos10/_._",
  5179. "ref/xamarinwatchos10/_._",
  5180. "runtimes/aot/lib/netcore50/_._",
  5181. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5182. "system.reflection.emit.ilgeneration.nuspec"
  5183. ]
  5184. },
  5185. "System.Reflection.Emit.Lightweight/4.3.0": {
  5186. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5187. "type": "package",
  5188. "path": "system.reflection.emit.lightweight/4.3.0",
  5189. "files": [
  5190. ".nupkg.metadata",
  5191. ".signature.p7s",
  5192. "ThirdPartyNotices.txt",
  5193. "dotnet_library_license.txt",
  5194. "lib/MonoAndroid10/_._",
  5195. "lib/MonoTouch10/_._",
  5196. "lib/net45/_._",
  5197. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5198. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5199. "lib/portable-net45+wp8/_._",
  5200. "lib/wp80/_._",
  5201. "lib/xamarinios10/_._",
  5202. "lib/xamarinmac20/_._",
  5203. "lib/xamarintvos10/_._",
  5204. "lib/xamarinwatchos10/_._",
  5205. "ref/MonoAndroid10/_._",
  5206. "ref/MonoTouch10/_._",
  5207. "ref/net45/_._",
  5208. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5209. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5210. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5211. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5212. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5213. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5214. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5215. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5216. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5217. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5218. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5219. "ref/portable-net45+wp8/_._",
  5220. "ref/wp80/_._",
  5221. "ref/xamarinios10/_._",
  5222. "ref/xamarinmac20/_._",
  5223. "ref/xamarintvos10/_._",
  5224. "ref/xamarinwatchos10/_._",
  5225. "runtimes/aot/lib/netcore50/_._",
  5226. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  5227. "system.reflection.emit.lightweight.nuspec"
  5228. ]
  5229. },
  5230. "System.Reflection.Extensions/4.3.0": {
  5231. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  5232. "type": "package",
  5233. "path": "system.reflection.extensions/4.3.0",
  5234. "files": [
  5235. ".nupkg.metadata",
  5236. ".signature.p7s",
  5237. "ThirdPartyNotices.txt",
  5238. "dotnet_library_license.txt",
  5239. "lib/MonoAndroid10/_._",
  5240. "lib/MonoTouch10/_._",
  5241. "lib/net45/_._",
  5242. "lib/portable-net45+win8+wp8+wpa81/_._",
  5243. "lib/win8/_._",
  5244. "lib/wp80/_._",
  5245. "lib/wpa81/_._",
  5246. "lib/xamarinios10/_._",
  5247. "lib/xamarinmac20/_._",
  5248. "lib/xamarintvos10/_._",
  5249. "lib/xamarinwatchos10/_._",
  5250. "ref/MonoAndroid10/_._",
  5251. "ref/MonoTouch10/_._",
  5252. "ref/net45/_._",
  5253. "ref/netcore50/System.Reflection.Extensions.dll",
  5254. "ref/netcore50/System.Reflection.Extensions.xml",
  5255. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5256. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5257. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5258. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5259. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5260. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5261. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5262. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5263. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5264. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5265. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5266. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5267. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5268. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5269. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5270. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5271. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5272. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5273. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5274. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5275. "ref/portable-net45+win8+wp8+wpa81/_._",
  5276. "ref/win8/_._",
  5277. "ref/wp80/_._",
  5278. "ref/wpa81/_._",
  5279. "ref/xamarinios10/_._",
  5280. "ref/xamarinmac20/_._",
  5281. "ref/xamarintvos10/_._",
  5282. "ref/xamarinwatchos10/_._",
  5283. "system.reflection.extensions.4.3.0.nupkg.sha512",
  5284. "system.reflection.extensions.nuspec"
  5285. ]
  5286. },
  5287. "System.Reflection.Metadata/6.0.1": {
  5288. "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
  5289. "type": "package",
  5290. "path": "system.reflection.metadata/6.0.1",
  5291. "files": [
  5292. ".nupkg.metadata",
  5293. ".signature.p7s",
  5294. "Icon.png",
  5295. "LICENSE.TXT",
  5296. "THIRD-PARTY-NOTICES.TXT",
  5297. "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
  5298. "buildTransitive/netcoreapp3.1/_._",
  5299. "lib/net461/System.Reflection.Metadata.dll",
  5300. "lib/net461/System.Reflection.Metadata.xml",
  5301. "lib/net6.0/System.Reflection.Metadata.dll",
  5302. "lib/net6.0/System.Reflection.Metadata.xml",
  5303. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  5304. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  5305. "system.reflection.metadata.6.0.1.nupkg.sha512",
  5306. "system.reflection.metadata.nuspec",
  5307. "useSharedDesignerContext.txt"
  5308. ]
  5309. },
  5310. "System.Reflection.Primitives/4.3.0": {
  5311. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5312. "type": "package",
  5313. "path": "system.reflection.primitives/4.3.0",
  5314. "files": [
  5315. ".nupkg.metadata",
  5316. ".signature.p7s",
  5317. "ThirdPartyNotices.txt",
  5318. "dotnet_library_license.txt",
  5319. "lib/MonoAndroid10/_._",
  5320. "lib/MonoTouch10/_._",
  5321. "lib/net45/_._",
  5322. "lib/portable-net45+win8+wp8+wpa81/_._",
  5323. "lib/win8/_._",
  5324. "lib/wp80/_._",
  5325. "lib/wpa81/_._",
  5326. "lib/xamarinios10/_._",
  5327. "lib/xamarinmac20/_._",
  5328. "lib/xamarintvos10/_._",
  5329. "lib/xamarinwatchos10/_._",
  5330. "ref/MonoAndroid10/_._",
  5331. "ref/MonoTouch10/_._",
  5332. "ref/net45/_._",
  5333. "ref/netcore50/System.Reflection.Primitives.dll",
  5334. "ref/netcore50/System.Reflection.Primitives.xml",
  5335. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5336. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5337. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5338. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5339. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5340. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5341. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5342. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5343. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5344. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5345. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5346. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5347. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5348. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5349. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5350. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5351. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5352. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5353. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5354. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5355. "ref/portable-net45+win8+wp8+wpa81/_._",
  5356. "ref/win8/_._",
  5357. "ref/wp80/_._",
  5358. "ref/wpa81/_._",
  5359. "ref/xamarinios10/_._",
  5360. "ref/xamarinmac20/_._",
  5361. "ref/xamarintvos10/_._",
  5362. "ref/xamarinwatchos10/_._",
  5363. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5364. "system.reflection.primitives.nuspec"
  5365. ]
  5366. },
  5367. "System.Reflection.TypeExtensions/4.3.0": {
  5368. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  5369. "type": "package",
  5370. "path": "system.reflection.typeextensions/4.3.0",
  5371. "files": [
  5372. ".nupkg.metadata",
  5373. ".signature.p7s",
  5374. "ThirdPartyNotices.txt",
  5375. "dotnet_library_license.txt",
  5376. "lib/MonoAndroid10/_._",
  5377. "lib/MonoTouch10/_._",
  5378. "lib/net46/System.Reflection.TypeExtensions.dll",
  5379. "lib/net462/System.Reflection.TypeExtensions.dll",
  5380. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5381. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5382. "lib/xamarinios10/_._",
  5383. "lib/xamarinmac20/_._",
  5384. "lib/xamarintvos10/_._",
  5385. "lib/xamarinwatchos10/_._",
  5386. "ref/MonoAndroid10/_._",
  5387. "ref/MonoTouch10/_._",
  5388. "ref/net46/System.Reflection.TypeExtensions.dll",
  5389. "ref/net462/System.Reflection.TypeExtensions.dll",
  5390. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5391. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5392. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5393. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5394. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5395. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5396. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5397. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5398. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5399. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5400. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5401. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5402. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5403. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5404. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5405. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5406. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5407. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5408. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5409. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5410. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5411. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5412. "ref/xamarinios10/_._",
  5413. "ref/xamarinmac20/_._",
  5414. "ref/xamarintvos10/_._",
  5415. "ref/xamarinwatchos10/_._",
  5416. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5417. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  5418. "system.reflection.typeextensions.nuspec"
  5419. ]
  5420. },
  5421. "System.Resources.ResourceManager/4.3.0": {
  5422. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  5423. "type": "package",
  5424. "path": "system.resources.resourcemanager/4.3.0",
  5425. "files": [
  5426. ".nupkg.metadata",
  5427. ".signature.p7s",
  5428. "ThirdPartyNotices.txt",
  5429. "dotnet_library_license.txt",
  5430. "lib/MonoAndroid10/_._",
  5431. "lib/MonoTouch10/_._",
  5432. "lib/net45/_._",
  5433. "lib/portable-net45+win8+wp8+wpa81/_._",
  5434. "lib/win8/_._",
  5435. "lib/wp80/_._",
  5436. "lib/wpa81/_._",
  5437. "lib/xamarinios10/_._",
  5438. "lib/xamarinmac20/_._",
  5439. "lib/xamarintvos10/_._",
  5440. "lib/xamarinwatchos10/_._",
  5441. "ref/MonoAndroid10/_._",
  5442. "ref/MonoTouch10/_._",
  5443. "ref/net45/_._",
  5444. "ref/netcore50/System.Resources.ResourceManager.dll",
  5445. "ref/netcore50/System.Resources.ResourceManager.xml",
  5446. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5447. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5448. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5449. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5450. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5451. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5452. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5453. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5454. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5455. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5456. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5457. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5458. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5459. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5460. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5461. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5462. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5463. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5464. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5465. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5466. "ref/portable-net45+win8+wp8+wpa81/_._",
  5467. "ref/win8/_._",
  5468. "ref/wp80/_._",
  5469. "ref/wpa81/_._",
  5470. "ref/xamarinios10/_._",
  5471. "ref/xamarinmac20/_._",
  5472. "ref/xamarintvos10/_._",
  5473. "ref/xamarinwatchos10/_._",
  5474. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  5475. "system.resources.resourcemanager.nuspec"
  5476. ]
  5477. },
  5478. "System.Runtime/4.3.0": {
  5479. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5480. "type": "package",
  5481. "path": "system.runtime/4.3.0",
  5482. "files": [
  5483. ".nupkg.metadata",
  5484. ".signature.p7s",
  5485. "ThirdPartyNotices.txt",
  5486. "dotnet_library_license.txt",
  5487. "lib/MonoAndroid10/_._",
  5488. "lib/MonoTouch10/_._",
  5489. "lib/net45/_._",
  5490. "lib/net462/System.Runtime.dll",
  5491. "lib/portable-net45+win8+wp80+wpa81/_._",
  5492. "lib/win8/_._",
  5493. "lib/wp80/_._",
  5494. "lib/wpa81/_._",
  5495. "lib/xamarinios10/_._",
  5496. "lib/xamarinmac20/_._",
  5497. "lib/xamarintvos10/_._",
  5498. "lib/xamarinwatchos10/_._",
  5499. "ref/MonoAndroid10/_._",
  5500. "ref/MonoTouch10/_._",
  5501. "ref/net45/_._",
  5502. "ref/net462/System.Runtime.dll",
  5503. "ref/netcore50/System.Runtime.dll",
  5504. "ref/netcore50/System.Runtime.xml",
  5505. "ref/netcore50/de/System.Runtime.xml",
  5506. "ref/netcore50/es/System.Runtime.xml",
  5507. "ref/netcore50/fr/System.Runtime.xml",
  5508. "ref/netcore50/it/System.Runtime.xml",
  5509. "ref/netcore50/ja/System.Runtime.xml",
  5510. "ref/netcore50/ko/System.Runtime.xml",
  5511. "ref/netcore50/ru/System.Runtime.xml",
  5512. "ref/netcore50/zh-hans/System.Runtime.xml",
  5513. "ref/netcore50/zh-hant/System.Runtime.xml",
  5514. "ref/netstandard1.0/System.Runtime.dll",
  5515. "ref/netstandard1.0/System.Runtime.xml",
  5516. "ref/netstandard1.0/de/System.Runtime.xml",
  5517. "ref/netstandard1.0/es/System.Runtime.xml",
  5518. "ref/netstandard1.0/fr/System.Runtime.xml",
  5519. "ref/netstandard1.0/it/System.Runtime.xml",
  5520. "ref/netstandard1.0/ja/System.Runtime.xml",
  5521. "ref/netstandard1.0/ko/System.Runtime.xml",
  5522. "ref/netstandard1.0/ru/System.Runtime.xml",
  5523. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5524. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5525. "ref/netstandard1.2/System.Runtime.dll",
  5526. "ref/netstandard1.2/System.Runtime.xml",
  5527. "ref/netstandard1.2/de/System.Runtime.xml",
  5528. "ref/netstandard1.2/es/System.Runtime.xml",
  5529. "ref/netstandard1.2/fr/System.Runtime.xml",
  5530. "ref/netstandard1.2/it/System.Runtime.xml",
  5531. "ref/netstandard1.2/ja/System.Runtime.xml",
  5532. "ref/netstandard1.2/ko/System.Runtime.xml",
  5533. "ref/netstandard1.2/ru/System.Runtime.xml",
  5534. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  5535. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  5536. "ref/netstandard1.3/System.Runtime.dll",
  5537. "ref/netstandard1.3/System.Runtime.xml",
  5538. "ref/netstandard1.3/de/System.Runtime.xml",
  5539. "ref/netstandard1.3/es/System.Runtime.xml",
  5540. "ref/netstandard1.3/fr/System.Runtime.xml",
  5541. "ref/netstandard1.3/it/System.Runtime.xml",
  5542. "ref/netstandard1.3/ja/System.Runtime.xml",
  5543. "ref/netstandard1.3/ko/System.Runtime.xml",
  5544. "ref/netstandard1.3/ru/System.Runtime.xml",
  5545. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  5546. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  5547. "ref/netstandard1.5/System.Runtime.dll",
  5548. "ref/netstandard1.5/System.Runtime.xml",
  5549. "ref/netstandard1.5/de/System.Runtime.xml",
  5550. "ref/netstandard1.5/es/System.Runtime.xml",
  5551. "ref/netstandard1.5/fr/System.Runtime.xml",
  5552. "ref/netstandard1.5/it/System.Runtime.xml",
  5553. "ref/netstandard1.5/ja/System.Runtime.xml",
  5554. "ref/netstandard1.5/ko/System.Runtime.xml",
  5555. "ref/netstandard1.5/ru/System.Runtime.xml",
  5556. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  5557. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  5558. "ref/portable-net45+win8+wp80+wpa81/_._",
  5559. "ref/win8/_._",
  5560. "ref/wp80/_._",
  5561. "ref/wpa81/_._",
  5562. "ref/xamarinios10/_._",
  5563. "ref/xamarinmac20/_._",
  5564. "ref/xamarintvos10/_._",
  5565. "ref/xamarinwatchos10/_._",
  5566. "system.runtime.4.3.0.nupkg.sha512",
  5567. "system.runtime.nuspec"
  5568. ]
  5569. },
  5570. "System.Runtime.Caching/4.7.0": {
  5571. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  5572. "type": "package",
  5573. "path": "system.runtime.caching/4.7.0",
  5574. "files": [
  5575. ".nupkg.metadata",
  5576. ".signature.p7s",
  5577. "LICENSE.TXT",
  5578. "THIRD-PARTY-NOTICES.TXT",
  5579. "lib/MonoAndroid10/_._",
  5580. "lib/MonoTouch10/_._",
  5581. "lib/net45/_._",
  5582. "lib/netstandard2.0/System.Runtime.Caching.dll",
  5583. "lib/netstandard2.0/System.Runtime.Caching.xml",
  5584. "lib/xamarinios10/_._",
  5585. "lib/xamarinmac20/_._",
  5586. "lib/xamarintvos10/_._",
  5587. "lib/xamarinwatchos10/_._",
  5588. "ref/MonoAndroid10/_._",
  5589. "ref/MonoTouch10/_._",
  5590. "ref/net45/_._",
  5591. "ref/netstandard2.0/System.Runtime.Caching.dll",
  5592. "ref/netstandard2.0/System.Runtime.Caching.xml",
  5593. "ref/xamarinios10/_._",
  5594. "ref/xamarinmac20/_._",
  5595. "ref/xamarintvos10/_._",
  5596. "ref/xamarinwatchos10/_._",
  5597. "runtimes/win/lib/net45/_._",
  5598. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  5599. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  5600. "system.runtime.caching.4.7.0.nupkg.sha512",
  5601. "system.runtime.caching.nuspec",
  5602. "useSharedDesignerContext.txt",
  5603. "version.txt"
  5604. ]
  5605. },
  5606. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5607. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  5608. "type": "package",
  5609. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  5610. "files": [
  5611. ".nupkg.metadata",
  5612. ".signature.p7s",
  5613. "Icon.png",
  5614. "LICENSE.TXT",
  5615. "THIRD-PARTY-NOTICES.TXT",
  5616. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  5617. "buildTransitive/netcoreapp3.1/_._",
  5618. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5619. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5620. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  5621. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  5622. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  5623. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  5624. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5625. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5626. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  5627. "system.runtime.compilerservices.unsafe.nuspec",
  5628. "useSharedDesignerContext.txt"
  5629. ]
  5630. },
  5631. "System.Runtime.Extensions/4.3.0": {
  5632. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  5633. "type": "package",
  5634. "path": "system.runtime.extensions/4.3.0",
  5635. "files": [
  5636. ".nupkg.metadata",
  5637. ".signature.p7s",
  5638. "ThirdPartyNotices.txt",
  5639. "dotnet_library_license.txt",
  5640. "lib/MonoAndroid10/_._",
  5641. "lib/MonoTouch10/_._",
  5642. "lib/net45/_._",
  5643. "lib/net462/System.Runtime.Extensions.dll",
  5644. "lib/portable-net45+win8+wp8+wpa81/_._",
  5645. "lib/win8/_._",
  5646. "lib/wp80/_._",
  5647. "lib/wpa81/_._",
  5648. "lib/xamarinios10/_._",
  5649. "lib/xamarinmac20/_._",
  5650. "lib/xamarintvos10/_._",
  5651. "lib/xamarinwatchos10/_._",
  5652. "ref/MonoAndroid10/_._",
  5653. "ref/MonoTouch10/_._",
  5654. "ref/net45/_._",
  5655. "ref/net462/System.Runtime.Extensions.dll",
  5656. "ref/netcore50/System.Runtime.Extensions.dll",
  5657. "ref/netcore50/System.Runtime.Extensions.xml",
  5658. "ref/netcore50/de/System.Runtime.Extensions.xml",
  5659. "ref/netcore50/es/System.Runtime.Extensions.xml",
  5660. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  5661. "ref/netcore50/it/System.Runtime.Extensions.xml",
  5662. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  5663. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  5664. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  5665. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  5666. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  5667. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  5668. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  5669. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  5670. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  5671. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  5672. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  5673. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  5674. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  5675. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  5676. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  5677. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  5678. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  5679. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  5680. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  5681. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  5682. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  5683. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  5684. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  5685. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  5686. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  5687. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  5688. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  5689. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  5690. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  5691. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  5692. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  5693. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  5694. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  5695. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  5696. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  5697. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  5698. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  5699. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  5700. "ref/portable-net45+win8+wp8+wpa81/_._",
  5701. "ref/win8/_._",
  5702. "ref/wp80/_._",
  5703. "ref/wpa81/_._",
  5704. "ref/xamarinios10/_._",
  5705. "ref/xamarinmac20/_._",
  5706. "ref/xamarintvos10/_._",
  5707. "ref/xamarinwatchos10/_._",
  5708. "system.runtime.extensions.4.3.0.nupkg.sha512",
  5709. "system.runtime.extensions.nuspec"
  5710. ]
  5711. },
  5712. "System.Runtime.Handles/4.3.0": {
  5713. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  5714. "type": "package",
  5715. "path": "system.runtime.handles/4.3.0",
  5716. "files": [
  5717. ".nupkg.metadata",
  5718. ".signature.p7s",
  5719. "ThirdPartyNotices.txt",
  5720. "dotnet_library_license.txt",
  5721. "lib/MonoAndroid10/_._",
  5722. "lib/MonoTouch10/_._",
  5723. "lib/net46/_._",
  5724. "lib/xamarinios10/_._",
  5725. "lib/xamarinmac20/_._",
  5726. "lib/xamarintvos10/_._",
  5727. "lib/xamarinwatchos10/_._",
  5728. "ref/MonoAndroid10/_._",
  5729. "ref/MonoTouch10/_._",
  5730. "ref/net46/_._",
  5731. "ref/netstandard1.3/System.Runtime.Handles.dll",
  5732. "ref/netstandard1.3/System.Runtime.Handles.xml",
  5733. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  5734. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  5735. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  5736. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  5737. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  5738. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  5739. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  5740. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  5741. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  5742. "ref/xamarinios10/_._",
  5743. "ref/xamarinmac20/_._",
  5744. "ref/xamarintvos10/_._",
  5745. "ref/xamarinwatchos10/_._",
  5746. "system.runtime.handles.4.3.0.nupkg.sha512",
  5747. "system.runtime.handles.nuspec"
  5748. ]
  5749. },
  5750. "System.Runtime.Serialization.Primitives/4.3.0": {
  5751. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  5752. "type": "package",
  5753. "path": "system.runtime.serialization.primitives/4.3.0",
  5754. "files": [
  5755. ".nupkg.metadata",
  5756. ".signature.p7s",
  5757. "ThirdPartyNotices.txt",
  5758. "dotnet_library_license.txt",
  5759. "lib/MonoAndroid10/_._",
  5760. "lib/MonoTouch10/_._",
  5761. "lib/net45/_._",
  5762. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  5763. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5764. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5765. "lib/portable-net45+win8+wp8+wpa81/_._",
  5766. "lib/win8/_._",
  5767. "lib/wp80/_._",
  5768. "lib/wpa81/_._",
  5769. "lib/xamarinios10/_._",
  5770. "lib/xamarinmac20/_._",
  5771. "lib/xamarintvos10/_._",
  5772. "lib/xamarinwatchos10/_._",
  5773. "ref/MonoAndroid10/_._",
  5774. "ref/MonoTouch10/_._",
  5775. "ref/net45/_._",
  5776. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  5777. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  5778. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  5779. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  5780. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  5781. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  5782. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  5783. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  5784. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  5785. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  5786. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5787. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5788. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  5789. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  5790. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  5791. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  5792. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  5793. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  5794. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  5795. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  5796. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  5797. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5798. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5799. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5800. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  5801. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  5802. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  5803. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  5804. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  5805. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  5806. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  5807. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  5808. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5809. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5810. "ref/portable-net45+win8+wp8+wpa81/_._",
  5811. "ref/win8/_._",
  5812. "ref/wp80/_._",
  5813. "ref/wpa81/_._",
  5814. "ref/xamarinios10/_._",
  5815. "ref/xamarinmac20/_._",
  5816. "ref/xamarintvos10/_._",
  5817. "ref/xamarinwatchos10/_._",
  5818. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5819. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  5820. "system.runtime.serialization.primitives.nuspec"
  5821. ]
  5822. },
  5823. "System.Security.AccessControl/4.7.0": {
  5824. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  5825. "type": "package",
  5826. "path": "system.security.accesscontrol/4.7.0",
  5827. "files": [
  5828. ".nupkg.metadata",
  5829. ".signature.p7s",
  5830. "LICENSE.TXT",
  5831. "THIRD-PARTY-NOTICES.TXT",
  5832. "lib/net46/System.Security.AccessControl.dll",
  5833. "lib/net461/System.Security.AccessControl.dll",
  5834. "lib/net461/System.Security.AccessControl.xml",
  5835. "lib/netstandard1.3/System.Security.AccessControl.dll",
  5836. "lib/netstandard2.0/System.Security.AccessControl.dll",
  5837. "lib/netstandard2.0/System.Security.AccessControl.xml",
  5838. "lib/uap10.0.16299/_._",
  5839. "ref/net46/System.Security.AccessControl.dll",
  5840. "ref/net461/System.Security.AccessControl.dll",
  5841. "ref/net461/System.Security.AccessControl.xml",
  5842. "ref/netstandard1.3/System.Security.AccessControl.dll",
  5843. "ref/netstandard1.3/System.Security.AccessControl.xml",
  5844. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  5845. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  5846. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  5847. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  5848. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  5849. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  5850. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  5851. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  5852. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  5853. "ref/netstandard2.0/System.Security.AccessControl.dll",
  5854. "ref/netstandard2.0/System.Security.AccessControl.xml",
  5855. "ref/uap10.0.16299/_._",
  5856. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  5857. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  5858. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  5859. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  5860. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  5861. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  5862. "runtimes/win/lib/uap10.0.16299/_._",
  5863. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  5864. "system.security.accesscontrol.nuspec",
  5865. "useSharedDesignerContext.txt",
  5866. "version.txt"
  5867. ]
  5868. },
  5869. "System.Security.Cryptography.Cng/4.5.0": {
  5870. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  5871. "type": "package",
  5872. "path": "system.security.cryptography.cng/4.5.0",
  5873. "files": [
  5874. ".nupkg.metadata",
  5875. ".signature.p7s",
  5876. "LICENSE.TXT",
  5877. "THIRD-PARTY-NOTICES.TXT",
  5878. "lib/MonoAndroid10/_._",
  5879. "lib/MonoTouch10/_._",
  5880. "lib/net46/System.Security.Cryptography.Cng.dll",
  5881. "lib/net461/System.Security.Cryptography.Cng.dll",
  5882. "lib/net462/System.Security.Cryptography.Cng.dll",
  5883. "lib/net47/System.Security.Cryptography.Cng.dll",
  5884. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5885. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5886. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5887. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5888. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5889. "lib/uap10.0.16299/_._",
  5890. "lib/xamarinios10/_._",
  5891. "lib/xamarinmac20/_._",
  5892. "lib/xamarintvos10/_._",
  5893. "lib/xamarinwatchos10/_._",
  5894. "ref/MonoAndroid10/_._",
  5895. "ref/MonoTouch10/_._",
  5896. "ref/net46/System.Security.Cryptography.Cng.dll",
  5897. "ref/net461/System.Security.Cryptography.Cng.dll",
  5898. "ref/net461/System.Security.Cryptography.Cng.xml",
  5899. "ref/net462/System.Security.Cryptography.Cng.dll",
  5900. "ref/net462/System.Security.Cryptography.Cng.xml",
  5901. "ref/net47/System.Security.Cryptography.Cng.dll",
  5902. "ref/net47/System.Security.Cryptography.Cng.xml",
  5903. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5904. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  5905. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5906. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  5907. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5908. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5909. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5910. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5911. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  5912. "ref/uap10.0.16299/_._",
  5913. "ref/xamarinios10/_._",
  5914. "ref/xamarinmac20/_._",
  5915. "ref/xamarintvos10/_._",
  5916. "ref/xamarinwatchos10/_._",
  5917. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5918. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5919. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  5920. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  5921. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5922. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5923. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5924. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5925. "runtimes/win/lib/uap10.0.16299/_._",
  5926. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  5927. "system.security.cryptography.cng.nuspec",
  5928. "useSharedDesignerContext.txt",
  5929. "version.txt"
  5930. ]
  5931. },
  5932. "System.Security.Cryptography.ProtectedData/4.7.0": {
  5933. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  5934. "type": "package",
  5935. "path": "system.security.cryptography.protecteddata/4.7.0",
  5936. "files": [
  5937. ".nupkg.metadata",
  5938. ".signature.p7s",
  5939. "LICENSE.TXT",
  5940. "THIRD-PARTY-NOTICES.TXT",
  5941. "lib/MonoAndroid10/_._",
  5942. "lib/MonoTouch10/_._",
  5943. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5944. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5945. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  5946. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5947. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5948. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5949. "lib/xamarinios10/_._",
  5950. "lib/xamarinmac20/_._",
  5951. "lib/xamarintvos10/_._",
  5952. "lib/xamarinwatchos10/_._",
  5953. "ref/MonoAndroid10/_._",
  5954. "ref/MonoTouch10/_._",
  5955. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  5956. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  5957. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  5958. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5959. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5960. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5961. "ref/xamarinios10/_._",
  5962. "ref/xamarinmac20/_._",
  5963. "ref/xamarintvos10/_._",
  5964. "ref/xamarinwatchos10/_._",
  5965. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5966. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5967. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  5968. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5969. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5970. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5971. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  5972. "system.security.cryptography.protecteddata.nuspec",
  5973. "useSharedDesignerContext.txt",
  5974. "version.txt"
  5975. ]
  5976. },
  5977. "System.Security.Permissions/4.7.0": {
  5978. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  5979. "type": "package",
  5980. "path": "system.security.permissions/4.7.0",
  5981. "files": [
  5982. ".nupkg.metadata",
  5983. ".signature.p7s",
  5984. "LICENSE.TXT",
  5985. "THIRD-PARTY-NOTICES.TXT",
  5986. "lib/net461/System.Security.Permissions.dll",
  5987. "lib/net461/System.Security.Permissions.xml",
  5988. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  5989. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  5990. "lib/netstandard2.0/System.Security.Permissions.dll",
  5991. "lib/netstandard2.0/System.Security.Permissions.xml",
  5992. "ref/net461/System.Security.Permissions.dll",
  5993. "ref/net461/System.Security.Permissions.xml",
  5994. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  5995. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  5996. "ref/netstandard2.0/System.Security.Permissions.dll",
  5997. "ref/netstandard2.0/System.Security.Permissions.xml",
  5998. "system.security.permissions.4.7.0.nupkg.sha512",
  5999. "system.security.permissions.nuspec",
  6000. "useSharedDesignerContext.txt",
  6001. "version.txt"
  6002. ]
  6003. },
  6004. "System.Security.Principal.Windows/4.7.0": {
  6005. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  6006. "type": "package",
  6007. "path": "system.security.principal.windows/4.7.0",
  6008. "files": [
  6009. ".nupkg.metadata",
  6010. ".signature.p7s",
  6011. "LICENSE.TXT",
  6012. "THIRD-PARTY-NOTICES.TXT",
  6013. "lib/net46/System.Security.Principal.Windows.dll",
  6014. "lib/net461/System.Security.Principal.Windows.dll",
  6015. "lib/net461/System.Security.Principal.Windows.xml",
  6016. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6017. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  6018. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  6019. "lib/uap10.0.16299/_._",
  6020. "ref/net46/System.Security.Principal.Windows.dll",
  6021. "ref/net461/System.Security.Principal.Windows.dll",
  6022. "ref/net461/System.Security.Principal.Windows.xml",
  6023. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  6024. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  6025. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  6026. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  6027. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  6028. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  6029. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  6030. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  6031. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  6032. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  6033. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  6034. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  6035. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  6036. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  6037. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  6038. "ref/uap10.0.16299/_._",
  6039. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6040. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6041. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6042. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6043. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  6044. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  6045. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  6046. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6047. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6048. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6049. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6050. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6051. "runtimes/win/lib/uap10.0.16299/_._",
  6052. "system.security.principal.windows.4.7.0.nupkg.sha512",
  6053. "system.security.principal.windows.nuspec",
  6054. "useSharedDesignerContext.txt",
  6055. "version.txt"
  6056. ]
  6057. },
  6058. "System.Text.Encoding/4.3.0": {
  6059. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  6060. "type": "package",
  6061. "path": "system.text.encoding/4.3.0",
  6062. "files": [
  6063. ".nupkg.metadata",
  6064. ".signature.p7s",
  6065. "ThirdPartyNotices.txt",
  6066. "dotnet_library_license.txt",
  6067. "lib/MonoAndroid10/_._",
  6068. "lib/MonoTouch10/_._",
  6069. "lib/net45/_._",
  6070. "lib/portable-net45+win8+wp8+wpa81/_._",
  6071. "lib/win8/_._",
  6072. "lib/wp80/_._",
  6073. "lib/wpa81/_._",
  6074. "lib/xamarinios10/_._",
  6075. "lib/xamarinmac20/_._",
  6076. "lib/xamarintvos10/_._",
  6077. "lib/xamarinwatchos10/_._",
  6078. "ref/MonoAndroid10/_._",
  6079. "ref/MonoTouch10/_._",
  6080. "ref/net45/_._",
  6081. "ref/netcore50/System.Text.Encoding.dll",
  6082. "ref/netcore50/System.Text.Encoding.xml",
  6083. "ref/netcore50/de/System.Text.Encoding.xml",
  6084. "ref/netcore50/es/System.Text.Encoding.xml",
  6085. "ref/netcore50/fr/System.Text.Encoding.xml",
  6086. "ref/netcore50/it/System.Text.Encoding.xml",
  6087. "ref/netcore50/ja/System.Text.Encoding.xml",
  6088. "ref/netcore50/ko/System.Text.Encoding.xml",
  6089. "ref/netcore50/ru/System.Text.Encoding.xml",
  6090. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  6091. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  6092. "ref/netstandard1.0/System.Text.Encoding.dll",
  6093. "ref/netstandard1.0/System.Text.Encoding.xml",
  6094. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  6095. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  6096. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  6097. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  6098. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  6099. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  6100. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  6101. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  6102. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  6103. "ref/netstandard1.3/System.Text.Encoding.dll",
  6104. "ref/netstandard1.3/System.Text.Encoding.xml",
  6105. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  6106. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  6107. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  6108. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  6109. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  6110. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  6111. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  6112. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  6113. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  6114. "ref/portable-net45+win8+wp8+wpa81/_._",
  6115. "ref/win8/_._",
  6116. "ref/wp80/_._",
  6117. "ref/wpa81/_._",
  6118. "ref/xamarinios10/_._",
  6119. "ref/xamarinmac20/_._",
  6120. "ref/xamarintvos10/_._",
  6121. "ref/xamarinwatchos10/_._",
  6122. "system.text.encoding.4.3.0.nupkg.sha512",
  6123. "system.text.encoding.nuspec"
  6124. ]
  6125. },
  6126. "System.Text.Encoding.CodePages/6.0.0": {
  6127. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  6128. "type": "package",
  6129. "path": "system.text.encoding.codepages/6.0.0",
  6130. "files": [
  6131. ".nupkg.metadata",
  6132. ".signature.p7s",
  6133. "Icon.png",
  6134. "LICENSE.TXT",
  6135. "THIRD-PARTY-NOTICES.TXT",
  6136. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  6137. "buildTransitive/netcoreapp3.1/_._",
  6138. "lib/MonoAndroid10/_._",
  6139. "lib/MonoTouch10/_._",
  6140. "lib/net461/System.Text.Encoding.CodePages.dll",
  6141. "lib/net461/System.Text.Encoding.CodePages.xml",
  6142. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  6143. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  6144. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  6145. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  6146. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6147. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6148. "lib/xamarinios10/_._",
  6149. "lib/xamarinmac20/_._",
  6150. "lib/xamarintvos10/_._",
  6151. "lib/xamarinwatchos10/_._",
  6152. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  6153. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  6154. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  6155. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  6156. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  6157. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  6158. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6159. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6160. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  6161. "system.text.encoding.codepages.nuspec",
  6162. "useSharedDesignerContext.txt"
  6163. ]
  6164. },
  6165. "System.Text.Encodings.Web/7.0.0": {
  6166. "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  6167. "type": "package",
  6168. "path": "system.text.encodings.web/7.0.0",
  6169. "files": [
  6170. ".nupkg.metadata",
  6171. ".signature.p7s",
  6172. "Icon.png",
  6173. "LICENSE.TXT",
  6174. "THIRD-PARTY-NOTICES.TXT",
  6175. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  6176. "buildTransitive/net462/_._",
  6177. "buildTransitive/net6.0/_._",
  6178. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  6179. "lib/net462/System.Text.Encodings.Web.dll",
  6180. "lib/net462/System.Text.Encodings.Web.xml",
  6181. "lib/net6.0/System.Text.Encodings.Web.dll",
  6182. "lib/net6.0/System.Text.Encodings.Web.xml",
  6183. "lib/net7.0/System.Text.Encodings.Web.dll",
  6184. "lib/net7.0/System.Text.Encodings.Web.xml",
  6185. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  6186. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  6187. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  6188. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  6189. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  6190. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  6191. "system.text.encodings.web.7.0.0.nupkg.sha512",
  6192. "system.text.encodings.web.nuspec",
  6193. "useSharedDesignerContext.txt"
  6194. ]
  6195. },
  6196. "System.Text.Json/7.0.2": {
  6197. "sha512": "/LZf/JrGyilojqwpaywb+sSz8Tew7ij4K/Sk+UW8AKfAK7KRhR6mKpKtTm06cYA7bCpGTWfYksIW+mVsdxPegQ==",
  6198. "type": "package",
  6199. "path": "system.text.json/7.0.2",
  6200. "files": [
  6201. ".nupkg.metadata",
  6202. ".signature.p7s",
  6203. "Icon.png",
  6204. "LICENSE.TXT",
  6205. "README.md",
  6206. "THIRD-PARTY-NOTICES.TXT",
  6207. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  6208. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  6209. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  6210. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  6211. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  6212. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  6213. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  6214. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  6215. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  6216. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  6217. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  6218. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  6219. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  6220. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  6221. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  6222. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  6223. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  6224. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  6225. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  6226. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  6227. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  6228. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  6229. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  6230. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  6231. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  6232. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  6233. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  6234. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  6235. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  6236. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  6237. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  6238. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  6239. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  6240. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  6241. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  6242. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  6243. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  6244. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  6245. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  6246. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  6247. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  6248. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  6249. "buildTransitive/net461/System.Text.Json.targets",
  6250. "buildTransitive/net462/System.Text.Json.targets",
  6251. "buildTransitive/net6.0/System.Text.Json.targets",
  6252. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  6253. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  6254. "lib/net462/System.Text.Json.dll",
  6255. "lib/net462/System.Text.Json.xml",
  6256. "lib/net6.0/System.Text.Json.dll",
  6257. "lib/net6.0/System.Text.Json.xml",
  6258. "lib/net7.0/System.Text.Json.dll",
  6259. "lib/net7.0/System.Text.Json.xml",
  6260. "lib/netstandard2.0/System.Text.Json.dll",
  6261. "lib/netstandard2.0/System.Text.Json.xml",
  6262. "system.text.json.7.0.2.nupkg.sha512",
  6263. "system.text.json.nuspec",
  6264. "useSharedDesignerContext.txt"
  6265. ]
  6266. },
  6267. "System.Text.RegularExpressions/4.3.0": {
  6268. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  6269. "type": "package",
  6270. "path": "system.text.regularexpressions/4.3.0",
  6271. "files": [
  6272. ".nupkg.metadata",
  6273. ".signature.p7s",
  6274. "ThirdPartyNotices.txt",
  6275. "dotnet_library_license.txt",
  6276. "lib/MonoAndroid10/_._",
  6277. "lib/MonoTouch10/_._",
  6278. "lib/net45/_._",
  6279. "lib/net463/System.Text.RegularExpressions.dll",
  6280. "lib/netcore50/System.Text.RegularExpressions.dll",
  6281. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  6282. "lib/portable-net45+win8+wp8+wpa81/_._",
  6283. "lib/win8/_._",
  6284. "lib/wp80/_._",
  6285. "lib/wpa81/_._",
  6286. "lib/xamarinios10/_._",
  6287. "lib/xamarinmac20/_._",
  6288. "lib/xamarintvos10/_._",
  6289. "lib/xamarinwatchos10/_._",
  6290. "ref/MonoAndroid10/_._",
  6291. "ref/MonoTouch10/_._",
  6292. "ref/net45/_._",
  6293. "ref/net463/System.Text.RegularExpressions.dll",
  6294. "ref/netcore50/System.Text.RegularExpressions.dll",
  6295. "ref/netcore50/System.Text.RegularExpressions.xml",
  6296. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  6297. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  6298. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  6299. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  6300. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  6301. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  6302. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  6303. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  6304. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  6305. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  6306. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  6307. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  6308. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  6309. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  6310. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  6311. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  6312. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  6313. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  6314. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  6315. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  6316. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  6317. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  6318. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  6319. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  6320. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  6321. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  6322. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  6323. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  6324. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  6325. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  6326. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  6327. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  6328. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  6329. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  6330. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  6331. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  6332. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  6333. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  6334. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  6335. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  6336. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  6337. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  6338. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  6339. "ref/portable-net45+win8+wp8+wpa81/_._",
  6340. "ref/win8/_._",
  6341. "ref/wp80/_._",
  6342. "ref/wpa81/_._",
  6343. "ref/xamarinios10/_._",
  6344. "ref/xamarinmac20/_._",
  6345. "ref/xamarintvos10/_._",
  6346. "ref/xamarinwatchos10/_._",
  6347. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  6348. "system.text.regularexpressions.nuspec"
  6349. ]
  6350. },
  6351. "System.Threading/4.3.0": {
  6352. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  6353. "type": "package",
  6354. "path": "system.threading/4.3.0",
  6355. "files": [
  6356. ".nupkg.metadata",
  6357. ".signature.p7s",
  6358. "ThirdPartyNotices.txt",
  6359. "dotnet_library_license.txt",
  6360. "lib/MonoAndroid10/_._",
  6361. "lib/MonoTouch10/_._",
  6362. "lib/net45/_._",
  6363. "lib/netcore50/System.Threading.dll",
  6364. "lib/netstandard1.3/System.Threading.dll",
  6365. "lib/portable-net45+win8+wp8+wpa81/_._",
  6366. "lib/win8/_._",
  6367. "lib/wp80/_._",
  6368. "lib/wpa81/_._",
  6369. "lib/xamarinios10/_._",
  6370. "lib/xamarinmac20/_._",
  6371. "lib/xamarintvos10/_._",
  6372. "lib/xamarinwatchos10/_._",
  6373. "ref/MonoAndroid10/_._",
  6374. "ref/MonoTouch10/_._",
  6375. "ref/net45/_._",
  6376. "ref/netcore50/System.Threading.dll",
  6377. "ref/netcore50/System.Threading.xml",
  6378. "ref/netcore50/de/System.Threading.xml",
  6379. "ref/netcore50/es/System.Threading.xml",
  6380. "ref/netcore50/fr/System.Threading.xml",
  6381. "ref/netcore50/it/System.Threading.xml",
  6382. "ref/netcore50/ja/System.Threading.xml",
  6383. "ref/netcore50/ko/System.Threading.xml",
  6384. "ref/netcore50/ru/System.Threading.xml",
  6385. "ref/netcore50/zh-hans/System.Threading.xml",
  6386. "ref/netcore50/zh-hant/System.Threading.xml",
  6387. "ref/netstandard1.0/System.Threading.dll",
  6388. "ref/netstandard1.0/System.Threading.xml",
  6389. "ref/netstandard1.0/de/System.Threading.xml",
  6390. "ref/netstandard1.0/es/System.Threading.xml",
  6391. "ref/netstandard1.0/fr/System.Threading.xml",
  6392. "ref/netstandard1.0/it/System.Threading.xml",
  6393. "ref/netstandard1.0/ja/System.Threading.xml",
  6394. "ref/netstandard1.0/ko/System.Threading.xml",
  6395. "ref/netstandard1.0/ru/System.Threading.xml",
  6396. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  6397. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  6398. "ref/netstandard1.3/System.Threading.dll",
  6399. "ref/netstandard1.3/System.Threading.xml",
  6400. "ref/netstandard1.3/de/System.Threading.xml",
  6401. "ref/netstandard1.3/es/System.Threading.xml",
  6402. "ref/netstandard1.3/fr/System.Threading.xml",
  6403. "ref/netstandard1.3/it/System.Threading.xml",
  6404. "ref/netstandard1.3/ja/System.Threading.xml",
  6405. "ref/netstandard1.3/ko/System.Threading.xml",
  6406. "ref/netstandard1.3/ru/System.Threading.xml",
  6407. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  6408. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  6409. "ref/portable-net45+win8+wp8+wpa81/_._",
  6410. "ref/win8/_._",
  6411. "ref/wp80/_._",
  6412. "ref/wpa81/_._",
  6413. "ref/xamarinios10/_._",
  6414. "ref/xamarinmac20/_._",
  6415. "ref/xamarintvos10/_._",
  6416. "ref/xamarinwatchos10/_._",
  6417. "runtimes/aot/lib/netcore50/System.Threading.dll",
  6418. "system.threading.4.3.0.nupkg.sha512",
  6419. "system.threading.nuspec"
  6420. ]
  6421. },
  6422. "System.Threading.Tasks/4.3.0": {
  6423. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  6424. "type": "package",
  6425. "path": "system.threading.tasks/4.3.0",
  6426. "files": [
  6427. ".nupkg.metadata",
  6428. ".signature.p7s",
  6429. "ThirdPartyNotices.txt",
  6430. "dotnet_library_license.txt",
  6431. "lib/MonoAndroid10/_._",
  6432. "lib/MonoTouch10/_._",
  6433. "lib/net45/_._",
  6434. "lib/portable-net45+win8+wp8+wpa81/_._",
  6435. "lib/win8/_._",
  6436. "lib/wp80/_._",
  6437. "lib/wpa81/_._",
  6438. "lib/xamarinios10/_._",
  6439. "lib/xamarinmac20/_._",
  6440. "lib/xamarintvos10/_._",
  6441. "lib/xamarinwatchos10/_._",
  6442. "ref/MonoAndroid10/_._",
  6443. "ref/MonoTouch10/_._",
  6444. "ref/net45/_._",
  6445. "ref/netcore50/System.Threading.Tasks.dll",
  6446. "ref/netcore50/System.Threading.Tasks.xml",
  6447. "ref/netcore50/de/System.Threading.Tasks.xml",
  6448. "ref/netcore50/es/System.Threading.Tasks.xml",
  6449. "ref/netcore50/fr/System.Threading.Tasks.xml",
  6450. "ref/netcore50/it/System.Threading.Tasks.xml",
  6451. "ref/netcore50/ja/System.Threading.Tasks.xml",
  6452. "ref/netcore50/ko/System.Threading.Tasks.xml",
  6453. "ref/netcore50/ru/System.Threading.Tasks.xml",
  6454. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  6455. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  6456. "ref/netstandard1.0/System.Threading.Tasks.dll",
  6457. "ref/netstandard1.0/System.Threading.Tasks.xml",
  6458. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  6459. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  6460. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  6461. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  6462. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  6463. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  6464. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  6465. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  6466. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  6467. "ref/netstandard1.3/System.Threading.Tasks.dll",
  6468. "ref/netstandard1.3/System.Threading.Tasks.xml",
  6469. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  6470. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  6471. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  6472. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  6473. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  6474. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  6475. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  6476. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  6477. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  6478. "ref/portable-net45+win8+wp8+wpa81/_._",
  6479. "ref/win8/_._",
  6480. "ref/wp80/_._",
  6481. "ref/wpa81/_._",
  6482. "ref/xamarinios10/_._",
  6483. "ref/xamarinmac20/_._",
  6484. "ref/xamarintvos10/_._",
  6485. "ref/xamarinwatchos10/_._",
  6486. "system.threading.tasks.4.3.0.nupkg.sha512",
  6487. "system.threading.tasks.nuspec"
  6488. ]
  6489. },
  6490. "System.Threading.Tasks.Parallel/4.3.0": {
  6491. "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
  6492. "type": "package",
  6493. "path": "system.threading.tasks.parallel/4.3.0",
  6494. "files": [
  6495. ".nupkg.metadata",
  6496. ".signature.p7s",
  6497. "ThirdPartyNotices.txt",
  6498. "dotnet_library_license.txt",
  6499. "lib/MonoAndroid10/_._",
  6500. "lib/MonoTouch10/_._",
  6501. "lib/net45/_._",
  6502. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  6503. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  6504. "lib/portable-net45+win8+wpa81/_._",
  6505. "lib/win8/_._",
  6506. "lib/wpa81/_._",
  6507. "lib/xamarinios10/_._",
  6508. "lib/xamarinmac20/_._",
  6509. "lib/xamarintvos10/_._",
  6510. "lib/xamarinwatchos10/_._",
  6511. "ref/MonoAndroid10/_._",
  6512. "ref/MonoTouch10/_._",
  6513. "ref/net45/_._",
  6514. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  6515. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  6516. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  6517. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  6518. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  6519. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  6520. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  6521. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  6522. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  6523. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  6524. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  6525. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  6526. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  6527. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  6528. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  6529. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  6530. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  6531. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  6532. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  6533. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  6534. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  6535. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  6536. "ref/portable-net45+win8+wpa81/_._",
  6537. "ref/win8/_._",
  6538. "ref/wpa81/_._",
  6539. "ref/xamarinios10/_._",
  6540. "ref/xamarinmac20/_._",
  6541. "ref/xamarintvos10/_._",
  6542. "ref/xamarinwatchos10/_._",
  6543. "system.threading.tasks.parallel.4.3.0.nupkg.sha512",
  6544. "system.threading.tasks.parallel.nuspec"
  6545. ]
  6546. },
  6547. "System.Windows.Extensions/4.7.0": {
  6548. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  6549. "type": "package",
  6550. "path": "system.windows.extensions/4.7.0",
  6551. "files": [
  6552. ".nupkg.metadata",
  6553. ".signature.p7s",
  6554. "LICENSE.TXT",
  6555. "THIRD-PARTY-NOTICES.TXT",
  6556. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6557. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6558. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  6559. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  6560. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6561. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6562. "system.windows.extensions.4.7.0.nupkg.sha512",
  6563. "system.windows.extensions.nuspec",
  6564. "useSharedDesignerContext.txt",
  6565. "version.txt"
  6566. ]
  6567. }
  6568. },
  6569. "projectFileDependencyGroups": {
  6570. "net7.0": [
  6571. "Furion.Extras.Authentication.JwtBearer >= 4.8.7.36",
  6572. "Furion.Extras.ObjectMapper.Mapster >= 4.8.7.36",
  6573. "Furion.Pure >= 4.8.7.36",
  6574. "Namotion.Reflection >= 2.1.1",
  6575. "SqlSugarCore >= 5.1.4.65"
  6576. ]
  6577. },
  6578. "packageFolders": {
  6579. "/Users/cauto/.nuget/packages/": {}
  6580. },
  6581. "project": {
  6582. "version": "1.0.0",
  6583. "restore": {
  6584. "projectUniqueName": "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Core/gpt_api.Core.csproj",
  6585. "projectName": "gpt_api.Core",
  6586. "projectPath": "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Core/gpt_api.Core.csproj",
  6587. "packagesPath": "/Users/cauto/.nuget/packages/",
  6588. "outputPath": "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Core/obj/",
  6589. "projectStyle": "PackageReference",
  6590. "configFilePaths": [
  6591. "/Users/cauto/.nuget/NuGet/NuGet.Config"
  6592. ],
  6593. "originalTargetFrameworks": [
  6594. "net7.0"
  6595. ],
  6596. "sources": {
  6597. "/usr/local/share/dotnet/library-packs": {},
  6598. "https://api.nuget.org/v3/index.json": {}
  6599. },
  6600. "frameworks": {
  6601. "net7.0": {
  6602. "targetAlias": "net7.0",
  6603. "projectReferences": {}
  6604. }
  6605. },
  6606. "warningProperties": {
  6607. "warnAsError": [
  6608. "NU1605"
  6609. ]
  6610. }
  6611. },
  6612. "frameworks": {
  6613. "net7.0": {
  6614. "targetAlias": "net7.0",
  6615. "dependencies": {
  6616. "Furion.Extras.Authentication.JwtBearer": {
  6617. "target": "Package",
  6618. "version": "[4.8.7.36, )"
  6619. },
  6620. "Furion.Extras.ObjectMapper.Mapster": {
  6621. "target": "Package",
  6622. "version": "[4.8.7.36, )"
  6623. },
  6624. "Furion.Pure": {
  6625. "target": "Package",
  6626. "version": "[4.8.7.36, )"
  6627. },
  6628. "Namotion.Reflection": {
  6629. "target": "Package",
  6630. "version": "[2.1.1, )"
  6631. },
  6632. "SqlSugarCore": {
  6633. "target": "Package",
  6634. "version": "[5.1.4.65, )"
  6635. }
  6636. },
  6637. "imports": [
  6638. "net461",
  6639. "net462",
  6640. "net47",
  6641. "net471",
  6642. "net472",
  6643. "net48",
  6644. "net481"
  6645. ],
  6646. "assetTargetFallback": true,
  6647. "warn": true,
  6648. "frameworkReferences": {
  6649. "Microsoft.NETCore.App": {
  6650. "privateAssets": "all"
  6651. }
  6652. },
  6653. "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.202/RuntimeIdentifierGraph.json"
  6654. }
  6655. }
  6656. }
  6657. }